User Paul Wicks - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T04:36:13Zhttp://stackoverflow.com/feeds/user/85http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/608175/what-does-this-error-mean-error-expected-specifier-qualifier-list-before-type2What does this error mean: "error: expected specifier-qualifier-list before 'type_name'"?Paul Wicks2009-03-03T21:04:00Z2009-12-16T15:14:47Z
<p>I'm a bit new to working with c/c++, so sorry if this is a dumb question. I've been working on the Cell processor and I'm trying to create a struct that will hold an spe_context_ptr_t, which will be used within the thread to launch an spe context and will also hold a pointer to something else that will be passed to the spu context from within the thread (currently I'm trying to just make it a generic pointer, but in actuality it will be a pointer to another structure I've defined). When I try and compile, I get the following error:</p>
<pre><code>spu/../common.h:38: error: expected specifier-qualifier-list before 'spe_context_ptr_t'
// here is the offending line(s)
typedef struct _PTHREAD_BLOCK {
spe_context_ptr_t * context; // Error happens here
uintptr32_t args;
} PTHREAD_BLOCK;
</code></pre>
http://stackoverflow.com/questions/1829354/what-is-the-best-way-to-match-ids-against-a-regular-expression-in-hpricot0What is the best way to match id's against a regular expression in Hpricot?Paul Wicks2009-12-01T22:20:43Z2009-12-02T15:27:44Z
<p>Using apricot, it is pretty easy to see how I can extract all elements with a given id or class using a CSS Selector. Is it possible to extract elements from a document based on whether some attribute of those elements matches against some regular expression? </p>
http://stackoverflow.com/questions/1822503/extracting-html-elements-in-a-given-region0Extracting html elements in a given region?Paul Wicks2009-11-30T21:26:39Z2009-11-30T21:44:54Z
<p>Given a region defined by a rectangle and a url, is there any way to determine what elements lie within the given rectangle on the page at the given url? </p>
<p>EDIT: Screen resolution, Font size, etc.. can all be set to reasonable defaults. </p>
http://stackoverflow.com/questions/244639/git-thinks-i-am-rewriting-one-of-my-files-everytime-i-make-a-small-change2Git thinks I am rewriting one of my files everytime I make a small changePaul Wicks2008-10-28T20:01:18Z2009-11-29T07:28:52Z
<p>I have a medium size Java file. Everytime I make a change to one of my files, BuildTable.java, Git reports it as a massive change, even if is only a line or two. BuildTable.java is about 200 lines and the change in this commit only changed a single line.</p>
<p>git-diff ouputs this:</p>
<pre><code>--- a/src/BuildTable.java
+++ b/src/BuildTable.java
@@ -1 +1 @@
-import java.io.FileNotFoundException;^Mimport java.io.FileReader;^Mimport java.io.InputStreamReader;^Mimport java.io.PushbackReader;^Mimport java.util.ArrayList;^Mimport
\ No newline at end of file
+import java.io.FileNotFoundException;^Mimport java.io.FileReader;^Mimport java.io.InputStreamReader;^Mimport java.io.PushbackReader;^Mimport java.util.ArrayList;^Mimport
\ No newline at end of file
</code></pre>
<p>After doing a git-commit -a</p>
<pre><code>Created commit fe43985: better error notifications
3 files changed, 54 insertions(+), 50 deletions(-)
rewrite src/BuildTable.java (78%)
</code></pre>
<p>Is Git seeing this file as binary or something? Is this a problem? If it is, how do I fix this?</p>
http://stackoverflow.com/questions/1800532/scrape-web-page-contents/1800653#18006531Answer by Paul Wicks for Scrape web page contentsPaul Wicks2009-11-25T23:26:03Z2009-11-25T23:26:03Z<p>As MYYN suggested, something like <a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">BeautifulSoup</a> or <a href="http://github.com/whymirror/hpricot" rel="nofollow">Hpricot</a> really excels at this sort of thing, so if you aren't absolutely convinced that it has to be in C++, you really should look into those(the basics of both python and ruby can be picked up pretty quickly and are certainly much simpler than C++). Alternatively, check out <a href="http://doc.trolltech.com/4.4/qdomdocument.html" rel="nofollow">QTDOMDocument</a> and <a href="http://ticpp.googlecode.com/svn/docs/ticpp.html" rel="nofollow">TinyXML++</a>.</p>
http://stackoverflow.com/questions/1576/what-should-a-longtime-windows-user-know-when-starting-to-use-linux/113806#1138061Answer by Paul Wicks for What should a longtime Windows user know when starting to use Linux?Paul Wicks2008-09-22T08:31:27Z2009-11-25T18:26:10Z<ul>
<li><p><a href="http://en.wikipedia.org/wiki/Vim%5F%28text%5Feditor%29" rel="nofollow">Vim</a> - If you haven't already, you should definitely run through the vimtutor tutorial. It will help you really use all of the power that Vim provides. You can get usually access it just by typing 'vimutor' at the command line.</p></li>
<li><p><a href="http://petdance.com/ack/" rel="nofollow">ack</a> - ack is replacement(sort of) for grep written in Perl, providing a ton of features specifically for programmers. It is amazing and much easier to use than grep. It should come with every copy of Linux, but sadly it doesn't. As a bonus, it works on Windows too!</p></li>
<li><p>git - the greatest version control system ever, imho. Even if you are working by yourself, the simple repository setup and branching/merging make git a great choice for version control. If you are unfamiliar with git, the <a href="http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html" rel="nofollow">kernel.org tutorial</a> is a decent place to start.</p></li>
<li><p>!! - Repeats the previous command. For example, if you wanted to delete some file that required sudo'ing to delete, but forget to type the sudo, you could do the following:</p>
<pre><code>> rm somefile # won't do anything since it needs root privileges to delete
> sudo !! # the same as typing 'sudo rm somefile'
</code></pre></li>
</ul>
http://stackoverflow.com/questions/1793300/which-programming-language-meets-these-criteria-for-gui-app-development/1793342#17933424Answer by Paul Wicks for Which programming language meets these criteria for GUI app development?Paul Wicks2009-11-24T22:23:04Z2009-11-24T22:23:04Z<p>Have you looked at QT? It's a really great GUI library and there are bindings for just about every language in common usage. There is a ton of documentation and a wide community. You mention that you want to do something in a language with garbage collection and dynamic typing, but rule out Python and Ruby, which are the 2 most popular languages that fit this criteria (also, they both have great QT bindings, I use pyQT4 and it is just awesome). They really aren't that far from what you do in Java/C, you just end up writing a lot less.</p>
http://stackoverflow.com/questions/1786689/parsing-web-pages/1786745#17867451Answer by Paul Wicks for Parsing web pagesPaul Wicks2009-11-23T23:17:31Z2009-11-23T23:17:31Z<p>You might want to look into some sort of html parsing library, rather than using regular expressions to do this. There are some really good html parsers for <a href="http://wiki.github.com/hpricot/hpricot" rel="nofollow">ruby</a> and <a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">python</a>, but a quick google shows there to be a number of parsers for java as well. The benefit of these libraries is that you don't have to handle every edge case with regular expressions/they handle malformed html (both of which can be impossible with regexes, depending on what you want to do) and they also give you a much way of dealing with the data (for example, beautiful soup lets you grab all elements which belong to a specific class or to use some other css selector to limit which page elements you want to deal with). </p>
<p>Personally, I would, at least for the beginning, start in ruby or python, as the libraries are known and there is a lot of info about using them for this purpose. Also, I find it easier to quickly prototype these types of things in ruby or python than in the jvm. You could even later bring that code onto the jvm with jruby or jython, if it becomes necessary.</p>
http://stackoverflow.com/questions/1786617/problem-checking-out-svn-repo-with-subclipse0Problem checking out svn repo with subclipsePaul Wicks2009-11-23T22:49:19Z2009-11-23T23:08:56Z
<p>I have an svn repo that looks something like the following:</p>
<pre><code>TRUNK/
trials/ <- this is a java package
<a bunch of java files>
</code></pre>
<p>When I check this out with eclipse through subclipse, I end up with a project with an empty src directory and a folder next to it called <code>trials</code>, which is not what I want. Is it possible to check it out through subclipse such that the src directory in the project contains trials which contains the java files?</p>
http://stackoverflow.com/questions/1786617/problem-checking-out-svn-repo-with-subclipse/1786707#17867071Answer by Paul Wicks for Problem checking out svn repo with subclipsePaul Wicks2009-11-23T23:08:56Z2009-11-23T23:08:56Z<p>We ended up solving this by rearranging the layout of the repository slightly (just put everything under a directory called "src") and after that subclipse just did the right thing (it's things like this that make me prefer a command line client where there is less magic, but not everyone on the team feels that way, so middle ground must be found).</p>
http://stackoverflow.com/questions/1785385/writing-graphml-with-xom0Writing GraphML with XOM?Paul Wicks2009-11-23T19:23:46Z2009-11-23T20:27:24Z
<p>I'm trying to write out a graphML document with XOM in java, but I can't figure out how to get all of the namespace declarations correct. To have valid graphML, I need to have a root element that looks like the following:</p>
<pre><code><graphml xmlns="http://graphml.graphdrawing.org/xmlns"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns
http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
</code></pre>
<p>I've been able to get most of this by doing</p>
<pre><code>Element root = new Element("graphml");
root.setNamespaceURI("http://graphml.graphdrawing.org/xmlns");
root.addNamespaceDeclaration("xsi", "http://www.w3.org/2001/XMLSchema-instance");
</code></pre>
<p>The problem is the last element of this tag, the <code>xsi:schemaLocation</code>. I can't figure out how to express this in XOM. I can't do it as a normal attribute, as that throws an exception(<code>Attribute prefixes must be declared.</code>) and doing it as an additional namespace declaration also results in an exception(<code>NCNames cannot contain colons</code>). Any ideas?</p>
http://stackoverflow.com/questions/1779084/sql-looking-up-the-same-field-in-one-table-for-multiple-values-in-another-table0SQL: Looking up the same field in one table for multiple values in another table?Paul Wicks2009-11-22T15:46:14Z2009-11-22T17:31:16Z
<p>(Not sure if the name of this question really makes sense, but what I want to do is pretty straightforward)</p>
<p>Given tables that looks something like this:</p>
<pre><code>Table Foo
---------------------------------
| bar1_id | bar2_id | other_val |
---------------------------------
Table Bar
--------------------
| bar_id | bar_desc|
--------------------
</code></pre>
<p>How would I create a select that would return a table that would look like the following:</p>
<pre><code>---------------------------------------------------------
| bar1_id | bar1_desc | bar2_id | bar2_desc | other_val |
---------------------------------------------------------
</code></pre>
<p>i.e. I want to grab every row from Foo and add in a column containing the description of that bar_id from Bar. So there might be some rows from Bar that don't end up in the result set, but every row of Foo should be in it.</p>
<p>Also, this is postgres, if that makes a difference.</p>
http://stackoverflow.com/questions/1776971/how-should-i-handle-inconsistent-objects-in-c/1777006#17770060Answer by Paul Wicks for How should I handle Inconsistent Objects in C++?Paul Wicks2009-11-21T22:28:39Z2009-11-21T22:28:39Z<p>If I understand what you correctly, you want to return null from the constructor when <code>"filepath"</code> is invalid? This isn't (directly) possible in C++, although there are a few possibilities. You could throw an exception from your constructor, but this can get hairy in C++. You could have some functions that can check the validity of a File object, so <code>if(file)</code> would become <code>if(isValid(file))</code>. You could also wrap some of this logic in some sort of factory that would return null if the file to be created is invalid.</p>
http://stackoverflow.com/questions/1749928/replacement-for-python-statvfs2Replacement for python statvfs?Paul Wicks2009-11-17T16:10:25Z2009-11-17T16:13:31Z
<p>The <a href="http://docs.python.org/library/statvfs.html" rel="nofollow">python statvfs module</a> is marked as deprecated, but I haven't been able to figure out what new apps are supposed to use if they want to get information about a disk, specifically how to check the capacity and free space of a given path. Anybody have any idea? This is on os x, if that makes a difference, although being cross platform would be a plus.</p>
http://stackoverflow.com/questions/1744348/embedding-a-control-in-a-qtableview0Embedding a control in a QTableView?Paul Wicks2009-11-16T19:34:53Z2009-11-17T01:57:24Z
<p>I'm working a small qt app (using PyQt4) and I've come up with an idea but I'm unsure as to how to implement it. I have a QTableView that represents some data and I'd like to add another column to the QTableView that contains a checkbox control that could be wired up to some piece of the model. For example, something like this:</p>
<p><img src="http://www.ibm.com/developerworks/web/library/wa-custmtag/screen%5F3.jpg" alt="alt text"></p>
<p>Note the Delete column has a checkbox widget for each row (although this is a web app, not a desktop Qt app, the principal is the same). Bonus points if I can select multiple rows, right click, and choose "Check/Uncheck Selected".</p>
<p>If any of this is unclear, drop a comment here and I'll clarify.</p>
http://stackoverflow.com/questions/1736015/debugging-a-pyqt4-app1Debugging a pyQT4 app?Paul Wicks2009-11-14T23:46:58Z2009-11-17T01:03:06Z
<p>I have a fairly simple app built with pyqt4. I wanted to debug one of the functions connected to one of the buttons in my app. However, when I do the following</p>
<pre><code>python -m pdb app.pyw
> break app.pyw:55 # This is where the signal handling function starts.
</code></pre>
<p>things don't quite work like I'd hope. Instead of breaking in the function where I've set the breakpoint and letting me step through it, the debugger enters an infinite loop printing out <code>QCoreApplication::exec: The event loop is already running</code> and I am unable to input anything. Is there a better way to do this?</p>
http://stackoverflow.com/questions/1742696/do-you-think-learning-go-language-may-help-my-career-as-a-programmer/1742723#17427233Answer by Paul Wicks for Do you think learning go language may help my career as a programmer?Paul Wicks2009-11-16T15:04:07Z2009-11-16T15:04:07Z<p>It is still much too early to tell whether Go will really become widespread in its use, but even if it does, there will likely be much change in the language between now and then. That said, learning any language, especially one which uses a different paradigm, helps you develop as a programmer. The more ways you can think about and approach a problem, the better off you will be.</p>
http://stackoverflow.com/questions/1735597/how-can-i-migrate-my-data-from-my-rails-app-from-mysql-to-sqlite/1735647#17356471Answer by Paul Wicks for How can I migrate my data from my rails app from mySql to SQLitePaul Wicks2009-11-14T21:21:34Z2009-11-14T21:21:34Z<p>If you just want to move your data and schema from one to the other, this shouldn't be too hard, although if you are using one of the dark corners of mySQL, things might get hairier. Basically, you should dump your mySql database to some sort of file (there are a ton of ways to do this, for example from the command line or from something like phpmyAdmin) and then, if memory serves (it's been a while since I last did this stuff), do something like this:</p>
<pre><code>sqlite3 <database name> ".import <export file name>"
</code></pre>
<p>Additionally, there is a script to automate this on the <a href="http://www.sqlite.org/cvstrac/wiki?p=ConverterTools" rel="nofollow">this page</a> of the sqlite website, so you might see if it actually works.</p>
http://stackoverflow.com/questions/1692329/viewing-large-xml-files-in-eclipse3Viewing large XML files in eclipse?Paul Wicks2009-11-07T07:34:37Z2009-11-14T21:04:38Z
<p>I'm working on a project involving some large XML files (from 50MB to over 1GB) and it would be nice if I could view them in eclipse (simple text view is fine) without Java running out of heap space. I've tried tweaking the amount of memory available to the jvm in eclipse.ini but haven't had much success. Any ideas? </p>
http://stackoverflow.com/questions/1731272/getting-only-one-dimension-of-indexes-from-the-getselectedindexes-function-in-qt0Getting only one dimension of indexes from the getSelectedIndexes function in QT?Paul Wicks2009-11-13T19:19:10Z2009-11-13T20:47:30Z
<p>I'm working on a small project in QT (well, pyQT4 actually, but it shouldn't matter too much) and I've run into the following problem. I have a <code>QTableView</code> with several rows and columns. I have set the selection mode to be rows only. When I call <code>getSelectedIndexes()</code> on my <code>QTableView</code>, I get an index for every row and column, which in the current setup means that I get an extra 5 Indexes for each selected row, which is less than ideal, since I only need to know the row, not the column. Is there any way to get just one Index per row other than filtering the list that I get from <code>getSelectedIndexes()</code>?</p>
http://stackoverflow.com/questions/1709216/read-a-yaml-file-using-a-c-script/1709458#17094581Answer by Paul Wicks for Read a YAML file using a C scriptPaul Wicks2009-11-10T16:53:46Z2009-11-10T16:53:46Z<p>The <a href="http://stackoverflow.com/questions/365155/parse-yaml-files-in-c-c/621451#621451">second answer to this question</a> has a little bit better example of using the library to parse yaml file into something more useful.</p>
http://stackoverflow.com/questions/1702615/limiting-a-match-in-vim-to-certain-filetypes1Limiting a match in vim to certain filetypes?Paul Wicks2009-11-09T17:46:10Z2009-11-09T18:30:55Z
<p>I have the following in my .vimrc to highlight lines longer than 80 chars:</p>
<pre><code>highlight OverLength ctermbg=red ctermfg=white guibg=#592929
match OverLength /\%81v.*/
</code></pre>
<p>This works quite well. However, the problem is that I would prefer it if it only worked on certain file types. Basically, any programming language should be highlighted and things like html, xml, and txt files should not be. I'm pretty sure I could do this easily with an autocmd, but I'm not sure if that is the best way to accomplish that goal. Anybody have any opinions?</p>
http://stackoverflow.com/questions/538020/yellow-dog-linux-6-1-and-ps3-gameos-versions0Yellow Dog Linux 6.1 and PS3 GameOS Versions?Paul Wicks2009-02-11T18:03:57Z2009-11-09T14:34:27Z
<p>I'm working on installing linux on a PS3 to do some development work and I've run across a bit of a snag. The current version of the firmware on my PS3 is 2.50. The Yellow Dog website <a href="http://us.fixstars.com/support/advisories.shtml" rel="nofollow">specifically mentions</a> that there are problems with this release. The <a href="http://us.fixstars.com/support/installation/ydl6.0_ps3_guide.pdf" rel="nofollow">official Yellow Dog install guide</a> (PDF!) also mentions that I should update my PS3 to the newest version (which is now 2.60). So does any body have any experience with this? </p>
http://stackoverflow.com/questions/1699833/need-to-convert-set-of-coordinates/1700022#17000221Answer by Paul Wicks for Need to Convert Set of CoordinatesPaul Wicks2009-11-09T09:44:25Z2009-11-09T09:44:25Z<p>What you need are some regular expressions. You can use a regular expression in combination with the functions in php to extract whatever you want from a given string. What I would probably do is use a regex to check the format of a given file and then I would iterate through each line of a file, using a regex to extract the relevant information. For example, you could use a regular expression like <code>[0-9]{1,3}\.[0-9]{1,4}°(N|W|E|S)</code> to check whether something matches the first type. Then you could match each line of the input against something like <code>([0-9]{1,3})\.([0-9]{1,4})°(N|W|E|S)</code> with <code>preg_match_all</code> and extract the relevant data from the <code>matches</code> array. From here, you will have all the data needed for the conversion. A similar thing could be done for the other type. Note that I don't have a php install to test these Regular Expressions against, so they may need some slight tweaking to avoid php blowing up when it reads them (most likely the <code>°</code> character may need to be encoded differently, although you could likely just use the <code>.</code> meta-character, as it will match any single non-space character).</p>
<p>Some good resources for regular expressions:</p>
<ul>
<li><a href="http://www.regular-expressions.info/php.html" rel="nofollow">http://www.regular-expressions.info/php.html</a></li>
<li><a href="http://www.regular-expressions.info/index.html" rel="nofollow">http://www.regular-expressions.info/index.html</a></li>
<li><a href="http://stackoverflow.com/questions/4736/learning-regular-expressions">http://stackoverflow.com/questions/4736/learning-regular-expressions</a></li>
</ul>
<p>As mentioned in the SO link above, having some sort of tester is quite useful for generating regular expressions, whether that be something like <a href="http://www.regexbuddy.com/" rel="nofollow">RegEx Buddy</a>, <a href="http://reggyapp.com/" rel="nofollow">Reggy</a>, or <a href="http://kodos.sourceforge.net/" rel="nofollow">Kodos</a>.</p>
http://stackoverflow.com/questions/1695802/error-expected-specifier-qualifier-list-before/1695812#16958120Answer by Paul Wicks for error expected specifier-qualifier-list before Paul Wicks2009-11-08T08:56:47Z2009-11-08T08:56:47Z<p>This code is (as far as I can tell) incorrect. You need to add a typedef to <code>struct x</code> if you want to refer to it as s_tr. Otherwise, s_tr doesn't really mean anything (and in my case, won't even compile).</p>
<pre><code> typedef struct x{
int a, b, c;
}s_tr;
</code></pre>
<p>However, this is not required. You could refer to the struct as x, but you have to put the struct keyword in front of it. Like this:</p>
<pre><code>distance = offsetof(struct x, c);
</code></pre>
http://stackoverflow.com/questions/1687047/hash-function-that-maps-similar-inputs-to-similar-outputs1Hash function that maps similar inputs to similar outputs?Paul Wicks2009-11-06T11:35:29Z2009-11-06T17:55:22Z
<p>Is there a hash function where small changes in the input result in small changes in the output? For example, something like:</p>
<pre><code>hash("Foo") => 9e107d9d372bb6826bd81d3542a419d6
hash("Foo!") => 9e107d9d372bb6826bd81d3542a419d7 <- note small difference
</code></pre>
http://stackoverflow.com/questions/1663289/why-does-initialization-of-a-template-type-require-a-repeat-of-the-type-of-the-va1Why does initialization of a template type require a repeat of the type of the variable?Paul Wicks2009-11-02T19:50:37Z2009-11-03T18:19:04Z
<p>Suppose I have an object that has a member variable that is of some template type. So, in the declaration of the class, there would be something like this:</p>
<pre><code>// This is just the declaration of bar which is a member of some class.
templatizedType<Foo> bar;
</code></pre>
<p>Now, when I want to initialize <code>bar</code> why do I have to do</p>
<pre><code> // This is the initialization. Note that I am assuming that templatizedType has a
// constructor that takes an argument of type T*. Presumably, this is happening
// somewhere inside whatever class has declared bar as a member.
templatizedType<Foo> bar(new Foo());
</code></pre>
<p>instead of simply</p>
<pre><code>bar(new Foo());
</code></pre>
<p>EDIT(trying to clarify): Essentially, it seems to me that the type of bar (including the parametrized type) is already spelled out in it's declaration as a member of the class and thus should not require a repeat upon initialization.</p>
<p>If none of this makes sense, let me know (I discovered this mostly through trial-and-error and some helpful people on IRC, so if my understanding of what is going on here is wrong, help with that would also be greatly appreciated.)</p>
http://stackoverflow.com/questions/605263/tips-for-using-vim-over-a-slow-connection6Tips for using vim over a slow connection?Paul Wicks2009-03-03T05:55:33Z2009-11-03T15:17:13Z
<p>I'm using vim over a slow connection and it is a little painful. Is there anything I can do in vim to alleviate the pain?</p>
http://stackoverflow.com/questions/1655927/querying-the-connecting-device-for-usb-devices-in-os-x0Querying the connecting device for usb devices in OS XPaul Wicks2009-10-31T23:34:37Z2009-10-31T23:47:29Z
<p>Ok, so here's the setup. In OS X (>= 10.5), is it possible, given a mounted usb device with a known location, say /Volumes/FLASHDRIVE, to find out whether this device is connecting through another usb device (a card reader for example) and if so, which one. </p>
<p>Ideally, this could all be done in python, but if not that's ok too. </p>
http://stackoverflow.com/questions/494721/what-are-some-good-resources-for-writing-a-chess-engine9What are some good resources for writing a chess engine?Paul Wicks2009-01-30T06:56:46Z2009-10-31T15:27:27Z
<p>I'm interested in writing a chess engine (mostly as a learning exercise) and would be interested in any resources that people know of that could be of interest or use, anything really: Papers, Books, Theory, Tutorials, anything that could be useful.</p>
http://stackoverflow.com/questions/1174205/jquery-simplest-lightbox/1174252#1174252Comment by Paul Wicks on jQuery: Simplest lightbox?Paul Wicks2009-12-18T00:37:22Z2009-12-18T00:37:22ZEven if your server is set up to do compression, it is probably still better to use google, since your browser will most likely have google's version cached from some other site.http://stackoverflow.com/questions/1822503/extracting-html-elements-in-a-given-regionComment by Paul Wicks on Extracting html elements in a given region?Paul Wicks2009-11-30T21:43:40Z2009-11-30T21:43:40ZIdeally, any html element that lies within the region.http://stackoverflow.com/questions/1779084/sql-looking-up-the-same-field-in-one-table-for-multiple-values-in-another-table/1779141#1779141Comment by Paul Wicks on SQL: Looking up the same field in one table for multiple values in another table?Paul Wicks2009-11-22T16:33:38Z2009-11-22T16:33:38ZI'm well aware of the design implications. I didn't create these tables, I'm just dealing with a database created by someone else. Also, in this case, it really is impossible for Foo to get bigger, as the structure that it describes is inherently 2 sided.http://stackoverflow.com/questions/1736015/debugging-a-pyqt4-appComment by Paul Wicks on Debugging a pyQT4 app?Paul Wicks2009-11-15T08:49:20Z2009-11-15T08:49:20ZIn this case, that is the function that handles the signal.http://stackoverflow.com/questions/1692329/viewing-large-xml-files-in-eclipse/1692433#1692433Comment by Paul Wicks on Viewing large XML files in eclipse?Paul Wicks2009-11-14T21:07:07Z2009-11-14T21:07:07ZYeah, this is pretty much the conclusion that I have come to as well. Changing the Xmx arg helps, but it breaks down pretty fast once you get a big enough file (unfortunately, big enough is not very big, especially in comparison to the amount of ram required).http://stackoverflow.com/questions/494721/what-are-some-good-resources-for-writing-a-chess-engine/502029#502029Comment by Paul Wicks on What are some good resources for writing a chess engine?Paul Wicks2009-11-11T20:41:12Z2009-11-11T20:41:12ZThe Chess Programming Wiki is pretty cool.http://stackoverflow.com/questions/1709216/read-a-yaml-file-using-a-c-scriptComment by Paul Wicks on Read a YAML file using a C scriptPaul Wicks2009-11-10T16:49:33Z2009-11-10T16:49:33ZI think he means he wants to use the libYAML library which is what the linked tests are for (and also what PyYAML is based on)http://stackoverflow.com/questions/1702615/limiting-a-match-in-vim-to-certain-filetypes/1702656#1702656Comment by Paul Wicks on Limiting a match in vim to certain filetypes?Paul Wicks2009-11-09T18:01:08Z2009-11-09T18:01:08ZYeah, like I said, I think doing it this way with the autocmds could work well enough, you just need to swap which files are here. Instead of html and xml, it should be c, c++,etc...
So, if the FileType could be negated, then that would be even better.http://stackoverflow.com/questions/1695802/error-expected-specifier-qualifier-list-before/1695809#1695809Comment by Paul Wicks on error expected specifier-qualifier-list before Paul Wicks2009-11-08T10:54:00Z2009-11-08T10:54:00Z<code>error: syntax error before ‘s_tr’</code> This is with gcc 4.0.1 (which is, admittedly, a little old).http://stackoverflow.com/questions/1695802/error-expected-specifier-qualifier-list-before/1695809#1695809Comment by Paul Wicks on error expected specifier-qualifier-list before Paul Wicks2009-11-08T09:04:50Z2009-11-08T09:04:50ZThe x isn't incorrect, it is the name of the struct. So, in the original question, the type of the struct is <code>struct x</code> and the s_tr is simply a syntax error. Also, using something like <code>struct { int a, b, c; } s_tr;</code> gives a compiler error, at least on my version of gcc.http://stackoverflow.com/questions/1695802/error-expected-specifier-qualifier-list-beforeComment by Paul Wicks on error expected specifier-qualifier-list before Paul Wicks2009-11-08T09:00:00Z2009-11-08T09:00:00ZIf you have a block of text set up as code (i.e. you have indented it at least 4 spaces) then you can just type left and right angle brackets and they will show up correctly.http://stackoverflow.com/questions/1687047/hash-function-that-maps-similar-inputs-to-similar-outputsComment by Paul Wicks on Hash function that maps similar inputs to similar outputs?Paul Wicks2009-11-06T11:50:45Z2009-11-06T11:50:45ZFor a cryptographic hash, yes, this would be bad, but I want to use it for something else.http://stackoverflow.com/questions/1457239/specifying-a-callback-function-in-pregreplacecallback/1457263#1457263Comment by Paul Wicks on Specifying a callback function in preg_replace_callback?Paul Wicks2009-09-21T22:48:47Z2009-09-21T22:48:47ZOops, should have refreshed. Figured it out just after you did. Thanks anyway.http://stackoverflow.com/questions/117776/loading-an-existing-database-into-www-sql-designer/1177804#1177804Comment by Paul Wicks on Loading an existing database into WWW SQL Designer?Paul Wicks2009-07-25T15:08:27Z2009-07-25T15:08:27ZVery cool. Now it just needs to work with a few more sql types and do a better job of arranging the diagramhttp://stackoverflow.com/questions/766893/how-do-i-modify-a-pointer-that-has-been-passed-into-a-function-in-c/766905#766905Comment by Paul Wicks on How do I modify a pointer that has been passed into a function in C?Paul Wicks2009-04-20T04:38:52Z2009-04-20T04:38:52ZThanks, I'd figured this was the problem, but hoped that it wasn't ;)