Reference:
sudo fdisk -l
| #add 'node_modules' to .gitignore file | |
| git rm -r --cached node_modules | |
| git commit -m 'Remove the now ignored directory node_modules' | |
| git push origin <branch-name> |
| var month= ["January","February","March","April","May","June","July", | |
| "August","September","October","November","December"]; | |
| var month = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul","Aug", "Sep", "Oct", "Nov", "Dec"]; | |
| //used with date.getMonth() |
| console.log(`%c ________________________________________ | |
| < mooooooooooooooooooooooooooooooooooooo > | |
| ---------------------------------------- | |
| \\ ^__^ | |
| \\ (oo)\\_______ | |
| (__)\\ )\\/\\ | |
| ||----w | | |
| || ||`, "font-family:monospace") |
| #!/bin/bash | |
| export SEMVER_LAST_TAG=$(git describe --abbrev=0 --tags 2>/dev/null) | |
| export SEMVER_RELEASE_LEVEL=$(git log --oneline -1 --pretty=%B | cat | tr -d '\n' | cut -d "[" -f2 | cut -d "]" -f1) | |
| #curl -o /tmp/hub.tgz https://github.com/github/hub/releases/download/v2.2.9/hub-linux-arm64-2.2.9.tgz | |
| #tar -xvzf /tmp/hub.tgz -C /tmp | |
| if [ -z $SEMVER_LAST_TAG ]; then | |
| >&2 echo "No tags defined" |
Reference:
sudo fdisk -l
| <!DOCTYPE html> | |
| <html> | |
| <head><title>SOUND</title></head> | |
| <body> | |
| <div>Frequence: <span id="frequency"></span></div> | |
| <script type="text/javascript"> | |
| var audioCtx = new (window.AudioContext || window.webkitAudioContext)(); | |
| var oscillatorNode = audioCtx.createOscillator(); | |
| var gainNode = audioCtx.createGain(); |
This script was inspired by this blog post - however I found the technique to be a little insufficient. Many thanks to Artem Butusov as I would not have been able to do this without his blog post.
This script is intended to be used with semantic-ui-react projects. If you are just using semantic-ui, then you may need to do some other troubleshooting... I don't know as I haven't tested. From what I can tell everything should work just fine.
This process is completely different from the one described in the blog post above. This script is intended to do everything for you - no manual copying or updating code is required. If you have already followed
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.html$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.html [L] | |
| </IfModule> | |
| https://router.vuejs.org/guide/essentials/history-mode.html#example-server-configurations |
| // ==UserScript== | |
| // @name Figma Mouse Wheel Speed Fix | |
| // @namespace https://adam.nels.onl | |
| // @match https://www.figma.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| // Mouse wheel scrolling in Figma on Firefox + Linux is unbearably slow. | |
| // | |
| // This script catches all mouse wheel events on the main canvas, |