I'm a musician. Long term. 43 years old, been playing forever. Don't care if I get any success at it. Not a hobby. Makes money sometimes. I play professionally. For money. On stage. If you play for your entire life, you can get really good at a ton of things. I played pedal steel at a rehearsal for my country band tonight. I played piano at a rehearsal for my hot club jazz band on Monday. I played upright bass at a r…
Ask HN: What is your “I don't care if this succeeds” project?
661–670 of 960 posts
Re: Ask HN: What is your “I don't care if this succeeds” project?
#662Earlier quoted context omitted.
It is sad that you would rather believe the parent has mental health issues, rather than entertain the possibility that yes, someone is actually doing something effective against powerful corrupt people, and that requires creative thinking. To me, it echoes "Discourse on Voluntary Servitude" by La Boétie. Powerful people are just people. They are powerful because we are collectively granting them that power. This is…
It’s fairly obvious to infer that OP is experiencing some type of psychosis or schizotypical behavior
A future matter is the health data protection violation the judge's family committed by hiring problem solving consultants first and giving them my personal info, prior to escalating to a false threat claim.
Interestingly the law assigns such cases to her branch of the judiciary.
So this judge might soon become a witness or even defendant at her very own court, in a matter directed against her actions.
I will grant you this sounds crazy on the face of it. It is the law however (SGB X).
Re: Ask HN: What is your “I don't care if this succeeds” project?
#663Earlier quoted context omitted.
I hope original comments see this. Advising investment vehicles for money, without proper disclaimers and a licence is a very bad idea.
I feel like licensing could be an issue, but if you're advertising that you will lose someone's money, either you succeed (hard to argue that the customer didn't get exactly what they asked for), or you fail (hard to prove damages).
we already know how this ends.
Re: Ask HN: What is your “I don't care if this succeeds” project?
#664I've been working on a project that aggregates data for every public transport provider in the country (Slovenia) and presents it as a simple API, along with an application to find rides with as few clicks as possible (without having to check every provider's website). This has involved tiring meetings with city officials convincing them to give us access to the data and writing scraping bots where they weren't convi…
Re: Ask HN: What is your “I don't care if this succeeds” project?
#665I'm a musician. Long term. 43 years old, been playing forever. Don't care if I get any success at it. Not a hobby. Makes money sometimes. I play professionally. For money. On stage. If you play for your entire life, you can get really good at a ton of things. I played pedal steel at a rehearsal for my country band tonight. I played piano at a rehearsal for my hot club jazz band on Monday. I played upright bass at a r…
I'm 31 and just started learning music a year ago. Ever since I started this is probably the only thing I actually enjoy doing everyday. Is it possible to get to a level of proficiency at this point in life where you get to play good enough you can start getting paid for it?
Re: Ask HN: What is your “I don't care if this succeeds” project?
#666There’s no making money or early retirement possibility with this hobby nor fame and glory. Just something cool, so if i do it that’s awesome but if not it’s still fun trying.
Re: Ask HN: What is your “I don't care if this succeeds” project?
#667Earlier quoted context omitted.
HN hug of death. And well deserved, I had a great time with this one.
Isn't elixir supposed to scale better than this?
Re: Ask HN: What is your “I don't care if this succeeds” project?
#668Examples of usage:
https://www.youtube.com/watch?v=i-40ITVSRBE
Re: Ask HN: What is your “I don't care if this succeeds” project?
#669I’m the project leader for Homebrew and have been maintaining it for 12 years. I have no planned dramatic changes for it or expectations I’ll radically improve it in any way. I just try to keep all parts of the project ticking along and I still enjoy doing so, despite feeling no real obligation to continue.
Possibly dumb question, but have you considered looking for a successor to take over the project? Homebrew has basically reached the point where it's "critical infrastructure" for macOS devs, and it would really be a damn shame to see it slowly fade away just because the creator has moved onto other things.
Homebrew is critical infrastructure, which is exactly why it shouldn't change dramatically.
Now, if GP has lost interest in the project, or doesn't have the time to keep it running satisfactorily, I'd definitely agree with you - but I didn't get that impression from his post.
Re: Ask HN: What is your “I don't care if this succeeds” project?
#670a compiler generator working from descriptions of the language producing a clang quality compiler (with richer errors actually...) with LLVM backend. it actually already works, with a few short cuts for generating itself... and ive used bits of it to do the 'make a scheme in x hours' thing in x/10 hours... the next step is unpicking those shortcuts so it can be completely generalised - there is no theoretical boundar…
It also makes a hell of a lot of use of 'continuous program optimisation' for performance, which I think should be in wider use. In general, the principle of adapting optimisations for the specific program seems to get neglected in favour of treating every program as though it were the lowest common denominator. (Say, maybe you need a top-down parser for your LSP server, but you can use a bottom-up parser for your compiler.)
I have a deep philosophical belief in eliminating wasteful computation – I think we as software engineers have a responsibility not to waste energy, in excess of the logical minimum required by the job at hand – so I have more of an interest in this than the bulk of programmers, who seem to regard performance engineering as some sort of nerd game that's rarely advisable.