1bignum *bignum_fromstring(char *str){2 bignum* num =bignum_new();3bignum_enlarge(num,strlen(str));4for(unsigned int i =0; i <strlen(str); i++){5 num->tab[i]= str[i]-'0';6}7return num;8}
A readable reflection on three university repositories that still influence how I build software: BigNumbers, Proximity Messenger, and PB161 C++ assignments.
1const notes ={2 title:"From Baseline to Milestone: Where the Portfolio Stands Now",3 publishedAt:"02/15/2026",4 tags:["Milestone","Product","UX","Dev Log"],5};
One day after the initial snapshot, the portfolio moved into a much more stable late-stage shape: cleaner mobile UX, working contact delivery, bilingual-ready UI text, and tighter component structure.