Skip to content

Instantly share code, notes, and snippets.

View meetmangukiya's full-sized avatar
🛠️
Ξ

Meet Mangukiya meetmangukiya

🛠️
Ξ
View GitHub Profile
@meetmangukiya
meetmangukiya / u256_fromstr_radix_10.rs
Created June 25, 2022 13:12
U256 decimal string ser/de
pub mod u256_fromstr_radix_10 {
use super::*;
pub fn deserialize<'de, D>(deserializer: D) -> Result<U256, D::Error>
where
D: Deserializer<'de>,
{
struct Helper;
impl<'de> Visitor<'de> for Helper {

I get a lot of questions from relatives, friends, family regarding asking to guide them, their children on how to go forward with a career in software development. This is my attempt at sharing what I did that they could use as reference or to take inspiration from.

Getting Started -- beginnning programming, open source and GSoC

I started my B.Tech. in IT in 2016 at a tier-3(not IIT, NIT, IIIT, etc.) college and with that I had always had the clarity that I am on my own and I need to figure my own way out and not rely much on the college or anyone to guide me through it. Prior to 2016 I had only done some basic level C/C++ coding in my Computer Science vocational course in 11th and 12th.