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
| main: | |
| ldy #0 | |
| ldx #0 | |
| stx __rc2 | |
| ldx #4 | |
| stx __rc3 | |
| ldx #0 | |
| stx __rc4 | |
| ldx #216 | |
| stx __rc5 |
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
| export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| export ZSH="$HOME/.oh-my-zsh" | |
| ZSH_THEME="caiwan" | |
| CASE_SENSITIVE="true" | |
| zstyle ':omz:update' mode disabled # disable automatic updates | |
| # Uncomment the following line if pasting URLs and other text is messed up. | |
| # DISABLE_MAGIC_FUNCTIONS="true" |
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
| gTTS | |
| tqdm |
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
| import argparse | |
| import json | |
| import os | |
| import sys | |
| import pathlib | |
| from hashlib import md5 | |
| import tqdm |
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
| 100 data 78,a9,0d,8d,04,03,a9,c0,8d,05,03,58,1048 | |
| 110 data 60,a5,14,85,a7,a5,15,85,a8,a9,00,8d,1378 | |
| 120 data 00,ff,a2,1f,b5,c7,9d,a7,c0,ca,10,f8,1810 | |
| 130 data a9,13,20,d2,ff,a9,12,20,d2,ff,a0,00,1529 | |
| 140 data 84,b4,84,b0,88,e6,b4,c8,b9,00,02,f0,1793 | |
| 150 data 2e,c9,22,d0,08,48,a5,b0,49,ff,85,b0,1547 | |
| 160 data 68,48,c9,20,d0,07,a5,b0,d0,03,68,d0,1488 | |
| 170 data e2,68,a6,b4,18,a5,a7,79,00,02,85,a7,1455 | |
| 180 data a5,a8,69,00,85,a8,ca,d0,ef,f0,ca,a5,1995 | |
| 190 data a7,45,a8,48,29,0f,a8,b9,97,c0,20,d2,1470 |
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
| """ | |
| taken from this StackOverflow answer: https://stackoverflow.com/a/39225039 | |
| """ | |
| import requests | |
| import argparse | |
| import json | |
| import os |
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
| -- ------------------------------------------------------------------------------------ | |
| -- * Caiwan's LMC macro framework | |
| -- * Usage: | |
| -- * Place this file to <LuaMacros>/lua/caiwan_macro_framework.lua | |
| -- ------------------------------------------------------------------------------------ | |
| -- Helpers | |
| function bit(p) return bit32.lshift(1, p) end |
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
| [alias] | |
| lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all | |
| lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all | |
| lg = !"git lg1" |
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
| <template> | |
| <div class="container"> | |
| <div class="page-header" id="banner"> | |
| <div class="row"> | |
| <div class="col-lg-8 col-md-7 col-sm-6"> | |
| <h1>Darkly</h1> | |
| <p class="lead">Flatly in night mode</p> | |
| </div> | |
| </div> |
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
| import logging | |
| import inspect | |
| import os | |
| import sys | |
| import inspect | |
| import logging | |
| import json | |
| from datetime import datetime |
NewerOlder