HN user

fafner

2,084 karma
Posts33
Comments368
View on HN
www.aljazeera.com 5y ago

Microsoft’s iron cage: Prison surveillance and e-carceration

fafner
1pts0
fabiensanglard.net 7y ago

The 3dfx Voodoo1

fafner
476pts238
monzo.com 7y ago

We Deployed Envoy Proxy to Make Monzo Faster

fafner
2pts0
fabiensanglard.net 7y ago

How the Dreamcast Copy Protection Was Defeated

fafner
345pts161
developers.redhat.com 9y ago

Memory Error Detection Using GCC

fafner
1pts0
github.com 9y ago

Prometheus 1.2.0 released

fafner
34pts1
sourceware.org 11y ago

GDB 7.9 released

fafner
3pts0
git.videolan.org 11y ago

New FFmpeg Major Release 2.5 “Bohr”

fafner
2pts0
hubicka.blogspot.com 11y ago

Link-time optimization in GCC, part 3 – LibreOffice

fafner
100pts19
wingolog.org 11y ago

High-Performance Packet Filtering with Pflua

fafner
125pts4
developerblog.redhat.com 11y ago

5 UX Tips for Developers

fafner
6pts0
mainisusuallyafunction.blogspot.com 11y ago

Calling a Rust library from C (or anything else)

fafner
8pts0
wingolog.org 11y ago

Revisiting Common Subexpression Elimination in Guile

fafner
46pts1
hubicka.blogspot.com 11y ago

Devirtualization in C++, part 6 – asking user for help

fafner
31pts0
isocpp.org 11y ago

We have C++14

fafner
7pts0
wingolog.org 12y ago

Effects Analysis in Guile

fafner
53pts1
mjg59.dreamwidth.org 12y ago

Oracle continue to circumvent EXPORT_SYMBOL_GPL()

fafner
151pts63
daniel.haxx.se 12y ago

HTTP2 Explained

fafner
9pts0
gmplib.org 12y ago

GMP 6.0 release notes

fafner
5pts1
isocpp.org 12y ago

Announcing the C++ FAQ

fafner
14pts2
article.gmane.org 12y ago

GNU grep-2.17 released: 7x to 10x times faster with multibyte locale

fafner
3pts1
www.eff.org 12y ago

Making the Mobile Web Safer with HTTPS Everywhere

fafner
7pts0
gcc.gnu.org 12y ago

MELT, a Lispy extension language for GCC, version 1.0 released.

fafner
1pts0
hacks.mozilla.org 12y ago

Songs of Diridum: Pushing the Web Audio API to Its Limits

fafner
1pts0
www.youtube.com 12y ago

XDC2013: Brian Paul - 20 Years of Mesa - A Retrospective [video]

fafner
1pts0
www.motherjones.com 12y ago

Somebody Stole 7 Milliseconds From the Federal Reserve

fafner
2pts0
lwn.net 13y ago

KTAP: A New Scripting Dynamic Tracing Tool For Linux

fafner
28pts11
developer.nvidia.com 13y ago

Valve's GDC Talk: Porting Source to Linux [pdf]

fafner
221pts68
tim.dreamwidth.org 13y ago

Ownership types in Rust, and whether they're worth it

fafner
1pts0
www.h-online.com 13y ago

Udev fork is a training project say eudev developers

fafner
1pts0

Unfortunately some customer changes will need to go out quickly and globally for a CDN. Going much slower might not be a good option.

Canarying should detect this. Not clear if they do this or the canary failed to report this.

Sharding by customers could help reduce blast radius. But maybe not by much of this was a very big customer.

Zero trust seems to be very unrelated to this issue. The issue seems to have been a poison config breaking fastly stack. Zero trust is about verifying authentication of devices/users. Unrelated things really.

I wish they'd rather use python or Julia. GNU Octave is great. But as a clone of Matlab it's constraint by compatibility and doomed to always be second* and at worst an enabler for Matlab. I'd rather break the dominance that Matlab has in many fields and replace it with free software.

* There are a few aspects where it is better. For example I believe the variable editor introduced one or two releases ago is nicer as it allows inline evaluation.

From the summary I don't understand why front end servers need to talk to each other ("continuous processing of messages from other Kinesis front-end servers"). It sounds like this is part of building the shard map or the cache. Well in the end an unfortunate design decision. #hugops for the team handling this. Cascading failures are the worst.

Imagine a future where whenever the energy price drops in a region suddenly companies show up with a bunch of such tubes drop them in the ocean. Do some batch processing and once the energy price rises they pull it out and move on.

In reality of course connectivity would be a major problem and energy price differences are probably not large enough to make it viable.

The example seems to be wrong https://github.com/Wilfred/remacs#porting-c-functions-to-rus...

fn Fnumberp(object: LispObject) -> LispObject { if lisp::SYMBOLP(object) { unsafe { Qt } } else { Qnil } }

