Hacker Newsnew | past | comments | ask | show | jobs | submit | narag's commentslogin

Looks promising. After a shitty year with terrible hips pain (doctors said it was about muscles pinching a nerve) daily swimming has made the pain completely disappear. Motorbike riding and now some kettlebells exercises are doing the same for the long term rotator cuff problem.

I'm in my better shape in the last 30 years, maybe in my entire life. The most surprising thing is how simple, cheap and little time consuming it's been. Compared to gym subscription, the swimming pool, rubber mat and couple of kettlebells are spare change.


Surely that's swimming pool fees or subscription? I can't imagine having your own pool is cheaper than a gym subscription.

Public pool, city owned. August daily was less than 1€/day. Now I'm taking classes (my style... has room for improvement) not sure about the price for the winter months, but it's subsidized so not very high.

TBH, gyms have lower prices now over here. You can find a decent subscription for 30€/month, half of what used to be. But they're overcrowded. For me the main factor is time. I end up wasting a lot of time waiting for a free spot or shower, changing clothes, etc. Training at home is much simpler. Combined with a couple of days out swimming or running, a better solution, for me anyway.

Edit: between my previous comment and this one, I've completed my daily home routine :-)


"Create shareholder value at my current startup" obviously isn't going to scratch that itch in the same way.

I would add a little nuance. One thing is your job isn't advancing Humanity Progress in a very direct and unambiguous way, say you work for some Very Important Organization that Does Good All the Time. Another thing is your job is totally useless or even harmful to society.

Maybe most of us are in between?

I've worked at dysfunctional companies that made me personally unhappy (busyworks, company politics, waste, bad bosses, bad teammates...) that somehow made some good things in the grand scheme of things, other that made me very happy with more neutral results.

Someone has to do mundane things, even to raise children and give a chance to the next generation to improve the world.

I don't believe putting too much thought in purpose is healthy.


I've made a complete desk with three shelves under the top and a compartment for the desktop computer. Twice. Using standard 244x122 cm planches and some screws. Price depends on the quality of the wood you choose. Shops will cut it to pieces for no extra money. Unfortunately I have no photos and lost the design, but I'm confident I would recreate it in minutes.

It's completely functional and not ugly. Again, you can choose real wood or some of those composites. Also maybe changing screw system (the original setup is like the one showed in TFA) you could make it nicer. I bet there are tons of designs like that out there.


Or you have the regrets when you needed to speak up and you didn't because you value your job security more than your duty: crooked or woefully incompetent boss. In the army instructors strongly warned about jumping chain of command. But you know, sometimes it gets very ugly, specially when they come after you.


These roles should all be result of direct vote.

I disagree. That's an executive power position for an entity that lacks sovereignty. Giving it the legitimacy of direct vote is highly problematic.

Start by giving more power to parliament.


I think you'll find it's the EU member countries that lack sovereignty, not the EU. EU law overrides member state law, not the other way around.


That seems similar to the "God give me patience, but I need it RIGHT NOW" prayer.


I work partly supporting users. It's been very frustrating and this interesting post has helped me to put the finger on the reason.

It only works when you have a path to not only listen but also improve the situation. If 10% of calls or emails are related to X and you can solve X, then you can reduce 10% of calls or emails. Otherwise is just fixing problems manually but not going to the root cause.


I just realized that I use more different kind of stores and transportation to shop than ever. I walk for groceries, ride the motorbike to malls for monthly or yearly buys like clothing or light electronics, take the metro to specialized stores for heavier items and buy online hard-to-find or high-margin-elsewhere stuff. Also online buys are seldom delivered home, but to a nearby convenience store because work hours match delivery hours.

Thinking of changing this distribution is highly disturbing because of time wasted, much more limited options and huge price differences. Of course YMMV depending on location, Madrid here... the world the article describes is totally alien to me.


I've rarely lived somewhere where I can't bike to a grocery store within 10 minutes. It's definitely something I look out for when picking a place to live. I can't imagine having to drive every single time and I dread the few times I do have to get in a car to get something


I think Windows 9x was peak Windows.

I'd choose XP instead. People disputing the performance maybe should consider the hardware at that time. Real problem with 9x was low-level stability. Juggling with compatibility was difficult, file access comes to mind, it was a kludge. It was possible but hard to maintain the system in a sensible state.

XP was the first to bring NT architecture to desktop. It was a huge success. Many despised the colorful UI, I actually like it. They started moving things around, but annoyances were fixable. Microsoft has adopted more of a "my way or the highway" attitude since.


People also forget… XP had more than the one tonka-toy theme from Frog Design. There were several themes. Some appealed to my visual tastes, some didn’t… but I do think they were well designed, which is more than I can say for most UI design today.


Yes, maybe XP was the sweet spot between ease of use and ability to revert back to a "classic" Windows interface.

It also had many multimedia features for burning CDs, editing videos, etc..


XP was quite ugly though. 98 or whatever was the best looking, but 7 was probably best overall (because they’d at least somewhat improved the UI and the system was generally more stable and modern).

(FWIW I mostly switched to Linux after XP so this isn’t nostalgia).


Wasn't 2000 the first NT architecture on desktop?

2000 is, by far, my favourite Windows OS.


What do you mean by 'on desktop'?

NT has always had both server and workstation versions.


XP also introduced activation, which is one of the reasons I prefer Windows 2000 to XP.


> XP was the first to bring NT architecture to desktop

That was Win2k (DirectX). XP was full of bugs and holes before SP2.


I found a solution for what seems to be the same problem, in a different language: a particular type of lists, where the class metadata is stored once and the data for each instance is contiguously stored in a flat array.

Not sure if it covers exactly the same terrain, but perusing the article, it seems to be the case, with a single instance being the degenerate case.


Yup, it's the same terrain.

I've made something like this in the past. And I did it exactly because `List<Foo>` was too expensive and slow.

    class FooSOA extends Collection<Foo> {
      double x[];
      double y[];
      double z[];
      
      Foo get(int index) { return new Foo(index); }
      
      record Foo(int index) {
        double x() { return FooSOA.this.x[i]; }
        double y() { return FooSOA.this.y[i]; }
        double z() { return FooSOA.this.z[i]; }
      }
    }


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: