This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name PTT Web Auto AID Link | |
// @description 自動為 PTT 網頁版的文章代碼加上連結 | |
// @namespace https://www.ptt.cc/bbs | |
// @author Shao-Chung Chen | |
// @license MIT (http://opensource.org/licenses/MIT) | |
// @version 1.3.0 | |
// @include http://www.ptt.cc/* | |
// @include https://www.ptt.cc/* | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Pocket Web Customized | |
// @description Cusotmizations/Simplifications for Pocket Web | |
// @namespace http://getpocket.com | |
// @author Shao-Chung Chen | |
// @license MIT (http://opensource.org/licenses/MIT) | |
// @version 1.9.1 | |
// @include http://getpocket.com/* | |
// @include https://getpocket.com/* | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# ref. https://medium.com/on-coding/shorter-code-is-inconsiderate-41cce917b51b | |
import timeit | |
setup = ''' | |
def hamming_fp(a, b): | |
return sum(x != y for x, y in map(None, a, b)) | |
def hamming(s1, s2): | |
hamming_number = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import re | |
import md5 | |
import sys | |
import json | |
import urllib | |
import urllib2 | |
try: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <iterator> | |
#include <vector> | |
#include <set> | |
// overload for all STL containers | |
template < | |
typename T, | |
typename = typename std::enable_if < | |
std::is_convertible< |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
# dmhy-magdl.py -- command-downloader for share.dmhy.org | |
import sys | |
import urllib | |
import urllib2 | |
from datetime import datetime, timedelta | |
import webbrowser | |
import xml.etree.ElementTree as ElementTree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# dependencies: find, grep, sort, uniq, awk | |
echo 'List all files...' | |
find $1 | |
# output: | |
# a | |
# a/b | |
# a/b/c | |
# a/b/c/d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Moved to https://github.com/dannvix/yyets-subdl | |
import webbrowser | |
webbrowser.open('https://github.com/dannvix/yyets-subdl') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# project/forum/views.py | |
import json | |
from datetime import datetime | |
from django.http import HttpResponse | |
from django.shortcuts import get_object_or_404 | |
from django.forms.models import model_to_dict | |
from forum.models import Post |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.db import models | |
from jsonfield import JSONField | |
from dirtyfields import DirtyFieldsMixin | |
import time | |
class RecordStatusHistoryMixin(DirtyFieldsMixin): | |
def save(self, *args, **kwargs): | |
if not self.pk: | |
# first create | |
current_time = int(time.time()) |