| title | subtitle | author | date | source |
|---|---|---|---|---|
Docker Compose Cheatsheet |
Quick reference for Docker Compose commands and config files |
Jon LaBelle |
April 7, 2019 |
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
| #Requires AutoHotkey v2.0 | |
| company := Menu() | |
| company.Add('[email protected]', EmailHander) | |
| company.Add('[email protected]', EmailHander) | |
| company.Add('[email protected]', EmailHander) | |
| company.Add('[email protected]', EmailHander) | |
| company.Add('[email protected]', EmailHander) | |
| emails := Menu() |
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 APP = { | |
| SW: null, | |
| init() { | |
| //called after DOMContentLoaded | |
| //register our service worker | |
| APP.registerSW(); | |
| document.querySelector('h2').addEventListener('click', APP.addImage); | |
| }, | |
| registerSW() { | |
| if ('serviceWorker' in navigator) { |
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
| ;******************************************************* | |
| ; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
| ; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
| ;******************************************************* | |
| #SingleInstance, Force | |
| #NoEnv | |
| OuterHTML= | |
| ( | |
| <SELECT id=filterList name=linkId><OPTION selected value="1">Everything</OPTION><OPTION value="3">Technical documents</OPTION><OPTION value="13">Support</OPTION><OPTION value="5">Applications</OPTION><OPTION value="6">E2E Forums</OPTION><OPTION value="7">Blogs</OPTION><OPTION value="9">Design network</OPTION><OPTION value="11">Training</OPTION><OPTION value="12">Videos</OPTION><OPTION value="10">Developer wiki</OPTION></SELECT> | |
| ) |
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
| javascript: void (()=>{ | |
| let text = null; | |
| try { | |
| text = document | |
| .querySelector("ytd-transcript-renderer") | |
| .__data | |
| .data | |
| .body | |
| .transcriptBodyRenderer | |
| .cueGroups |
| Command | Summary |
|---|---|
| git init | initializes (creates) a git repository in the current directory |
| ls -a | list hidden files |
| git status | show status of your local repository |
| git add README.md | add the untrack file to be committed |
| git commit -m "initial commit" | commit and include a message about your commit |
| git remote add origin `` | configure the remote repository |
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
| :: Install choco .exe and add choco to PATH | |
| @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
| :: Install all the packages | |
| :::: Browsers | |
| choco install googlechrome -fy | |
| choco install firefox -fy | |
| :::: Text editors / IDEs | |
| choco install atom -fy |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <script src="jquery-1.11.3.js"></script> | |
| <script src="jquery.fullPage.min.js"></script> | |
| <link rel="stylesheet" href="jquery.fullPage.css"> | |
| <style> | |
| #navbar { | |
| width:100%; | |
| height:50px; |
NewerOlder