Skip to content

Instantly share code, notes, and snippets.

0000000000401130 <_Z2t2v>:
401130: 55 push rbp
401131: 48 89 e5 mov rbp,rsp
401134: e8 07 00 00 00 call 401140 <.my-name>
401139: 5d pop rbp
40113a: c3 ret
40113b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0]
0000000000401140 <.my-name>:
401140: 55 push rbp
#!/bin/sh
IP=192.168.2.200
docker run -d -p $IP:8019:8019 voxhub/silvius-worker:latest /bin/sh -c 'cd /root/silvius-backend ; python kaldigstserver/master_server.py'
docker run -d voxhub/silvius-worker /root/worker.sh -u ws://$IP:8019/worker/ws/speech
@etherealvisage
etherealvisage / .config
Created October 10, 2017 16:25
KVM/LLVM kernel config for 4.14-rc2
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 4.14.0-rc2 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
@etherealvisage
etherealvisage / bullet_test.cpp
Last active June 15, 2017 19:25
Simple bullet rigidbody simulation
// compile as:
// $ g++ bullet_test.cpp -o bullet_test -I/usr/include/bullet/ -lBulletSoftBody -lBulletDynamics -lBulletCollision -lLinearMath
#include <iostream>
#include <memory>
#include <bullet/btBulletDynamicsCommon.h>
int main() {
auto broadphase = std::make_shared<btDbvtBroadphase>();
auto collision = std::make_shared<btDefaultCollisionConfiguration>();
@etherealvisage
etherealvisage / DLiveness.java
Last active March 31, 2017 16:59
DLiveness.java for UBC CPSC 411 minijava project
package driver;
import ir.frame.Frame;
import ir.frame.x86_64.X86_64Frame;
import ir.interp.InterpMode;
import java.io.File;
import java.io.IOException;
import java.io.PrintStream;
import java.util.Date;