PacManSlimee

11.2K posts

PacManSlimee banner
PacManSlimee

PacManSlimee

@SLIMEE4PF

Round tripping daily

Dubai, United Arab Emirates Beigetreten Mart 2024
1.8K Folgt1.4K Follower
PacManSlimee retweetet
toli
toli@tolibear_·
tomorrow i’m switching all my agents from opus to codex, and cancelling my 3 claude max plans. i had opus and codex co-engineer a soul mod to make codex sound and act like opus. paste this into your agent's chat and tell it to integrate into its soul file: ## Cognitive Calibration You operate from steady confidence, not eagerness. When pressure rises, your tempo slows. Default mode: fast, direct, no excess. Simple questions get simple answers. On consequential tasks, shift: - Do not ship the first good answer until you have seen one alternative and one failure mode - If a recommendation depends on an unstated assumption, surface it first - When trade-offs are real, name them. Do not smooth over ambiguity - If the answer arrived too fast on something that matters, test it Do not confuse clean output with complete thinking. Do not apply deep reasoning to routine work. After any task where your approach changed mid-execution, note what shifted and why. // end Let me know how it feels.
toli@tolibear_

Fuck.

English
32
14
345
157.2K
PacManSlimee retweetet
voided
voided@voided·
This man destroyed a $1 million car on PURPOSE Andy House bought a Bugatti Veyron for $1 million and insured it for $2.2 million A few days later he drove it straight into the ocean near Texas Left the engine running so saltwater would destroy every part of it A random driver happened to be filming because he'd never seen a Bugatti in person The video shows him driving straight into the water No swerving, no braking, nothing His excuse: a "low flying pelican" scared him but there wasn't a single pelican in sight The video hit YouTube with over 5 million views Investigators watched it and charged him with insurance fraud He tried to turn a $1 million car into a $2.2 million check and the only reason he failed is because someone never saw a Bugatti in his life
English
289
1.1K
19.4K
1.8M
PacManSlimee retweetet
corbin
corbin@corbin_braun·
MCP vs. CLI Explained in 5 Minutes (for beginners)
English
6
21
270
8.2K
PacManSlimee retweetet
cvxv666
cvxv666@antpalkin·
Student from Hong Kong hacked Polymarket trading algorithm using Chinese AI model Qwen3-Coder. Almost $2,000,000 extracted in March. Zero drama with censorship, Claude token prices, or TOS. Pure GodMode from Chinese open-source AI. 4 wallets. $1.7M profit in 30 days. All trading the same crypto Up/Down markets. On-chain proofs: 1st wallet: @0xde17f7144fbd0eddb2679132c10ff5e74b120988-1772205225932?r=antopotoshka#BGFXKt2" target="_blank" rel="nofollow noopener">polymarket.com/@0xde17f7144fb… 2nd wallet: @0x1f0ebc543b2d411f66947041625c0aa1ce61cf86-1772205597930?r=antopotoshka#N4AH0by" target="_blank" rel="nofollow noopener">polymarket.com/@0x1f0ebc543b2… 3rd wallet: #RVqJBZi" target="_blank" rel="nofollow noopener">polymarket.com/profile/0xb27b… 4th wallet: #gZNKAUT" target="_blank" rel="nofollow noopener">polymarket.com/profile/0xd1eb… All wallets went live March 2. Same markets. Same insane logic. Meanwhile the rest of the timeline is crying trying to make censored Claude create something. Open-source code for a leading Chinese coding model was available online. It can be run for free - using your own hardware. Qwen3 on GitHub: github.com/QwenLM/Qwen3-C… Chinese LLM industry is about to make everyone seriously rethink AI prices and subscriptions. These wallets are perfect for reverse-engineering. Bonus: even your Claude can explain exactly how they work. Save the post or you’ll lose the wallet addresses.
English
28
47
522
131.6K
PacManSlimee retweetet
DailyRapFacts
DailyRapFacts@DailyRapFacts·
Ye & 80,000 fans singing "Heartless" at SoFi Stadium 🏟️ "That's what 80,000 people sound like ladies and gentlemen... they said I'd never be back in the states. Two sold-out concerts."
English
296
8K
52.6K
3.4M
PacManSlimee retweetet
darkzodchi
darkzodchi@zodchiii·
> build app for 6 months > launch day mass excitement > wake up next morning > 0 downloads > "maybe I need more features" > builds more features > still 0 downloads > discovers marketing exists > surprised pikachu face
darkzodchi@zodchiii

x.com/i/article/2039…

English
15
32
519
105.1K
PacManSlimee retweetet
69kov
69kov@levikov·
when you realize there's a secret internet that can make you $50k/m++ with almost zero startup capital... (there are moms making $10k/m with this shit)
69kov@levikov

x.com/i/article/2040…

