In 2001, Dey et al. described a hypothetical "conference assistant" application that was designed to enhance the individual experiences of conference attendees.[^Dey, Anind & Abowd, Gregory & Salber, Daniel. (2001). A Conceptual Framework and a Toolkit for Supporting the Rapid Prototyping of Context-Aware Applications. Human-Computer Interaction. 16. 10.1207/S15327051HCI16234_02.] The app would run on a "handheld device" that each attendee would be given upon arrival at the conference. Thereafter, the app would offer thoughtful guidance and assistance as each attendee progressed throughout the conference. For example, when an attendee would enter a presentation room, the app would display information about the session that was about to begin. This would include "information on the presenter, relevant URLs and the proceedings, page numbers of the papers being presented[,]" etc. It would also, inter alia, show "a thumbnail of the current slide and
This file contains hidden or 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 * as cdk from '@aws-cdk/core'; | |
import * as ec2 from '@aws-cdk/aws-ec2'; | |
import * as iam from '@aws-cdk/aws-iam'; | |
import { InfraNestedStackProps, InfraNestedStack } from '@infra/common'; | |
export interface NetworkStackProps extends cdk.StackProps { | |
// Define construct properties here | |
} | |
export class NetworkStack extends cdk.Stack { |
This file contains hidden or 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 * as fs from 'fs'; | |
import * as path from 'path'; | |
import * as cdk from '@aws-cdk/core'; | |
import * as lambda from '@aws-cdk/aws-lambda-nodejs'; | |
import * as kms from '@aws-cdk/aws-kms'; | |
import * as secretsmanager from '@aws-cdk/aws-secretsmanager'; | |
import * as acm from '@aws-cdk/aws-certificatemanager'; | |
import * as alias from '@aws-cdk/aws-route53-targets'; | |
import * as iam from '@aws-cdk/aws-iam'; | |
import * as api from '@aws-cdk/aws-apigatewayv2'; |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
{"title":"AUTOGRAPH","definition":"The handwriting of any one.","related":["EX SCRIPTIS OLIM VISIS","MAYN L","WILL HOLOGRAPHIC","IDENTIFICATION","HOLOGRAFO","EX VISU SCRIPTIONIS","ONOMASTIC","HANDWRITING EXPERT","BON FR","COMPARISON OF HANDWRITING"]} | |
{"title":"AUXILIUM REGIS","definition":"In English law. The king’s aid or money levied for the royal use and the public service, as taxes granted by parliament.","related":["BANCUS REGIS","VIDUA REGIS","AUXILIUM","SERVIENS DOMINI REGIS","DE NON RESIDENTIA CLERICI REGIS","AD JURA REGIS","CAMERA REGIS","MINISTRI REGIS","NON-RESIDENTIO PRO CLERICO REGIS","AUXILIUM CURIAE"]} | |
{"title":"AVER SILVER","definition":"A custom or rent formerly so called.","related":["GREEN SILVER","AVER CORN","HERRING SILVER","ALE SILVER","SLOUGH SILVER","AVER, N","AVER, V","AVER","AVER PENNY","AVER LAND"]} | |
{"title":"AVOID","definition":"To annul; cancel; make yoid; to destroy the efficacy of anything.","related":["CONDITIONS TO AVOID","VITIATE","ANNUL","VACATE","DESTROY","DISSOLVE","DISCHA |
This file contains hidden or 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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains hidden or 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 machine = getCharacterProcessor({ data: "dsfdsfsdfsdf", res: {} }); | |
function createCharExtractor(context) { | |
return Machine( | |
{ | |
id: "extractor", | |
initial: "idle", | |
context, | |
states: { | |
idle: { |
This file contains hidden or 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 photon = { | |
characters: { | |
create({data}) { | |
return new Promise((resolve, reject) => { | |
setTimeout(reject, 10) | |
}) | |
} | |
} | |
} |
This file contains hidden or 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 options = { | |
guards: { | |
shouldRetry: (context, event) => { | |
return context.retries < 4; | |
} | |
}, | |
actions: { | |
incrementRetries: assign({ | |
retries: (context, event) => context.retries + 1 |
This file contains hidden or 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 fetch from 'node-fetch'; | |
import fs from 'fs'; | |
const opentype = require('opentype.js'); | |
const API_KEY = `ENTER YOUR API KEY HERE`; | |
const API_URL = (key: string) => | |
`https://www.googleapis.com/webfonts/v1/webfonts?key=${key}`; | |
const FONT_LIST_FILE = 'fonts/fontList.json'; |
This file contains hidden or 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
# Set case-sensitivity for completion, history lookup, etc. | |
zstyle ':prezto:*:*' case-sensitive 'yes' | |
# Color output (auto set to 'no' on dumb terminals). | |
zstyle ':prezto:*:*' color 'yes' | |
# Set the Prezto modules to load (browse modules). | |
# The order matters. | |
zstyle ':prezto:load' pmodule \ | |
'environment' \ |
NewerOlder