This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| -- phpMyAdmin SQL Dump | |
| -- version 3.5.8.1 | |
| -- http://www.phpmyadmin.net | |
| -- | |
| -- Host: 127.0.0.1 | |
| -- Generation Time: Jun 14, 2013 at 08:39 AM | |
| -- Server version: 5.6.11-log | |
| -- PHP Version: 5.4.14 | |
| SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; |
| from scipy.stats.kde import gaussian_kde | |
| import pymc | |
| from math import log | |
| from matplotlib import pyplot | |
| def KernelSmoothing(name, dataset, bw_method=None, lower=float('-inf'), upper=float('inf'), observed=False, value=None): | |
| '''Create a pymc node whose distribution comes from a kernel smoothing density estimate.''' | |
| density = gaussian_kde(dataset, bw_method) | |
| lower_tail = 0 | |
| upper_tail = 0 |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| function gnn (cases, wide, tall, population, iterations, error_fn, error_thresh) { | |
| var inputs = cases[0][0].length; | |
| var outputs = cases[0][1].length; | |
| // declare net, provide input layer | |
| var net = [new Array(inputs)]; | |
| // create input neurons in input layer | |
| for (var i = 0; i < inputs; i++) | |
| net[0][i] = {output: 0} | |
| // create hidden layers | |
| for (var x = 0; x < wide; x++) { |
| static NSString * BCP47LanguageCodeFromISO681LanguageCode(NSString *ISO681LanguageCode) { | |
| if ([ISO681LanguageCode isEqualToString:@"ar"]) { | |
| return @"ar-SA"; | |
| } else if ([ISO681LanguageCode hasPrefix:@"cs"]) { | |
| return @"cs-CZ"; | |
| } else if ([ISO681LanguageCode hasPrefix:@"da"]) { | |
| return @"da-DK"; | |
| } else if ([ISO681LanguageCode hasPrefix:@"de"]) { | |
| return @"de-DE"; | |
| } else if ([ISO681LanguageCode hasPrefix:@"el"]) { |
| import UIKit | |
| import QuartzCore | |
| class ViewController: UIViewController { | |
| @IBOutlet weak var label: UILabel | |
| @IBOutlet weak var counter: UILabel | |
| override func viewDidLoad() { | |
| super.viewDidLoad() |
| extension Array { | |
| func first() -> Element? { | |
| if isEmpty { | |
| return nil | |
| } | |
| return self[0] | |
| } | |
| func last() -> Element? { |
| <?php | |
| // get this data by logging into icloud.com on the calendars page and looking at the dev tools | |
| // as per https://translate.google.com/translate?sl=de&tl=en&js=y&prev=_t&hl=de&ie=UTF-8&u=http%3A%2F%2Fnico-beuermann.de%2Fblogging%2Farchives%2F115-Zugriff-auf-iCloud-Kalender-mit-Thunderbird.html&edit-text=&act=url | |
| $account = array( | |
| 'server' => '', // note, this will be p12 or something, not P0; see the server that iclod.com serves json from | |
| 'icloudid' => '', // the "dsid" | |
| 'appleid' => '', // your Apple ID; will be an email address | |
| 'pass' => '', // password for your Apple ID | |
| 'calid' => '' // the "pGuid" |