Swizec Teller

Results 5 comments of Swizec Teller

Today I Learned what's a PID controller! This looks amazing. Gonna have to try it over the weekend. I've also noticed that sometimes the cpu eating processes finish before the...

I like these @micahstubbs . I'm pretty new to typescript still so not sure what the standard approach is. Do people usually export a `Props` and `State` type? Might be...

I just spent two hours debugging the same [or similar] issue. I wans't using Gulp though. The packaged JS threw the same error, `Uncaught TypeError: __webpack_require__(...).call is not a function`...

I ran into this problem and figured out what the error means. So at least I can fix it in user-land code, but a more helpful message would be nice....

Also looks like there's something with index re-exports this doesn't work: ```typescript // src/index.ts import { customTheme } from './themes' // src/themes/index.ts export * from './customTheme' // src/themes/customTheme.ts export const...