(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.
| using Microsoft.Web.Administration; | |
| namespace MWASample | |
| { | |
| public class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var serverManager = new ServerManager(); | |
| var config = serverManager.GetApplicationHostConfiguration(); |
| with table_stats as ( | |
| select psut.relname, | |
| psut.n_live_tup, | |
| 1.0 * psut.idx_scan / greatest(1, psut.seq_scan + psut.idx_scan) as index_use_ratio | |
| from pg_stat_user_tables psut | |
| order by psut.n_live_tup desc | |
| ), | |
| table_io as ( | |
| select psiut.relname, | |
| sum(psiut.heap_blks_read) as table_page_read, |
(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.
| using System; | |
| using System.IO; | |
| using System.Net; | |
| using System.Text; | |
| using System.Collections.Generic; | |
| public class SSEvent { | |
| public string Name { get; set; } | |
| public string Data { get; set; } |
| <!doctype html> | |
| <head> | |
| <title>Hi</title> | |
| <style> | |
| #spin { | |
| background: #333; | |
| color: white; | |
| float: left; | |
| width: 200px; | |
| height: 200px; |
| Track A | |
| Bytes and Blobs – David Flanagan @__DavidFlanagan | |
| Slides: http://davidflanagan.com/Talks/jsconf11/BytesAndBlobs.html | |
| Conference Wifi Redux - Malte Ubi @cramforce | |
| Sashimi: https://github.com/cramforce/Sashimi | |
| Slides: http://social-traffic.streamie.org/preso/static/#slide1 | |
| Run Your JS everywhere with Jellyfish – Adam Christian @admc |