Skip to content

Instantly share code, notes, and snippets.

@KoKuToru
KoKuToru / gist:9176197
Created February 23, 2014 19:38
Copy downloads from Android to PC
adb pull /sdcard/Download ~/Downloads
@KoKuToru
KoKuToru / gist:11191316
Last active August 29, 2015 14:00
Archlinux chroot
https://wiki.archlinux.de/title/Arch_Linux_auf_einem_Root-Server
mount -t tmpfs shm "${working_dir}/dev/shm"
pacman-key --init
entropy generieren !
@KoKuToru
KoKuToru / gist:5f8b6ae2de87b003dcc9
Last active August 29, 2015 14:04
Duplicate remote mysql to local mysql via ssh (gzip'ed)
#!/bin/bash
START=$(date +%s)
HOST="???"
HOST_USER="???"
MYSQL_USER="???"
MYSQL_PASSWORD="???"
MAIL_FROM="???@???"
MAIL_TO="???@???.???"
MAIL_EXTRA="-c luca.bela.palkovics@gmail.com"
@KoKuToru
KoKuToru / HelloWorld.java
Last active August 29, 2015 14:05
HelloWorld.java
/*
Too crazy to be true..
Luca Béla Palkovics 2014
*/
\u0070\u0075\u0062\u006c\u0069\u0063\u0020\u0063\u006c\u0061\u0073\u0073\u0020\u0048\u0065\u006c\u006c\u006f\u0057\u006f\u0072\u006c\u0064\u0020\u007b\u000a\u000a\u0020\u0020\u0020\u0020\u0070\u0075\u0062\u006c\u0069\u0063\u0020\u0073\u0074\u0061\u0074\u0069\u0063\u0020\u0076\u006f\u0069\u0064\u0020\u006d\u0061\u0069\u006e\u0028\u0053\u0074\u0072\u0069\u006e\u0067\u005b\u005d\u0020\u0061\u0072\u0067\u0073\u0029\u0020\u007b\u000a\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0020\u0053\u0079\u0073\u0074\u0065\u006d\u002e\u006f\u0075\u0074\u002e\u0070\u0072\u0069\u006e\u0074\u006c\u006e\u0028\u0022\u0048\u0065\u006c\u006c\u006f\u002c\u0020\u0057\u006f\u0072\u006c\u0064\u0022\u0029\u003b\u000a\u0020\u0020\u0020\u0020\u007d\u000a\u000a\u007d\u000a
@KoKuToru
KoKuToru / gist:460cfffecd89d73cd376
Created December 17, 2014 17:33
CDynamicStruct
#ifndef CDYNAMICSTRUCT
#define CDYNAMICSTRUCT
#pragma GCC push_options
#pragma GCC optimize (3)
#include <iostream>
#include <type_traits>
#include <string>
#include <vector>
@KoKuToru
KoKuToru / gist:1d23af4bbf0b2bc89893
Created January 2, 2015 13:33
Efficient Sum and Assignment operator overloading in C++
/**
* Delayed add,sub,mul,div of a Matrix
* mul,div is by element. Not a real Matrix mul,div !
*
* Just shows the idea of delaying calculations..
*/
//Should never be used outside, is a helper class
class MatAccess {
public:
@KoKuToru
KoKuToru / GearRender.js
Last active August 29, 2015 14:14
Simple gear rendering.
//Luca Béla Palkovics 27.01.2014 - Luca.Bela.Palkovics@gmail.com
/*
Renders gears in Canvas
Copy & Past into http://htmlivecode.com/canvas-animation-playground/
*/
function gear(ctx, settings) {
var acc = 10;
if (typeof settings.cache === "undefined") {
settings.cache = {};
@KoKuToru
KoKuToru / gist:629bd90d5d6ee9a47864
Last active August 29, 2015 14:21
ANDROID SQL OH THANKS
Stack<Character> stack = new Stack<>();
int last_split = 0;
boolean ignore_next = false;
for(int i = 0; i < full_cmd.length(); ++i) {
if (ignore_next){
ignore_next = false;
continue;
}
char c = full_cmd.charAt(i);
if (c == ']') {
i686-w64-mingw32-cmake ..
make
#zip everything
mkdir gtox-win32
#Copy everything we need
cp -rT /usr/i686-w64-mingw32 ./gtox-win32
cp -r ./share ./gtox-win32/
cp gtox.exe ./gtox-win32/bin/gtox.exe
@KoKuToru
KoKuToru / application.template.hbs
Last active September 24, 2015 16:10
Loading Problem
<h1>application/template.hbs</h1>
{{#link-to 'index'}} index {{/link-to}}
{{#link-to 'test'}} test {{/link-to}}
{{#link-to 'test.subtest'}} subtest {{/link-to}}
<br>
{{outlet}}