Skip to content

Instantly share code, notes, and snippets.

@quark-zju
quark-zju / qingcloud-control.rb
Created June 2, 2015 14:38
Poor man's qingcloud single instance management script
#!/usr/bin/env ruby
# qingcloud-control
#
# Poor man's qingcloud single instance management script. You may find this script useful, if you:
# - are an individual qingcloud user. do not have a lot of instances (assuming only one)
# - do not need to run instance 7x24. instances are powered off most of the time
# - do not use advanced networks. no routers, no private networks. just an instance with default network and an eip attached
# - want to save money
# - use ssh to login, have following lines in ~/.ssh/config:
@quark-zju
quark-zju / backtrace.c
Created April 5, 2014 14:11
(Linux) Print backtrace
// Link with -rdynamic
#include <execinfo.h>
#include <assert.h>
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
void bt() {
const size_t size = 100;
@quark-zju
quark-zju / sftp-changes.py
Created April 17, 2019 16:10
A naive incremental sync script via sftp
#!/usr/bin/env python
"""A naive incremental sync script via sftp
When do you want to use this?
- want a non-lazy local file system (not fuse/sshfs)
- sftp is configured easier to use than ssh (rsync or git)
This script is very simple and does not handle complex cases. Use rsync to:
- set up an initial mirror
@quark-zju
quark-zju / lodash.hpp
Last active February 5, 2020 02:14
Little C++ header inspired by Ruby and Lo-dash
// compile with -std=c++1y
#include <algorithm>
#include <functional>
#include <iterator>
#include <vector>
namespace LoDash {
using std::begin;
[package]
name = "pathmatcher"
version = "0.1.0"
edition = "2018"
[lib]
path = "lib.rs"
[dependencies]
bitflags = "1.0"
@quark-zju
quark-zju / Hello.java
Last active July 15, 2020 18:14
Java hello world in jar with Makefile
public class Hello {
public static void main(String args[]) {
System.out.println("hello world");
}
}
@quark-zju
quark-zju / list_cn_ip.rb
Created April 27, 2012 05:11
List allocated china ip addresses
#!/usr/bin/env ruby
# List latest china IPv4 list
require 'open-uri'
(ARGF.path == '-' ? open('http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest') : ARGF).lines.each do |l|
next if !l.include?('ipv4') || l.include?('*')
cc, type, start, value = l.split('|')[1, 4]
@quark-zju
quark-zju / gdb-trace.py
Last active December 31, 2023 14:14
Trace all function calls using gdb
#!/usr/bin/env python
try:
import gdb
inside_gdb = True
except ImportError:
inside_gdb = False
if inside_gdb: