Noob access to administer your local area network and wifi access:
http://192.168.254.254
username: user
password: @l03e1t3
#!/bin/bash | |
# Set sources | |
echo ' | |
## deb cdrom:[Debian GNU/Linux bullseye-DI-rc2 _Bullseye_ - Official Snapshot amd64 NETINST 20210607-15:56]/ bullseye main | |
## deb cdrom:[Debian GNU/Linux bullseye-DI-rc2 _Bullseye_ - Official Snapshot amd64 NETINST 20210607-15:56]/ focal main restricted | |
deb https://deb.debian.org/debian/ bullseye main contrib non-free | |
deb-src https://deb.debian.org/debian/ bullseye main contrib non-free |
Taken from post:
Nested Routes with Express: Keeping your routes separate while creating a nested routing structure.
--http://katieleonard.ca/blog/2016/nested-routes-with-expressjs/
## Download the create-ssl.sh file
curl -L -o create-ssl.sh https://gist.githubusercontent.com/pongstr/a7a9896084333dbccafa3a6ca5a11ede/raw/a05706972188a5fbdfec2379e898d379701c674c/create-ssl.sh
## make it executable
chmod +x ./create-ssl.sh
## and run it. follow the prompts and it will generate the ssl certificate
# display the directory stack vertically, prefixing each
# entry with its index in the stack.
$ dirs -v
# cd and push the path to the directory stack.
$ pushd /path/to/directory
My (@pongstr) opinion about shorthand coding techniques
Shorthand code is not really a replacement for normal coding but it is very handy and useful in some cases. There are tons of opinions and debates around this but, again it all comes down what is necessary for your codebase and using it responsibly.
{ | |
"name": "DZ60RGB ANSI V2", | |
"vendorProductId": 1146753569, | |
"macros": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], | |
"layers": [ | |
[ | |
"KC_GESC", | |
"KC_1", | |
"KC_2", | |
"KC_3", |
#!/bin/zsh | |
## Unthrottle timemachine backup, if backups are important | |
## why throttle the speed? apple. | |
sudo sysctl debug.lowpri_throttle_enabled=0 |
#!/bin/bash | |
echo "Updating Aptitude Source...." | |
sudo cat > /etc/apt/source.list << EOF | |
# deb cdrom:[Debian GNU/Linux 10.4.0 _Buster_ - Official amd64 DVD Binary-1 20200509-10:26]/ buster contrib main | |
# deb cdrom:[Debian GNU/Linux 10.4.0 _Buster_ - Official amd64 DVD Binary-1 20200509-10:26]/ buster contrib main | |
deb http://deb.debian.org/debian/ buster main contrib non-free | |
deb-src http://deb.debian.org/debian/ buster main contrib non-free |