HackerTrans
トップ新着トレンドコメント過去質問紹介求人

gjvr

no profile record

コメント

gjvr
·9 か月前·議論
Yep. It's the auditing part that is broken. As a (dangerous) workaround use --no-audit
gjvr
·10 か月前·議論
Thanks for sharing. Good to know. I Was considering using it for that purpose.
gjvr
·5 年前·議論
I would not go multiple Availability Zone within the same Infra/Cloud provider...
gjvr
·5 年前·議論
Love the idea! Yes there are challenges (ref: 'Embrace and extend') but there is a very clear value: both for end users (that ultimately drive value) and for paying companies (startups or other) that have have great new products but have to deal with a market in which 'the current generation' of products are used.

From a different angle (that you're probably already considering :-): What about SaaS companies that also want to give customers a smooth way out if they are not satisfied. I can imagine that there is value in having some sort of 'seal' that makes it clear that: yes you can get out of here if our product is not what you want it to be.

Final note: I just hope that we’re not going to end up in a situation where we need to do a “ReCaptcha” again after logging in because some SaaS, x, is wary of scrapes….

Good luck!
gjvr
·5 年前·議論
I understand from [0] that the attestation key is shared across all instances (SNs) of the same model (PN): "...For example, all YubiKey 4 devices would have the same attestation certificate; or all Samsung Galaxy S8’s would have the same attestation certificate". So you would not need to to buy them at the same time.

But of course, despite this, still a unique key is generated for each identity upon sign up [0]. I am not sure (as in 'have no knowledge of') the entropy for these devices.

[0] https://fidoalliance.org/fido-technotes-the-truth-about-atte...
gjvr
·5 年前·議論
Ha Ha. Thats’s even worse than the ‘C Hashtag’ that an HR dude was rambling on about.
gjvr
·5 年前·議論
A little anecdote/legend from the Philips Research Labs (Nat. Lab.):

When the team demonstrated the first CD they drilled some holes in them, and showed: "Look how robust, they even work when they are this damaged" (paraphrased).

In reality the locations of these holes were chosen very precisely. Not sure if this is true, but this is a story that my colleagues told me in the 90's...

Rest In Peace Lou Ottens.
gjvr
·5 年前·議論
Ken Shirriff, your blog is just awesome.

What a wealth of material you have on righto.com!

Blown away.
gjvr
·5 年前·議論
I gave the reporting a try, and I like the flow in the demo (which is for a Public repo); easy to use.

For a private repo, I would probably also want people to be able to leave anonymous replies (to get 'as much feedback as possible'), but that's just my n=1 opinion.

Good luck.
gjvr
·5 年前·議論
Hi,

Congratulations with your launch.

Question: must an end user (web site visitor) do a (Github or other) login? Or can they simply leave a comment?
gjvr
·5 年前·議論
Yep, feedback is valuable. And the earlier the more valuable (it's like NPV...).

I love coding so much, and find it really hard to express ideas in natural language, so that in the end documentation... doesn't happen as much as it should.

What I find that really helps is the following:

1. Write down architecture specs (with interface specs etc), before coding. Not bloated, but really minimalistic. 2. Review these ideas with peers. 3. Happy coding and refine the docs.
gjvr
·5 年前·議論
ASCII? UTF-8? UTF-16? ... ...
gjvr
·5 年前·議論
No I have not, but here's the approach I would take:

1) Use tcpdump to inspect WhatsApp packets and get an idea of what they look like

2) Use iptables or nftables to set up rules to block them.
gjvr
·5 年前·議論
1. The point regarding architecture is a good one. Choose what is best for the problem that needs solving. 2. If you want to do heavy duty server stuff that has a large RAM state (and long) running, then Go is great: - Run time is fast - It is statically typed - It has IMHO really good Garbage Collection. - It has channels (but also regular MUTEXes). - It is co-invented by Ken Thompson (who is the inventor of B which came before C). That in itself is not proof of quality of course, but it does give some idea.

Disadvantage is that you do not have the luxury of generics as in Typescript... (yet)