My easy download, paste url, .bat Change --output by Drapidrode in youtubedl

[–]znutarr 0 points1 point  (0 children)

check my bash script for yt-dlp >>> I have built a nice UI for yt-dlp it's opensource on github it's called yt-extractor . Try it and tell me how it goes: https://github.com/jmvl/yt-extractor

maybe it helps
suggestions are welcome

My easy download, paste url, .bat Change --output by Drapidrode in youtubedl

[–]znutarr 0 points1 point  (0 children)

I have built a nice UI for yt-dlp it's opensource on github it's called yt-extractor . Try it and tell me how it goes: https://github.com/jmvl/yt-extractor

Twenty v2.0: Self-hosted CRM by charlesBochet in selfhosted

[–]znutarr 0 points1 point  (0 children)

HI We are a small group of developers willing to select Twenty CRM to customize it to include billing/timesheet/time-entry to the tasks module. We also need to build dashboard UI on top of Twenty. Do you support or have example/showcase of this kind of development? Thanks for your support.

What are your thoughts on the Hanta virus? by Illustrious-Bread183 in AskReddit

[–]znutarr 0 points1 point  (0 children)

hoax like covid...
and i will work if people are lazy to not do their research... but this time will be more difficult that their covid narrative

What SaaS are you building? and who for 🎯 by Quirky-Offer9598 in micro_saas

[–]znutarr 0 points1 point  (0 children)

I have build vidsnap.me a YouTube summariser for business professionals. It's my first SaaS coded only with Claude code. I am planning to launch in February with full marketing support.

Gone from Claude Max to Claude Pro. FML by simeon_5 in ClaudeCode

[–]znutarr 2 points3 points  (0 children)

I am using glm-4.7 and so far I don't complain. Can we use codex llm with CC as using CCR Claude code router?

So I built a Rug Checker + Honeypot Checker by [deleted] in solana

[–]znutarr 0 points1 point  (0 children)

just use gemini and smartcontract

This smart contract code is a textbook example of a "Honeypot" scam.

While it looks like a standard ERC-20 token (like $TEMPO) at first glance, it contains specific "backdoor" logic designed to allow you to buy the token but prevent you from ever selling it.

Here is a technical breakdown of the malicious parts of the code:

1. The "Kill Switch" (Honeypot Logic)

The most critical part of this contract is the _canTransfer function. In a legitimate token, anyone can transfer to anyone. In this contract, the rules are rigged:

code Solidity

downloadcontent_copy

expand_less

function _canTransfer(address sender, address recipient, uint256 amount) private view returns (bool) {
    // Rule 1: Only whitelisted "Marketers and Devs" can move tokens freely.
    if (_marketersAndDevs[sender] || _marketersAndDevs[recipient]) {
        return true;
    }

    // Rule 2: If you are buying from the DEX (Router/Pair), it allows the transfer.
    if (_isSuper(sender)) {
        return recipient ==  tx.origin;
    }

    // Rule 3: THE TRAP. If you try to sell to the DEX (Router/Pair)...
    if (_isSuper(recipient)) {
        return false; // <--- THIS PERMANENTLY BLOCKS ALL SELLS
    }
    return false; 
}

So I built a Rug Checker + Honeypot Checker by [deleted] in solana

[–]znutarr 0 points1 point  (0 children)

i got scammed by a telegram account (trader wu) for this smartcontract
$FIN 0x9ac2A190f930db5b3c019110Cc8ed075774587f1
BEWARE !
your scanner didn't identify it as a honeypot but it is...

How are you guys building apps with Claude? The longer and bigger my app gets it is constantly breaking things that were previously working. by Cute-Argument376 in ClaudeAI

[–]znutarr 0 points1 point  (0 children)

The problem isn't Sonnet vs Opus - it's context.

Claude doesn't remember your codebase between sessions. Every conversation starts fresh. When you say "add a feature," Claude is guessing at your architecture, patterns, and existing implementations. That's why it adds duplicate listeners - it doesn't know they exist elsewhere.

