User Tom Ritter - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T10:55:51Zhttp://stackoverflow.com/feeds/user/8435http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1820291/jpgzip-file-combination-problem-with-zip-format6JPG+Zip File Combination Problem with Zip FormatTom Ritter2009-11-30T14:55:04Z2009-12-10T19:12:32Z
<p>Hopefully you've heard of the <a href="http://linux-hacks.blogspot.com/2009/02/theory-behind-hiding-zipped-file-under.html" rel="nofollow">neat hack</a> that lets you combine a JPG and a Zip file into a single file and it's a valid (or at least readable) file for both formats. Well, I realized that since JPG lets arbitrary stuff at the end, and ZIP at the beginning, you could stick one more format in there - in the middle. For the purposes of this question, assume the middle data is arbitrary binary data guarenteed not to conflict with the JPG or ZIP formats (meaning it doesn't contain the magic zip header 0x04034b50). Illustration:</p>
<pre><code>0xFFD8 <- start jpg data end -> 0xFFD9 ... ARBITRARY BINARY DATA ... 0x04034b50 <- start zip file ... EOF
</code></pre>
<p>I am catting like this:</p>
<blockquote>
<p>cat "mss_1600.jpg" filea fileb
filea fileb filea fileb filea
fileb filea fileb filea fileb filea
fileb filea fileb filea fileb filea
fileb filea fileb filea fileb filea
fileb "null.bytes"
"randomzipfile.zip" > temp.zip</p>
</blockquote>
<p>This produces a 6,318 KB file. It <strong>does not</strong> open in 7-Zip. However, when I cat one less 'double' (so instead of 13 filea and b's, 12):</p>
<blockquote>
<p>cat "mss_1600.jpg" filea fileb
filea fileb filea fileb filea
fileb filea fileb filea fileb filea
fileb filea fileb filea fileb filea
fileb filea fileb filea fileb
"null.bytes" "randomzipfile.zip" >
temp.zip</p>
</blockquote>
<p>It produces a 5,996 KB file that <strong>does</strong> open in 7-Zip.</p>
<p>So I know my arbitrary binary data doesn't have the magic Zip File Header to screw it up. I have reference files of the <a href="http://ritter.vg/misc/stuff/so/working" rel="nofollow">working jpg+data+zip</a> and the <a href="http://ritter.vg/misc/stuff/so/nonworking" rel="nofollow">non-working jpg+data+zip</a> (save-as cause the browser thinks they're images, and add the zip extensions yourself).</p>
<p>I want to know why it fails with 13 combinations and doesn't with 12. For bonus points, I need to get around this somehow.</p>
http://stackoverflow.com/questions/1820291/jpgzip-file-combination-problem-with-zip-format/1867553#18675532Answer by Tom Ritter for JPG+Zip File Combination Problem with Zip FormatTom Ritter2009-12-08T15:04:03Z2009-12-10T19:12:32Z<p>So for anyone else finding this question, here's the story:</p>
<p>Yes, Andy is literally correct as to why 7-Zip is failing on the file, but it doesn't help my problem since I can't exactly get people to use MY version of 7-Zip.</p>
<p>tyranid however got me the solution.</p>
<ul>
<li>First off, adding a small bytestring to the JPG as he suggests will let 7-Zip open it. However, it's slightly off from a valid JPG fragment, it needs to be FFEF00 <strong>07</strong> 504B030400 - the length was off by 2 bytes.</li>
<li>This lets 7-Zip open it, but not extract files, it fails silently. This is because the entries in the central directory have internal pointers/offsets that point to the entry of the file. Since you put a bunch of stuff before that, you need to correct all those pointers! </li>
<li>To have the zip open with Windows built in zip support, you need to, as tyranid says, correct the "offset of start of central directory with respect to the starting disk number". Here is a python script to do the last two, although it's a fragment, not copypasta-ready-to-use</li>
</ul>
<pre><code>
#Now we need to read the file and rewrite all the zip headers. Fun!
torewrite = open(magicfilename, 'rb')
magicdata = torewrite.read()
torewrite.close()
#Change the Central Repository's Offset
offsetOfCentralRepro = magicdata.find('\x50\x4B\x01\x02') #this is the beginning of the central repo
start = len(magicdata) - 6 #it so happens, that on my files, the point is stored 2 bytes from the end. so datadatadatdaata OF FS ET !! 00 00 EOF where OFFSET!! is the 4 bytes 00 00 are the last two bytes, then EOF
magicdata = magicdata[:start] + pack('I', offsetOfCentralRepro) + magicdata[start+4:]
#Now change the individual offsets in the central directory files
startOfCentralDirectoryEntry = magicdata.find('\x50\x4B\x01\x02', 0) #find the first central directory entry
startOfFileDirectoryEntry = magicdata.find('\x50\x4B\x03\x04', 10) #find the first file entry (we start at 10 because we have to skip past the first fake entry in the jpg)
while startOfCentralDirectoryEntry > 0:
#Now I move a magic number of bytes past the entry (really! It's 42!)
startOfCentralDirectoryEntry = startOfCentralDirectoryEntry + 42
#get the current offset just to output something to the terminal
(oldoffset,) = unpack('I', magicdata[startOfCentralDirectoryEntry : startOfCentralDirectoryEntry+4])
print "Old Offset: ", oldoffset, " New Offset: ", startOfFileDirectoryEntry , " at ", startOfCentralDirectoryEntry
#now replace it
magicdata = magicdata[:startOfCentralDirectoryEntry] + pack('I', startOfFileDirectoryEntry) + magicdata[startOfCentralDirectoryEntry+4:]
#now I move to the next central directory entry, and the next file entry
startOfCentralDirectoryEntry = magicdata.find('\x50\x4B\x01\x02', startOfCentralDirectoryEntry)
startOfFileDirectoryEntry = magicdata.find('\x50\x4B\x03\x04', startOfFileDirectoryEntry+1)
#Finally write the rewritten headers' data
towrite = open(magicfilename, 'wb')
towrite.write(magicdata)
towrite.close()
</code></pre>
http://stackoverflow.com/questions/1844727/vtx-file-format/1844866#18448660Answer by Tom Ritter for .VTX File Format?Tom Ritter2009-12-04T04:29:01Z2009-12-04T04:29:01Z<p>Based on some googling, it seems you're at the wrong end of the pipeline. As I understand it: A VTX file is a <a href="http://developer.valvesoftware.com/wiki/VTX" rel="nofollow">Valve Proprietary File Format</a> that is the <em>result</em> of a set of steps.</p>
<blockquote>
<p>The final output of Studiomdl for each
Half-Life model is a group of files in
the gamedirectory/models folder ready
to be used by the Game Engine: </p>
<ul>
<li>an .MDL
file which defines the structure of
the model along with animation,
bounding box, hit box, material, mesh
and LOD information, </li>
<li>a .VVD file which
stores position independent flat data
for the bone weights, normals,
vertices, tangents and texture
coordinates used by the MDL, currently</li>
<li><p>three separate types of VTX file:</p>
<ul>
<li>.sw.vtx (Software), </li>
<li>.dx80.vtx (DirectX
8.0) and </li>
<li>.dx90.vtx (DirectX 9.0) which store hardware optimized material,
skinning and triangle strip/fan
information for each LOD of each mesh
in the MDL, </li>
</ul></li>
<li>often a .PHY file
containing a rigid or jointed
(ragdoll) collision model, and
sometimes </li>
<li>a .ANI file for To do:
something to do with model animations</li>
</ul>
</blockquote>
<p><a href="http://developer.valvesoftware.com/wiki/Model%5FCreation%5FOverview" rel="nofollow">Valve</a></p>
<p>Now the Valve Source SDK may have some utilities in it to read VTX's (it seems to have the ability to make them anyway). Some people <em>may</em> have made 3rd party tools or have code to read them, but it's likely to not work on all files just cause it's a 3rd party format. I also found <a href="http://gmc.yoyogames.com/?showtopic=72947" rel="nofollow">this post</a> which might help if you haven't seen it before.</p>
http://stackoverflow.com/questions/1842519/how-badly-does-jquery-performance-degrade-when-using-a-lot-of-selectors-or-does/1842567#18425673Answer by Tom Ritter for How badly does jQuery performance degrade when using a lot of selectors, or does it?Tom Ritter2009-12-03T20:11:21Z2009-12-03T20:16:50Z<p>I'll give you a hint - almost definetly. I did something just like this and it was very painful. I tried another approach, storing the results of each selector in an array and then doing $(array).click() was much faster (especially in IE6/P3 900 mHz)</p>
<p>That said, you should <strong>benchmark</strong> and find the fastest way <em>for your application.</em> Find an old crappy computer with IE6, or get a VM with IE6, and test the timing in that. Selector tuning (and seeing which are slow and how I can avoid calling them) is my first stop on javascript optimizing. </p>
http://stackoverflow.com/questions/1842546/15-puzzle-solver/1842597#18425970Answer by Tom Ritter for 15 Puzzle SolverTom Ritter2009-12-03T20:15:34Z2009-12-03T20:15:34Z<p>I hope you're on linux. This oughta help you narrow things down:</p>
<pre><code> $ g++ file.cpp -g -Wall --pedantic-errors
$ gdb a.out
> run
Segment Fault in line XX blah blah blah
</code></pre>
http://stackoverflow.com/questions/811074/what-is-the-coolest-thing-you-can-do-in-10-lines-of-simple-code-help-me-inspir148What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners!Tom Ritter2009-05-01T11:45:47Z2009-12-03T07:44:09Z
<p>I'm looking for the coolest thing you can do in a few lines of simple code. I'm sure you can write a <a href="http://mcfunley.com/cs/blogs/dan/archive/2007/12/25/1532.aspx" rel="nofollow">Mandelbrot set in Haskell in 15 lines</a> but it's difficult to follow. </p>
<p><strong>My goal is to inspire students that programming is cool</strong>. </p>
<p>We <em>know</em> that programming is cool because you can create anything you imagine - it's the ultimate creative outlet. I want to inspire these beginners and get them over as many early-learning humps as I can.</p>
<p>Now, my reasons are selfish. I'm teaching an <em>Intro to Computing</em> course to a group of 60 half-engineering, half business majors; all freshmen. They are the students who came from underprivileged High schools. From my past experience, the group is generally split as follows: a few <a href="http://www.google.com/#hl=en&safe=off&q=Rockstar%2BProgrammers&fp=WnpED7D%5FIvM" rel="nofollow">rock-stars</a>, some who try very hard and <em>kind of</em> get it, the few who try very hard and <em>barely</em> get it, and the few who don't care. I want to reach as many of these groups as effectively as I can. Here's an example of how I'd use a computer program to teach:</p>
<blockquote>
<p>Here's an example of what I'm looking
for: a 1-line VBS script to get your
computer to talk to you:</p>
<pre><code>CreateObject("sapi.spvoice").Speak InputBox("Enter your text","Talk it")
</code></pre>
<p>I could use this to demonstrate order
of operations. I'd show the code, let
them play with it, then explain that
There's a lot going on in that line,
but the computer can make sense of it,
because it knows the rules. Then I'd
show them something like this:</p>
<pre><code>4(5*5) / 10 + 9(.25 + .75)
</code></pre>
<p>And you can see that first I need to
do is (5*5). Then I can multiply for
4. And now I've created the Object. Dividing by 10 is the same as calling
Speak - I can't Speak before I have an
object, and I can't divide before I
have 100. Then on the other side I
first create an InputBox with some
instructions for how to display it.
When I hit enter on the input box it
evaluates or "returns" whatever I
entered. (Hint: 'oooooo' makes a
funny sound) So when I say Speak, the
right side is what to Speak. And I
get that from the InputBox.</p>
<p>So when you do several things on a
line, like:</p>
<pre><code>x = 14 + y;
</code></pre>
<p>You need to be aware of the order of
things. First we add 14 and y. Then
we put the result (what it evaluates
to, or returns) into x.</p>
</blockquote>
<p>That's my goal, to have a bunch of these cool examples to demonstrate and teach the class while they have fun. I tried this example on my roommate and while I may not use this as the first lesson, she liked it and learned something.</p>
<p>Some cool <a href="http://reference.wolfram.com/legacy/v5/Tour/WritingProgramsInMathematica.html" rel="nofollow">mathematica programs that make beautiful graphs or shapes</a> that are easy to understand would be good ideas and I'm going to look into those. Here are some <a href="http://www.25lines.com/" rel="nofollow">complicated actionscript examples</a> but that's a bit too advanced and I can't teach flash. What other ideas do you have?</p>
http://stackoverflow.com/questions/1833518/remove-empty-subfolders-with-php/1833556#18335560Answer by Tom Ritter for Remove empty subfolders with PHPTom Ritter2009-12-02T15:17:51Z2009-12-02T15:17:51Z<p>This line</p>
<pre><code>$ret = $ret ? $ret : $res;
</code></pre>
<p>Could be made a little more readable:</p>
<pre><code>$ret = $ret || $res;
</code></pre>
<p>Or if PHP has the bitwise operator:</p>
<pre><code>$ret |= $res;
</code></pre>
http://stackoverflow.com/questions/1808874/how-to-do-non-invasive-profiling-of-a-running-asp-net-application/1808933#18089331Answer by Tom Ritter for How to do non-invasive profiling of a running ASP.NET application?Tom Ritter2009-11-27T13:58:06Z2009-11-27T13:58:06Z<p>Yes, you can <a href="http://www.eggheadcafe.com/articles/20060114.asp" rel="nofollow">take a memory dump</a> of the application as it's running and see what it's holding in memory. This should reinforce or deny your assumptions.</p>
http://stackoverflow.com/questions/1808877/mysql-some-form-of-union-needed/1808914#18089140Answer by Tom Ritter for mysql - some form of union neededTom Ritter2009-11-27T13:54:42Z2009-11-27T13:54:42Z<p>Yes, you can inner join the two queries as subqueries and then add the counts.</p>
<pre><code>select
letter,
a.count + b.count as total
from (
select letter, count(*)
from blah blah lots of joins
group by letter
) as a
inner join (
select letter, count(*)
from blah blah lots of joins
group by letter
) as b
on a.letter = b.letter
</code></pre>
http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/1771260#177126044Answer by Tom Ritter for What are some bad programming habits to look out for and avoid?Tom Ritter2009-11-20T15:32:35Z2009-11-20T15:32:35Z<p>I rewrite code I didn't write. </p>
http://stackoverflow.com/questions/1705152/hiding-a-link-in-asp-net/1705278#17052780Answer by Tom Ritter for hiding a link in asp.netTom Ritter2009-11-10T02:24:54Z2009-11-10T02:24:54Z<p>How about editing Master.cs to not add it, or only add it some of the time?</p>
<p>If that doesn't work, then you need to give us more context.</p>
http://stackoverflow.com/questions/1696957/how-to-print-numbers-from-1-to-100-which-ends-with-9/1696979#16969797Answer by Tom Ritter for how to print numbers from 1 to 100 which ends with 9Tom Ritter2009-11-08T16:05:29Z2009-11-08T16:05:29Z<p>I'm not answering your homework for you. Here's your tools, piece it together.</p>
<pre><code>for(int i=STARTING_POINT; i<=ENDING_POINT; i++)
{
//code here
}
</code></pre>
<p>This takes i from STARTING_POINT to ENDING_POINT, inclusive (so 0 to 5 would be 0,1,2,3,4,5). Inside the curly braces i is each number successively.</p>
<p>There is an arithmetic operator called <a href="http://en.wikipedia.org/wiki/Modulo%5Foperation" rel="nofollow">Modulo</a>. It's the remainder of an integer division. I'll give you some examples, you'll get it. It is represented by a Percent Sign %</p>
<pre><code>4 % 2 = 0 (No remainder of 4/2)
5 % 2 = 1 (Remainder of 5/2 is 1)
8 % 3 = 2 (remainder of 8/3 is 2)
9 % 3 = 0 (Remainder of 9/3 is 0)
</code></pre>
<p>There are your tools, go forth and code.</p>
http://stackoverflow.com/questions/1690429/defining-an-extension-method-on-ienumerablet-where-t-is-specific-kind-of-type/1690461#16904610Answer by Tom Ritter for Defining an extension method on IEnumerable<T> where T is specific kind of type?Tom Ritter2009-11-06T21:08:08Z2009-11-06T21:08:08Z<p>You can define <a href="http://msdn.microsoft.com/en-us/library/d5x73970.aspx" rel="nofollow">constraints</a> on Type Parameters. So you can require T to implement an interface:</p>
<pre><code>public static class Classy
{
public static void Extension<T>(this IEnumerable<T> Ninjas)
where T : IMathStuff
{
}
}
</code></pre>
<p>This requires all T to implement IMathStuff. Now, if you can't fit the operators into the interface IMathStuff, you can leave the interface blank as a <a href="http://en.wikipedia.org/wiki/Marker%5Finterface%5Fpattern" rel="nofollow">Marker Interface</a> and only apply it to classes that do implement the operators. </p>
<p>This kind of assumes you're working with all custom classes and not the built-in types. It's a workaround for something that isn't exactly supported.</p>
http://stackoverflow.com/questions/1657977/what-is-form-and-report-design-in-software-engineering/1657991#16579910Answer by Tom Ritter for What is 'Form and Report Design' in Software Engineering?Tom Ritter2009-11-01T18:59:39Z2009-11-01T18:59:39Z<p>I have no idea. It's not an industry term as far as I know. </p>
<p>So looking at the <strong>words</strong> it's probably "The design of Reports for use by [whoever the hell reads reports]". Now "Forms" has a few meanings one of which is actually software-related, so it could mean:</p>
<ul>
<li>The design of Forms for Windows Forms Apps</li>
<li>The design of Forms for your employees to fill out and otherwise waste time when they could actually be accomplishing something.</li>
</ul>
http://stackoverflow.com/questions/807225/how-can-i-optimize-the-microsoft-ajax-toolkit2How can I optimize the Microsoft AJAX Toolkit?Tom Ritter2009-04-30T14:33:57Z2009-11-01T12:41:01Z
<p>This is rather infuriating. I'm trying to optimize a very large site, and I'm at the step of reducing HTTP Requests. Microsoft is not cooperating. I have the following ScriptResources included. I'll try and grab a top-line for each to distinguish them</p>
<ol>
<li>// Name: MicrosoftAjax.debug.js 53.5Kb</li>
<li>// Name: MicrosoftAjaxWebForms.debug.js 14Kb</li>
<li>AjaxControlToolkit.BoxSide = function() { 11.4Kb</li>
<li>/// Sys.UI.DomElement <strong>958 Bytes!</strong></li>
<li>// Sys.Timer <strong>982 Bytes!</strong></li>
<li>// IDropSource 6.5Kb</li>
<li>AjaxControlToolkit.FloatingBehavior = function(element) { 2.2Kb</li>
<li>AjaxControlToolkit.BehaviorBase = function(element) { 5.4Kb</li>
<li>AjaxControlToolkit.DynamicPopulateBehavior = function(element) { 2.9Kb</li>
<li>AjaxControlToolkit.BoxCorners = function() { 3.6Kb</li>
<li>AjaxControlToolkit.DropShadowBehavior = function(element) { 3.4Kb</li>
<li>AjaxControlToolkit.ModalPopupBehavior = function(element) { 5.5Kb</li>
</ol>
<p><strong>Come on!</strong> 12 Bloody javascript includes! Less than a KILOBYTE! Half the time to get the dang data is probably spent asking for it! ARGHHH!</p>
<p>Anyway, as you can see, I am annoyed. Is there some way I can roll these up, and combine them? Like into <em>one</em> request?</p>
http://stackoverflow.com/questions/1652226/what-tools-would-you-use-to-solve-the-darpa-network-challenge/1652259#16522590Answer by Tom Ritter for What tools would you use to solve the DARPA Network Challenge?Tom Ritter2009-10-30T20:52:25Z2009-10-30T20:52:25Z<p>I'd report a terrorist threat in the form of red weather balloons to several major news networks (cough fox cough), and then wait.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184673#184673751Answer by Tom Ritter for What is the best comment in source code you have ever encountered?Tom Ritter2008-10-08T20:17:24Z2009-10-28T12:15:39Z<blockquote>
<pre><code>//Code sanitized to protect the foolish.
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Web.UI;
namespace Mobile.Web.Control
{
/// <summary>
/// Class used to work around Richard being a fucking idiot
/// </summary>
/// <remarks>
/// The point of this is to work around his poor design so that paging will
/// work on a mobile control. The main problem is the BindCompany() method,
/// which he hoped would be able to do everything. I hope he dies.
/// </remarks>
public abstract class RichardIsAFuckingIdiotControl : MobileBaseControl, ICompanyProfileControl
{
protected abstract Pager Pager { get; }
public void BindCompany(int companyId) { }
public RichardIsAFuckingIdiotControl()
{
MakeSureNobodyAccidentallyGetsBittenByRichardsStupidity();
}
private void MakeSureNobodyAccidentallyGetsBittenByRichardsStupidity()
{
// Make sure nobody is actually using that fucking bindcompany method
MethodInfo m = this.GetType().GetMethod("BindCompany", BindingFlags.DeclaredOnly |
BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
if (m != null)
{
throw new RichardIsAFuckingIdiotException("No!! Don't use the fucking BindCompany method!!!");
}
// P.S. this method is a joke ... the rest of the class is fucking serious
}
/// <summary>
/// This returns true if this control is supposed to be doing anything
/// at all for this request. Richard thought it was a good idea to load
/// the entire website during every request and have things turn themselves
/// off. He also thought bandanas and aviator sunglasses were "fuckin'
/// gnarly, dude."
/// </summary>
protected bool IsThisTheRightPageImNotSureBecauseRichardIsDumb()
{
return Request.QueryString["Section"] == this.MenuItemKey;
}
protected override void OnLoad(EventArgs e)
{
if (IsThisTheRightPageImNotSureBecauseRichardIsDumb())
{
Page.LoadComplete += new EventHandler(Page_LoadComplete);
Pager.RowCount = GetRowCountBecauseRichardIsDumb();
}
base.OnLoad(e);
}
protected abstract int GetRowCountBecauseRichardIsDumb();
protected abstract void BindDataBecauseRichardIsDumb();
void Page_LoadComplete(object sender, EventArgs e)
{
BindDataBecauseRichardIsDumb();
}
// the rest of his reduh-ndant interface members
public abstract string MenuItemName { get; set; }
public abstract string MenuItemKey { get; set; }
public abstract bool IsCapable(CapabilityCheck checker, int companyId);
public abstract bool ShowInMenu { get; }
public virtual Control CreateHeaderControl()
{
return null;
}
}
}
</code></pre>
</blockquote>
<p><strong>Update:</strong> The original author of the code <a href="http://mcfunley.com/438/from-the-annals-of-dubious-achievement" rel="nofollow">has outed himself</a> so I must give credit where it is due. <a href="http://mcfunley.com/" rel="nofollow">Dan McKinley</a> left the company I was with shortly after I started, and he talks more about the code, explaining some background and a few more "WTF's" that 'Richard' wrote.</p>
http://stackoverflow.com/questions/1631972/how-to-tell-if-someone-has-downloaded-the-latest-code/1632001#16320016Answer by Tom Ritter for How to tell if someone has downloaded the latest codeTom Ritter2009-10-27T16:22:32Z2009-10-27T17:03:00Z<p>Sure - run your own subversion server, turn on logging, and read the logs.</p>
<p><strong>Edit</strong>: TortoiseSVN is a <strong>client</strong>. Subversion is a <strong>server</strong>. Imagine Tortoise being a browser (firefox) and Subversion being the webserver (apache or IIS). What you want to do is read the <em>server logs</em> from Subversion (not the SVN Log, which is something completely different). </p>
<p>I don't know who or how you run your svn server. I run svnserve on linux through apache (so I say https:// instead of svn://), and I can read subversion logs through apache. They look like this:</p>
<pre><code>[18/Oct/2009:14:21:41 -0400] xx.xx.xx.xx TLSv1 DHE-RSA-AES256-SHA "OPTIONS /svn/terracidal/root HTTP/1.1" 401
[18/Oct/2009:14:21:42 -0400] xx.xx.xx.xx TLSv1 DHE-RSA-AES256-SHA "OPTIONS /svn/terracidal/root HTTP/1.1" 401
[18/Oct/2009:14:21:45 -0400] xx.xx.xx.xx TLSv1 DHE-RSA-AES256-SHA "OPTIONS /svn/terracidal/root HTTP/1.1" 194
[18/Oct/2009:14:21:45 -0400] xx.xx.xx.xx TLSv1 DHE-RSA-AES256-SHA "PROPFIND /svn/terracidal/root HTTP/1.1" 696
</code></pre>
<p>Again, these are server logs, not the SVN Log. I can crack up logging verbosity and see connections, debug statements, things about the running of the server - but also things like who's connecting and performing operations. That's what you care about. So if you or your company runs their own svn server, ask the admin if they can make the logs available for reading. If you use a 3rd party, you're probably out of luck. </p>
http://stackoverflow.com/questions/791533/why-do-you-program-in-assembly20Why do you program in assembly?Tom Ritter2009-04-26T20:21:13Z2009-10-27T14:44:04Z
<p>I have a question for all the hardcore low level hackers out there. I ran across this sentence in a blog. I don't really think the source matters (it's Haack if you really care) because it seems to be a common statement.</p>
<blockquote>
<p>For example, many modern 3-D Games have their high performance core engine written in C++ and Assembly.</p>
</blockquote>
<p>As far as the assembly goes - is the code written in assembly because you don't want a compiler emitting extra instructions or using excessive bytes, or are you using better algorithms that you can't express in C (or can't express without the compiler mussing them up)?</p>
<p>I completely get that it's important to understand the low-level stuff. I just want to understand the <em>why</em> program in assembly after you do understand it.</p>
<p><strong>Edit</strong>: Wow! Thank you all for the fantastic responses! This was way better than I had hoped for!</p>
http://stackoverflow.com/questions/403215/check-for-existance-of-column-in-datareader-or-not-make-debugger-break-on-certain1Check for Existance of column in DataReader OR Not make debugger break on certain exceptionsTom Ritter2008-12-31T15:32:13Z2009-10-21T16:12:50Z
<p>I have code that looks like:</p>
<blockquote>
<pre><code>//System.Data.IDataRecord dr
try
{
Consolidated = Utility.NullConvert.ToBool(dr[Constants.Data.Columns.cConsolidated], false);
}
catch (IndexOutOfRangeException) { } //swallow
</code></pre>
</blockquote>
<p>I don't know if the consolidated column will be present in the datareader, so I do that to check, works fine (little hackish though). </p>
<p>When I attach a debugger though, it breaks on that whenever it throws the exception however. Extremely annoying.</p>
<p>Is there a better way to write that code; or is there some Visual-Studio way of telling it to ignore the exception and not break (but only right here; not everywhere).</p>
http://stackoverflow.com/questions/1579816/sql-need-a-query-that-returns-every-field-that-contains-a-specified-letter/1579826#15798263Answer by Tom Ritter for SQL Need a query that returns every field that contains a specified letter.Tom Ritter2009-10-16T19:04:41Z2009-10-16T19:04:41Z<pre><code>select *
from table
where keyword like '%a%'
and keyword like '%b%'
</code></pre>
<p>ps This will be super slow. You may want to investigate full text indexing solutions.</p>
http://stackoverflow.com/questions/1572840/sql-between-v1-and-v2/1572864#15728647Answer by Tom Ritter for sql: BETWEEN v1 AND v2Tom Ritter2009-10-15T14:46:05Z2009-10-16T08:50:37Z<p>SQL Server 2008:</p>
<pre><code>select 1
where 5 between 1 and 7
</code></pre>
<p>1 result</p>
<pre><code>select 1
where 5 between 7 and 1
</code></pre>
<p>0 results</p>
<p>Based on these results, and the <a href="http://www.network-theory.co.uk/docs/postgresql/vol1/ComparisonOperators.html" rel="nofollow">Postgre Docs</a> I would hypothesize that the ANSI Standard is as follows (although I can't find that doc).</p>
<pre><code>a between x and y
==
a >= x AND a <= y
</code></pre>
<p>UPDATE:</p>
<p>The SQL-92 spec says (quote):</p>
<pre><code>"X BETWEEN Y AND Z" is equivalent to "X>=Y AND X<=Z"
</code></pre>
http://stackoverflow.com/questions/1575310/how-to-insert-a-row-but-on-duplicate-update-it-instead/1575322#15753222Answer by Tom Ritter for How to insert a row, but on duplicate; update it instead?Tom Ritter2009-10-15T21:54:25Z2009-10-15T21:54:25Z<p>You do want <strong>ON DUPLICATE KEY UPDATE</strong>. It looks for the Primary Key of the table, and if it exists, updates all the other rows.</p>
<p>So your table has a primary key of (userid, itemid) and the following values:</p>
<pre><code>userid itemid strength
4 5 6
</code></pre>
<p>And you want to bump it to strength=9, use this:</p>
<pre><code>INSERT INTO table ON DUPLICATE KEY UPDATE VALUES(4,5,9)
</code></pre>
<p>It will insert a row with 4,5,9 if it doesn't exist, and will update strength to 9 <em>on the row with primary key (4,5)</em> if it does exist. It won't update any other rows (e.g. rows with userid4 but itemid 10 or itemid 5 but userid 70) because they don't match the whole PK.</p>
http://stackoverflow.com/questions/1573268/c-delegates-real-world-usage/1573290#15732902Answer by Tom Ritter for C# Delegates Real World UsageTom Ritter2009-10-15T15:53:13Z2009-10-15T15:58:40Z<p>Assuming you're not talking about events - of course you can program around it. The point is to make it <strong>nicer</strong> and <strong>cleaner</strong>.</p>
<pre><code>protected void Sort()
{
foreach (string key in _dBase.Keys)
{
Array.Sort<Pair<string, Dictionary<string, T>>>(_dBase[key],
new Comparison<Pair<string, Dictionary<string, T>>>(
delegate(Pair<string, Dictionary<string, T>> a, Pair<string, Dictionary<string, T>> b)
{
if (a == null && b != null)
return 1;
else if (a != null && b == null)
return -1;
else if (a == null && b == null)
return 0;
else
return a.First.CompareTo(b.First);
}));
}
}
</code></pre>
<p>Could I do that without an inline delegate? Sure. Would I have a floppy private method in my class that would only be used for this one instance? Yup.</p>
<p><strong>Edit:</strong> As mentioned in the comments, you can simplify:</p>
<pre><code>Array.Sort<Pair<string, Dictionary<string, T>>>(_dBase[key],
new Comparison<Pair<string, Dictionary<string, T>>>(
delegate(Pair<string, Dictionary<string, T>> a, Pair<string, Dictionary<string, T>> b)
{
</code></pre>
<p>to</p>
<pre><code>Array.Sort<Pair<string, Dictionary<string, T>>>(_dBase[key], (a,b) =>
{
</code></pre>
http://stackoverflow.com/questions/1544271/exit-survey-popup/1544312#15443120Answer by Tom Ritter for Exit survey popupTom Ritter2009-10-09T14:53:32Z2009-10-09T14:53:32Z<p>You can't solve this problem. </p>
<blockquote>
<p>First, you will not be able to detect
events such as a page refresh or a
manual URL change, since it's a
browser event and not a page event.</p>
</blockquote>
<p>Actually, I would expect all of those things to still fire the onunload, although I'm not 100% sure. I would be surprised if they didn't though.</p>
<blockquote>
<p>Secondly, if the user has multiple
tabs open and closes one, it's
impossible to tell that the user is
still on the site. Even if we use
cookies to keep track of number of
windows open, we won't know if the
user is actually leaving the website,
or just going to an internal link.</p>
</blockquote>
<p>Yup. Unless you put an immense effort into this, you can't solve it. And what constitutes immense effort? Ever seen gmail? And how it shows you at the bottom everwhere you're logged in from, and the ability to remote kick people off? Something like that, with the pages pinging the server and the server maintaining state and constant communication.</p>
http://stackoverflow.com/questions/1544215/tips-for-writing-a-jquery-selector/1544273#15442733Answer by Tom Ritter for Tips for writing a jQuery selectorTom Ritter2009-10-09T14:48:24Z2009-10-09T14:48:24Z<p><strong>Performance test your selectors</strong></p>
<p>Yea, everything's hunky dory for me on my 8 Cores of goodness in Chrome. But then I pretend I'm a client and visiting on a 900 mHz IE6 machine (don't laugh, I keep one of these <em>next to me</em> to test this stuff) and suddenly <strong>I can get lunch in the time it takes my selector to return</strong>.</p>
<p>I changed some code from this: $('.class, .class2, .class3').show()</p>
<p>To something like this: array.push($(this)) ... $(array).show()
And sped it up 100x</p>
http://stackoverflow.com/questions/1544164/how-do-i-edit-an-asp-net-site-changes-i-make-to-cs-files-dont-affect-anything/1544177#15441773Answer by Tom Ritter for How do I edit an asp.net site? Changes I make to .cs files, don't affect anything.Tom Ritter2009-10-09T14:36:19Z2009-10-09T14:36:19Z<ol>
<li>That's ASP.Net - ASP is something different =)</li>
<li>Coming from PHP you probably didn't know that .cs files need to be compiled, and then redeployed. No harm no foul, but go read up about that. It can be different in different circumstances - for simple solutions you can launch a debug webserver with F5 that will preview your changes. For more complex apps (like what we use at work) we run a production IIS setup on our local machines. Try F5, see if that does it.</li>
</ol>
http://stackoverflow.com/questions/1544126/how-to-block-a-website-using-c/1544158#15441584Answer by Tom Ritter for How to block a website using C#Tom Ritter2009-10-09T14:34:06Z2009-10-09T14:34:06Z<p>You're going about it the wrong way. You don't want to intercept at the browser level - I'll use a browser or method you've never heard of to get where I want to go. You need to go deeper. Own the network interface or the operating system's network communication (e.g. the hosts file as people said) and authenticate each connection. Ideally, own it <em>outside</em> of the computer - at the network infrastructure level.</p>
http://stackoverflow.com/questions/1538396/output-caching-pages-with-user-specific-information/1538448#15384480Answer by Tom Ritter for Output Caching pages with user specific informationTom Ritter2009-10-08T15:09:42Z2009-10-08T15:09:42Z<p>One idea I had a bit ago was to <strong>cache the entire page</strong> and then, <strong>fill in user-spcific information using javascript</strong>. It'd require a very large re-architecture most likely, but the gains could be immense.</p>
<p>I wrote a <a href="http://ritter.vg/n.php?page=code%5Fpoc" rel="nofollow">proof of concept about it</a> but the idea is render out the user data dynamically in an iframe:</p>
<pre><code><html>
<head>
<script type="text/javascript">
var iData = {};
iData.loggedIn = true;
iData.username = 'Your Username';
iData.userLevel = 'Mod';
</script>
</head>
</html>
</code></pre>
<p>Then in your (cached, static) page, manipulate the page:</p>
<pre><code>var iData = window.iframe.iData;
if(!iData.loggedIn)
{
$('topnav_hidden').style.display = 'none';
$('topnav_pm').style.display = 'none';
$('topnav_mcp').style.display = 'none';
$('topnav_logout').style.display = 'none';
hideModFunctions();
var replyLinks = getElementsByClass('reply_links', $('mainTable'), 'span');
for(var i=0;i<replyLinks.length;i++)
replyLinks[i].style.display = 'none';
var replyLinks = getElementsByClass('reply_links', $('basicTable'), 'span');
for(var i=0;i<replyLinks.length;i++)
replyLinks[i].style.display = 'none';
}
else
{
$('fillin_username').innerHTML = iData.username;
$('topnav_register').style.display = 'none';
$('topnav_login').style.display = 'none';
if(iData.userLevel != 'Mod' && iData.userLevel != 'Admin')
hideModFunctions();
}
</code></pre>
<p>Now to be clear - <strong>this is probably not a practical approach for most people</strong>, but if you're <em>really getting hammered</em> and your content is 99% static, this could net you some big gains if you were willing to invest a lot of effort in setting it up.</p>
http://stackoverflow.com/questions/1462119/how-do-you-use-javascript-to-duplicate-form-fields/1462145#14621454Answer by Tom Ritter for How do you use Javascript to duplicate form fields?Tom Ritter2009-09-22T19:35:56Z2009-09-22T19:35:56Z<p>There's a technique called <strong>supplant</strong> that does this. I didn't write it, I think Douglas Crockford did. But I'll quote it:</p>
<p>Now that your JavaScript program has received the data, what can it do with it? One of the simplest things is client-side HTML generation.</p>
<pre><code>var template = '<table border="{border}"><tr><th>Last</th><td>{last}</td></tr>' +
'<tr><th>First</th><td>{first}</td></tr></table>';
</code></pre>
<p>Notice that we have an HTML template with three variables in it. Then we'll obtain a JSON object containing members that match the variables.</p>
<pre><code>var data = {
"first": "Carl",
"last": "Hollywood",
"border": 2
};
</code></pre>
<p>We can then use a supplant method to fill in the template with the data.</p>
<pre><code>mydiv.innerHTML = template.supplant(data);
</code></pre>
<p>JavaScript strings do not come with a supplant method, but that is ok because JavaScript allows us to augment the built-in types, giving them the features we need.</p>
<pre><code>String.prototype.supplant = function (o) {
return this.replace(/{([^{}]*)}/g,
function (a, b) {
var r = o[b];
return typeof r === 'string' ?
r : a;
}
);
};
</code></pre>
<p>From <a href="http://www.json.org/fatfree.html" rel="nofollow">http://www.json.org/fatfree.html</a></p>
<p>One technique I've seen to avoid that messy variable assignment of a template is to do:</p>
<pre><code><script id="rowTemplate" type="text/html">
<tr>
<td>Field A:</td>
<td><input type='text' name='fielda[{id}]'></td>
<td>Field B:</td>
<td><textarea name='fieldb[{id}]'></textarea></td>
</tr>
</script>
</code></pre>
<p>This will let your write much prettier code as you can reference it with getElementById.</p>
<p>So in your case, rather than populating it with a JSON object, you would just look over however many rows you need to add and replace the id's.</p>
http://stackoverflow.com/questions/811074/what-is-the-coolest-thing-you-can-do-in-10-lines-of-simple-code-help-me-inspir/836124#836124Comment by Tom Ritter on What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners!Tom Ritter2009-12-16T00:59:15Z2009-12-16T00:59:15ZI'm accepting this answer because it was one of the biggest hits in the class, but is stagnating by only having a few upvotes. I want to bring a lot more attention to this.http://stackoverflow.com/questions/1842546/15-puzzle-solver/1842597#1842597Comment by Tom Ritter on 15 Puzzle SolverTom Ritter2009-12-04T00:28:33Z2009-12-04T00:28:33ZUse 'bt' to get a stacktrace. Google 'intro to gdb' or somesuch to learn how to use gdb, it's superpowerful.http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1840883#1840883Comment by Tom Ritter on Can someone copyright a SQL query?Tom Ritter2009-12-03T16:05:37Z2009-12-03T16:05:37ZThis is probably the safest approach.http://stackoverflow.com/questions/1820291/jpgzip-file-combination-problem-with-zip-format/1837194#1837194Comment by Tom Ritter on JPG+Zip File Combination Problem with Zip FormatTom Ritter2009-12-03T03:50:10Z2009-12-03T03:50:10ZThis got me 60% of the way there. I also had to modify the 504b0102 entries to change THEIR offsets otherwise it opened but didn't let you extract files. I <b>think</b> I have a working jpg/zip in Windows Explorer and 7-Zip, but I need to do more testing tomorrow.http://stackoverflow.com/questions/1820291/jpgzip-file-combination-problem-with-zip-format/1837180#1837180Comment by Tom Ritter on JPG+Zip File Combination Problem with Zip FormatTom Ritter2009-12-03T01:57:56Z2009-12-03T01:57:56ZIncredible good sir. I wonder if I can put a fake file of the correct form in that first span of bytes and trick 7-Zip... I'm going to play a bit (and also wait a bit before accepting, no offense)http://stackoverflow.com/questions/1835258/validating-forms-in-html-php-and-javascriptComment by Tom Ritter on Validating forms in HTML, PHP, and JavaScriptTom Ritter2009-12-02T19:35:23Z2009-12-02T19:35:23ZFYI, this doesn't have anything to do with PHP.http://stackoverflow.com/questions/1834541/crc-4-implementation-in-cComment by Tom Ritter on CRC-4 implementation in C#Tom Ritter2009-12-02T17:47:00Z2009-12-02T17:47:00ZJesus Christ Google is scary. This is the 6th Google Result for "CRC-4-ITU" and it was indexed 7 minutes after it was posted.http://stackoverflow.com/questions/1827952/why-where-is-apache-mussing-with-my-content-typeComment by Tom Ritter on Why/Where is Apache Mussing with my Content-Type?Tom Ritter2009-12-01T21:07:49Z2009-12-01T21:07:49ZNope, it just return's a string. literally { return 'css rules'; }http://stackoverflow.com/questions/1827952/why-where-is-apache-mussing-with-my-content-type/1828220#1828220Comment by Tom Ritter on Why/Where is Apache Mussing with my Content-Type?Tom Ritter2009-12-01T19:37:40Z2009-12-01T19:37:40ZNope, I double checked using the headers_sent function <a href="http://php.net/headers_sent" rel="nofollow">php.net/headers_sent</a>http://stackoverflow.com/questions/1827952/why-where-is-apache-mussing-with-my-content-typeComment by Tom Ritter on Why/Where is Apache Mussing with my Content-Type?Tom Ritter2009-12-01T18:46:53Z2009-12-01T18:46:53ZSame thing. It wasn't there initially. I added it because I thought it might help.http://stackoverflow.com/questions/1808877/mysql-some-form-of-union-needed/1808914#1808914Comment by Tom Ritter on mysql - some form of union neededTom Ritter2009-11-27T17:53:45Z2009-11-27T17:53:45ZSo use a full outer join.http://stackoverflow.com/questions/1808936/how-to-handle-http-requests-from-a-browser-using-cComment by Tom Ritter on how to handle http requests from a browser using c#Tom Ritter2009-11-27T14:01:53Z2009-11-27T14:01:53ZYou should use one of the free or for-pay products to do it. There's not much point in reinventing the wheel - there are a half-dozen ways to get around your scheme in my head in the time it took me to type this comment.http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/1771303#1771303Comment by Tom Ritter on What are some bad programming habits to look out for and avoid?Tom Ritter2009-11-20T16:04:32Z2009-11-20T16:04:32ZThis is actually why I <i>don't</i> start many side projects - I refuse to start something unless I believe there is a reasonable chance of completing it.http://stackoverflow.com/questions/1770267/how-do-i-pause-vbs-script-while-folder-is-deletedComment by Tom Ritter on How do I pause VBS script while folder is deleted?Tom Ritter2009-11-20T13:02:19Z2009-11-20T13:02:19ZWhat's the type of objFileSystem?http://stackoverflow.com/questions/1557071/the-size-of-a-jpegjfif-image/1602428#1602428Comment by Tom Ritter on the size of a jpeg(jfif) imageTom Ritter2009-11-16T01:36:24Z2009-11-16T01:36:24ZThis helped me a lot, but I found another reference that said when you find the SOS marker, you need to just start reading the data looking for the EOI marker and that will be the end. <a href="http://gvsoft.homedns.org/exif/Exif-explanation.html" rel="nofollow">gvsoft.homedns.org/exif/Exif-explanation.html/…</a>
This matches what I'm seeing with the image I am working on ATM.