Watch live, Tuesdays, 8pm UK: www.twitch.tv/javidx9 or catch the VODs a day later here: kzbin.info
@dragan387653 жыл бұрын
"Makes me look like I know what I'm doing with modern C++, just make everything shared" I had not expected to be personally attacked today, wow, ok.
@FinFET3 жыл бұрын
"Code is always fun" the best way to learn to code is to have fun messing around with it =)
@tomtravis8583 жыл бұрын
Haha, just got recommended this video after writing 2048 in rust, it really is the best way to learn!
@nolan4123 жыл бұрын
Even more fun is seeing what code you can delete and not break things.
@tomtravis8583 жыл бұрын
@@nolan412 I'm sure it will compile if you delete all of it! :D
@akshitsingh64293 жыл бұрын
"Who wants to print Fibonacci series" i feel that
@AMildCaseOfCovid3 жыл бұрын
I'm so green that I've never printed a Fibonacci series. But because of Javid, I now have a tetris clone under my belt, some embarrassing wxWidgets work, and now I'm making my own silly sprite-based game.
@nolan4123 жыл бұрын
Let's debug planetary orbits instead.
@uabanur3 жыл бұрын
Hello javidx9. This was super wholesome! I have followed your channel for a couple of years, and always get excited to see new content. I love the warm and inviting feeling you always bring to the table, as well as the level of detail to understand how it all comes together. Keep it up, and if I have time during one of the upcoming codezones I would definitely pop by and say hello :)
@javidx93 жыл бұрын
Thank you. I'm all smug now 😄
@TheFakeVIP3 жыл бұрын
What fortuitous timing! Just finished rewatching the OLC::CodeZone series (I've quite possibly got too much time on my hands) and this video lands, right on queue, in my feed.
@seditt51463 жыл бұрын
Wow I do like that Ibanez, looks really comfortable to play especially if you had to stand up on stage or whatever for given amount of time.
@blakersquakers3 жыл бұрын
If anyone has not seen the pushin pixels with lisp channel, and you love javidx, youll love it too
@guilhermeygoncalves3 жыл бұрын
Man, you are definitively a 'guru' of game programation in c++. I would to know about your channel in some years ago when i was programming some games. Now i'm your fan. Could you programming a "battle city" nes tank game style for us please? congrats for the channel.
@dempa33 жыл бұрын
What I would like to hear more about is how you would go about to save changes to your procedural generated universe (from the previous video), while keepin it "real proceduraly generated" as you defined it.
@StarshipTrooper-dc9np3 жыл бұрын
Yes please!!!!!
@fuzzycat36513 жыл бұрын
I'd really love to make it to one of these streams, I'd love to see you code a game in real time. And a space game at that!
@RogueShadowTCN3 жыл бұрын
If this is your only reference, you might work out that Eriksonn is a big trouble maker!
@ncot_tech3 жыл бұрын
5:27 - And at this point Javid had a seizure and starts speaking in tongues.
@FrostGamingHype2 жыл бұрын
true words by javid said programming is supposed to be fun!
@morlanius3 жыл бұрын
Saw OLC:: in title Assumed it was MUD addon development Continues watching
@crusaderanimation69673 жыл бұрын
Ntl, quite enjoyable format.
@jamdonut3 жыл бұрын
aw yay didnt know you streamed, i've put a sneaky follow on twitch
@EclipsedAscent3 жыл бұрын
Honestly you are the best ❤️
@felns81663 жыл бұрын
Welcome, to the Codelight Zone "do DO Do do do DO Do do"
@TheSamuelWells3 жыл бұрын
20:04 Spaceship gets BIG....small...
@meepk6333 жыл бұрын
Star Track dreamed of a future where chat will stfu.
@yokmp13 жыл бұрын
Shouldn't the stars also move a bit as the nebula does?
@smellthel3 жыл бұрын
SPACE
@cppprograms58683 жыл бұрын
С++ рулить. Комментария ради комментарии. Для продвижения С++.
@PictorialPlanet3 жыл бұрын
This is great!
@thewirv3 жыл бұрын
what is that image manipulation program? that looks sophisticated
@javidx93 жыл бұрын
It's Affinity Photo
@THE16THPHANTOM3 жыл бұрын
a nerd who doesn't like anime. they do exist. now to find a nerd who doesn't like video games... Nasa is a pretty good place to start.
@Omnituens3 жыл бұрын
Telling coder how to output the Fibonacci sequence when they want to know something more useful is like asking how you actually survive in adult life and being told to remember that mitochondria are the powerhouse of the cell.
@rockycez3 жыл бұрын
Nice
@du42bz3 жыл бұрын
Hello comrade
@andrewdunbar8283 жыл бұрын
Leonardo Bigollo Pisano finds the type of coding on this channel dull.
@Furkan-ll4gy3 жыл бұрын
Thats awsome, can you make ray tracing tutorial
@pomato38983 жыл бұрын
LoneCodeZone
@Sky20423 жыл бұрын
olc::GuitarZone when???
@nolan4123 жыл бұрын
Gotta have a solar corona layer.
@nolan4123 жыл бұрын
Bloom is one of those makes your eyes hurt effects.
@nolan4123 жыл бұрын
Ooh! Pretty.
@nolan4123 жыл бұрын
The sun calls for an old school plasma.
@nolan4123 жыл бұрын
It's Star Wars. Not Battlestar.
@nolan4123 жыл бұрын
There it is: grid not keeping pace with the scrolling.
@yusufklc78213 жыл бұрын
İsn't space ship looks like C++ with one of the plus inside of it.
@amadeusk5253 жыл бұрын
I hate to break it to you David, but there are only two types of people in this world: People who don't like anime and people who have watched Attack On Titan.
@GreatHacker13 жыл бұрын
I've always wanted to understand and know how to apply fibonacci's sequence in everywhere I could. I just don't know how to do that. The only thing I know is: void fibonacci_sequence(){ preview + now = next; } But it is not easy to apply in everywhere I want knowing that.
@nolan4123 жыл бұрын
A bad step in the right direction: fib(previous) { now = fib(previous) + previous }
@GreatHacker13 жыл бұрын
@@nolan412 I know it has to be called recursively. My intention was not to make a loop showing how to apply it in programming language. It was just to show the basic steps to active the results. But I kind of understood what you meant.