Erin Dachtler
Erin Dachtler
Using the `autocomplete="off"` attribute on an input field is supposed to prevent the browser from caching it's contents. A check box could be used to make the password visible to...
Does the client already re-subscribe to the same feeds when it reconnects? It seems like everything after that is just optimization.
``` import React from "react"; import ReactDOM from "react-dom"; import { Input } from "muicss/react"; function App() { return console.log("hi")} />; } const rootElement = document.getElementById("root"); ReactDOM.render(, rootElement); ``` You...
Hang on this isn't ready. Got ahead of myself and just noticed the note about #162
@rhys-vdw Yeah I kinda wandered off and forgot about it :P Looking back at my branch I realize why I stopped working. I think at the time the versions of...
@ViSaturn Is there another use-case for this? The idea of being able to change options on a per-type basis sounds potentially worthwhile, but debug mode seems like an unlikely thing...
Sudden thought. Would the shortcircuit option be a good candidate for this? Short-circuiting is something that it might make sense to turn on for only certain type guards. For example,...
I just realized I don't actually have control over the npm package (not that I've done anything that would need it). @deepak1556 Do you have any thoughts on this?
I'm not sure what the owner wants to do about the package name, but in the mean time I've added a link to gulp-bro in the README. 3481b65
It looks like you're trying to make a [discriminated union](https://css-tricks.com/typescript-discriminated-unions/), that looks like a [java base type](https://docs.oracle.com/javase/tutorial/java/generics/types.html)? ```ts type Video = | MotivationalVideo | ShowerThoughtsVideo ... type MotivationalVideo = {...