Skip to content

Instantly share code, notes, and snippets.

View Scosh's full-sized avatar

Joshua Scott Scosh

View GitHub Profile
@increpare
increpare / word frequency from the the telegram group "toki pona taso sin"
Last active May 6, 2024 16:54
toki pona letter/syllable/word frequency statistics based on #toki-pona-taso on the ma pona pi toki pona discord server. Second file has some stats from "toki pona taso sin" on telegram.
none of the following data is used in the other file - it's just a different data source. The track eachother pretty well though!
(64218 words in total)
li 4647
mi 4143
e 3597
toki 2905
ni 2811
pona 2692
a 2126
@DimensionalScoop
DimensionalScoop / rsync-backup.bash
Created August 4, 2015 13:43
My rsync backup script
#!/bin/bash
if [ "$(whoami)" != "root" ]; then
echo "You should be root to run backup."
fi
backupSource="/home/elayn/"
backupTarget="/run/media/elayn/Jet Black/Backup/Rsync-LinuxHome/" #the dir where the backup is saved
now=$(date +"%Y-%m-%d-%H%M") # name of this backup
@tessi
tessi / installation.md
Last active July 30, 2020 11:52
Install OpenProject on uberspace.de

How to install OpenProject on uberspace.de

Follow those steps to install OpenProject on a fresh uberspace.

Step 1: Install dependencies

First we set-up all dependencies. We use ruby 2.1.2 and install gems in a user directory:

echo "gem: --user-install --no-rdoc --no-ri" > ~/.gemrc

cat <<'EOF' >> ~/.bash_profile

@octocat
octocat / .gitignore
Created February 27, 2014 19:38
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@nicoleslaw
nicoleslaw / 1_Tiny_Content_Framework.md
Last active June 14, 2024 17:42
Tiny Content Framework

Tiny Content Framework

About the project

This is a tiny content strategy framework focused on goals, messages, and branding. This is not a checklist. Use what you need and scrap the rest. Rewrite it or add to it. These topics should help you get to the bottom of things with clients and other people you work with.

Give me feedback on Twitter (@nicoleslaw) or by email (nicole@nicolefenton.com).

Contents

@dupuy
dupuy / README.rst
Last active June 25, 2024 15:05
Common markup for Markdown and reStructuredText

Markdown and reStructuredText

GitHub supports several lightweight markup languages for documentation; the most popular ones (generally, not just at GitHub) are Markdown and reStructuredText. Markdown is sometimes considered easier to use, and is often preferred when the purpose is simply to generate HTML. On the other hand, reStructuredText is more extensible and powerful, with native support (not just embedded HTML) for tables, as well as things like automatic generation of tables of contents.

@bosmacs
bosmacs / latex.template
Created June 28, 2011 19:39 — forked from michaelt/latex.template
Simple Pandoc latex.template with comments
%!TEX TS-program = xelatex
\documentclass[12pt]{scrartcl}
% The declaration of the document class:
% The second line here, i.e.
% \documentclass[12pt]{scrartcl}
% is a standard LaTeX document class declaration:
% we say what kind of document we are making in curly brackets,
% and specify any options in square brackets.