
Amit #असतोमासद्गमय
@techieMeIndian
Followers
405
Following
9K
Media
784
Statuses
8K
#Software Technical #Architect | #Freelancer | Yoga Practitioner🧘🏽♂️| Conscious Living🧚 | Sharing Stock Market Learnings (Study Only, Not Investment Advice)
भारत
Joined November 2013
Why does @DisneyPlusHS think that Epics like Mahabharata is a myth that it categories it under Mythology?This as utter insult on #Bharat - the oldest & #sanatan culture. Like every culture, I deserve respect and proper recognition. @vivekagnihotri @PMOIndia @republic @TarekFatah
4
9
28
🐹 In Go, switch is safer than C/Java/JS/PHP:.👉 Only the matching case runs ✅.👉 No accidental fallthrough 🚫.👉 𝐟𝐚𝐥𝐥𝐭𝐡𝐫𝐨𝐮𝐠𝐡 is explicit if you really need it.Cleaner, less buggy, more readable 💡. #Golang #CleanCode #DevCommunity #RemoteWork #openTowork
1
0
2
Why can't you use := with a constant in Go? 🤔. Constants are fixed values known at compile time, while := is a shorthand for declaring and initializing a new variable at runtime. They serve fundamentally different purposes! .#golang #go #RemoteWork #openToWork #tech
0
0
1
🦀 Rust Gotcha:. println!("232 as i8 = {}", 232 as i8);.👉 Output: -24.Why?. 232 (u8) = 11101000₂. i8 range: -128. 127. Bit pattern wraps → two’s complement → -24. ⚠️ Know your bit ranges before casting!. #RustLang #SystemsProgramming #Bitwise #TwoComplement #openToWork 🚀
0
0
1
Rust's type inference is smart! 🤯 It can infer a type from later usage, not just the initial value. let mut inferred_type = 12; // Looks like i32, right?. inferred_type = 4294967296i64; // Surprise! It's i64. 🧠 . #RustLang #Programming #TypeInference #LearnRust.
0
0
2
Found superb post on LinkedIn for #Rust Lifetime problem. 🚨 𝗥𝘂𝘀𝘁 𝗕𝗼𝗿𝗿𝗼𝘄 𝗖𝗵𝗲𝗰𝗸𝗲𝗿 𝗶𝗻 𝗔𝗰𝘁𝗶𝗼𝗻: 𝗪𝗵𝘆 𝗧𝗵𝗶𝘀 𝗖𝗼𝗱𝗲 𝗙𝗮𝗶𝗹𝘀 ?. fn failed_borrow<'a>() {. let _x = 12;. let _y: &'a i32 = &_x;.}. Do check it out.
linkedin.com
🚨 𝗥𝘂𝘀𝘁 𝗕𝗼𝗿𝗿𝗼𝘄 𝗖𝗵𝗲𝗰𝗸𝗲𝗿 𝗶𝗻 𝗔𝗰𝘁𝗶𝗼𝗻: 𝗪𝗵𝘆 𝗧𝗵𝗶𝘀 𝗖𝗼𝗱𝗲 𝗙𝗮𝗶𝗹𝘀 ? fn failed_borrow<'a>() { let _x = 12; let _y: &'a i32 = &_x; } At first glance, this might look...
1
0
2
RT @SushantBSinha: हाउस नंबर 0 क्यों है ये हर वो व्यक्ति समझ सकता है जो गांव सिर्फ फोटो खिचाने ना गया हो.
0
6K
0
Race conditions in Java = 💣 waiting to explode. ⚠ Non-atomic ops (counter++).⚠ Missing volatile.⚠ Check-then-act.⚠ Unsafe iteration/publication.✅ Fix with synchronized, volatile, atomic classes, concurrent collections. #Java #Concurrency #DevTips
0
0
0
5️⃣ (0. ).zip(v.iter()) → custom start index .6️⃣ while loop → manual control .7️⃣ .for_each() + enumerate() → functional.Zero-cost control, full flexibility! 🚀.#RustLang #Programming #100DaysOfCode #RemoteJob #CodeNewbie #DevTips #Rust 🦀⚡. 2/2.
0
0
1
🦀 Rust: 7 Ways to Iterate Over a Vec with Index. 1️⃣ .iter().enumerate() → borrow values.2️⃣ .iter_mut().enumerate() → borrow & edit.3️⃣ .into_iter().enumerate() → take ownership.4️⃣ for i in 0. v.len() → manual indexing.#RustLang #RemoteJob #DevTips #Rust 🦀⚡. 1/2
1
0
2
5️⃣ (0. ).zip(v.iter()) → custom start index .6️⃣ while loop → manual control .7️⃣ .for_each() + enumerate() → functional.Zero-cost control, full flexibility! 🚀. #RustLang #100DaysOfCode.
0
0
0
🦀 Rust: 7 Ways to Iterate Over a Vec with Index. 1️⃣ .iter().enumerate() → borrow values.2️⃣ .iter_mut().enumerate() → borrow & edit.3️⃣ .into_iter().enumerate() → take ownership.4️⃣ for i in 0. v.len() → manual indexing.#RustLang #100DaysOfCode #RemoteJob
1
0
0
🌪 "No one is coming to save you. So rise. Dust off the pain, gather your scattered pieces, and push forward like your life depends on it—because it does.". Only you can save yourself !. #Karma #DIY #Success #consciousLife
0
0
0
In his 1972 essay “The Humble Programmer,” Edsger W. Dijkstra said that “program testing can be a very effective way to show the presence of bugs, but it is hopelessly inadequate for showing their absence.”. Source: #Tesing #SoftwareEngineering #RustLang
0
0
1
✅ Correct: return ownership fn fixed() -> String { "hi".to_string() }.Rust protects you from use-after-free — at compile time. #RustLang #Ownership #Lifetimes.
0
0
1
📌 Rust Tip:.If you're returning a newly created string, don't return &str. Return an owned String. ❌ Won’t compile: dangling reference.fn broken() -> &str {. let s = String::from("hi");. ).}. #RustLang #Ownership #Lifetimes.
1
0
1
💡 "If Python is slow, why is it still used in production?". Because:.✅ Developer time > CPU time.✅ Massive ecosystem (Django, NumPy, PyTorch).✅ Critical parts run in C/C++.✅ Great for ML, automation, APIs.✅ Easy to scale horizontally.Python is slow, but smart. 🐍⚡ #Python
0
0
2
Seems something wrong on the UI @amazonIN . Individual cost components are missing though I see #marketFee of extra Rs. 5 is added without fail. Please correct the UI. I see marketFee or #PlatformFee is becoming new norm. #Amazon #onlineShopping #SoftwareBugs
1
0
1