3,269 reputation
21033
bio website
location Netherlands
age 22
visits member for 2 years, 5 months
seen 21 hours ago
stats profile views 133

CS student


Jun
10
comment PHP Traversable type hint
Are there other PHP native entities which are usable in foreach but do not implement Traversable?
Jun
10
comment PHP Traversable type hint
@alfasin And as such any class implementing Iterator will also match Traversable, as Iterator is a subtype of Traversable. Basic OOP-mechanics
Jun
10
answered PHP Traversable type hint
Jun
10
asked PHP Traversable type hint
Jun
10
awarded  Notable Question
May
30
revised How do you give iframe 100% height
added 27 characters in body
May
29
awarded  Famous Question
May
26
comment html - allow user to update web site information
Just search for a PHP tutorial online...
May
26
comment Is it possible to have one HTML document split into MIME chunks?
Why would you want to do this? XY: meta.stackoverflow.com/questions/66377/what-is-the-xy-problem
May
23
revised Gitweb look and feel
deleted 1 characters in body; edited tags; edited title
May
23
reviewed Close Linear programming - dual simplex variable meanings?
May
23
reviewed Leave Open C++ Sound Processing
May
23
reviewed Leave Open How to pass value from page to another page without using SESSION OR GET
May
23
reviewed Close trouble with jquery/instagram plugin
May
23
reviewed Close what is Data Encipherment in a ssl certificate
May
23
reviewed Close Filter Messages in IOS6
May
23
reviewed Close FFMPEG SCREENSHOT GENERATE ERROR: No such filter: 'tile'
May
23
reviewed Approve suggested edit on Check for column name in a SqlDataReader object
May
23
comment How to invert a dictionary?
This is only possible if keys and values are unique. There isn't really a smart trick for this, you'll just have to re-implement a hashtable/map and alter the functions to account for bidirectional relations. Take a look at the guava implementation of a HashBiMap: code.google.com/p/guava-libraries/source/browse/guava/src/com/…
May
23
comment How to invert a dictionary?
It is possible if keys and values are unique (called bidirectional map)