- 
Roadmap: microsoft/TypeScript-Website#94 
- 
Updates: microsoft/TypeScript-Website#130 
- 
Design - Figma - First joined, did prototype designs for playground https://www.figma.com/file/Q0872II3wi1EzCXV9eUNBqb7/Playground?node-id=5%3A87
- From that design went back to a doc page https://www.figma.com/file/x8FJrNqj6oupqWn1s3uMg4/Website?node-id=7%3A1
- From doc page went to https://www.figma.com/file/x8FJrNqj6oupqWn1s3uMg4/Website?node-id=1%3A129
 
- 
Dev: Start off, what is Gatsby -> https://www.gatsbyjs.org 
- 
Why do I think Gatsby is a good fit -> https://www.gatsbyjs.org/blog/2020-01-23-why-typescript-chose-gatsby/ 
  
    
      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
    
  
  
    
  | private fun signin() { | |
| lifecycleScope.launch(errorHandler { signup() }) { | |
| val result = oneTapClient.suspendBeginSignInRequest(buildSignInRequest()) | |
| loginResult.launch( | |
| IntentSenderRequest.Builder(result.pendingIntent) | |
| .build() | |
| ) | |
| } | |
| } | 
  
    
      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 puppeteer = require('puppeteer-extra'); | |
| const StealthPlugin = require('puppeteer-extra-plugin-stealth'); | |
| const AdblockerPlugin = require('puppeteer-extra-plugin-adblocker'); | |
| (async() => { | |
| puppeteer.use(AdblockerPlugin({ blockTrackers: true })); | |
| puppeteer.use(StealthPlugin()); | |
| puppeteer.use(require('puppeteer-extra-plugin-anonymize-ua')()) | |
| puppeteer.use(require('puppeteer-extra-plugin-user-preferences')({userPrefs: { | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env bash | |
| # builds mpv & mpv.app on Apple silicon (M1 / M2) Macs | |
| # run this script from the root directory of the mpv repo | |
| # if anything fails, gtfo | |
| set -ex | |
| meson setup build | |
| meson compile -C build | 
OlderNewer