
I want to become a software developer.
I will do whatever is needed.
Discussed some mathematical expressions and practice some mathematical operations in this website practice
Played 2048 game and wrote the rules of the game and observed the effects and discussed about input, output, behaviour and micro animations.
Discussed about static and dynamic websites, types of applications.
Discussed about how whatsapp and Instagram works.
Taught us if, goto and control flow of cursor.
Wrote algorithms
for first n natural numbers, even numbers upto n.
Practiced some print statements.
Wrote algorithms for odd numbers upto n, first n even numbers, first n odd numbers in
two methods.
Taught us about principles to keep in mind while developing end-user experience, meaningful vairiable
names, readable code, correctness for edge cases and multiple solutions choose the best according to the situation.
Discussed about definition of algorithm and practiced some more algorithms like multiples of a number, table of a number, table book, upto n squares and n square numbers.
Registered for an event (AI for Vizag: Outside The Bot | Building Production-Ready AI Agents) at RTIH(Ratan Tata Innovation Hub).
Practiced algorithms for nn series in two variations upto n and n terms.
Watched a video about How your goals can trap you?
Practiced algorithm for fibonacci series upto n and n terms in the series.
Learnt about the principle duplicate code through an algorithm.
Learned and practiced some github and linux commands.
Wrote an algorithm to find nth term in nn series.
Practiced algorithms for prime number with and without using (modulus & division), greatest number among 3 and greatest number among 10 numbers.
Learned and practiced how to build trust using ssh key from local machine to github and pushed the code changes from local machine to remote repository.
Wrote all the basic algorithms in the laptop.
Learned about how C++, Java and Python codes compile under the hood.
learned how to view temporary files which are created while executing c code.
Installed ubuntu and created ssh connection through ubuntu terminal.
Drew the flowcharts for all the algorithms.
Wrote all the algorithms in c language.
saw the temporary files which are created while compiling c code like .i, .s, .o, .bc using the command clang --save-temps
Learned how the compiler tells the error line using .i file without knowing .c file.
Learned about .bc(LLVM IR) file and when are they created in the compilation process.
How to navigate between directories through shell/ubuntu/bash.
Learned about Indian Number Representation System from anaadi.org
Learned about linux commands and number systems.
Made a video about types of number systems binary, octal, decimal, hexadecimal.
Learned about debugging using lldb(low level debugger)
Today we presented about what we learnt until now from june 1st to till now and got more clarity about compilation process and system internals.
Today i made a video on c compilation process.
Today learned about redirections (<, >) , pipe (|) commands in ubuntu and wrote the scripts to test c program.
Leanred how to change file permissions (chmod), kill command and how to write scripts in shell.
Learned about how to generate intermediate files from .c to executable one by one from one stage to another.
Wrote a test on stdout, stdin, pipe and redirections and got better understanding.
Wrote some words from notes in dictionary and write a test on relative and absolute paths.
Learned how to write functions in c language what is declaration, definition and function calling. How to write them in single file and also multiple files declaration in a file(util.h), defintion in another file(util.c) calling in another file(use.c).
Broke the code at different stages by putting user defined .h file using include (<>) preprocesing error, remove the declaration of file in (util.h) compilation error and commented the defintion of a function and compiled it which created the linker error.
Read about CPATH environment variable how does it work in man page of clang.
Wrote a small assessment on lldb debugger and an algorithm to find sum of MSD and LSD in a given number.
learned about arrays in c declaration, accessing, modification and printing.
Wrote an algorithm for counting how many times a digit is repeated in a number.