Skip to content

Instantly share code, notes, and snippets.

View Oshibuki's full-sized avatar
🎯
专注

HarbingerOfDawn Oshibuki

🎯
专注
View GitHub Profile
@tatsumoto-ren
tatsumoto-ren / subs.md
Last active May 11, 2025 09:22
Japanese Subtitles
@baiwfg2
baiwfg2 / change_vtt_to_srt.cc
Created April 27, 2017 02:41
change vtt format to srt format in order to be loaded by player
#include <iostream>
#include <string>
#include <fstream>
#include <thread>
#include <regex>
#include <cstdio>
using namespace std;
int main(int argc,char* argv[])
@dongweiming
dongweiming / resume.py
Created October 11, 2016 02:56
Python版本简历
#/usr/bin/env python
# coding=utf-8
import random
import re
def color(messages):
color = '\x1B[%d;%dm' % (1,random.randint(30,37))
return '%s %s\x1B[0m' % (color,messages)