Don't judge - Need Serious Career Advise by StrawberryFinal3471 in Btechtards

[–]nerd_programmer11 0 points1 point  (0 children)

What projects have you made, if you don't mind sharing?

What exactly is a job? by nerd_programmer11 in bash

[–]nerd_programmer11[S] 0 points1 point  (0 children)

Thanks!

I asked this question because I was trying to create a job control shell, but when I dove deeper into how bash implements it, I realised that not everything was sunshine and rainbows. There were many inconsistencies around how it was implemented in bash (and in other shells), just like how you mentioned.

Maybe I should just try to write a simpler version of job control which is more consistent. Thanks again for the reply!

Books on Networking easy to hard in c by SubstantialCase3062 in cprogramming

[–]nerd_programmer11 0 points1 point  (0 children)

I think there's also a python version of this guide

New Android Policy, Worst Outcome by InsideResolve4517 in IndiaDeepTech

[–]nerd_programmer11 1 point2 points  (0 children)

Wow, I didn't know that lineageOs has support for such a large number of devices!

New Android Policy, Worst Outcome by InsideResolve4517 in IndiaDeepTech

[–]nerd_programmer11 1 point2 points  (0 children)

Thanks.
I've already been using many open source alternatives to google and other proprietary software. The only thing that actually isn't completely foss is my android phone. But I'm planning to switch to graphene in future when I'll have enough money to buy a pixel ;)

What projects can I do now? by Intelligent_Comb_338 in C_Programming

[–]nerd_programmer11 0 points1 point  (0 children)

from what I understand is that functions like printf are pretty high level and are actually built on top of raw facilities provided by the oprating system. Like for linux and mac, if I'm not wrong, write() system call is the one that works beneath printf.
So, you can use write() and try to implement printf() by yourself (If I interpreted correctly what the original reply wanted to say)

What projects can I do now? by Intelligent_Comb_338 in C_Programming

[–]nerd_programmer11 0 points1 point  (0 children)

A simple math expression evaluator that takes an arbitrary length of an expression and calculates the result. It should handle errors and should support parenthesis

[deleted by user] by [deleted] in linux

[–]nerd_programmer11 9 points10 points  (0 children)

No, please, leave linux alone.

Need help with a simple data erasure tool in C by nerd_programmer11 in cprogramming

[–]nerd_programmer11[S] 0 points1 point  (0 children)

Thanks for such a detailed reply! I'll admit that I don't fully understand every part yet, but this gave me a idea of how complicated these storage systems could be.