It uses SYMBOLP instead of NUMBERP. Highlighting the risk of introducing new bugs.

Which leads to the question, why Remacs can't just auto-wrap the lisp::* functions, which I assume are the Rust versions of the C Macros. If you look at Emacs' C code there are a lot of functions and macros that implement Elisp primitives in a C way. E.g., NUMBERP(x) will return 1 if x is a number or else 0. So you can use this function to deal with lisp objects in C code. The function that exports this primitive to elisp is Fnumberp. Rust has a better type system than C and supports meta-programming. So why not have a simple wrapper that can take a (LispObject) -> bool and turn it into a (LispObject) -> LispObject. Similar for other Elisp<->Rust types.

However unless GNU Emacs is willing to accept the Rust replacement code I don't think this will succeed. It is a lot of work and it takes quite some time until it actually pays off. It seems simpler to do what GCC and GDB have done and switch from C to (a strict subset of) C++ to simplify at least some of the more painful C hackeries.

And the reasoning given in the announcement are rather weak:

* "We can leverage the rapidly-growing crate ecosystem." Emacs recently added module support allowing leveraging all kinds of ecosystems

* "We can drop support legacy compilers and platforms (looking at you, MS-DOS)." how is that an opportunity when it effectively removes support for platforms.

And that does not include any external packets...

Yes, there is no way Emacs will get rid of elisp. That's why Guile Emacs includes writing an elisp frontend for Guile. (There is also a Frontend for ECMAScript and an experimental one for Lua)

Isn't that largely because the LibreSSL team refused the invite to the exclusive OpenSSL security list? At least that was the case the last time the LibreSSL devs complained about not receiving any vuln info in advance...

Yes, that's truly annoying. I have a few code examples that are complete but it refuses to accept them without giving any reason. If I try to step forward it says I have to go back.

Also in the first example it complained when I was using Math.round for the index calculation and only wanted to accept Math.floor. (although not applicable in this case, I think Math.floor is not the best choice since it won't behave like ints in negative cases)

At least they added Comic Neue. I'm a bit disappointed that a project like OpenBSD that is so vocal about free software is promoting a proprietary font like Comic Sans MS.

Akonadi really annoys me. Who thought it would be a good idea to run mysql on each desktop to store email metadata? That's just ridiculous bloat. Mysql is among the top 10 entries for me in powertop. Why would MySQL be needed to deal with the metadata? All other mail applications seem to do fine with Maildir and an index.

And in case anybody thought that using MySQL would allow them to scale (you know because people receiving a million mails/s is such a common use case) then the answer is no! Thanks to Nepomuk many operations were bound by the RDF triple store they used. Maybe it has improved now thanks to Baloo. But once I tried to delete a folder containing a mailing list with a few thousand mails and I wondered why my laptop got so hot until I realised that Nepomuk was struggling.

Maybe the situation has improved now though. But the whole KMail transition was really painful for no tangible benefits to the user. This really feels like a prime example of overengineering.

Google Code was such an improvement over SourceForge. I think the real problem of Google Code was that it took them too long to support git. When GitHub started Google Code was still SVN only and later they only added Mercurial support. This made people look at GitHub and GitHub could shine with some new ideas, like making code contributions extremely easy and placing the code first. Which of course further increased the popularity of git and so on. By the time Google Code added git support many major projects had moved and GitHub was simply the place to be.

Invented by OpenBSD 11 years ago

I don't think it's reasonable. The way they implemented strtonum might match their particular use case in OpenSSH/LibreSSL. But if they want to make it a libc function and popularise it then they should concern themselves with other use cases and opinions, especially when they pick a bold name as strtonum. It's not a surprising outcome that others are reluctant to follow them and they have clashes in behaviour or naming.

Invented by OpenBSD 11 years ago

NetBSD's strtoi and strtoimax seem like the better alternative to strtonum.

1. It is defined for intmax_t instead of long long.

2. It supports various bases. (At least I regularly need hex or base36)

3. It can deal with trailing characters.

4. There are matching strtou and strtoumax operations

It's of course bad if NetBSD introduces an strtonum, which behaves differently from the OpenBSD one. But maybe the OpenBSD folks should look into strtoi and strtoimax instead of blindly following their "invented here" principle...

The Netherlands doesn't has to comply and she might offer special protection to her citizens. But as soon as the person leaves the Netherlands the protection is gone. E.g., making a shopping trip to Belgium or Germany and suddenly getting arrested there.

Keep a Changelog 11 years ago

You can write the commit messages in ChangeLog format. The format is independent of how you store it! You can then create ChangeLog files from the history for source tarballs. In fact many GNU projects seem to do that now.

Other projects (GNU Emacs) still continue to use ChangeLog files because it is easier to correct ChangeLog entries than editing the commit history (which in git is destructive).