Sabitlenmiş Tweet
Dk anon 🦇🛡 Moongod
3.9K posts

Dk anon 🦇🛡 Moongod
@DaliThor
🦇🔊🛡 🌕 into: 🏀♟🎸
Tampa, FL Katılım Nisan 2022
942 Takip Edilen236 Takipçiler
Dk anon 🦇🛡 Moongod retweetledi

How to start using Claude Code in 30 min:
(even if you never wrote one line of code)
→ 0-5 min: Install Claude Code. Sign in.
→ 5-10 min: Build your context folder with an about-me.md file. (This is the step 90% of people skip. And it's the most important one.)
→ 10-15 min: Start your first conversation. Use Opus 4.6+. Let it ask you questions before it builds.
→ 15-20 min: Open the live preview. Be specific: "Make the headline bigger. Change the background to off-white."
→ 20-30 min: Give it a real project. A landing page. Something you've been putting off for months.
Pro tip: Always select "Bypass permissions." Claude Code will do the work without bothering you.
To download all of my other Claude infographics:
Step 1. Go to how-to-ai. guide.
Step 2. Subscribe for free. Don't pay anything.
Step 3. Open my welcome email (most skip this).
Step 4. Hit the automatic reply button inside.
Step 5. Download my infographics from my Notion.
Bonus. Enjoy my best copy-paste prompts, too.

Ruben Hassid@rubenhassid
English
Dk anon 🦇🛡 Moongod retweetledi
Dk anon 🦇🛡 Moongod retweetledi

someone built a Claude Code skill that CLONES ANY website from one command
its called ai-website-cloner-template, 4,800 stars in 16 days
you type /clone-website and point it at a url... it screenshots the site, extracts every design token, downloads all assets, then spawns PARALLEL agents to rebuild each section simultaneously
the output is a pixel-perfect Next.js clone, $0, open source

English
Dk anon 🦇🛡 Moongod retweetledi

🚨BREAKING: Microsoft open sourced a 4B parameter model that generates production-ready 3D assets from a single image, and the speed numbers are genuinely hard to believe.
It's called TRELLIS.2 and it uses a new geometry format called O-Voxel that can be converted to a textured mesh in under 100 milliseconds on CUDA, which means real-time 3D asset generation is now actually within reach.
Most image-to-3D tools force you to pick between speed, quality, and topology correctness. TRELLIS.2 refuses that tradeoff by representing geometry natively in a sparse voxel format that supports arbitrary complexity from the start.
→ Outputs GLB files with full PBR texture maps ready for Blender, Unity, and Unreal Engine
→ Pretrained TRELLIS.2-4B checkpoint available directly on Hugging Face with model card and usage details
→ Web demo live now so you can test it without installing anything
4.6K stars. MIT License. 100% Opensource.
Link in comments.
English
Dk anon 🦇🛡 Moongod retweetledi

This is the setup that changed everything for me,
Claude can now browse the internet on its own. Not with your browser. Its own dedicated browser..
It can now login with your credentials, scrape data, monitors communities and generates leads..
all in the background while you sleep
First how you can set it up,
> Open Claude Desktop
> Click the plus (+) icon in the chat bar and select Connectors (or "Manage Connectors")
> Click Add Custom Connector and enter the following details
- Name: Firecrawl
- URL: https://mcp.firecrawl. dev/{FIRECRAWL_API_KEY}/v2/mcp
- API Key: Paste your API key from the Firecrawl dashboard.
> Click Add.
then just enable and Authorize,
> Once added, find "Firecrawl" in your connectors list and toggle it on.
> Claude will ask for approval to use the connector; select Always Allow to let it run tasks without prompting you every time
can start using it normally in chat now..
Prompt it like: "Go to [website], extract [data], and organize it"
It opens its own browser, navigates, scrapes, and brings you clean results.
will share how i use this setup in my next post, so be sure to follow me and turn post notifications on.
English
Dk anon 🦇🛡 Moongod retweetledi
Dk anon 🦇🛡 Moongod retweetledi

Not sure I have ever been as productive in my life as in the last ~10 weeks:
An extremely challenging yet worthwhile goal.
The crazy progress of AI coding and heavy use of it.
A very small team, world-class skills, and now the ability to multiply output thanks to AI.
The result is @etheconomiczone — with a live devnet already: eez.dev.
What is this? It will be:
a) A new rollup that is fully composable with Ethereum.
This means you can do either cheap transactions on this chain that only interact with contracts on this rollup, or more expensive transactions (similar to L1 costs) that can interact in a fully composable way between L1 and L2. So, for example, if you trade on this rollup, the routing can dynamically decide to use only L2 liquidity for a small trade, or for a larger trade — where the extra gas costs are worth it — to use both L2 and L1 liquidity.
b) A whole framework that will allow new rollups, as well as existing L2s and sidechains (yes @gnosischain!!) to integrate into this “(Ethereum) economic zone.”
Imagine: one could make a trade today simultaneously using Ethereum liquidity, but also Arbitrum, Base, or all the other L2s. This is what EEZ will allow.
Now, let’s talk about the tech:
Essentially, there are two core concepts that make all of this possible:
1) Proxy contracts
2) Real-time proving
1) Proxy contracts are basically a way to overcome the challenge that ~99% of all contracts are written in a way that only deals with addresses from a single chain. For example, a token or an NFT can be sent to an address, but not to an address on a specific other chain. Proxy contracts fix this.
An address “A” on chain “n” will get a deterministic proxy representation, “A*”, on all other chains. So now, if, for example, A is a DAO on Ethereum and it should control, say, a fee switch in contract D (a DEX) on another chain, this can easily be done by setting A* as the owner of D. A (the DAO), on the other hand, can now call D* (the proxy representation of the DEX contract D) on Ethereum. All the cross-chain message passing in between is abstracted away — the contracts just call another contract and do not realize it is actually on another chain.
2) Real-time proving
The proxy design already addresses the problem that there is no widely supported cross-chain message-passing standard in EVM land. So it alone would already be helpful for asynchronous calls, or better, calls that do not expect or require a return value. However, this would still not quite bring us to “synchronous composability.”
Imagine a DEX trade: you do the first part of the trade on L1 and the second part on L2. You want to know the result of the second part — and if it did not get you the expected amount, you want to be able to revert the first part. This requires the call that triggers the DEX trade on L2 to have a return value.
This was long assumed to be impossible - but with real-time proving, it no longer is. Basically, because Ethereum blocks are only produced every 12 seconds (and this would still work with, say, 6 seconds), that is now long enough to build and prove the L2 block that contains, for example, this L1→L2 DEX trade.
If you want to learn more, don’t miss the talk by @tw_tter and @jbaylina on Tuesday at @EthCC!
Let’s make Ethereum ONE again!
English
Dk anon 🦇🛡 Moongod retweetledi

