Todd —
Nice. Sublime is my fav editor now. Anyone else got any other tips for Sublime?
Todd —
Thanks Martins! That was a beautiful explanation. I hadn't yet touched this space because I've ei…
mmozeiko
Like raw literals and initializer list.
No problem there I can code those up.
mmozeik…
Yes you will, but you will need to to few minor adjustments to code.
Casey is using few features …
Hello,
Looking to start this project using an old version of VS. Will I be able to this ?.
Tha…
Thanks for the tip. It didn't quite work for me, maybe because I'm still just on day 004 and some…
Since my parser takes its input character by character, I think the "insert comma" strategy is pr…
I was looking for the previous blog post you mentioned. I think this is the link but it's not ava…
Per gave some details on reddit a week ago.
Since postal delivery of boards can take weeks, it's probably good time to start looking for FPGA…
Are such parsers good at error recovery? For example, 1foo(10 bar(30,20), 34 ;
in (manually wr…
My concern is not about the performance, it never was.
The good thing with pointers is that the…
Typically language abstracts the CPU it is compiling for. So you can write very complex operation…
Todd —
Can someone explain to me what intrinsics are and what they are for?
MSDN says that they are "in…
I've written precedence climbing parsers before, so instead of repeating the exercise, I've decid…
I played around with it a bit, and my asm is a bit rusty, but the difference is roughly:
A)
1
2
3…
gun_types[dude->gun_idx].damage
and
dude->gun_type->damage
are basically the same wi…
Martins got it. I'd already changed it to just int n = 1024 in my own code since there isn't a st…
Great read, thanks for sharing!
There's was a small typo, should have been
1dude->gun_type->damage //instead of dude->g…
This is good stuff. I'm still struggling to shake my OOP roots from Java in college.
I'm curious…
pragmatic_hero
Once MS drives Windows and MSVS completely into the ground (and they are really t…
pragmatic_hero A) Is barely extra level of indirection
[base + index * size + offset] vs [address…
actually a larger problem is that the value of dude->gun_idx has to be loaded before damage st…
Thank you. My brain is now at ease :)
HawYeah
Yeah I guess I hadn't really considered it before because the extra level of indirection…
CaptainKraft mmozeiko Any IDE written in Java or JavaScript is a big NO for me.
Are there better…
1. I also use these kind of enums for constants. Why? Because enum values don't have "type", some…
Hi, I have a couple of questions I did not manage to answer myself. They are mostly about C.
1.
…
Heya! Thanks for doing this, project based learning is great in my experience.