duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
#include <iostream> | |
#include <exception> | |
using namespace std; | |
struct MyException : public exception | |
{ | |
const char * what () const throw () | |
{ | |
return "C++ Exception"; | |
} |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
class PartitionedVariablesBenchmark(tf.test.Benchmark): | |
def benchmark_create_1000_partitions_with_100_parameter_servers(self): | |
workers, _ = create_local_cluster(num_workers=1, num_ps=100) | |
worker_sessions = [tf.Session(w.target) for w in workers] | |
worker = worker_sessions[0] | |
partition_sizes = (1, 512, 1024*32, 1024*128) | |
partitioned = [] |
# youtube-dl & ffmpeg installer script | |
# by aerouk | |
# youtube-dl | |
sudo curl https://yt-dl.org/downloads/2014.07.30/youtube-dl -o /usr/local/bin/youtube-dl | |
sudo chmod a+x /usr/local/bin/youtube-dl | |
# ffmpeg |
$ text-builder -index /path/to/index.txt
本人不提供任何保证和技术支持,使用者自负风险。
There are no guarantees, no any support. Use it at your own risk.
For pupil: all binary can be downloaded http://pan.baidu.com/s/1ntCChyp
After overwriting, maybe need to run chmod +x /path/to/sublime_text
. For linux default installation, need to add sudo
.
For programmer:
VERSION | PLATFORM | OFFSET | ORIGINAL | CRACKED |
---|
#!/usr/bin/python | |
# Quick and dirty demonstration of CVE-2014-0160 by Jared Stafford ([email protected]) | |
# The author disclaims copyright to this source code. | |
import sys | |
import struct | |
import socket | |
import time | |
import select |