User Josh Matthews - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T06:08:58Zhttp://stackoverflow.com/feeds/user/3830http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1313470/how-to-ensure-sqlite-isnt-caching-specific-select-queries0How to ensure sqlite isn't caching specific select queries?Josh Matthews2009-08-21T18:12:36Z2009-12-12T04:37:33Z
<p>I'm in the situation that I'm using sqlite with ActiveRecord and Rails (also, this is JRuby and so I'm actually using the jdbcsqlite adapter, in case that matters). Now, I'm trying to insert a row into the table attention_seekers, but only if there is no other existing similar row. Accordingly,</p>
<pre><code>unless AttentionSeeker.find(:first, :conditions => {:key_id => key.id, :locale_id => l.id})
item = AttentionSeeker.new(:key_id => key.id, :locale_id => l.id)
item.save
end
</code></pre>
<p>This is the generated output in the log:</p>
<pre><code>CACHE (0.0ms) SELECT * FROM attention_seekers WHERE (attention_seekers.key_id = 318 AND attention_seekers.locale_id = 20)
AttentionSeeker Create (1.0ms) INSERT INTO attention_seekers (key_id, locale_id) VALUES(318, 20)
CACHE (0.0ms) SELECT * FROM attention_seekers WHERE (attention_seekers.key_id = 318 AND attention_seekers.locale_id = 20)
AttentionSeeker Create (2.0ms) INSERT INTO attention_seekers (key_id, locale_id) VALUES(318, 20)
</code></pre>
<p>As you can see, for some reason the find is being cached, even though I'm inserting elements which affect it. What am I doing wrong/how can I stop this behaviour?</p>
http://stackoverflow.com/questions/1419362/method-pointers-in-ruby/1419367#14193671Answer by Josh Matthews for Method pointers in rubyJosh Matthews2009-09-14T01:48:04Z2009-09-14T01:56:19Z<pre><code>[:type, :type].collect { |method_name| self.send(method_name) }
</code></pre>
<p>Alternatively, if the method is part of an object:</p>
<pre><code>method = obj.method(:type)
values = [method.call, method.call]
</code></pre>
http://stackoverflow.com/questions/1369388/ruby-how-to-either-set-a-variable-to-0-or-if-it-is-already-set-increment-by-1/1369430#13694303Answer by Josh Matthews for Ruby: How to either set a variable to 0 or, if it is already set, increment by 1Josh Matthews2009-09-02T18:39:01Z2009-09-02T18:39:01Z<pre><code>array.each do |c|
newarray[c.type] = 1 + (newarray[c.type] || -1)
end
</code></pre>
<p>Alternatively</p>
<pre><code>array.each do |c|
newarray[c.type] ||= -1
newarray[c.type] += 1
end
</code></pre>
http://stackoverflow.com/questions/1353382/how-can-i-use-fossil-dvcs-in-a-home-environment/1353916#13539161Answer by Josh Matthews for How can I use fossil (DVCS) in a home environment?Josh Matthews2009-08-30T13:51:37Z2009-08-31T19:39:41Z<p>According to <a href="http://fossil-scm.hwaci.com/index.html/info/a6baf9cbee" rel="nofollow">this fossil ticket</a>, cloning, pushing and pulling require a fossil server to be running. You can't just use the repo, you'll have to start a server, then refer to <a href="http://localhost/whatever" rel="nofollow">http://localhost/whatever</a> and you should be golden.</p>
<ol>
<li>Run <code>fossil server</code> in the original repository</li>
<li>Go to the destination directory and run <code>fossil clone <a href="http://localhost" rel="nofollow">http://localhost</a></code>:<code>8080 <repository name></code> (or push or pull) </li>
</ol>
http://stackoverflow.com/questions/1355564/smiley-face-when-assigning-improper-value-type-to-struct-property/1355589#13555893Answer by Josh Matthews for Smiley face when assigning improper value type to struct property!!Josh Matthews2009-08-31T02:37:46Z2009-08-31T02:37:46Z<p>The string is being assigned a character value (1), which happens to be a smiley face in the ASCII character set.</p>
http://stackoverflow.com/questions/1355531/c-how-to-loop-through-a-list-of-structs-and-access-their-properties/1355539#13555394Answer by Josh Matthews for C++ How to loop through a list of structs and access their propertiesJosh Matthews2009-08-31T02:19:23Z2009-08-31T02:25:30Z<p>It's as easy as <code>Iterator->property</code>. Your first attempt is almost correct, it just needs some parentheses due to operator precedence: <code>(*Iterator).property</code></p>
<p>In order to use for_each, you would have to lift the cout statments into a function or functor like so:</p>
<pre><code>void printData(AllDataType &data)
{
cout << "\t" + data.property1 + "\n";
cout << "\t" + data.property2 + "\n";
}
for_each(AllData.begin(), AllData.end(), printData);
</code></pre>
http://stackoverflow.com/questions/1353852/javascript-auto-suggest-to-update-multiple-fields/1353900#13539001Answer by Josh Matthews for JavaScript Auto suggest to update multiple fieldsJosh Matthews2009-08-30T13:43:51Z2009-08-30T13:43:51Z<p>If you use <a href="http://wiki.github.com/madrobby/scriptaculous/ajax-autocompleter" rel="nofollow">Ajax.Autocompleter</a> from script.aculo.us, you can override the afterUpdateElement function to do this for you. You could then make a call that could send back JSON like the following:</p>
<pre><code>{ fields: ['first', 'second'],
first: 'value',
second: 'another value' }
</code></pre>
<p>and populate your form with something like:</p>
<pre><code>for(field in json.fields)
$(field).value = json.getAttribute(field);
</code></pre>
http://stackoverflow.com/questions/1324222/what-are-the-most-useful-high-quality-free-c-projects-you-really-learned-a-lot/1324549#13245491Answer by Josh Matthews for What are the most useful high quality free C++ projects you really learned a lot from?Josh Matthews2009-08-24T20:26:58Z2009-08-24T20:26:58Z<p><a href="http://www.scummvm.org" rel="nofollow">ScummVM</a>. It's really well thought out and put together - quite easy to dive into and read.</p>
http://stackoverflow.com/questions/726412/installing-hpricot-for-jruby/1323619#13236194Answer by Josh Matthews for Installing hpricot for JRubyJosh Matthews2009-08-24T17:13:14Z2009-08-24T17:13:14Z<p>Since Ola Bini's rewrite of hpricot jruby support last month, the <a href="http://github.com/whymirror/hpricot/" rel="nofollow">git head</a> of hpricot can be installed with jruby. Just download the head, then use</p>
<pre><code>jruby -S rake package_jruby
cd pkg
sudo jgem install ./hpricot-0.8.1-jruby.gem
</code></pre>
<p>and you should be golden.</p>
http://stackoverflow.com/questions/1313470/how-to-ensure-sqlite-isnt-caching-specific-select-queries/1314114#13141141Answer by Josh Matthews for How to ensure sqlite isn't caching specific select queries?Josh Matthews2009-08-21T20:43:28Z2009-08-21T20:43:28Z<p>I did some digging and came across <a href="http://www.dx13.co.uk/articles/2008/02/06/Ruby-on-Rails-ActiveRecord-Query-Caching.html" rel="nofollow">this helpful blog post</a>, with more information available <a href="http://ryandaigle.com/articles/2007/2/7/what-s-new-in-edge-rails-activerecord-explicit-caching" rel="nofollow">here</a>. My solution (using the validation that Mike Buckbee suggested - thanks!):</p>
<pre><code>AttentionSeeker.uncached do
item = AttentionSeeker.new(:key_id => key.id, :locale_id => l.id)
item.save
end
</code></pre>
http://stackoverflow.com/questions/59670/how-to-get-rid-of-deprecated-conversion-from-string-constant-to-char-warning13How to get rid of `deprecated conversion from string constant to ‘char*’` warnings in GCC?Josh Matthews2008-09-12T18:15:55Z2009-08-21T02:14:26Z
<p>So I'm working on an exceedingly large codebase, and recently upgraded to gcc 4.3, which now triggers this warning:</p>
<p>warning: deprecated conversion from string constant to ‘char*’</p>
<p>Obviously, the correct way to fix this is to find every declaration like
char *s = "constant string";
or function call like
void foo(char *s);
foo("constant string");
and make them const char pointers. However, that would mean touching 564 files, minimum, which is not a task I wish to perform at this point in time. The problem right now is that I'm running with -werror, so I need some way to stifle these warnings. How can I do that?</p>
http://stackoverflow.com/questions/1079702/using-emacs-how-could-i-indent-format-a-code-segment-in-a-txt-file/1080063#10800630Answer by Josh Matthews for Using Emacs, how could I indent/format a code segment in a TXT file? Josh Matthews2009-07-03T16:34:05Z2009-07-03T16:34:05Z<p>You might be able to mark the region, then narrow the view to the region, change the mode, indent, return to text-mode, and return to the full buffer again. I forget the exact shortcuts at the moment, but it should be fairly easy to turn into a function.</p>
http://stackoverflow.com/questions/884545/is-there-an-ignore-on-commit-option-in-mercurial/884602#8846020Answer by Josh Matthews for Is there an ignore-on-commit option in mercurial?Josh Matthews2009-05-19T19:29:25Z2009-05-19T19:29:25Z<p>You could alias commit to something like 'hg commit -X excluded_file.ext' I've never used mercurial, so I'm just going by the man page here.</p>
http://stackoverflow.com/questions/46714/why-is-argmax-not-defined-via-limits-h2Why is ARG_MAX not defined via limits.h?Josh Matthews2008-09-05T19:39:37Z2009-05-15T21:04:51Z
<p>On Fedora Core 7, I'm writing some code that relies on ARG_MAX. However, even if I #include <limits.h>, the constant is still not defined. My investigations show that it's present in <sys/linux/limits.h>, but this is supposed to be portable across Win32/Mac/Linux, so directly including it isn't an option. What's going on here?</p>
http://stackoverflow.com/questions/749888/is-there-a-good-way-to-do-emacs-project/750355#7503551Answer by Josh Matthews for is there a good way to do emacs project ?Josh Matthews2009-04-15T04:53:19Z2009-04-15T04:53:19Z<p>I recently started using <a href="http://repo.or.cz/w/ShellArchive.git?a=blob%5Fplain;hb=HEAD;f=project-root.el" rel="nofollow">project-root</a> to manage my various directory trees. I've now bound F5 to (with-project-root (compile)) and the default-directory is automatically set to the root of any project that I've specified in my .emacs, based on whatever buffer I'm invoking the compile from.</p>
http://stackoverflow.com/questions/745694/how-can-i-make-the-compilation-log-create-a-new-window-in-emacs2How can I make the compilation log create a new window in emacs? Josh Matthews2009-04-13T22:58:05Z2009-04-14T08:48:11Z
<p>If I only have one window showing in emacs and use M-x compile, the window splits in two and I can watch the compile buffer easily. However, if I have more windows showing, the compilation log takes over one of the others, which I find irritating. How can I make emacs always split a new window to show the compilation log?</p>
<p>Edit: A bit more information from my reading that I've been doing. It looks like compile.el calls display-buffer, which only splits a window if it is current full width. Is there some way to avoid this behaviour?</p>
http://stackoverflow.com/questions/201966/setting-qtmovie-attributes1Setting QTMovie attributesJosh Matthews2008-10-14T16:52:27Z2009-02-04T22:05:38Z
<p>I'm trying to create a QTVR movie via QTKit, and I've got all the frames in the movie. However, setting the attributes necessary doesn't seem to be having any effect. For example:</p>
<pre><code>NSNumber *val = [NSNumber numberWithBool:YES];
[fMovie setAttribute:val forKey:QTMovieIsInteractiveAttribute];
val = [NSNumber numberWithBool:NO];
[fMovie setAttribute:val forKey:QTMovieIsLinearAttribute];
</code></pre>
<p>If I then get the value of these attributes, they come up as NO and YES, respectively. The movie is editable, so I can't understand what I'm doing wrong here. How can I ensure that the attributes will actually change?</p>
http://stackoverflow.com/questions/382992/oldest-programs-you-still-have-to-maintain/383123#3831230Answer by Josh Matthews for Oldest programs you still have to maintain?Josh Matthews2008-12-20T09:02:41Z2008-12-20T09:02:41Z<p>At work, the product I've been working on was created in the mid 1980s, and there are large, mostly unchanged except for K&R function declaration modifications, blocks of code that date from as far back as 1983.</p>
<p>Edit: Oh yeah, and it embeds a scheme interpreter from that period as well.</p>
http://stackoverflow.com/questions/192986/quicktime-video-codec-configuration1QuickTime video codec configurationJosh Matthews2008-10-10T20:55:09Z2008-12-12T14:57:38Z
<p>So I'm porting an app from Windows to Mac, and part of the app deals with creating movie files. On Windows, there's a group of functions like ICOpen and ICConfigure, which signify to the video compression driver to open up a configuration box for the selected codec. Is there anything like that for QuickTime on Mac?</p>
http://stackoverflow.com/questions/322333/extracting-32-bit-rgba-value-from-nscolor0Extracting 32-bit RGBA value from NSColorJosh Matthews2008-11-26T22:07:19Z2008-11-27T04:58:29Z
<p>I've got an NSColor, and I really want the 32-bit RGBA value that it represents. Is there any easy way to get this, besides extracting the float components, then multiplying and ORing and generally doing gross, endian-dependent things?</p>
<p>Edit: Thanks for the help. Really, what I was hoping for was a Cocoa function that already did this, but I'm cool with doing it myself.</p>
http://stackoverflow.com/questions/125028/sending-svn-commits-to-an-rss-feed8Sending SVN commits to an RSS feedJosh Matthews2008-09-24T02:13:25Z2008-11-18T08:50:13Z
<p>So my favourite web tool, <a href="http://subtlety.errtheblog.com" rel="nofollow">Subtlety</a>, was recently discontinued, which means that I no longer have easy access to the commit logs of various SVN projects that I follow. Are there any other tools that easily pump out an RSS feed of commits for a public SVN repo?</p>
http://stackoverflow.com/questions/290598/changing-font-tracking-in-cocoa0Changing font tracking in CocoaJosh Matthews2008-11-14T16:14:51Z2008-11-15T13:55:14Z
<p>I'm doing some text rendering in Cocoa using NSAttributedString, and setting the font and underline properties and all that jazz. However, I can't figure out how I can change the text's tracking. Any suggestions?</p>
http://stackoverflow.com/questions/290598/changing-font-tracking-in-cocoa/291017#2910170Answer by Josh Matthews for Changing font tracking in CocoaJosh Matthews2008-11-14T18:56:03Z2008-11-14T18:56:03Z<p>My solution so far has simply been to use the kerning attribute, as tracking and kerning are similar. Is there any better solution?</p>
http://stackoverflow.com/questions/66654/setting-movie-metadata-with-qtkit1Setting movie metadata with QTKitJosh Matthews2008-09-15T20:33:09Z2008-11-10T15:03:25Z
<p>I'm trying to convert old QuickTime framework code to the 64-bit Cocoa-based QTKit on OS X, which means that I can't drop down to the straight C function calls at any time. Specifically, I'm trying to find a way to write QuickTime VR movies with QTKit, as they require some special metadata to set the display controller. How can I do this with QTKit?</p>
http://stackoverflow.com/questions/230332/obtaining-the-maximum-height-of-a-font0Obtaining the maximum height of a fontJosh Matthews2008-10-23T16:04:29Z2008-11-09T19:27:58Z
<p>So I have an NSFont, and I want to get the maximum dimensions for any characters, ie. the pitch and letter height. [font maximumAdvancement] seems to return an NSSize of {pitch, 0}, so that's not helping. Bounding rect doesn't seem to work either, and the suggestion from <a href="http://jwz.livejournal.com/628853.html" rel="nofollow">jwz's similar question</a> of creating a bezier path, appending a glyph and getting the bounding rectange is also giving me back {0, 0}. What gives here?</p>
<p><strong>UPDATE</strong>: The code I'm using to get the bezier size is this:</p>
<pre><code>NSBezierPath *bezier = [NSBezierPath bezierPath];
NSGlyph g;
{
NSTextStorage *ts = [[NSTextStorage alloc] initWithString:@" "];
[ts setFont:font];
NSLayoutManager *lm = [[NSLayoutManager alloc] init];
NSTextContainer *tc = [[NSTextContainer alloc] init];
[lm addTextContainer:tc];
[tc release]; // lm retains tc
[ts addLayoutManager:lm];
[lm release]; // ts retains lm
g = [lm glyphAtIndex:0];
[ts release];
}
NSPoint pt = {0.0f};
[bezier moveToPoint:pt];
[bezier appendBezierPathWithGlyph:g inFont:font];
NSRect bounds = [bezier bounds];
</code></pre>
http://stackoverflow.com/questions/243947/stop-text-from-wrapping-with-nslayoutmanager0Stop text from wrapping with NSLayoutManagerJosh Matthews2008-10-28T16:22:47Z2008-11-09T17:39:38Z
<p>Given any arbitrary, one-line string, my goal is to render it into a bitmap representation. However, I have no means of finding out its dimensions beforehand, so I am reduced to getting the glyph range's bounding rect and resizing my canvas if it's not large enough. Unfortunately, if the canvas is not wide enough for the string, but tall enough that the text can wrap, the layout manager decides that this is best. How can I stop the layout manager from wrapping the text?</p>
http://stackoverflow.com/questions/175545/worst-technobabble-youve-ever-heard/176758#17675825Answer by Josh Matthews for Worst technobabble you've ever heardJosh Matthews2008-10-07T00:04:02Z2008-10-07T00:04:02Z<p>There's a Star Trek: Voyager episode where Kim's trying to create a replacement holographic doctor, but the immense size of the medical database is overloading it. The solution?</p>
<p>"Computer, install a recursive algorithm!"</p>
<p>Problem solved.</p>
http://stackoverflow.com/questions/149827/preferred-path-to-applications-on-osx3Preferred path to applications on OSX?Josh Matthews2008-09-29T17:43:34Z2008-09-29T22:31:37Z
<p>I want to be able to run a text editor from my app, as given by the user in the TEXT_EDITOR environment variable. Now, assuming there is nothing in that variable, I want to default to the TextEdit program that ships with OSX. Is it kosher to hardcode /Applications/TextEdit.app/Contents/MacOS/TextEdit into my app, or is there a better way to call the program?</p>
<p>Edit: For the record, I am limited to running a specific application path, in C. I'm not opening a path to a text file.</p>
<p>Edit 2: Seriously people, I'm not opening a file here. I'm asking about an application path for a reason.</p>
http://stackoverflow.com/questions/125272/using-mercurial-whats-the-easiest-way-to-commit-and-push-a-single-file-while-le/125301#1253018Answer by Josh Matthews for Using mercurial, what's the easiest way to commit and push a single file while leaving other modifications alone?Josh Matthews2008-09-24T03:41:32Z2008-09-24T03:41:32Z<p>There's a Mercurial extension that implements shelve and unshelve commands, which give you an interactive way to specify changes to store away until a later time: <a href="http://www.selenic.com/mercurial/wiki/index.cgi/ShelveExtension" rel="nofollow">Shelve</a>.</p>
http://stackoverflow.com/questions/124968/lower-than-low-level-common-bsd-sockets/124979#1249790Answer by Josh Matthews for Lower than low level common bsd socketsJosh Matthews2008-09-24T01:59:25Z2008-09-24T01:59:25Z<p>I suspect the nmap sources would be an excellent place to look.</p>
http://stackoverflow.com/questions/1442702/replacing-newline-sedComment by Josh Matthews on replacing newline sedJosh Matthews2009-09-18T05:21:42Z2009-09-18T05:21:42ZExact duplicate of <a href="http://stackoverflow.com/questions/1251999/sed-how-can-i-replace-a-newline-n" rel="nofollow" title="sed how can i replace a newline n">stackoverflow.com/questions/1251999/…</a>http://stackoverflow.com/questions/1419463/forward-typedef-declarations-effect-on-build-times-and-naming-conventions/1419504#1419504Comment by Josh Matthews on Forward typedef declarations, effect on build times, and naming conventionsJosh Matthews2009-09-14T04:29:30Z2009-09-14T04:29:30ZThat's as designed. The compiler can't figure out the size of an object without knowing the actual definition of it.http://stackoverflow.com/questions/1419362/method-pointers-in-ruby/1419367#1419367Comment by Josh Matthews on Method pointers in rubyJosh Matthews2009-09-14T01:55:43Z2009-09-14T01:55:43ZLooks like self.send will work in the global case as well, so I'll amend my answer.http://stackoverflow.com/questions/1419362/method-pointers-in-ruby/1419367#1419367Comment by Josh Matthews on Method pointers in rubyJosh Matthews2009-09-14T01:52:14Z2009-09-14T01:52:14ZThe first part of the answer was basically copy-pasted from irb, so I assume that the simplification of your situation is screwing it up.http://stackoverflow.com/questions/1366441/final-class-in-cComment by Josh Matthews on final class in c++Josh Matthews2009-09-02T08:35:44Z2009-09-02T08:35:44ZSomebody please fix the formatting; it's really difficult to read.http://stackoverflow.com/questions/1355302/is-there-a-simple-way-macro-to-tell-structure-alignment/1355402#1355402Comment by Josh Matthews on is there a simple way (macro?) to tell structure alignment?Josh Matthews2009-08-31T02:40:27Z2009-08-31T02:40:27ZI expect that c-stranger re-posted the comment as an answer because the formatting was terrible in the comment.http://stackoverflow.com/questions/1353261/how-to-require-a-value-is-entered-in-a-search-form/1353420#1353420Comment by Josh Matthews on How to require a value is entered in a search formJosh Matthews2009-08-30T14:10:26Z2009-08-30T14:10:26ZUnfortunately this also reduces the usefulness of your search. Now it will only match whole words, AFAIK.http://stackoverflow.com/questions/1324432/how-do-i-get-data-from-a-hash/1324471#1324471Comment by Josh Matthews on How do I get data from a hash?Josh Matthews2009-08-24T20:28:23Z2009-08-24T20:28:23ZThis is the answer you're looking for.http://stackoverflow.com/questions/1313470/how-to-ensure-sqlite-isnt-caching-specific-select-queries/1313658#1313658Comment by Josh Matthews on How to ensure sqlite isn't caching specific select queries?Josh Matthews2009-08-21T20:25:02Z2009-08-21T20:25:02ZI wrapped the snippet up above in a transaction, but there was no change.http://stackoverflow.com/questions/1313470/how-to-ensure-sqlite-isnt-caching-specific-select-queries/1313658#1313658Comment by Josh Matthews on How to ensure sqlite isn't caching specific select queries?Josh Matthews2009-08-21T20:05:18Z2009-08-21T20:05:18ZI was excited to try this, but I'm seeing exactly the same behaviour.http://stackoverflow.com/questions/745694/how-can-i-make-the-compilation-log-create-a-new-window-in-emacs/746492#746492Comment by Josh Matthews on How can I make the compilation log create a new window in emacs? Josh Matthews2009-04-14T06:57:19Z2009-04-14T06:57:19ZIt's already set to t by default.http://stackoverflow.com/questions/745694/how-can-i-make-the-compilation-log-create-a-new-window-in-emacs/746071#746071Comment by Josh Matthews on How can I make the compilation log create a new window in emacs? Josh Matthews2009-04-14T04:50:40Z2009-04-14T04:50:40ZI know the terminology, and I'm actually looking for a logical emacs window, as opposed to a physical one.http://stackoverflow.com/questions/192986/quicktime-video-codec-configuration/362982#362982Comment by Josh Matthews on QuickTime video codec configurationJosh Matthews2008-12-17T04:59:36Z2008-12-17T04:59:36ZToo bad, I'm limited to QTKit and 64-bit. Still, thanks for the answer.http://stackoverflow.com/questions/372714/problem-with-a-constructor-c/372756#372756Comment by Josh Matthews on Problem with a constructor c++ Josh Matthews2008-12-16T21:49:01Z2008-12-16T21:49:01Z@mackenir, I feel like the #ifndef/#define/#endif thing has turned into an idiom by now, so it's not really a matter of being easier to read. I would look askance at any header that didn't have it because it's become so ubiquitous.http://stackoverflow.com/questions/149827/preferred-path-to-applications-on-osx/149870#149870Comment by Josh Matthews on Preferred path to applications on OSX?Josh Matthews2008-09-29T17:57:27Z2008-09-29T17:57:27ZActually, I found this in the document:
"Localized path names are for display only and should never be used to access the file system."