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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Tinkering Too Much?

1 点作者 OezMaster大约 3 年前
Hello Friends, hope this is relatable to you.<p>I think i spend too much time in the REPL and in documentations. I like learning new things, and testing them out in an interactive environment, without bothering to deploy at some point.<p>I might write 20 different versions of a Method, just to discard it in the end. In my mind, this is not wasted time, but my Employer might think differently. I want to impress him with my skills, but can&#x27;t bring myself to produce anything usable.<p>At its core, it is Escapism. How do I get my Head out of my Ass and start producing?

2 条评论

eternityforest大约 3 年前
I thoroughly appreciate the honesty and bluntness. I tinker 1&#x2F;10th as much as I used to, and... honestly even that amount makes me feel that my head is deeply wedged in my ass, on account of how little utility, education, or enjoyment it brings compared to... pretty much anything else. Only a small fraction winds up being anything other than throwaway, so before I start coding, I try to do a lot of research to figure out if it&#x27;s worth it or not.<p>I wonder if trying non-REPL oriented coding would be a useful change of pace. I&#x27;ve never used one in any significant way, beyond a bit of debugging, but it seems like REPL programming is like a whole different way of thinking.<p>My &quot;Extremist Anti-tinkering&quot; workflow is pretty much:<p>1. Survey all existing solutions. Find out if I can avoid the whole project and use something off the shelf<p>2. Look for libraries and frameworks that do most of it. Look for the super high level integrated and enterprisy stuff.<p>3. If something takes more than 5 minutes, start getting suspicious that it will be a continual challenge not just a one time learning curve, start looking at other things.<p>4. If I think I might have to explain something to someone, assume they won&#x27;t be interested, and look for something they already know.<p>5. For design decisions, look at similar things and copy their architecture, UI concepts, etc. Maybe I&#x27;m not actually making a traditional TV remote... but can I model my protocol on Roku&#x27;s ECP?<p>6. Instead of Agile continual refactoring, continually and aggressively look at what interesting new things to get rid of and replace with something standard. Users and passwords? Can you just use pass through the auth request to Linux system accounts?<p>7. Look at the documentation. If there&#x27;s any documentation you can eliminate by adding more code to automate something, do that.<p>8. Use the linter. Use type hints. Don&#x27;t use deprecated APIs. Use the debugger. Use the recommended project template. Use the configuration everyone else uses. Code in such a way the average StackOverflow poster would approve.<p>Basically, I try to code things that a suckless fan would spit on, and a captain in Star Trek would love.<p>A lot of great things have come from tinkering... but the tech community acts like it&#x27;s the be all and end all of development, and takes it way too far.
gjvc大约 3 年前
start by writing tests which follow the shape of the system required to solve the problem. tinker away all you like in the pursuit of fixing those.