Skip to content

Instantly share code, notes, and snippets.

View kyrylotaran's full-sized avatar
🍀

Kyrylo Taran kyrylotaran

🍀
View GitHub Profile
@devinschumacher
devinschumacher / method1.md
Last active March 7, 2026 04:18
How to download Vimeo Videos (streaming via HLS / streamlink ... on skool)
tags: ['streamlink', 'ffmpeg', 'vimeo']

How to download Vimeo Videos (streaming via HLS / streamlink)

Vimeo embeds on Skool are streaming via HLS.

There are 2 methods for downloading these.

@alexeybondarenko
alexeybondarenko / fe_architecture_example_readme.md
Created February 16, 2018 09:15
Frontend Architecture. Example of Readme

Readme example

Technologies

  • VueJS
  • Vuex
  • Webpack
  • ESLint

Build Setup

@brigand
brigand / git.md
Created October 6, 2014 02:50
My Git Aliases

I use git a lot for work and other projects, so I invested the time in creating some high quality aliases that really work for me. These just go in your bash profile (~/.bash_profile or ~/.bashrc or ~/.profile depending on your OS).

I see a lot of people go overboard with aliases, and then end up not using them. They're meant to cover 95% of the commands I use, not 100%.

alias gcam='git commit -am'
alias gs='git status'
alias gplr='git pull --rebase'
alias gpsh='git push'
alias gpo='git push -u origin `git symbolic-ref --short HEAD`'