Skip to content

Instantly share code, notes, and snippets.

View alimxk's full-sized avatar
📝
Typing...

Alim Khakimov alimxk

📝
Typing...
View GitHub Profile
@alimxk
alimxk / installclis
Last active August 1, 2025 00:45
Install Code CLIs
#!/bin/bash
# Download and install nvm:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
# in lieu of restarting the shell
\. "$HOME/.nvm/nvm.sh"
# Download and install Node.js:
nvm install 22
@alimxk
alimxk / StarTrails
Created January 5, 2018 01:30
Combine multiple images into one for star trail effect
#!/bin/bash
cp G0000001.JPG /tmp/Night.JPG
for f in `ls *.JPG`
do
echo $f
convert /tmp/Night.JPG $f -gravity center -compose lighten -composite -format jpg /tmp/Night.JPG
done