- 경사스러운 일입니다. 이제 이 곳에 달리는 댓글을 막을 수 있어 그리 하게 되었습니다. 그래도 이전에 달렸던 댓글들은 아무래도 볼 수 있는 다른 방법이 인터넷 상에 존재하긴 하는 모양입니다.
…
(U+2026),⋯
(U+22EF),⋮
(U+22EE)는 모두.
(U+002E)가 3번 연속으로 나열된 것과 같은 것으로 봅니다.- "한글 음절 문자"는 가(U+AC00) 이상 힣(U+D7A3) 이하의 유니코드 문자들을 의미합니다.
…
(U+2026), ⋯
(U+22EF), ⋮
(U+22EE)는 모두 .
(U+002E)가 3번 연속으로 나열된 것과 같은 것으로 봅니다.# first_trades is a dict of the date of the first trade of each market on Poloniex. | |
# Values are specified as unix timestamps in whatever timezone the Poloniex API assumes. | |
# If you run into timezone issues, my system is GMT+10 (with daylight saving) when creating this. | |
# | |
# This data is very useful if you're attempting to pull the history of Poloniex's trades. | |
first_trades = dict( | |
BTC_BCN=1400591380.0, | |
USDT_NXT=1424337662.0, | |
BTC_RBY=1404410437.0, |
[plexmediaserver]
title=Plex Media Server
description=The Plex Media Server is smart software that makes playing Movies, TV Shows and other media on your computer simple
ports=32400/tcp|1900/udp|32469/udp|5353/udp
Once you have defined your application file, put it in /etc/ufw/applications.d, then tell ufw to reload the application definitions with
ufw app update plexmediaserver
ufw app info plexmediaserver
# There was a day where I have too many color schemes in iTerm2 and I want to remove them all. | |
# iTerm2 doesn't have "bulk remove" and it was literally painful to delete them one-by-one. | |
# iTerm2 save it's preference in ~/Library/Preferences/com.googlecode.iterm2.plist in a binary format | |
# What you need to do is basically copy that somewhere, convert to xml and remove color schemes in the xml files. | |
$ cd /tmp/ | |
$ cp ~/Library/Preferences/com.googlecode.iterm2.plist . | |
$ plutil -convert xml1 com.googlecode.iterm2.plist | |
$ vi com.googlecode.iterm2.plist |
" Copy this in ~/.vim/plugins | |
" In normal mode, type “,gaalpha” to append α, or “,gibeta” to insert β | |
function DefineGreekLetter(name, letter) | |
exec "nmap ,gi" . a:name . " i". a:letter | |
exec "nmap ,ga" . a:name . " a". a:letter | |
endf | |
call DefineGreekLetter("alpha", "α") | |
call DefineGreekLetter("Alpha", "Α") |