Skip to content

Instantly share code, notes, and snippets.

View songron's full-sized avatar

Song songron

View GitHub Profile
@songron
songron / weibo_login_with_cookie.py
Created December 18, 2014 14:25
Simulate Weibo Login
@songron
songron / NTU - Machine Learning
Last active August 25, 2018 08:11
Codes for Machine Learning Foundations(NTU) 台湾国立大学《机器学习基石》(Coursera版)相关的代码、编程作业等。
Codes for Machine Learning Foundations(NTU)
台湾国立大学《机器学习基石》(Coursera版)相关的代码、编程作业等。
课程地址:https://class.coursera.org/ntumlone-001/
// Copyright (c) 2013 Peking University.
// Author: Xiaosong Rong (rongxiaosong@gmail.com)
//
// LeetCode template for coding and testing
#include <iostream>
#include <string>
#include <vector>
#include <stack>
using namespace std;
@songron
songron / C++ Review
Last active December 28, 2015 20:19
复习C++的代码。都是很简单很基础的代码,目的是复习C++的语法规则和编码风格,也便于以后的回顾。主要参考是:C++ Language Tutorial (http://www.cplusplus.com/doc/tutorial/)
复习C++的代码。都是很简单很基础的代码,目的是复习C++的语法规则和编码风格,也便于以后的回顾。
主要参考是:C++ Language Tutorial (http://www.cplusplus.com/doc/tutorial/)
KMP算法;字符串匹配/子串查找。
@songron
songron / Gevent in Python
Last active August 6, 2020 03:56
How to use gevent?
Gevent 在Python 中的简单用法;多线程控制利器。