Skip to content

Instantly share code, notes, and snippets.

View turbo's full-sized avatar

Pierre turbo

View GitHub Profile
@turbo
turbo / unitext.md
Last active April 6, 2016 23:43
Format text with unicode only.

unitext

Format text with nothing but Unicode symbols. (Partially supported in Chrome)

Style A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Uppercase, Sans, Regular A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Lowercase, Sans, Regular a b c d e f g h i j k l m n o p q r s t u v w x y z
Uppercase, Serif, Regular ๐€ ๐ ๐‚ ๐ƒ ๐„ ๐… ๐† ๐‡ ๐ˆ ๐‰ ๐Š ๐‹ ๐Œ ๐ ๐Ž ๐ ๐ ๐‘ ๐’ ๐“ ๐” ๐• ๐– ๐— ๐˜ ๐™
Lowercase, Serif, Regular ๐š ๐› ๐œ ๐ ๐ž ๐Ÿ ๐  ๐ก ๐ข ๐ฃ ๐ค ๐ฅ ๐ฆ ๐ง ๐จ ๐ฉ ๐ช ๐ซ ๐ฌ ๐ญ ๐ฎ ๐ฏ ๐ฐ ๐ฑ ๐ฒ ๐ณ

Turning Off Github Issues

My friend Michael Jackson turned off github issues on one of his smaller projects. It got me thinking...

Maintainers getting burned out is a problem. Not just for the users of a project but the mental health of the maintainer. It's a big deal for both parties. Consumers want great tools, maintainers want to create them, but maintainers don't want to be L1 tech support, that's why they

@lateralusX
lateralusX / mono-build-64-bit-cygwin.txt
Last active November 1, 2018 18:13
Build Mono on Windows with 64-bit cygwin.
For 32-bit cygwin see current description on web page,
http://www.mono-project.com/docs/compiling-mono/windows. Bellow instructions apply to 64-bit cygwin
building 32 and 64-bit mono using mingw.
Install prerequisite:
โ€ข A working GIT environment is assumed (GIT can also be installed using chocolatey if needed).
โ€ข Visual Studio 2015.
@Nottt
Nottt / compile-opus.sh
Last active September 20, 2022 18:33
Compile Opus-Tools in Ubuntu 18.04
#!/bin/bash
# Install opus-tools
# Latest releases: opus 1.3.1, opus-tools 0.2, opusfile 0.11, libopusenc 0.2.1
set -e
set -o pipefail
# Install packages needed
apt update > /dev/null 2>&1 && apt install -y curl libflac-dev > /dev/null 2>&1