Skip to content

Instantly share code, notes, and snippets.

@LetUsFlow
LetUsFlow / CDN.md
Created September 5, 2020 15:47 — forked from vinkla/CDN.md
A guide on how to upload images to GitHub's CDN through issues and pull requests.

Upload Images to GitHub's CDN

  1. First, visit any repository on GitHub and click your way through to the issues page.

  2. Create a new issue by clicking the New Issue button. You'll now see title and description fields.

  3. Drag-and-drop an image onto the description field. This will start the uploading process.

  4. Copy the URL and use it in README, issues or pull requests however you like.

@LetUsFlow
LetUsFlow / encoding-video.md
Created March 1, 2020 22:30 — forked from Vestride/encoding-video.md
Encoding video for the web

Encoding Video

Installing

Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.

brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus
@LetUsFlow
LetUsFlow / Has weird right-to-left characters.txt
Created February 23, 2020 19:37 — forked from endolith/Has weird right-to-left characters.txt
Unicode kaomoji smileys emoticons emoji
ּ_בּ
בּ_בּ
טּ_טּ
כּ‗כּ
לּ_לּ
מּ_מּ
סּ_סּ
תּ_תּ
٩(×̯×)۶
٩(̾●̮̮̃̾•̃̾)۶
@LetUsFlow
LetUsFlow / upgrade.sh
Last active December 12, 2023 08:29 — forked from bocharsky-bw/upgrade.sh
Shell Script for Upgrade Ubuntu via APT, Snap and Flatpack in one step
#!/bin/bash
TEXT_RESET='\e[0m'
TEXT_YELLOW='\e[0;33m'
TEXT_RED_B='\e[1;31m'
sudo apt update
echo -e $TEXT_YELLOW
echo 'APT update finished...'
echo -e $TEXT_RESET