Viewing profile — Frizi
Frizi
HN member- Joined
- Wed, Jan 27, 2016, 10:44 PM UTC
- HN karma
- 60
- Public activity
- 18 items
- HN profile
- View on Hacker News ↗
About Frizi
No profile information was provided.
Recent public activity
-
comment
Comment #31440166
There is an equivalent syntax in Rust to both of those examples, and in both cases I find it less verbose. The template variant is roughly equivalent to: fn func (fp: T) { ... } An…
-
comment
Comment #22064204
From your description, it sounds like they decided to use a "number" typed field for the post codes. This is of course incorrect, post codes are really just strings. While the bug …
-
comment
Comment #22064130
Electron is pretty much the same nightmare anyway. Just because it runs in chromium doesn't mean it preserves the sandbox. All electron apps have full access to your filesystem and…
-
comment
Comment #18686429
Fuzzing isn't really practical if all you do is just generate a totally random bit stream for input. There are many much more clever and robust strategies to hit as many edge cases…
-
comment
Comment #18680239
Well, the support is pretty decent in evergreen browsers (and it already was for a while), and in case of electron, you have precise control over your runtime, so it's not really a…
-
comment
Comment #18679897
There exist a great one, which is called Figma. They use electron in combination with WebAssembly to make it fast. I'd say that's a pretty decent choice.
-
comment
Comment #18679884
There is also Figma, which is a direct competitor to sketch that is multiplatform, and they indeed run on electron (and even directly in browser). For me that's a great example of …
-
comment
Comment #18414025
The "need more pixels" message is quite frustrating. I get that it might be not practical to support small resolutions, but I was unable to see the demo even on "desktop mode" in l…
-
comment
Comment #17051271
The DNT header reminds me of evil bit RFC [0]. It was funny back then, but times change I guess. [0] https://www.ietf.org/rfc/rfc3514.txt
-
comment
Comment #15639669
VSCode is indeed awesome for Vue. It supports pretty much any lang in any block properly, due to its support for embedded language contexts. If you have template lang="pug" and pug…
-
comment
Comment #15463769
Which in turn JIT compiles the code down to your specific hardware, possibly doing some extra optimizations along the way as it cares only about a single processor at a time. I do …
-
comment
Comment #14579772
Or, you know, just use GraphQL as your protocol and be done with this. Everything that's problematic in REST is clearly specified here and stays very easy to use. You can focus on …
-
comment
Comment #14579745
If you want to work with REST APIs, it might be good for you to create a SPA application. The easiest thing to start seems to be Vue right now. With vue-cli with it's build command…
-
comment
Comment #14569486
If you need a frontend developer to realize your idea, become one or change the idea. There are many people who like to code just for fun, but they have plenty of ideas already. In…
-
comment
Comment #14149959
Not really. Diffing and rendering still cost a little, and pointless renders that results in zero differences often indicate a possible performance problem. This tool highlights su…
- story
-
comment
Comment #13484099
You should check out Vuelidate. It tries to avoid any extra fluff. Disclaimer: I'm one of the authors
-
comment
Comment #10984193
That's what CDNs are for. If you control your proxy, nothing prevents you from giving it access to your https by setting up your private key on it. Https is also tapable, but only …