This file contains hidden or 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
| { | |
| "bold_folder_labels": true, | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/Dayle Rees Color Schemes/LastNight.tmTheme", | |
| "fade_fold_buttons": false, | |
| "font_face": "Consolas", | |
| "font_options": | |
| [ | |
| "standardantialias" | |
| ], |
This file contains hidden or 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
| require "net/http" | |
| uri = URI("http://services.mobile.de/1.0.0/ad/search?exteriorColor=BLACK&exteriorColor=RED&modificationTime.min=2008-05-04T18:13:51.0Z&firstRegistrationDate.min=2008-05") | |
| request = Net::HTTP::Get.new(uri.request_uri) | |
| request.basic_auth '', '' | |
| request["Host"] = "services.mobile.de" | |
| request["Accept"] = "application/xml" |
This file contains hidden or 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
| #!/bin/bash | |
| echo "Make data dirs...." | |
| mkdir ~/data | |
| mkdir ~/data/config | |
| mkdir ~/data/db | |
| mkdir ~/data/shard0 | |
| mkdir ~/data/shard0/rs0 | |
| mkdir ~/data/shard0/rs1 | |
| mkdir ~/data/shard0/rs2 |
This file contains hidden or 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
| /** | |
| * Exercise 30(3) | |
| * Correct! | |
| */ | |
| SELECT fso.point, | |
| fso.date, | |
| fso.sum, | |
| fsi.sum | |
| FROM | |
| (SELECT fp.point, |
NewerOlder