Skip to content

Instantly share code, notes, and snippets.

@s0r00t
s0r00t / FAQ.md
Last active May 1, 2019 16:24
The SPORE FAQ

I'm probably going to move this somewhere else later on, and put the link here.
Please add links to sources & images when available. Thanks!

The fan-made SPORE FAQ (last update: May 1st, 2019)

1. General questions

1.1 What does the SPORE series contain?

Games :

  • SPORE is the base game that you're probably looking for. It was released on September 7, 2008. (source)
  • SPORE Creatures is a spin-off for the Nintendo DS & early smartphones, released on September 7, 2008 in North America, and September 4 in Europe. It is a 2.5D RPG based on the Creature Stage.
@s0r00t
s0r00t / 30-infinality-aliases.conf
Last active November 10, 2017 01:17
fixed version of Infinality config, fits perfectly with ttf-win7-fonts (don't forget to remove 20-ttf-win7-fonts-latin.conf before!)
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<!-- Replacements from http://bohoomil.com/doc/05-fonts/ (until ibfonts-meta-extended) -->
<alias>
<family>serif</family>
<prefer><family>Heuristica</family></prefer>
</alias>
<alias>
<family>sans-serif</family>
@s0r00t
s0r00t / .emacs
Created November 25, 2015 18:42
My old .emacs.
;;(set-frame-font "Fantasque Sans Mono-13" nil t)
(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
(when (< emacs-major-version 24)
(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))
(package-initialize)
(add-to-list 'load-path "~/.emacs.d/custom/emacs-powerline")
@s0r00t
s0r00t / gist:2acc06afd27776dbc14b
Created August 28, 2015 18:19
TicTacMachine, short version of IRCMachine for Xenthys. pip install irc on Python 2.7 before run. I tried to add commands. I failed.
import irc.bot
import time
serv = "chat.freenode.net"
chan = "#botwar"
op = "s0r00t"
class TicTacMachine(irc.bot.SingleServerIRCBot):
def __init__(self, nick, server, port=6667):
irc.bot.SingleServerIRCBot.__init__(self, [(server, port)], nick, nick)
@s0r00t
s0r00t / install.sh
Last active February 4, 2020 14:42
Easily set up devkitARM and ctrulib on systems supporting Bash. Git and Curl are required. `curl -sL https://git.io/vs2SL|sudo -E bash` to run the script, remove sudo to set up environment variables. Thanks to https://github.com/profi200 for the original script.
#!/bin/bash
UPDATE=0
echo "devkitARM and ctrulib installer"
echo "script by s0r00t, original script by profi200"
if ! hash git 2>/dev/null; then
echo "ERROR : Git is not installed. Please install Git."
exit 1
fi
if ! hash gcc 2>/dev/null; then
@s0r00t
s0r00t / rc.lua
Last active August 29, 2015 14:14
My awesome widgets n stuff. 3.5.6
[[
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.