User Josh Matthews - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T06:08:58Z http://stackoverflow.com/feeds/user/3830 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1313470/how-to-ensure-sqlite-isnt-caching-specific-select-queries 0 How to ensure sqlite isn't caching specific select queries? Josh Matthews 2009-08-21T18:12:36Z 2009-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 =&gt; {:key_id =&gt; key.id, :locale_id =&gt; l.id}) item = AttentionSeeker.new(:key_id =&gt; key.id, :locale_id =&gt; 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#1419367 1 Answer by Josh Matthews for Method pointers in ruby Josh Matthews 2009-09-14T01:48:04Z 2009-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#1369430 3 Answer by Josh Matthews for Ruby: How to either set a variable to 0 or, if it is already set, increment by 1 Josh Matthews 2009-09-02T18:39:01Z 2009-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#1353916 1 Answer by Josh Matthews for How can I use fossil (DVCS) in a home environment? Josh Matthews 2009-08-30T13:51:37Z 2009-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 &lt;repository name&gt;</code> (or push or pull) </li> </ol> http://stackoverflow.com/questions/1355564/smiley-face-when-assigning-improper-value-type-to-struct-property/1355589#1355589 3 Answer by Josh Matthews for Smiley face when assigning improper value type to struct property!! Josh Matthews 2009-08-31T02:37:46Z 2009-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#1355539 4 Answer by Josh Matthews for C++ How to loop through a list of structs and access their properties Josh Matthews 2009-08-31T02:19:23Z 2009-08-31T02:25:30Z <p>It's as easy as <code>Iterator-&gt;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 &amp;data) { cout &lt;&lt; "\t" + data.property1 + "\n"; cout &lt;&lt; "\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#1353900 1 Answer by Josh Matthews for JavaScript Auto suggest to update multiple fields Josh Matthews 2009-08-30T13:43:51Z 2009-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#1324549 1 Answer by Josh Matthews for What are the most useful high quality free C++ projects you really learned a lot from? Josh Matthews 2009-08-24T20:26:58Z 2009-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#1323619 4 Answer by Josh Matthews for Installing hpricot for JRuby Josh Matthews 2009-08-24T17:13:14Z 2009-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#1314114 1 Answer by Josh Matthews for How to ensure sqlite isn't caching specific select queries? Josh Matthews 2009-08-21T20:43:28Z 2009-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 =&gt; key.id, :locale_id =&gt; l.id) item.save end </code></pre> http://stackoverflow.com/questions/59670/how-to-get-rid-of-deprecated-conversion-from-string-constant-to-char-warning 13 How to get rid of `deprecated conversion from string constant to ‘char*’` warnings in GCC? Josh Matthews 2008-09-12T18:15:55Z 2009-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#1080063 0 Answer by Josh Matthews for Using Emacs, how could I indent/format a code segment in a TXT file? Josh Matthews 2009-07-03T16:34:05Z 2009-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#884602 0 Answer by Josh Matthews for Is there an ignore-on-commit option in mercurial? Josh Matthews 2009-05-19T19:29:25Z 2009-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-h 2 Why is ARG_MAX not defined via limits.h? Josh Matthews 2008-09-05T19:39:37Z 2009-05-15T21:04:51Z <p>On Fedora Core 7, I'm writing some code that relies on ARG_MAX. However, even if I #include &lt;limits.h&gt;, the constant is still not defined. My investigations show that it's present in &lt;sys/linux/limits.h&gt;, 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#750355 1 Answer by Josh Matthews for is there a good way to do emacs project ? Josh Matthews 2009-04-15T04:53:19Z 2009-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-emacs 2 How can I make the compilation log create a new window in emacs? Josh Matthews 2009-04-13T22:58:05Z 2009-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-attributes 1 Setting QTMovie attributes Josh Matthews 2008-10-14T16:52:27Z 2009-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#383123 0 Answer by Josh Matthews for Oldest programs you still have to maintain? Josh Matthews 2008-12-20T09:02:41Z 2008-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&amp;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-configuration 1 QuickTime video codec configuration Josh Matthews 2008-10-10T20:55:09Z 2008-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-nscolor 0 Extracting 32-bit RGBA value from NSColor Josh Matthews 2008-11-26T22:07:19Z 2008-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-feed 8 Sending SVN commits to an RSS feed Josh Matthews 2008-09-24T02:13:25Z 2008-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-cocoa 0 Changing font tracking in Cocoa Josh Matthews 2008-11-14T16:14:51Z 2008-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#291017 0 Answer by Josh Matthews for Changing font tracking in Cocoa Josh Matthews 2008-11-14T18:56:03Z 2008-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-qtkit 1 Setting movie metadata with QTKit Josh Matthews 2008-09-15T20:33:09Z 2008-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-font 0 Obtaining the maximum height of a font Josh Matthews 2008-10-23T16:04:29Z 2008-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-nslayoutmanager 0 Stop text from wrapping with NSLayoutManager Josh Matthews 2008-10-28T16:22:47Z 2008-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#176758 25 Answer by Josh Matthews for Worst technobabble you've ever heard Josh Matthews 2008-10-07T00:04:02Z 2008-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-osx 3 Preferred path to applications on OSX? Josh Matthews 2008-09-29T17:43:34Z 2008-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#125301 8 Answer by Josh Matthews for Using mercurial, what's the easiest way to commit and push a single file while leaving other modifications alone? Josh Matthews 2008-09-24T03:41:32Z 2008-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#124979 0 Answer by Josh Matthews for Lower than low level common bsd sockets Josh Matthews 2008-09-24T01:59:25Z 2008-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-sed Comment by Josh Matthews on replacing newline sed Josh Matthews 2009-09-18T05:21:42Z 2009-09-18T05:21:42Z Exact 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/&hellip;</a> http://stackoverflow.com/questions/1419463/forward-typedef-declarations-effect-on-build-times-and-naming-conventions/1419504#1419504 Comment by Josh Matthews on Forward typedef declarations, effect on build times, and naming conventions Josh Matthews 2009-09-14T04:29:30Z 2009-09-14T04:29:30Z That'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#1419367 Comment by Josh Matthews on Method pointers in ruby Josh Matthews 2009-09-14T01:55:43Z 2009-09-14T01:55:43Z Looks 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#1419367 Comment by Josh Matthews on Method pointers in ruby Josh Matthews 2009-09-14T01:52:14Z 2009-09-14T01:52:14Z The 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-c Comment by Josh Matthews on final class in c++ Josh Matthews 2009-09-02T08:35:44Z 2009-09-02T08:35:44Z Somebody 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#1355402 Comment by Josh Matthews on is there a simple way (macro?) to tell structure alignment? Josh Matthews 2009-08-31T02:40:27Z 2009-08-31T02:40:27Z I 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#1353420 Comment by Josh Matthews on How to require a value is entered in a search form Josh Matthews 2009-08-30T14:10:26Z 2009-08-30T14:10:26Z Unfortunately 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#1324471 Comment by Josh Matthews on How do I get data from a hash? Josh Matthews 2009-08-24T20:28:23Z 2009-08-24T20:28:23Z This is the answer you're looking for. http://stackoverflow.com/questions/1313470/how-to-ensure-sqlite-isnt-caching-specific-select-queries/1313658#1313658 Comment by Josh Matthews on How to ensure sqlite isn't caching specific select queries? Josh Matthews 2009-08-21T20:25:02Z 2009-08-21T20:25:02Z I 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#1313658 Comment by Josh Matthews on How to ensure sqlite isn't caching specific select queries? Josh Matthews 2009-08-21T20:05:18Z 2009-08-21T20:05:18Z I 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#746492 Comment by Josh Matthews on How can I make the compilation log create a new window in emacs? Josh Matthews 2009-04-14T06:57:19Z 2009-04-14T06:57:19Z It'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#746071 Comment by Josh Matthews on How can I make the compilation log create a new window in emacs? Josh Matthews 2009-04-14T04:50:40Z 2009-04-14T04:50:40Z I 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#362982 Comment by Josh Matthews on QuickTime video codec configuration Josh Matthews 2008-12-17T04:59:36Z 2008-12-17T04:59:36Z Too 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#372756 Comment by Josh Matthews on Problem with a constructor c++ Josh Matthews 2008-12-16T21:49:01Z 2008-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#149870 Comment by Josh Matthews on Preferred path to applications on OSX? Josh Matthews 2008-09-29T17:57:27Z 2008-09-29T17:57:27Z Actually, I found this in the document: &quot;Localized path names are for display only and should never be used to access the file system.&quot;