ty___ler | 3 years ago | on: Writing JavaScript without a build system
ty___ler's comments
ty___ler | 3 years ago | on: StreetPass: Find Your People on Mastodon
ty___ler | 4 years ago | on: DuckDuckGo Traffic
ty___ler | 4 years ago | on: How we improved app performance by upgrading React Navigation
I'm particularly excited about the typed routing system we were able to achieve with some new typescript language features such as Variadic Tuples[1] and Template Literal Types[2].
[1] https://www.typescriptlang.org/docs/handbook/2/template-lite...
[2] https://www.typescriptlang.org/docs/handbook/release-notes/t...
ty___ler | 4 years ago | on: Security Threat Model Review of the Apple Child Safety Features [pdf]
ty___ler | 4 years ago | on: Etsy to buy fashion reseller Depop for $1.63B
ty___ler | 6 years ago | on: Jeffrey Epstein and MIT: FAQs
ty___ler | 7 years ago | on: You probably don’t need input type=“number”
ty___ler | 8 years ago | on: How Poetry and Math Intersect
ty___ler | 8 years ago | on: Beyond React 16 by Dan Ambramov – Async Rendering and React Suspense
ty___ler | 8 years ago | on: Beyond React 16 by Dan Ambramov – Async Rendering and React Suspense
class Test {
async render() {}
}
Kind of hard to come up with a concrete use-case with how little we know about the new features. Still super interesting though!ty___ler | 8 years ago | on: From Bootstrap to CSS Grid
For example, in bootstrap or some other older layout framework every "column" would need to contain some class or id to style it correctly. So for a 3 column grid you would need to give each element a class setup of something like "column-third".
With grid, all that layout logic is moved into a single container "display: grid" element, making it so much easier to add/remove/edit grid items. Even padding is declared in the container element with the "grid-gap" property! It's a small improvement that has immensely increased my developer experience building grid-like UI.
ty___ler | 8 years ago | on: Off-Main-Thread painting
ty___ler | 9 years ago | on: AMP Is What HTML Should Have Been