(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
CREATE TABLE IF NOT EXISTS `country` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`iso` char(2) NOT NULL, | |
`name` varchar(80) NOT NULL, | |
`nicename` varchar(80) NOT NULL, | |
`iso3` char(3) DEFAULT NULL, | |
`numcode` smallint(6) DEFAULT NULL, | |
`phonecode` int(5) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; |
CREATE TABLE IF NOT EXISTS `country` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`iso` char(2) NOT NULL, | |
`name` varchar(80) NOT NULL, | |
`nicename` varchar(80) NOT NULL, | |
`iso3` char(3) DEFAULT NULL, | |
`numcode` smallint(6) DEFAULT NULL, | |
`phonecode` int(5) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; |
/* ################################################################################ | |
# AUTHOR : Markus Kofler - http://www.kofler-it.com | |
# NAME : countries-for-mssql.sql | |
# DATE : 2015-06-21 | |
# Version : 1.0 | |
# COMMENT : This script creates a table within your MS-SQL-Server with all | |
# the ISO-codes for countries, phonecodes, etc. | |
# The script is based on the following github-resources: | |
# + https://gist.github.com/adhipg/1600028 | |
# + https://gist.github.com/paulochf/9616f85f3f3904f1c36f |
# --------------------------------------------------------------------------- | |
# | |
# 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 |
#!/bin/bash | |
if [ -z "$1" ]; then | |
echo "waiting for the following arguments: username + max-page-number" | |
exit 1 | |
else | |
name=$1 | |
fi | |
if [ -z "$2" ]; then |
Gitinspector (Mac) | |
https://github.com/ejwa/gitinspector | |
Installation: | |
1. Install Homebrew (http://brew.sh) | |
2. Install with brew: brew install hjorthjort/hjort/gitinspector | |
3. Edit configuration file in home folder (rc): |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
select o.created,o.last_ddl_time | |
from user_objects o | |
where o.object_name='MY_VIEW' and o.object_type='VIEW'; |
We will gather all URLs next - this may take a short while. Please remain patient. | |
(1) 3ddesktop -> http://desk3d.sourceforge.net/download.php | |
(2) 3dpong -> ftp://ftp.billsgames.com/unix/x/3dpong/src/3dpong-0.5.tar.gz | |
(3) 855resolution -> http://perso.orange.fr/apoirier/ | |
(4) a2png -> http://sourceforge.net/projects/a2png/files/a2png/0.1.5/a2png-0.1.5.tar.gz | |
(5) a2ps -> http://ftp.gnu.org/gnu/a2ps/a2ps-4.14.tar.gz | |
(6) a52dec -> http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz | |
(7) aalib -> http://sourceforge.net/projects/aa-project/files/aa-lib/1.4rc5/aalib-1.4rc5.tar.gz | |
(8) aamath -> http://fuse.superglue.se/aamath/aamath-0.3.tar.gz | |
(9) abcde -> http://abcde.googlecode.com/files/abcde-2.5.3.tar.gz |
Currently in no particular order. Most of these are kind of ancient.
Where's all the modern documentation? So much of what I've turned up searching is other folks complaining about having few options beyond reading source code.
The OREILLY books, while dated, seem to be some of the best available. Note that these can be read with a 7-day trial. Do this! At least get through the introduction section and first chapter of each to see if it's what you're after.