HN user

aduitsis

735 karma
Posts0
Comments244
View on HN
No posts found.
Just the Browser 6 months ago

For Firefox, I think that disabling the telemetry and the studies is not going to help Mozilla improve the browser.

Don't Download Apps 8 months ago

IIUC, contactless payment via apple pay does have a secondary card number of sorts that's linked to your original card.

I once accidentally paid for AppleCare with apple pay (a mistake), so when at some point I switched phones I had to get new secondary card numbers tied to my physical cards. The old secondaries went away when I wiped my old phone, so AppleCare was no longer able to draw the monthly payment. The number in the invoice was likewise not the original physical card number, but some other number.

Whether the secondary numbers are easier or impossible to track is certainly a question, but I believe there's always a number.

Rete algorithm 2 years ago

Hey! I was using CLIPS in my network management PhD work, but life happened and I was absorbed by my profession. Maybe one day I'll dig up the half finished material and continue, who knows.

CLIPS is one of those definitely underrated gems, many many thanks for what you are doing!

Why Perl? 3 years ago

If you feel more comfortable with Python for the task at hand, why not use it?

That's good and it's actually the Perl way, Perl was always about helping getting stuff done.

Google Pixel Fold 3 years ago

For some of us that are not in the US, this product doesn't even exist. 2023 and still somehow the Pixel doesn't sell in several countries in the EU.

Deep respect to the CloudABI folks, a project which inspired the WASI ideas:

CloudABI is no longer being maintained. It was an awesome experiment, but it never got enough traction to be sustainable. If you like the idea behind CloudABI, please consider looking into the WebAssembly System Interface (WASI). WASI's design has been inspired by CloudABI.

https://github.com/NuxiNL/cloudlibc

edit: https://github.com/bytecodealliance/wasmtime/blob/main/docs/... is a good reference and also mentions the Capsicum framework (https://www.cl.cam.ac.uk/research/security/capsicum/). Which is present in FreeBSD for several versions btw.

The Shit Show 4 years ago

At this point the signal to noise ratio on Mastodon is amazingly good. Who would have thought that just displaying the timeline would be so refreshing.

Not exactly the same, but in mutt, there is a simple language which you can use to refer to a subset of the messages in your view. E.g. "~U" will match you unread messages, etc.

You can group tag messages on mutt with any pattern you'd like and then move them. Or, you can limit your view to what you want to move, select some and then move them.

Thank you for the post! At some point years ago I started realising that most problems in SNMP are stemming from badly implemented SNMP agents. Those problems can be:

1. Returning values different than what the MIB says.

2. Missing values that are not optional in the MIB.

3. Broken getnext code that returns an incorrect oid, which could even lead to loops. Net-snmp will detect it, but proper snmpwalk gets broken.

4. Broken getbulk repeater code that can cause crashes if the repeater is too large.

5. OIDs that will crash/stall/slow the agent.

6. Implementations that cannot handle simultaneous requests. Admittedly this is notoriously difficult to achieve: most MIB implementation code is not reentrant for various reasons.

7. SNMP SET is very difficult to implement, cannot be meaningfully used for almost anything beyond extremely simple stuff.

8. UDP encapsulation can cause MTU/fragmentation issues that are a nightmare to debug. Net-snmp actually implemented transports such as TCP and it was very nice, but it never caught on in general.

Bonus, there is also the not related to implementation problem of:

9. The query semantics of SNMP are non-existent, and the indirection in the SMI is cumbersome, which means that as a client/manager you'll have to do all sorts of data wrangling to find what you need.

Slightly off-topic, but besides all the important contributions of Alan Kay, there is also his famous quote:

Point of view is worth 80 IQ points

The wisdom of it is that it suggests a profound change in the point of view of what intelligence is. Although I suspect this must have been researched well before the quote, it summarizes so beautifully the fact that intelligence isn't just some single-dimensional hard coded genetic trait, but something transferable and even contagious through language. Love that quote.