TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Advice for (probable) final career language change

3 点作者 code_Whisperer大约 2 年前
Looking for advice. I&#x27;ve been doing dev for decades, which makes me an old. Much of the contract biz out there is no longer using the languages or environments in which I am highly proficient, so it&#x27;s time to either retire or make a change. And it ain&#x27;t gonna be that first one. I figure that at my age, I have maybe one big language change left in me, so I want to get it right. My field is web dev, and it&#x27;s where I fit best. I have no intention of going to work as an employee anywhere, so corporate acceptance&#x2F;usage is not part of the formula. Most of my dev experience has been deeply Microsoft based.<p>So, for the purposes of web application development and my own SaaS development projects, where do you (based on your own experience) recommend I look?<p>I am thinking perhaps Go with a good web framework, or maybe Python with something like Django, for awhile was thinking Ruby&#x2F;Rails but that scene seems to be waning (or maybe not?) but am seeking feedback.<p>Goals:<p><pre><code> - Reasonably easy to learn and get started - framework needs to have decent security baked-in - should run easily on lower cost server environments (think Linux not Windows - but might be nice if it is able to run on either) - good database interfacing&#x2F;support - must be fast&#x2F;efficient and scale well </code></pre> Side note: I do love C# as a language, but have grown weary of the server expense and also the seemingly endless tiny technical problems that require - what feels like - Stack-Overflowing and then tinkering and then tweaking on the server to &#x27;fix&#x27;. I am looking for languages and environments that generally &quot;just work.&quot;<p>No flame wars, no evangelism. OK, go.

8 条评论

ignurant大约 2 年前
I would suggest that the Rails scene is at least worth checking out.<p>I’ve seen a number of people move from .NET or Node to Ruby and Rails and thoroughly enjoy it, with little desire to go back. For reference, the last 12 years I’ve worked for a company that was traditionally .NET. In the past few years, we’ve been choosing Rails instead. Once you know its conventions, you can really fly. It’s very mature and doesn’t often change in frustrating ways. What I learned in 2014 is still very relevant today.<p>Especially on small teams or solo, it’s amazingly productive. The out-of-the-box experience gives your users the feeling of a modern SPA without actually being one. Instead, it’s built like a .NET MVC app with standard resource rest routes and Razor views. Significantly less boilerplate. Hard to describe, but very clever. It makes me feel powerful, and I really enjoy programming with Ruby.<p>But maybe it’s not what you’re looking for if you want a single final frontier to ride off to. Some people really dislike Ruby’s dynamic nature, and Rails’ mysterious-seeming clever conventions. (Though, note, it’s not magic, it’s just clever Ruby code. Everything can be traced and explained). Other languages have a larger market share and perhaps more excitement. But, your described use-case of solo web-dev moots that point.<p>Consider looking through <a href="https:&#x2F;&#x2F;rubyonrails.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;rubyonrails.org&#x2F;</a> to sniff it out. Watch that video to see if it jives.<p><a href="https:&#x2F;&#x2F;gorails.com&#x2F;guides" rel="nofollow">https:&#x2F;&#x2F;gorails.com&#x2F;guides</a> is a great resource to learn how to set up a dev environment, with tons great modern content.<p>Whatever you choose, good luck. I hope you find a great fit!
评论 #35819771 未加载
warrenm大约 2 年前
&gt; - good database interfacing&#x2F;support<p>Can&#x27;t think of any more-or-less &quot;modern&quot; language&#x2F;framework that <i>doesn&#x27;t</i> have &quot;good database interfacing&#x2F;support&quot;. Something lower-level like C++ or Java may not have it &quot;baked-in&quot;, but it&#x27;s pretty easy to &quot;add-on&quot; :)
评论 #35789006 未加载
warrenm大约 2 年前
You didn&#x27;t say what language(s)&#x2F;framework(s) you&#x27;re currently using ... so it seems <i>likely</i> someone&#x27;s going to suggest something you&#x27;re already doing<p>What have you used in the past?<p>What are you using now?<p>Do you &quot;have&quot; to stay in webdev?<p>Where do you want to work (what&#x27;s wanted&#x2F;needed in Reno might be pretty different from Marrakesh or Bangkok)?<p>What size customers do you want to keep (suggestions for maintaining a rotating billet of 20 companies with fewer than 20 employees each will <i>likely</i> be [somewhat] different from wanting 1-2 &quot;big&quot; customers that&#x27;ll keep you billing more-or-less half-to-full-time each on their own)?
warrenm大约 2 年前
&gt; - should run easily on lower cost server environments (think Linux not Windows - but might be nice if it is able to run on either)<p>Honestly ... Windows servers aren&#x27;t that expensive to run - they&#x27;re not quite as lightweight as a Linux server can be, but they&#x27;re not especially &quot;expensive&quot;, either<p>The difference in a 4 CPU, 8 GB Windows box and a 4 CPU 8 GB Linux box is <i>at most</i> licensing ... but even that&#x27;s minimal (commercial Linux support is basically the same cost as Windows)
warrenm大约 2 年前
&gt; - must be fast&#x2F;efficient and scale well<p>Need to define all those terms :)<p>&quot;fast&#x2F;efficient&quot; to ... what? Run? Write? Maintain?<p>What is your benchmark for determining &quot;fast&quot; or &quot;efficient&quot;? Why <i>that</i> standard, and not another?<p>&quot;scale well&quot; ... how? In what direction? Take advantage of more cores? Take advantage of more server instances? Take advantage of better storage speed? How &quot;scalable&quot; do you think your development needs to be? 1m hits per second? 1000 hits per day?
PaulHoule大约 2 年前
For personal projects I love writing servers with aiohttp in Python. I&#x27;m not so sure how these would handle heavy load though.
评论 #35789478 未加载
warrenm大约 2 年前
&gt; - Reasonably easy to learn and get started<p>If you&#x27;ve been programming as long as you say you have (and I have no reason to doubt you), then basically <i>any</i> language&#x2F;framework will check this box<p>Python, Rust, PHP, Hare, Go, Ruby, Swift ... they&#x27;re all accomplishing the &quot;same&quot; thing (albeit in slightly different implementational manners)
pestatije大约 2 年前
Any reason why Node, php are not mentioned?
评论 #35789101 未加载