I hereby claim:
- I am ganeshan on github.
- I am ganeshan (https://keybase.io/ganeshan) on keybase.
- I have a public key ASCEA-YUBmKvhsB16fmfhgHCOjLJjJMoZIxZaLUqikpM7go
To claim this, I am signing this object:
| # Reduce the columns | |
| cut -f1-2,5-6 allCountries.txt > allCountries_red.txt | |
| # Add a header row | |
| sed '1s/^/id title_s lat lng\ | |
| /g' allCountries_red.txt > allCountries_head.txt | |
| # Add wkt requires csvpys https://github.com/cypreess/csvkit/blob/master/docs/scripts/csvpys.rst | |
| csvpys --tab -s wkt_rpt "'POINT(' + ch['lng'] + ' ' + ch['lat'] + ')'" allCountries_head.txt > allCountries_wkt.txt |
| SERVICESTACK: A BASIC PAGING AND SORTING IMPLEMENTATION | |
| https://ivanfioravanti.wordpress.com/tag/servicestack/ |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Data.SqlClient; | |
| using Dapper; | |
| // to have a play, install Dapper.Rainbow from nuget |
| using System; | |
| using System.Linq; | |
| using System.Data; | |
| using System.Data.SqlClient; | |
| using System.Threading.Tasks; | |
| using Dapper; | |
| public class Program | |
| { | |
| public static void Main() |
| { | |
| "name": "ag-grid-cli", | |
| "version": "0.0.0", | |
| "license": "MIT", | |
| "scripts": { | |
| "ng": "ng", | |
| "start": "ng serve", | |
| "build": "ng build", | |
| "test": "ng test", | |
| "lint": "ng lint", |
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
| # Secure adminer setup | |
| # Author Taras Kozlov | |
| # download adminer to separate directory | |
| mkdir -p /var/www/admin | |
| cd /var/www/admin | |
| wget http://www.adminer.org/latest.php -O adminer.php | |
| echo '<?php phpinfo(); >' > info.php | |
| sudo -i |
I hereby claim:
To claim this, I am signing this object:
This text is the section about OS X Yosemite (which also works for macOS Sierra) from https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/#mac-os-x
The last time i visited this link it was dead (403), so I cloned it here from the latest snapshot in Archive.org's Wayback Machine https://web.archive.org/web/20170523131633/https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/
| import java.io.IOException; | |
| import java.net.URLClassLoader; | |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| import java.nio.file.Path; | |
| /** | |
| * Example demonstrating a ClassLoader leak. | |
| * | |
| * <p>To see it in action, copy this file to a temp directory somewhere, |