User EndangeredMassa - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:03:36Z http://stackoverflow.com/feeds/user/106 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/30485/what-is-a-reasonable-length-limit-on-person-name-fields 2 What is a reasonable length limit on person "Name" fields? EndangeredMassa 2008-08-27T15:40:54Z 2009-11-25T09:49:18Z <p>I have a simple webform that will allow unauthenticated users to input their information, including name. I gave the name field a limit of 50 characters to coincide with my database table where the field is varchar(50), but then I started to wonder.</p> <p>Is it more appropriate to use something like the Text column type or should I limit the length of the name to something reasonable?</p> <p>I'm using SQL Server 2005, in case that matters in your response.</p> <p><strong>EDIT:</strong> I did not see <a href="http://beta.stackoverflow.com/questions/20958/list-of-standard-lengths-for-database-fields#21012" rel="nofollow">this broader question</a> regarding similar issues.</p> http://stackoverflow.com/questions/1704066/c-regex-and-html-end-at-the-first/1704138#1704138 0 Answer by EndangeredMassa for C# regex and html, end at the first " EndangeredMassa 2009-11-09T21:54:02Z 2009-11-09T22:28:53Z <p>You <code>.*</code> is too greedy. Change it to the following and it will select everything up to the next double-quote.</p> <pre><code>Source Text: &lt;img src="http://url.com/file.png" border="0" alt="" /&gt; &lt;img src='http://url.com/file.png' border='0' alt='' /&gt; RegEx: &lt;img\s*src\s*=\s*[\"\']([^\"\']+)[\"\'] </code></pre> <p>I just changed the <code>(.*</code>) to <code>([^"]+)</code>. This means that you'll grab every non-double-quote character up to the next part of the regex. It also supports single- or double-quotes.</p> http://stackoverflow.com/questions/1693905/jquery-code-is-malfunctioning/1693918#1693918 2 Answer by EndangeredMassa for JQuery: Code is malfunctioning EndangeredMassa 2009-11-07T18:10:31Z 2009-11-07T18:10:31Z <p>You need a closing script tag before the closing head tag.</p> <pre><code>&lt;/script&gt; &lt;/head&gt; </code></pre> http://stackoverflow.com/questions/1683532/how-do-i-package-a-custom-truetype-font-with-a-web-site-so-the-browsers-will-rend/1683561#1683561 4 Answer by EndangeredMassa for How do I package a custom TrueType font with a web site so the browsers will render it? EndangeredMassa 2009-11-05T20:59:05Z 2009-11-05T21:04:23Z <p>There is currently no standard way to do this. You could use <a href="https://developer.mozilla.org/index.php?title=En/CSS/@font-face" rel="nofollow">@font-face</a>, but it's not supported in all browsers. As <a href="http://stackoverflow.com/users/25549/lance-mcnearney">Lance</a> mentioned, <a href="http://webfonts.info/wiki/index.php?title=@font-face%5Fbrowser%5Fsupport" rel="nofollow">this</a> is a great place to find a support reference for the major browsers.</p> <p>There is an effort to standardize this type of thing. The <a href="http://arstechnica.com/web/news/2009/11/web-open-font-format-backed-by-mozilla-type-foundries.ars?utm%5Fsource=rss&amp;utm%5Fmedium=rss&amp;utm%5Fcampaign=rss" rel="nofollow">Web Open Font Format</a> (WOFF) is such an effort. It looks like this may even be adopted by the major browsers in the future. We will have to wait and see. </p> <p>For now, the best you can do is to reference your font like you normally would, but add a default (standard) font after that.</p> <pre><code>font-family: "Arial Rounded MT Bold", "Times New Roman", Serif </code></pre> http://stackoverflow.com/questions/1674037/get-html-out-between-div-tag/1674058#1674058 7 Answer by EndangeredMassa for get html out between div tag EndangeredMassa 2009-11-04T14:23:20Z 2009-11-04T14:23:20Z <p><strong>Given HTML</strong></p> <pre><code>&lt;div id="divID"&gt; &lt;!-- some html --&gt; &lt;/div&gt; </code></pre> <p><strong>Using JavaScript</strong></p> <pre><code>var div = document.getElementById('divID'); alert(div.innerHTML); </code></pre> <p><strong>Using jQuery</strong></p> <pre><code>var $div = $('#divID'); alert($div.html()); </code></pre> http://stackoverflow.com/questions/1661197/valid-characters-for-javascript-variable-names/1661252#1661252 2 Answer by EndangeredMassa for Valid Characters for JavaScript Variable Names EndangeredMassa 2009-11-02T13:12:00Z 2009-11-02T13:12:00Z <p><strong>Javascript Variables</strong></p> <p>You can start a variable with any letter, <code>$</code>, or <code>_</code> character. As long as it doesn't start with a number, you can include numbers as well.</p> <p>Start: <code>[a-z], $, _</code></p> <p>Contain: <code>[a-z], [0-9], $, _</code></p> <p><strong>jQuery</strong></p> <p>You can use <code>_</code> for your library so that it will stand side-by-side with jQuery. However, there is a configuration you can set so that jQuery will not use <code>$</code>. It will instead use <code>jQuery</code>. To do this, simply set:</p> <pre><code>jQuery.noConflict(); </code></pre> <p><a href="http://docs.jquery.com/Using%5FjQuery%5Fwith%5FOther%5FLibraries" rel="nofollow">This page</a> explains how to do this.</p> http://stackoverflow.com/questions/1625288/jquery-appended-links-dont-work/1625344#1625344 3 Answer by EndangeredMassa for JQuery - Appended Links don't work EndangeredMassa 2009-10-26T15:00:23Z 2009-10-26T15:00:23Z <p>When you use the <code>jQuery.click</code> method, it's looking for all of the "a" elements that currently exist on the page. Then, when you add a new "a" element, it has no knowledge of that click event handler.</p> <p>So, there's a new event model in jQuery that allows you to bind functions to all current and future elements called <a href="http://docs.jquery.com/Events/live" rel="nofollow">Live Events</a>. You can use Live Events the same way that you use normal event binding, but they will work for all future elements specified. So, you can simply switch your binding logic to:</p> <pre><code>$('a[rel=itemPick]').live('click', function () { //code here... }) </code></pre> http://stackoverflow.com/questions/1614662/what-is-the-javascript-method-collectgarbage-when-and-why-should-it-be-used/1614708#1614708 2 Answer by EndangeredMassa for What is the Javascript method CollectGarbage()? When and why should it be used? EndangeredMassa 2009-10-23T16:59:01Z 2009-10-23T17:39:30Z <p>It's part of the Microsoft JScript library. The <a href="http://msdn.microsoft.com/en-us/library/microsoft.jscript.globalobject.collectgarbage%28VS.80%29.aspx" rel="nofollow">documentation for it</a> is pretty poor. I'm not sure how it works, but I would assume that it looks through the members of an object for things that it can delete.</p> <p>And, as bdukes mentioned, this should not be called in your code. Leave it to the inner workings of the JScript library.</p> http://stackoverflow.com/questions/1604089/get-class-value-of-element-having-multiple-classes-assigned-using-jquery/1604111#1604111 0 Answer by EndangeredMassa for Get class value of element having multiple classes assigned using jquery. EndangeredMassa 2009-10-21T22:54:12Z 2009-10-21T22:54:12Z <p>If the class isn't being used for things other than hiding and showing the element, you could just use <a href="http://docs.jquery.com/Effects/toggle" rel="nofollow">jQuery's toggle method</a> for showing and hiding elements.</p> <pre><code>$('.heading').toggle(); </code></pre> http://stackoverflow.com/questions/534977/javascript-event-handler-for-print/535079#535079 3 Answer by EndangeredMassa for Javascript Event Handler for Print EndangeredMassa 2009-02-11T01:32:43Z 2009-10-20T21:46:18Z <p><strong>Different Style Sheets</strong></p> <p>You can specify a different stylesheet for printing.</p> <pre><code>&lt;link rel="stylesheet" type="text/css" media="print" href="print.css" /&gt; &lt;link rel="stylesheet" type="text/css" media="screen" href="main.css" /&gt; </code></pre> <p><strong>One Style Sheet</strong> </p> <p>As kodecraft mentioned, you can also put the styles into the same file by using the @media block.</p> <pre><code>@media print { div.box { width:100px; } } @media screen { div.box { width:400px; } } </code></pre> http://stackoverflow.com/questions/1544116/hide-a-submit-button-in-ie7-with-css/1544124#1544124 1 Answer by EndangeredMassa for Hide a submit button in IE7 with CSS EndangeredMassa 2009-10-09T14:28:07Z 2009-10-09T14:28:07Z <p>You want to set the display to none. This works in all browsers.</p> <pre><code>.button, input.input-submit { display:none; } </code></pre> <p>If you did want the object to take up space but not appear, then you set visibility to hidden.</p> http://stackoverflow.com/questions/1534218/how-to-match-people-between-separate-systems-using-sql/1534653#1534653 1 Answer by EndangeredMassa for How to match people between separate systems using SQL? EndangeredMassa 2009-10-07T22:51:19Z 2009-10-08T18:47:01Z <p>You definitely want to weigh the different matches. If an SSN matches, that's a pretty good indication. If a firstName matches, that's basically worthless.</p> <p>You could try a scoring method based on weights for the matches, combined with the phonetic string matching algorithms you linked to. Here's an example I whipped up in T-SQL. It would have to be ported to Oracle for your issue.</p> <pre><code>--Score Threshold to be returned DECLARE @Threshold DECIMAL(5,5) = 0.60 --Weights to apply to each column match (0.00 - 1.00) DECLARE @Weight_FirstName DECIMAL(5,5) = 0.10 DECLARE @Weight_LastName DECIMAL(5,5) = 0.40 DECLARE @Weight_SSN DECIMAL(5,5) = 0.40 DECLARE @Weight_Gender DECIMAL(5,5) = 0.10 DECLARE @NewStuff TABLE (ID INT IDENTITY PRIMARY KEY, FirstName VARCHAR(MAX), LastName VARCHAR(MAX), SSN VARCHAR(11), Gender VARCHAR(1)) INSERT INTO @NewStuff ( FirstName, LastName, SSN, Gender ) VALUES ( 'Ben','Sanders','234-62-3442','M' ) DECLARE @OldStuff TABLE (ID INT IDENTITY PRIMARY KEY, FirstName VARCHAR(MAX), LastName VARCHAR(MAX), SSN VARCHAR(11), Gender VARCHAR(1)) INSERT INTO @OldStuff ( FirstName, LastName, SSN, Gender ) VALUES ( 'Ben','Stickler','234-62-3442','M' ), --3/4 Match ( 'Albert','Sanders','523-42-3441','M' ), --2/4 Match ( 'Benne','Sanders','234-53-2334','F' ), --2/4 Match ( 'Ben','Sanders','234623442','M' ), --SSN has no dashes ( 'Ben','Sanders','234-62-3442','M' ) --perfect match SELECT 'NewID' = ns.ID, 'OldID' = os.ID, 'Weighted Score' = (CASE WHEN ns.FirstName = os.FirstName THEN @Weight_FirstName ELSE 0 END) + (CASE WHEN ns.LastName = os.LastName THEN @Weight_LastName ELSE 0 END) + (CASE WHEN ns.SSN = os.SSN THEN @Weight_SSN ELSE 0 END) + (CASE WHEN ns.Gender = os.Gender THEN @Weight_Gender ELSE 0 END) , 'RAW Score' = CAST( ((CASE WHEN ns.FirstName = os.FirstName THEN 1 ELSE 0 END) + (CASE WHEN ns.LastName = os.LastName THEN 1 ELSE 0 END) + (CASE WHEN ns.SSN = os.SSN THEN 1 ELSE 0 END) + (CASE WHEN ns.Gender = os.Gender THEN 1 ELSE 0 END) ) AS varchar(MAX)) + ' / 4', os.FirstName , os.LastName , os.SSN , os.Gender FROM @NewStuff ns --make sure that at least one item matches exactly INNER JOIN @OldStuff os ON os.FirstName = ns.FirstName OR os.LastName = ns.LastName OR os.SSN = ns.SSN OR os.Gender = ns.Gender where (CASE WHEN ns.FirstName = os.FirstName THEN @Weight_FirstName ELSE 0 END) + (CASE WHEN ns.LastName = os.LastName THEN @Weight_LastName ELSE 0 END) + (CASE WHEN ns.SSN = os.SSN THEN @Weight_SSN ELSE 0 END) + (CASE WHEN ns.Gender = os.Gender THEN @Weight_Gender ELSE 0 END) &gt;= @Threshold ORDER BY ns.ID, 'Weighted Score' DESC </code></pre> <p>And then, here's the output.</p> <pre><code>NewID OldID Weighted Raw First Last SSN Gender 1 5 1.00000 4 / 4 Ben Sanders 234-62-3442 M 1 1 0.60000 3 / 4 Ben Stickler 234-62-3442 M 1 4 0.60000 3 / 4 Ben Sanders 234623442 M </code></pre> <p>Then, you would have to do some post processing to evaluate the validity of each possible match. If you ever get a 1.00 for weighted score, you can assume that it's the right match, unless you get two of them. If you get a last name and SSN (a combined weight of 0.8 in my example), you can be reasonably certain that it's correct.</p> http://stackoverflow.com/questions/1539684/css-centered-div-with-defferent-backgrounds-on-either-side/1539695#1539695 4 Answer by EndangeredMassa for [CSS] Centered DIV with defferent backgrounds on either side EndangeredMassa 2009-10-08T18:40:43Z 2009-10-08T18:40:43Z <p>You could use one of the may <a href="http://matthewjamestaylor.com/blog/perfect-3-column.htm" rel="nofollow">3-column layout options</a>. Then, just set the third column's background image to be whatever you want, repeated.</p> http://stackoverflow.com/questions/373324/how-to-escape-everything-in-a-block-in-html/373337#373337 5 Answer by EndangeredMassa for How to escape everything in a block in HTML EndangeredMassa 2008-12-17T00:56:53Z 2009-10-07T23:02:30Z <p>&lt;xmp&gt; is the tag you are looking for:</p> <pre><code>&lt;xmp&gt;some stuff &lt;tags&gt;&lt;/tags&gt; too&lt;/xmp&gt; </code></pre> <p>But, since it's depricated, the best you can get is &lt;pre&gt;.</p> http://stackoverflow.com/questions/1471687/displaying-content-in-a-loop/1471821#1471821 0 Answer by EndangeredMassa for Displaying content in a loop EndangeredMassa 2009-09-24T13:49:53Z 2009-09-24T13:49:53Z <p>You could try something like the following.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; &lt;script&gt; setInterval(function() { //Grab the container div var $container = $('#controls'); //Grab the individual divs var $controls = $container.find('div'); //Grab the very last div var lastControl = $controls[$controls.length-1]; //Move it to the front of the list. $container.prepend(lastControl); }, 3000); //repeate this every 3 seconds &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="controls"&gt; &lt;div id="div1" class="ddd"&gt;For US&lt;/div&gt; &lt;div id="div2" class="ddd"&gt;For UK&lt;/div&gt; &lt;div id="div3" class="ddd"&gt;For Canada&lt;/div&gt; &lt;div id="div3" class="ddd"&gt;For AU&lt;/div&gt; &lt;div id="div3" class="ddd"&gt;For Mexico&lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> http://stackoverflow.com/questions/1465821/the-best-place-for-the-hepler-methods-is-masterpage-or-appcode/1465838#1465838 3 Answer by EndangeredMassa for The best place for the hepler methods is MasterPage or AppCode? EndangeredMassa 2009-09-23T13:00:46Z 2009-09-23T13:27:22Z <p>If your helper function is specific to the type of page that your MasterPage templates, then go ahead and put in in there. Otherwise, add it to the App_Code. </p> <p>Don't worry about the memory required to put a function or a couple classes in the App_Code. It's not significant. </p> http://stackoverflow.com/questions/1459738/retrieving-two-values-from-a-stored-procedure/1459817#1459817 2 Answer by EndangeredMassa for Retrieving Two Values from a Stored Procedure EndangeredMassa 2009-09-22T12:29:35Z 2009-09-23T12:23:30Z <p>First, you'll want this to be split into two stored procedures. If you are ever using a bit to determine which chunk of code to execute, you're probably trying to put too much into one stored procedure.</p> <pre><code>CREATE PROCEDURE dbo.GetMessageCount ( @username nchar(12), @message_count int OUTPUT, @unread_message_count int OUTPUT ) AS SELECT @message_count = SUM(CASE WHEN message_read = 1 THEN 1 ELSE 0 END), @unread_message_count = SUM(CASE WHEN message_read &lt;&gt; 1 THEN 1 ELSE 0 END) FROM messages WHERE usernameTo = @username GO </code></pre> <p>You could do something like this for the stored procdure that will get all messages for a specific user. You don't want to use "Select *", here. You should always list the specific columns you need. I listed a few example columns.</p> <pre><code>CREATE PROCEDURE dbo.GetMessagesByUser ( @username nchar(12) ) AS SELECT MessageID, MessageSubject, MessageContent, MessageFromUser, MessageCreatedDate FROM messages WHERE usernameTo = @username GO </code></pre> http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454219#1454219 57 Answer by EndangeredMassa for Should I accept IE 5.0 (!) as a browser requirement for a project? EndangeredMassa 2009-09-21T12:13:33Z 2009-09-21T13:03:07Z <p>You should tell them that you can keep the IE5 and FF2 compatibility, but those browsers will have a gracefully degraded experience. Up-to-date browsers will have the full "web 2.0" experience.</p> <p>This will take more time and effort to ensure compatibility, but you would probably want to have it graceful degrade in the face of no JavaScript or RIA support anyway. Perhaps these can overlap, which would make it a little easier to accomplish.</p> http://stackoverflow.com/questions/5260/what-is-the-best-way-to-wrap-time-around-the-work-day 3 What is the best way to wrap time around the work day? EndangeredMassa 2008-08-07T20:21:52Z 2009-09-09T13:25:33Z <p>I have a situation where I want to add hours to a date and have the new date wrap around the work-day. I cobbled up a function to determine this new date, but want to make sure that I'm not forgetting anything.</p> <p>The hours to be added is called "delay". It could easily be a parameter to the function instead.</p> <p>Please post any suggestions. [VB.NET Warning]</p> <pre><code>Private Function GetDateRequired() As Date ''// A decimal representation of the current hour Dim hours As Decimal = Decimal.Parse(Date.Now.Hour) + (Decimal.Parse(Date.Now.Minute) / 60.0) Dim delay As Decimal = 3.0 ''// delay in hours Dim endOfDay As Decimal = 12.0 + 5.0 ''// end of day, in hours Dim startOfDay As Decimal = 8.0 ''// start of day, in hours Dim newHour As Integer Dim newMinute As Integer Dim dateRequired As Date = Now Dim delta As Decimal = hours + delay ''// Wrap around to the next day, if necessary If delta &gt; endOfDay Then delta = delta - endOfDay dateRequired = dateRequired.AddDays(1) newHour = Integer.Parse(Decimal.Truncate(delta)) newMinute = Integer.Parse(Decimal.Truncate((delta - newHour) * 60)) newHour = startOfDay + newHour Else newHour = Integer.Parse(Decimal.Truncate(delta)) newMinute = Integer.Parse(Decimal.Truncate((delta - newHour) * 60)) End If dateRequired = New Date(dateRequired.Year, dateRequired.Month, dateRequired.Day, newHour, newMinute, 0) Return dateRequired End Sub </code></pre> <p><strong>Note</strong>: This will probably not work if delay is more than 9 hours long. It should never change from 3, through.</p> <p>EDIT: The goal is find the date and time that you get as a result of adding several hours to the current time. This is used to determine a default value for a due date of a submission. I want to add 3 hours to the current time to get the due date time. However, I don't want due dates that go beyond 5pm on the current day. So, I tried to have the hours split between (today, up to 5pm) and (tomorrow, from 8am on), such that adding 3 hours to 4pm would give you 19am, because 1 hour is added to the end of today and 2 hours are added to the beginning of tomorrow.</p> http://stackoverflow.com/questions/9951/what-color-scheme-do-you-use-for-programming 27 What color scheme do you use for programming? EndangeredMassa 2008-08-13T15:33:48Z 2009-07-29T08:41:18Z <p>I get a lot of attention at work because I am the only one who bothered to change the default color settings in Visual Studio. I just modified them myself. I can provide the settings file if anyone cares to import it.</p> <p>Here's an example of how it looks.</p> <p><img src="http://i9.photobucket.com/albums/a60/EndangeredMassa/vs.gif" alt="Visual Studio 2005" title="I/O management and disk scheduling" /></p> <p>It reminds me of DOS/BASIC programming before I actually knew how to program. I also find it to be very readable.</p> <p>What color schemes do you use?!</p> <p><strong>EDIT</strong>: To clarify, I only edited the text settings. The windows and panels of VS2005 are still the windows default.</p> http://stackoverflow.com/questions/1043556/how-can-i-keep-the-context-of-this-in-jquery/1043610#1043610 0 Answer by EndangeredMassa for How can I keep the context of 'this' in jquery EndangeredMassa 2009-06-25T12:21:16Z 2009-06-25T12:21:16Z <p>That's exactly what I do. It's not specific to jQuery, either.</p> <pre><code>var Construct = function() { var self = this; //preserve scope this.materials = 2000; this.build = function(){ self.materials -= 100; }; }; </code></pre> <p>Remember to use the var keyword in front of your new scope variable. Otherwise, you're creating a new global variable. As a local variable, it will still be accessible inside the inner function via a closure.</p> http://stackoverflow.com/questions/950759/has-anyone-encountered-could-not-load-file-or-assembly-aspnetcompiler-fai 1 Has anyone encountered: "Could not load file or assembly 'aspnet_compiler... Failed to grant permission to execute"? EndangeredMassa 2009-06-04T13:57:39Z 2009-06-04T18:14:23Z <p>I am encountering a strange build issue in .NET 3.5. The compiler is crashing when it attempts to build a Web Deployment Project.</p> <blockquote> <p>C:\Program Files\MSBuild\Microsoft\WebDeployment\v9.0\Microsoft.WebDeployment.targets(531,9): error MSB6006: "aspnet_compiler.exe" exited with code -532459699.</p> </blockquote> <p>Which leads to:</p> <blockquote> <p>Could not load file or assembly 'aspnet_compiler, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. Failed to grant permission to execute. (Exception from HRESULT: 0x80131418)</p> </blockquote> <p>That section of Microsoft.WebDeployment.targets is this:</p> <pre><code>&lt;AspNetCompiler PhysicalPath="$(_AspNetCompilerSourceWebPath)" TargetPath="$(TempBuildDir)" VirtualPath="$(_AspNetCompilerVirtualPath)" Force="$(_Force)" Debug="$(DebugSymbols)" Updateable="$(EnableUpdateable)" KeyFile="$(_FullKeyFile)" KeyContainer="$(_AspNetCompilerKeyContainer)" DelaySign="$(DelaySign)" AllowPartiallyTrustedCallers="$(AllowPartiallyTrustedCallers)" FixedNames="$(_AspNetCompilerFixedNames)" Clean="$(Clean)" MetabasePath="$(_AspNetCompilerMetabasePath)" /&gt; </code></pre> <p>If I try:</p> <pre><code>aspnet_compiler.exe -errorstack -v /MyProject -p C:\MyProject -f -c -d .\TempBuildDir\ </code></pre> <p>I get:</p> <blockquote> <p>Unhandled Exception: System.IO.FileLoadException: Could not load file or assembly 'aspnet_compiler, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. Failed to grant permission to execute. (Exception from HRESULT: 0x80131418)</p> <p>File name: 'aspnet_compiler, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' ---> System.Security.XmlSyntaxException: Invalid syntax.</p> </blockquote> <p>I could build fine until I made a small code change. I've reverted the change, but I continue to encounter this error. Other team members can build the exact same source.</p> <p><strong>Things I've Tried</strong></p> <ul> <li>Reinstalling VS</li> <li>Reinstalling Web Deployment Projects addin</li> <li>Restarting</li> <li>Building with nant</li> <li>Building in VS</li> <li>Building from the command line with aspnet_compiler.exe</li> </ul> <p>Has anyone encountered this type of error before? My next step is to reformat, unless I can find something else to try.</p> http://stackoverflow.com/questions/950759/has-anyone-encountered-could-not-load-file-or-assembly-aspnetcompiler-fai/952225#952225 0 Answer by EndangeredMassa for Has anyone encountered: "Could not load file or assembly 'aspnet_compiler... Failed to grant permission to execute"? EndangeredMassa 2009-06-04T18:14:23Z 2009-06-04T18:14:23Z <p>I was finally able to build after running a full build in nant with:</p> <pre><code>nant build </code></pre> <p>I thought I tried this before. Anyway, it works now--no thanks to the error message. I imagine that my nant config for MyProject is missing a dependency, or something.</p> http://stackoverflow.com/questions/308/is-there-a-version-control-system-for-database-structure-changes 21 Is there a version control system for database structure changes? EndangeredMassa 2008-08-02T01:52:54Z 2009-05-28T02:12:15Z <p>I often run into the following problem.</p> <p>I work on some changes to a project that require new tables or columns in the database. I make the database modifications and continue my work. Usually, I remember to write down the changes so that they can be replicated on the live system. However, I don't always remember what I've changed and I don't always remember to write it down.</p> <p>So, I make a push to the live system and get a big, obvious error that there is no NewColumnX. Ugh.</p> <p>Regardless of the fact that this may not be the best practice for this situation, is there a version control system for databases? I don't care about the specific database technology. I just want to know if one exists. If it happens to work with MS SQL Server, then great.</p> http://stackoverflow.com/questions/3619/what-is-the-best-way-to-convince-my-team-that-we-should-use-project-planning-soft 3 What is the best way to convince my team that we should use project planning software? EndangeredMassa 2008-08-06T16:16:19Z 2009-05-25T16:53:28Z <p>I have tried (in vain) to convince my team that we should use Project Planning Software. I see it as a great way to plan out our projects and determine deadlines for deliverables. They see it as a hindrance to productivity.</p> <p>Is there some grand arguement that I'm missing here? I would absolutely love to see how long we planned for Milestone X, then how much time it took to complete Milestone X. That information is invaluable to me. But, they just don't see the value.</p> http://stackoverflow.com/questions/688196/how-to-use-a-link-to-call-javascript/688228#688228 11 Answer by EndangeredMassa for How To Use A Link To Call Javascript? EndangeredMassa 2009-03-27T01:50:52Z 2009-03-28T15:39:00Z <p>Unobtrusive JavaScript, no library dependency:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript"&gt; // Wait for the page to load first window.onload = function() { //Get a reference to the link on the page // with an id of "mylink" var a = document.getElementById("mylink"); //Set code to run when the link is clicked // by assigning a function to "onclick" a.onclick = function() { // Your code here... //If you don't want the link to actually // redirect the browser to another page, // "google.com" in our example here, then // return false at the end of this block. return false; } } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;a ID="mylink" href="http://www.google.com"&gt;linky&lt;/a&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/306830/how-do-i-create-a-web-application-where-i-do-not-have-access-to-the-data 7 How do I create a web application where I do not have access to the data? EndangeredMassa 2008-11-20T20:54:09Z 2009-03-11T22:22:40Z <p><em>Premise</em>: The requirements for an upcoming project include the fact that no one except for authorized users have access to certain data. This is usually fine, but this circumstance is not usual. The requirements state that there be no way for even the programmer or any other IT employee be able to access this information. (They want me to store it without being able to see it, ever.)</p> <p>In all of the scenarios I've come up with, I can always find a way to access the data. Let me describe some of them.</p> <p><strong>Scenario I:</strong> Restrict the table on the live database so that only the SQL Admin can access it directly.<br> <strong>Hack 1:</strong> I rollout a change that sends the data to a different table for later viewing. Also, the SQL Admin can see the data, which breaks the requirement.</p> <p><strong>Scenario II:</strong> Encrypt the data so that it requires a password to decrypt. This password would be known by the users only. It would be required each time a new record is created as well as each time the data from an old record was retrieved. The encryption/decryption would happen in JavaScript so that the password would never be sent to the server, where it could be logged or sniffed.<br> <strong>Hack II:</strong> Rollout a change that logs keypresses in javascript and posts them back to the server so that I can retrieve the password. Or, rollout a change that simply stores the unecrypted data in a hidden field that can be posted to the server for later viewing.</p> <p><strong>Scenario III:</strong> Do the same as Scenario II, except that the encryption/decryption happens on a website that we do not control. This magic website would allow a user to input a password and the encrypted or plain-text data, then use javascript to decrypt or encrypt that data. Then, the user could just copy the encrypted text and put the in the field for new records. They would also have to use this site to see the plain-text for old records.<br> <strong>Hack III:</strong> Besides installing a full-fledged key logger on their system, I don't know how to break this one.</p> <p>So, Scenario III looks promising, but it's cumbersome for the users. Are there any other possibilities that I may be overlooking?</p> http://stackoverflow.com/questions/619621/how-do-i-use-jquery-to-ignore-case-when-selecting/619638#619638 1 Answer by EndangeredMassa for How do I use jQuery to ignore case when selecting? EndangeredMassa 2009-03-06T17:11:01Z 2009-03-09T17:10:37Z <p>I ran into this myself. I switched the logic a bit to allow me to compare it without case. It requires a little more work, but at least it works.</p> <pre><code>$('a').each(function(i,n) { var href = $(n).attr("href"); href = href.toLowerCase(); if (href.endsWith('/sites/abcd/sectors')) $(n).removeAttr('href'); }); </code></pre> <p>You would have to figure out your own <code>endsWith</code> logic.</p> http://stackoverflow.com/questions/609552/vb6-project-exe-file-does-not-run/609558#609558 1 Answer by EndangeredMassa for VB6 project EXE file does not run EndangeredMassa 2009-03-04T07:22:50Z 2009-03-04T07:22:50Z <p>Did you modify the DLLs you have dependencies on? Try copying over the custom DLLs as well.</p> http://stackoverflow.com/questions/534228/places-that-pay-independent-developers-for-games/534288#534288 1 Answer by EndangeredMassa for Places that pay independent developers for games? EndangeredMassa 2009-02-10T21:28:55Z 2009-02-10T21:28:55Z <p><a href="http://www.kongregate.com/" rel="nofollow">Kongregate</a> is nice because they do revenue sharing and have contests with prize-money.</p> http://stackoverflow.com/questions/1625288/jquery-appended-links-dont-work/1625344#1625344 Comment by EndangeredMassa on JQuery - Appended Links don't work EndangeredMassa 2009-10-26T17:01:53Z 2009-10-26T17:01:53Z @DaNieL: Right! But, I hear that they are working on support for those events in a future release. http://stackoverflow.com/questions/1624879/visual-studio-2005-ajaxtoolkit Comment by EndangeredMassa on Visual Studio 2005 + AjaxToolkit EndangeredMassa 2009-10-26T13:46:11Z 2009-10-26T13:46:11Z Can you mention the specific build error? http://stackoverflow.com/questions/1544116/hide-a-submit-button-in-ie7-with-css/1544124#1544124 Comment by EndangeredMassa on Hide a submit button in IE7 with CSS EndangeredMassa 2009-10-09T15:16:05Z 2009-10-09T15:16:05Z This should still work in IE7. The problem might be some other part of your markup. http://stackoverflow.com/questions/1539640/how-can-i-fix-ie-select-width Comment by EndangeredMassa on how can i fix ie select width? EndangeredMassa 2009-10-08T18:37:35Z 2009-10-08T18:37:35Z Do you want the dropdownlist to expand to fit the width of the selected item? Or, do you just want to set the width of the dropdown? http://stackoverflow.com/questions/1534218/how-to-match-people-between-separate-systems-using-sql/1534653#1534653 Comment by EndangeredMassa on How to match people between separate systems using SQL? EndangeredMassa 2009-10-07T23:24:47Z 2009-10-07T23:24:47Z It is, but I imagine it could be ported. I was posting this as a concept. http://stackoverflow.com/questions/1509583/how-do-i-make-a-circle-of-images-work-like-a-fisheye-in-javascript Comment by EndangeredMassa on How do I make a circle of images work like a fisheye in JavaScript? EndangeredMassa 2009-10-02T13:47:05Z 2009-10-02T13:47:05Z This isn't a homework or do-your-work site. If you have a specific question about how to do that, ask it. If you have a general question about how to get started doing that, ask that. http://stackoverflow.com/questions/240836/dynamically-invoke-properties-by-string-name-using-vb-net/241143#241143 Comment by EndangeredMassa on Dynamically invoke properties by string name using VB.NET EndangeredMassa 2009-09-28T13:33:41Z 2009-09-28T13:33:41Z CallByName looks simpler. How does this differ from Reflection in terms of performance? http://stackoverflow.com/questions/1465821/the-best-place-for-the-hepler-methods-is-masterpage-or-appcode Comment by EndangeredMassa on The best place for the hepler methods is MasterPage or AppCode? EndangeredMassa 2009-09-23T20:15:05Z 2009-09-23T20:15:05Z FYI: People will be more like to answer your questions if you accept answers to them. http://stackoverflow.com/questions/1459738/retrieving-two-values-from-a-stored-procedure/1459817#1459817 Comment by EndangeredMassa on Retrieving Two Values from a Stored Procedure EndangeredMassa 2009-09-22T13:01:28Z 2009-09-22T13:01:28Z Some people like to make sure that all SQL calls are in SPs. I'm not convinced that that's necessary, but it is certainly mandatory at many workplaces. If you need to use one, you can do it this way. http://stackoverflow.com/questions/1459738/retrieving-two-values-from-a-stored-procedure Comment by EndangeredMassa on Retrieving Two Values from a Stored Procedure EndangeredMassa 2009-09-22T12:32:49Z 2009-09-22T12:32:49Z This isn't about elegance, it's about readability, maintainability, and best practices. Even if this is a short side project, you should still do it properly for two very good reasons. 1) It's good practice for the real deal. 2) The short side projects rarely end there; They usually keep going, building up, and eventually become a big mess when you don't start with the right foundation. http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454219#1454219 Comment by EndangeredMassa on Should I accept IE 5.0 (!) as a browser requirement for a project? EndangeredMassa 2009-09-21T17:37:38Z 2009-09-21T17:37:38Z You can use progressive enhancement to achieve graceful degradation. It's not necessarily easy, but you should be doing it anyway. http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project Comment by EndangeredMassa on Should I accept IE 5.0 (!) as a browser requirement for a project? EndangeredMassa 2009-09-21T12:29:13Z 2009-09-21T12:29:13Z Eric is right. If you accept answers to your questions, your accept rate will go up. If your accept rate is higher, people are more likely to answer your questions. http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454232#1454232 Comment by EndangeredMassa on Should I accept IE 5.0 (!) as a browser requirement for a project? EndangeredMassa 2009-09-21T12:18:12Z 2009-09-21T12:18:12Z I like this tactic. +1 http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454216#1454216 Comment by EndangeredMassa on Should I accept IE 5.0 (!) as a browser requirement for a project? EndangeredMassa 2009-09-21T12:15:34Z 2009-09-21T12:15:34Z Hah. I wish it was that simple. But, money changes everything, even our principles. =/ http://stackoverflow.com/questions/5260/what-is-the-best-way-to-wrap-time-around-the-work-day/5588#5588 Comment by EndangeredMassa on What is the best way to wrap time around the work day? EndangeredMassa 2009-09-09T13:27:56Z 2009-09-09T13:27:56Z I was looking for a way to work a modulus operation into this problem. Cool stuff.