Skip to content

Instantly share code, notes, and snippets.

@BlazerYoo
BlazerYoo / README.md
Created August 11, 2021 03:03 — forked from Tynael/README.md
How to use npx to run gist based scripts
@BlazerYoo
BlazerYoo / build.sh
Created July 10, 2021 18:53
Generating static files for web app running on ExpressJs and Bulma (main folder is public and follows https://bulma.io/documentation/customize/with-node-sass/)
#!/bin/bash
DIR="./build"
if [ -d "$DIR" ]; then
rm -r "$DIR"
fi
mkdir build
cd build
cp -r ../public/elements .
@BlazerYoo
BlazerYoo / directory_size.sh
Last active June 28, 2021 02:34
Terminal calculate directory size
python -c "import os;print(sum(os.path.getsize(f) for f in os.listdir('.') if os.path.isfile(f)), 'bytes')"
@BlazerYoo
BlazerYoo / kaggle.py
Last active June 28, 2021 20:21
Download Kaggle data to Google Drive with authentication pipeline
# run `python kaggle.py`
from google.colab import drive
drive.mount('/content/gdrive')
import os, json
os.system('mkdir ~/.kaggle;touch ~/.kaggle/kaggle.json')
api_token = {"username":"username","key":"api_key"}
with open('/root/.kaggle/kaggle.json', 'w') as f:
json.dump(api_token, f)
os.system('chmod 600 ~/.kaggle/kaggle.json')
@BlazerYoo
BlazerYoo / burger.html
Created June 20, 2021 19:23
Activate Bulma navbar burger
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample"
onclick="document.querySelector('.navbar-menu').classList.toggle('is-active');document.querySelector('.navbar-burger').classList.toggle('is-active');">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
@BlazerYoo
BlazerYoo / repl-repo2.sh
Last active July 9, 2021 07:54
Clone repo into replit without parent directory to immediately get coding [2]
read -p 'Repo git link: ' repolink;echo '[1] Cloning repo...';git clone $repolink repo &> /dev/null;echo ' Cloned repo';cd repo;echo '[2] Moving files...';mv {.,}* .. &>/dev/null;echo ' Moved files';cd ..;echo '[3] Removing parent directory...';rm -r repo;echo ' Removed parent directory'; echo 'repl repo initialization complete'
@BlazerYoo
BlazerYoo / repl-repo1.sh
Last active June 16, 2021 22:24
Clone repo into replit without parent directory to immediately get coding [1]
#!/bin/bash
# first run chmod +x ./repl-repo1.sh
# then ./repl-repo.sh [link-to-repo.git]
echo '[1] Cloning repo...'
git clone $1 repo &> /dev/null
echo ' Cloned repo'
cd repo
echo '[2] Moving files...'
mv {.,}* .. &>/dev/null
echo ' Moved files'
@BlazerYoo
BlazerYoo / path.bat
Created June 15, 2021 21:33
Append (add to end) to path
set PATH=%PATH%;C:\your\path\here\
@BlazerYoo
BlazerYoo / cli.bat
Created June 15, 2021 21:00
Get command line arguments in bash, batch, and powershell scripts
@echo off
echo %*

Option 1: Command-line download extension as zip and extract

extension_id=jifpbeccnghkjeaalbbjmodiffmgedin   # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc" 
unzip -d "$extension_id-source" "$extension_id.zip"

Thx to crxviewer for the magic download URL.