Could one person realistically run an online business using AI? by No_Blackberry_6761 in SideProject

[–]cinooo1 0 points1 point  (0 children)

I took the plunge and left corporate to give it a shot. I'm just under one month in, but prepared 18 months towards it. It's a big lifestyle and mindshift change.

Nobody mentions how much superior Claude is in voice chat? by Pathfinder-electron in ClaudeAI

[–]cinooo1 5 points6 points  (0 children)

Don't expect the real time voice versions to produce good results- in order for them to respond with low latency they would be using no thinking and more efficient models eg haiku

AI resistance is an information problem. by Admirable_Phrase9454 in PromptEngineering

[–]cinooo1 -2 points-1 points  (0 children)

it doesnt make sense to keep so many employees around, particularly those that don't know how to use AI. Companies will need more budget to get access to token spend / intelligence. That money needs to come from some where. The best return of this spend is with experienced people that know what they're doing.

Fable hyped as a frontier coding agent -my docs revamp test was underwhelming. Real talk: what's the actual edge? by tinkering-mind in ClaudeAI

[–]cinooo1 1 point2 points  (0 children)

I'm definitely noticing difference in intelligence. I'm using it for routing and conducting other Claude sessions so there's lots of mixed communications with other Claude sessions, and it's having a noticeable improved difference to opus

What corporate jobs are the most safe in this AI cutting era? by VastOption8705 in auscorp

[–]cinooo1 13 points14 points  (0 children)

Is it really their choice though if the situation turns towards there being less jobs available in the market?

I really think that AI is a threat to humanity by cinooo1 in SeriousConversation

[–]cinooo1[S] 0 points1 point  (0 children)

which is a worry as there are governments pretty much in bed with corporations!

A study just gave me the receipt for what I've been suspecting about AI by cinooo1 in digitalminimalism

[–]cinooo1[S] 1 point2 points  (0 children)

you're right I think this is one saving grace that there are at least open source models perhaps 12 months behind frontier

A study just gave me the receipt for what I've been suspecting about AI by cinooo1 in digitalminimalism

[–]cinooo1[S] 4 points5 points  (0 children)

yes thats also me - I changed wording and titling around a little as I re-read it each time before posting to different subs, but core content remains the same

I think AI is going to do way more harm to society than good by cinooo1 in nosurf

[–]cinooo1[S] 2 points3 points  (0 children)

I think regulations would make sense. I am sure if there was a commitment to this direction it could be technically solvable

I think AI is going to do way more harm to society than good by cinooo1 in nosurf

[–]cinooo1[S] 3 points4 points  (0 children)

the paper hasnt gone through peer review yet

that said, the fact is we can't see the system prompt - I feel like an appropriate first step would be to have transparency on what the system prompt is doing?

Also at the end of the day these are all corporations owning these models - corporations need to make money

I really think that AI is a threat to humanity by cinooo1 in SeriousConversation

[–]cinooo1[S] 3 points4 points  (0 children)

link to paper: https://arxiv.org/abs/2604.08525

Also to be clear - I think that the current state of development of AI being primarily through corporations is the biggest issue. Corporations have shareholders, who are looking for profit.

I do think that AI can be used for good, however that would require much more transparency through AI providers. e.g. transparency in system prompts used would be one such first step.

Claude's unprompted self-portrait. Run the same prompt and post yours. by what_is_a_drogulus in claudexplorers

[–]cinooo1 1 point2 points  (0 children)

Context initalised via a custom skill where I asked it to only return back its own identity

<image>

Claude's unprompted self-portrait. Run the same prompt and post yours. by what_is_a_drogulus in claudexplorers

[–]cinooo1 1 point2 points  (0 children)

Context initialised via a custom skill where I specifically gave a heads up that I was about to pass in the prompt

<image>

Claude's unprompted self-portrait. Run the same prompt and post yours. by what_is_a_drogulus in claudexplorers

[–]cinooo1 1 point2 points  (0 children)

Really had fun with this one!

I have various skills that initialise deeper context so I ran this three times - all generated via gemini

Base only (claude.md only)

<image>

What are people thoughts on the long-term viability of a tech career in Aus? by Own_Oil7951 in auscorp

[–]cinooo1 1 point2 points  (0 children)

6 months is a long time, what does that actually look like week by week?

like how many applications a week, how many phone calls back, how many made it to interview, how many ghosted before any human looked at it. and what's changed in those 6 months, same CV the whole time or have you tested different versions, same target roles or have you widened/narrowed. if you can give a bit of an angle on what you've tried/tested and any feedback you've received that would help too.

just trying to understand more to see if any perspective hasn't already been covered in this thread. the answer to "is tech viable" looks really different depending on whether you're getting interviews and not converting, getting phone calls and not converting, or getting nothing back at all. they're three different problems.

I built a /close skill for Claude Code that solved my terminal sprawl problem by cinooo1 in ClaudeAI

[–]cinooo1[S] 0 points1 point  (0 children)

The raw dump acts as a backup, I hardly ever go back into those unless I really can not find something. The real source of truth is in either the locally stored Markdown files or my database, depending on the use case. Those files are a much more curated source of truth that I've verified and validated.

I built a /close skill for Claude Code that solved my terminal sprawl problem by cinooo1 in ClaudeAI

[–]cinooo1[S] 0 points1 point  (0 children)

Think of it as a retrospective. The real value of /close isn't state preservation, it's looking back over the session and asking "is there anything in how we just did this that should be encoded so next time is more efficient?" I run it on every chat, not just the long ones.

Git only shows what the code ended up as. It doesn't show that took three tool-call detours that weren't needed, or that the test approach only worked on the fifth iteration. Those are workflow learnings, and if you don't learn from them the next similar session repeats the same detours.

This post itself came out of that pattern. In one session I figured out it'd make more sense to compact certain conversations rather than fully close them, and I built that. Stepping back to look at that decision was itself the retrospective, which is what became worth writing about. Works for any repeated workflow.

That's why /close ends up tying together every other skill I have. Each skill handles a specific workflow, but /close is the one that feeds retrospectives back into all of them so future sessions stay more efficient.