Readit News logoReadit News
tomwojcik commented on Claude Opus 4.1   anthropic.com/news/claude... · Posted by u/meetpateltech
zarzavat · 24 days ago
Github Copilot and Claude code are not exactly competitors.

Github Copilot is autocomplete, highly useful if you use VS Code, but if you are using e.g. Jetbrains then you have other options. Copilot comes with a bunch of other stuff that I rarely use.

Claude code is project-wide editing, from the CLI.

They complement each other well.

As far as I'm concerned the utility of the AI-focused editors has been diminished by the existence of Claude code, though not entirely made redundant.

tomwojcik · 24 days ago
Opencode https://github.com/sst/opencode provides a CC like interface for copilot. It's a slightly worse tool, but since copilot with Claude 4 is super cheap, I ended up preferring it over CC. Almost no limits, cheaper, you can use all the Copilot models, GH is not training on your data.
tomwojcik commented on The Minecraft game score unexpectedly became big business for its composer   billboard.com/pro/how-min... · Posted by u/tunapizza
Arainach · a month ago
How often are video game soundtracks created by well known artists? Especially without AAA studio resources?

Have there been that many big names in the space? Nobuo Uematsu for JRPGs, Jeremy Soule, Yasunori Mitsuda....who else has done enough that many people would have a chance of knowing their name?

tomwojcik · a month ago
Marcin Przybyłowicz for The Witcher. Borislav Slavov for BG3. Jesper Kyd Assassin's Creed.
tomwojcik commented on Beer on Board in the Age of Sail (2017)   blog.library.si.edu/blog/... · Posted by u/thunderbong
asdfman123 · 4 months ago
Often things that a lot of people do repeatedly for "pure enjoyment" actually has some hidden benefit.

Like for instance, drinking in general. People do it because it's fun, but it can play an important social bonding role.

tomwojcik · 4 months ago
Exactly. To my understanding any amount of alcohol is unhealthy, but societies have had festivals or other rituals since the beginning, and substances _like_ alcohol play an important role in those.
tomwojcik commented on Google is illegally monopolizing online advertising tech, judge rules   nytimes.com/2025/04/17/te... · Posted by u/IdealeZahlen
dboreham · 4 months ago
Digital Signal Processor?
tomwojcik · 4 months ago
demand-side platform, i assume
tomwojcik commented on Ask HN: What are you working on? (March 2025)    · Posted by u/david927
conductr · 5 months ago
Good work, It looks promising. Perhaps feed it with some group info. If you're expecting people to just show up and list their events I don't think you'll get much traction.
tomwojcik · 5 months ago
Thank you! I plan to add "sync with meetup" via API sometime in the future.
tomwojcik commented on The blissful Zen of a good side project   joshcollinsworth.com/blog... · Posted by u/ingve
keyle · 5 months ago
It's an interesting read. I'm in the complete opposite camp. I can't pick up a game controller for more than 5 minutes without feeling like I'm wasting time.

This has lead to many, many side projects throughout the years, which I tend to like a zen garden[1]. Pruning, refining, improving, and sometimes rewriting.

As soon as I work out the game mechanics of any game, I just see it as just content now, and there is nothing holding me back to play any longer. Same with watching TV shows or movies, I lose interest pretty quickly and feel an urge to create something.

I've always been very in tune with time, our lack of it, and felt like consumption is a waste of time.

That said I believe creativity is hormonal (that is only my personal belief, unproven). It comes and goes. Some days I can't stop creating, somedays I want netflix and chill. But that's 10 days cycle of sorts, 10 days on, 10 days off.

Depending on where you live, it's perfectly normal that due to current events, or a personal loss in your life, etc. you might not feel the creative bug tickling you. The creative hormone might be totally wiped by your current environment or predicament; tiredness, anger, stress, all play into it.

After all, since our early days in the caves, drawing on walls, Humans wouldn't do so unless they had safety, a full belly, and a warm fire. A place to call home. Creative time needs conditions to be filled.

[1] https://noben.org

