Skip to content

Instantly share code, notes, and snippets.

View KenjiTakahashi's full-sized avatar
😮
Dunno

Karol Woźniak KenjiTakahashi

😮
Dunno
View GitHub Profile
@KenjiTakahashi
KenjiTakahashi / .config
Last active September 10, 2017 04:52
scw-ros
#
# Automatically generated make config: don't edit
# Busybox version: 1.27.2
# Sat Sep 2 23:28:00 2017
#
CONFIG_HAVE_DOT_CONFIG=y
#
# Busybox Settings
#
@KenjiTakahashi
KenjiTakahashi / cVimrc
Last active August 29, 2015 14:27
cvim config
set noautofocus
set nosmoothscroll
let barposition = "bottom"
let searchlimit = 10
let scrollstep = 40
nvcc --machine 64 -O3 -arch=sm_35 -std=c++11 -I moderngpu-master/include/ -c -I moderngpu/include/ bison.cu
fl.l(39): warning: statement is unreachable
fl.l(40): warning: statement is unreachable
fl.l(41): warning: statement is unreachable
fl.l(42): warning: statement is unreachable
fl.l(43): warning: statement is unreachable
@KenjiTakahashi
KenjiTakahashi / app.py
Created January 20, 2014 16:24
flask-jitsu, used backslashes, 'cause gist won't let me use proper ones
# Other Stuff
from lib import auth
app = Flask(__name__)
auth.init_app(app)
with app.app_context():
auth.send_request('whatever') # Same instance as below, but different context.
pkgname=libtcejdb
pkgver=1.1.12
pkgrel=1
pkgdesc="Embedded JSON Database engine"
arch=('i686' 'x86_64')
url="http://ejdb.org"
license=('LGPL')
depends=('zlib')
source=("https://github.com/Softmotions/ejdb/archive/v${pkgver}.tar.gz")
md5sums=('90d0d5aa20c80c67ca2fce7babe807c6')
/**
* Module dependencies
*/
var express = require('express');
var fs = require('fs');
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
// img path
import hashlib
from base64 import b64encode
def discid(toc):
u"""
'first':int,
'last':int,
'offsets':[int]
"""
discid=hashlib.sha1()
# -*- coding: utf-8 -*-
import wave
import struct
def rip():
from ctypes import CDLL,POINTER,c_short
cdio=CDLL('libcdio.so')
paranoia=CDLL('libcdio_paranoia.so')
h=cdio.cdio_open('/dev/cdrom',13)
import wave
import random
import struct
import datetime
SAMPLE_LEN = 44100 * 3 # 300 seconds of noise, 5 minutes
print "Create file using wave, storing frames in an array and using writeframes only once"
noise_output = wave.open('noise2.wav', 'w')
@KenjiTakahashi
KenjiTakahashi / .travis.yml
Created November 9, 2012 23:48 — forked from KelSolaar/.travis.yml
Travis - Setup file for PyQt and multiple Python interpreters.
language: python
python:
- "2.6"
- "2.7"
branches:
only:
- master
before_install:
- cd ..
- curl -L -O http://sourceforge.net/projects/pyqt/files/sip/sip-4.14.1/sip-4.14.1.tar.gz