Anders Rune Jensen
|
Registered User
|
I'm the founder of a small consultancy company where we focus mainly on web 2.0 with django. I'm also the founder of the website YayArt, that sells prints of digital art.
My blog |
|
Dec 14 |
answered | Sending HTML email in Python |
|
Nov 25 |
comment |
What’s the strangest corner case you’ve seen in C# or .NET? Thanks. That sheds quite a lot of light on it. But really his examples are far fetched to me. Example 1 would simply give a warning in C++. I don't really see they problem. It's also sloppy programming practice to write such big function so I don't really see the point in bending over the language just to fit people who can't write proper code ;-) |
|
Nov 18 |
revised |
How to improve Clojures error messages added 5 characters in body |
|
Nov 18 |
comment |
How to improve Clojures error messages Yeah maybe simply reporting bugs for some cases would be a good start :-) |
|
Nov 18 |
comment |
How to improve Clojures error messages I use Emacs of course but the problem is when you forgot a pair of paranthesis. Like a for [BLA] do <MISSING () pair. |
|
Nov 18 |
asked | How to improve Clojures error messages |
|
Nov 17 |
revised |
Multilingual windows application using C#.NET deleted 1 characters in body; added 1 characters in body |
|
Nov 9 |
comment |
Why is the scope of if and delegates this way in c# You are not overwriting. The declaration in the outer scope comes after the inner scope. |
|
Oct 26 |
comment |
How can I simulate macros in JavaScript? Not a bad idea, but sadly the solution adds a eval and 2x function definitions too much. +1 for trying though. |
|
Oct 21 |
comment |
var1 = var2 = true; Advantages/Disadvantages? Just do a var var1, var2 = true; |
|
Oct 21 |
comment |
var1 = var2 = true; Advantages/Disadvantages? There are costs. Among others 1 line of screen precious screen space. |
|
Oct 21 |
answered | var1 = var2 = true; Advantages/Disadvantages? |
|
Oct 15 |
comment |
What do you think of the direction C# is heading for compared to Java? "Mono will not always lag behind MS developmental efforts" - this is blatantly false. While they have been/is lacking behind in some areas they are in front in many others. Just look at the way you can do iPhone development with Mono in C#. Try doing that with .NET. |
|
Oct 15 |
comment |
What do you think of the direction C# is heading for compared to Java? The beauty of a shared infrastructure like the jvm or .net is that anyone can come up with NewJava. In my view NewJava is Clojure, it even plays well with Java, but this is getting a bit off-topic :) |
|
Oct 1 |
comment |
Why is lockless concurrency such a big deal (in Clojure)? Yep! STM = Software Transactional Memory. That's a good work to look up if you want to know more about how this works. |
|
Sep 30 |
comment |
Parse MP3 file in .NET v4.0 Did any of the proposed solutions work? |
|
Sep 29 |
revised |
Parse MP3 file in .NET v4.0 edited tags |
|
Sep 29 |
answered | Parse MP3 file in .NET v4.0 |
|
Sep 17 |
awarded | ● Yearling |
|
Sep 16 |
answered | What’s your most controversial programming opinion? |
|
Sep 11 |
accepted | Which University has the most respected Computer Science degree? |
|
Sep 10 |
comment |
What is yield return in C#? the idea is to think of yielding as creating a closure which encapsulates the state of all the variables on the stack. That might simply be something like int i = 0; yield return i++;, but could be much more advanced. I'd recommend to look at functional languages, especially lisp for good examples of this technique. |
|
Sep 10 |
answered | What is yield return in C#? |
|
Sep 10 |
answered | Which University has the most respected Computer Science degree? |
|
Sep 9 |
comment |
How can I simulate macros in JavaScript? this is about programming macros, not user macros to make firefox do repetitive tasks. |
|
Aug 22 |
answered | How to get started in operating system development |
|
Aug 22 |
answered | Multilingual windows application using C#.NET |
|
Aug 22 |
answered | Does Django Scale? |
|
Aug 22 |
comment |
Django - How to get only 2 object for a combination of fields with a queryset Add a check for length to this or it will blow up if it doesn't match any objects. |
|
Aug 4 |
awarded | ● Popular Question |
|
Aug 3 |
answered | Windows like services development in LINUX using MONO? |
|
Jul 30 |
comment |
A better Java JSON library? I tried Jackson when I was doing interoperability between .NET and Java and dates was a mess for me. I don't understand why it's done the way it's done in Jackson. The idea behind JSON is that I should just be able to shuffle data around, I don't have to care about date formats, timezones and all that crap. When I was sending data back and forth between js and c# I had zero problems whatsoever. |
|
Jul 23 |
revised |
Any thoughts on DevExpress XPO ORM Package? better now |
|
Jul 22 |
answered | What is a good way to think about C++ references? |
|
Jul 22 |
comment |
What is the one programming skill you have always wanted to master but haven’t had time? Maybe it's a good thing you never learned. It will save you a lot of headache. |
|
Jul 22 |
answered | Are single-threaded applications a dead technology? |
|
Jul 22 |
revised |
What are some things that you do to make sure a project is ready to be released? added 101 characters in body |
|
Jul 22 |
comment |
What are some things that you do to make sure a project is ready to be released? On the outset this answer sounds right, but I greatly disagree with it. Have developers that take responsibility for their code and eat your own dog food. If you don't have developers that take pride in their work, then no final steps will help turn the source code from bad quality to good quality, without of course rewriting everything ;-) |
|
Jul 22 |
answered | What are some things that you do to make sure a project is ready to be released? |
|
Jul 22 |
answered | Release engineering: what books? |
|
Jun 30 |
comment |
Light weight alternative to Hibernate? squill.dev.java.net is down? |
|
Jun 30 |
answered | sqlite3 and multiple processes… |
|
Jun 30 |
revised |
C# compilation time for large projects (compared to C++) edited body; deleted 5 characters in body |
|
Jun 30 |
answered | C# compilation time for large projects (compared to C++) |
|
Jun 29 |
comment |
What’s the strangest corner case you’ve seen in C# or .NET? I am speaking about scoping rules which is part of the core of the language. You are speaking about the standard library. But it's now clear to me that I should simply read the tiny specification of c# language before I start programming in it. |
|
Jun 26 |
answered | Hi I need to write Insert Query in SQLite3 in iPhone |
|
Jun 26 |
comment |
What’s the strangest corner case you’ve seen in C# or .NET? Well it is valid in C/C++. And since it is C# I would have liked it to still work. What bugs me the most is that there is no reason for the compiler to do this. It's not like it hard to do nested scoping. I guess it all comes down to the element of least suprise. Meaning that it can be that the spec says this and that, but that doesn't really help me very much if it's completely illogical that it behaves that way. |
|
Jun 26 |
answered | What’s the strangest corner case you’ve seen in C# or .NET? |
|
Jun 26 |
awarded |
● |
