- abbreviation
- You write some parts but not all parts of a long word. When someone sees what you wrote, they know it means the same as this long word.
- ability
- What someone can do.
- about
- Thinking or saying what this thing is, what it does, and what happens to it.
- Near.
- Around.
- A short time before.
- Very much like but not the same as and not more than. Not much more than or much less than.
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 jsdom = require("jsdom").jsdom; | |
var Readability = require("./index").Readability; | |
function removeCommentNodesRecursively(node) { | |
for (var i = node.childNodes.length - 1; i >= 0; i--) { | |
var child = node.childNodes[i]; | |
if (child.nodeType === child.COMMENT_NODE) { | |
node.removeChild(child); | |
} else if (child.nodeType === child.ELEMENT_NODE) { | |
removeCommentNodesRecursively(child); |
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 jsdom = require("jsdom").jsdom; | |
var Readability = require("./index").Readability; | |
var express = require("express"); | |
var app = express(); | |
function removeCommentNodesRecursively(node) { | |
for (var i = node.childNodes.length - 1; i >= 0; i--) { | |
var child = node.childNodes[i]; | |
if (child.nodeType === child.COMMENT_NODE) { |
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
#include<stdio.h> | |
#include<stdlib.h> | |
#include<assert.h> | |
#include<string.h> | |
#include<ctype.h> | |
void handle_args(int argc, char*argv[], char *neg, FILE **fp); | |
int main(int argc, char*argv[]) | |
{ |
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
#!/usr/bin/env python3 | |
from util import * | |
from lam import * | |
from ty import * | |
def extract(t, *kind): | |
if type(t) is Lam: | |
res = extract(t.args[1], *kind) | |
if Lam in kind: res.add(t) | |
if Var in kind: res.add(t.args[0]) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
a | |
ᴇᴛʏᴍᴏʟᴏɢʏ: A priori, possibly onomatopoeic | |
ɪɴᴛᴇʀᴊᴇᴄᴛɪᴏɴ | |
• (emotion word) ah, oh, uh, ha | |
ᴘᴀʀᴛɪᴄʟᴇ | |
• (adds emphasis) ah, yes, really, indeed | |
ɴᴏᴛᴇꜱ | |
Often used repeatedly (e.g 'a a a') to signify laughter | |
akesi |
Pointless Prolog
This document proposes relative clauses as syntactic sugar for Prolog, which allow us to write more concisely by avoiding repetitively naming variables. Relative clauses are written as a list of predicates surrounded by curly braces. They introduce a new variable, which is constrained by applying all of the included predicates to it. For example:
{red, block}
is equivalent to the query
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
%import common.WS | |
%ignore WS | |
ADJ: "big" | "red" | "tall" | "narrow" | "mine" | "blue" | "green" | "large" | "small" | "short" | "little" | "wide" | |
DET: "that" | "any" | "an" | "a" | "the" | |
NOUN: "block" | "pyramid" | "box" | "that" | "cube" | "table" | "thing" | "colour" | "object" | "steeple" | "superblock" | |
PREP: "into" | "onto" | "in" | "on top of" | "on" | "behind" | |
PREPT: "before" | "while" | |
VERB: "pick up" | "pick" | "contain" | "support" | "own" | "touch" | |
DIR: "left" | "right" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.