Live data from Hacker News

Ask HN: What skills do you want to develop or improve in 2026?

news.ycombinator.com

191–200 of 433 posts

Re: Ask HN: What skills do you want to develop or improve in 2026?

#191

I am a fullstack frontend leaning engineer of 10 YoE (still employed). In the early days of my career I enjoyed learning about various programming languages and reading technical books (although mostly tutorials, nothing to deep technically). These days I don't do those things anymore because I am now older, a lot of responsibilities, and hobbies that I need to do, and also quite comfortable in my comfort zone in ter…

Build a few simple applications for yourself!

Pick a language you love, and put together a text editor, or even just a quick utility to search through all your files for a keyword and show the results in a window. Write your own Clock app for Android, just to fix that little niggling detail that no other app quite gets right.

I think you'll be surprised how easy it is to put things together, once you start.

The point isn't to build something anyone else would care about - don't worry about the polish, you don't need to publish it, you don't even need to use it yourself. The point is just to make something. Although, personally, I now have a collection of random utilities that all make my life a little bit better, and it's nice knowing that any time a simple app like "Clock" or "Calculator" bugs me, I COULD fix it.

Re: Ask HN: What skills do you want to develop or improve in 2026?

#192
post #176

I want to learn it all... But what will happen is that I use my working days writing code/producing software, evenings to make dinner and be with family, and nights gaming with friends. Weekends are for recharging. And that is completely OK. It is a healthy balance between getting stuff done, recovery, and enjoying life. To avoid burnout again, I take a day or two off whenever I feel like I need some time off.

To me it seems you not only want to learn how to code/write software but also to learn how to make dinner and be with family, how to game with friends, and how to recharge on weekends.

Learning it all is also about learning those other things, too.

This has helped me a lot, makes me realize I want to learn how to relax better, to sleep better, and to slow down better.

Thank you!

Re: Ask HN: What skills do you want to develop or improve in 2026?

#193
- Learn how to design custom PCBs instead of soldering freehand

- Lean into vibecoding. Day job is in finance, and enthusiastic hobbyist coder so despite the happy path nature of it I suspect it may be worthwhile getting good at this from a job market future proofing angle. Whatever comes being able to describe to machines what you want seems like it'll be useful

- Improve non-vibe Rust coding

- Improve homelab. The internet enshittification continues so keen to build out more personal infra. In short term focus is on pipeline to package & deploy. Think docker build -> k8s deploy. If that pipleline is frictionless that'll be good for vibe coded personal tools

Re: Ask HN: What skills do you want to develop or improve in 2026?

#196
Here are mine:

- Build something boring that makes money. Excitement is optional; users are not.

- Use AI less like a chatbot and more like infrastructure, background processes that think while I sleep.

- Go back to fundamentals that compound, graphics, systems, taste.

- Experiment selectively; curiosity without commitment.

- Invest in people, not “networking.” Fewer pings, more real conversations.

- Protect focus like equity.

Re: Ask HN: What skills do you want to develop or improve in 2026?

#198
post #46

Earlier quoted context omitted.

How are you using AI and what sort of software are you building? I have similar years experience and regularly try out AI for development but always find it’s slower for the things I want to build and/or that it produces less than satisfactory results. Not sure if it’s how I use the models (I’ve experimented with all the frontier ones), or the types of things I’m building, or the languages I’m using, or if I’m not sp…

I am guessing: Maybe you are not used to or comfortable with delegating work? You will certainly understand a program better where you write every line of code yourself, but that limits your output. It's a trade-off. The part that makes it work quite well is that you can also use the LLM to better understand the code where required, simply by asking.

I’m perfectly comfortable and used to delegating, but delegation requires trust that the result will be fit for purpose.

It doesn’t have to be exactly how I would do it but at a minimum it has to work correctly and have acceptable performance for the task at hand.

This doesn’t mean being super optimized just that it shouldn’t be doing stupid things like n+1 requests or database queries etc.

See a sibling comment for one example on correctness, another one related to performance was querying some information from a couple of database tables (the first with 50,000 rows the next with 2.5 million)

After specifying things in enough detail to let the AI go, it got correct results but performance was rather slow. A bit more back and forthing and it got up to processing 4,000 rows a second.

It was so impressed with its new performance it started adding rocket ship emojis to the output summary.

There were still some obvious (to me) performance issues so I pressed it to see if it could improve the performance. It started suggesting some database config tweaks which provided some marginal improvements but was still missing some big wins elsewhere - namely it was avoiding “expensive” joins and doing that work in the app instead - resulting in n+1 db calls.

So I suggested getting the DB to do the join and just processing the fully joined data on the app side. This doubled throughout (8,000 rows/second) and led to claims from the AI this was now enterprise ready code.

There was still low hanging fruit though because it was calling the db and getting all results back before processing anything.

After suggesting switching to streaming results (good point!) we got up to 10,000 rows/second.

This was acceptable performance, but after a bit more wrangling we got things up to 11,000 rows/second and now it wasn’t worth spending much extra time squeezing out more performance.

In the end the AI came to a good result, but, at each step of the way it was me hinting it in the correct direction and then the AI congratulating me on the incredible “world class performance” (actual quote but difficult to believe when you then double performance again).

If it has just been me I would have finished it in half the time.

If I’d delegated to a less senior employee and we’d gone back and forth a bit pairing to get it to this state it might have taken the same amount and effort but they would’ve at least learnt something.

Not so with the AI however - it learns nothing and I have to make sure I re-explain things and concepts all over again the next time and in sufficient detail that it will do a reasonable job (not expecting perfection, just needs to be acceptable).

And so my experience so far (much more than just these 2 examples) is that I can’t trust the AI to the point where I can delegate enough that I don’t spend more time supervising/correcting it than I would spend writing things myself.

Edit: using AI to explain existing code is a useful thing it can do well. My experience is it is much better at explaining code than producing it.

Re: Ask HN: What skills do you want to develop or improve in 2026?

#199
post #46
post #28

I want to quit my cosy, well paying, job and start building the products I have been wanting to build for quite some years now. I have been starting to use AI about 12 months ago and, as an experienced engineer of 30+ years professionally, I am blown away by how productive it makes me. What I used to be able to do in a week now takes me a day, what I used to be able to do in a month now takes me week, etc. So, 2026 i…

How are you using AI and what sort of software are you building? I have similar years experience and regularly try out AI for development but always find it’s slower for the things I want to build and/or that it produces less than satisfactory results. Not sure if it’s how I use the models (I’ve experimented with all the frontier ones), or the types of things I’m building, or the languages I’m using, or if I’m not sp…

If anything, the LLM is cool because it keeps me moving forward.

Re: Ask HN: What skills do you want to develop or improve in 2026?

#200
post #163

Work solidly at work for 8 hours and then go home, instead of sitting behind a computer for 12 hours and wasting a lot of time.

Definitely something akin to this for me too. My ability to concentrate has definitely fallen off since my younger years, precipitously since 2020.

That and I'm trying to re-learn Spanish to a useful degree¹ - better attentiveness to the task would help with that too.

--------

[1] I did pretty well at GCSE level three decades ago, then never used it again. I fancy spending time over there in future and don't want to be that guy who turns up and expect everyone to speak some English.

Post reply on HN