Skip to content

Instantly share code, notes, and snippets.

ced_name_2016 yes_population yes_percentage no_population no_percentage total_population total_percentage
Banks 37736 44.9 46343 55.1 84079 100
Barton 37153 43.6 47984 56.4 85137 100
Bennelong 42943 49.8 43215 50.2 86158 100
Berowra 48471 54.6 40369 45.4 88840 100
Blaxland 20406 26.1 57926 73.9 78332 100
Bradfield 53681 60.6 34927 39.4 88608 100
Calare 54091 60.2 35779 39.8 89870 100
Chifley 32871 41.3 46702 58.7 79573 100
Cook 47505 55.0 38804 45.0 86309 100
Cowper 57493 60.0 38317 40.0 95810 100
Cunningham 60906 65.7 31840 34.3 92746 100
Dobell 59475 65.7 30987 34.3 90462 100
Eden-Monaro 57223 64.9 30926 35.1 88149 100
Farrer 48432 55.2 39297 44.8 87729 100
Fowler 27847 36.3 48782 63.7 76629 100
Gilmore 59322 62.0 36386 38.0 95708 100
Grayndler 73208 79.9 18429 20.1 91637 100
Greenway 38016 46.4 43980 53.6 81996 100
Hughes 51337 58.4 36558 41.6 87895 100
Hume 51284 58.6 36271 41.4 87555 10
ID ced_name_2016 yes_population no_population
1 Banks 37736 46343
2 Barton 37153 47984
3 Bennelong 42943 43215
4 Berowra 48471 40369
5 Blaxland 20406 57926
6 Bradfield 53681 34927
7 Calare 54091 35779
8 Chifley 32871 46702
9 Cook 47505 38804
@predakanga
predakanga / fml-client-latest.log
Created November 7, 2016 13:24
AE2 Crafting Plan bug
This file has been truncated, but you can view the full file.
[23:51:47] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[23:51:47] [main/INFO] [FML/]: Forge Mod Loader version 12.18.2.2118 for Minecraft 1.10.2 loading
[23:51:47] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_25, running on Windows 10:amd64:10.0, installed at C:\Users\Lachlan\Documents\Curse\Minecraft\Install\runtime\jre-x64\1.8.0_25
@predakanga
predakanga / fml-client-latest.log
Created November 7, 2016 11:26
AE2 Storage Drawers bug
This file has been truncated, but you can view the full file.
[22:02:29] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[22:02:29] [main/INFO] [FML/]: Forge Mod Loader version 12.18.2.2118 for Minecraft 1.10.2 loading
[22:02:29] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_25, running on Windows 10:amd64:10.0, installed at C:\Users\Lachlan\Documents\Curse\Minecraft\Install\runtime\jre-x64\1.8.0_25
@predakanga
predakanga / 01-setup.sh
Created July 10, 2016 09:26
PHP-DI PHPUnit run on Linux/Docker, PHP 7.0.8
git clone https://github.com/PHP-DI/PHP-DI.git
cd PHP-DI
composer install
docker run -it --rm -v "`pwd`:/app" php:7-cli sh -c "cd /app; vendor/bin/phpunit"
docker run -it --rm -v "`pwd`:/app" php:7-cli php --version
@predakanga
predakanga / 01-setup.sh
Created July 10, 2016 09:22
PHP-DI PHPUnit run on OS X, PHP 7.0.7
git clone https://github.com/PHP-DI/PHP-DI.git
cd PHP-DI
composer install
vendor/bin/phpunit
php --version
PHPUnit 4.8.26 by Sebastian Bergmann and contributors.
............................................................... 63 / 406 ( 15%)
............................................................... 126 / 406 ( 31%)
.......................................................F....... 189 / 406 ( 46%)
............................................................... 252 / 406 ( 62%)
...................................................F........... 315 / 406 ( 77%)
...........................F.....................F............. 378 / 406 ( 93%)
............................
package main
import (
"crypto/x509"
"crypto/tls"
"encoding/pem"
"os"
"io/ioutil"
"github.com/jessevdk/go-flags"
"time"
sub get {
my $url = shift;
my $ua = LWP::UserAgent->new;
$ua->agent("Bot");
my $request = HTTP::Request->new(GET => $url);
my $result = $ua->request($request);
#print $result->content;
return $result->content;
}
@predakanga
predakanga / php_gdbinit
Created February 23, 2015 07:32
GDB PHP stacktraces
define set_ts
set $tsrm_ls = $arg0
end
document set_ts
set the ts resource, it is impossible for gdb to
call ts_resource_ex while no process is running,
but we could get the resource from the argument
of frame info.
end