Skip to content

Instantly share code, notes, and snippets.

View TylorS's full-sized avatar
🍕
OSS on my mind

Tylor Steinberger TylorS

🍕
OSS on my mind
View GitHub Profile
@TylorS
TylorS / esnextbin.md
Last active May 1, 2017 16:27
esnextbin sketch
@TylorS
TylorS / esnextbin.md
Last active May 2, 2017 01:36
esnextbin sketch
@TylorS
TylorS / esnextbin.md
Last active April 28, 2017 17:01
esnextbin sketch
@TylorS
TylorS / esnextbin.md
Last active April 9, 2017 21:44
esnextbin sketch
@TylorS
TylorS / esnextbin.md
Last active April 6, 2017 10:25
esnextbin sketch
@TylorS
TylorS / mockStorage.ts
Last active April 5, 2017 13:49
Mocked Local/Session Storage implementation
export function mockLocalStorage(map?: Map<string, string>): Storage {
return new Proxy(new MockStorage(map), { get, set }) as MockedStorage
}
type MockedStorage =
MockStorage &
{ [index: number]: string } &
{ [key: string]: string }
class MockStorage {
@TylorS
TylorS / esnextbin.md
Last active March 31, 2017 23:52
esnextbin sketch
@TylorS
TylorS / esnextbin.md
Last active March 24, 2017 18:42
esnextbin sketch
@TylorS
TylorS / esnextbin.md
Last active March 6, 2017 01:06
esnextbin sketch
@TylorS
TylorS / perfect_functional_language.md
Last active February 26, 2017 23:01
The perfect functional web application language, according to me :)

Language Specification Wishes

The desire to create a new language has come from my own experiences in programming in a framework I’ve built, Motorcycle.js and the language TypeScript. Motorcycle is very similar to the more popular project Cycle.js. In my current place of employment we are building a rather large and complex application and we have felt the language barriers of ECMAScript and TypeScript much more than we have the programming patterns we have come to use.

This is, currently, a very informal and non-exhaustive list of things I wish a single programming language would have. This language would likely to be very opinionated, and geared towards functional and reactive web applications. In many ways, but not all, I’d like to see a language designed around the programming patterns of Cycle and Motorcycle.

I hope to develop this language in the future, unless someone else beats me to it! Following this is a