If this helped, follow me @ihtesham2005 for more AI breakdowns that actually make sense.
Ihtesham Ali@ihtesham2005
🚨BREAKING: Claude has a secret mode called "Sun Tzu Competitive Analyzer." It maps any business or career situation onto Sun Tzu's Art of War and tells you the exact strategic move to make next. Here's how to activate it:
English
Dk anon 🦇🛡 Moongod retweetledi
Dk anon 🦇🛡 Moongod retweetledi

Tumors literally liquefied by sound waves — no scalpel, no chemo, no radiation.
This is histotripsy: focused ultrasound waves that rapidly expand and collapse gases inside cancer cells, destroying them mechanically in minutes while leaving healthy tissue untouched.
In the demo at one of the leading hospitals doing this procedure, doctors showed before-and-after liver tumor images — a large lesion basically gone four months later, with the liver healing naturally.
It’s FDA-approved for liver tumors in the US (since 2023, now available in 18 states) and has early/limited access in the UK, UAE, and Hong Kong, with trials underway for kidney, pancreatic, prostate, and more organs.
The procedure takes 1–3 hours; most patients go home the same day. Side effects are usually mild flu-like symptoms the next day as the body clears the debris.
This isn’t sci-fi — it’s happening now and expanding globally as more units are built.
What do you think — could non-invasive sound-wave tumor destruction become a game-changer, or is it still too early to get excited?
Your thoughts 👇
English
Dk anon 🦇🛡 Moongod retweetledi

So now that we are all creators now, life is getting so freaking excited. What can we build! Everything and @AkuDreams comes as a foundation to that dream. A bellweather builder ahead of his time. I'm thinking of building an AKU pop up card for Birthdays. It would be dope!
English

