User Daniel Magliola - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T23:49:40Zhttp://stackoverflow.com/feeds/user/3314http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/46031/why-does-the-asp-net-web-forms-model-suck78Why does the ASP.Net Web Forms model "suck"?Daniel Magliola2008-09-05T15:26:11Z2009-12-14T16:49:03Z
<p>I've heard Jeff Atwood, Joel Spolsky, and many other legendary people talk about how the ASP.Net Web Forms model sucks. (So this question is kind of directed to them, hopefully Jeff is reading)</p>
<p>Now, I highly respect their opinion, given their background and expertise, but truth be told, I absolutely LOVE ASP.Net. I think the model is brilliant, and it sucks if you have no idea what you're doing, but once you understand how to control <code>ViewState</code>, when to use handlers instead of pages, etc, it is generations ahead of all the other models.</p>
<p>So every time I hear someone complain about how it sucks, I can't help ask the same question...<br />
Why? What is it that's so bad about it?</p>
<p>I appreciate all opinions.
I'm assuming there's probably a post at Jeff's blog talking about this too...</p>
http://stackoverflow.com/questions/1074380/does-ietester-run-the-actual-same-code-that-existed-for-ie6-ie7-or-is-it-an-e2Does IETester run the ACTUAL same code that existed for IE6 / IE7? Or is it an emulation?Daniel Magliola2009-07-02T13:36:13Z2009-12-14T11:28:30Z
<p>I just realized (yes, this was stupid of me) that IE8 Compatibility Mode is NOT IE7.<br />
All the time I assumed they would be switching back to the IE7 binaries, which apparently they aren't, as indicated by another question I found here in SO.</p>
<p>My question is...<br />
Does anyone know how IETester works?<br />
Does it run the <strong>actual</strong> binaries for IE6/7?<br />
Can I trust it for my tests as <strong>being</strong> IE6/7?<br />
Or should I consider it a "close" thing, but actually test in actual VMs to be 100% sure?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/33727/clr-profiler-attaching-to-existing-process1CLR Profiler - Attaching to existing processDaniel Magliola2008-08-29T00:54:44Z2009-12-04T18:43:19Z
<p>I would like to use something like CLR Profiles on .Net 2.0 to see what objects are taking more space in the heap at any given time (of an ASP.Net worker process).</p>
<p>However, the CLR Profiler only lets me START an app, not attach to an existing one. I assume this is because it tracks allocations and GC too, but i'm not very interested in that. I would just like something that takes a snapshot of the current state of the heap, and shows me what is there and how many objects of each kind there are, and how many bytes total are being used by each object type.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/146916/javascript-events-getting-notified-of-changes-in-an-input-control-value5Javascript Events: Getting notified of changes in an <input> control valueDaniel Magliola2008-09-28T22:37:35Z2009-12-04T15:54:24Z
<p>I have the following problem:</p>
<p>I have an HTML textbox (<code><input type="text"></code>) whose contents are modified by a script I cannot touch (it is my page, but i'm using external components).</p>
<p>I want to be notified in my script every time the value of that textbox changes, so I can react to it.</p>
<p>I've tried this:</p>
<pre><code>txtStartDate.observe('change', function() { alert('change' + txtStartDate.value) });
</code></pre>
<p>which (predictably) doesn't work. It only gets executed if I myself change the textbox value with the keyboard and then move the focus elsewhere, but it doesn't get executed if the script changes the value.</p>
<p>Is there another event I can listen to, that i'm not aware of?</p>
<p><br /><br /></p>
<p>I'm using the Prototype library, and in case it's relevant, the external component modifying the textbox value is Basic Date Picker (www.basicdatepicker.com) </p>
http://stackoverflow.com/questions/1793114/mysql-data-object-reference-not-set-to-an-instance-of-an-object-when-trying-to0MySQL.Data: "Object reference not set to an instance of an object" when trying to Connect.Daniel Magliola2009-11-24T21:43:05Z2009-12-03T16:39:19Z
<p>I have a "Cron Service" that i've had running on our production server for over a year and a half.</p>
<p>It's a regular windows service which every minute connects to the DB, checks on one table whether there's something to do, and if so, does it. This is a server for a website that's not used a lot, so most of the time the service is completely idle.</p>
<p>A couple months ago, this service started throwing the following exception and dying:</p>
<pre><code>MESSAGE: Object reference not set to an instance of an object.
SOURCE: MySql.Data
TARGETSITE: MySql.Data.MySqlClient.Driver CheckoutConnection()
STACKTRACE: at MySql.Data.MySqlClient.MySqlPool.CheckoutConnection()
at MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
at MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
at MySql.Data.MySqlClient.MySqlPool.GetConnection()
at MySql.Data.MySqlClient.MySqlConnection.Open()
at DBA.Connect() in D:\xxx\DBA.vb:line 21
at CronService.TaskMailings.OnExecute() in D:\xxx\TaskMailings.vb:line 54
at CronService.CronTask.ThreadExecute() in D:\xxx\CronTask.vb:line 99
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
</code></pre>
<p>The exception is clearly coming from inside the MySQL Library. Also, my function that calls it is pretty simple:</p>
<pre><code> Public Shared Function Connect() As MySqlConnection
Dim strConnString As String = WebConfigurationManager.AppSettings("ConnectionString")
Dim DBConn As New MySqlConnection(strConnString)
DBConn.Open()
Return DBConn
End Function
</code></pre>
<p>And the function where I'm calling DBA.Connect() (CronService.TaskMailings.OnExecute) is doing so with a "Using" statement, so the connection <strong>is</strong> getting closed, this <em>shouldn't</em> be a problem of connections being left open and getting exhausted (although it might, if there's a bug inside the MySQL library).</p>
<p>This is the connection string I'm using for the Service:</p>
<pre><code> server=localhost;port=13306;uid=xxx;pwd=xxx;database=xxx;Pooling=True;charset=utf8;
</code></pre>
<p>Any ideas what might be going on here?
The strangest part is that this has worked for well over a year before it started happening out of the blue, and load to the server hasn't changed enough to justify it being a load problem, I believe.</p>
<p><hr></p>
<p><strong>EDIT:</strong> Some of the times it dies, it gives this other error message:</p>
<pre><code>MESSAGE: error connecting: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.
SOURCE: MySql.Data
TARGETSITE: MySql.Data.MySqlClient.Driver GetConnection()
STACKTRACE: at MySql.Data.MySqlClient.MySqlPool.GetConnection()
at MySql.Data.MySqlClient.MySqlConnection.Open()
atDBA.Connect() in D:\xxx\DBA.vb:line 21
</code></pre>
<p>Although the error message is pretty clear, like I mentioned before, we are releasing all connections, so this shouldn't happen. Any ideas?</p>
http://stackoverflow.com/questions/1813676/how-can-i-write-an-exif-header-without-recompressing-the-jpeg-in-net3How can I write an Exif header without recompressing the JPEG, in .NET?Daniel Magliola2009-11-28T20:19:55Z2009-11-30T22:53:32Z
<p>I have a <a href="http://en.wikipedia.org/wiki/JPEG" rel="nofollow">JPEG</a> image that I want to set an <a href="http://en.wikipedia.org/wiki/Exchangeable%5Fimage%5Ffile%5Fformat" rel="nofollow">Exif</a> header to (particularly, Author).</p>
<p>In .NET, I can do this relatively easy using GetPropertyItem and SetPropertyItem, but in order for that change to be persisted to the actual .JPG file, I need to <em>Save</em> it, which basically recompresses the image.</p>
<p>Is there any way to do this without recompressing?</p>
http://stackoverflow.com/questions/1784429/good-video-cards-for-programming-2d-i-have-too-many-pixels-in-my-screen-and-it2Good video cards for programming (2D)? I have too many pixels in my screen and it's sloooow [closed]Daniel Magliola2009-11-23T16:48:41Z2009-11-23T16:55:35Z
<p>I currently have the following screen setup:<br>
- 1 central screen, 30", 2560x1600, connected through DVI-Dual Link<br>
- 2 side screens, each 17" 1280x1024, one DVI-Digital, one VGA</p>
<p>I also have 2 identical video cards:<br>
- NVidia GeForce 9500 GT<br>
- One is running the 30" monitor, the other one is running the 2 side monitors. Connecting the main monitor and one of the side ones to the same card was incredibly slow.</p>
<p>The machine is pretty powerful: Quad-Core 2.6GHz, 8Gb RAM, main disk is an SSD. The OS is Windows 2008 Server Standard 64-bit. </p>
<p>However, the system in general runs much slower than it should when it comes to rendering in the screen (for example, opening File Explorer takes a split second, while in my laptop it's instantaneous).<br>
Also, there are a couple of specific things that evidently have to do with the screen that "freeze" the whole system, the mouse stops moving, the audio stutters, and it stays that way for a couple seconds until it comes back to life.<br>
The main things that do this are: Opening videos, opening Photoshop, when someone on the other side of a Skype conversation opens their webcam, and, strangely, opening up and logging in to MSN Messenger (the latest version). The previous one didn't do it.</p>
<p>NOTE: I had to turn off Aero because it was impossibly slow, and also the "Desktop Window Manager Session Manager" service, which I have no idea what it's supposed to do, but also made things much worse.</p>
<p>Now, this is <strong>REALLY</strong> bad for general day to day use. I've tried updating every single driver to the latest version, but it didn't change anything.<br>
Moreover, what I noticed is that if I unplug the 2 side monitors, and set the main one to 1280x800, it runs ridiculously fast, and the "freezing" things don't freeze almost at all, there's a very minimal stutter. As I start moving the resolution up, things get gradually slower and the stuttering is more noticeable and prolonged, and adding the 2 side monitors make it even worse.</p>
<p>My question is... Is there anything I can do to improve my life here? Whose fault is this?<br>
- Should I downgrade back to Server 2003?<br>
- Should I downgrade to 32-bit?<br>
- Should I get better video cards?<br>
- Should I resign myself to the fact that having too many pixels is just slow, and wait another 5-10 years for it to get better?</p>
<p>If the answer is getting better video cards... Do you have some particular model to recommend. About a decade ago, I remember having a Video Card that was very crappy for 3D, but it was 3-4 times faster than all the others in 2D (Diamond S220, for the nostalgic).<br>
Is there anything like that nowadays? I don't care about games or 3D at all (I have Aero turned off, and I'm more than willing to move back to XP/2003 if necessary), I just want ridiculously fast 2D speeds. And obviously, it should be a card that can handle 2560x1600.</p>
<p>All advice will be greatly appreciated!!!<br>
Thanks!<br>
Daniel</p>
http://stackoverflow.com/questions/1114409/tool-for-analyzing-iis-web-logs-for-troubleshooting0Tool for analyzing IIS web logs for troubleshootingDaniel Magliola2009-07-11T18:57:05Z2009-11-19T04:36:45Z
<p>I'm looking for some kind of tool that will let me slice and dice IIS web logs, for troubleshooting purposes...<br />
All tools I've found are designed to analyze logs for a "Google Analytics" type of output, but what I want is more like "see all hits made from some IP", "see all hits to a specific ASHX file", things like that, to troubleshoot a few obscure bugs we are having with sessions...</p>
<p>Does anyone know of such a tool, or should I just roll my own?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1735220/linq2sql-update-an-entity-field-that-has-a-reference-to-another-entity0LINQ2SQL: Update an entity field that has a reference to another entityDaniel Magliola2009-11-14T19:02:03Z2009-11-14T19:30:14Z
<p>I have the following situation in LINQ: I have an object (a blog "Post") that has a "Status" field which can take on different values, and there's a table listing all these values (this table just has Id, Desc).<br>
Now, since the relationship between both tables is created, in the Model, Post.Status is not an int, but an instance of "PostStatus". </p>
<p>Thus, if I want to set the status of a Post to, say, 20, I can't just set the field to 20, I need to have an instance of PostStatus to assign. These status values are all hardcoded with the logic, so it's just fine to have "20" hardcoded in my code.<br>
Is there a better way to do it that this?</p>
<pre><code>switch (Action) {
case "Ignore":
post.PostStatus = (from s in db.PostStatus where s.Id == 90 select s).First();
break;
case "Assign":
post.PostStatus = (from s in db.PostStatus where s.Id == 20 select s).First();
break;
case "MarkDone":
post.PostStatus = (from s in db.PostStatus where s.Id == 30 select s).First();
break;
case "MarkPublished":
post.PostStatus = (from s in db.PostStatus where s.Id == 40 select s).First();
post.Public = true;
break;
}
</code></pre>
<p>I hate this code, honestly, first of all because it needlessly queries the DB to get a PostStatus instance, but mostly because it's just so verbose.<br>
Is there a better way to do this?</p>
<p>Thanks!<br>
Daniel</p>
http://stackoverflow.com/questions/1732236/linq2sql-cannot-convert-iqueryable-to-iorderedqueryable-error2LINQ2SQL: Cannot convert IQueryable<> to IOrderedQueryable errorDaniel Magliola2009-11-13T22:12:58Z2009-11-13T22:21:10Z
<p>I have the following LINQ code:</p>
<pre><code> var posts = (from p in db.Posts
.Include("Site")
.Include("PostStatus")
where p.Public == false
orderby p.PublicationTime
select p);
if (!chkShowIgnored.Checked) {
posts = posts.Where(p => p.PostStatus.Id != 90);
}
</code></pre>
<p>That last line (the extra where) is giving me the error:</p>
<p>Cannot implicitly convert type 'System.Linq.IQueryable' to 'System.Linq.IOrderedQueryable'.</p>
<p>I'm not sure what this means...<br>
Why am I getting this error?<br>
It appeared once I added the "orderby" clause to the query, before that it compiled fine, so I have kind of a hunch of what is going on, but I can't quite put my finger into it.</p>
<p>Also, how can I do this correctly?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1664049/can-i-force-a-page-jump-in-html-printing0Can I force a page jump in HTML printing?Daniel Magliola2009-11-02T22:11:12Z2009-11-02T22:14:25Z
<p>I'm making a HTML report that is going to be printable, and it has "sections" that should start in a new page.</p>
<p>Is there any way to put something in the HTML/CSS that will signal to the browser that it needs to jump to a new page at that point?</p>
<p>I don't need this to work in every browser out there, I think I can tell people to use a specific set of browsers in order to print this.</p>
<p>Thanks<br />
Daniel</p>
http://stackoverflow.com/questions/356830/pexpect-running-ssh-copy-id-is-hanging-when-trying-to-spawn-a-second-process3Pexpect, running ssh-copy-id is hanging when trying to spawn a second processDaniel Magliola2008-12-10T17:16:31Z2009-11-02T18:49:35Z
<p>I'm doing a Python script where I need to spawn several ssh-copy-id processes, and they need for me to type in a password, so i'm using PExpect.</p>
<p>I have basically this:</p>
<pre><code>child = pexpect.spawn('command')
child.expect('password:')
child.sendline('the password')
</code></pre>
<p>and then I want to spawn another process, I don't care about this one anymore, whether it ended or not.</p>
<pre><code>child = pexpect.spawn('command2')
child.expect('password:')
child.sendline('the password')
</code></pre>
<p>And the code is hanging at the second "spawn"</p>
<p>However, if I comment out the first call, the second one works, so i'm guessing that the fact that the first one is still running or something is keeping it from working.</p>
<p>Now, the other thing I haven't been able to do is wait until the first one stops.
I've tried:<br />
child.close() - it hangs (both with True and False as parameters)
child.read(-1) - it hangs<br />
child.expect(pexpect.EOF) - it hangs.<br />
child.terminate() - it hangs (both with True and False as parameters)</p>
<p>Any ideas on what could be happening?<br />
NOTE: I'm not a Python expert, and i have never used pexpect before, so ANY idea is more than welcome.</p>
<p>Thanks!</p>
<p><hr /></p>
<p>UPDATE: This is definitely related to ssh-copy-id, because with other processes, spawn works well even if they don't return.
Also, apparently ssh-copy-id never returns an EOF.</p>
http://stackoverflow.com/questions/1632881/how-to-get-the-greatest-of-two-columns-values-in-mysql0How to get the greatest of two columns values in MySQL?Daniel Magliola2009-10-27T18:48:36Z2009-10-27T18:56:55Z
<p>I'm trying to do something like this:</p>
<pre><code>SELECT MAX(
ADDDATE(expirationdate, INTERVAL 1 YEAR),
ADDDATE(now(), INTERVAL 1 YEAR)
)
</code></pre>
<p>That is, get "a year from now", or "a year from the expiration date stored in the table", whichever is greater (i'm renewing people's subscriptions).</p>
<p>This obviously doesn't work, since MAX() is for aggregation between rows, not for comparing 2 values. Is there a function that'll do this in MySQL? (i'd like to avoid doing an IF)</p>
http://stackoverflow.com/questions/1495144/net-2-0-help-troubleshooting-a-system-accessviolationexception-100-managed-c0.Net 2.0: Help troubleshooting a System.AccessViolationException. 100% managed code.Daniel Magliola2009-09-29T21:51:18Z2009-10-27T17:46:59Z
<p>This is kind of repeated from <a href="http://stackoverflow.com/questions/1444844/can-a-system-accessviolationexception-happen-because-of-faulty-ram">my previous question</a>, although the objective of my question is completely different now.</p>
<p>I'm getting, now and then, about once a week, only in my development machine, a System.AccessViolationException in a web app I made.</p>
<p>Since my machine is having a few things that don't work quite well (like a blue screen every now and then), I assumed before it might be faulty RAM. After 24 hours running memtest, i'm pretty sure it's not...</p>
<p>So, this is the situation: This is a wep App, VB.Net 2.0, 100% managed code, doesn't use COM, Interop, or anything like that. It's running on a Windows Server 2008 SP2 box.<br />
The only "strange" thing I'm doing is starting 3 threads of my own when the app starts, that do "cron like" stuff inside the appdomain, and also most of the requests this app is handling are handled asynchronously, and many of them are held open without a response for up to 30 seconds. (I'm doing Comet long-polling).</p>
<p>Also, i've been working on this code for about a year now, and it's only started to do this about a month ago.
I can't think of anything major or important that I changed on this whole web app that I changed lately. I've been working almost fully on the Javascript frontend.</p>
<p><hr /></p>
<p>When the exception happens, I get the typical popup asking me whether I want to debug.
When I do, I see all the ASP.Net threads plus my 3 threads.<br />
My 3 threads are in a call to Sleep(), which is normal. All the other ASP.Net threads have no call stack at all.<br />
In the thread where Visual Studio tells me I got the exception, I don't see anything.</p>
<p>So I don't know for sure where the error happens, or even whether it happens every time in the same place or not.</p>
<p>All I could find as a clue is this in the "Application" event log:</p>
<pre><code>Faulting application w3wp.exe, version 7.0.6002.18005, time stamp 0x49e03238,
faulting module unknown, version 0.0.0.0, time stamp 0x00000000, exception code
0xc0000005, fault offset 0x0000000002358fe8, process id 0x1f4c, application
start time 0x01ca41395c564ed9.
</code></pre>
<p>And right after that, another event with this: </p>
<pre><code>An unhandled exception occurred and the process was terminated.
Application ID: DefaultDomain
Process ID: 6632
Exception: System.AccessViolationException
Message: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
StackTrace: at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)
at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
</code></pre>
<p><hr /></p>
<p>I've googled MgdIndicateCompletion , but couldn't find anything really useful...</p>
<p>One thing that HAS changed about a month ago, now that I think of it, is that I moved from Server 2003 x86 to Server 2008 x64 (and thus, IIS6 to IIS7) in my dev machine. Maybe that's the cause, but still, i'm not sure what to make of this...</p>
<p>I mean, this would place the problem completely out of my codebase, right?</p>
<p><hr /></p>
<p><strong>UPDATE:</strong> As suggested <a href="http://forums.asp.net/t/1476904.aspx" rel="nofollow">here</a>, turning the App Pool integration to "Classic" seems to fix it. I'm still looking for a decent solution, or at least an explanation, though.</p>
http://stackoverflow.com/questions/1608992/how-can-i-compile-changes-in-only-1-document-but-keep-the-original-build-of-the-o/1609023#16090235Answer by Daniel Magliola for How can I compile changes in only 1 document but keep the original build of the others? (C#, Asp.Net MVC)Daniel Magliola2009-10-22T18:10:29Z2009-10-22T18:10:29Z<p>What you need is branches (you <strong>are</strong> using Source Control, aren't you?)</p>
<p>Basically, what you do is have one branch where you do development, and another "stable" branch, where you only do small fixes to the code that is in production.</p>
<p>Once you deploy to production, you "merge" from the dev branch to the stable branch.</p>
<p><hr /></p>
<p>If you are not using Source Control, just have 2 copies of the code for now, and do the same kinds of things.</p>
<p>And <a href="http://www.ericsink.com/scm/source%5Fcontrol.html" rel="nofollow">learn to use Source Control</a>, your life will change dramatically.</p>
http://stackoverflow.com/questions/1523546/asp-net-ie6-making-invalid-requests3ASP.Net: IE6 making invalid requestsDaniel Magliola2009-10-06T04:04:19Z2009-10-20T20:59:52Z
<p>I have a live site where every error is logged and e-mailed to me. </p>
<p>I've been getting a lot of "Padding is invalid and cannot be removed." errors on requests to WebResource.axd. Looking closely, the request is erroneous.</p>
<p>This is the request in question: </p>
<pre><code>/webresource.axd?d=mgqvdy8omlq71j1set2ida2&ampt=633700045603820000
</code></pre>
<p>And this is how it should look:</p>
<pre><code>/WebResource.axd?d=MgQvdy8OmLQ71j1SET2IdA2&amp;t=633700045603820000
</code></pre>
<p>Notice the lack of capitalization and, more importantly, the lack of ; after &amp.</p>
<p>The user agent is this:</p>
<pre><code>UA: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)
</code></pre>
<p>What could this be?<br />
Could a real, actual user be getting errors because of this?<br />
Is this something that IE could actually be doing wrong?<br />
Or is this just a badly written bot?</p>
<p>This happens every now and then, it <em>definitely</em> doesn't happen to all our users, or even to all our IE users.</p>
<p><hr /></p>
<p><strong>UPDATE:</strong> I'm also getting a lot of "Invalid character in a Base-64 string." when forms are posted, also only from IE 6.0, so i'm guessing they're related.</p>
<p>Thanks for your help!<br />
Daniel</p>
http://stackoverflow.com/questions/861135/are-there-any-limitations-to-what-can-be-done-in-an-inline-onclick-handler1Are there any limitations to what can be done in an inline onclick handler?Daniel Magliola2009-05-14T01:10:56Z2009-10-19T14:54:53Z
<p>When adding code to an onclick handler, are there any limitations to what can be done?</p>
<p>Can I have unlimited statements separated by ; ?<br />
Can I declare variables that will live in the global scope?<br />
Can I declare an anonymous function right in there and call it? (function(){})();?<br />
Is there any limitation?</p>
<p>The reason I'm asking is that i'm putting a lot of code in an onclick handler, and only in IE, one variable that I'm declaring and should go to the global scope is not being found afterwards.</p>
<p>However, that same code does work in other browsers, and it does work in IE when I use the same code as a bookmarklet.</p>
<p>EDIT: <a href="http://stackoverflow.com/questions/861102/why-does-this-bookmarklet-js-code-not-work-when-put-in-an-onclick-handler">The code in question is here</a></p>
<p>EDIT 2: The reason I'm making such a horrible and bulky onclick handler is that I'm making code that other people can put on their websites (think: Digg button), that will inject a script of mine. I'm trying to keep it simple for them, without cluttering their namespace too much, which is why giving them simply an <img> with an onclick handler is ideal.<br />
If I absolutely can't make this work, then I'll have to give them code that declares a <script>, with a named function inside, and then the <img> with the onclick handler that calls that function.</p>
<p>Any ideas?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1572733/generate-random-string/1572761#157276111Answer by Daniel Magliola for Generate random stringDaniel Magliola2009-10-15T14:34:07Z2009-10-15T14:34:07Z<p>Try using the same random object for the whole string, rather than initializing one for each char.</p>
<p>The random object will generate a "pseudo-random" number, based on mathematical progressions starting from a "seed" number. You can actually get the same sequence of "random" numbers if you initialize the Random object to the same seed every time.</p>
<p>Now, when you initialize Random without specifying a seed, it'll take the computer's clock as seed. In this case, you're probably doing it fast enough that the clock hasn't changed from one initialization to another, and you get always get the same seed.</p>
<p>You're better off initializing the Random object in your function that generates the random string, and passing it as a parameter to the GenerateChar function, so that you're calling NextDouble() several times on the same instance of the Random object, instead of only once on different instances of it.</p>
http://stackoverflow.com/questions/1563669/wildcard-ssl-common-name-can-it-be-called-anything/1563719#15637190Answer by Daniel Magliola for Wildcard SSL common name - can it be called anything?Daniel Magliola2009-10-14T00:41:12Z2009-10-14T00:41:12Z<p>Yes, your common name should be *.yourdomain.com for a wildcard certificate.</p>
<p>Basically, the Common Name is what states what domain your certificate is good for, so it has to specify the actual domain.</p>
<p>Clarification: It shouldn't "contain" the domain name of the sites, it should <strong>be</strong> the domain of the sites. I'm guessing there is no difference in your question, I just wanted to clarify, in case there's a misconception of what the domain should be, or what the certificate will be used for.</p>
http://stackoverflow.com/questions/803782/is-there-a-browser-control-to-host-a-website-inside-flash-silverlight0Is there a "Browser Control" to host a website inside Flash/Silverlight?Daniel Magliola2009-04-29T19:03:52Z2009-10-09T09:43:06Z
<p>I'm looking for something similar to the VB6 / .Net Winforms "Browser Control", that let's you show a browser inside your application.
I don't want to just render a page, I want it to be a fully-functional browser, in which people can click links, will run Javascript, etc.</p>
<p>In essence, what I want is an IFrame, only that it runs inside a Flash app, or a Silverlight app.</p>
<p>The ultimate reason for this is that I want to defeat IFrame busters. I'm making a web app that lets you see other sites inside of it, and I'm running into a bunch of sites that have this code:</p>
<p>var t=top.location,w=window.location;if(t!=w) t.replace(w);</p>
<p>(that's from eBay BTW)</p>
<p>which essentially pops the user out of my site and into theirs.
My hope is that by using a "browser control" of some sort, inside a plugin sandbox, "top", will be top for that browser control, and not for my site.</p>
<p>Of course, if you have any other ideas to achieve the same, they'll be more than welcome.</p>
<p><hr /></p>
<p>Edit: I've tried the Component One control suggested by Bill, but it didn't work for these purposes, because it's creating an IFrame <em>outside</em> of the SilverLight control, so it executes in the same context as the page hosting Silverlight, which is what I'm trying to avoid.</p>
http://stackoverflow.com/questions/805626/diff-algorithm3Diff AlgorithmDaniel Magliola2009-04-30T06:37:33Z2009-10-08T09:28:55Z
<p>I've been looking like crazy for an explanation of a diff algorithm that works and is efficient.</p>
<p>The closest I got is <a href="http://www.faqs.org/rfcs/rfc3284.html" rel="nofollow">this link to RFC 3284</a> (from several Eric Sink blog posts), which describes in perfectly understandable terms the <em>data format</em> in which the diff results are stored. However, it has no mention whatsoever as to how a program would reach these results while doing a diff.</p>
<p>I'm trying to research this out of personal curiosity, because I'm sure there must be tradeoffs when implementing a diff algorithm, which are pretty clear sometimes when you look at diffs and wonder "why did the diff program chose this as a change instead of that?"...</p>
<p>Does anyone know where I can find a description of an efficient algorithm that'd end up outputting VCDIFF?<br />
By the way, if you happen to find a description of the actual algorithm used by SourceGear's DiffMerge, that'd be even better.</p>
<p>NOTE: longest common subsequence doesn't seem to be the algorithm used by VCDIFF, it looks like they're doing something smarter, given the data format they use.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1421978/help-troubleshooting-sqlexception-timeout-expired-on-connection-in-a-non-load-s2Help troubleshooting SqlException: Timeout expired on connection, in a non-load situationDaniel Magliola2009-09-14T14:39:03Z2009-09-29T16:21:28Z
<p>I have a server hosting a website of mine that has almost zero-traffic.<br />
A few people (< 20) enter the site every day, and a few RSS readers are subscribed to some feeds we put out.</p>
<p>Almost every night, an RSS reader will hit us in the middle of the night and get an exception that the website can't connect to the SQL Server because of a Timeout in the connection.
The details are extremely weird, so I'm looking for some help on what could be the issue, since I don't know where to start looking anymore.</p>
<p>We are using ASP.Net MVC, Entity Framework, and SQL Server 2008 over Windows Server 2008. The machine is a dedicated box we got from a not exactly top-tier provider, so things might be configured non-optimally, or who knows what else.<br />
The box is also pretty small, and has only 1Gb RAM, but it should take the kind of load we have for now...</p>
<p>I'm copying the full call stack below, but first, some of the things we know:</p>
<ul>
<li>The error always happens when iTunes is querying our site. I believe this should have nothing to do with anything, but the truth is that we only get it from iTunes. My best guess is that this happens because only iTunes queries us at that time of the night when no one else is hitting us.</li>
<li>One of our theories is that the SQL Server and IIS are fighting for memory, and one of them is getting paged to disk out of not being used, and when someone "wakes it up", it takes too long to read everything from disk back into memory. Is this something that could potentially happen? (I'm kind of discarding this since it sounds like a design issue in SQL Server if it were possible)</li>
<li>I also thought about the possibility that we're leaking connections, since we may not be disposing of EF entities appropriately (<a href="http://stackoverflow.com/questions/1401327/entity-framework-how-should-i-instance-my-entities-object/1401589#1401589">see my question here</a>). This is the only thing I could find by Googling the problem. I'm discarding this given the extremely low load we have.</li>
<li>This always happens over the night, so it's very likely something related to the fact that nothing happened for a while. For example, I'm pretty sure that when these requests hit, the web server process got recycled and it's starting up / re-JITting everything. The re-JITting doesn't explain the SQL timeout, though.</li>
</ul>
<p><hr /></p>
<p><strong>UPDATE:</strong> We attached a profiler as suggested, and it took quite a while before we had a new exception. This is the new stuff we know:</p>
<ul>
<li>Having the profiler attached <em>enormously</em> reduced the number of errors we got. In fact, after normally getting several per day, we had to wait for 3 or 4 days for this to happen ONCE. Once we stopped the profiler, it went back to the normal error frequency (or even worse). So the profiler has <em>some</em> effect that hides this problem to some extent, but not completely.</li>
<li>Looking at the profiler trace next to the IIS requests log, there is an expected 1-1 correspondence between requests and queries. However, every now and then, I see A LOT of queries being executed that have no correllation at all with the IIS log. In fact, right before the actual bug was logged, I got <strong>750 queries in a period of 3 minutes</strong>, all of which were completely unrelated to the IIS logs. The query text look like the kind of unreadable crap that EF generates, and they're not all the same, and they all look just like the queries coming from the website: Same ApplicationName, User, etc. To give an idea how ridiculous this is, the site got about 370 IIS requests that hit the DB, in the course of <strong>2 days</strong></li>
<li>These unexplained queries did not come from the same ClientProcessID as the previous website ones, although they may still have come from the website, if the process got recycled in the meantime. There was almost an hour of no activity between the last explained query, and the first unexplained one.</li>
<li>One of these long streaks of queries that I don't know where they came from came right before the error I got logged, so I believe this is the clue we should be following.</li>
<li>As I expected originally, when the query that threw the error was executed, it came from a different ClientProcessID than the previous one, (8 minutes later than the previous unexplained one, and almost exactly one hour later than the previous IIS one). This means, to me, that the worker process had indeed gotten recycled.</li>
<li>This is something I absolutely don't understand. The IIS log shows that one minute before the error requests, 4 were perfectly served, although the queries for those don't show up in the trace at all. In fact, after those 4 that went well, I had 4 exceptions thrown in quick succession, those 4 ALSO don't show up in the trace (which makes sense since if there was a Timeout in connection the query should have never gotten executed, but I don't see the connections attempts in the trace either)</li>
</ul>
<p>So, in short, I'm completely clueless about this. I can't find a reason for those hundreds of queries that get run in quick succession, but I believe those must have something to do with the problem.<br />
I also don't know how to diagnose the connection problems...<br />
Or how the Profiler trace may be missing some queries that according to IIS went through fine...</p>
<p>Any ideas?</p>
<p><hr /></p>
<p>This is the exception information:</p>
<pre><code>System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
System.Data.EntityException: The underlying provider failed on Open. ---> System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
at System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject)
at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection)
at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)
at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)
at System.Data.SqlClient.SqlConnection.Open()
at System.Data.EntityClient.EntityConnection.OpenStoreConnectionIf(Boolean openCondition, DbConnection storeConnectionToOpen, DbConnection originalConnection, String exceptionCode, String attemptedOperation, Boolean& closeStoreConnectionOnFailure)
at System.Data.EntityClient.EntityConnection.OpenStoreConnectionIf(Boolean openCondition, DbConnection storeConnectionToOpen, DbConnection originalConnection, String exceptionCode, String attemptedOperation, Boolean& closeStoreConnectionOnFailure)
--- End of inner exception stack trace ---
at System.Data.EntityClient.EntityConnection.OpenStoreConnectionIf(Boolean openCondition, DbConnection storeConnectionToOpen, DbConnection originalConnection, String exceptionCode, String attemptedOperation, Boolean& closeStoreConnectionOnFailure)
at System.Data.EntityClient.EntityConnection.Open()
at System.Data.Objects.ObjectContext.EnsureConnection()
at System.Data.Objects.ObjectQuery`1.GetResults(Nullable`1 forMergeOption)
at System.Data.Objects.ObjectQuery`1.System.Collections.Generic.IEnumerable<T>.GetEnumerator()
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source)
at System.Data.Objects.ELinq.ObjectQueryProvider.<GetElementFunction>b__1[TResult](IEnumerable`1 sequence)
at System.Data.Objects.ELinq.ObjectQueryProvider.ExecuteSingle[TResult](IEnumerable`1 query, Expression queryRoot)
at System.Data.Objects.ELinq.ObjectQueryProvider.System.Linq.IQueryProvider.Execute[S](Expression expression)
at System.Linq.Queryable.FirstOrDefault[TSource](IQueryable`1 source)
at MyProject.Controllers.SitesController.Feed(Int32 id) in C:\...\Controller.cs:line 38
at lambda_method(ExecutionScope , ControllerBase , Object[] )
at System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClassa.<InvokeActionMethodWithFilters>b__7()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodFilter(IActionFilter filter, ActionExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodWithFilters(ControllerContext controllerContext, IList`1 filters, ActionDescriptor actionDescriptor, IDictionary`2 parameters)
at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)
at System.Web.Mvc.Controller.ExecuteCore()
at System.Web.Mvc.MvcHandler.ProcessRequest(HttpContextBase httpContext)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
</code></pre>
<p>Any ideas will be enormously appreciated. </p>
http://stackoverflow.com/questions/319413/how-can-i-do-form-methodget-in-asp-net-for-a-search-form2How can I do <form method="get"> in ASP.Net for a search form?Daniel Magliola2008-11-26T01:00:18Z2009-09-25T05:04:50Z
<p>I have a search form in an app I'm currently developing, and I would like for it to be the equivalent of method="GET".<br />
Thus, when clicking the search button, the user goes to search.aspx?q=the+query+he+entered</p>
<p>The reason I want this is simply bookmarkeable URLs, plus it feels cleaner to do it this way.<br />
I obviously don't want all the viewstate crap hidden fields appended to the URL either.</p>
<p>The best I could come up with for this is:<br />
a) either capture the server-side click event of the button and Response.Redirect<br />
b) Attach a Javascript onclick handler to the button, and to window.location.replace</p>
<p>Both feel quirky and sub-optimal...
Can you think of a better approach?</p>
<p><hr /></p>
<p>I'm guessing this is one solid answer to my previous question: <a href="http://stackoverflow.com/questions/46031/why-does-the-aspnet-web-forms-model-suck">Why does the ASp.Net Web Forms model suck?</a></p>
http://stackoverflow.com/questions/1452692/is-there-a-way-to-filter-a-sql-profiler-trace0Is there a way to filter a SQL Profiler trace?Daniel Magliola2009-09-21T02:58:27Z2009-09-21T04:57:34Z
<p>I'm trying to troubleshoot <a href="http://stackoverflow.com/questions/1421978/help-troubleshooting-sqlexception-timeout-expired-on-connection-in-a-non-load-s">this problem</a> using SQL Profiler (SQL 2008)</p>
<p>After a few days running the trace in production, finally the error happened again, and now i'm trying to diagnose the cause. The problem is that the trace has 400k rows, 99.9% of which are coming from "Report Server", which I don't even know why it's on, but it seems to be pinging SQL Server every second...</p>
<p>Is there any way to filter out some records from the trace, to be able to look at the rest?<br />
Can I do this with the current .trc file, or will I have to run the trace again?<br />
Are there other applications to look at the .trc file that can give me this functionality?</p>
<p>Thanks!<br />
Daniel</p>
http://stackoverflow.com/questions/1444844/can-a-system-accessviolationexception-happen-because-of-faulty-ram2Can a System.AccessViolationException happen because of faulty RAM?Daniel Magliola2009-09-18T14:18:09Z2009-09-18T14:42:49Z
<p>I have a website that i've been working on for about a year now.
Recently, it's started throwing System.AccessViolationException every now and then, in my dev machine, mostly, when I was away from the machine...</p>
<p>I haven't changed anything on the server code in weeks, since I've been working 100% on the Javascript part, and this error started appearing recently.</p>
<p>Also, the code I'm doing is 100% managed. I'm not doing any interop, calling strange DLLs, nothing. It's pure VB.Net, so I don't see how I could be generating one of these myself...</p>
<p>Now, I've been using this new machine for a couple of months, and it's not working 100% right. Every 2 or 3 days I'm getting a blue screen for example. I haven't had time to diagnose it properly, but I'm suspecting I may have a faulty RAM chip.</p>
<p>Is it possible that faulty RAM could lead to an AccessViolationException?<br />
Or do I have an actual problem I should be looking into? (besides my RAM)</p>
<p><hr /></p>
<p><strong>UPDATE:</strong></p>
<p>I'm not really being able to find WHERE the error occurs, really.<br />
I get the "unhandled exception, do you want to debug?" dialog, and when I attach the debugger, I have the Threads list, where I have all the ASP.Net threads, and 3 I create myself.<br />
For these 3 I have a Call Stack , and they're all stopped at a Sleep() call (which is expectable).<br />
For all the other threads, including the one that VS points to as the problem one, I have no Call Stack. I also have no details about the exception whatsoever. </p>
<p>So I don't know whether it happens every time in the same place or not.</p>
<p>As for memtest, yes, I'm going to do something like that, I'm just hoping to have SOME time to do it soon, but I wanted to know, in the meantime, whether this could explain this problem.</p>
<p><hr /></p>
<p><strong>UPDATE 2:</strong></p>
<p>Found this in the event log...</p>
<p>An unhandled exception occurred and the process was terminated.</p>
<pre><code>Application ID: DefaultDomain
Process ID: 6632
Exception: System.AccessViolationException
Message: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
StackTrace: at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)
at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
</code></pre>
<p>Any ideas what to make of this?<br />
Thanks<br />
Daniel</p>
http://stackoverflow.com/questions/1434521/is-it-normal-to-get-bandwidth-as-the-first-scalability-bottleneck-with-a-100-mbps1Is it normal to get bandwidth as the first scalability bottleneck with a 100 Mbps connection? [closed]Daniel Magliola2009-09-16T17:51:05Z2009-09-16T18:41:30Z
<p>I'm stress testing a site that we're making, and we're finding a very surprising result compared to my expectations:<br />
Our site starts to load very slow with a few hundred simultaneous people, even though CPU and memory are fine. Looking at Task Manager, Networking tab, I see that my 100 Mbps network card is maxed out at 98%.</p>
<p>For some reason, this sounds extremely ridiculous to me...<br />
Every time I read something on scalability it's CPU, Memory, Caching, etc, etc, and here I'm getting the bottleneck on the network card itself.</p>
<p>We serve all our content gzipped, and our home page is kind of heavy, but not THAT much. I would've never expected the network card to be the bottleneck.</p>
<p>Is this normal?<br />
Is everyone having public facing websites using a 1Gbps network card?<br />
I thought 100 Mbps would be the standard.</p>
<p>Am I looking at something wrong? Am I interpreting the graph in the Networking tab incorrectly?</p>
<p>NOTE: I can think of a number of ways to fix this, starting with getting a 1 Gbps card, and moving static files to their own server(s). My question is mostly around whether everyone is simply using 1 Gbps connections, which would surprise me enormously.</p>
http://stackoverflow.com/questions/1412277/url-shortening-whats-the-best-encoding-to-use1URL Shortening: What's the best encoding to use?Daniel Magliola2009-09-11T17:30:45Z2009-09-11T20:36:15Z
<p>I'm adding a feature to my project where we are generating links to internal stuff of our website, and we want these links to be as short as possible, so we'll be making our own "URL Shortener".</p>
<p>I'm wondering what's the best encoding / alphabet to use for the generated short URLs.
This is largely a subjective question, I'd like to know what your opinions are regarding the best approach / trade-off.</p>
<p>Several options I've thought of:<br />
- Digits, uppercase + lowercase (base 62)<br />
- Digits, only lowercase (base 36)<br />
- Base 32 (<a href="http://www.crockford.com/wrmg/base32.html" rel="nofollow">http://www.crockford.com/wrmg/base32.html</a>)<br />
- linkpot.net (using common short english words) </p>
<p>Of course, the second two are better for uses other than clicking, and the first two are better for Twitter.</p>
<p>Also, if I'm going with "clickable-only" URLs, I'd like to make the alphabet as large as possible, adding other symbols.</p>
<ul>
<li>What symbols can I use in URLs that won't get URL encoded? </li>
<li>What symbols <em>should</em> I use? Could some of these prove problematic? I'm thinking slash and dot, for example. </li>
</ul>
<p>What do you think?</p>
<p>NOTE: The main target for these URLs is Twitter. Keeping this in mind, we should probably have the largest alphabet possible, since most people will be clicking. However, I'm interested in your experience with people using short URLs in other ways (over the phone, in printed paper, etc). How likely is it this could happen?</p>
<p>NOTE 2: I'm not making "yet another URL shortener", please don't condemn me with downvotes. We are generating short URLs for internal stuff in our site, not allowing anyone to shorten any URL. Imagine Google Maps giving you short URLs when you generate a link to a specific coordinate.</p>
http://stackoverflow.com/questions/46545/how-do-i-do-backups-in-mysql13How do I do backups in MySQL? Daniel Magliola2008-09-05T18:50:16Z2009-09-11T15:14:48Z
<p>How do I do backups in MySQL? </p>
<p>I'm hoping there'll be something better than just running mysqldump every "x" hours.</p>
<p>Is there anything like SQL Server has, where you can take a full backup each day, and then incrementals every hour, so if your DB dies you can restore up to the latest backup?</p>
<p>Something like the DB log, where as long as the log doesn't die, you can restore up to the exact point where the DB died?</p>
<p>Also, how do these things affect locking?
I'd expect the online transactions to be locked for a while if I do a mysqldump.</p>
http://stackoverflow.com/questions/942751/is-it-always-safe-to-remove-a-trailing-slash-from-a-url3Is it always safe to remove a trailing slash from a URL?Daniel Magliola2009-06-03T02:00:37Z2009-09-11T13:35:52Z
<p>I'm storing URLs in a database, and I want to be able to know if two URLs are identical.
Generally, a trailing slash at the end doesn't change the response you'd get from a server. (ie. <a href="http://www.google.com/" rel="nofollow">http://www.google.com/</a> is the same as <a href="http://www.google.com" rel="nofollow">http://www.google.com</a>)</p>
<p>Can I always blindly remove the trailing slash from any URL, without looking at anything?<br />
Is that safe?</p>
<p>What I mean by "without looking at anything" is that I'd remove the slash from:<br />
<a href="http://www.google.com/q?xxx=something&yyy=something/" rel="nofollow">http://www.google.com/q?xxx=something&yyy=something/</a></p>
<p>I know the web server could <em>theoretically</em> return completely different things if it wanted, and I know sometimes going to a URL without the slash will redirect to one with the slash. My only intention here is determining if both URLs are the same.</p>
<p>Is this method safe?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1401587/datacontext-log-equivalent-in-entity-framerwork0DataContext.Log equivalent in Entity Framerwork?Daniel Magliola2009-09-09T19:28:52Z2009-09-09T20:29:04Z
<p>In Link-2-SQL, I can use the DataContext.Log property to see the exact queries that are getting thrown to SQL Server.</p>
<p>Is there an equivalent to this in Entity Framework?</p>
<p>Thanks
Daniel</p>
http://stackoverflow.com/questions/1793114/mysql-data-object-reference-not-set-to-an-instance-of-an-object-when-trying-toComment by Daniel Magliola on MySQL.Data: "Object reference not set to an instance of an object" when trying to Connect.Daniel Magliola2009-12-03T16:39:12Z2009-12-03T16:39:12ZUpdate: It dies 11 hours after the last death. Any ideas here?http://stackoverflow.com/questions/1813676/how-can-i-write-an-exif-header-without-recompressing-the-jpeg-in-netComment by Daniel Magliola on How can I write an Exif header without recompressing the JPEG, in .NET?Daniel Magliola2009-11-29T18:34:01Z2009-11-29T18:34:01ZThat has no valid answers whatsoever...http://stackoverflow.com/questions/1793114/mysql-data-object-reference-not-set-to-an-instance-of-an-object-when-trying-toComment by Daniel Magliola on MySQL.Data: "Object reference not set to an instance of an object" when trying to Connect.Daniel Magliola2009-11-25T14:52:59Z2009-11-25T14:52:59ZSince it started doing this, it has always died, eventually. I don't have a clear statistic yet of how fast it does so (ie. how long it lives before dying). But I started it again yesterday (when I posted this question), and today it's dead again, about 16 hours later.http://stackoverflow.com/questions/1793114/mysql-data-object-reference-not-set-to-an-instance-of-an-object-when-trying-toComment by Daniel Magliola on MySQL.Data: "Object reference not set to an instance of an object" when trying to Connect.Daniel Magliola2009-11-24T21:56:00Z2009-11-24T21:56:00ZYes. There is nothing there, aside from the error report that my own application emitted (the details are what I posted above), and an entry in the "Application" log saying that my process threw an unhandled exception and died.http://stackoverflow.com/questions/1784429/good-video-cards-for-programming-2d-i-have-too-many-pixels-in-my-screen-and-itComment by Daniel Magliola on Good video cards for programming (2D)? I have too many pixels in my screen and it's sloooowDaniel Magliola2009-11-23T16:56:18Z2009-11-23T16:56:18Z@Elzo: I'm assuming this would be perfect for superuser.com if I wanted the best card for 3D stuff and whatnot. I'm particularly interested in the opinions and experience of obsessive programmers, since that's what i'm doing.
@JeeBee: Any ideas what it could be? I'm completely stumped by this one too
@Ben: I wish it were as good as you think. This is really not running as it should be, and i'm not sure what to blame here (Hardware/Software/Video Card, etc)http://stackoverflow.com/questions/1735220/linq2sql-update-an-entity-field-that-has-a-reference-to-another-entity/1735328#1735328Comment by Daniel Magliola on LINQ2SQL: Update an entity field that has a reference to another entityDaniel Magliola2009-11-15T06:07:20Z2009-11-15T06:07:20ZOK, but let's assume it's not necessarily an Enum.
Let's say I, for whatever reason (like the user chose it from a dropdown) already have the ID of another related record and I want to set it.
For example, Posts have an Author, we have an Authors table, and I have the ID of the Author and I want to set it to the Post record. Is there a better way than this to do it?http://stackoverflow.com/questions/1732236/linq2sql-cannot-convert-iqueryable-to-iorderedqueryable-error/1732268#1732268Comment by Daniel Magliola on LINQ2SQL: Cannot convert IQueryable<> to IOrderedQueryable errorDaniel Magliola2009-11-13T22:53:18Z2009-11-13T22:53:18ZAaaaah, that final explanation is SUPER clear, gotcha. Thank you!!http://stackoverflow.com/questions/1732236/linq2sql-cannot-convert-iqueryable-to-iorderedqueryable-error/1732268#1732268Comment by Daniel Magliola on LINQ2SQL: Cannot convert IQueryable<> to IOrderedQueryable errorDaniel Magliola2009-11-13T22:24:46Z2009-11-13T22:24:46ZBoth worked like a charm, thank you! What do you mean we order at the end rather than in the middle? Isn't the actual SQL generated and executed after all this, once the query is enumerated?
I assumed LINQ would be smart enough to "combine" the WHEREs...http://stackoverflow.com/questions/1732236/linq2sql-cannot-convert-iqueryable-to-iorderedqueryable-error/1732249#1732249Comment by Daniel Magliola on LINQ2SQL: Cannot convert IQueryable<> to IOrderedQueryable errorDaniel Magliola2009-11-13T22:21:39Z2009-11-13T22:21:39ZHmmmmm, but wouldn't that first execute a query that'll bring all records from the database, and then filter them by status in ASP.Net?
I'd rather have the DB process all the WHEREs, which is what I thought happened if I just added the .Where clause, since the SQL would be generated and executed later, when the results is enumerated. In your case, doesn't ToList() cause it to be executed too?http://stackoverflow.com/questions/1664049/can-i-force-a-page-jump-in-html-printing/1664070#1664070Comment by Daniel Magliola on Can I force a page jump in HTML printing?Daniel Magliola2009-11-02T22:24:47Z2009-11-02T22:24:47ZI actually like the other one better, since it gives me more control. I can always assign the class "pagebreak" only to the H1's that should make the page jump. But it's still a good solution. +1 for @media, although screen should ignore page-break-before, I guess. Thanks!http://stackoverflow.com/questions/1495144/net-2-0-help-troubleshooting-a-system-accessviolationexception-100-managed-c/1632524#1632524Comment by Daniel Magliola on .Net 2.0: Help troubleshooting a System.AccessViolationException. 100% managed code.Daniel Magliola2009-10-28T00:14:54Z2009-10-28T00:14:54ZI don't have an antivirus in this machine. And I surely hope I don't have a virus either!http://stackoverflow.com/questions/1632881/how-to-get-the-greatest-of-two-columns-values-in-mysql/1632940#1632940Comment by Daniel Magliola on How to get the greatest of two columns values in MySQL?Daniel Magliola2009-10-28T00:14:07Z2009-10-28T00:14:07ZThank you! I did try "largest", and "maximum" and they didn't work. Thanks!http://stackoverflow.com/questions/1608992/how-can-i-compile-changes-in-only-1-document-but-keep-the-original-build-of-the-o/1609023#1609023Comment by Daniel Magliola on How can I compile changes in only 1 document but keep the original build of the others? (C#, Asp.Net MVC)Daniel Magliola2009-10-22T18:14:49Z2009-10-22T18:14:49ZYes, that's what you're supposed to do. Just download the whole copy of the code that is in production, make the little change, and compile it and re-upload.
And really, learn Source Control. You will be immensely happier, trust me :-)http://stackoverflow.com/questions/1523546/asp-net-ie6-making-invalid-requests/1584430#1584430Comment by Daniel Magliola on ASP.Net: IE6 making invalid requestsDaniel Magliola2009-10-19T22:48:04Z2009-10-19T22:48:04Z don't have a server farm, this is a single server. The problem is that IE6 (or some proxy, or something, although if it's a proxy, I wonder why I only get IE6 UA's) is screwing up the content it sends to the server, either the URL or the POST data, it's not the server not being able to "decrypt" it.http://stackoverflow.com/questions/1523546/asp-net-ie6-making-invalid-requestsComment by Daniel Magliola on ASP.Net: IE6 making invalid requestsDaniel Magliola2009-10-19T22:47:32Z2009-10-19T22:47:32ZI don't have a server farm, this is a single server. The problem is that IE6 (or some proxy, or something, although if it's a proxy, I wonder why I only get IE6 UA's) is screwing up the content it sends to the server, either the URL or the POST data, it's not the server not being able to "decrypt" it.