I’m still alive ![]()
Not too much happened Japanese wise, tbh. I let my reviews on Bunpro pile up to 200+, but today, I finally had the time to get all of my reviews done! I’ve kept up with WaniKani, but still have ~100 lessons to be done, so I will tackle that next before leveling up, and this time for real
I think my reviews have generally gone down (on WaniKani about 120 every day, instead of previously 180), and now that I had a slight adjustment in my daily schedule, I can also get more out of the two hours I have for Japanese every day since today (which is why I had time for my 200 reviews on Bunpro). Regarding Bunpro, I also unfortunately lost my streak…
Anyway, now that I can use more of my two hours, I can get faster done with my reviews and get more into reading again, so I think I will try to translate the rest of the TWC next week, and this time for real
Time to build up a normal schedule again!
Aaaaaand, I’m pretty much finished with the CS50P course, which means I’m definitely a Python pro now
(spoiler alert: I’m not). The only thing I need to submit now is my final project, but that is gonna take me some time, so I also started the next one, CS50x, and of course, I made a whole freaking game in the first week already
It was only Scratch, though, so nothing too exciting. What is exciting, however, is that I started C yesterday, which means I can now write stuff like this ![]()
void void(void)
{
printf("void");
}
I already had to experience how C is much less comfortable than Python in quite a few ways lol. For example, if I want to print a variable in Python, all I need to do is litteraly write
print(variable_name)
I tried to do the same in C, but the compiler didn’t like that, and the only way of printing a variable’s value that I currently know is something like this
printf("%s\n", variable_name);
(this is when the variable is a text, you use something different than %s for integers, floats etc.)
C is definitely a lot more sensible than Python, but I think it’s fun so far ![]()