Skip to content

Instantly share code, notes, and snippets.

View kbrx93's full-sized avatar
✌️
RUNNING

kbrx93 kbrx93

✌️
RUNNING
View GitHub Profile
@JethroLee
JethroLee / license-badges.md
Last active November 26, 2023 05:15 — forked from lukas-h/license-badges.md
License Badges for your Project

Markdown 您的使用執照徽章 (License badges)

這是讓您用來放在您 project 內的 讀我 (README) 檔案用的 使用執照徽章 (License badges)

這份清單包括了 最常使用的開放原始碼 (open source)開放資料 (open data) 之使用執照 (license)。

您可以直接將每個 badge 下方列出的 code 複製貼上到您的 Markdown 檔案即可輕鬆完成。

附註

  • 這些徽章 (badge) 是以 Shields.io 來製作。
@X-Wei
X-Wei / jkxy-download.py
Created December 31, 2016 11:29
jikexueyuan video downloader
# coding: utf-8
import requests
from lxml import etree
import os, time, sys
import cPickle as pk
reload(sys)
sys.setdefaultencoding('utf-8') # to avoid encoding problems
hea = {
@tiann
tiann / auto_switch_kb.py
Created December 2, 2015 06:51
auto switch keyboard to english in specific applications
#! /usr/bin/env python
# coding: utf-8
'''
auto switch keyboard between different applications
if you want to change the app list, modify the var 'ignore_list'
'''
from AppKit import NSWorkspace, NSWorkspaceDidActivateApplicationNotification, NSWorkspaceApplicationKey

关于H264, 通用的5个进阶文档为

  • [H.264_MPEG-4 Part 10 White Paper]
  • [Video coding using the H.264 MPEG-4 AVC compression standard]
  • [H.264 and MPEG-4 video compression]
  • [Overview of the H.264_AVC Video Coding Standard]
  • [Overview and Introduction to the Fidelity Range Extensions]

分三个阶段学习

git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy
npm config delete proxy
@henrik
henrik / ocr.markdown
Created March 3, 2012 17:07
OCR on OS X with tesseract

Install ImageMagick for image conversion:

brew install imagemagick

Install tesseract for OCR:

brew install tesseract --all-languages

Or install without --all-languages and install them manually as needed.