User George - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:00:47Z http://stackoverflow.com/feeds/user/2759 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1060222/render-pdf-on-a-blackberry/1810605#1810605 1 Answer by George for Render PDF on a Blackberry? George 2009-11-27T20:54:35Z 2009-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#1799288 0 Answer by George for What do you do to write better code? George 2009-11-25T19:12:08Z 2009-11-25T19:12:08Z <p>my solution: type faster</p> http://stackoverflow.com/questions/1792360/what-are-the-limits-of-python/1793871#1793871 0 Answer by George for What are the limits of Python? George 2009-11-25T00:13:33Z 2009-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#1793696 0 Answer by George for Python HTML scraping George 2009-11-24T23:30:07Z 2009-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#1793648 1 Answer by George for C++ dynamic allocated array George 2009-11-24T23:21:14Z 2009-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 &lt;= size: make new list( size = capacity x 2 ) memcopy old list into new list -&gt; if you can't memcopy, copy over the data one-by-one delete old list if capacity &gt; 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-filter 0 referencing a key/value in django-templates after applying a filter George 2009-10-29T21:43:31Z 2009-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#1563966 1 Answer by George for Programmer, not a blogger George 2009-10-14T02:31:03Z 2009-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#1538707 0 Answer by George for Cannot create a for loop inside a java thread - why? George 2009-10-08T15:54:02Z 2009-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#1506898 0 Answer by George for How to transpose rows and columns in Access 2003? George 2009-10-01T22:43:48Z 2009-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#1479785 0 Answer by George for How can I read multiple lines in Perl? George 2009-09-25T22:08:51Z 2009-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#1461776 0 Answer by George for Ignore lines with same next fields as previous George 2009-09-22T18:24:29Z 2009-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#1413232 0 Answer by George for How to become a "faster" programmer? George 2009-09-11T20:56:22Z 2009-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#1407259 1 Answer by George for python database / sql programming - where to start George 2009-09-10T19:33:28Z 2009-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#1375546 0 Answer by George for How To Transfer data from one database to another Database? George 2009-09-03T19:47:28Z 2009-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 &amp; figure out how to re-create the table</p> http://stackoverflow.com/questions/369876/fighting-the-system-colleague-woes/1375522#1375522 2 Answer by George for Fighting the system: colleague woes George 2009-09-03T19:43:28Z 2009-09-03T19:43:28Z <p>try <code>No Pants Wednesday</code></p> http://stackoverflow.com/questions/847783/job-scheduler/1375256#1375256 1 Answer by George for Job Scheduler George 2009-09-03T18:51:38Z 2009-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-parameters 0 boost::multi_index index by function call with parameter(s) George 2009-09-02T18:08:08Z 2009-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 &amp; _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&lt; Data, indexed_by&lt; ordered_unique&lt; BOOST_MULTI_INDEX_CONST_MEM_FUN(Data,String,get) &gt; &gt; &gt; 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&lt;> 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#1370144 0 Answer by George for Should I do a degree and get some accredited qualifications, or continue to go down the self-taught route? George 2009-09-02T21:11:07Z 2009-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#1369619 2 Answer by George for Does practicing logic puzzles help you become a better programmer? George 2009-09-02T19:20:07Z 2009-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#1269854 0 Answer by George for delete[] and memory leaks George 2009-08-13T03:19:46Z 2009-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 &amp; 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#1269725 0 Answer by George for What is a callback? What is it for and how is it implemented in for example C++. George 2009-08-13T02:26:26Z 2009-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#1269718 2 Answer by George for Reason why not to have a DELETE macro for c++ George 2009-08-13T02:23:28Z 2009-08-13T02:23:28Z <p>Use boost::shared_ptr&lt;> 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#1269699 0 Answer by George for Passing a constant array to a function in C/C++ George 2009-08-13T02:14:16Z 2009-08-13T02:14:16Z <p>you can write a builder class that would allow for about the same syntax</p> <pre><code>// roughly template &lt;typename C&gt; class Builder { public: template &lt;typename T&gt; Builder(const T &amp; _data) { C.push_back(_data); } template &lt;typename T&gt; Builder&amp; operator()(const T &amp; _data) { C.push_back(_data); return *this; } operator const C &amp; () const { return data; } private: C data; }; </code></pre> <p>this way, you can use the class as </p> <p>foo( const std::vector &amp; v);</p> <p>foo( Builder&lt; std::vector >(1)(2)(3)(4) );</p> http://stackoverflow.com/questions/872054/python-vs-c-twitter-api-libraries/1100307#1100307 0 Answer by George for Python vs. C# Twitter API libraries George 2009-07-08T20:15:04Z 2009-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#987723 0 Answer by George for How do you use Visio in your shop and apply it to development projects? George 2009-06-12T16:40:53Z 2009-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#946335 0 Answer by George for One SQL query, or many in a loop? George 2009-06-03T18:19:35Z 2009-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#714430 1 Answer by George for What are potential dangers when using boost::shared_ptr? George 2009-04-03T15:23:08Z 2009-04-03T15:23:08Z <p>Giving out a shared_ptr&lt; 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-around 4 Template typedefs - What's your work around ? George 2008-08-25T14:47:00Z 2009-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-perl 2 How to search through archived files with Perl George 2008-09-25T17:17:59Z 2008-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#34457 3 Answer by George for What are the best alternatives to notepad? George 2008-08-29T15:10:50Z 2008-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#246178 Comment by George on What's the best C++ JSON parser? George 2009-11-27T20:50:58Z 2009-11-27T20:50:58Z I'm using jsoncpp also. it requires a little clean-up on my (work) system so integrations for new revisions are a little harder http://stackoverflow.com/questions/1799177/mysql-query-takes-forever/1799247#1799247 Comment by George on MySql Query takes forever... George 2009-11-25T19:09:40Z 2009-11-25T19:09:40Z p.model, p.descriptionsmall, p.brandname cause a much larger chunk of data to group ( write out to disk &amp; sort ), and the behavior is not defined - you get a random value back http://stackoverflow.com/questions/1799177/mysql-query-takes-forever/1799247#1799247 Comment by George on MySql Query takes forever... George 2009-11-25T19:07:50Z 2009-11-25T19:07:50Z right. make this a sub-query and join back to purchaseorders.product to get the rest of the fields http://stackoverflow.com/questions/1792360/what-are-the-limits-of-python/1793871#1793871 Comment by George on What are the limits of Python? George 2009-11-25T19:02:20Z 2009-11-25T19:02:20Z you 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#1793667 Comment by George on C++ dynamic allocated array George 2009-11-25T00:23:51Z 2009-11-25T00:23:51Z the 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#1793648 Comment by George on C++ dynamic allocated array George 2009-11-24T23:28:26Z 2009-11-24T23:28:26Z this assumes size is incremented appropriately outside the loop http://stackoverflow.com/questions/1793590/c-dynamic-allocated-array Comment by George on C++ dynamic allocated array George 2009-11-24T23:15:58Z 2009-11-24T23:15:58Z why 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#1670449 Comment by George on What if one of my Python libraries requires python 2.5, but I only have 2.4.3? George 2009-11-03T22:43:49Z 2009-11-03T22:43:49Z way to get undefined behavior http://stackoverflow.com/questions/1646757/referencing-a-key-value-in-django-templates-after-applying-a-filter/1646830#1646830 Comment by George on referencing a key/value in django-templates after applying a filter George 2009-11-01T22:22:03Z 2009-11-01T22:22:03Z thats crazy. todd http://stackoverflow.com/questions/1647102/what-did-i-do-wrong-following-the-django-tutorial Comment by George on What did I do wrong following the Django tutorial? George 2009-10-29T23:10:20Z 2009-10-29T23:10:20Z is this a question ? http://stackoverflow.com/questions/1625378/strategy-for-interleaving-jobs-on-appengine Comment by George on Strategy for interleaving jobs on AppEngine? George 2009-10-26T20:40:33Z 2009-10-26T20:40:33Z I 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#1626371 Comment by George on How to manage local vs production settings in Django? George 2009-10-26T19:17:07Z 2009-10-26T19:17:07Z this is the solution I use. hacking up a settings file to be used for both production or development is messy http://stackoverflow.com/questions/1563947/what-area-of-development-are-really-hot-from-current-market-perspective/1563952#1563952 Comment by George on What area of Development are really hot from current market perspective ? George 2009-10-14T02:32:16Z 2009-10-14T02:32:16Z winner winner chicken dinner http://stackoverflow.com/questions/1531501/json-serialization-of-google-app-engine-models Comment by George on JSON serialization of Google App Engine models George 2009-10-08T15:58:15Z 2009-10-08T15:58:15Z good question. I've had the same issue http://stackoverflow.com/questions/1510551/where-can-i-share-my-technical-blog-knowledge-website Comment by George on Where can i share my technical blog knowledge website?? George 2009-10-02T16:23:58Z 2009-10-02T16:23:58Z @Mark +1 for the sarcasm