User Redbeard 0x0A - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:54:06Z http://stackoverflow.com/feeds/user/5862 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1843801/jquery-problem-with-a-blur-event/1843822#1843822 0 Answer by Redbeard 0x0A for jQuery problem with a blur event Redbeard 0x0A 2009-12-03T23:26:43Z 2009-12-03T23:26:43Z <p>Focus and Blur are for when you are clicking or tabbing through elements. You can also use the <a href="http://docs.jquery.com/Events/hover#overout" rel="nofollow">jQuery hover</a> events on your div (or the mouse ones, like mouseover and mouseout). It really all depends on what you are trying to do. </p> <p>You may want to work on your questions so that it is more understandable and post some example code so we can help.</p> http://stackoverflow.com/questions/1840454/which-database-should-i-use-for-home-project-use/1840999#1840999 5 Answer by Redbeard 0x0A for Which database should I use for home project use? Redbeard 0x0A 2009-12-03T16:15:52Z 2009-12-03T16:15:52Z <p>I use 2 different open-source based database engines at home:</p> <ol> <li><a href="http://www.postgresql.org" rel="nofollow">PostgreSQL</a></li> <li><a href="http://www.sqlite.org" rel="nofollow">Sqlite3</a> (built-in drivers starting with python 2.5)</li> </ol> <p>As you are coming from a background of Oracle and SQL Server, I would definitely recommend going the PostgreSQL route, it runs native on Windows (as a service, much like MSSQL/Oracle) as well as on *NIX systems. It also has a pretty decent cross-platform GUI called <a href="http://www.pgadmin.org/" rel="nofollow">pgAdmin</a>. Also, starting with version 8.3 of PostgreSQL, it is pretty much on-par performance wise with MySQL, it isn't like the older 7.x versions which were s-l-o-w.</p> <p>The <strong>biggest</strong> reason why I recommend PostgreSQL to people who have more Oracle/MSSQL experience (as opposed to MySQL) is that the SQL Syntaxes and general feel of the database engine match pretty closely. In fact PostgreSQL acts a lot like Oracle in how it handles database locking and simultaneous reading.</p> http://stackoverflow.com/questions/414982/how-to-stop-net-from-encoding-an-xml-string-with-xml-serialization 2 How to stop .NET from encoding an XML string with XML.Serialization Redbeard 0x0A 2009-01-06T00:01:23Z 2009-12-02T17:16:34Z <p>I am working with some Xml Serialization in ASP.NET 2.0 in a web service. The issue is that I have an element which is defined such as this:</p> <pre><code>&lt;System.Xml.Serialization.XmlElementAttribute(Form:=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable:=True)&gt; _ Public Property COMMENTFIELD() As String Get Return CommentField ' This is a string End Get Set(ByVal value as String) CommentField = value End Set End Property </code></pre> <p>Elsewhere in code I am constructing a comment and appending &#xA; as a line-break (according to the rules of the web service we are submitting to) between each 'comment', like this: (Please keep in mind that &#xA; is a valid XML entity representing character 10 (Line Feed I believe).</p> <pre><code>XmlObject.COMMENTFIELD = sComment1 &amp; "&amp;#xA;" &amp; sComment2 </code></pre> <p>The issue is that .NET tries to do us a favor and encode the &amp; in the comment string which ends up sending the destination web service this: <code>&amp;amp;#xA;</code>, which obviously isn't what we want.</p> <p>Here is what currently happens:</p> <pre><code>XmlObject.COMMENTFIELD = sComment1 &amp; "&amp;#xA;" &amp; sComment2 </code></pre> <p>Output: </p> <pre><code>&lt;COMMENTFIELD&gt;comment1 &amp;amp;#xA comment2&lt;/COMMENTFIELD&gt; </code></pre> <p>Output I NEED: </p> <pre><code>&lt;COMMENTFIELD&gt;comment1 &amp;#xA; comment2&lt;/COMMENTFIELD&gt; </code></pre> <p><strong>The Question Is:</strong> How do I force the .NET runtime to not try and do me any favors in regards to encoding data that I already know is XML compliant and escaped already (btw sComment1 and sComment2 would already be escaped). I'm used to taking care of my XML, not depending on something magical that happens to escape all my data behind my back!</p> <p>I need to be able to pass valid XML into the COMMENTFIELD property without .NET encoding the data I give it (as it is already XML). I need to know how to tell .NET that the data it is receiving is an XML String, not a normal string that needs escaped.</p> http://stackoverflow.com/questions/812330/what-is-the-best-way-to-code-up-a-month-and-year-drop-down-list-for-asp-net 4 What is the best way to code up a Month and Year drop down list for ASP.NET? Redbeard 0x0A 2009-05-01T17:21:54Z 2009-11-06T00:46:03Z <p>I have an internal application that I needs to have a drop down list for two date type elements: <strong>Month</strong> and <strong>Year</strong>. These values are not in a database or other repository of information.</p> <p>I know I could just setup a list with the values I need by adding them to a dictionary like object (I need to correlate the Month to the numerical representation, January => 01):</p> <pre><code>var months = new Dictionary&lt;String,String&gt;(); months.Add("01", "January"); ... </code></pre> <p>The drop down list for the year will be a bit easier as I can just choose a starting year and iterate up to the current or current+1 year in a generic list.</p> <p>Is there a better way to handle these data elements? Something built in, or a good design pattern that I should be implementing?</p> http://stackoverflow.com/questions/568444/nsthread-or-pythons-threading-module-in-pyobjc/1681481#1681481 0 Answer by Redbeard 0x0A for NSThread or pythons' threading module in pyobjc? Redbeard 0x0A 2009-11-05T15:56:31Z 2009-11-05T15:56:31Z <p>I have a different suggestion, mainly because python threading is just plain awful because of the GIL (Global Interpreter Lock), especially when you have more than one cpu core. There is a video presentation that goes into this in excruciating detail, but I cannot find the video right now - it was done by a Google employee.</p> <p>Anyway, you may want to think about using the subprocess module instead of threading (have a helper program that you can execute, or use another binary on the system. Or use NSThread, it should give you more performance than what you can get with CPython threads.</p> http://stackoverflow.com/questions/1561906/embed-video-on-a-asp-net-mvc-website/1681411#1681411 0 Answer by Redbeard 0x0A for Embed video on a asp.net-mvc website Redbeard 0x0A 2009-11-05T15:48:45Z 2009-11-05T15:48:45Z <p>I would go with flash for only one reason: the 99% (or whatever it is today) installed base.</p> <p>Then go with swfobject or JW FLV Media Player as suggested in the other answers. There is also a jQuery plugin floating around somewhere that helps deal with flash video on a site.</p> http://stackoverflow.com/questions/1680864/why-the-expression-for-live-needs-to-be-evaluated-in-jquery/1681398#1681398 1 Answer by Redbeard 0x0A for Why the expression for live needs to be evaluated in jQuery Redbeard 0x0A 2009-11-05T15:46:19Z 2009-11-05T15:46:19Z <p>My understanding of why it grabs all the elements from the DOM is because that is what the $() function does, then after it has selected the DOM elements it executes the function live().</p> <p>In that case, you would need to use one of the workarounds suggested elsewhere in the answers here.</p> http://stackoverflow.com/questions/1653419/cross-platform-programming-language-with-a-decent-gui-toolkit/1681376#1681376 0 Answer by Redbeard 0x0A for Cross-Platform Programming Language with a decent gui toolkit? Redbeard 0x0A 2009-11-05T15:42:37Z 2009-11-05T15:42:37Z <p>I would suggest going the wxPython route, I know that wxWidgets (which is what wxPython is using) can be made to have great looking Mac apps (look at PgAdmin3 from postgresql). While PgAdmin3 is not done in python, it was done with wxWidgets and looks fine on a mac.</p> http://stackoverflow.com/questions/1461015/ul-dont-stay-within-their-containing-divs/1461054#1461054 0 Answer by Redbeard 0x0A for UL don't stay within their containing DIVs? Redbeard 0x0A 2009-09-22T16:12:34Z 2009-09-22T16:12:34Z <p>You usually lose the list decorations to the overflow of a div when your UL/OL and LI don't have enough padding, or you are floating elements or display: inline.</p> <p>Try adding some padding/margins to your list items (LI element).</p> http://stackoverflow.com/questions/1455532/ffmpeg-and-pythons-subprocess/1455541#1455541 -1 Answer by Redbeard 0x0A for FFMPEG and Pythons subprocess. Redbeard 0x0A 2009-09-21T16:53:00Z 2009-09-22T16:09:48Z <p><strong>FFMPEG:</strong></p> <p>FFMPEG output all the status text (what you see when you run it manually on the command line) on the stderr interface. In order to capture output from ffmpeg, you need to be watching the stderr interface - or redirecting it like the example.</p> <p><strong>Check for output on stderr:</strong></p> <p><em>Here is another way to try and read from stderr, instead of redirecting it when calling Popen</em></p> <p>The <a href="http://docs.python.org/library/subprocess.html" rel="nofollow">Popen class</a> in Python has an file object called stderr, you would access it in the same way that you are accessing stdout. I'm thinking your loop would look something like this:</p> <pre><code>while 1: print convert.ffmpeg.stdout.readline() print convert.ffmpeg.stderr.readline() </code></pre> <p><em>Disclaimer: I haven't tested this in Python, but I made a comparable application using Java.</em></p> http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/1348796#1348796 0 Answer by Redbeard 0x0A for How do you vent stress as a programmer? Redbeard 0x0A 2009-08-28T19:09:27Z 2009-08-28T19:09:27Z <p>Make sure that you use your vacation time (and make sure that when you get hired that you get enough during the year)...</p> http://stackoverflow.com/questions/1178750/i-have-one-month-to-get-up-to-speed-on-one-web-development-framework/1178774#1178774 0 Answer by Redbeard 0x0A for I have one month to get up to speed on ONE web development framework Redbeard 0x0A 2009-07-24T16:37:19Z 2009-07-24T16:37:19Z <p>I would go with ASP.NET MVC as you can use it both in a .NET environment and a Mono environment (with a couple caveats), this allows your clients to run both Linux and Windows environments.</p> <p><a href="http://asp.net/mvc" rel="nofollow">ASP.NET MVC</a></p> <p><a href="http://www.mono-project.com/" rel="nofollow">Mono</a></p> http://stackoverflow.com/questions/1173914/change-alpha-for-an-image-hover-in-css2-standard/1174072#1174072 0 Answer by Redbeard 0x0A for Change alpha for an image hover in CSS2 standard? Redbeard 0x0A 2009-07-23T19:51:09Z 2009-07-23T19:51:09Z <p>The typical way a web developer implements the transparent effects is using a partially transparent PNG file as a background.</p> <pre><code>div { background: #FFF url(img/bg.png) repeat top left; } </code></pre> <p>Using the png will work as you would expect, however opacity doesn't work as expected:</p> <pre><code>div { filter: alpha(opacity=50); /* IE */ -moz-opacity: 0.5; /* Firefox */ -webkit-opacity: 0.5; /* Older Safari, Webkit */ opacity: 0.5; /* CSS Standard - Always last in the list */ } </code></pre> <p>This will make DIV 50% transparent, including all of its children, text and all. You will really need to play around with the opacity settings to make sure you get results as you would expect.</p> http://stackoverflow.com/questions/1173798/django-really-slow-with-large-datasets-after-doing-some-python-profiling/1173991#1173991 3 Answer by Redbeard 0x0A for Django (?) really slow with large datasets after doing some python profiling Redbeard 0x0A 2009-07-23T19:37:52Z 2009-07-23T19:37:52Z <p>There is a lot of things to assume about your problem as you don't have any type of code sample.</p> <p>Here are my assumptions: You are using Django's built-in ORM tools and models (i.e. sales-data = modelobj.objects().all() ) and on the PHP side you are dealing with direct SQL queries and working with a query_set.</p> <p>Django is doing a lot of type converting and casting to datatypes going from a database query into the ORM/Model object and the associated manager (objects() by default).</p> <p>In PHP you are controlling the conversions and know exactly how to cast from one data type to another, you are saving some execution time based on that issue alone.</p> <p>I would recommend trying to move some of that fancy number work into the database, especially if you are doing record-set based processing - databases eat that kind of processing from breakfast. In Django you can send RAW SQL over to the database: <a href="http://docs.djangoproject.com/en/dev/topics/db/sql/#topics-db-sql" rel="nofollow">http://docs.djangoproject.com/en/dev/topics/db/sql/#topics-db-sql</a></p> <p>I hope this at least can get you pointed in the right direction...</p> http://stackoverflow.com/questions/965468/choosing-the-right-open-source-license/965525#965525 1 Answer by Redbeard 0x0A for Choosing the right Open Source License Redbeard 0x0A 2009-06-08T15:35:33Z 2009-06-08T15:35:33Z <p>Releasing a product or chunk of code with an Open Source license is primarily a way for you to share your work with other people. It allows them to use the code (persuant to the terms of the license) and does not prevent competing products or redistribution.</p> <p>If you don't want your code to be released or used by others, then you definitely do not want to release it as open source.</p> <p>However if you are wanting to share your code, but don't want other people to basically rip-off your work and not keep sharing it, the GPL is the best way to go there. It requires that anybody that uses your code to share your code and their modifications when they distribute their copy - this keeps everything out in the open.</p> <p>By the sound of your question however, it looks like you should be writing your own proprietary license or just not releasing your code. If you have to share this code with others, make sure you include a copyright notice under your name stating you have reserved all rights to the software.</p> http://stackoverflow.com/questions/965347/how-can-i-temporary-turn-off-a-static-page/965474#965474 0 Answer by Redbeard 0x0A for How can I temporary turn off a static page? Redbeard 0x0A 2009-06-08T15:29:09Z 2009-06-08T15:29:09Z <p>If the page you are wanting to temporarily 'hide' is a php page, you could do something like this at the top of that php file you want to 'hide'.</p> <pre><code>&lt;?php header('Location: http://www.example.com/not_available.html'); die(); ?&gt; </code></pre> <p>Just replace the url after <code>Location:</code> to a placeholder page of your choosing.</p> <p>There are other HTTP header tricks you could do, like returning a 404, 503, etc.</p> <p><a href="http://phpweby.com/tutorials/php/35" rel="nofollow">http://phpweby.com/tutorials/php/35</a></p> <p>You could also use the .htaccess trick suggested by @andrew-g-johnson, using the .htaccess file shouldn't have much of an impact performance wise, especially compared to doing it inside PHP.</p> http://stackoverflow.com/questions/857438/need-a-good-version-control-for-sql-and-crystal-reports/941955#941955 1 Answer by Redbeard 0x0A for Need a good version control for SQL and Crystal Reports Redbeard 0x0A 2009-06-02T21:14:49Z 2009-06-02T21:14:49Z <p>You can use standard version control tools for Crystal Report files. However dealing with the databases is a bit more difficult.</p> <h3>Visual Studio Team System 2008 Database Edition (Data Dude)</h3> <p>You can use this version of Visual Studio to manage your database, the definition of the database tables, views, stored procedures, functions, etc are stored as create scripts (as if you were starting from a blank DB). The visual studio functions then will create a database differential (Schema Compare or Data Compare) and generate the scripts that would be required to go from one version of the database to another (i.e. between DEV and TEST instances).</p> <p>The database definitions are what gets put into version control (so you can see at any point in time what the database looked like) and Visual Studio fills in the rest by generating the proper scripts to go from one version to another.</p> <h3>The Hard Way</h3> <p>Keep track of your databases, scripts that modified the database and the migration pattern. If you wanted to get to a version of the database, you would start with an empty db, then run each script in succession until you reached the desired version of the database.</p> <p>This is basically what Ruby on Rails does when using the db_migration features, it however can go backwards through versions if you coded the migration files correctly - but I assume you are working with .NET on Windows.</p> http://stackoverflow.com/questions/927626/how-do-you-deal-with-internet-explorer/927802#927802 6 Answer by Redbeard 0x0A for How do you deal with Internet Explorer? Redbeard 0x0A 2009-05-29T19:46:42Z 2009-05-29T19:46:42Z <p>Here is how I try to reduce the pain of dealing with IE:</p> <ol> <li>Use a reset.css - <a href="http://developer.yahoo.com/yui/reset/" rel="nofollow">Yahoo! YUI Reset</a> or <a href="http://meyerweb.com/eric/tools/css/reset/" rel="nofollow">Eric Meyer's Reset CSS</a></li> <li>Be careful with floats, clears - they typically cause a lot of cursing.</li> <li>Be aware of hasLayout bugs in IE, typically adding a zoom: 1 or height attributes helps fix this. Read <a href="http://www.satzansatz.de/cssd/onhavinglayout.html" rel="nofollow">On Having Layout</a>.</li> <li>Get the layout working in Firefox, Safari, Chrome, etc while keeping IE about 80% of the way there.</li> <li>Implement a IE6.css style and an IE7.css style if needed using conditional comments.</li> <li>Beer, Liquor or other adult beverages.</li> </ol> http://stackoverflow.com/questions/927598/is-there-a-performance-hit-for-using-mdf-mssql-files-instead-of-database/927751#927751 0 Answer by Redbeard 0x0A for Is there a performance hit for using MDF MSSQL files instead of "database"? Redbeard 0x0A 2009-05-29T19:36:25Z 2009-05-29T19:36:25Z <p>The only difference beyond the normal resource limits of the Express version of SQL Server is a negligable startup cost while the SQL Express engine connects to the MDF file, does its routine checks for file integrity and transaction log stuff. </p> <p>This should only happen on application start up, not for every request.</p> http://stackoverflow.com/questions/927515/is-it-worth-going-to-git-from-svn-for-a-single-developer/927735#927735 2 Answer by Redbeard 0x0A for Is it worth going to Git from SVN for a single developer? Redbeard 0x0A 2009-05-29T19:32:10Z 2009-05-29T19:32:10Z <p>I have used these systems in the manner which you describe, under Windows with Visual Studio 2008:</p> <ul> <li>Visual Source Safe</li> <li>Subversion</li> <li>Mercurial</li> <li>Git</li> </ul> <p>If you value your life, <em>do not</em> <strong>ever</strong> use Visual Source Safe...</p> <h3>Subversion</h3> <ul> <li>Pros: Excellent tools, both on the server and client side. <a href="http://www.visualsvn.com" rel="nofollow">VisualSVN</a> and <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a>.</li> <li>Cons: It doesn't handle merging things too well.</li> </ul> <h3>Git</h3> <ul> <li>Pros: Excellent merging support, fast.</li> <li>Cons: Windows tools are almost non-existent, the GUI ones that do exist are so horrible, I hope I don't ever have to use them again. <em>(my opinion)</em></li> </ul> <h3>Mercurial</h3> <ul> <li>Pros: Excellent merging support, decent tools. <a href="http://bitbucket.org/tortoisehg/stable/wiki/Home" rel="nofollow">TortoiseHG</a> and <a href="http://sharesource.org/project/visualhg/" rel="nofollow">VisualHG</a>, Python based - hook scripts can be written in Python, hooking directly into the HG api.</li> <li>Cons: Tools are not up to the same par as with SVN.</li> </ul> http://stackoverflow.com/questions/926989/check-if-username-exists/927073#927073 2 Answer by Redbeard 0x0A for Check If Username Exists Redbeard 0x0A 2009-05-29T17:01:30Z 2009-05-29T17:01:30Z <p>If you are trying to determine if a user exists in MySQL (i.e. a user name exists that can login to MySQL itself).</p> <pre><code>select user,host from mysql.user where user = 'username'; </code></pre> <p>If you need to filter by host:</p> <pre><code>select user,host from mysql.user where user = 'username' and host = 'localhost'; </code></pre> <p>These queries lets you see who has access to the MySQL database server and only is accessible if you are an administrator for a MySQL server.</p> http://stackoverflow.com/questions/922378/roles-available-with-windows-authentication/923498#923498 2 Answer by Redbeard 0x0A for Roles available with Windows Authentication Redbeard 0x0A 2009-05-28T22:22:53Z 2009-05-28T22:22:53Z <p>If you don't need to do this programatically, but you are trying to determine the correct Windows Groups/Roles that need to be specified, you can use this from the command line:</p> <pre><code>C:\&gt; net group /domain (lists all Roles in the domain) C:\&gt; net user &lt;username&gt; /domain (lists info, including roles for a user) </code></pre> <p>Otherwise you will need to query the LDAP part of Active Directory, or use something under DirectoryServices.</p> <p>Take a look at these websites to access Active Directory via C#:</p> <ul> <li><a href="http://en.csharp-online.net/User%5FManagement%5Fwith%5FActive%5FDirectory" rel="nofollow">Howto: (Almost) Everything In Active Directory via C# - Codeproject</a></li> <li><a href="http://www.codeproject.com/KB/system/everythingInAD.aspx" rel="nofollow">User Management with Active Directory</a></li> </ul> http://stackoverflow.com/questions/911558/develop-locally-on-sql-server-2005-then-deploying-to-shared-hosting/911624#911624 1 Answer by Redbeard 0x0A for Develop Locally on SQL Server 2005 then Deploying to Shared Hosting Redbeard 0x0A 2009-05-26T16:40:36Z 2009-05-26T16:47:47Z <p>A couple of options:</p> <h3>Keep track of your database's DDL scripts</h3> <p>You have a set of scripts that can be executed to create or update your database. You could actually pull DDL statements from your SQL Server database itself. Look in the INFORMATION_SCHEMA system views.</p> <p>Example, to get information about stored procedures and their definitions, look at the ROUTINE_DEFINITION field (keep in mind you'll find some other procedures that you didn't define, but come built-in to sql server):</p> <pre><code>SELECT SPECIFIC_SCHEMA,SPECIFIC_CATALOG, SPECIFIC_NAME, ROUTINE_DEFINITION FROM INFORMATION_SCHEMA.ROUTINES </code></pre> <h3>Use Visual Studio Database Team Edition (Comes with Developer Team Edition)</h3> <p>Basically it does the above for you and streamlines the setup and revision control of your database. It allows you to define data and structure, has a lot of Unit testing features as well.</p> <h3>Backup and Restore of your local database</h3> <p>Backup your local database, upload it to your host, restore the database there.</p> <h3>Copy/Move your MDF/LDF files</h3> <p>Similar to the backup/restore, you need to detach your database, copy or move the files to your web host and then reattach there.</p> <h3>Use the SQL Server engine to attach MDF/LDF files in the App_Data folder of ASP.NET</h3> <p>There should be a few examples of how this is done. It treats the database as a file, but it does require a SQL Server engine to be installed on the web host.</p> <p>As an example, taken from an ASP.NET MVC template (web.config):</p> <pre><code>&lt;connectionStrings&gt; &lt;add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/&gt; &lt;/connectionStrings&gt; </code></pre> http://stackoverflow.com/questions/911273/django-python-userwarning-error/911596#911596 0 Answer by Redbeard 0x0A for Django/Python UserWarning Error Redbeard 0x0A 2009-05-26T16:33:10Z 2009-05-26T16:33:10Z <p>Do you have write permissions to all the files within the application you are working with. Also make sure you have everything in settings.py setup correctly, make sure specified paths exist and you have permissions.</p> http://stackoverflow.com/questions/910683/why-is-id-in-the-url-a-bad-idea/911099#911099 6 Answer by Redbeard 0x0A for Why is ID in the URL a bad idea? Redbeard 0x0A 2009-05-26T14:47:45Z 2009-05-26T14:47:45Z <p>The reason people are saying that {ID} in the URL is bad is due to the way search engine algorithms work. When a search term is located in the actual URL, it is weighted much more heavily than the content of the page, etc.</p> <p><hr /></p> <p>For example:</p> <pre><code>&lt;!-- http://example.com/blog/57 --&gt; &lt;html&gt;&lt;head&gt;&lt;title&gt;An article on search engine optimization&lt;/title&gt;... </code></pre> <p>vs</p> <pre><code>&lt;!-- http://example.com/blog/an-article-on-search-engine-optimization --&gt; &lt;html&gt;&lt;head&gt;&lt;title&gt;An article on search engine optimization&lt;/title&gt;... </code></pre> <p>If you do a search in Google for "Search Engine Optimization" the second page, the one with the slug in the url will weight as a better result than the one with only the id.</p> <p><hr /></p> <p>You can deal with this in the same way that stack overflow deals with this issue:</p> <pre><code>http://stackoverflow.com/questions/{id}/{slug} http://stackoverflow.com/questions/910683/why-is-id-in-the-url-a-bad-idea </code></pre> <p>The combined id and slug format really helps you achieve the best of both worlds. You get the ease of programming by retrieving records by {id}, but you also retain the optimized search URL because of the {slug}. </p> http://stackoverflow.com/questions/898174/should-i-use-button-or-a-submitting-a-styled-web-form/898332#898332 3 Answer by Redbeard 0x0A for Should I use <button> or <a>, submitting a styled web form Redbeard 0x0A 2009-05-22T15:02:07Z 2009-05-22T15:02:07Z <p>Internet Explorer 6 only supports the :hover CSS attributes for anchors .</p> <p>If you are supporting IE6, you will need to use some javascript solution like @charles suggested, basically you need to dynamically add/remove classes to the element. I usually put these 'fixes' in an IE6.js file with conditional comments.</p> <p>Using <a href="http://www.jquery.com/" rel="nofollow">jQuery</a> is optional, but it really helps cut down the amount of javascript you have to write to achieve these effects.</p> http://stackoverflow.com/questions/898198/why-would-i-use-asp-net-mvc-on-a-public-site-and-webforms-on-an-intranet/898270#898270 9 Answer by Redbeard 0x0A for Why would I use ASP.NET MVC on a public site and WebForms on an Intranet? Redbeard 0x0A 2009-05-22T14:51:25Z 2009-05-22T14:51:25Z <p>I think I have an idea as to why that internal vs external distinction came up in your previous question.</p> <p><strong>Using MVC for external websites</strong> affords you the flexibility needed to support more browsers and makes developing web standards compliant sites easier. MVC requires a little bit more work to do some of the same things as Web Forms, but you have more control over what is output to the client.</p> <p><strong>Using WebForms for internal apps</strong> is suggested because you have full control over what browsers are used on your network. Also, internal apps are typically not given the same budgets as external sites. Web Forms allows you to whip together a database grid, paging, sorting, etc in a matter of minutes by dragging and dropping code to an ASPX page. The motivation I believe is purely money and time based.</p> <p><hr /></p> <p>I however do not think that this <em>line in the sand</em> is a good one to make. I know there are some websites that I have worked on with WebForms that required a lot of hair pulling that simply wouldn't have happened if I used MVC. But I also have some sites that didn't need the level of flexibility, so I used WebForms.</p> <p>The biggest advantage that I see with ASP.NET MVC is AJAX. It is easier for me to deal with jQuery AJAX requests when using MVC as opposed to WebForms. I am also a control freak, so using MVC satisfies that aspect as well...</p> http://stackoverflow.com/questions/893781/correct-non-www-users-to-full-www-domain-name-in-asp-net-mvc/893834#893834 2 Answer by Redbeard 0x0A for correct non www users to full www domain name in ASP.Net MVC Redbeard 0x0A 2009-05-21T16:35:00Z 2009-05-21T16:46:00Z <p>The most common way of dealing with this is to do a redirect when the URL isn't what you expected. Typically this is done using some sort of mod_rewrite module.</p> <p>In ASP.NET MVC, you would have to catch the incoming request as early as you can in the request lifecycle, check the URL and then redirect (response code 301 or 302) to the correct URL if need be.</p> <p>I found sample code from this blog post: <a href="http://www.rrreese.com/Article/Show/Canonical%20URLS%20With%20ASP.NET%20MVC" rel="nofollow">Canonical urls With ASP.NET MVC</a>. It demonstrates one way of accomplishing this:</p> <pre><code>protected void Application_BeginRequest(Object sender, EventArgs e) { if (Request.Url.Authority.StartsWith("www")) return; string url = (Request.Url.Scheme + "://www." + HttpContext.Current.Request.Url.Authority + HttpContext.Current.Request.Url.AbsolutePath ); Response.Clear(); Response.Status = "301 Moved Permanently"; Response.AddHeader("Location", url); Response.End(); } </code></pre> <p>For those of us doing things with Mono and Apache or using one of the mod_rewrite extensions to IIS, here is a mod_rewrite example:</p> <pre><code>RewriteEngine On RewriteCond %{HTTP_HOST} ^example.com$ [NC] RewriteRule ^(.*)$ http://www.example.com$1 [R=301,L] </code></pre> <p>Following these suggestions about having an A record or CNAME only allow people to access the site from both domains, but it reduces your <em>Google Juice</em> because you have the same content at two <em>different</em> URLs.</p> http://stackoverflow.com/questions/883697/is-there-a-particular-category-of-company-that-programmers-should-avoid-working-f/883796#883796 7 Answer by Redbeard 0x0A for Is there a particular category of company that programmers should avoid working for? Redbeard 0x0A 2009-05-19T16:29:25Z 2009-05-19T16:29:25Z <p>Not all IT in banks are horrible to work in as @binary-worrier mentioned. It really depends on how the company views IT, this is something that isn't limited to financial services either.</p> <p>A good developer should never take a job where the company views IT as a cost-center. On the flip-side, a company that views IT as a strategic advantage is where you should be. When IT is viewed as strategic advantage, they actually put money into the organization and support it from the top down. However the cost-center view will only ever treat IT as the red-headed step-child...</p> <p><strong>Work for a company that views IT as a strategic advantage!</strong></p> http://stackoverflow.com/questions/812330/what-is-the-best-way-to-code-up-a-month-and-year-drop-down-list-for-asp-net/812509#812509 1 Answer by Redbeard 0x0A for What is the best way to code up a Month and Year drop down list for ASP.NET? Redbeard 0x0A 2009-05-01T18:11:44Z 2009-05-01T18:11:44Z <p>Here is my solution, which is very similar to @jesse-brown's solution (the accepted answer)</p> <p>VB.NET:</p> <p>In a global functions class:</p> <pre><code>Public Shared Function GetMonthList() As Generic.Dictionary(Of String, String) Dim months As New Generic.Dictionary(Of String, String)() For m As Int32 = 1 To 12 months.Add(String.Format("{0:0#}", m), CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(m)) Next Return months End Function </code></pre> <p>On the ASPX page:</p> <pre><code>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load ddMonth.DataSource = GlobalFunctions.GetMonthList() ddMonth.DataValueField = "Key" ddMonth.DataTextField = "Value" ddMonth.DataBind() End Sub </code></pre> <p>This implementation is in VB.NET because that happens to be what this webapp is using (legacy), however thank you very much for the examples in C# (my preferred language), I'm posting the VB.NET here to help the VB.NET community as well.</p> http://stackoverflow.com/questions/414982/how-to-stop-net-from-encoding-an-xml-string-with-xml-serialization/1834417#1834417 Comment by Redbeard 0x0A on How to stop .NET from encoding an XML string with XML.Serialization Redbeard 0x0A 2009-12-03T15:32:06Z 2009-12-03T15:32:06Z 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 &lt;br /&gt;). Anyway, you really should have started a new question, people are not going to see this question here... http://stackoverflow.com/questions/1320645/has-anyone-successfully-built-a-pyobjc-app-in-snow-leopard/1393479#1393479 Comment by Redbeard 0x0A on Has anyone successfully built a PyObjC app in Snow Leopard? Redbeard 0x0A 2009-11-05T15:58:38Z 2009-11-05T15:58:38Z 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. http://stackoverflow.com/questions/1653419/cross-platform-programming-language-with-a-decent-gui-toolkit/1656490#1656490 Comment by Redbeard 0x0A on Cross-Platform Programming Language with a decent gui toolkit? Redbeard 0x0A 2009-11-05T15:40:41Z 2009-11-05T15:40:41Z In addition, SWT has more native looking controls than other Java tools. http://stackoverflow.com/questions/1461015/ul-dont-stay-within-their-containing-divs/1461023#1461023 Comment by Redbeard 0x0A on UL don't stay within their containing DIVs? Redbeard 0x0A 2009-09-22T16:15:01Z 2009-09-22T16:15:01Z 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. http://stackoverflow.com/questions/1461015/ul-dont-stay-within-their-containing-divs/1461047#1461047 Comment by Redbeard 0x0A on UL don't stay within their containing DIVs? Redbeard 0x0A 2009-09-22T16:14:05Z 2009-09-22T16:14:05Z 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. http://stackoverflow.com/questions/1455532/ffmpeg-and-pythons-subprocess/1455541#1455541 Comment by Redbeard 0x0A on FFMPEG and Pythons subprocess. Redbeard 0x0A 2009-09-22T16:04:12Z 2009-09-22T16:04:12Z 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... http://stackoverflow.com/questions/1455517/retreive-a-html-elements-id-using-jquery/1455522#1455522 Comment by Redbeard 0x0A on Retreive a HTML elements id using jQuery Redbeard 0x0A 2009-09-21T16:51:15Z 2009-09-21T16:51:15Z +1 for the most complete answer at the time. I love jquery! http://stackoverflow.com/questions/1178750/i-have-one-month-to-get-up-to-speed-on-one-web-development-framework/1178765#1178765 Comment by Redbeard 0x0A on I have one month to get up to speed on ONE web development framework Redbeard 0x0A 2009-07-25T03:39:03Z 2009-07-25T03:39:03Z 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 <i>stateless</i> request/response service. http://stackoverflow.com/questions/1178750/i-have-one-month-to-get-up-to-speed-on-one-web-development-framework/1178769#1178769 Comment by Redbeard 0x0A on I have one month to get up to speed on ONE web development framework Redbeard 0x0A 2009-07-25T03:36:38Z 2009-07-25T03:36:38Z 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... http://stackoverflow.com/questions/1173798/django-really-slow-with-large-datasets-after-doing-some-python-profiling/1173991#1173991 Comment by Redbeard 0x0A on Django (?) really slow with large datasets after doing some python profiling Redbeard 0x0A 2009-07-23T19:56:32Z 2009-07-23T19:56:32Z 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. http://stackoverflow.com/questions/1173798/django-really-slow-with-large-datasets-after-doing-some-python-profiling/1173991#1173991 Comment by Redbeard 0x0A on Django (?) really slow with large datasets after doing some python profiling Redbeard 0x0A 2009-07-23T19:54:28Z 2009-07-23T19:54:28Z 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. http://stackoverflow.com/questions/1173914/change-alpha-for-an-image-hover-in-css2-standard/1173927#1173927 Comment by Redbeard 0x0A on Change alpha for an image hover in CSS2 standard? Redbeard 0x0A 2009-07-23T19:45:17Z 2009-07-23T19:45:17Z By the way, opacity: 0.5; works in IE8, you don't need the -ms-filter style - Browser Mode: IE8, Document Mode: IE8 Standards. http://stackoverflow.com/questions/1173914/change-alpha-for-an-image-hover-in-css2-standard/1173927#1173927 Comment by Redbeard 0x0A on Change alpha for an image hover in CSS2 standard? Redbeard 0x0A 2009-07-23T19:41:40Z 2009-07-23T19:41:40Z 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. http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/194142#194142 Comment by Redbeard 0x0A on Hidden Features of ASP.NET Redbeard 0x0A 2009-06-12T18:42:01Z 2009-06-12T18:42:01Z I like it when you find half an aspx page in &lt;!-- comments ... http://stackoverflow.com/questions/927515/is-it-worth-going-to-git-from-svn-for-a-single-developer/927735#927735 Comment by Redbeard 0x0A on Is it worth going to Git from SVN for a single developer? Redbeard 0x0A 2009-06-01T21:42:46Z 2009-06-01T21:42:46Z @hasen-j: The issues I had with msysgit was with networked drives, it kept on crashing and made it much less effective (even mapped network drives). It is possible they may have fixed that since I last worked with git.