I hereby claim:
- I am yamamushi on github.
- I am yamamushi (https://keybase.io/yamamushi) on keybase.
- I have a public key whose fingerprint is 6682 0389 C1FD B417 9D05 3BAD 8821 91F6 6E1D AA32
To claim this, I am signing this object:
// Taken from | |
// https://stackoverflow.com/questions/26916952/go-retrieve-a-string-from-between-two-characters-or-other-strings/62555190#62555190 | |
func GetStringInBetweenTwoString(str string, startS string, endS string) (result string,found bool) { | |
s := strings.Index(str, startS) | |
if s == -1 { | |
return result,false | |
} | |
newS := str[s+len(startS):] | |
e := strings.Index(newS, endS) |
#!/bin/bash | |
while getopts o:y:s:q: option | |
do | |
case "${option}" | |
in | |
o) OUTPUT=${OPTARG};; | |
y) YOUTUBE=${OPTARG};; | |
s) STEMS=${OPTARG};; | |
q) QUALITY=${OPTARG};; |
/* | |
I use the following to convert my audio source into ogg/opus : | |
avconv -i source.mp4 -f wav - | opusenc --bitrate 256 - output.opus | |
On OSX avconv is in libav, and opusenc is in opus-tools | |
$ brew install libav opus-tools |
#!/usr/bin/env python | |
import urllib2 | |
import json | |
import time | |
req = urllib2.Request("https://www.kickstarter.com/projects/search.json?search=&term=Dual%20Universe") | |
opener = urllib2.build_opener() | |
f = opener.open(req) | |
response = json.loads(f.read()) |
#import "macsupport.h" | |
/* Portions of CPS.h */ | |
typedef struct CPSProcessSerNum | |
{ | |
UInt32 lo; | |
UInt32 hi; | |
} CPSProcessSerNum; | |
extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); |
/* SDLMain.m - main entry point for our Cocoa-ized SDL app | |
Initial Version: Darrell Walisser <[email protected]> | |
Non-NIB-Code & other changes: Max Horn <[email protected]> | |
Feel free to customize this file to suit your needs | |
*/ | |
#ifndef _macsupport_h_ | |
#define _macsupport_h_ |
/* | |
Referenced from: | |
http://web.archive.org/web/20120110153227/http://weegen.home.xs4all.nl/eelis/analogliterals.xhtml | |
*/ | |
#ifndef ANALOGLITERALS_HPP | |
#define ANALOGLITERALS_HPP | |
namespace analog_literals { |
This was mirrored from the snapshot of earthserver.com available on archive.org | |
-------------------------------------------------------------------------------- | |
Setting up a modern C++ development environment on Linux with Clang and Emacs | |
I am an independent game developer and this is my personal wiki. | |
Please feel free to email [email protected], and to follow @Earthserver | |
(Redirected from Setting up a C++11 development environment on Linux with Clang and Emacs) |
# libtcod makefile | |
# to build debug version, run "make -f makefile-linux debug" | |
# to build release version, run "make -f makefile-linux release" | |
SRCDIR=src | |
INCDIR=include | |
#dependencies | |
# SDL | |
SDL_FLAGS=`sdl-config --cflags` | |
SDL_LIBS=`sdl-config --libs` |
I hereby claim:
To claim this, I am signing this object: