Skip to content

Instantly share code, notes, and snippets.

View abdullah-aj's full-sized avatar

Abdullah Jalil abdullah-aj

  • Auckland, New Zealand
View GitHub Profile
@lopspower
lopspower / README.md
Last active November 8, 2025 17:46
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

All hex value from 100% to 0% alpha:

@afternoon
afternoon / rename_js_files.sh
Created February 15, 2014 18:04
Rename .js files to .ts
find app/src -name "*.js" -exec sh -c 'mv "$0" "${0%.js}.ts"' {} \;