I hereby claim:
- I am alexfornuto on github.
- I am alexfornuto (https://keybase.io/alexfornuto) on keybase.
- I have a public key ASCpRqV7tAq1Zv_Fhzqcr__IE5LnuBeIFCkdwbLaQbL7KQo
To claim this, I am signing this object:
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDLJuJZISS/+s68Yhx4QU/sdKwve1K6QYL2ovxwsjadpy4BIxbDk9JOmQJ0VYNgKVXuo4qU4ottL0vxVg/1xWrQORFIE9c4BpBc2ddXSDXFRtb9q1n90V5xNIbVVi5zy+oiG9dx4gvbIoyJYF+8gg9Ot/gNHRDDU3zQKxNbIynwxVLFO9P8EH/5Vcj48Qf8rYSFPuyRYk2KNh/F1XZLefD5dhnN7yv6CXiKU8fgxyIYIzfSEEe+M6nHSNmtbP+jhrD4NThgLq/OL/qlNmEfPoto4T0RjaQpNsAmg1fzouIuXNkdG5Ef84erfmp7mCo8tt7pFUjnE1HboXeNJuzEBOr alex@latitude |
CMake Error at CMakeLists.txt:89 (INSTALL): | |
install DIRECTORY given no DESTINATION! | |
CMake Warning (dev) in CMakeLists.txt: | |
No cmake_minimum_required command is present. A line of code such as | |
cmake_minimum_required(VERSION 3.4) | |
should be added at the top of the file. The version specified may be lower |
#/bin/bash | |
MODEMNUM=$(mmcli -L | grep -oP '^\D*\d+\D*\K\d+') | |
#echo $MODEMNUM | |
sudo mmcli -m $MODEMNUM --location-enable-gps-raw --location-enable-gps-nmea | |
sleep 10 |
#!/bin/bash | |
scrot /tmp/screen_locked.png | |
convert /tmp/screen_locked.png -scale 5% -scale 2000% /tmp/screen_locked2.png | |
i3lock -i /tmp/screen_locked2.png |
.menu .menuitem { | |
font-family: "Cantarell"; | |
font-size:11; | |
padding: 0.5em 4.75em 0.5em 0.78em; | |
} |
$ ~ $ cd tmp/ | |
$ ~/tmp $ ls | |
$ ~/tmp $ mkdir rsync-dir | |
$ ~/tmp $ mkdir not-rsynced | |
$ ~/tmp $ echo "Derp" > not-rsynced/file.txt | |
$ ~/tmp $ echo "Herp" > rsync-dir/localfile.txt | |
$ ~/tmp $ cd rsync-dir/ | |
$ ~/tmp/rsync-dir $ ln -s localfile.txt local-symlink.txt | |
$ ~/tmp/rsync-dir $ cat local-symlink.txt | |
Herp |
I hereby claim:
To claim this, I am signing this object:
Drupal 8.7.x sites that have modified the following the `config_sync_directory` value in `settings.php` must update as follows before upgrading to Drupal 8.8.x: | |
1. Locate: | |
```php:title=settings.php | |
$config_directories = array( | |
CONFIG_SYNC_DIRECTORY => dirname(DRUPAL_ROOT) . '/config', | |
); | |
``` |
// http://stevenbenner.com/2010/03/javascript-regex-trick-parse-a-query-string-into-an-object/ | |
// JavaScript regex trick: Parse a query string into an object | |
var queryString = {}; | |
anchor.href.replace( | |
new RegExp("([^?=&]+)(=([^&]*))?", "g"), | |
function($0, $1, $2, $3) { queryString[$1] = $3; } | |
); | |
// Usage |
❯ make | |
UUID is "[email protected]" | |
if ! command -v tsc >/dev/null; then \ | |
echo 'You must install TypeScript >= 3.8 to transpile: (node-typescript on Debian systems)'; \ | |
exit 1; \ | |
fi | |
tsc | |
tsconfig.json(14,9): error TS5023: Unknown compiler option 'incremental'. | |
src/active_hint.ts:4:13 - error TS1005: '=' expected. |