in the future - u will be able to do some more stuff here,,,!! like pat catgirl- i mean um yeah... for now u can only see others's posts :c
I am going to remake a few videos that I am not 100% happy with in terms of quality and correctness. I am currently thinking about remaking the "Enums in Go" video. Do you have any other ideas for potential videos to remake or maybe completely new ideas?
21 - 16
I wish everyone a Merry Christmas and Happy Holidays! 🎅 I'll publish my last video for this year on Friday, which is about a topic many of you requested.
9 - 0
Just FYI, I probably won't post new videos in the next few weeks because I am finishing a personal project. I'll keep you posted about it! Also, I am currently editing a longer-form video, which takes a bit more time than usual.
17 - 4
The latest video ("Enums" in Golang) was more like an ad-hoc video than a well-planned video (I didn't get much sleep that night). There were many errors in the code and in the explanation of the code (Go conventions and standard constants, which are no enums). I'm sorry for that, but that shouldn't be an excuse. The point of the channel is to have as much high-quality content about software engineering as possible, and I'll work on that! In the future, I'll focus more on planning the scripts and code beforehand! Nevertheless, I am grateful to have such a lovely community. Have a beautiful weekend!
43 - 5
You guys are so awesome! 10,000 subscribers, what an insane milestone 🥳
I couldn’t have done it without your fantastic support, engagement, and enthusiasm. Each of you has played a vital role in this community, and I am so grateful to have you on this journey.
To celebrate this achievement, I am currently planning a special! Stay tuned for an exciting and straightforward game programming session, as always, with easy explanations and paper animations :)
Thank you once again for being part of this small community!
See you in the next one!
45 - 13
I am currently trying to see if there is any interest in implementing data structures (static arrays, dynamic arrays, trees, graphs, etc.) from scratch without any third-party libraries. If you are interested, what language would you prefer to see these videos in?
7 - 9
By the way, I've released another video about an unknown, insane TypeScript type that might change how you view string types in TypeScript! Feel free to check it out!
0 - 0
Think you've got a handle on pointers? What's the answer of the following code:
```golang
package main
import "fmt"
func main() {
num := 5
ptr := &num
*ptr = 8
fmt.Println(num)
}
```
40 - 2
Creating content about software engineering with Paper and "Drawings".