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:
<?php | |
namespace Gliph; | |
class DirectedAdjacencyGraph { | |
protected $vertices; | |
protected $vertexTypes; | |
public function __construct() { |
var update = function() { | |
cell = IPython.notebook.get_cell(5);cell.execute(); | |
cell.focus_cell(); | |
}; | |
setInterval(update, 600000); |
Should be work with 0.18
Destructuring(or pattern matching) is a way used to extract data from a data structure(tuple, list, record) that mirros the construction. Compare to other languages, Elm support much less destructuring but let's see what it got !
myTuple = ("A", "B", "C")
myNestedTuple = ("A", "B", "C", ("X", "Y", "Z"))
This extension was developed as part of the jsonapi module for Drupal.
The JSON API specification is agnostic about how a server implements filtering strategies. In fact, the spec says:
Note: JSON API is agnostic about the strategies supported by a server. The
filter
query parameter can be used as the basis for any number of filtering strategies.
const fs = require('fs') | |
const path = require('path') | |
const { promisify } = require('util') | |
const express = require('express') | |
const elmStaticHtml = require('elm-static-html-lib').default | |
const readFile = promisify(fs.readFile) | |
const app = express(); | |
const pathToClient = path.resolve(__dirname, '../client/src') |