Hacker Newsnew | past | comments | ask | show | jobs | submit | jdmoreira's commentslogin

I am giving my 6 year old girl an old acer netbook that boots directly to pico-8. This will be her first computing experience. She never had access to phones or tablets.

You’re awesome.

I must be holding wrong then because I do use Claude Code all the time and I do think its quite impressive… still I cant see where the productivity gains go nor am I even sure they exist (they might, I just cant tell for sure!)

if you back and forth with the model, and discuss/approve every change it does, that's the problem.

you need to give it a bigish thing so it can work 15 min on it. and in those 15 min you prepare the next one(s)


Sure. But am I supposed to still understand that code at some point? Am I supposed to ask other team members to review and approve that code as if I had written it?

I'm still trying to ship quality work by the same standards I had 3 or 5 years ago.


when compiler appeared assembly programmers would complain all day how ugly and inneficient the generated code was

if you want to get the productivity gain you need to figure out how to solve the code review problem


Your solution is, "just ship worse code, it's probably fine"?

I think it's your standards that have fallen 90%…


No not, worse code. Wrong code. Code filled with bugs. Code filled with lawsuits too. Code that make you look productive this month while you prepare to leave the company, and turn out to be absolute pooopoo the day after you leave.

I think there might be something here! a core of truth about what the future might hold. I cant take this approach right now though. Its not a good approach today.

But did the generated code do what you told it to do and was it deterministic? LLMs aren’t the same at all. That metaphor doesn’t work.

Very good (albeit extremely cynic) take!

reality is probably somewhere in the middle but it does make a good case


I’ve always had this weird intuition that Zeno’s Arrow Paradox is some indication that there must be some discreteness. Somehow, somewhere, there must be a ‘tick.

What happened with their plans to start writing in Swift? Does anyone know?

Hope someone somewhere still has the source for MicroProse’s Shandalar.


Not the source code, but I am working on a re-implementation of it for Shandalar's 30th anniversary.

You can play a minimal web version at: - https://throwingbones.com/ben/s30/

Source: - https://github.com/benprew/s30 (patches welcome!) Written in Go using ebitengine


Forge is a good modern equivalent


I've implemented otp codes / magic links many times now. They absolutely always have a timeout. Say 30 minutes.


Some of them are wealthy because they are the best at playing the wealth game (and got lucky along the way).

Why does everyone care about Cristiano Ronaldo? Being the best at kicking a ball is the stupidest skill there is (IMHO).

at least becoming wealthy is a game that correlates with skills I care about.


I hate to break it to you, but Cristiano Ronaldo is a billionaire.


Marko is server side. How is that closer to svelte?


Svelte can also be used for SSR


Hi Derek!

It's not new, my first job circa 2007 was working on a Delphi 7 desktop application and all the "business logic" was stored procedures in an Oracle db. It was early in my career but I believe this was fairly popular in the early 00s. I was too young to have an opinion but for sure others will remember and be able to add more colour to it.

Nice seeing you around here! I'm a fan.


Thanks! I do often get "YOU IDIOT!" type comments from people that did too many Oracle stored procedures in the 90s, and were burned by it.

But PostgreSQL is not Oracle and doing things this way has been working wonderfully for me for 9 years so far.


I haven't had the "pleasure" to work with stored procedures,etc but from conversations the main takeaways seems to be:

1: cooperation, nowadays database instances are cheaper and with Docker we can spin them up but having them shared doesn't feel like a fun thing when developing (triggers more than stored procedures here)

2: version control, kinda ties to the above but being able to keep track of changes (and related then to code being out of sync even if that would matter less in a application-less world)

3: debugging in general ?

4: debuging "spooky effects at a distance" when triggers,etc run.

What's your take on these?


> 2: version control, kinda ties to the above but being able to keep track of changes.

We dont use stored procedures at work, but all other database changes like tables, triggers etc. are committed to git and deployed using github actions. There's no need to run the sql manually


Oracle has a nice way to bundle stores procedures in packages, which makes large amounts of stored procedures manageable. So still ahead of Postgres, but Postgres is definitely good enough.


Asking from ignorance - are schemas not enough to replicate this most of the way? What are the extra nice to haves that would bring PG on par with Oracle here?


With packages you can group stored procedures, stored functions, types and variables in logical bundles. Easier to install and understand.


In my first proper job, I worked with an accounting system in 2014/2015 that was a .NET GUI client that directly called SQL Server stored procedures. There was a bundled WMS that did the same thing. IIRC the requests were sent directly to the database and were authenticated with the client user's details.

I was a data analyst and had full access to the database for reporting and data import/export purposes. I had a lot of fun browsing through the stored procedures, which were not locked down or encrypted in any way, and figuring out how it all worked.

I even fixed a bug with a custom module that was causing huge stock valuation errors (I can't believe I even did this now) and also created my own automated order import procedure by monitoring the procedures used by the client's order import screen. Possibly invalidating warranties and support contracts etc. but no problems came of it. They even tried to rehire me a few years later.


There's nothing wrong with it. Stored procedures, Java, Delphi, Ruby, Python, or whatever can be considered as a business logic layer separated from the data storage. Similarly, you consider your Python controller business layer separate from the web UI frontend.

And if you complain that stored procedure language is not so versatile for the business logic, remember that people have been using far worse languages for that, like COBOL, MUMPS, ColdFusion, ...


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: