First install xinput
$ sudo apt-get install xinputFind the touchscreen display
$ xinput --list| # YOU MAY SKIP THIS FILE | |
| # Suppress diff for generated files | |
| build/* linguist-generated=true |
First install xinput
$ sudo apt-get install xinputFind the touchscreen display
$ xinput --listNote: this only works when your cloned repo uses SSH url, e.g.: [email protected]:group/repository.git
Tested in Debian with GitLab
If /etc/fstab drive is read only mode after reboot then follow these steps:
NOTE: ntfsfix must be installed
sudo fdisk -l
sudo umount /dev/sdb1
sudo ntfsfix /dev/sdb1
sudo mount -aThe abstract class that should be extended instead of AbstractVerticle
package org.nardhar.vertx.examples;
import io.vertx.core.AbstractVerticle;
import io.vertx.core.CompositeFuture;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.eventbus.Message;find usb drive
sudo fdisk -lumount it
sudo umount /dev/sdxYformat it
Commenting Showing Intent, https://standards.mousepawmedia.com/csi.html
Git Flow, https://jeffkreeftmeijer.com/git-flow/
| /* Firefox type in urlbar about:support */ | |
| /* and click in Open Folder at Profile Folder line */ | |
| /* Create folder chrome and copy this file there */ | |
| /** | |
| All credits for this file go to https://www.reddit.com/r/firefox/comments/726p8u/multirow_tabs_firefox_ignores_mozboxflex/dngb8qf/ | |
| */ | |
| .tabbrowser-tab:not([pinned]) { | |
| flex-grow:1; | |
| min-width:150px; |
| 'use strict'; | |
| const crypto = require('crypto'); | |
| const ENCRYPTION_KEY = process.env.ENCRYPTION_KEY; // Must be 256 bytes (32 characters) | |
| const IV_LENGTH = 16; // For AES, this is always 16 | |
| function encrypt(text) { | |
| let iv = crypto.randomBytes(IV_LENGTH); | |
| let cipher = crypto.createCipheriv('aes-256-cbc', new Buffer(ENCRYPTION_KEY), iv); |
| // Is there something like this? | |
| const RequestTest = require('should-request-test'); | |
| describe('Starting controller testing', () => { | |
| // calling the express app | |
| const server = require('src/index'); | |
| // controller endpoint | |
| const endpoint = '/api/v1/myResource'; | |
| const requestTest; |