We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
George Nakos
Thanks for the replies! That's not my experience at all. For example if I start typing in a new l…
»
Simon Anciaux
Welcome to the network.I think that by default in VIM "tabs" are equal to 2 spaces, in 4coder the…
»
George Nakos
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
»
Bozemoto
Think the restrict keyword should help with that?
»
ratchetfreak
yes the int is copied onto the stack (really in a register) but buf_push will copy it again into t…
»
ratchetfreak
though keep in mind that the compiler must consider some things as dependencies even where you thi…
»
Andy Gill
func int_buf_push(buf: int**, elem: int) { buf_push(buf, &elem, sizeof(elem)); } [/code][/quote] …
»
Bozemoto
Thanks that helps alot. I'm using x86 currently since I'm using an insignificant amount of memory …
»
Mārtiņš Možeiko
Yes, autovecorization is mostly for loops. MSVC does autovec when it can figure out access pattern…
»
Simon Anciaux
If you're talking about security as in "if this software isn't secured, important data could be le…
»
Allen Webster
It hasn't happened yet. At this point the plan is to introduce it with the upgrade to 4.1.0, whic…
»
Simon Anciaux
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…
»
Bozemoto
Hi, so I've been trying to research SIMD instructions and I've learned that the compiler can autom…
»
joe513
Thanks for sharing! I will be taking a closer look at these later. Self contained header files are…
»
listabo
some time ago I started reading and did not really get it, but your explanations in the first vid…
»
listabo
Thanks for the planned writeup! I actually know the topological algorithm and how this is supposed…
»
Per Vognsen
Sure, I plan to cover the resolver algorithm in the write-up I'll start working on this weekend. T…
»
listabo
Hello, first: thanks for sharing all this knowledge! I definitely already learned a ton more deta…
»
ackthpppt
Yup. It's all good now. Thanks!
»
Randy Gaul
Hey all! I'm writing a bunch of for various tasks needed to make a game. The end goal is to actua…
»
Jeremiah Goerdt
Visual studio has the worst symbol search ever (Ctrl + ;) -> Searches always in all files in the …
»
Finalspace
v0.7.1.0 beta:Changed: fplConsoleFormatOut/fplConsoleFormatError is now common_api instead of plat…
»
Finalspace
Use regular ReadFile/WriteFile instead. [/quote] Good Point thanks! I will change that.
»
Mārtiņš Možeiko
Please do not use ReadConsole and WriteConsole for stdin/out on Windows. Those cannot be redirecte…
»
Finalspace
Are there better alternatives that work on Windows and Linux?[/quote] I doubt you'll find anythin…
»
Finalspace
I decided to let the user provide a vsnprintf alternative when CRT is disabled. For win32 i got c…
»
Charles Nicholson
Just off the top of my head you could do a macro: With Macros .... .... typedef enum TokenType { …
»
Allen Webster
Great! There used to be better documentation on this in the custom code... I guess it got lost at …
»