'전체 글'에 해당되는 글 216건

  1. 2014.11.26 Stellarium
  2. 2014.11.19 사파리가 종료시 열려 있던 탭을 다시 여는 것을 방지하기
  3. 2014.09.30 OSX 에서 zip 파일을 만들 경우 함께 따라붙는 __MACOSX 폴더 없이 압축하기
  4. 2014.04.23 Color Scheme for iTerm2
  5. 2013.08.25 Alessandro Striggio: Missa sopra "Ecco si Beato Giorno" à 40 & 60 and Davitt Moroney
  6. 2013.08.02 hex dump
  7. 2013.07.01 upfront
  8. 2013.06.07 Useful vim search regular expressions

Stellarium

잡동사니 2014. 11. 26. 02:46

천체도 프로그램.

플라네타리움.

http://www.stellarium.org


:

사파리가 종료시 열려 있던 탭을 다시 여는 것을 방지하기

Computing 2014. 11. 19. 10:21

defaults write com.apple.Safari NSQuitAlwaysKeepsWindows -bool false

:

OSX 에서 zip 파일을 만들 경우 함께 따라붙는 __MACOSX 폴더 없이 압축하기

Computing 2014. 9. 30. 17:03

zip -r -X 20140927.zip 20140927/

:

Color Scheme for iTerm2

Computing 2014. 4. 23. 01:51

Site: 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


500년 만에 세상의 빛을 보고, 소리가 되어 나온 미사곡.


위의 비디오에서 moroney 의 해설에 따르면 각 8 파트의 성부의 합창단이 시계 방향으로 관객을 둘러싸고 무대에 서서 한 파트씩 순서대로 노래를 시작하는 dramatic 한 작곡이라고 한다.

내가 오랫동안 가지고 있던 음... 환상(?)인 새벽 어스름에 유럽의 천정 높은 큰 성당에서 거행되는 미사의 한가운데에서 미사음악을 감상하는... 장면에서, 이 곡의 작곡과 무대 구성에 따른 연주를 들으면 어떨까.. 

아래 비디오가 전곡 연주 비디오이다:





:

hex dump

Computing 2013. 8. 2. 12:21

 


:

upfront

English 2013. 7. 1. 17:25

upfront

 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:35

Matching 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

Reference

https://vim.fandom.com/wiki/Search_and_replace

: