https://github.com/upvalue/talks
Slides & code for all my talks
https://github.com/upvalue/talks
javascript react talks typescript
Last synced: 9 months ago
JSON representation
Slides & code for all my talks
- Host: GitHub
- URL: https://github.com/upvalue/talks
- Owner: upvalue
- Created: 2017-07-12T19:42:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-11T03:36:57.000Z (over 6 years ago)
- Last Synced: 2025-03-15T04:53:58.801Z (9 months ago)
- Topics: javascript, react, talks, typescript
- Language: HTML
- Homepage: https://upvalue.github.io/talks
- Size: 1.05 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a monorepo for all my talks: slides, code, repos.
To view the slides, visit [https://upvalue.github.io/talks](https://upvalue.github.io/talks)
# [January 2019: TypeScript for C# Programmers](january-2019-ts-talk)
A lightning talk introduction to TypeScript for C# programmers. Goes over:
- What TypeScript is
- The TypeScript philosophy,
- The difference between the type systems of TypeScript and traditional OOP languages
- Cool type system features available in TypeScript
- How TypeScript interfaces the wider JavaScript world
- Where to go next
# [October 2018: Frontend Testing with React, Jest & react-testing-library](october-2018-test-talk)
A guide to frontend testing with React, jest and react-testing-library. Talks about how React's unidirectional data
flow lends itself well to testing, and discusses how to conceptualize tests in terms of inputs and outputs, applying
the simple `assert square(8) == 64` style of tests in every testing library's documentation to a real program with
integration tests.
# [April 2018: You Got Types In My JavaScript](april-2018-ts-talk)
A gentle introduction to TypeScript for JavaScript programmers.
Discusses the nature of type errors and the value of discovering them at compile time, as well as the difference
between nominal and structural typing.
# [July 2017: Intro to ES2015 with React](july-2017-js-talk)
An introduction to newer JavaScript features, and a simple weather application built in React.