Mobile or desktop dev (not Electron or React Native). See how the other half lives. Last I checked Apple TV recommends a markup+JavaScript development process for standard TV streaming applications. It's not a web environment, but it should feel pretty familiar. Easy transition, knock out a demo app and you could start pulling contracts for that, maybe. Dunno how hot that market is. I'd second others with leveling up…
Ask HN: Self-taught webdev with lots of free time. What should I learn?
131–140 of 326 posts
Re: Ask HN: Self-taught webdev with lots of free time. What should I learn?
#132With XgeneCloud,
* You can generate REST/GraphQL APIs instantly on any database (MySQL, PG, MSSQL, SQLite)
* And deploy entire backend into a single Serverless function! (AWS Lambda, GCP CLoud fn, Azure Function Compute)
* Has a built in GUI tool for Database design and API debugging as well.
Idea is you get to pass the boring bits (CRUD et al) and invest time into business parts of application.
(Disclaimer : Im the creator)
Re: Ask HN: Self-taught webdev with lots of free time. What should I learn?
#133Re: Ask HN: Self-taught webdev with lots of free time. What should I learn?
#134Please learn how to actually make money off web development and let me know how you do it. I've noticed a huge disconnect between what people think a web dev can/should make and what I've been able to get from it.
100% self-taught here. I change $150/hr for full stack Rails work and none of my clients have batted an eye at that. I’m thinking about raising my rates, actually. If you know what you’re doing, I can assure you, making money is not going to be one if your problems.
Re: Ask HN: Self-taught webdev with lots of free time. What should I learn?
#135This is an underappreciated field that lends to plenty of consulting. As the web becomes more complex, with heavy frontend code, third party services, and demanding amounts of images and videos, it's requiring a deeper understanding about networking and browsers to keep the web performant. Compounding the problem is the growing number of users who use mobile devices to browse the web, which have larger constraints on network and hardware than desktop users.
Additionally, web performance speaks to businesses because a "slow" website can impact your bottom line. There's lots of case studies about this: https://wpostats.com. For large companies with heavily-trafficked websites, this is critical as you're losing potential users/customers as a %.
Google has slowly been making it a bigger objective for websites to focus on SEO-wise, especially with their latest push around "web vitals." Therefore it's becoming a higher priority for marketing departments as well.
Web performance is not sexy and requires a lot of patience around analyzing websites to figure out why they're slow and coming up with specific optimizations for them. This is not like building websites. It's more like debugging. And it requires a pretty deep understanding of how websites load and run in browsers. Provided these things, I think that's partially why it's given so little attention and why so many websites perform terribly. If you're not deterred by these factors, there's a lot of businesses that could use this specialized expertise.
Re: Ask HN: Self-taught webdev with lots of free time. What should I learn?
#136read your favorite DBMS manual end to end. this could amount to thousands of pages; each one is well worth it.
watch leslie lamport's TLA+ videos.
Re: Ask HN: Self-taught webdev with lots of free time. What should I learn?
#137Let's meet up online and play hackthebox.eu together for a bit. My idea is to simply pick a live box and hack it together. You can pick the difficulty. I've done 6 years of CS degree programs (1 bachelor, 2 masters), 1.5 years of software engineering experience and done security courses (network security, hardware security and reverse engineering) as extracurricular subjects.
Anyone who feels up for the challenge, my email is in my profile.
Re: Ask HN: Self-taught webdev with lots of free time. What should I learn?
#138Please learn how to actually make money off web development and let me know how you do it. I've noticed a huge disconnect between what people think a web dev can/should make and what I've been able to get from it.
100% self-taught here. I change $150/hr for full stack Rails work and none of my clients have batted an eye at that. I’m thinking about raising my rates, actually. If you know what you’re doing, I can assure you, making money is not going to be one if your problems.
Re: Ask HN: Self-taught webdev with lots of free time. What should I learn?
#139Hey, Let's meet up online and play hackthebox.eu together for a bit. My idea is to simply pick a live box and hack it together. You can pick the difficulty. I've done 6 years of CS degree programs (1 bachelor, 2 masters), 1.5 years of software engineering experience and done security courses (network security, hardware security and reverse engineering) as extracurricular subjects. Anyone who feels up for the challeng…
Re: Ask HN: Self-taught webdev with lots of free time. What should I learn?
#140I'm a self-taught webdev too and I would strongly recommend learning SQL, not just `SELECT * ...` but really learning it! I've been digging into postgreSQL and in quite a few applications it's possible to greatly reduce the complexity of the backend by receiving exactly the data you need from the DB. It is so much so that in cases you can even "get rid" of the backend completely (yes, no writing controllers and endpo…