Skip to content

Instantly share code, notes, and snippets.

View johnroyer's full-sized avatar

Zero Huang johnroyer

View GitHub Profile
又是走過竹軒門口 看著他們卿卿我我
尷尬的我快步走過 心裡想著什麼時候會輪到我
聽到正妹被人把走 勝利的人是個豬頭
搖搖頭說自己沒種 害羞得連追女生的勇氣都沒有
想想平時做些什麼 讀書作業考試樣樣都多
哪來機會時間交朋友 只有無奈地看著別人手牽手
我也想要一個女朋友 陪我唸書跟我到處走走
宿舍門前十八相送 靠著我的肩膀說妳永遠愛我
我也想要一個女朋友 只怪作業考試實在太多
@pksunkara
pksunkara / config
Last active July 16, 2024 06:57
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
[user]
name = Pavan Kumar Sunkara
email = pavan.sss1991@gmail.com
username = pksunkara
[init]
defaultBranch = master
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta
@pathawks
pathawks / OpenGraph for Blogger.md
Last active October 28, 2023 23:41
OpenGraph for Blogger

Adding Open Graph metadata to Blogger is easy. Simply copy the code below and paste it into your template after the <header> tag.

A couple notes:

  • og:locale Should probably actually reflect the blog's locale instead of just being a hardcoded string. Unfortunately, Blogger only gives us en-us with a hyphen, instead of an underscore, so that won't work.
  • If you're using your blog as a personal profile, you may consider changing the second og:type from website to profile and adding your personal information
  • og:image Is only supplied if Blogger finds an image in the current post. However, not supplying og:image is invalid. You could provide an alternate image of your blog logo, or a Gravatar.
  • If you do something cool with this, I'd love to hear about it. pathawks@shortmail.com

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

@linpc
linpc / gist:2389778
Created April 15, 2012 03:43
#osdc.tw 2012 irc log
--- Day changed 六 4月 14 2012
00:00 < hcchien> 算了,洗澡睡覺去。明天看緣份了 :D
00:18 < cls_bsd> ....
00:34 < jnlin> hcchien: 我有...
07:37 < darkx> 大家早安
08:36 < miyagawa> which building is the venue? http://www.sinica.edu.tw/as/map/asmap_c.html
08:39 < clkao_> miyagawa: 24
08:39 < miyagawa> thanks
08:39 < clkao_> hcchien: 為什麼我的 abstract 沒有出現
08:57 clkao_ is now known as clkao
@littlebtc
littlebtc / .vimrc
Last active October 6, 2015 03:27
Littlebtc's .vimrc
" Vundle setup
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'Valloric/YouCompleteMe'
Bundle 'kchmck/vim-coffee-script'
@CrBoy
CrBoy / prime.py
Created June 23, 2012 08:48
Generate prime numbers example
num = range(100)
result = set(num)
for i in range(2,10):
result -= set(num[i*2::i])
result -= set([0,1])
print result
@cillosis
cillosis / gist:6370801
Created August 28, 2013 20:27
Git Hook - PHP Syntax Checker (pre-commit)
echo ""
echo "******************************"
echo "** Running PHP Syntax Check **"
echo "******************************"
if [ -z "$PHP_BIN" ]
then
PHP_BIN=php
fi
@ascendbruce
ascendbruce / gist:10584882
Created April 13, 2014 13:46
KKBOX 授權擁有的動漫卡通音樂 集中帖 第一頁 (markdown)

整理自 KKBOX 討論區的「KKBOX 授權擁有的動漫卡通音樂 集中帖」的第一頁(討論串樓主整理的)

需注意後面零星的歌單並沒有整理到這裡

這個 gist 是整理到 ACG Music (Taiwan) 前整理用 temp。

「鋼之鍊金術師」

《劇場版 主題曲》Link-L'Arc-en-Ciel(彩虹樂團)

@gavinhungry
gavinhungry / nginx-tls.conf
Last active March 11, 2024 14:51
Nginx SSL/TLS configuration for "A+" Qualys SSL Labs rating
#
# Name: nginx-tls.conf
# Auth: Gavin Lloyd <gavinhungry@gmail.com>
# Desc: Nginx SSL/TLS configuration for "A+" Qualys SSL Labs rating
#
# Enables HTTP/2, PFS, HSTS and OCSP stapling. Configuration options not related
# to SSL/TLS are not included here.
#
# Additional tips:
#