313 reputation
110
bio website regex.soup.io
location Germany
age 27
visits member for 11 months
seen yesterday
stats profile views 21

Computer Science and Media


Apr
11
answered Is it allowed to make multiple instances of a singleton class?
Mar
22
comment The Pragmatic Programmer - learn new framework instead of language?
If you want to go the easy way, do it. Even learning new stuff in the same language is better than learning nothing at all.
Feb
25
awarded  Caucus
Feb
25
awarded  Constituent
Feb
18
answered What is a job in programming really like?
Feb
17
asked Distributing cron-like tasks over multiple servers
Feb
12
comment Is it possible to get a job in corporate software houses without a degree
Yeah, this is a big problem. We had much people without passion in university, probably only about 35 people from 40. Which is sad. For myself it was something I always wanted to do, so I studied it, but most people are just in, because it's a degree which earns you money.
Feb
7
answered What do I need to know re. Javascript frameworks?
Jan
31
comment How to refactor such code?
@MichaelT yes, or this :)
Jan
31
comment How to refactor such code?
using some speaking constants for the cases, would be my first idea.
Jan
31
reviewed No Action Needed Multithreading synchronization interview question: Find n words given m threads
Jan
23
comment How to implement syntax sugar in OO
Ah I see... my thought was you just disliked static methods.
Jan
23
comment How to implement syntax sugar in OO
Why not simply implement it as a class? Like your Tree example. (new Tree( $myArray))->get('vendor\product\...')
Jan
18
awarded  Custodian
Jan
18
comment Would a programming certificate teach me anything?
Some of them doesn't even "educate" anything, they just test if you know something in a specific field.
Jan
16
comment I hate one of our coding standards and it drives me insane, how to process it?
I write like I want an format the code with eclipse or webstorm afterwards. Ctrl+f Ctrl+s and done.
Jan
14
answered What are the advantages of a client/server architecture in webapplications as opposed to a server generated frontend application
Jan
11
comment Is this “anti-pattern” and should I stop using it or is this clever design?
If you distinguish between the "data" which forms the application (HTML, JS, CSS, etc.) and the "data" which the application displays (JSON) the JSON part is REST, but the part which loads "code" isn't. If you see the whole thing more abstract, both are.
Jan
10
comment Is this “anti-pattern” and should I stop using it or is this clever design?
I write fat-clients in JavaScript, which do exactly this. But it's probably a bad idea for normal websites.
Dec
19
comment PHP best practice in return values
If the function is a simple as the one mentioned here, I use the first style (KISS) if it's more complex I use the second one (easier to debug).