Redbeard 0x0A

1,776
reputation
194 views

Registered User

name Redbeard 0x0A
member for 1 year
seen 19 hours ago
website
location Denver, CO
age 29
I'm a developer.

I have an IDE AND I KNOW HOW TO USE IT!
19h
answered Databases and DVCS
19h
accepted Correct way to use get_or_create?
19h
answered Solving very intermittent exception in .net app
19h
answered Correct way to use get_or_create?
20h
answered How to get textbox value from jQuery modal dialog after postback?
Dec
16
comment Are there any plans to officially support Django with IIS?
not to mention that mod_python is a royal pain in the posterior - I have to bounce mod_python apps about 10x more often than mod_wsgi/mod_uwsgi apps.
Dec
11
accepted Why the expression for live needs to be evaluated in jQuery
Dec
3
answered Which database should I use for home project use?
Dec
3
comment How to stop .NET from encoding an XML string with XML.Serialization
It might have something to do with how XML and (X)HTML deals with white space (which a line break is included). In your XSL, you should be converting that line break to an HTML element that represents a line break (such as <br />). Anyway, you really should have started a new question, people are not going to see this question here...
Nov
13
accepted Django (?) really slow with large datasets after doing some python profiling
Nov
5
comment Has anyone successfully built a PyObjC app in Snow Leopard?
I would suggest using this method, it will make developing and testing much easier since you are using a standard system and standard python from Apple.
Nov
5
answered NSThread or pythons’ threading module in pyobjc?
Nov
5
answered Embed video on a asp.net-mvc website
Nov
5
answered Why the expression for live needs to be evaluated in jQuery
Nov
5
answered Cross-Platform Programming Language with a decent gui toolkit?
Nov
5
comment Cross-Platform Programming Language with a decent gui toolkit?
In addition, SWT has more native looking controls than other Java tools.
Sep
22
comment UL don’t stay within their containing DIVs?
This is probably one of the better ways to get the bullet inside the div, however you have to keep in mind that IE vs Standards Compliant browsers (Firefox, Safari, etc) don't treat the bullet the same.
Sep
22
comment UL don’t stay within their containing DIVs?
You would use this trick if your div does not have the same height as your ul and li's. You would need to use this trick when using floats on the ul or li elements.
Sep
22
answered UL don’t stay within their containing DIVs?
Sep
22
revised FFMPEG and Pythons subprocess.
reformatted to describe where FFMPEG outputs information and separated python stderr stuff
Sep
22
comment FFMPEG and Pythons subprocess.
Yes, the stderr is redirected in the code snippit on the line with subprocess.Popen -- of course it can be cut off if you don't use the scroll bar under the code snippit...
Sep
22
awarded  Popular Question
Sep
21
revised FFMPEG and Pythons subprocess.
Added code example and link, some formatting.
Sep
21
answered FFMPEG and Pythons subprocess.
Sep
21
comment Retreive a HTML elements id using jQuery
+1 for the most complete answer at the time. I love jquery!
Sep
12
awarded  Yearling
Aug
28
answered How do you vent stress as a programmer?
Aug
26
accepted How to monitor Postfix MTA Status
Jul
25
comment I have one month to get up to speed on ONE web development framework
The way I think of ASP.NET MVC vs. ASP.NET Web Forms is that MVC treats the web as it was intended to be: A stateless request/response service.
Jul
25
comment I have one month to get up to speed on ONE web development framework
Ruby on Rails is not a closed platform, it is licensed under the MIT License and Ruby has it's own fairly open license. You should also consider that you are pushing a very closed platform in your comment anyway (I know MVC is open source and so is the C# EMCA?? Spec). I will give you that there are a lot of bad apples in the Rails community. I left Rails and started using Django anyway, so I'm not one of those Rails cheerleaders, but you cannot be spreading misinformation...
Jul
24
answered I have one month to get up to speed on ONE web development framework
Jul
23
comment Django (?) really slow with large datasets after doing some python profiling
I also don't think that your performance bottleneck is in the template engine. You could use some of the timers around key calls in your view to try and find the slowest portions of python code and improve from there.
Jul
23
comment Django (?) really slow with large datasets after doing some python profiling
The issue you may be running into regarding the adding numbers, multiplying numbers is quantity of records. If you keep the number of returned records lower, it will reduce memory overhead and the amount of time it takes to process that data. Keep this in mind: you cannot make an application faster, you can only make it do less work.
Jul
23
answered Change alpha for an image hover in CSS2 standard?
Jul
23
comment Change alpha for an image hover in CSS2 standard?
By the way, opacity: 0.5; works in IE8, you don't need the -ms-filter style - Browser Mode: IE8, Document Mode: IE8 Standards.
Jul
23
comment Change alpha for an image hover in CSS2 standard?
The advice about PNG and IE6 is really only required when dealing with PNG-24 files - IE6 supports PNG-8 files with transparency just fine.
Jul
23
answered Django (?) really slow with large datasets after doing some python profiling