Skip to content

Instantly share code, notes, and snippets.

@ZoeyYoung
ZoeyYoung / config
Created July 13, 2013 01:35
SublimeCodeIntel config
{
"Python": {
"python": '/usr/bin/python',
"pythonExtraPaths": ["C:\Python27"]
},
"Python3": {
"python": '/usr/bin/python3',
"pythonExtraPaths": ["C:\Python33"]
}
}
@ZoeyYoung
ZoeyYoung / 设置默认文件夹.reg
Created July 10, 2013 17:00
Windows: 设置默认文件夹
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders]
"Desktop"="F:\\Desktop"
"Favorites"="E:\\Favorites"
"My Music"="E:\\Music"
"My Pictures"="E:\\Pictures"
"My Video"="E:\\Videos"
"Personal"="E:\\Documents"
"{374DE290-123F-4565-9164-39C4925E467B}"="E:\\Downloads"
@ZoeyYoung
ZoeyYoung / gist:5894319
Last active December 19, 2015 03:59
Tornado: How2 Print a date in a tornado template from a Mongodb ObjectId
{{locale.format_date(c['_id'].generation_time.replace(tzinfo=None), -480, relative=False)}}
@ZoeyYoung
ZoeyYoung / Monokai Soda.tmTheme
Last active December 19, 2015 03:59
Sublime Text: Monokai Sode.tmTheme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Monokai Soda</string>
<key>settings</key>
<array>
<dict>
<key>settings</key>
@ZoeyYoung
ZoeyYoung / pelicanconf.py
Created June 26, 2013 09:33
Pelican: 配置
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = 'ZoeyYoung'
AUTHOR_EMAIL = 'ydingmiao@gmail.com'
EMAIL = 'ydingmiao@gmail.com'
SITENAME = 'OK Computer'
SITESUBTITLE = "It's better to burn out <br/> than to fade away."
SITEURL = 'http://zoeyyoung.gitcafe.com'
@ZoeyYoung
ZoeyYoung / gist:5859959
Last active December 18, 2015 23:09
Pelican: 文档头部
Title:
Date: 2013-06-25
Category:
Tags:
Slug:
Author: Zoey Young
Summary:
@ZoeyYoung
ZoeyYoung / 清空回收站.reg
Created June 25, 2013 16:15
REG: 清空回收站
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Background\shell\empty]
"CommandStateHandler"="{c9298eef-69dd-4cdd-b153-bdbc38486781}"
"Description"="@shell32.dll,-31332"
"Icon"="shell32.dll,-254"
"MUIVerb"="@shell32.dll,-10564"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Background\shell\empty\command]
"DelegateExecute"="{48527bb3-e8de-450b-8910-8c4099cb8624}"
@ZoeyYoung
ZoeyYoung / font.css
Created June 25, 2013 14:23
CSS: Font
font: 16px/1.5 \5fae\8f6f\96c5\9ed1,tahoma,arial,\5b8b\4f53;
@ZoeyYoung
ZoeyYoung / print.css
Created June 24, 2013 15:07
CSS: Print Style Sheet
.no-print { display: none !important; }
body { color: black !important; background: white !important; background-image: none !important; font-family: '微软雅黑', Georgia, ‘Times New Roman’, serif; }
.article-sidebar, .article-content { width: 100% !important; margin: 0 !important; float: none !important; }
.content { background: transparent !important; }
.content a:link:after { content: " (" attr(href) ") "; }
.content a:link { font-weight: bold; text-decoration: underline; color: #06c !important;}
p { font-size: 12pt; }
#uyan_frame { page-break-before: always; }
#uyan_frame a:link:after { content: ""; }
.gist .line-numbers, .gist-meta { display: none; }
@ZoeyYoung
ZoeyYoung / gist:5824081
Created June 20, 2013 15:58
CSS: 自定义文本选择
::selection { background: #e2eae2; }
::-moz-selection { background: #e2eae2; }
::-webkit-selection { background: #e2eae2; }