Just ordered two more Aku: Journey to Ibra for upcoming birthday party presents. Pairing that with some cool space projects and pop up space card. As a Moongod and ambassador of the brand, I'm so excited to share Aku with Everyone. @AkuDreams #Moongod

English

this speaks for itself...

Fundstrat Direct@FundstratDirect
"Short gold, long crypto. For the next year, I think that's a money trade." — Tom Lee Gold just had one of its worst weeks in 50 years. @fundstrat's Tom Lee and @MarkNewtonCMT down what that means, the exact setup to watch, and Fundstrat's just-updated Top 5 large-cap and SMID stock ideas for the month. Link pinned in the comments.
English
Dk anon 🦇🛡 Moongod retweetledi

Here's how to create your classic corporate headshot:
1. Go to Google Gemini
2. Select 'Pro'
3. Select 'Create image' tool
4. Add your image
5. Add this prompt: cinematic, ultra-realistic corporate headshot of the same person from the reference image. Preserve exact facial features, skin tone, and identity. Style: classic professional corporate portrait. The subject is wearing a tailored dark suit, crisp white shirt, and subtle tie. Lighting is soft, directional studio lighting with gentle shadows for depth. Background is minimal, blurred, and neutral-toned (dark grey or beige gradient). Shot on a high-end full-frame camera with 85mm lens, shallow depth of field, sharp focus on the eyes, natural skin texture, and high dynamic range. Expression is confident, calm, and approachable. Ultra-detailed, 8K quality, realistic color grading
6. Submit
7. AI generates in seconds




English
Dk anon 🦇🛡 Moongod retweetledi

This feels like cheating.
A developer just open-sourced HolyClaude a single Docker container that gives you Claude Code, a browser-based web UI, 5 AI CLIs, a fully configured headless browser with Playwright, and 50+ dev tools all running with one command.
Claude Code, Gemini CLI, OpenAI Codex, Cursor, and TaskMaster AI in the same container, switching between them is one tab press away no other Docker image does this.
The setup that used to take 1-2 hours of installing, debugging Chromium crashes, fixing permission issues, and configuring process supervision is now just docker compose up -d and you open your browser.
Your existing Claude Max or Pro subscription works out of the box, no extra cost, credentials never leave your machine.
100% Open Source. MIT License.

English
Dk anon 🦇🛡 Moongod retweetledi

Best GitHub repos for Claude code that will 10x your next project in 2026:
1. Claude Mem
github.com/thedotmack/cla…
2. UI UX Pro Max
github.com/nextlevelbuild…
3. n8n-MCP
github.com/czlonkowski/n8…
4. Obsidian Skills
github.com/kepano/obsidia…
5. LightRAG
github.com/hkuds/lightrag
6. Everything Claude Code
github.com/affaan-m/every…
7. Superpowers
github.com/obra/superpowe…
8. Awesome Claude Code
github.com/hesreallyhim/a…
9. GSD (Get Shit Done)
github.com/gsd-build/get-…


English
Dk anon 🦇🛡 Moongod retweetledi
Dk anon 🦇🛡 Moongod retweetledi

Claude Code has 93 commands.
You only need these 16 to get 80% of the value 👇
/init
→ generates CLAUDE.md (your repo memory)
/plan
→ think first, code later
/context
→ shows what’s eating your tokens
/compact
→ free up context mid-session
/clear
→ reset between tasks
/model
→ switch Opus / Sonnet / Haiku
/btw
→ ask side questions without breaking flow
/rewind
→ undo when things go off track
/agents
→ run multiple sub-agents in parallel
/chrome
→ control browser (click, fill, navigate)
/loop
→ run prompts on repeat (monitoring)
/simplify
→ 3 agents review your code together
/permissions
→ pre-allow safe actions
--dangerously-skip-permissions
→ full auto mode (no interruptions)
Shift + Tab
→ switch modes instantly
"ultra think"
→ max reasoning depth
Most people use Claude Code like a chatbot.
That’s why they struggle.
Power users run it like a system.
Save this. You’ll need it. ♻️
#AI #Claude #AIAgents #LLM #GenAI #DevTools

English




