Skip to content

Instantly share code, notes, and snippets.

View michaelfeng's full-sized avatar
💭
Be Happy~

michaelfeng michaelfeng

💭
Be Happy~
View GitHub Profile
@michaelfeng
michaelfeng / python_pipeline.py
Created May 26, 2018 07:10
shell风格的python pipeline
class Pipe(object):
def __init__(self, func):
self.func = func
def __ror__(self, other):
def generator():
for obj in other:
if obj is not None:
yield self.func(obj)
return generator()
@michaelfeng
michaelfeng / bfs_java
Last active October 7, 2018 09:03
BFS_template_java
// T 指代任何你希望存储的类型
Queue<T> queue = new LinkedList<>();
Set<T> set = new HashSet<>();
set.add(start);
queue.offer(start);
while (!queue.isEmpty()) {
T head = queue.poll();
for (T neighbor : head.neighbors) {
if (!set.contains(neighbor)) {
@michaelfeng
michaelfeng / reset_routing_table.sh
Created August 10, 2019 09:36 — forked from midwire/reset_routing_table.sh
Reset routing table on OSX
#!/usr/bin/env bash
# Reset routing table on OSX
# display current routing table
echo "********** BEFORE ****************************************"
netstat -r
echo "**********************************************************"
for i in {0..4}; do
sudo route -n flush # several times