BlueZeniX's comments

BlueZeniX | 3 years ago | on: EU-wide maximum limit of €10K for cash payments

Everyone saying "muh GDPR" has no clue none of it applies to financial transactions.

To get a PSD2 "Open Banking" license one needs to KYC every user and keep every transaction that passes through the system, for 5 years, including the KYC data.

Being PSD2 licensed doesn't even make you a bank. Just imagine what an actual bank has to keep around...

Also every business has to keep invoices and transaction data around for tax audits, usually 7 years. So you can GDPR delete request all you want, but the shop where you bought that thing still has to legally know you've bought it.

BlueZeniX | 11 years ago | on: Revisiting How We Put Together Linux Systems

Not necessarily: nix the package manager runs fine on other distros, as well as FreeBSD, OSX, Windows, SmartOS, ...

Nix doesn't need fancy filesystem shenanigans to do its job: build isolated packages with complete runtime dependencies.

NixOS is built on top of it to provide atomic system-wide upgrades and rollbacks.

BlueZeniX | 13 years ago | on: In Europe, Speed Cameras Meet Their Technological Match

Dutch people and government are obsessed with (limiting) speed, instead of focussing on keeping distance. A nice effect of distance is less braking, which means less energy converted into useless heat and less ghost traffic jams.

It always amuses me to hear local radio news about yet another multi-vehicle collision.

In Germany, the country known for it's wonderful Autobahn, you can temporarily loose your license for tailgating.

PS: I'm dutch.

BlueZeniX | 14 years ago | on: Picking technologies on the right side of history

Ever since I've started programming in haXe, it became clear that the language you code in should never be completely tied to a single platform. This article hints at Flex dying and tech needing replacement, yet many parts of an application (lets call it domain model and business logic) should be unique and not rely on a specific platform or data exchange format.

When you write your data model in a language that works on client and server platforms, you save lots of duplication of effort and gain flexibility. The best example of experiencing the opposite I have is a fairly large application I worked on, where the backend developers designed a totally different set of classes around a (pretty much undocumented) XML structure than the frontend guys. Basically all communication happened through XML. Sure "it's an open format!", "it's human readable! (in a sense)", but taking over this project figuring out semantics and what was considered valid became a painful effort.

Your frontend should always use the same domain model as the backend. Designing the fundamental parts of your application without relying on an ORM, XPath, JSON, .NET, Scala case classes, Flash, Javascript, HTML5, Swing, whatever... makes you platform agnostic and shrug at the next internet technology death.

Am I happy Flash is considered dead? No, currently HTML5 lacks many features I rely on today and sanity (isn't it kind of bizar we consider cross-browser issues as normal?). Will my skills and all of my codebase die with it? Absolutely not.

BlueZeniX | 14 years ago | on: Flash is fine. Dont be a Fundamentalist.

On my phone Flash works fine. On a WAP phone, I wouldn't be seeing anything. Like whenever I try to visit hacker news on my nokia 7110.

Which is of course no excuse to make flash only restaurant sites... Nor is it to make canvas only, webgl only, image only...websites.

BlueZeniX | 14 years ago | on: Hiding your data in plain sight: USB hardware hiding

Isn't it quite easy to block USB storage devices at the OS level? I mean hiding the stick is clever, but it shouldn't really matter. If you only allow HID devices, the mouse still works without getting access to the data on the stick.
page 1