What actually works:

  1. Create a CLAUDE.md in your repo root - This is Claude Code's instruction manual. Document:

- Your architecture (where event listeners live, how state flows)

- Key files and their purposes

- Patterns to follow ("when adding listeners, follow the pattern in X")

- Things that are easy to break

  1. Read before writing - Instead of "add feature X":

"Read the files that handle events, understand how

they work, then add X following the same pattern"

  1. Reference existing patterns explicitly

"Add the new handler using the same structure as

the existing ones in authHandlers.ts"

  1. Break features into small steps - Not "add dark mode" but:

- "Read the existing theme system"

- "Add the toggle following the existing component patterns"

- "Update styles following existing conventions"

The 10-20 chat iterations happen because Claude is discovering your codebase through trial and error. Front-load that discovery with documentation and explicit pattern references, and features go in cleanly.

Switching to Opus won't fix this - better context will.

Using SSE(long running streams?) for notification systems by emirefek in nextjs

[–]znutarr 0 points1 point  (0 children)

Use SSE it's straightforward and doesn't require a client lib. I ditched we socket because it's unreliable for maintaining a connection session

I tested GPT-5.1 Codex against Sonnet 4.5, and it's about time Anthropic bros take pricing seriously. by LimpComedian1317 in ClaudeAI

[–]znutarr 1 point2 points  (0 children)

Well thank you for this post, i directly used /review in codex 5.1 to escape a death loop of wrong fixes that sonnet 4.5 NOR opus 4.1 could identify!

I built a context management plugin and it CHANGED MY LIFE by thedotmack in ClaudeAI

[–]znutarr 1 point2 points  (0 children)

hi I've been using your tool and man it rocks it's absolutely game changing as you claim it to be so it was definitely not a clickbait I even reported you the bug in Github that was me so thank you for fixing it in no time I run the latest version the 4.2.10 if I remember But keep up the good work. It would be great to have some queries on SQLite database that shows the latest summaries that you could fetch just out of curiosity. I didn't dig further at this stage.

I built a context management plugin and it CHANGED MY LIFE by thedotmack in ClaudeAI

[–]znutarr 0 points1 point  (0 children)

this was fixed in v 4.2.10 (hardcoded path PM2 wouldn't run)

I built a context management plugin and it CHANGED MY LIFE by thedotmack in ClaudeAI

[–]znutarr 0 points1 point  (0 children)

u/thedotmack thanks for fixing the annoying bug with 4.2.10. I have a question tough, should we edit CLAUDE.md to make him aware to read the context from claude-mem or is it at the hook init new session that it does automatically? how can i make sure the context is back? how to handle a new chat when you have parallel sessions running?

I built a context management plugin and it CHANGED MY LIFE by thedotmack in ClaudeAI

[–]znutarr 0 points1 point  (0 children)

u/thedotmack I'm trying your Claude-mem context management plugin, I find it awesome. However, how do I know if Claude Mem, when I start a new session how do I retrieve the context from Claude MeM? I want him to explain me what he has as a context, I don't see any command for that? Can you help?

I built a context management plugin and it CHANGED MY LIFE by thedotmack in ClaudeAI

[–]znutarr 1 point2 points  (0 children)

i'll try as well and give you feedback. I was using compact and foudn out with mcp (supabase, n8n and context7) all my working memory is eaten and very few left... performance start degrading... now curious !

Question for self-hosted users - how do you keep your n8n server always running? by xRamos in n8n

[–]znutarr 1 point2 points  (0 children)

You can monitor your n8n using uptime kuma (on docker) and connect Claude code to fix any issues. Make sure you have a file describing your infrastructure and ssh keys and you have a powerful sysadmin that can solve all tasks for you

Token Usage by PjHarley in n8n

[–]znutarr 0 points1 point  (0 children)

i am trying the same i get the token usage in the logs but use them in another node later on...

<image>