Skip to content

Instantly share code, notes, and snippets.

View lovemyliwu's full-sized avatar
😍
feel free

Smite Chow lovemyliwu

😍
feel free
View GitHub Profile
from manimlib.imports import *
class Stop(Exception):
def __init__(self, last_animations):
self.animations = last_animations
class Main(Scene):
current_month = 1
from manimlib.imports import *
class Main(Scene):
def construct(self):
dot = Dot()
line = Line()
arrow = Arrow()
circle = Circle()
annulus = Annulus()
@lovemyliwu
lovemyliwu / demo.py
Created November 8, 2020 06:14
manim hello world
from manimlib.imports import *
class HelloWorld(Scene):
def construct(self):
hello_text = TextMobject(
"Hello World, from smite",
tex_to_color_map={
"World": YELLOW,
}
)
import json
from mitmproxy import ctx
from mitmproxy import command
class Analysis:
def __init__(self):
self.info = {}
from mitmproxy import ctx
class Replacer:
def __init__(self):
self.num = 0
def response(self, flow):
self.num = self.num + 1
flow.response.content = flow.response.content.replace('知道'.encode(), '知道个屁'.encode())
@lovemyliwu
lovemyliwu / test.ruby
Created June 13, 2020 10:04
ruby call/cc demo
require 'continuation'
def strange
callcc { |cont| return cont }
print "Back in method, "
end
print "Before method. "
c = strange()
print "After method. "
c.call if c
@lovemyliwu
lovemyliwu / fsmcr_demo.py
Created May 30, 2020 07:30
FSM CR demo alternative to call/cc generator(yield)
"""
有限状态机CR demo
"""
import inspect
import random
import threading
from _thread import _local
import dill as pickle
from functools import partial
<html>
<title>照片元信息转换为GeoJSON数据并可视化</title>
<style>
.thumb, canvas {
height: 75px;
border: 1px solid #000;
margin: 10px 5px 0 0;
}
#container {
@lovemyliwu
lovemyliwu / simplex.py
Last active November 11, 2019 08:57
simplex
def print_variable(basic_idx, none_basic_idx):
b_name = [f'x_{i+1}' for i in basic_idx]
nb_name = [f'x_{i+1}' for i in none_basic_idx]
print(f'基变量有:{b_name}, 非基变量有:{nb_name}')
def get_matrix_for_exchange(none_basic_idx, exchange_none_basic_index):
A = np.array([
[1, 2, 1, 0, 0],
@lovemyliwu
lovemyliwu / bj-unicom-iptv.m3u
Created March 1, 2019 12:16 — forked from sdhzdmzzl/bj-unicom-iptv.m3u
北京联通iptv列表
#EXTM3U name="bj-unicom-iptv"
#EXTINF:-1,天津卫视高清
rtp:///239.3.1.141:1234
#EXTINF:-1,卡酷少儿
rtp:///239.3.1.50:9248
#EXTINF:-1,爱上4K
rtp:///239.3.1.236:2000