Skydolily's devlog

12 july 25

Howdy! uHM. So I will use this part of my website to document my journey as a programmer. Like everybody here knows Neocities works with HTML CSS and javascript. I have some very bare bones knoledge of HTML and CSS but in order to build my neocites I would just copy code from various learning sites like w3schools or just random websites. I want to keep experimenting with HTML and CSS for fun but also to start learning C++ and Python or Javascrip (I still havent decide between the last two). I'm still deciding about my plans but for now I have this blueprint:

  1. For the first days I will a couple of advice videos and tutorials in order to make up my mind on what I actally want to do
  2. Picking a programming language.( I kind of have to go with c++ because of reasons.) Picking one between Python and Javascript (im more inclined to python because of godot and also because I heard its a pretty easy language to start with)
  3. Picking up resources and course and gattering them together.
  4. Finding a goal(making a very small pixel game in godot using c++)(and also keep working on neocities with html and css)
  5. https://www.freecodecamp.org/ https://www.coursera.org/learn/learning-how-to-learn?action=enroll

19 july 25

Ok so I decided to go to learn C++ because I have some previous experience and I also need it for school. Since 16 july I started watchings Brocode's full C++ course. In these days I manage to set down my fundamentals and I also manage to make some simple projects by my own. Im prett proud of my gadual progress. I will keep working on this course and then I will follow a Godot tutorial in order to get familiar with a gameing engine. But for this mount I will probably stick with c++ problems.

#include #include using namespace std; int main() { char s[13] = "abcdefghoid"; cout << strlen(s); for (int i = 0; i < strlen(s); i++) { if (s[i] == 'a' || s[i] == 'e' || s[i] == 'i' || s[i] == 'o' || s[i] == 'u') { s[i] = s[i] - 'a' + 'A'; } } cout << " " << s; return 0; } #include using namespace std; int main() { int n; do { cout << "Introduceți n (2 < n < 50): "; cin >> n; } while (n <= 2 || n >= 50); int a[50][50] = {0}; for (int i = 1; i <= n; i++) { for (int j = 1; j <= n; j++) { if (i + j == n + 1) { a[i][j] = 0; } else if (i + j < n + 1) { a[i][j] = i; } else if (j == n - i + 1) { a[i][j] = i; } } } for (int i = 1; i <= n; i++) { for (int j = 1; j <= n; j++) { cout << a[i][j] << " "; } cout << "\n"; } return 0; }

math functions