Skip to content

Instantly share code, notes, and snippets.

View cryptowen's full-sized avatar
🎯
Focusing

Owen cryptowen

🎯
Focusing
View GitHub Profile
@smallfish
smallfish / Cargo.toml
Last active December 10, 2020 01:35
tokio-0.2-0.3 thread panicked at 'there is no reactor running, must be called from the context of Tokio runtime'
[package]
name = "hello-tokio"
version = "0.1.0"
authors = ["smallfish"]
edition = "2018"
[dependencies]
tokio = { version = "0.2", features = ["full"] }
#tokio = { version = "0.3", features = ["full"] }
actix-web = "3.0.2"
@revolunet
revolunet / python-es6-comparison.md
Last active April 11, 2025 10:54
# Python VS JavaScript ES6 syntax comparison

Python VS ES6 syntax comparison

Python syntax here : 2.7 - online REPL

Javascript ES6 via Babel transpilation - online REPL

Imports

import math
@evi1m0
evi1m0 / hi_baidu_spider.py
Created April 10, 2015 09:36
百度空间博文爬虫
#!/usr/bin/env python
# coding=utf8
# author=evi1m0#n0tr00t
# Fri Apr 10 14:14:35 2015
import os
import re
import sys
import wget
import requests