Skip to content

Instantly share code, notes, and snippets.

@a1300
a1300 / Git Wiki
Last active June 5, 2018 09:03
Git Wiki
We couldn’t find that file to show.
@a1300
a1300 / GIF_on_linux.md
Created May 31, 2018 15:05
Create GIF of screen on linux
sudo apt-get install byzanz-record

byzanz-record --duration=10 --width=1920 --height=1080 test.gif
@a1300
a1300 / README.md
Created May 31, 2018 16:15
Javascript Testing
@a1300
a1300 / keybindings.json
Last active January 13, 2024 14:13
VS-Code keybindings vscode visual studio code keyboard shortcuts
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+alt+1",
"command": "type",
"args": {
"text": "'"
},
"when": "editorTextFocus"
},
{
"git.enableSmartCommit": true,
"files.autoSave": "afterDelay",
"editor.cursorStyle": "line",
"editor.wordWrap": "on",
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.renderWhitespace": "boundary",
"window.zoomLevel": 1,
@a1300
a1300 / README.md
Last active July 27, 2018 23:04
Recreate asch directory easily

Recreate asch directory easily

1. Make clean asch install

execute: (from asch)

git clone https://github.com/AschPlatform/asch && cd asch && chmod u+x aschd && npm install

Build frontend

@a1300
a1300 / Monokai.colorscheme
Created July 21, 2018 10:31 — forked from wdullaer/Monokai.colorscheme
Monokai Konsole Colourscheme
[Background]
Color=40,40,40
[BackgroundIntense]
Color=40,40,40
[Color0]
Color=73,72,62
[Color0Intense]
@a1300
a1300 / git-tag-delete-local-and-remote.sh
Created August 15, 2018 17:07 — forked from mobilemind/git-tag-delete-local-and-remote.sh
how to delete a git tag locally and remote
# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName
@a1300
a1300 / README.md
Last active December 2, 2018 18:18

VS Code Search workaround for "search.exclude"

The following workaround worked for me ✔️

I wanted to exclude /node_modules but include /node_modules/asch-core for search.

In the .vscode/settings.json file I configured:

{
 "search.exclude": {