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
Total: 1~5 | |
下面各项得分的平均分 | |
Experience: 1~5 | |
过往项目的客户群(ToB or ToC)、项目规模、项目中担当的角色、是否有突出贡献等等 | |
Skill: 1~5 | |
开发基础、设计能力、能否攻克中大型开发难题,能否担当 full stack 任务等等 | |
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
(* | |
File: OmniFocus_Due_List.scpt | |
------------------------------------------------------------------------------------------------- | |
Revision: 4.14 | |
Revised: 2019-02-07 | |
Summary: Create .md file for list of tasks due and deferred +/- 7d from current date. | |
------------------------------------------------------------------------------------------------- | |
Script based on Justin Lancy (@veritrope) from Veritrope.com | |
http://veritrope.com/code/write-todays-completed-tasks-in-omnifocus-to-a-text-file | |
------------------------------------------------------------------------------------------------- |
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
// This script saves all followed question urls and titles in a hashmap => data.json | |
// { "url":"title", "url":"title", ...} | |
const puppeteer = require('puppeteer'); | |
var fs = require('fs'); | |
(async () => { | |
const browser = await puppeteer.launch({headless: false}) | |
const page = await browser.newPage() | |
const pagenum = 25 // This is the number of pages + 1 |
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
javascript: (function () { | |
let rsshub_host = 'https://rsshub.app'; | |
let cnblog = 'https://www.cnblogs.com/'; | |
let csdn = 'https://blog.csdn.net/'; | |
let jianshu_user = '/jianshu/user/'; | |
let zhihu_user = '/zhihu/people/activities/'; | |
let zhihu_collection = '/zhihu/collection/'; | |
let bilibili_user = '/bilibili/user/video/'; | |
let jike_topic = '/jike/topic/'; |
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
(function() { | |
// 批量管理 | |
Array.prototype.forEach.call(document.getElementsByClassName('btn_link'), function(btn) { | |
if (btn.getAttribute('action-type') == 'batselect') { | |
btn.click(); | |
} | |
}); | |
// 批量选择 | |
Array.prototype.forEach.call(document.getElementsByClassName('member_li'), function(li) { |
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
import pandas as pd | |
import sys | |
if __name__ == '__main__': | |
df = pd.read_csv(sys.argv[1]) | |
new = df[['Start time', 'End time', 'Description', 'Project', 'Duration']] | |
new.to_html('time_entries.html') | |
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
127.0.0.1 ad.mi.com | |
127.0.0.1 ad.xiaomi.com | |
127.0.0.1 cdn.ad.xiaomi.com | |
127.0.0.1 log.ad.xiaomi.com | |
127.0.0.1 api.ad.xiaomi.com | |
127.0.0.1 sdkconfig.ad.xiaomi.com | |
127.0.0.1 o2o.api.xiaomi.com | |
127.0.0.1 gallery.pandora.xiaomi.com | |
127.0.0.1 mishop.pandora.xiaomi.com | |
127.0.0.1 upgrade.mishop.pandora.xiaomi.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 perl | |
=head1 SYNOPSIS | |
pandoc -f opml -t markdown --atx-headers [PANDOC OPTIONS] input.opml \ | |
| perl md-head2dl.pl [OPTIONS] > output.md | |
=head1 DESCRIPTION | |
Massage Markdown converted with Pandoc L<http://pandoc.org> from OPML exported from Dynalist <https://dynalist.io>. |
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
tell application "Finder" | |
set fl to files of folder POSIX file "/Users/pi/Desktop/VoodoopadExport" as alias list | |
end tell | |
repeat with f in fl | |
set theText to (do shell script "cat " & quoted form of (POSIX path of f)) | |
set theName to (do shell script "basename " & quoted form of (POSIX path of f)) | |
tell application "Evernote" | |
create note with text theText title theName notebook "private" tags "VoodooPad" | |
end tell | |
end repeat |
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
/* A Minos style html theme for Pandoc, thanks for http://blog.zhangruipeng.me/hexo-theme-minos/ */ | |
/* Usage this them by: | |
pandoc test.md -c minos-style.css --self-contained -o demo.html | |
*/ | |
body { | |
font: 16px 'PT Serif', 'STZhongsong', '华文中宋', 'Microsoft Yahei', serif; | |
max-width: 760px; | |
margin: auto; |