Skip to content

Instantly share code, notes, and snippets.

View renderlife's full-sized avatar
🚀
We flew south

Eugene Koshelev renderlife

🚀
We flew south
  • RenderLife
  • Russia
View GitHub Profile
@renderlife
renderlife / clients.md
Created August 23, 2017 06:50 — forked from defunkt/clients.md
A list of Gist clients.

Gist Clients

Want to create a Gist from your editor, the command line, or the Services menu? Here's how.

Editor Support

@renderlife
renderlife / download-vimcast-files.sh
Created June 22, 2017 07:53 — forked from xiaogh98/download-vimcast-files.sh
Download Vimcast Video Files
#!/bin/sh
# Downloads all vimcast videos & save a bookmark file in the same name
# Edit the number manually, have not found a way to get this automatically
for (( i = 1; i < 68; i++ )); do
FILE=$(curl -s http://media.vimcasts.org/videos/$i/ | grep m4v | sed 's/.*m4v\">\(.*m4v\)<\/a>.*/\1/g')
URL=http://media.vimcasts.org/videos/$i/$FILE
OUTPUT_VIDEO_FILE="0$i-$FILE"
OUTPUT_BOOKMARK_FILE="$OUTPUT_VIDEO_FILE.webloc"
echo "$URL"