This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.parent { | |
& .child { | |
color: red; | |
} | |
} | |
.parent { | |
.child { | |
color: blue; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Title | Start | End | Key | |
---|---|---|---|---|
1. Gloria | 1 | 9 | D | |
2. Et in terra pax | 10 | 21 | Bm | |
3. Laudamus te | 22 | 27 | G | |
4. Gratias agimus tibi | 28 | 28 | Em | |
5. Propter magnam gloriam tuam | 29 | 32 | Em | |
6. Domine Deus I | 33 | 36 | C | |
7. Domine fili unigenite | 37 | 44 | F | |
8. Domine Deus II | 45 | 50 | Dm | |
9. Qui tollis peccata mundi | 51 | 52 | Am |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For http://xss-game.appspot.com/level6 | |
window.alert('insecure!'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ gem -v | |
1.8.17 | |
$ gem install redcar | |
ERROR: While executing gem ... (Gem::DependencyError) | |
Unable to resolve dependencies: redcar requires lucene (~> 0.5.0.beta.1), net-ssh (>= 0), net-sftp (>= 0), net-ftp-list (>= 0), jruby-openssl (>= 0), ruby-blockcache (>= 0), bouncy-castle-java (>= 0), swt (>= 0), plugin_manager (>= 0), redcar-icons (>= 0), redcar-jruby (>= 0), redcar-svnkit (>= 0), redcar-bundles (>= 0), redcar-javamateview (>= 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> db = TinyTds::Client.new :username => 'USER', :password => 'PASSWORD', :dataserver => 'SERVER', :database => 'DB', :encoding => 'UTF-8' | |
=> #<TinyTds::Client:0x101174a88> | |
>> db.encoding | |
=> nil | |
>> r = db.execute "insert into awards (title) values ('Japanese')" | |
=> #<TinyTds::Result:0x101167810> | |
>> r.each | |
=> [] | |
>> r = db.execute "insert into awards (title) values ('Japanese 日本語です')" | |
=> #<TinyTds::Result:0x101155188> |