random_22222 Profile Banner
dutt.eth Profile
dutt.eth

@random_22222

Followers
19
Following
62
Media
78
Statuses
325

Independent analyst on decentralized tech & intelligent systems. Blockchain is evolving. AI is accelerating. I report both. โ€” dutt.eth

Joined October 2024
Don't wanna be here? Send us removal request.
@random_22222
dutt.eth
7 days
break down the evolution of Wi-Fi protectionโ€”from outdated to ultra-secure ๐Ÿ”๐Ÿ‘‡.#Cybersecurity #WiFi #WPA3 #TechExplained #Networking #infosec
Tweet media one
0
0
1
@random_22222
dutt.eth
12 days
๐Ÿง  Prompting isnโ€™t just for LLMs โ€” itโ€™s now core to smart contract development. ๐Ÿ› ๏ธ Foundryโ€™s prompting feature lets you safely simulate on-chain interactions before running them. ๐Ÿ”— ๐Ÿ”ฅ A must-know in the AI + Web3 age. #Solidity #AI #Foundry.
getfoundry.sh
A comprehensive prompt for developers using AI assistants to build smart contracts with Foundry
0
0
0
@random_22222
dutt.eth
12 days
๐Ÿ” foundryup verifies binary integrity via GitHub attestations to ensure you're using official Foundry builds. โš ๏ธ Use --force to skip (not recommended). ๐Ÿ“ฆ Older versions? Verify manually:.gh attestation verify --owner foundry-rs $(which forge). #web3 #foundry.
0
0
1
@random_22222
dutt.eth
14 days
๐Ÿšซ Avoid creating venv inside Anaconda's (base). Why?.๐Ÿงฉ Causes confusion: pip list mixes venv & base packages. โš ๏ธ Unexpected path issues. ๐Ÿงผ Redundant: Conda already offers env management . ๐Ÿ’ก Stick to:.venv for system py users.conda for Anconda users. #PythonTips #Conda #venv.
0
0
0
@random_22222
dutt.eth
14 days
Ever wondered when to use base vs venv in Python?. Hereโ€™s a simple rule I follow for organizing my projects ๐Ÿ‘‡. Keep your base clean. Let your venvs handle the mess. ๐Ÿงช. #Python #DevTips #venv
Tweet media one
0
0
0
@random_22222
dutt.eth
14 days
๐Ÿง  One of the best VS Code extensions for devs who think visually:. ๐Ÿ“ฆ Markmap โ€“ Instantly turns your into a mind map!.Just write markdown, hit preview, and boom ๐Ÿ’ฅ.๐Ÿช„ #VSCode + #MindMap = clean docs, clear thoughts. ๐Ÿ”— Extension:
Tweet card summary image
marketplace.visualstudio.com
Extension for Visual Studio Code - Visualize your markdown in VSCode
0
0
0
@random_22222
dutt.eth
14 days
Attacker sends:. GET /admin.x-middleware-subrequest:middleware:middleware:. ๐Ÿ“Œ Causes recursion to hit MAX_RECURSION_DEPTH.โžก๏ธ Middleware gets skipped.โžก๏ธ Bypass login, access protected routes.๐Ÿ”ง Patch it. Donโ€™t trust internal headers. PoC: DatadogSecurity
Tweet media one
0
0
0
@random_22222
dutt.eth
14 days
๐Ÿšจ Critical Next.js vuln (CVE-2025-29927). Impacts v15.x โ€” lets attackers bypass route protection by abusing x-middleware-subrequest. Even if you use middleware for auth, it can be silently skipped. Your protected routes aren't safe. ๐Ÿงต Full details ๐Ÿ‘‡.#Nextjs #CVE #WebSec.
1
0
0
@random_22222
dutt.eth
14 days
best example of ACID property understanding
Tweet media one
0
0
0
@random_22222
dutt.eth
15 days
๐Ÿ Installing FAISS(Facebook AI Similarity Search) in a py venv?. 1๏ธโƒฃ deactive yr venv.2๏ธโƒฃ Install via Conda. conda install -c conda-forge faiss-cpu/gpu.3๏ธโƒฃ Reactive yr venv. ๐Ÿ” Why?.FAISS is Conda-native โ€” pip may breaks or lacks GPU support. #FAISS #AI #DevTips #Conda #venv.
0
0
0
@random_22222
dutt.eth
15 days
If you're using:. Emscripten SDK for compiling C/C++ to WebAssembly. Or large C++ projects with CMake. Then Ninja can speed up builds and make your dev workflow smoother.
0
0
0
@random_22222
dutt.eth
15 days
๐Ÿ› ๏ธ What is Ninja Generator in Dev?. Ninja is a small build system that focuses on speed. Itโ€™s used with CMake to compile projects faster than traditional tools like Make. as Formula 1 of compiling: โšก.Fast, efficient, no fluff. #DevTools #CMake #NinjaBuild #Compilers #DevSpeed.
1
0
0
@random_22222
dutt.eth
16 days
Hey @grok based on your analysis, list 10 accounts in order that frequently visit my profile. don't mention the people, just @.username along with how many times a week they visit the profile.
1
0
0
@random_22222
dutt.eth
16 days
๐ŸงตJourney of C/C++ Code to Browser ๐Ÿš€๐Ÿ”ง
Tweet media one
0
0
0
@random_22222
dutt.eth
16 days
๐Ÿ’ฅ py conflict ?. If you have Anaconda + + App Execution Aliases ON: "Python not foundโ€ฆ". Why?.Windows prioritizes App Execution Aliases, even if py correct. ๐Ÿ›  Fix:.Go to Settings > Apps > App Execution Aliases. ๐Ÿ‘‰ Turn OFF python.exe & python3.exe.
0
0
0
@random_22222
dutt.eth
16 days
App Execution Alias. โš™๏ธ When you install an app via CMD (e.g. winget install python) or download it from the Microsoft Store, it gets added as an Execution Alias. ๐Ÿ” Manage aliases:.Settings โ†’ Apps โ†’ Advanced App Settings โ†’ App Execution Aliases. #DevTips #AppExecutionAlias.
0
0
0
@random_22222
dutt.eth
17 days
๐Ÿ•ต๏ธโ€โ™‚๏ธ๐Ÿ’ป Ever heard of Cross-Site attacks but confused by all the types?.Letโ€™s break it down like a hacker would โ€” from XSS to CSRF ๐Ÿ‘‡.#CyberSecurity #WebDev #InfoSec #XSS
Tweet media one
0
0
0
@random_22222
dutt.eth
17 days
in simple language:.quick guide ๐Ÿ‘‡
Tweet media one
0
0
0
@random_22222
dutt.eth
17 days
๐Ÿง ๐Ÿ’พ How many types of databases are there?.Most devs only know SQL vs NoSQL. But here's a full breakdown you NEED to know as a modern dev ๐Ÿ‘‡.#Database #BackendDev #WebDev #AIart
Tweet media one
1
0
1
@random_22222
dutt.eth
19 days
๐Ÿ‘‘ Bow to the Emperor of Middleware!.These silent guardians rule your backendโ€”from the shadows. They guard routes, shape requests, verify tokens, and log every move. Read, learn, and obey the flow ๐Ÿ‘‡๐Ÿ”ฅ.#BackendDev #NodeJS #ExpressJS #DevThread
Tweet media one
0
0
0