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
| Title | Author | Genre | Height | Publisher | |
|---|---|---|---|---|---|
| Fundamentals of Wavelets | Goswami, Jaideva | signal_processing | 228 | Wiley | |
| Data Smart | Foreman, John | data_science | 235 | Wiley | |
| God Created the Integers | Hawking, Stephen | mathematics | 197 | Penguin | |
| Superfreakonomics | Dubner, Stephen | economics | 179 | HarperCollins | |
| Orientalism | Said, Edward | history | 197 | Penguin | |
| Nature of Statistical Learning Theory, The | Vapnik, Vladimir | data_science | 230 | Springer | |
| Integration of the Indian States | Menon, V P | history | 217 | Orient Blackswan | |
| Drunkard's Walk, The | Mlodinow, Leonard | science | 197 | Penguin | |
| Image Processing & Mathematical Morphology | Shih, Frank | signal_processing | 241 | CRC |
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
| #!/usr/bin/env bash | |
| # this can be useful when developing against a custom DNS server, or | |
| # for example, if you made a change to the DNS settings of a domain, and you | |
| # know the authoritative nameserver IP address for a domain, you could use this | |
| # to bypass the intermediate DNS cache, and apply an HTTP request using the new | |
| # DNS settings supplied by your specified (authoritative) nameserver | |
| curl --dns-servers <DNSIP,DNSIP> url.com |
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
| filter { | |
| mutate { | |
| rename => { "lon" => "location" } | |
| merge => { "location" => "lat" } | |
| } | |
| mutate { | |
| convert => { "location" => "float" } | |
| remove_field => ["lat"] | |
| } | |
| date { |
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
| Windows Registry Editor Version 5.00 | |
| [-HKEY_CLASSES_ROOT\.iso] | |
| [-HKEY_CLASSES_ROOT\Windows.IsoFile\shell\mount\command] | |
| [-HKEY_CLASSES_ROOT\.img] | |
| [-HKEY_CLASSES_ROOT\.vhdx] |