Blixt

7,346
Reputation
885 views

Registered User

Name Blixt
Member for 5 months
Seen 13 hours ago
Website
Location Malmö, Sweden
Age 22

Hi there! My name is Andreas Blixt and I'm a long-time web developer, having taken up an interest over 10 years ago. My favorite technologies include JavaScript and Python! Check out my JavaScript realm for some open source JavaScript goodies! Besides the web, I work a lot with .NET applications.

My hobbies include working on my pet projects, such as my multifarce and MoNKey! games. I'm also into photography. I usually upload my most interesting photos to my Flickr page.

If you want to contact me, send an e-mail my way: andreas@blixt.org

2d
comment Using a different type for a collection when serializing with WCF
I'll be going with this solution even if it's not ideal (normally I wouldn't want to make properties return values that require the creation of an object - in this case a List - when retrieved).
Nov
25
comment Using a different type for a collection when serializing with WCF
Hmmm... I guess the only way to do what I want is to have a callback that is called by the serializer for every item in a collection. The callback would return an object with only the values I want, which is serialized and put in the serialized collection. So basically, for the Siblings collection, the serializer would call the callback for every Person instance, and the callback would return a Guid value instead. This way I don't need an extra class, and I get the serialized structure I want. Is this possible with WCF?
Nov
25
comment Using a different type for a collection when serializing with WCF
I see. I didn't want to force my domain objects to conform to my WCF service though, I want them to be completely untouched by anything related to the service. What I wanted was a way to "inherit" the structure of the domain object, only handling a few specific cases (reference lists) differently, so that I don't get as much overhead.
Nov
25
asked Using a different type for a collection when serializing with WCF
Nov
25
comment Suggestions needed: alternative to overloading “is” and “as” operators in .NET
Could this be described as per-instance (rather than per-type) inheritance? Also, what happens to the underlying p object when you apply pa-specific values?
Nov
24
awarded  Popular Question
Nov
24
revised Video upload in MVC application?
edited title
Nov
19
comment PDO Insert Help
Good question... It's most likely to support/behave like the underlying library for PDO. It's definitely possible, since PHP supports a variable number of arguments. You could make your own sub-class with an execute that calls parent::execute(func_get_args())
Nov
18
comment Is Comet easier in ASP.NET with Asynchronous Pages?
From what I can see, asynchronous in this case appears to be for how threads are handled on the server... As far as I know, the output is still sent in one chunk when the page is finished processing, which completely eliminates the possibility for Comet to work with the ASP.NET model... I would be happy to be proven wrong though.
Nov
17
revised Loop backwards using indices in Python?
Retraction: reversed has some clever code specific to xrange that changes it to a backwards-stepping iterator
Nov
17
answered Loop backwards using indices in Python?
Nov
17
revised Keeping history of hash/anchor changes in JavaScript
added 150 characters in body
Nov
16
comment How to get good perfomance of Regex in java
Yeah that's more like what I'd use. If the part before colons can be more than one character you should probably add a word boundary too. Or a look-behind that checks for beginning of string/comma.
Nov
16
comment How to get good perfomance of Regex in java
It would be better if you described what you want to match. Do you want to match a sequence like your example, where the last item is A:something or C:something?
Nov
16
revised Multitenant DB: Why put a TenantID column in every table?
column->table
Nov
16
revised Multitenant DB: Why put a TenantID column in every table?
added 357 characters in body; deleted 26 characters in body
Nov
16
answered Multitenant DB: Why put a TenantID column in every table?
Nov
16
comment Importing MD5+Salt Passwords to MD5.
I don't see what you're trying to say with your comment... that security is pointless because it won't be 100% effective? Just as security evolves, so does hacking. You will never reach a point where something is 100% secure. But by shifting the effort/reward ratio towards effort, you make hackers less likely to choose you as a target. That's why you should always strive to make your security solution as efficient as possible.
Nov
14
awarded  Enlightened
Nov
14
awarded  Nice Answer
Nov
12
comment Why does “.*” and “.+” give different results?
I would not have expected the second output, but most likely this is an question of how replaceAll or equivalent is implemented. While the Java version matches empty string at position 0 and starts looking for next match at position 1, Perl most likely starts looking at position 0 again (but this time disallowing an empty match to avoid an infinite loop).
Nov
12
comment Why does “.*” and “.+” give different results?
I disagree. The exhibited behavior is very intentional, and well documented. It's perhaps clearer to understand what happens if stepped through a regular expression debugger. It will start at position 0 in the string. It will attempt to match . (any character) which matches f. Thanks to * it will continue matching. This makes it match foo and now it's at position 3 (after o). Since replaceAll keeps replacing after the previous match until there is no match, it will now try again. . fails to match, but since it's ok to match 0 times (*), it will still succeed. Thus two matches.
Nov
12
comment Why does “.*” and “.+” give different results?
Oops, by "match everything after the current position", I meant that it will be stored into the back-reference. The actual match will always be a zero-length string (the position only).
Nov
12
comment Why does “.*” and “.+” give different results?
The regular expression engine does not revisit a previously visited position in a string. The maximum number of matches you could get from foo would be four. Imagine the following replacement: .{0} -> !; it will turn the string into !f!o!o! because it steps every position in the string once. This is not to be confused with backtracking which occurs during a step (sub-stepping in a step can visit any location independently of whether it has been visited before). That's why you can match the same string many times: (?=(.+))* will match everything after the current position always.
Nov
11
answered Block Level Elements inside Inline elements
Nov
11
comment (why) is the CSS star selector considered harmful ?
In what context have you heard that it is "harmful"? When used in certain ways, it can behave differently depending on the browser (consider * html {} for example).
Nov
11
accepted Can you define “literal” tables in SQL?
Nov
10
comment Elegant syntax for assigning value from possibly null db value
@Andomar: That's not what extension methods do (although they do act as if they do, I guess)... They simply save you from typing DbReaderUtility.GetNullableDecimal(reader, IDX_SALEAMOUNT). Sure, a person not aware of extension methods might be baffled at first, but such is the case with all that is new and different...
Nov
10
comment Elegant syntax for assigning value from possibly null db value
As soon as this logic is involved in more than one place, having a method for it will definitely be worth it. The fact that it's an extension method doesn't change much, since that's just syntactic sugar and would very rarely cause any problems.
Nov
10
revised Elegant syntax for assigning value from possibly null db value
Silly Jon! You can't assign decimal? values to the Value property!
Nov
10
comment Elegant syntax for assigning value from possibly null db value
This depends wholly on what NULL and 0 actually mean! There's an important difference between "there is no sales amount available" and "the sales amount is 0.0"
Nov
10
comment Elegant syntax for assigning value from possibly null db value
Well, there's a reason for that isn't there ;) Just go ahead =)
Nov
10
comment Elegant syntax for assigning value from possibly null db value
+1: Clever, readable function. In my opinion, it would even be worth defining such a static helper method in earlier C# versions.
Nov
10
comment Elegant syntax for assigning value from possibly null db value
You have to weigh this against using casts and a ternary conditional operator, which I find to be at least as confusing. Just write the above code explicitly then, or add a comment that non-assignment means null.
Nov
10
comment Elegant syntax for assigning value from possibly null db value
I see you updated your post, but now it's worse. ?? null is logically wrong (return value if it's not null and return null if it is null, which it never will be since decimal can't be null)
Nov
10
comment Elegant syntax for assigning value from possibly null db value
GetDecimal returns decimal, which can never be null, thus ?? won't work.
Nov
10
revised Elegant syntax for assigning value from possibly null db value
edited body
Nov
10
answered Elegant syntax for assigning value from possibly null db value
Nov
6
comment how to use each function to get attr of each element with jquery
Perhaps, but in any case the id attributes should be changed to image-1, image-2, etc. or removed.
Nov
6
revised Get first key in a [possibly] associative array?
added 94 characters in body
Nov
6
awarded  Nice Answer
Nov
4
comment Easiest way to combine ‘l’,’e’,’t’,’t’,’e’,’r’,’s’? C# / .NET
True =) Even worse is over-estimating them though ;) It wouldn't be too hard to write some 20 lines of code that will be 10 times faster than the regular expression (although with a pre-compiled regular expression maybe it would only be 3-5 times slower than a custom solution.)
Nov
4
comment Easiest way to combine ‘l’,’e’,’t’,’t’,’e’,’r’,’s’? C# / .NET
Remove the ^ (or carets will stay in the string) and change the * to + (or the regex will "match" on every position in the string since it matches zero-length values.)
Nov
4
answered Easiest way to combine ‘l’,’e’,’t’,’t’,’e’,’r’,’s’? C# / .NET
Nov
4
revised Recommended Java frameworks for Google App Engine?
edited title
Nov
3
comment Language Strings in URLs
They probably do have some weighting... but they are far less important (according to search engines) than keywords in the domain, path and title of the page.
Nov
3
comment Language Strings in URLs
While request parameters do not have keyword weighting, you wouldn't be searching for "en" or "de" either. Request parameters indicate unique pages, and therefore there is no SEO issue with using query parameters for a matter such as this. The only issue would be that the path would be the same for every language, but that's also the only time you would use the method (as I already indicated in my answer.)
Nov
3
answered Language Strings in URLs
Nov
3
asked What methods are there for (graphically) scaling elements on a web page in Internet Explorer?
Nov
3
accepted How do I convert my CASE WHEN THEN statement?