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

I use it with Spotify to track my listens and sort by artist, album and the like. It definitely still has value, even for Spotify users!

Yep, member since May 21 2005 here, still scrobbling with Spotify. Don't think I've ever used any of the radio features on the site, really; even back in the 00s all I used were the WinAmp/Foobar plug-ins.

It seems the original author of the popular SDD toolkit for agent frameworks has gone no-contact. One of the maintainers has forked it. This is concerning as the original author maintains control of the associated NPM package.

> I worked as a developer at a company. I asked the business owner a question about a business task. He sent me a ChatGPT screenshot with the answer.

Something similar to this happened in a "public" chat space at my company, and, despite the fact that we are leaning into LLMs and agentic workflows quite a bit, the responses were generally "I aint reading all that" and "hey, dude, thats kinda unprofessional."

We should be shaming people who attempt to outsource all of their thinking to chatbots or agents. I think it would be effective.


You can send them this: https://noslopgrenade.com

> Worse: it's a conversation killer. There's nothing to respond to. Your wall of text suppresses dialogue. They can't reply, can't push back, can't clarify. It's a weapon disguised as helpfulness.

This has that slopccato feeling.


The what?

Portmanteau of slop and staccato I think?

>Or as Jean Baudrillard has said:

It is nothing short of profoundly ironic to quote Jean Baudrillard in this context.


That is a version anglicisée meme. I prefer the original:

« Le contexte réel s’effondre au moment même où l’on me cite. »


Ironically it feels like that site was itself written by AI.

I had a colleague that was typing such long answers (before AI era) to a simple question. It felt wrong, but sometimes I didn't even read what I heard him typing for half an hour. I was a new employee and he was responding to my questions, that's why I asked him sometimes. He was let go after 1 month. One of the problems was also productivity issue :)

I agree with the messaging generally, but unfortunately to fight implicitly unprofessional behavior with a terse response like this would look explicitly unprofessional!


At my company this behaviour is celebrated

If it wasn't essential, I'd tell them to talk to me like a human or else I'd just quit the conversation entirely. Boundaries and stuff.

I have done this a few times. If you can't be bothered to give me your attention when asking something from me, you won't get mine.

Thanks for your response-- it's really load-bearing.

if you shame ppl for ai use you might get branded as ai non beliver and shown the door next layoff round ( which is just around the corner)

I understand that example, on the other hand, RTFM is as old as history and it can often be replaced by googling or asking LLMs.

Not saying that's the very specific case, but I regularly encounter in my daily life at work people delegating the kind of information seeking that can be done independently.


No, this was in response to some questions about different approaches enterprises take to automated code quality review and complying with some arbitrary security standard out there. And this was a principal secops guy who thought the appropriate thing to do was to ask Copilot.

Being known as an RTFM type of person, I usually appreciate when a super nonspecific question is met with a link to the docs.


>And this was a principal secops guy who thought the appropriate thing to do was to ask Copilot.

Firing them on the spot and telling them: "Thanks for opening our eyes to the fact that asking you is just asking Copilot with a middleman" will send the right message to the rest...


Did you miss my "Not saying that's the very specific case"?

No, which is why I started my message with "No, ..."!

Branches and worktrees exist and can effectively act as a "separate" history. At the end of the day you would still merge the changes in, possibly with a squash if you don't care about the little commits.


Just use git. If your agent (especially claude) doesnt seem to know how, there are skills and hooks and other options to make it work. My 2c.


Just read before posting. My 2c.


I have found that git.exe outperforms any other codebase representation with GPT5.x once you figure out how to not mangle the arguments. Commands like grep and log can replace a lot of other tools if you can use them reliably.


Exactly like I didn’t do anything super important - but I just tell agent “commit after successful build.

I think it would work with “commit before you want to delete stuff” the same way.


Git is a particularly egregious one, imo. It has a simple cli and solves all of the problems presented here! Worktrees for "exploratory" work that you might throwaway, and otherwise atomic commits just make tracking changes and reasoning for changes easy.


I dont want "agent-native CLIs" to proliferate because I'd rather we design CLIs for human use and programmatic (automation) use first. Agents are good at vomiting json between tool calls, I am not, and never will be.

Too many tools stray so wildly from UNIX principles. If we design for agents first we will likely see more and more of this.


It’s also likely that agents would also be better if they didn’t deal with json vomit either. I’m optimistic that agent frameworks will eventually come full circle and realize concise teletype linear CLIs aka old school UNIX is actually very effective and efficient for agents as well as humans!


The point IMO in "agent-native CLIs" is to make them match the statistical average.

Let the Agent use the CLI and if it guesses the wrong option, you make that the RIGHT option.

Every time it doesn't guess something right, you change it.


I would naively suppose that the agent is able to read the man page or run the help command of the tool. They usually contain plenty of information. But bending the tool to suit the agent has some value. The GNU-AI suite of userland tools? Unfortunately it's possible that every model will settle on a different average. If that's the case we can't bend to every model. Models will have to bend to whatever we want to use.


Of course it can read the man page and run cmd --help.

Now you've wasted context on, what? Learning how to use the tool. And it will waste context on it every single time. (You can write skills to mitigate this a bit, but still).

The alternative is to make the tool work as the user (an LLM in this case) expects it to work, without having to resort to the manual.


If the parameter names mostly standardize across tools because the models learn to predict those names, then humans will also learn to predict those flag names so this actually has the potential to make tools more human friendly and easier to learn.


> Let the Agent use the CLI and if it guesses the wrong option, you make that the RIGHT option

