[dead]
Ask HN: What cool skill or project interests you, but feels out of reach?
131–140 of 281 posts
Re: Ask HN: What cool skill or project interests you, but feels out of reach?
#132Earlier 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.
Re: Ask HN: What cool skill or project interests you, but feels out of reach?
#133Re: Ask HN: What cool skill or project interests you, but feels out of reach?
#134Re: Ask HN: What cool skill or project interests you, but feels out of reach?
#135There'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)
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?
#136Re: Ask HN: What cool skill or project interests you, but feels out of reach?
#137Re: Ask HN: What cool skill or project interests you, but feels out of reach?
#138Anything 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?
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?
#139Being 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?
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?
#140I 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.