Live data from Hacker News

Ask HN: What cool skill or project interests you, but feels out of reach?

news.ycombinator.com

131–140 of 281 posts

Re: Ask HN: What cool skill or project interests you, but feels out of reach?

#132
post #78

Earlier quoted context omitted.

For this, what takes a while is to just tinker and fry components several times. Get a breadboard, get several sensors, try to design something and iterate on your design. Plan to fry sensors and IC's. Also helps to read some basic electrical theory and know what the role of different components are. The way I got proficient is with hobbyist PCB design. What helped me is starting with schematics and datasheets and pl…

This just reinforces the fact that it's inaccessible. There's no way I'm literally throwing $200 a month in the trash on a hobby.

I'm a EE masters student and I also want to reinforce how inaccessible EE is and that I don't really recommend it as a hobby. EE is a very mature field and it's very math heavy for a reason. The second you move past the hobby boards, stuff becomes really difficult and really expensive really fast. If your end goal is to create toys for kids, then it's fine as a hobby. But without the formal training and lab access you are going to struggle to get past that point so it's pretty much impossible to turn the hobby into something more. Unlike software, where tinkering genuinely has the possibility of turning your side projects into careers. Hell, if you don't live in EE hotspot locations, I wouldn't even recommend it as a career anymore. Software is where it's at, even in the age of AI.

Re: Ask HN: What cool skill or project interests you, but feels out of reach?

#135

There's 2 big ones that I want to learn. Quantum computer programming. I've dived a couple times into Qiskit from IBM. Also tried to get into dwave and ocean sdk but they never got back to me. Qiskit tutorials are easy to blow through and i think even understand. But when trying to use it for my own purposes, just never get anywhere. The other one for me with no success. Training my own specialized predicting AI mode…

Totally fair re: quantum computer programming. It's still an open question what exactly it can be useful for. Are you trying it for anything in particular? (I'm only getting started in it now in my Master's programme)

>Are you trying it for anything in particular?

cracking crypto. forcing netadmins and sysadmins to update crypto to quantum resistant crypto. Might as well make it a real threat :)

Re: Ask HN: What cool skill or project interests you, but feels out of reach?

#138

Anything that involves time. Dance, music, gardening. I have too many existing commitments that when I actually have free time I have no energy left

Are you speedrunning life?

what are you trying to suggest? that they are doing to much already? and if they were to do less they would have time? wouldn't that then lead to the same situation, that they would like to work on some of the things they are working on now but could not because of lack of time?

also we don't choose all our commitments. family, work, friends, etc are commitments we can't just give up. it comes down to choice and priorities, and the problem is that we have more things we find interesting than we can focus on.

but i consider that a good thing. i know that whenever i retire or am unable to continue some of my interests there will be others that i can pick up instead. i know that i won't be bored...

Re: Ask HN: What cool skill or project interests you, but feels out of reach?

#139

Being able to spontaneously speak with people and slow thinking. I am ok at writing with people, because it gives me time to think and refine my message. But I really suck at live events and talking to people in real life. Did anyone overcome it? And how?

The French have a term for this, "the wit of the staircase" where one doesn't think of the clever rejoinder until heading upstairs to bed later that evening.

I've found asking folks about themselves, trying to get their story works best as a start, then if they reciprocate, things should flow naturally from there.

Re: Ask HN: What cool skill or project interests you, but feels out of reach?

#140
I am fascinated by the idea of building something like the Lisp Machines or Smalltalk 80 from scratch. Build a Forth in assembly, build a Lisp in Forth, build an OS and computing environment in Lisp. AOT-compile only the Forth interpreter, load and compile the rest from source during system boot, maybe with later stages optimizing the previous stages as the system is assembling itself.

I imagine two languages - Langsam and Schnell - intertwined in some sort of yin-yang fashion. Langsam is slow, dynamic, interpreted, Schnell is fast, static, compiled. Both would be LISPs. Schnell would be implemented as a library in Langsam. If you said (define (add x y) (+ x y)) in Langsam, you would get a Langsam function. If you said (s:define (add (x int) (y int)) (+ x y)) in Langsam, you would get a Langsam function which is a wrapper over a JIT-compiled Schnell function. If you invoke it, the wrapper takes care of the FFI, execution happens at C speed. Most of the complexity typical of a low-level compiled language could be moved into Langsam. I could have sophisticated type systems and C++ template like code generation implemented in a comfortable high level language.

This latter part I managed to partially implement in Clojure and it works (via LLVM), it would be just too much effort to get it completed.

Post reply on HN