Jasper Bekkers

2,858
reputation
249 views

Registered User

name Jasper Bekkers
member for 1 year
seen yesterday
website
location Netherlands
age 21
Currently enrolled in the Internation Game Architecture and Design (IGAD) program at NHTV university in the Netherlands.
2d
answered Plug-in for Visual Studio for quick-searching files in solution
Dec
14
comment PHP and the goto statement to be added in PHP 5.3
Because PHP is a reference counted (instead of garbage collected) language you can use RAII to do the cleanup at the end of the function.
Dec
11
comment Which is optimal ?
It could make a difference because the register allocation could be different; depending on the register allocation algorithm that's being used variables with a longer 'live range' will generally be spilled to memory while variables with a shorter live range will be stored in the registers.
Dec
10
comment C++ What is compile-time polymorphism and why does it only apply to functions?
I think it's useful according to the standard committee, because they chose to work around this specific problem with the implementation of std::mem_fun / std::mem_fun_t. Basically what they did was: template<typename _Tx> std::mem_fun_t<_Tx> mem_fun(const _Tx &t) { return std::mem_fun_t<_Tx>(t); }
Dec
10
comment Viability of C#/.NET as the new standard game dev platform?
Learning OpenGL is a Good Thing, since every console (PS3, Wii, iPhone, PSP, DS) are using OpenGL based rendering architectures.
Dec
10
comment Viability of C#/.NET as the new standard game dev platform?
I think the future of C++ in games will largely depend on how C++0x will get adopted by the industry.
Dec
10
comment Hidden Features of PHP?
@Cory: Just have __autoload keep a list of classes loaded and the files it has loaded them from.
Dec
10
comment Hidden Features of PHP?
9 Out of 10 times variable variables are better replaced with arrays so you have all the data in one place, you can iterate over it et cetera. Only in some very specific circumstances might they be useful.
Dec
10
comment Hidden Features of PHP?
Useful for view-level logic and implementing Mixins as known in Ruby, for example.
Dec
10
comment Hidden Features of PHP?
I've used this to create a simple DSL for my view layer by just reading the PHP file, doing some string replacement and passing it trough eval(). Eg, I made it such that I can use short-tags whenever I choose to and do @->someVar so I can access view-level data.
Dec
8
comment Optimizing a pinhole camera rendering system
Nice to see fellow IGAD students over here as well :-)
Dec
6
awarded  Mortarboard
Dec
6
answered Curving from one point to another
Nov
19
revised Does “English” hinder you to enhance your programming skills?
deleted 4 characters in body
Oct
26
awarded  Yearling
Oct
1
answered Memory leak tool for C++ under Windows
Sep
26
accepted Maintaining a Programmer Wiki
Sep
25
comment Improving soccer simulation algorithm
Now obviously, you don't really need a perfect implementation, or the perfect algorithm. The only real mission is that the results that the algorithm provide comply with the expectations of your users and are fun to play with.
Sep
25
comment Improving soccer simulation algorithm
For the Genetic algorithm, what I'd do is try to mimic an actual soccer competition eg. run the algorithm until the result of the algorithm matches the correct positions in the competition. Base the fitness score, for example, on the Levenshtein distance between the generated competition and the actual competition. Now obviously the values you've assigned to the teams will be subjective; but those values will yield roughly the desired results. There would also be a problem with with the random numbers, but you could probably just mock the PNRG away.
Sep
25
comment Improving soccer simulation algorithm
What you do is find some values for some set of well known teams (or rather, teams that win most of the time and teams that you'd expect lose all the time). And then you decide which results you like most. Now the problem with this is, of course, that your interpretation of the results can be very subjectively.
Sep
24
comment What’s the C++ equivalent of UINT32_MAX?
std::numeric_limits<T>::max() :-)
Sep
23
revised Improving soccer simulation algorithm
added 257 characters in body
Sep
23
revised Improving soccer simulation algorithm
added 112 characters in body
Sep
23
answered Improving soccer simulation algorithm
Sep
23
comment Improving soccer simulation algorithm
Why consider optimizing? He asked for improvements for his algorithm.
Sep
23
comment Worst technobabble you’ve ever heard
This is actually a real hack, en.wikipedia.org/wiki/John_Draper
Sep
22
comment SIMD programming languages
This seems to be the best solution for the problem I have at hand, thanks.
Sep
22
awarded  Scholar
Sep
22
comment SIMD programming languages
The Cg front-end source code is available at developer.nvidia.com/object/cg_compiler_code.html/… The code is made available specifically for creating a back-end for the compiler. However, I do prefer existing solutions such as OpenCL.
Sep
21
comment SIMD programming languages
Comming to think about it, it doesn't need to be able to link, I just need to be able to pass it some data :-)
Sep
21
comment SIMD programming languages
Can I still link OpenCL libs to a C application and hand it a set of vectors?
Sep
20
awarded  Nice Answer
Sep
17
answered SIMD programming languages
Sep
17
revised SIMD programming languages
added 271 characters in body
Sep
13
comment SIMD programming languages
This solution looks nice; looks far better than the C++ intrinsics. However the solution is roughly equivalent and not what I'm looking for. (I was looking for actual languages designed with SIMD built-in instead of bolted on). However, it's definitely something to remember when doing a .Net based solution.
Sep
13
revised SIMD programming languages
added 927 characters in body
Sep
13
comment SIMD programming languages
Those Fortran implementations still use automatic vectorization in the same way most C++ compilers support this. The problem I have with this is that it's very hard to predict what code will be vectorized and what code won't. Now I don't know the state of this in Fortran compilers because my background is in C++, so I think I'd prefer a high-level shader-like approach that gives me more control over the final output.
Sep
13
awarded  Student
Sep
13
asked SIMD programming languages
Sep
4
awarded  Nice Answer
Aug
22
comment Why are regular expressions considered so controversial?
@Rado: In that case it's usually easier to make them explicit as [ ] or \s
Jul
25
comment Reading MIDI Files
It's not safe to assume 1/64th notes, 1/128 also exist for example. However, it is safe to assume that the data is stored in a single byte. (You can assess those with the MidiMessage class).
Jul
25
comment Reading MIDI Files
@srand I'm assuming this is just an example, you can use the MidiSystem, Sequence and Track classes to read out the MidiEvents stored in the file.
Jul
25
comment Why are developers generally opposed to purchasing software tools?
For Payment Costs you might be better off telling your boss that "it'll cost you more money if I need to explain why we need the product than the initial price of the product".
Jul
15
answered C coding practices for performance or code size - beyond what a compiler does
Jul
15
comment What is the Cost of an L1 Cache Miss?
@Skizz, could you show me how to convert those units into seconds so I can work that into the answer?
Jul
15
revised What is the Cost of an L1 Cache Miss?
added 150 characters in body
Jul
15
answered What is the Cost of an L1 Cache Miss?
Jul
14
answered Why differ(!=,<>) is faster than equal(=,==) ?
Jul
14
comment hash_map and map which is faster? less than 10000 items
If the hashmap resolves collisions by using a linked list; the insert, search and delete performance should all be (roughly) the same.