- 👍 This is great!
- ❓ I have a question / can you clarify?
- ❌ This has to change. It’s possibly an error or strongly violates existing conventions.
- 🔧 This is a well meant suggestion. Take it or leave it.
- 🙃 This is a nitpick.
- 🤔 I have some serious concerns about this particular piece of code, we should think about it/discuss it further.
- 🤡 This is a complaint about something we don’t have an obvious answer to and that is not necessarily a problem originating from your changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |
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.
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 file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var update = function() { | |
cell = IPython.notebook.get_cell(5);cell.execute(); | |
cell.focus_cell(); | |
}; | |
setInterval(update, 600000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Gliph; | |
class DirectedAdjacencyGraph { | |
protected $vertices; | |
protected $vertexTypes; | |
public function __construct() { |