Collection of basics to start design projects for digital projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Gmail Quick Label Tabs (colored, no quotes) | |
| // @namespace https://example.soma | |
| // @version 1.3.0 | |
| // @description Extra bar under Gmail toolbar with colored label buttons (no quotes). | |
| // @match https://mail.google.com/* | |
| // @run-at document-idle | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Google maps addon | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-02-13 | |
| // @description Bring google maps button back | |
| // @author You | |
| // @match https://www.google.com/* | |
| // @icon https://www.google.com/ | |
| // @grant none | |
| // ==/UserScript== |
pip install black
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Generate Random Lines In Adobe Illustrator | |
| // change numberOfLines as you wish | |
| // Run in Illustrator with File / Scripts / Other Script | |
| var myDoc = app.activeDocument; | |
| var numberOfLines = 4000; | |
| // example line |
flowchart TD
start-- through --> second
second -- through again --> third- Setup Mongo
- Tools
- Most used commands
- Mongoose
It is an introductionary material. If you don't need explanation, just the collection of common commands, use my cheatsheets:
- Example repo: https://kevinschoon.github.io/pomo/
- add necessary folder to Path
- get the repo
- create executable file with Make
- copy executable to /usr/local/bin to let us it everwhere
- modify access with chmod
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const async = require('async'); | |
| class demoClass { | |
| constructor(con) { | |
| this.constantVariable = con; | |
| this.q = async.queue(this.processFunc, 1); | |
| } | |
| feedfunc(inputArray) { |
NewerOlder