HackerTrans
TopNewTrendsCommentsPastAskShowJobs

linesofcode

no profile record

Submissions

Show HN: Pongo – a self hosted uptime monitor using configuration as code

pongo.sh
1 points·by linesofcode·قبل 5 أشهر·2 comments

Show HN: NationalDex – an open-source Pokédex app

nationaldex.app
1 points·by linesofcode·قبل 5 أشهر·1 comments

Ask HN: What Comic-books did you read in 2025?

5 points·by linesofcode·قبل 6 أشهر·2 comments

comments

linesofcode
·قبل 3 أشهر·discuss
AI is simply a force multiplier when it comes to tech. If you were motivated before LLMs what has changed?

I don’t think AI is the problem here.
linesofcode
·قبل 3 أشهر·discuss
Not most. All of it.
linesofcode
·قبل 3 أشهر·discuss
cat some-file | pbcopy

Copies it to your clipboard on osx. I use this a lot.
linesofcode
·قبل 3 أشهر·discuss
Code quality no longer carries the same weight as it did pre LLMs. It used to matter becuase humans were the ones reading/writing it so you had to optimize for readability and maintainability. But these days what matters is the AI can work with it and you can reliably test it. Obviously you don’t want code quality to go totally down the drain, but there is a fine balance.

Optimize for consistency and a well thought out architecture, but let the gnarly looking function remain a gnarly function until it breaks and has to be refactored. Treat the functions as black boxes.

Personally the only time I open my IDE to look at code, it’s because I’m looking at something mission critical or very nuanced. For the remainder I trust my agent to deliver acceptable results.
linesofcode
·قبل 3 أشهر·discuss
I’ve always been addicted to coding and building, this just makes it easier to get my fix…
linesofcode
·قبل 3 أشهر·discuss
Today Claude Code built several features and fixed a laundry list of bugs while I was at the movie theatre. When I came home I did about 15 minutes of reviewing its work and doing manual testing, found some issues, made a list and fired it off to Claude again before going to bed.

I’m not mentally taxed at all, in fact I’m excited to be building something 24/7 without sitting at my keyboard night and day typing out code and ruining my physical health.

When I reflect on the old days of coding (pre 2024) I have a hard time thinking about how many days of my life I spent manually coding away at the keyboard - it makes me queasy and uncomfortable realizing the amount of time I lost.

Tomorrow morning I’m going to go to the gym and have Claude bang out several more features while I’m exercising - and I’m stoked to review the results and keep the ball rolling.
linesofcode
·قبل 4 أشهر·discuss
I’m so happy. I can think about what actually matters and tackle hard problems that were otherwise bottle-necked by how fast I could type syntax correctly on the keyboard.
linesofcode
·قبل 4 أشهر·discuss
That’s exactly what we’re doing. Connect the agent to your GitHub issues, tell it implement each one and spin on a loop until it’s finished. There’s more nuance to it than that but at a high level yeah, that’s how some people are using it.
linesofcode
·قبل 4 أشهر·discuss
I’m also interested in what CS curriculums are right now and furthermore what students actually think of it. I suspect nothing has changed in terms of curriculum other than being more rigorous about “academic dishonesty” like detecting if someone used ChatGPT generated answers.

What I hope will change is less people going into the CS field because of the promise of having a high-paying career. That sentiment alone has produced an army of crud monkeys who will overtime be eaten by AI.

CS is not a fulfilling career choice if you don’t enjoy it, it’s not even that high-paying of a career unless you’re beyond average at it. None of that has changed with AI.

I think the right way to frame career advice is to encourage people to discover what they’re actually curious in and interested by, skills that can be turned into a passion, not just a 9 to 5.
linesofcode
·قبل 4 أشهر·discuss
September 2024. I’ll never write a line of syntax again. First it was Cursor now it’s Claude.
linesofcode
·قبل 5 أشهر·discuss
Say hello to https://pongo.sh/

self-hosted uptime monitoring, configured entirely in TypeScript and built on NextJS and Bun.

No UI forms. No vendor lock-in. Just code in your repo.

