Thanks for the replies! That's not my experience at all. For example if I start typing in a new l…
Welcome to the network.I think that by default in VIM "tabs" are equal to 2 spaces, in 4coder the…
Hi (and happy easter to everyone)! I've been evaluating 4coder for a while now, making it my main …
nakst —
Simple Sound Generator Compile with and include the headers
Think the restrict keyword should help with that?
yes the int is copied onto the stack (really in a register) but buf_push will copy it again into t…
though keep in mind that the compiler must consider some things as dependencies even where you thi…
func int_buf_push(buf: int**, elem: int) { buf_push(buf, &elem, sizeof(elem)); } [/code][/quote] …
Thanks that helps alot. I'm using x86 currently since I'm using an insignificant amount of memory …
Yes, autovecorization is mostly for loops. MSVC does autovec when it can figure out access pattern…
If you're talking about security as in "if this software isn't secured, important data could be le…
It hasn't happened yet. At this point the plan is to introduce it with the upgrade to 4.1.0, whic…
Thanks again. I ended up copying everything I needed from audioclient.h and mmdeviceapi.h so I don…
Simon —
I would also love to see this feature! I am thinking about switching from sublime to 4coder, but m…
Hi, so I've been trying to research SIMD instructions and I've learned that the compiler can autom…
Thanks for sharing! I will be taking a closer look at these later. Self contained header files are…
some time ago I started reading and did not really get it, but your explanations in the first vid…
Thanks for the planned writeup! I actually know the topological algorithm and how this is supposed…
Sure, I plan to cover the resolver algorithm in the write-up I'll start working on this weekend. T…
Hello, first: thanks for sharing all this knowledge! I definitely already learned a ton more deta…
Yup. It's all good now. Thanks!
Hey all! I'm writing a bunch of for various tasks needed to make a game. The end goal is to actua…
Visual studio has the worst symbol search ever (Ctrl + ;) -> Searches always in all files in the …
v0.7.1.0 beta:Changed: fplConsoleFormatOut/fplConsoleFormatError is now common_api instead of plat…
Use regular ReadFile/WriteFile instead. [/quote] Good Point thanks! I will change that.
Please do not use ReadConsole and WriteConsole for stdin/out on Windows. Those cannot be redirecte…
Are there better alternatives that work on Windows and Linux?[/quote] I doubt you'll find anythin…
I decided to let the user provide a vsnprintf alternative when CRT is disabled. For win32 i got c…
Just off the top of my head you could do a macro: With Macros .... .... typedef enum TokenType { …
Great! There used to be better documentation on this in the custom code... I guess it got lost at …