(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.
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" |
(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.
| /** | |
| * Does an AJAX load of the specified URL | |
| * | |
| * @param {String} url URL to load | |
| * @param {Object} data Hash of data to send in querystring | |
| * @param {Function} callback Function to call once request returns | |
| */ | |
| function load(url, data, callback) { | |
| if (data) { | |
| var params = Object.keys(data) |
| (function(w) { | |
| var Matrix3D = {}; | |
| Matrix3D._deg2rad = function(deg) { | |
| return deg * (Math.PI / 180); | |
| }; | |
| Matrix3D.create = function() { | |
| var out, args = Array.prototype.slice.call(arguments); |
| // Just before switching jobs: | |
| // Add one of these. | |
| // Preferably into the same commit where you do a large merge. | |
| // | |
| // This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
| // and then it quickly escalated into more and more evil suggestions. | |
| // I've tried to capture interesting suggestions here. | |
| // | |
| // Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
| // @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |
| // add a new object | |
| var type = 'note'; | |
| var attributes = {color: 'red'}; | |
| store.add(type, attributes) | |
| .done(function (newObject) {}); | |
| .fail(function (error) {}); | |
| // update an existing object | |
| var type = 'note'; | |
| var id = 'abc4567'; |
Couldn't find the text of this for a while...
| # source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
| # A list of available STUN server. | |
| stun.l.google.com:19302 | |
| stun1.l.google.com:19302 | |
| stun2.l.google.com:19302 | |
| stun3.l.google.com:19302 | |
| stun4.l.google.com:19302 | |
| stun01.sipphone.com | |
| stun.ekiga.net |