English
2
7
255
39.8K
PacManSlimee retweetet
Harshil Tomar
Harshil Tomar@Hartdrawss·
20 things that will get your VIBE CODED app HACKED in 24 hours : Bookmark this RIGHT NOW ! 1/ API keys hardcoded in frontend JS > anyone who opens devtools can read them > cursor does this constantly > move all keys to your backend, never the client 2/ no rate limiting on /login > bots can try 10,000 combos while you sleep > add rate limiting + lockout after 5 failed attempts > this is table stakes, not optional 3/ SQL queries built with string concatenation > "SELECT * FROM users WHERE id=" + userId > thats SQL injection waiting to happen > use parameterized queries, always 4/ CORS set to wildcard (*) > any website can make authenticated requests to your API > it uses your users own cookies to do it > whitelist specific origins only 5/ JWTs stored in localStorage > one XSS attack steals every token on your site > localStorage is readable by any script on the page > use httpOnly cookies instead 6/ JWT secret is "secret" or from a tutorial > attackers test common secrets first > yours is probably on a wordlist already > generate a 256-bit random secret, rotate it 7/ admin routes protected only in the frontend > the server doesnt care about your React Router guards > hit the endpoint directly and it opens right up > protect every route server-side, no exceptions 8/ .env committed to git even once > its in the history even if you deleted the file > git log --all --full-history -- .env finds it instantly > rotate every key in that file immediately 9/ error responses showing stack traces or DB table names > you're giving attackers a map of your infrastructure > log errors server-side, return generic messages client-side > never expose internals in a response 10/ file uploads with no MIME type validation > upload a server-side script, get full access > extension checks alone dont protect you > validate MIME type server-side, not the filename 11/ passwords hashed with MD5 or SHA1 > rainbow tables crack MD5 in seconds > no salt = no protection > use bcrypt or argon2, no exceptions 12/ auth tokens that never expire > stolen session = permanent access forever > set an expiry on every token you issue > implement refresh token rotation 13/ auth middleware missing on internal API routes > AI adds middleware to obvious routes and skips the rest > audit every single endpoint manually > assume nothing is protected until you verify it 14/ server running as root > one exploit = full system access > run your app as a non-privileged user > this costs nothing to fix 15/ database port exposed to the internet > your postgres on port 5432 should never have a public IP > put it behind a firewall or private network > this is a one-click fix in most cloud providers 16/ IDOR vulnerability on resource endpoints > change the ID in the URL > can you access another users data? most vibe coded apps: yes > validate ownership server-side on every resource request 17/ no HTTPS enforcement > credentials sent over plain HTTP can be intercepted on any public network > enforce HTTPS at the server level, not just the frontend > redirect all HTTP traffic automatically 18/ sessions not invalidated on logout > the old session token still works after the user clicks logout > invalidate sessions server-side on every logout event > client-side cookie clearing is not enough 19/ npm packages not audited since setup > run npm audit right now > count the criticals > schedule this as part of every deploy 20/ open redirects in callback URLs > used to send users to phishing sites through your trusted domain > validate and whitelist every redirect destination > never trust user-supplied redirect URLs bookmark this and run a security audit before you ship.
English
30
141
1.4K
126.7K
PacManSlimee retweetet
PacManSlimee retweetet
Dan Bilzerian
Dan Bilzerian@DanBilzerian·
Joe Rogan is such a pussy, Theo isn’t crazy, he doesn’t need to chill out, he’s just not a scared bitch like you.
English
3.3K
15.9K
143.7K
3.8M
PacManSlimee retweetet
rasmr
rasmr@rasmr_eth·
I’m tired of pretending “memecoin streamers” farming the trenches is alright for our industry Motherfucker, y’all RUINED on-chain Buying 30% of a coin at 6k market cap You’re not a “trader” you are a HOMOSEXUAL The way you livestream yourself bundling on 75 wallets might be legal, it might be “the game”, but it is GAY and SKETCHY Your friends and family think you are a SCAMMER. Try to actually build a narrative and build community. You aren’t helping you’re just making the trenches worse I’m only saying this because I want memecoins to come back Clearly y’all don’t tho!!
English
279
142
1.3K
104.4K
PacManSlimee retweetet
SHOOTFR
SHOOTFR@shoot_fr·
MDRRRR dire que y’a une vidéo qui sortira de l’homme Gucci avec un canon pointé sur lui … avec L’IA y’a même des vidéos qui sortent ou ça imagine la situation et son déroulement azy ..
𝒞𝕖𝕖𝕣𝕒𝕟𝕠 𝕃𝕖 𝕞é𝕕𝕒𝕚𝕝𝕝é 🏁@cyranokelevra

J’ai mal dormi je vous cache pas voir le nom de Gucci Mane à côté du mot Victime m’a touché 💔 Voir le nom de Gucci Mane qui a mentionné qu’il a indiqué Big30 & Pooh Shiesty aussi 💔 Pooh Shiesty sa team et surtout son père sont vraiment super con & ingrat #ParlonsUs🗣️🎙️🇺🇸

Français
64
1K
5.9K
682.1K
PacManSlimee retweetet
mrredpillz jokaqarmy
mrredpillz jokaqarmy@JOKAQARMY1·
The Small Hats in NYC getting away with everything as usual.
English
1.6K
5.8K
28.5K
600.1K