User George - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T18:00:47Zhttp://stackoverflow.com/feeds/user/2759http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1060222/render-pdf-on-a-blackberry/1810605#18106051Answer by George for Render PDF on a Blackberry?George2009-11-27T20:54:35Z2009-11-27T20:54:35Z<p>Try BeamReader <a href="http://www.slgmobile.com/beamreader.html" rel="nofollow">http://www.slgmobile.com/beamreader.html</a></p>
<p>I hear it's the best at reading PDFs for BlackBerry</p>
http://stackoverflow.com/questions/1798118/what-do-you-do-to-write-better-code/1799288#17992880Answer by George for What do you do to write better code?George2009-11-25T19:12:08Z2009-11-25T19:12:08Z<p>my solution: type faster</p>
http://stackoverflow.com/questions/1792360/what-are-the-limits-of-python/1793871#17938710Answer by George for What are the limits of Python?George2009-11-25T00:13:33Z2009-11-25T00:33:10Z<p>Learn a statically typed language and a scripting language. <BR>
You can do whatever you want in either language. A well-written C++ code base is easier to maintain/debug than a Python code base written with the same level of competency.</p>
<p>If your goal is to do web stuff or scripting, Python is for you. Anything more advanced will require C++.</p>
<p>That being said, go for Python.</p>
http://stackoverflow.com/questions/1793663/python-html-scraping/1793696#17936960Answer by George for Python HTML scrapingGeorge2009-11-24T23:30:07Z2009-11-24T23:30:07Z<p>read Parsing Html The Cthulhu Way <a href="http://www.codinghorror.com/blog/archives/001311.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001311.html</a></p>
http://stackoverflow.com/questions/1793590/c-dynamic-allocated-array/1793648#17936481Answer by George for C++ dynamic allocated arrayGeorge2009-11-24T23:21:14Z2009-11-24T23:28:54Z<p>You have the right idea, but the implementation could use a little 'elbow-grease'</p>
<p>try this: </p>
<p>keep 2 int</p>
<p>capacity - length to which you allocate<BR>
size - current end of array </p>
<pre><code>if capacity <= size:
make new list( size = capacity x 2 )
memcopy old list into new list -> if you can't memcopy, copy over the data one-by-one
delete old list
if capacity > size:
list[size] = value
size++
</code></pre>
<p><a href="http://www.cplusplus.com/reference/clibrary/cstring/memcpy/" rel="nofollow">http://www.cplusplus.com/reference/clibrary/cstring/memcpy/</a></p>
http://stackoverflow.com/questions/1646757/referencing-a-key-value-in-django-templates-after-applying-a-filter0referencing a key/value in django-templates after applying a filterGeorge2009-10-29T21:43:31Z2009-10-29T21:57:51Z
<p>say I have the following list that I provide to a django template</p>
<pre><code>stuff= [ { 'a':2 , 'b':4 } , { 'a',7} ]
</code></pre>
<p>I want to access the 'a' attribute of the first element. I can't quite get the syntax right.</p>
<pre><code>{{stuff|first}}
</code></pre>
<p>gives me the first element, but</p>
<pre><code>{{stuff|first.a}}
</code></pre>
<p>is a dead end ( and weird )</p>
<p>and I can't seem to find a attribute filter. Short of writing one myself, is there template language syntax for what I want to do ?</p>
<pre><code>stuff[0].a is no go as well
</code></pre>
http://stackoverflow.com/questions/1563280/programmer-not-a-blogger/1563966#15639661Answer by George for Programmer, not a bloggerGeorge2009-10-14T02:31:03Z2009-10-29T21:45:02Z<p>check out</p>
<p><a href="http://blog.penelopetrunk.com/" rel="nofollow">http://blog.penelopetrunk.com/</a></p>
<p>The author has aspergers also and she's a great blogger. Read the blog thoroughly</p>
http://stackoverflow.com/questions/1538680/cannot-create-a-for-loop-inside-a-java-thread-why/1538707#15387070Answer by George for Cannot create a for loop inside a java thread - why?George2009-10-08T15:54:02Z2009-10-08T15:54:02Z<p>Thread is a class not a function ( which is the closet your syntax above resembles )</p>
<p>your code should be</p>
<pre><code>class MyThread : public Thread {
public void run() {
// code
}
}
Thread t = new MyThread();
t.run()
</code></pre>
http://stackoverflow.com/questions/1501372/how-to-transpose-rows-and-columns-in-access-2003/1506898#15068980Answer by George for How to transpose rows and columns in Access 2003?George2009-10-01T22:43:48Z2009-10-01T22:43:48Z<p>Do it in Excel if you're more comfortable there</p>
<p>Export back to Access when you're done</p>
http://stackoverflow.com/questions/1479565/how-can-i-read-multiple-lines-in-perl/1479785#14797850Answer by George for How can I read multiple lines in Perl?George2009-09-25T22:08:51Z2009-09-25T22:13:53Z<p>The operation you are looking for is called 'file slurping'
instead of undef-ing $/</p>
<p>use</p>
<p><a href="http://search.cpan.org/~drolsky/File-Slurp-9999.13/lib/File/Slurp.pm" rel="nofollow">File::Slurp</a> - Efficient Reading/Writing of Complete Files</p>
<p>here's the summary from the site</p>
<pre><code> use File::Slurp;
my $text = read_file( 'filename' ) ;
my @lines = read_file( 'filename' ) ;
write_file( 'filename', @lines ) ;
use File::Slurp qw( slurp ) ;
my $text = slurp( 'filename' ) ;
</code></pre>
http://stackoverflow.com/questions/1461493/ignore-lines-with-same-next-fields-as-previous/1461776#14617760Answer by George for Ignore lines with same next fields as previousGeorge2009-09-22T18:24:29Z2009-09-22T18:24:29Z<p>try the uniq utility</p>
<p>uniq -w 3 your_file.txt</p>
<p>would do the trick. no need for perl</p>
http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1413232#14132320Answer by George for How to become a "faster" programmer?George2009-09-11T20:56:22Z2009-09-11T21:23:03Z<p>There's only one way to do this.</p>
<p>Type faster!</p>
<p>I refer you to Atwood's <a href="http://www.codinghorror.com/blog/archives/001188.html" rel="nofollow">We Are Typists First, Programmers Second</a>.</p>
http://stackoverflow.com/questions/1407248/python-database-sql-programming-where-to-start/1407259#14072591Answer by George for python database / sql programming - where to startGeorge2009-09-10T19:33:28Z2009-09-11T16:08:39Z<p>start with Django</p>
<p><a href="http://www.djangoproject.com/" rel="nofollow">http://www.djangoproject.com/</a></p>
<p>ORM is the way to go here. You won't regret it. The tutorial here <a href="http://docs.djangoproject.com/en/dev/intro/tutorial01/" rel="nofollow">http://docs.djangoproject.com/en/dev/intro/tutorial01/</a> is fairly gentle.</p>
<p>Why Django/ORM ? Django will have you up an running in about half an hour, will manage your database connections, data management interfaces, etc. Django works SQLLite: you won't need to manage a MySQL/PostGre instance.</p>
<p>EDIT1: You don't need to use the web-app portion of Django for this. You can use the db.Model classes to manipulate your data directly. Whatever standalone app/script you will come up with, you can just use the Django data-model layer. And when you decide you want a web front-end, or atleast would like to edit your data via the admin console - you can post back here and thank me ( or everyone that said use an ORM ) :)</p>
http://stackoverflow.com/questions/1373836/how-to-transfer-data-from-one-database-to-another-database/1375546#13755460Answer by George for How To Transfer data from one database to another Database?George2009-09-03T19:47:28Z2009-09-03T19:47:28Z<p>Use <a href="http://www.webyog.com/en/" rel="nofollow">SqlYog</a>. Great piece of software that'll let you manage all of this</p>
<p>or you can write a script to</p>
<ol>
<li>download table into a file </li>
<li>Load data on the file but on a different server</li>
</ol>
<p>or do on the fly inserts & figure out how to re-create the table</p>
http://stackoverflow.com/questions/369876/fighting-the-system-colleague-woes/1375522#13755222Answer by George for Fighting the system: colleague woesGeorge2009-09-03T19:43:28Z2009-09-03T19:43:28Z<p>try <code>No Pants Wednesday</code></p>
http://stackoverflow.com/questions/847783/job-scheduler/1375256#13752561Answer by George for Job SchedulerGeorge2009-09-03T18:51:38Z2009-09-03T18:51:38Z<p>There's JAMS. <a href="http://www.mvpsi.com/JobScheduling.aspx" rel="nofollow">http://www.mvpsi.com/JobScheduling.aspx</a></p>
<p>Especially awesome if you're using OpenVMS</p>
http://stackoverflow.com/questions/1369267/boostmultiindex-index-by-function-call-with-parameters0boost::multi_index index by function call with parameter(s)George2009-09-02T18:08:08Z2009-09-03T18:29:55Z
<p>Hi Everyone</p>
<p>I'm trying to make a boost::multi_index container that uses member functions w/ parameters as keys.</p>
<pre><code>class Data {
public:
std::string get(const std::string & _attr) { return _internals_fetch_data(_attr); }
/*
assume some implementation for storing data in some structure(s)
*/
};
</code></pre>
<p>Suppose I have a <em>rectangular</em> list of these data items that I want to multiple indicies over. <em>rectangular</em> means all items in list have the same attributes via get()</p>
<p>The boost::multi_index declaration is something like</p>
<pre><code>typedef multi_index_container<
Data,
indexed_by<
ordered_unique<
BOOST_MULTI_INDEX_CONST_MEM_FUN(Data,String,get)
>
>
> my_container;
</code></pre>
<p>Except that <em>BOOST_MULTI_INDEX_CONST_MEM_FUNCT()</em> does not have these features.
Composite keys still work with member variables.</p>
<p>How do I get around this ?
It doesn't look like I can give ordered_unique<> a boost::function1</p>
<p>EDIT:</p>
<p>After some thought, here is the gist of what I'm trying to do.</p>
<p>boost::multi_index determines it's indexing features during compile time. How do I circumvent these features and use run-time determined indexes ? </p>
http://stackoverflow.com/questions/1370055/should-i-do-a-degree-and-get-some-accredited-qualifications-or-continue-to-go-do/1370144#13701440Answer by George for Should I do a degree and get some accredited qualifications, or continue to go down the self-taught route?George2009-09-02T21:11:07Z2009-09-02T21:11:07Z<p>Before enrolling to 6month diploma degree, try your hand at some tutorials. ( search for Ruby in 15 minutes)
6 Month diplomas will (probably) have you doing either something too low level that will turn you off from 'IT' or something too high level ( SOA ) that will not get you employed.</p>
<p>Given your degree/affinity for 3D Design, give Flash a try. You can re-invent yourself as a Flash/AIR/etc developer.</p>
http://stackoverflow.com/questions/1369544/does-practicing-logic-puzzles-help-you-become-a-better-programmer/1369619#13696192Answer by George for Does practicing logic puzzles help you become a better programmer?George2009-09-02T19:20:07Z2009-09-02T19:20:07Z<p>doing programming challanges will make you a better programmer. Devil is in the details.</p>
<p>Or you can just reading programming blogs.</p>
http://stackoverflow.com/questions/1269801/delete-and-memory-leaks/1269854#12698540Answer by George for delete[] and memory leaksGeorge2009-08-13T03:19:46Z2009-08-13T03:19:46Z<p>check out boost::shared_ptr or boost::scoped_ptr and NEVER worry about this again.
This gives you a static & reference counted way to manage your memory.</p>
<p><a href="http://www.boost.org/doc/libs/1_39_0/libs/smart_ptr/shared_ptr.htm" rel="nofollow">http://www.boost.org/doc/libs/1_39_0/libs/smart_ptr/shared_ptr.htm</a></p>
http://stackoverflow.com/questions/1265650/what-is-a-callback-what-is-it-for-and-how-is-it-implemented-in-for-example-c/1269725#12697250Answer by George for What is a callback? What is it for and how is it implemented in for example C++.George2009-08-13T02:26:26Z2009-08-13T02:26:26Z<p>in C++ check out boost::function</p>
<p><a href="http://www.boost.org/doc/libs/1_39_0/doc/html/function.html" rel="nofollow">http://www.boost.org/doc/libs/1_39_0/doc/html/function.html</a></p>
http://stackoverflow.com/questions/1265666/reason-why-not-to-have-a-delete-macro-for-c/1269718#12697182Answer by George for Reason why not to have a DELETE macro for c++George2009-08-13T02:23:28Z2009-08-13T02:23:28Z<p>Use boost::shared_ptr<> instead.</p>
<p><a href="http://www.boost.org/doc/libs/1_39_0/libs/smart_ptr/shared_ptr.htm" rel="nofollow">http://www.boost.org/doc/libs/1_39_0/libs/smart_ptr/shared_ptr.htm</a></p>
<p>The MACRO here provides some of the functionality you are <em>probably</em> looking for.</p>
http://stackoverflow.com/questions/1269568/passing-a-constant-array-to-a-function-in-c-c/1269699#12696990Answer by George for Passing a constant array to a function in C/C++George2009-08-13T02:14:16Z2009-08-13T02:14:16Z<p>you can write a builder class that would allow for about the same syntax</p>
<pre><code>// roughly
template <typename C>
class Builder {
public:
template <typename T>
Builder(const T & _data) { C.push_back(_data); }
template <typename T>
Builder& operator()(const T & _data) {
C.push_back(_data);
return *this;
}
operator const C & () const { return data; }
private:
C data;
};
</code></pre>
<p>this way, you can use the class as </p>
<p>foo( const std::vector & v);</p>
<p>foo( Builder< std::vector >(1)(2)(3)(4) );</p>
http://stackoverflow.com/questions/872054/python-vs-c-twitter-api-libraries/1100307#11003070Answer by George for Python vs. C# Twitter API librariesGeorge2009-07-08T20:15:04Z2009-07-08T20:15:04Z<p>python-twyt by Andrew Price. BSD licensed Twitter API interface library and command line client.</p>
<p>is my python library of choice. it's fairly straightforward. </p>
http://stackoverflow.com/questions/987615/how-do-you-use-visio-in-your-shop-and-apply-it-to-development-projects/987723#9877230Answer by George for How do you use Visio in your shop and apply it to development projects?George2009-06-12T16:40:53Z2009-06-12T16:40:53Z<p>We use Dia <a href="http://live.gnome.org/Dia" rel="nofollow">http://live.gnome.org/Dia</a> for diagrams
and OpenProj for project planning.</p>
<p>It's free but not very well made software.
My <em>shop</em> doesn't really use UML, etc</p>
http://stackoverflow.com/questions/946214/one-sql-query-or-many-in-a-loop/946335#9463350Answer by George for One SQL query, or many in a loop?George2009-06-03T18:19:35Z2009-06-03T18:19:35Z<p>one sql query is probably a better idea.
It avoids you having to re-write relational operations</p>
http://stackoverflow.com/questions/701456/what-are-potential-dangers-when-using-boostsharedptr/714430#7144301Answer by George for What are potential dangers when using boost::shared_ptr?George2009-04-03T15:23:08Z2009-04-03T15:23:08Z<p>Giving out a shared_ptr< T > to this inside a class definition is also dangerous.
Use enabled_shared_from_this instead. </p>
<p>See the following post <a href="http://stackoverflow.com/questions/712279/what-is-the-usefulness-of-enablesharedfromthis">here</a></p>
http://stackoverflow.com/questions/26151/template-typedefs-whats-your-work-around4Template typedefs - What's your work around ?George2008-08-25T14:47:00Z2009-04-02T22:51:27Z
<p>C++ 0x has template typedefs. See <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Template_typedefs" rel="nofollow">here</a>. Current spec of C++ does not. </p>
<p>What do you like to use as work around ? Container objects or Macros ?
Do you feel its worth it ?</p>
http://stackoverflow.com/questions/134650/how-to-search-through-archived-files-with-perl2How to search through archived files with PerlGeorge2008-09-25T17:17:59Z2008-09-25T20:22:49Z
<p>What is your preferred method for reading through the contents of zipped directories with Perl ?</p>
http://stackoverflow.com/questions/34215/what-are-the-best-alternatives-to-notepad/34457#344573Answer by George for What are the best alternatives to notepad?George2008-08-29T15:10:50Z2008-08-29T15:10:50Z<p>I <strong>SWEAR</strong> by Scintilla based SciTE. For my money ($free) it the best text editor:
lightweight, tabbing, syntax highlighting, you can run code in it , </p>
<p>See it here <a href="http://scintilla.sourceforge.net/SciTE.html" rel="nofollow">http://scintilla.sourceforge.net/SciTE.html</a>
download it here <a href="http://scintilla.sourceforge.net/SciTEDownload.html" rel="nofollow">http://scintilla.sourceforge.net/SciTEDownload.html</a></p>
http://stackoverflow.com/questions/245973/whats-the-best-c-json-parser/246178#246178Comment by George on What's the best C++ JSON parser?George2009-11-27T20:50:58Z2009-11-27T20:50:58ZI'm using jsoncpp also. it requires a little clean-up on my (work) system so integrations for new revisions are a little harderhttp://stackoverflow.com/questions/1799177/mysql-query-takes-forever/1799247#1799247Comment by George on MySql Query takes forever...George2009-11-25T19:09:40Z2009-11-25T19:09:40Zp.model, p.descriptionsmall, p.brandname cause a much larger chunk of data to group ( write out to disk & sort ), and the behavior is not defined - you get a random value back http://stackoverflow.com/questions/1799177/mysql-query-takes-forever/1799247#1799247Comment by George on MySql Query takes forever...George2009-11-25T19:07:50Z2009-11-25T19:07:50Zright. make this a sub-query and join back to purchaseorders.product to get the rest of the fieldshttp://stackoverflow.com/questions/1792360/what-are-the-limits-of-python/1793871#1793871Comment by George on What are the limits of Python?George2009-11-25T19:02:20Z2009-11-25T19:02:20Zyou CAN write more complicated applications in Python. <a href="http://www.python.org/about/success/" rel="nofollow">python.org/about/success</a> But given a choice, you probably wouldn't http://stackoverflow.com/questions/1793590/c-dynamic-allocated-array/1793667#1793667Comment by George on C++ dynamic allocated arrayGeorge2009-11-25T00:23:51Z2009-11-25T00:23:51Zthe idea is correct. but it's not part of the requirements. @klw is trying to write a list_add() function. http://stackoverflow.com/questions/1793590/c-dynamic-allocated-array/1793648#1793648Comment by George on C++ dynamic allocated arrayGeorge2009-11-24T23:28:26Z2009-11-24T23:28:26Zthis assumes size is incremented appropriately outside the loophttp://stackoverflow.com/questions/1793590/c-dynamic-allocated-arrayComment by George on C++ dynamic allocated arrayGeorge2009-11-24T23:15:58Z2009-11-24T23:15:58Zwhy does your function return a bool ?http://stackoverflow.com/questions/1670445/what-if-one-of-my-python-libraries-requires-python-2-5-but-i-only-have-2-4-3/1670449#1670449Comment by George on What if one of my Python libraries requires python 2.5, but I only have 2.4.3?George2009-11-03T22:43:49Z2009-11-03T22:43:49Zway to get undefined behaviorhttp://stackoverflow.com/questions/1646757/referencing-a-key-value-in-django-templates-after-applying-a-filter/1646830#1646830Comment by George on referencing a key/value in django-templates after applying a filterGeorge2009-11-01T22:22:03Z2009-11-01T22:22:03Zthats crazy. toddhttp://stackoverflow.com/questions/1647102/what-did-i-do-wrong-following-the-django-tutorialComment by George on What did I do wrong following the Django tutorial?George2009-10-29T23:10:20Z2009-10-29T23:10:20Zis this a question ?http://stackoverflow.com/questions/1625378/strategy-for-interleaving-jobs-on-appengineComment by George on Strategy for interleaving jobs on AppEngine?George2009-10-26T20:40:33Z2009-10-26T20:40:33ZI don't understand the question. Are there dependencies between these jobs ? Time required to run ?http://stackoverflow.com/questions/1626326/how-to-manage-local-vs-production-settings-in-django/1626371#1626371Comment by George on How to manage local vs production settings in Django?George2009-10-26T19:17:07Z2009-10-26T19:17:07Zthis is the solution I use. hacking up a settings file to be used for both production or development is messyhttp://stackoverflow.com/questions/1563947/what-area-of-development-are-really-hot-from-current-market-perspective/1563952#1563952Comment by George on What area of Development are really hot from current market perspective ?George2009-10-14T02:32:16Z2009-10-14T02:32:16Zwinner winner chicken dinnerhttp://stackoverflow.com/questions/1531501/json-serialization-of-google-app-engine-modelsComment by George on JSON serialization of Google App Engine modelsGeorge2009-10-08T15:58:15Z2009-10-08T15:58:15Zgood question. I've had the same issuehttp://stackoverflow.com/questions/1510551/where-can-i-share-my-technical-blog-knowledge-websiteComment by George on Where can i share my technical blog knowledge website?? George2009-10-02T16:23:58Z2009-10-02T16:23:58Z@Mark +1 for the sarcasm