tomwojcik · 5 months ago
I'm in the same boat. Ever since I started working professionally, I was always praised for delivering first, and it shows in how I work. I'm a maker, I love to deliver. I have a few side projects as well, a few that are relatively completed and I haven't even deployed them, because they were just fun to build. Some are deployed, and I enjoy polishing them.

On the other hand, I remember that time you enjoy wasting is not a wasted time. I don't sleep well if I don't just chill and forget about the world, from time to time. It's like in the Sims. I aim towards my creativity and entertainment need bars to be filled. While coding, I often increase the fill of both bars.

tomwojcik commented on Ask HN: What are you working on? (March 2025)    · Posted by u/david927
tomwojcik · 5 months ago
Some time ago, I began searching for Python-related events and discovered that many PUGs (local Python User Groups) had disappeared sometime around COVID (at least my local PUGs). After analyzing the ones listed on the official Python website, I found only about 18% were still active, with most hosted on Meetup. This makes sense, as maintaining a community requires time and money, which small PUGs don't have. Meetup can be costly for those starting local Python User Groups, but it's very cheap for big communities. IMO Meetup is not the best place for PUGs, as they are not big by default.

PUGs need a way to communicate and broadcast, to be discovered, but it doesn't necessarily need all of Meetup's features. Also, PUGs probably don't want to be tied to Facebook or other social media platforms. It'd be best if they allowed a simple ownership transfer, once you get tired of organizing.

That's why I created https://pythonuser.group/ - a lightweight side project that, despite being rough around the edges, fulfills the core need: allowing people to discover PUGs worldwide for free. The platform costs me almost nothing to maintain. Allows to subscribe to local PUGs via RSS (not sure if it works). I'll add "export all my PUG data" once someone requests this feature.

It's the first time I share it with the world. Please don't treat it as prod-ready. Feedback welcome at hn@{username}.com

tomwojcik commented on Ask HN: Moving a not-for-profit web app off AWS    · Posted by u/sjayasinghe
RadiozRadioz · 7 months ago
Put everything behind a reverse proxy, then set up automated blue/green deployments. It's extremely trivial for OP's scale of application.
tomwojcik · 7 months ago
Hn moment. Blue green with zero downtime on a VPS is not extremely trivial. Simple for some, at best.
tomwojcik commented on Oh Shit, Git?   ohshitgit.com/... · Posted by u/Anon84
ajross · 7 months ago
> 1. Always use `git switch` instead of `git checkout`

Even harder: always use "git reset --hard".

Basically don't use local branches. The correct workflow for almost every task these days is "all branches are remote". Fetch from remotes. Reset to whatever remote branch you want to work above. Do your work. Push back to a remote branch (usually a pull request branch in common usage) when you're done.

If you need to manage local state, do it manually with tags (or stash, but IMHO I never remember what I stashed and will always make a dummy commit and tag it).

Don't ever try to manually manage a branch locally unless you (1) absolutely have to and (2) absolutely know what you're doing. And even then, don't, just use a hosted upstream like github or whatever.

tomwojcik · 7 months ago
That's my approach and I've never seen anyone else doing it. Many years ago I lost my local changes, I don't even remember why. HDD failure or something like that. Ever since, at the end of the work day, I just commit "m" or "WIP" or something more meaningful, but I get it out before closing my laptop. Then, once I'm done with the the draft PR, I fetch the latest changes, reset hard and write a nice story with commits. This way I don't ever lose my changes, I can write a nice git history and I can iterate over the changes fast.
tomwojcik commented on How I program with LLMs   crawshaw.io/blog/programm... · Posted by u/stpn
ilrwbwrkhv · 8 months ago
Being a dev at a large company is usually the sign that you're not very good though. And anyone can start a company with the right connections.
tomwojcik · 8 months ago
That's a terrible blanket statement, very US-centric. Not everyone wants to start a company and you can't just reduce ones motivations to your measure of success.

u/tomwojcik

KarmaCake day310December 23, 2018
About
Senior Python Developer

Contact me at

hn@{username}.com

View Original