Monitors, dashboards, alerts, incidents, and status pages — all defined as TypeScript files and Markdown, version-controlled alongside your application.

You can one-click deploy it to Vercel or anywhere you can run node/bun/docker.

Your monitoring config lives in your repo like everything else.

Want to know what's monitored and why? Read the code.

Need to review a change? It's in the PR. Need to roll back a bad alert? Git revert.

No more clicking through dashboards wondering who changed what and when.

Built with Next.js, Drizzle ORM, and Bun. Runs with SQLite for simplicity or PostgreSQL for production.

Fully open source and ready to use today.

Would love to hear what you think and what features you'd want to see next, leave a star on GitHub

https://github.com/TimMikeladze/pongo
linesofcode
·قبل 5 أشهر·discuss
Give this a shot https://github.com/sharkdp/bat

But in all seriousness I’m interested in knowing the answer to this too, just out of sheer curiosity.
linesofcode
·قبل 5 أشهر·discuss
built a pokedex, open-source'd it too, cause wynaut?

- every pokemon and regional variants

- items, moves, abilities, locations

- team builder, comparison and type coverage tool

- bunch of other features...and it's a PWA!

Get the code - https://github.com/TimMikeladze/nationaldex
linesofcode
·قبل 5 أشهر·discuss
Agreed but I did click on the post purely cause of its odd choice of name.
linesofcode
·قبل 5 أشهر·discuss
Hype combined with a community of excited engineers is a great innovator. People are hyped about these new tools and its popularity is pushing them to create new projects, discover new uses, solve challenges that before were unattainable and in general push the frontier forward. Hype is almost a prerequisite to this.

By the way, good job at pointing out some low hanging fruit for your example cases.
linesofcode
·قبل 5 أشهر·discuss
A pre-commit hook that runs a linter and type-checking is absolutely vital to maintain the code formatting of AI generated commits.

One observation I’ve made working with LLMs is that sometimes it’s worth being flexible and conforming to the LLM’s code style and patterns.

Frankly the code doesn’t need to be elegant or follow arbitrary guidelines (in reality nobody cares if it uses spaces or tabs, what matters is the result).

In the past (pre-LLM) I used to nitpick people in code reviews, calling out a bunch of stylistic preferences that I believed would keep the codebase “consistent” and “elegant”. The idea was that if the codebase is uniform it’s easier for other engineers to iterate on it or debug.

Today I don’t care in the slightest.

I’m not the one writing the code nor am I the one actively debugging it, that has been delegated to the AI.

Furthermore very seldom am I actually reading any of the generated code unless it’s mission critical. I treat the code it generates as a black box until I can’t, and nowhere throughout that process do I worry about aesthetics.

Try to put aside all code vanity, accept that not all code will be aesthetically pleasing or elegantly written. Focus on delivering the end goal, not the syntactical minutia.
linesofcode
·قبل 5 أشهر·discuss
A lot of tech debt can be attributed to lack of communication or lack of proper planning.

It’s one of the reasons why projects built by just one or two people rarely have the kinds of tech debt you’ll find on large teams.
linesofcode
·قبل 6 أشهر·discuss
How can one judge potential without fully understanding or having used it to its full potential?

I don’t think agentic programming is some promised land of instant code without bugs.

It’s just a force multiplier for what you can do.
linesofcode
·قبل 6 أشهر·discuss
When you first began learning how to program were you building and shipping apps the next day? No.

Agentic programming is a skill-set and a muscle you need to develop just like you did with coding in the past.

Things didn’t just suddenly go downhill after an arbitrary tipping point - what happened is you hit a knowledge gap in the tooling and gave up.

Reflect on what went wrong and use that knowledge next time you work with the agent.

For example, investing the time in building a strong test suite and testing strategy ahead of time which both you and the agent can rely on.

Being able to manage the agent and getting quality results on a large, complex codebase is a skill in itself, it won’t happen over night.

It takes practice and repetition with these tools to level-up, just like any thing else.
linesofcode
·قبل 6 أشهر·discuss
Sentry has a different but overlapping feature-set as DataDog and has a free tier.