Code Monkey home page Code Monkey logo

resume's Introduction

THIS IS ALL OF MY SHORT TUTORIAL, READING EACH FILE ON THIS REPO IS SAME TO READ THIS README, JUST USE CTRL-F

alpine-community.md

Add community repo

cat > /etc/apk/repositories << EOF; $(echo)
https://dl-cdn.alpinelinux.org/alpine/v$(cut -d'.' -f1,2 /etc/alpine-release)/main/
https://dl-cdn.alpinelinux.org/alpine/v$(cut -d'.' -f1,2 /etc/alpine-release)/community/
https://dl-cdn.alpinelinux.org/alpine/edge/testing/
EOF
apk update

git-ssh.md

GENERATE KEY

ssh-keygen
	# alway press enter
cat ~/.ssh/id_rsa.pub
	# copy all output

KEY TO GITHUB

go to https://github.com/settings/ssh/new
add title and past the output

ADD FILE TO REPO

git clone [email protected]:henintsoa98/resume.git
cd resume
	# clone the repo to work
# add some file
git add .
git commit -m "MESSAGE"
git push

LARGE FILE

using git large file

# i was on server so I use this
git config --global user.email "[email protected]"                                                   
git config --global user.name "ONJANIAINA Henintsoa Stephana"
wget https://github.com/git-lfs/git-lfs/releases/download/v3.4.1/git-lfs-linux-amd64-v3.4.1.tar.gz
tar -xzf git-lfs-linux-amd64-v3.4.1.tar.gz
cd git-lfs-3.4.1/
./install.sh # i install on root user but not tested as normal user
cd
git clone [email protected]:henintsoa98/TempFile.git
cd TempFile
	# clone the repo to work
# add some large file file
# cp ../REPO.tar.xz .
git lfs install
git lfs track "*.xz"
git add .gitattributes
git add REPO.tar.xz
git commit -m "this commit contain git clone oh some srslte docker 06/02/24"
git push

link.md

COLAB FOR DRIVE AND SSH

samsung-bootloader.md

  1. Automatic date and time
  2. Enable mode developer
  3. developer
    • disable auto update system
  4. Software update
    • disable auto download over wifi
  5. Check update
  6. Reboot
  7. developer
    • unlock oem

snap-unupdate.md

disable snap update

snap refresh --hold

ssh-ngrok.md

Install ngrok

amd64

wget https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz
sudo tar -xvzf ngrok-v3-stable-linux-amd64.tgz -C /usr/local/bin

arm64

wget https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-arm64.tgz
sudo tar -xvzf ngrok-v3-stable-linux-arm64.tgz -C /usr/local/bin

arm32

wget https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-arm.tgz
sudo tar -xvzf ngrok-v3-stable-linux-arm.tgz -C /usr/local/bin

Configure

Login here and visit ngrok setup page to get token

ngrok config add-authtoken [token]

Expose ssh over internet (I use on Colab and play-with-docker)

ngrok tcp 22
# see Forwarding : link an port to connect over internet

Expose webserver

ngrok http 80
# see

tmate.md

Share terminal into ssh headless

tmate -S /tmp/tmate.sock new-session -d
tmate -S /tmp/tmate.sock wait tmate-ready
tmate -S /tmp/tmate.sock display -p "#{tmate_ssh}"

youtube.md

Install yt-dlp

linux x86_64

wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_linux
chmod +x yt-dlp_linux
sudo cp yt-dlp_linux /usr/local/bin/yt-dlp
alias yt-dlpp="yt-dlp -o './%(playlist)s/%(playlist_index)02d - %(title)s.%(ext)s'"

linux arm64

wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_linux_aarch64 
chmod +x yt-dlp_linux
sudo cp yt-dlp_linux /usr/local/bin/yt-dlp
alias yt-dlpp="yt-dlp -o './%(playlist)s/%(playlist_index)02d - %(title)s.%(ext)s'"

linux arm32

wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_linux_armv7l
chmod +x yt-dlp_linux_armv7l
sudo cp yt-dlp_linux_armv7l /usr/local/bin/yt-dlp
alias yt-dlpp="yt-dlp -o './%(playlist)s/%(playlist_index)02d - %(title)s.%(ext)s'"

Download playlist

yt-dlp -o './%(playlist)s/%(playlist_index)02d - %(title)s.%(ext)s' LINK

Download video

yt-dlp LINK

resume's People

Contributors

henintsoa98 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.