Skip to content

Instantly share code, notes, and snippets.

View ananace's full-sized avatar

Alexander "Ananace" Olofsson ananace

  • Linköping University
  • Sweden
View GitHub Profile

Examples:

Ruby:

variable = 5

if variable > 4 then
    puts variable.to_s + " is over 4"
    puts "It's exactly five" if variable == 5
elsif variable == 4 then
gets.to_i # I don't care about the number :D
gets # Friendships:
direct_friends = {}
indirect_friends = {}
until /Queries/ =~ (data = gets) do # Until it reads the line Queries:
names = data.split # Split on space
# Create entries in the friend dictionaries if they don't exist
#include <iostream>
using namespace std;
int main(int argc, char* argv[]) {
// Node struct
struct Node {
int data;
Node *next;
};
@ananace
ananace / Script Interface.md
Last active August 29, 2015 14:10
LD31 Script Interface

LD31 Script interface documentation

Global properties

Colors:

Color Colors::Black const

Color Colors::Blue const

@ananace
ananace / FindMyGUI.cmake
Created March 27, 2012 14:45
Findmygui changes
# - Find MyGUI includes and library
#
# This module defines
# MYGUI_INCLUDE_DIRS
# MYGUI_LIBRARIES, the libraries to link against to use MYGUI.
# MYGUI_LIB_DIR, the location of the libraries
# MYGUI_FOUND, If false, do not try to use MYGUI
#
# Copyright © 2007, Matt Williams
#
@ananace
ananace / gist:6410128
Created September 2, 2013 07:33
Sublime Update script
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
import sys
import urllib2
from subprocess import call
from platform import machine
@ananace
ananace / gist:7023952
Last active December 25, 2015 18:58
XM
Current Server:
IP: 88.206.179.92
Port: 4567
Message:
Header - 5 bytes, network order:
Flags - 1 byte:
SYN - 1
ACK - 2
@ananace
ananace / Event.hpp
Created April 26, 2016 23:42
Simple C#-like event handling in C++11
#pragma once
#include <functional>
#include <vector>
template<typename... Args>
class Event
{
public:
typedef std::function<void(Args...)> EventHook;
@ananace
ananace / README.md
Last active January 28, 2018 19:53
Puppet SSL certs example for Kubernetes

Kubernetes API cert with Puppet CA

Usage

  • Create the folder /etc/puppetlabs/puppet/ssl/manual_ca
  • Add the contents of the gist into there
  • Run kubernetes-cert.sh
  • Deploy the generated cert and private key onto your K8s master.
@ananace
ananace / 99-better-pa.patch
Created March 22, 2018 17:54
PA patch for qemu 2.11
diff --git a/audio/audio.c b/audio/audio.c
index beafed209b..6f42a019b0 100644
--- a/audio/audio.c
+++ b/audio/audio.c
@@ -2066,3 +2066,8 @@ void AUD_set_volume_in (SWVoiceIn *sw, int mute, uint8_t lvol, uint8_t rvol)
}
}
}
+
+int64_t audio_get_timer_ticks(void)