This sounds backwards and presumes that the statistics machines which are LLMs are getting it right when they "average" out to the wrong command. No, fix the agents behavior, dont change the CLI to accommodate it.


I don’t remember exactly the specific examples off the top of my head (some are definitely ffmpeg commands) but I do know that when LLMs keep hallucinating command line flags that don’t exist for that specific command their “suggestion” is actually very reasonable and so many developers are adding support to their tools for common hallucinations.


Not to belabor my point, but I think "adding support to tools for common hallucinations" is a bad idea. Sounds like something a vibecoded project being spammed with issues by agents might do. Not so much a serious, mature project, though.


Well we will have to agree to disagree because my understanding of what has been generally the case is that the LLMs might vibe-coding spam, that’s true, but the interesting difference is generally speaking their “suggestions” are very reasonable and represent in hindsight useful changes that make the commands more useful for everyone, humans included.


If an option exists but it's got a poorly named flag, adding a flag alias is probably a good idea for usability in general. Most CLI tools probably don't report telemetry about failed executions, though, cuz that would be very creepy.


the real solution is to simply provide hints in responses so that the model may self-correct, e.g., recommended next actions, describe commands to get schema definitions, etc.


2 questions. First, how does a vibe coded / generated fork or derivation pose security risks to the original work? Second, what is a "more appropriate channel" to express his opinions than the platform he has as a maintainer of a massively popular project?

I would argue that we don't see enough open source developers presenting their political or social views in the context of their works.


The security risk is I Google for "notepad++ Mac", because I have a Mac, and get malware served up to me.

The appropriate channel for other people to voice their politics is anywhere else, so that ASalazarMX doesn't have interact with it and gets to pretend everything's okay.


Since you answered the first question, I'll answer the second according to my original intent.

The appropriate channel for voicing politics and ideology would be my personal accounts, not a software utility. Would you enjoy if your generous neighbor offered to mow your lawn for free, but left political messages on it?

I've rarely contributed to, or released something open source, but I know it's unprofessional to mix personal and work subjects, and open source is work, even if you do it for free.

And to counter the visibility argument, I followed Don Ho on Twitter, now on BlueSky, and actually enjoy his publications even when they aren't strictly work related.


I would guess the only way to make this data available long term is by regulation. Then again, I would hope Flock is subject to FOIA already if they are collaborating with state or local law enforcement...


Washington State just exempted Flock data from its public records law. https://app.leg.wa.gov/billsummary?billnumber=6002&year=2025...


that's craaazy


YC CEO funded Flock and is involved in politics to remove police regulations

To quote him responding to criticism against Flock: "You're thinking Chinese surveillance. US-based surveillance helps victims and prevents more victims."


Cameras are free speech and are a shield against property crimes and assault.

Our building complex has rampant break-ins. We've needed more cameras for years and we're only now starting to add them.

Worse, someone recently someone set fire to the roof which caused a 12-hour long debacle. Not sure what the "#-of-alarms fire" ranking it was, but several people lost their homes to months of remediation and they tore apart the roof.

Cameras would have implicated the contractor responsible (we know it was a contractor, but there were no cameras or access logs).

One theory as to why the number of violent crimes is going down in this country isn't that we just de-leaded the water and taught better conflict de-escalation, but that there are cameras and smartphones everywhere.

All of that said - camera networks in the hands of an all-powerful state are bad.

The state does not need access to these systems outside of a rigorously documented system with proper judicial oversight. We need regulations and even civil liberties that limit the scope of state access and state dragnets to these camera networks.

But individuals, companies, and communities should be at liberty to hire surveillance tech to protect their persons and their property.


> Cameras are free speech... individuals, companies, and communities should be at liberty to hire surveillance tech to protect their persons and their property.

At scale, corporate surveillance can effectively intermingle with, and/or become indistinguishable from, state surveillance. We see that happening today: why wiretap when Palantir exists?

Cameras may be speech, but surveillance has a chilling effect against it.


I think this is a false dichotomy. You can feel and be more protected against crime while also being exploited for your data by a shadowy camera company. We should let the state step in to regulate Flock et al, assuming we can do something about the corruption they're already involved in.


Pray tell, what speech do cameras make?


The same one that I make when I stand somewhere and describe what I see. So I hold a camera to do it more accurately. And then I get tired so I mount the camera on a trip setup instead.


I'm still not hearing any speech from the camera doing the recording. Can you tell me specifically, how recording with a camera is speech?


ACLU of IL v. Alvarez (2012): "The act of making an audio or audiovisual recording is necessarily included within the First Amendment’s guarantee of speech and press rights as a corollary of the right to disseminate the resulting recording."


My recording of police interactions is free speech, for example.

My recording my property is free speech.

My taking a camera into public spaces and recording is free speech.


What is your definition of speech? It seems like you are defining it literally.


this is reminding me of the dearly departed website and news outlet Photography Is Not a Crime. Carlos Miller a name worth remembering.


> I would hope Flock is subject to FOIA

Isn't FOIA only applicable to federal government agencies?


Most states have a version of it.


This is true. I often forget because my state has an equivalent law.


FOIA does not apply outside government entities. Maybe you can get the data from the entity itself, but good luck.


Which is one of many reasons why privatizing government services probably isn't a good idea.

You could also make different laws but that's probably not going to happen. Think about just about any of the important laws that we rely on for a stable and just society in the USA, and consider that most or all of them would be politically unviable if they didn't already exist. Including FOIA itself. Not a good situation.


As far as I can tell you can theme nearly everything in the app. I've got custom colors for diffs and some syntax, and my base theme is ripped from Monokai.


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

Search: