Skip to content

Instantly share code, notes, and snippets.

USA =
{'name': 'data', 'children': [
{'name':'A', 'desc':"Communicable, maternal, perinatal and nutritional conditions", 'children':[
{'name':'A01', 'desc':"Tuberculosis", '90FE':0, '90FL':0, '90FP':.000484, '90F1':.000857, '90F5':.000954, '90F10':.000915, '90F15':.000679, '90F20':.001865, '90F25':.002201, '90F30':.002423, '90F35':.001872, '90F40':.001363, '90F45':.001124, '90F50':.000934, '90F55':.000866, '90F60':.000818, '90F65':.000846, '90F70':.00086, '90F75':.000809, '90F80':.000549, '00FE':0, '00FL':0, '00FP':.000539, '00F1':.001017, '00F5':.000981, '00F10':.000816, '00F15':.000609, '00F20':.001216, '00F25':.001175, '00F30':.001267, '00F35':.000935, '00F40':.000713, '00F45':.000735, '00F50':.000596, '00F55':.000584, '00F60':.000544, '00F65':.000565, '00F70':.000608, '00F75':.000603, '00F80':.000399},
{'name':'A02', 'desc':"HIV/AIDS", '90FE':.023124, '90FL':.002457, '90FP':.023525, '90F1':.098902, '90F5':.103213, '90F10':.06633, '90F15':.078107, '90F20':.142801, '90F25':.114696, '90F30':.122893, '90F35'
@r-sal
r-sal / Windows8Notes.md
Last active December 13, 2015 17:48
Windows 8 Notes

Windows 8 Notes


Opening Startup Folder

Windows + R -> %AppData%\Microsoft\Windows\Start Menu\Programs\Startup

Useful Shortcuts

hibernate - C:\Windows\System32\rundll32.exe PowrProf.dll,SetSuspendState

@r-sal
r-sal / essentialUnixCommands.md
Last active December 13, 2015 18:09
Most Important UNIX commands
@r-sal
r-sal / yada-crawler.pl
Last active December 14, 2015 00:39 — forked from creaktive/yada-crawler.pl
Web Scraping with Modern Perl (Part 2 - Speed Edition)
#!/usr/bin/env perl
# http://blogs.perl.org/users/stas/2013/02/web-scraping-with-modern-perl-part-2---speed-edition.html
use 5.016;
use common::sense;
use utf8::all;
# Use fast binary libraries
use EV;
use Web::Scraper::LibXML;
use YADA 0.039;
@r-sal
r-sal / mojo-crawler.pl
Last active December 14, 2015 00:39 — forked from creaktive/mojo-crawler.pl
Web Scraping with Modern Perl (Part 1)
#!/usr/bin/env perl
# http://blogs.perl.org/users/stas/2013/01/web-scraping-with-modern-perl-part-1.html
use 5.010;
use open qw(:locale);
use strict;
use utf8;
use warnings qw(all);
use Mojo::UserAgent;
@r-sal
r-sal / DatasetBookmarks.md
Last active February 18, 2023 16:57
List of various types of datasets
@r-sal
r-sal / HTML_Template.html
Last active December 14, 2015 09:08
HTML Page Starter Template
<!DOCTYPE html>
<head>
<title></title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<style>
#main{ width: 800px; min-height: 500px; margin: 0 auto; background-color: #b2beb5; }
</style>
</head>
// Add in Google Analytics tracking
var track = function(category, name, value) {
if (window._gaq) {
window._gaq.push(["_trackEvent", category, name, value]);
}
};
track("Source", "Visit", this.href);
@r-sal
r-sal / duplicating_a_repository.md
Created March 15, 2013 00:08
Git Repository Notes

Duplicating a repository

$ git clone --bare https://github.com/exampleuser/old-repo.git
# Make a bare clone of the repo


cd old-repo.git
$ git push --mirror https://github.com/exampleuser/new-repo.git
# Mirror-push to the new repo