Skip to content

Instantly share code, notes, and snippets.

View Nereare's full-sized avatar
🍂
Si man i yulma nin enquantuva?

Igor Padoim Nereare

🍂
Si man i yulma nin enquantuva?
View GitHub Profile
// Color List from https://material.io/design/color/
// =================================================
// If a color is followed by HC, it contrasts better
// with a light color.
// Reds
$Red50 : #FFEBEE;
$Red100 : #FFCDD2;
$Red200 : #EF9A9A;
$Red300 : #E57373;
@PurpleBooth
PurpleBooth / README-Template.md
Last active July 3, 2024 02:25
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@protrolium
protrolium / ffmpeg.md
Last active June 15, 2024 01:28
ffmpeg guide

ffmpeg

Converting Audio into Different Formats / Sample Rates

Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma

You can get the list of supported formats with:
ffmpeg -formats

You can get the list of installed codecs with:

@mkweskin
mkweskin / gist:5414303
Last active June 28, 2024 14:39
Convert markdown to mediawiki with pandoc
pandoc -f markdown -t mediawiki test.md -o test.wiki
# Thanks to @tillmanj for the updated formatting