Viewing profile — marcopolo
marcopolo
HN member- Joined
- Thu, Aug 29, 2013, 3:23 PM UTC
- HN karma
- 77
- Public activity
- 23 items
- HN profile
- View on Hacker News ↗
About marcopolo
No profile information was provided.
Recent public activity
-
comment
Comment #45365799
I'm glad to see this change. I didn't much use the AI features, but I did want to support Zed. $20 seemed a bit high for that signal. $10 seems right. $5 with no tokens would be ni…
-
comment
Comment #44523355
The fact that this already has git support is amazing. I can easily migrate my Keybase git repos with a single command.
- story
-
comment
Comment #43016888
https://abseil.io/about/design/swisstables I found more useful in explaining the details of Swiss Tables. Also of note: - Go's Swiss Table implementation is inspired by Cockroachdb…
- story
-
comment
Comment #42069051
Masking in the WebSocket protocol is kind of a funny and sad fix to the problem of intermediaries trying to be smart and helpful, but failing miserably. The linked section of the R…
- comment
- story
-
comment
Comment #37097207
Sure you can. The bool is a signal telling the thing yielding values to stop.
- story
-
comment
Comment #34123208
This looks great. Meta question, does Safari enforce the privacy policy of extensions in anyway? Besides trusting that this doesn’t leak any data, is there another mechanism that g…
-
comment
Comment #25368360
You may be interested in Nix. It can track all the dependencies of your project. So you d an copy them to a server, or Tarball them, or just run them with Nix on the server. It als…
-
comment
Comment #25163063
I too am surprised with the amount of negative feedback. This isn't a post about locking you into AWS. Pulumi, Terraform, and friends are tools that work across cloud providers, an…
-
comment
Comment #23977317
"The reference-types proposal is now supported. It provides a new type, externref, which can hold any JavaScript value, for example strings, DOM references, or objects." This is ex…
- story
- story
-
comment
Comment #6772906
Cryptic.io Founder here, SSL is far from perfect, and the recommended practices really should be standard. Especially if they want us to trust them with our personal files. But tha…
-
comment
Comment #6762172
Yes! It's using the excellent Stanford Javascript Crypto Library. Source here: https://github.com/cryptic-io/web
-
comment
Comment #6762168
Thanks! It's been open sourced since conception, here's the repo: https://github.com/cryptic-io/web . We choose a website because it has the smallest barrier of entry. We are plann…
-
comment
Comment #6722333
I'm a little wary in how it works, does it read all my notifications (texts, bank alerts, emails) send them to pushbullet servers, then send them again to my computer? Or is their …
-
comment
Comment #6560821
Wow, this is really cool. I'll definitely try porting some examples over. I'm pretty interested in seeing how they overcame the separate context for functions.
-
comment
Comment #6298437
The problem lies when you have the function accessible in the global scope. Example: A = E; E = function(x){ window.secret=A(x); return window.secret }; As you can just change how …
-
comment
Comment #6296311
If the maintainer is reading this, I submitted a pull request that significantly speeds up CCM encryption by using arraybuffers. I'd love to see it merged in: https://github.com/bi…