'전체 글'에 해당되는 글 216건
- 2014.11.26 Stellarium
- 2014.11.19 사파리가 종료시 열려 있던 탭을 다시 여는 것을 방지하기
- 2014.09.30 OSX 에서 zip 파일을 만들 경우 함께 따라붙는 __MACOSX 폴더 없이 압축하기
- 2014.04.23 Color Scheme for iTerm2
- 2013.08.25 Alessandro Striggio: Missa sopra "Ecco si Beato Giorno" à 40 & 60 and Davitt Moroney
- 2013.08.02 hex dump
- 2013.07.01 upfront
- 2013.06.07 Useful vim search regular expressions
사파리가 종료시 열려 있던 탭을 다시 여는 것을 방지하기
Computing 2014. 11. 19. 10:21defaults write com.apple.Safari NSQuitAlwaysKeepsWindows -bool false
OSX 에서 zip 파일을 만들 경우 함께 따라붙는 __MACOSX 폴더 없이 압축하기
Computing 2014. 9. 30. 17:03zip -r -X 20140927.zip 20140927/
Color Scheme for iTerm2
Computing 2014. 4. 23. 01:51Site: http://iterm2colorschemes.com
My Favorite: Solarized theme with modified selection color
In case the original site is shut down or for any other unfortunate event,
Here goes installation instructions from the original site:
Installation Instructions
To install:
- Launch iTerm 2. Get the latest version at iterm2.com
- Type CMD+i
- Navigate to Colors tab
- Click on Load Presets
- Click on Import
- Select the .itermcolors file(s) of the scheme(s) you'd like to use
- Click on Load Presets and choose a color scheme
mbadolato-iTerm2-Color-Schemes-2567792.zip
Alessandro Striggio: Missa sopra "Ecco si Beato Giorno" à 40 & 60 and Davitt Moroney
Music/Classical 2013. 8. 25. 17:00요즘 스윙재즈만 듣느라 원래 좋아하던 고전음악을 거의 듣지 못했었다.
청소하다가 iTunes 가 shuffle 로 davitt moroni 의 곡을 틀어 주는 바람에 갑자기 '내가 이 좋은 것을 그렇게 오랫동안 듣지 않고 있었다'는 생각이 들어서 이것저것 찾다가 Davitt Moroney 의 facebook 을 찾아 들어갔다. 요즘은 참 세상이 좋은 것 같다. (예전의 내 포스팅 중 Davitt Moroney 의 연주 소개글: 바하 프랑스 조곡 4번)
Davitt Moroney 의 facebook: https://www.facebook.com/pages/Davitt-Moroney/262905624727?ref=profile
upfront
English 2013. 7. 1. 17:25upfront
adjective
1. invested or paid in advance or as beginning capital: an up-front fee of five percent and an additional five percent when the job is done.
I kicked in about 20 bucks. 19 to be exact, which means I'm gonna get an advanced copy of the song and a copy of the album digitally when it comes out. So, you get something for your, .. it's not like strictly a donation. You're gonna get something back by putting in some money upfront, which I think kind of cool.
Useful vim search regular expressions
Computing/vim tips 2013. 6. 7. 16:35Matching as few characters as possible
In following line:
John is someone that is capable of doing it.
Regexp t.\*t
matches 'that is capable of doing it', not 'that'. Because the asterisk character (\*
) matches as many characters as possible.
Sometimes you just want to match that
only. Use {-}
instead to match as few characters as possible.
Real world example, to match member variables only. With vim, like this:
\\<m\[A-Z\].\\{-}\\>
This expression matches, for example, following words: (the yellow backgrounded are matching words)
/\*
\* mlOwer does not match. But mCapital matches.
\*
inline bool operator==(const FooClass &aRight) const
{
return this->mWeight == aRight.mWeight;
}
inline bool operator!=(const FooClass &aRight) const
{
return this->mWeight != aRight.mWeight;
}
inline bool operator>(const FooClass &aRight) const
{
return this->mWeight < aRight.mWeight;
}
Text that matches the search pattern
&
represents the text that matches the search pattern.
For example, following command finds all occurrences of DataInputStream
and replace them with carbon::io::DataInputStream
:%s/\\<DataInputStream\\>/carbon::io::&/g