Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
marcopolo
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
marcopolo
5d ago
Exciting to have a hackable Go based editor. The onboarding was pretty nice from a Vim user. Although I'm having some trouble with my fish shell also having vim bindings.
2.
▲
by
marcopolo
5d ago
As a sibling comment pointed out this isn't comparing the same things. I'll try to provide a better comparison. On a warm build on my machine, after editing a string in Zed's `crates/zed/src/zed.rs` and editing
3.
▲
by
marcopolo
1y ago
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 nicer. Great work folks
4.
▲
by
marcopolo
1y ago
The fact that this already has git support is amazing. I can easily migrate my Keybase git repos with a single command.
5.
▲
Go 1.24: testing/synctest experiment for time and concurrency testing
(danp.net)
1 points
by
marcopolo
2y ago
|
0 comments
6.
▲
by
marcopolo
2y ago
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's Swiss Table implemen
7.
▲
Go 1.24 Release Notes
(go.dev)
8 points
by
marcopolo
2y ago
|
1 comments
8.
▲
by
marcopolo
2y ago
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 RFC is worth the read: https://www.rfc-editor.org&
9.
▲
A FORTH compiler tutorial in x86 asm (2009)
(git.annexia.org)
10 points
by
marcopolo
2y ago
|
0 comments
10.
▲
by
marcopolo
3y ago
Sure you can. The bool is a signal telling the thing yielding values to stop.
11.
▲
Go Plugin System over WebAssembly
(github.com)
13 points
by
marcopolo
3y ago
|
0 comments
12.
▲
by
marcopolo
4y ago
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 guarantees this?
13.
▲
by
marcopolo
6y ago
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 also has a nice property that you only ship what is necessary,
14.
▲
by
marcopolo
6y ago
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, and even your own infrastructure. The real meat of this a
15.
▲
by
marcopolo
6y ago
"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 exciting! It opens up faster possibilities for wasm
16.
▲
WebAssembly Is Fast: A Real-World Benchmark of WebAssembly vs. ES6
(medium.com)
1 points
by
marcopolo
7y ago
|
0 comments
17.
▲
Rabbit Hole
(cryptic.io)
23 points
by
marcopolo
12y ago
|
2 comments
18.
▲
by
marcopolo
13y ago
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 thank you EFF for putting pressure. (mini-plug: if you want a c
19.
▲
by
marcopolo
13y ago
Yes! It's using the excellent Stanford Javascript Crypto Library. Source here: https://github.com/cryptic-io/web
20.
▲
by
marcopolo
13y ago
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 planning on releasing a browser ex
21.
▲
by
marcopolo
13y ago
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 some pairing encryption step I'm missing?
22.
▲
by
marcopolo
13y ago
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.
23.
▲
by
marcopolo
13y ago
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 the function works.
24.
▲
by
marcopolo
13y ago
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/bitwiseshiftleft/sjcl/pull/