pandoc pandoc --quiet -f gfm -s somefile.md
What the options mean:
--quiet
: supress "[WARNING] This document format requires a nonempty <title> element."-f gfm
: input format is Github Flavored Markdown
aahed | |
aalii | |
aargh | |
aarti | |
abaca | |
abaci | |
abacs | |
abaft | |
abaka | |
abamp |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdbool.h> | |
#include <stdint.h> | |
#include <limits.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <fcntl.h> |
* Edit Alsa configuration: | |
sudo nano /etc/modprobe.d/alsa-base.conf | |
* Add to the end of the file: | |
options snd-hda-intel model=imac27_122 | |
* Reload Alsa module: | |
pulseaudio -k | |
sudo alsa force-reload |
#EXTM3U | |
# filename: radio.m3u | |
# ------------------- | |
# My Talk/News Live Streaming Radio Playlist | |
# Get this playlist on your phone! I use VLC | |
##### https://git.io/vKiO1 ###### | |
# # | |
# # | |
# █▀▀▀▀▀█ █▄█ █▄█ ▄ █▀▀▀▀▀█ # |
# ~/.XCompose | |
### Based on the en_US.UTF locale. ### | |
include "/usr/share/X11/locale/en_US.UTF-8/Compose" | |
### Populated with Kragen's additions. ### |
# NOTE: These instructions are old and may be out of date. A better alternative to compiling Reicast manually may be to use RetroArch with the Flycast core (https://www.retroarch.com/) | |
# Install prerequisites | |
sudo apt-get -y install build-essential libasound2 libasound2-dev libegl1-mesa-dev libgl1-mesa-dev libgles2-mesa-dev mesa-common-dev | |
# Build Reicast | |
git clone https://github.com/reicast/reicast-emulator.git | |
cd reicast-emulator/shell/linux | |
make | |
# Run Reicast |
#!/bin/bash | |
# CHANGE THESE | |
auth_email="[email protected]" | |
auth_key="c2547eb745079dac9320b638f5e225cf483cc5cfdda41" # found in cloudflare account settings | |
zone_name="example.com" | |
record_name="www.example.com" | |
# MAYBE CHANGE THESE | |
ip=$(curl -s http://ipv4.icanhazip.com) |
diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c | |
index 2a75365..b466ab2 100644 | |
--- a/gtk/gtkfilechooserdefault.c | |
+++ b/gtk/gtkfilechooserdefault.c | |
@@ -81,6 +81,7 @@ | |
#include <sys/stat.h> | |
#include <sys/types.h> | |
#include <locale.h> | |
+#include <math.h> | |