User Brian Gianforcaro - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T18:09:47Zhttp://stackoverflow.com/feeds/user/3415http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1664626/terminal-sudo-command/1664635#16646350Answer by Brian Gianforcaro for terminal sudo commandBrian Gianforcaro2009-11-03T00:57:41Z2009-11-03T00:57:41Z<p>first set the script as executable: </p>
<pre><code>chmod +x filename.rtf
</code></pre>
<p>Then you can run it like so:</p>
<pre><code>sudo ./filename.rtf
</code></pre>
http://stackoverflow.com/questions/1659511/rijndael-algorithm/1659535#16595350Answer by Brian Gianforcaro for Rijndael algorithm Brian Gianforcaro2009-11-02T05:22:34Z2009-11-02T05:22:34Z<p>If you just need a working implementation check out the <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.rijndael.aspx" rel="nofollow">Rijndael Documentation</a> on MSDN. The Rijndael implementation looks pretty convenient to interface with. </p>
<p>It's of course a different story if you are trying implement it yourself. </p>
http://stackoverflow.com/questions/1658948/how-do-i-undo-a-bzr-ignore/1658960#16589604Answer by Brian Gianforcaro for How do I undo a bzr ignore?Brian Gianforcaro2009-11-02T00:54:34Z2009-11-02T00:54:34Z<p>Edit your <strong>.bzrignore</strong> file in repository. If you simply delete the entry for the files you ignored they should then be recognized by bzr again. </p>
http://stackoverflow.com/questions/1656112/shortest-total-path-among-set-of-latitude-longitudes1Shortest total path among set of Latitude/Longitudes Brian Gianforcaro2009-11-01T01:32:55Z2009-11-01T07:43:09Z
<p>I have a set of 52 or so latitude/longitude pairs. I simply need to find the shortest path through all of them; it doesn't matter where staring point or ending point is. </p>
<p>I've implemented Dijkstra's algorithm by hand multiple times before and don't really have the time to do it again. I've found a couple things that come close, but most require raw graphs with pre-computed weights for each edge. </p>
<p>Do you know of any libraries or existing scripts/applications which will compute the shortest path in this manner? The code/libraries would preferably use Python or Clojure but it really doesn't matter.</p>
<p>Thanks </p>
http://stackoverflow.com/questions/1591873/how-do-i-write-a-cpp-dir-macro-similar-to-file/1591907#15919071Answer by Brian Gianforcaro for How do I write a cpp __DIR__ macro, similar to __FILE__Brian Gianforcaro2009-10-20T00:44:11Z2009-10-20T00:44:11Z<p>Depending on your compiler/how your software is built, you can declare a macro to be the current or any path when you compile. </p>
<pre><code> gcc -D__DIR__=/usr/src/test/ test.c
</code></pre>
<p>I've never used the MS compiler but I know there is a similar option for ICC as well. </p>
<p><a href="http://linux.die.net/man/1/gcc" rel="nofollow">gcc manpage</a></p>
http://stackoverflow.com/questions/329221/medium-size-clojure-sample-application/329232#3292327Answer by Brian Gianforcaro for Medium-size Clojure sample application?Brian Gianforcaro2008-11-30T19:45:29Z2009-10-16T21:49:09Z<p>If you browse the <a href="http://github.com/richhickey/clojure-contrib" rel="nofollow">clojure-contrib</a> source code you can see how libraries are implemented in clojure. </p>
<p>You can also checkout "<a href="http://github.com/richhickey/clojure-contrib/tree/master/clojurescript/" rel="nofollow">ClojureScript</a>" under the same source tree. </p>
<blockquote>
<p><strong>Allows code written in a very small
subset of Clojure to be automatically translated to JavaScript.</strong></p>
</blockquote>
<p>The ClojureScript translator is a full Clojure app. </p>
<p>I'd also recomend checking out the Stewart Halloway's <a href="http://github.com/stuarthalloway/practical-cl-clojure/tree/master" rel="nofollow">Port of Practical Common Lisp samples to Clojure</a> if you haven't already. </p>
http://stackoverflow.com/questions/1430653/how-do-you-allow-multiple-people-to-push-to-github/1430674#14306742Answer by Brian Gianforcaro for How do you allow multiple people to push to github?Brian Gianforcaro2009-09-16T02:43:02Z2009-09-16T02:43:02Z<p>You can add them as a collaborator to the repository. They number of collaborators is limited by the type of the account. (private/public repo and which kinds of accounts you all have) </p>
http://stackoverflow.com/questions/1368731/reading-ints-from-file-with-c/1368779#13687791Answer by Brian Gianforcaro for Reading ints from file with CBrian Gianforcaro2009-09-02T16:29:00Z2009-09-02T16:29:00Z<p>When you are doing the fscanf, you are using one set of variables.
But when you do the printf, you are using another.</p>
<p>One way to get it working correctly:</p>
<pre><code>#include "stdio.h"
int main()
{
FILE *fp;
int s[80];
if((fp=fopen("numbers", "r")) == NULL) {
printf("Cannot open file.\n");
} else {
fscanf(fp, "%d%d", &s[0], &s[1]);
printf("%d %d\n", s[0], s[1]);
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1368534/qt-question-why-does-qt-use-its-own-make-tool-qmake/1368578#13685784Answer by Brian Gianforcaro for QT question: Why does QT use it's own make tool, qmake?Brian Gianforcaro2009-09-02T15:58:22Z2009-09-02T15:58:22Z<p><strong>qmake</strong> is designed to be cross platform and flexible. It can compatible with Microsoft Visual Studio and Xcode. </p>
<p>You can find it all in the <a href="http://doc.trolltech.com/4.2/qmake-manual.html" rel="nofollow">qmake Manual</a>.</p>
<blockquote>
<p>qmake generates a Makefile based on
the information in a project file.
Project files are created by the
developer, and are usually simple, but
more sophisticated project files can
be created for complex projects. qmake
contains additional features to
support development with Qt,
automatically including build rules
for moc and uic. qmake can also
generate projects for Microsoft Visual
studio without requiring the developer
to change the project file.</p>
</blockquote>
http://stackoverflow.com/questions/1362906/how-real-time-is-linux-2-6/1363211#136321117Answer by Brian Gianforcaro for How "Real-Time" is Linux 2.6?Brian Gianforcaro2009-09-01T15:46:33Z2009-09-01T15:54:07Z<p>You can get most of your answers from the Real Time Linux <a href="http://rt.wiki.kernel.org/index.php/Main%5FPage" rel="nofollow">wiki</a> and <a href="http://rt.wiki.kernel.org/index.php/Frequently%5FAsked%5FQuestions" rel="nofollow">FAQ</a></p>
<blockquote>
<p><strong>What are real-time capabilities of the stock 2.6 linux kernel?</strong></p>
<p>Traditionally, the Linux kernel will only allow one process to preempt another only under certain circumstances:</p>
<ul>
<li>When the CPU is running user-mode code</li>
<li>When kernel code returns from a system call or an interrupt back to user space</li>
<li>When kernel code code blocks on a mutex, or explicitly yields control to another process </li>
</ul>
<p>If kernel code is executing when some event takes place that requires a high priority thread to start executing, the high priority thread can not preempt the running kernel code, until the kernel code explicitly yields control. In the worst case, the latency could potentially be hundreds milliseconds or more.</p>
<p>The Linux 2.6 configuration option CONFIG_PREEMPT_VOLUNTARY introduces checks to the most common causes of long latencies, so that the kernel can voluntarily yield control to a higher priority task waiting to execute. This can be helpful, but while it reduces the occurences of long latencies (hundreds of milliseconds to potentially seconds or more), it does not eliminate them. However unlike CONFIG_PREEMPT (discussed below), CONFIG_PREEMPT_VOLUNTARY has a much lower impact on the overall throughput of the system. (As always, there is a classical tradeoff between throughput --- the overall efficiency of the system --- and latency. With the faster CPU's of modern-day systems, it often makes sense to trade off throughput for lower latencies, but server class systems that do not need minimum latency guarantees may very well chose to use either CONFIG_PREEMPT_VOLUNTARY, or to stick with the traditional non-preemptible kernel design.)</p>
<p>The 2.6 Linux kernel has an additional configuration option, CONFIG_PREEMPT, which causes all kernel code outside of spinlock-protected regions and interrupt handlers to be eligible for non-voluntary preemption by higher priority kernel threads. With this option, worst case latency drops to (around) single digit milliseconds, although some device drivers can have interrupt handlers that will introduce latency much worse than that. If a real-time Linux application requires latencies smaller than single-digit milliseconds, use of the CONFIG_PREEMPT_RT patch is highly recommended. </p>
</blockquote>
<p>They also have a list of "Gotcha's" as you called them in the FAQ.</p>
<blockquote>
<p><strong>What are important things to keep in
mind while writing realtime
applications?</strong></p>
<p>Taking care of the following during
the initial startup phase:</p>
<ul>
<li>Call mlockall() as soon as possible from main().</li>
<li>Create all threads at startup time of the application, and touch each page of the entire stack of each thread. Never start threads dynamically during RT show time, this will ruin RT behavior.</li>
<li>Never use system calls that are known to generate page faults, such as
fopen(). (Opening of files does the
mmap() system call, which generates a
page-fault).</li>
<li>If you use 'compile time global variables' and/or 'compile time global
arrays', then use mlockall() to
prevent page faults when accessing
them. </li>
</ul>
<p>more information: <a href="http://rt.wiki.kernel.org/index.php/HOWTO%3A%5FBuild%5Fan%5FRT-application" rel="nofollow">HOWTO: Build an
RT-application</a></p>
</blockquote>
<p>They also have a large <a href="http://rt.wiki.kernel.org/index.php/Publications" rel="nofollow">publications page</a> you might want to checkout. </p>
http://stackoverflow.com/questions/1319441/will-side-effects-be-executed-in-this-if-clause/1319446#13194463Answer by Brian Gianforcaro for Will side-effects be executed in this if clauseBrian Gianforcaro2009-08-23T20:17:58Z2009-08-23T20:17:58Z<p><strong>Yes</strong></p>
<p>The function first get's evaluated for it's return value. </p>
<p>After the return value is known, the return value is compared to the integer value 1. </p>
http://stackoverflow.com/questions/1319331/get-clients-ip-address-in-sinatra/1319357#13193573Answer by Brian Gianforcaro for Get client's IP address in Sinatra?Brian Gianforcaro2009-08-23T19:33:20Z2009-08-23T19:39:51Z<p>I was coming to post the answer anyway.. so: </p>
<pre><code>get '/' do
"Your IP address is #{ @env['REMOTE_ADDR'] }"
end
</code></pre>
<p>Sinatra uses the <a href="http://rack.rubyforge.org/doc/classes/Rack/Request.html" rel="nofollow"><strong>Rack::Request</strong> API</a>, so you can use a lot of things available in it.<br>
Also a link to the <a href="http://www.sinatrarb.com/api/index.html" rel="nofollow"><strong>Sinatra</strong> doc's</a>.</p>
http://stackoverflow.com/questions/1319236/integer-value-of-a-string/1319242#13192423Answer by Brian Gianforcaro for integer value of a stringBrian Gianforcaro2009-08-23T18:43:53Z2009-08-23T19:23:29Z<p>If you want to find say the ASCII integer representation of an entire string and print that out you could use the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html#charAt%28int%29" rel="nofollow">String.charAt(..)</a> method. </p>
<pre><code>public class test
{
public static void main( String argv[] )
{
String str = new String("HELLO");
int age = 0;
for( int i = 0; i < str.length(); i++ ) { // Loop through the string
age += (int) str.charAt(i); // Add the current character's int representation to the age.
System.out.println( "Character: " + str.charAt(i) + " Integer value: " + (int)str.charAt(i) );
}
System.out.println( "Age: " + age );
}
}
</code></pre>
<p>Corrisponding output: </p>
<pre><code>Character: H Integer value: 72
Character: E Integer value: 69
Character: L Integer value: 76
Character: L Integer value: 76
Character: O Integer value: 79
Age: 372
</code></pre>
http://stackoverflow.com/questions/1317931/how-do-i-provide-a-username-password-to-access-a-web-resource-using-matlab-urlrea/1318033#13180330Answer by Brian Gianforcaro for How do I provide a username/password to access a web resource using Matlab urlread/urlwrite? Brian Gianforcaro2009-08-23T08:04:54Z2009-08-23T08:04:54Z<p><strong>I don't know matlab, this is just an educated guess.</strong> </p>
<p>The function documentation http://www.google.com/search?source=ig&hl=en&rlz=&=&q=matlab+url+read&aq=f&oq=&aqi=g-s1">here lists the options as so:</p>
<pre><code>s = urlread('url','method','params')
</code></pre>
<p>Depending on what kind of authentication they use this may or may not work, you are going to want to use a post method.</p>
<pre><code>// Params is supposed to be a "cell array of name/value pairs, I don't know matlab...
s = urlread('http://whatever.com','post', {'username' 'ian'; 'password' 'awesomepass'})
</code></pre>
<p>You will have to look at the actual request HTML form or view the net tab in firebug to see what the actual name's/values of he user name and password parameters are. </p>
http://stackoverflow.com/questions/1317899/django-projects-as-desktop-applications-how-to/1317954#13179541Answer by Brian Gianforcaro for Django Projects as Desktop applications : how to ?!Brian Gianforcaro2009-08-23T07:03:51Z2009-08-23T07:03:51Z<p>You might want to look into Appcelerator's (<a href="http://www.appcelerator.com/" rel="nofollow">link</a>) <a href="http://www.appcelerator.com/products/titanium-desktop/" rel="nofollow">Titanium Desktop</a> for developing web apps on the desktop. </p>
<p>It's fully cross platform, Linux, Mac OSX, Windows. </p>
<p>It's supports running <strong>Python</strong>, Ruby, and JavaScript code in your application all concurrently interacting with one anther in one application. It's pretty sweet. </p>
http://stackoverflow.com/questions/1317718/jquery-hover-and-nested-lists/1317877#13178770Answer by Brian Gianforcaro for jquery hover and nested lists.Brian Gianforcaro2009-08-23T05:55:25Z2009-08-23T06:45:29Z<p>Miss chohoh, </p>
<p><strong>As with my other answer, you need to add the on hover action.</strong> <br>
I ran the following code in firebug and it works in at least firefox. </p>
<p>It selects all the elements with the proper class, then add's the hover action to all of them. </p>
<pre><code>$.each(
// The group of objects to modify, all objects of class .tik-date and type <p>
$(".tik-date p"),
function () { // The function to run on all the objects in the first argument
$(this).hover(
function () { // The first function is run when the mouse hovers
$(this).css("color","#fff"); // Modify the CSS "color" attribute
},
function () { // The second function is run when the mouse moves away.
$(this).css("color","#000");
}
)
}
);
</code></pre>
<p>This is what I'm guessing you want to do for IE6? </p>
<pre><code> $.each(
// The group of objects to modify, all objects of class .tik-date and type <p>
$("ul.tikt-txt"),
function () { // The function to run on all the objects in the first argument
$(this).hover(
function () { // The first function is run when the mouse hovers
$(this).css("background-image","url(\"images/buytiks.png\")");
},
function () { // The second function is run when the mouse moves away.
$(this).css("background-image","");
}
)
}
);
</code></pre>
http://stackoverflow.com/questions/1317753/looking-for-freeware-postscript-font-editor/1317757#13177572Answer by Brian Gianforcaro for Looking for freeware Postscript font editorBrian Gianforcaro2009-08-23T04:29:35Z2009-08-23T04:29:35Z<p><strong>Have you tried</strong> <a href="http://noahtm.coolfreepages.com/download.html" rel="nofollow">Noah</a>?</p>
<p>They claim support for PostScript Type 1 fonts and Windows XP. </p>
http://stackoverflow.com/questions/1317615/sending-email-by-jquery-php/1317633#13176331Answer by Brian Gianforcaro for Sending email by jQuery / PHPBrian Gianforcaro2009-08-23T02:48:59Z2009-08-23T02:48:59Z<p><strong>You can checkout the documentation for php's mail function <a href="http://us3.php.net/manual/en/function.mail.php" rel="nofollow">here</a>.</strong> </p>
<p><strong>Item of note:</strong> There are many people posting workarounds in the documentation comments because this function often seems to not work if your server/system isn't configured correctly.</p>
<p>This users comment might be useful (<a href="http://us3.php.net/manual/en/function.mail.php#92639" rel="nofollow">link</a>) </p>
<blockquote>
<p><strong>Edward 01-Aug-2009 09:08</strong></p>
<p>Currently my hosting service is on Godaddy. When attempting to use the mail function without the fifth parameter containing "-f", my message headers would not work.</p>
<p>Whenever your message headers do not work, simply try using the fifth parameter:</p>
</blockquote>
<pre><code><?php
mail($to, $subject, $message, $headers, "-femail.address@example.com");
?>
</code></pre>
http://stackoverflow.com/questions/1317139/checking-string-content-with-javascript/1317159#13171590Answer by Brian Gianforcaro for Checking String Content with Javascript Brian Gianforcaro2009-08-22T22:02:28Z2009-08-22T23:07:02Z<p>You could also use String.match(...)</p>
<pre><code>title = document.getElementById('title');
titletxt = title.innerText ? title.innerText : title.textContent
titlecheck = titletxt.match("website.com");
if (titlecheck != null ) {
return false;
}
</code></pre>
<p>String.match returns null if no match is found, and returns the search string("website.com") if a match is found</p>
http://stackoverflow.com/questions/1317180/revision-control-and-hosting-comparison/1317220#13172202Answer by Brian Gianforcaro for Revision control and hosting comparisonBrian Gianforcaro2009-08-22T22:33:13Z2009-08-22T22:39:17Z<p>First off, you might benefit from this recently published paper in the ACM Queue: <br>
<a href="http://queue.acm.org/detail.cfm?id=1595636" rel="nofollow"><strong>Making Sense of Revision-control Systems</strong></a></p>
<p>I'll outline the two which I know the most about, others can tell you about the rest. </p>
<p><strong>SVN:</strong></p>
<ul>
<li>Probably the best windows support out of all modern open source SCM's</li>
<li>Simple work flow similar to most standard SCM's</li>
<li>Many free open source hosts: <a href="http://code.google.com/projecthosting/" rel="nofollow">http://code.google.com/projecthosting</a>, <a href="http://unfuddle.com/about/tour/plans" rel="nofollow">http://unfuddle.com/about/tour/plans</a> </li>
<li><a href="http://www.svnhostingcomparison.com/" rel="nofollow">http://www.svnhostingcomparison.com/</a></li>
<li>Many good clients. Tortis SVN, Subclipse, straight cli and many more. </li>
</ul>
<p><strong>GIT:</strong></p>
<ul>
<li>Extremely powerful SCM</li>
<li>Full source history in every checkout of the source tree. </li>
<li>Not the greatest windows support, but making great strides of improvement currently. <a href="http://code.google.com/p/msysgit/" rel="nofollow">http://code.google.com/p/msysgit/</a></li>
<li>Many free hosts: <a href="http://repo.or.cz" rel="nofollow">github</a>, <a href="http://repo.or.cz" rel="nofollow">repo.or.cz</a></li>
<li>The current "cool kid" on the bock. </li>
</ul>
<p>It sounds like you might just want to go with svn.
It sounds like you just want to have stuff under version control, this way you won't have to worry about the learning curve associated with GIT. </p>
<p>Others to look at, but I didn't detail because of general lack of windows tools: Mercurial, Darcs, Bazaar.
If you do check out mercurial you can use <a href="http://bitbucket.org" rel="nofollow">bitbucket</a> and <a href="http://code.google.com/projecthosting/" rel="nofollow">google code</a> as a host. </p>
http://stackoverflow.com/questions/1303528/how-to-program-a-vote-up-system/1303580#13035802Answer by Brian Gianforcaro for How to program a vote up system?Brian Gianforcaro2009-08-20T02:02:42Z2009-08-20T02:10:25Z<p><strong>Personally I like Jonathan's answer.</strong> </p>
<p>However if you feel like you might need more info, I might be able to help. </p>
<p>As a small side project I tried to make a quote database like bash.org for my university.<br>
It was developed using MySql and PHP, it has posting/voting much like what you are trying to accomplish. <br>
It is by no means a well designed web app. However it might be able to get you going in the right direction. </p>
<p><strong>Live testing site</strong>: <a href="http://lame.ws/rit/" rel="nofollow">link</a> (be gentle!)</p>
<p><strong>Code on GitHub</strong>: <a href="http://github.com/bgianfo/rit-qdb/tree/master" rel="nofollow">link</a> </p>
<p>I would take a look at the <a href="http://github.com/bgianfo/rit-qdb/blob/d6ff624e17c01ace7d809ae0998b4597dfffb5db/db.sql" rel="nofollow">database schema</a> , the <a href="http://github.com/bgianfo/rit-qdb/blob/d6ff624e17c01ace7d809ae0998b4597dfffb5db/vote.php" rel="nofollow">php</a>-<a href="http://github.com/bgianfo/rit-qdb/blob/d6ff624e17c01ace7d809ae0998b4597dfffb5db/inc/config.php" rel="nofollow">db-integration</a> and the <a href="http://github.com/bgianfo/rit-qdb/blob/d6ff624e17c01ace7d809ae0998b4597dfffb5db/inc/footer.inc#L59" rel="nofollow">ajax to update a vote</a>. </p>
<p>The code is fairly simple and straight foreword. One thing of note is the "<strong>filter_input</strong>"s, These functions are from a PHP library to sanitize user inputs to prevent SQL injections. </p>
http://stackoverflow.com/questions/766468/autoboxing-so-i-can-write-integer-i-0-instead-of-integer-i-new-integer0/766478#7664787Answer by Brian Gianforcaro for Autoboxing: So I can write: Integer i = 0; instead of: Integer i = new Integer(0);Brian Gianforcaro2009-04-20T00:20:23Z2009-08-18T21:26:20Z<p>You kind of simplified it a little too much. </p>
<p><strong>Autoboxing also comes into play when using collections. As explained in sun's java docs:</strong></p>
<blockquote>
<p>Collections can only hold object references, so you have to box primitive values into the appropriate wrapper class. <strong>...</strong> When you take the object out of the collection, you get the Integer that you put in; if you need an int, you must unbox the Integer using the intValue method. All of this boxing and unboxing is a pain, and clutters up your code. The autoboxing and unboxing feature automates the process, eliminating the pain and the clutter. </p>
<p>So when should you use autoboxing and unboxing? Use them only when there is an “impedance mismatch” between reference types and primitives, for example, when you have to put numerical values into a collection. It is not appropriate to use autoboxing and unboxing for scientific computing, or other performance-sensitive numerical code. An Integer is not a substitute for an int; autoboxing and unboxing blur the distinction between primitive types and reference types, but they do not eliminate it. </p>
</blockquote>
<p><a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/autoboxing.html" rel="nofollow">Great overview of Autoboxing</a></p>
http://stackoverflow.com/questions/1285879/what-are-the-main-differences-in-iphone-project-build-settings-for-debug-build-an/1285907#12859071Answer by Brian Gianforcaro for What are the main differences in iPhone project build settings for Debug build and Distribution build?Brian Gianforcaro2009-08-17T02:10:24Z2009-08-17T02:10:24Z<p><strong>Debug:</strong> </p>
<p>The debug build settings include debugging symbols in your application binary and usually turn of compile time optimizations which may affect the code execution path. Debugging symbols allow you to get meaningful information while stepping through the code in a debugger. The setting is also useful if you have setup an application logging macro for instance. It would let you enable/disable it for development and distribution. </p>
<p><strong>Release:</strong> </p>
<p>Release will most likely give you a smaller binary, and faster execution time with optimizations enabled. </p>
<p><strong>Definitely go with the distribution build settings.</strong> </p>
http://stackoverflow.com/questions/1231333/how-should-i-close-a-multi-line-variable-comment-in-python/1231356#12313561Answer by Brian Gianforcaro for How should I close a multi-line variable/comment in Python?Brian Gianforcaro2009-08-05T05:31:44Z2009-08-05T05:36:49Z<p>Open and close the string with three quotes </p>
<pre><code>sql = """
SELECT d.Date, SUM(d.Revenue),
FROM Table d WHERE d.Date = '%s' AND d.Id = %s
GROUP BY d.Date
""" % (str(day), str(2840))
</code></pre>
<p>You can also break a line in the middle of a string with the \ character. </p>
<pre><code>#!/usr/bin/python
import datetime
import sys, os, time, string
a = datetime.date(2009, 1, 1)
b = datetime.date(2009, 2, 1)
one_day = datetime.timedelta(1)
day = a
while day <= b:
print "Running query for \"" + str(day) + "\""
sql="SELECT d.Date, SUM(d.Revenue), FROM Table d WHERE d.Date = '%s' \
AND d.Id = %s GROUP BY d.Date " % (str(day), str(2840))
os.system('mysql -h -sN -u -p -e %s > FileName-%s.txt db' % (sql, str(day)))
</code></pre>
http://stackoverflow.com/questions/185533/how-does-the-dropbox-mac-client-work3How does the DropBox Mac client work?Brian Gianforcaro2008-10-09T00:57:30Z2009-06-30T17:02:00Z
<p>I've been looking at the <a href="http://www.getdropbox.com/install?os=mac" rel="nofollow">DropBox</a> Mac client and I'm currently researching implementing a similar interface for a different service. </p>
<p>How exactly do they interface with finder like this? I highly doubt these objects represented in the folder are actual documents downloaded on every load? They must dynamically download as they are needed. So how can you display these items in finder without having actual file system objects? </p>
<p><strong>Does anyone know how this is achieved in Mac OS X?</strong> </p>
<p>Or any pointer's to Apple API's or other open source projects that have a similar integration with finder? </p>
http://stackoverflow.com/questions/43044/algorithm-to-randomly-generate-an-aesthetically-pleasing-color-palette13Algorithm to randomly generate an aesthetically-pleasing color paletteBrian Gianforcaro2008-09-04T01:54:12Z2009-06-07T20:45:33Z
<p>I'm looking for a simple algorithm to generate a large number of random, aesthetically pleasing colors. So no crazy neon colors, colors reminiscent of feces, etc. </p>
<p>I've found solutions to this problem but they rely on alternative color palettes than RGB.
I would rather just use straight RGB than mapping back and forth. These other solutions also can at most generate only 32 or so pleasing random colors. </p>
<p>Any idea's would be great.</p>
<p>Thanks, Brian Gianforcaro</p>
http://stackoverflow.com/questions/960122/xerces-c-problems-segfault-on-call-to-object-destructor2Xerces-C problems; segfault on call to object destructor Brian Gianforcaro2009-06-06T17:09:51Z2009-06-07T03:16:22Z
<p>I've been playing around with the <a href="http://xerces.apache.org/xerces-c/" rel="nofollow">Xerces-C</a> XML library. </p>
<p>I have this simple example I'm playing with.</p>
<p>I can't seem to get it to run without leaking memory and without segfaulting.
It's one or the other. </p>
<p>The segfault always occurs when I delete the parser object under "Clean up". </p>
<p>I've tried using both the 2.8 & 2.7 versions of the library. </p>
<p><strong>Note:</strong> I took all of the exception checking out of the code, I get the same results with it and without it. For readability and simplicity I removed it from the code below. </p>
<p><strong>Any Xerces-savvy people out there care to make some suggestions?</strong> </p>
<p>I can't really tell much from the back trace, it's just jumping down into the superclass destructor and segfaulting there. </p>
<p><strong>Backtrace:</strong></p>
<pre><code>(gdb) bt
#0 0x9618ae42 in __kill ()
#1 0x9618ae34 in kill$UNIX2003 ()
#2 0x961fd23a in raise ()
#3 0x96209679 in abort ()
#4 0x95c5c005 in __gnu_cxx::__verbose_terminate_handler ()
#5 0x95c5a10c in __gxx_personality_v0 ()
#6 0x95c5a14b in std::terminate ()
#7 0x95c5a6da in __cxa_pure_virtual ()
#8 0x003e923e in xercesc_2_8::AbstractDOMParser::cleanUp ()
#9 0x003ead2a in xercesc_2_8::AbstractDOMParser::~AbstractDOMParser ()
#10 0x0057022d in xercesc_2_8::XercesDOMParser::~XercesDOMParser ()
#11 0x000026c9 in main (argc=2, argv=0xbffff460) at test.C:77
</code></pre>
<p><strong>The code:</strong></p>
<pre><code>#include <string>
#include <vector>
#if defined(XERCES_NEW_IOSTREAMS)
#include <iostream>
#else
#include <iostream.h>
#endif
#include <xercesc/dom/DOM.hpp>
#include <xercesc/dom/DOMDocument.hpp>
#include <xercesc/dom/DOMElement.hpp>
#include <xercesc/dom/DOMImplementation.hpp>
#include <xercesc/parsers/XercesDOMParser.hpp>
#include <xercesc/util/XMLString.hpp>
#include <xercesc/util/PlatformUtils.hpp>
#include <xercesc/sax/HandlerBase.hpp>
#include <xercesc/util/OutOfMemoryException.hpp>
#include <xercesc/framework/MemBufInputSource.hpp>
using namespace std;
XERCES_CPP_NAMESPACE_USE
int main(int argc, char const* argv[])
{
string skXmlMetadata = "<?xml version=\"1.0\"?>\n <xmlMetadata>b</xmlMetadata>";
XMLPlatformUtils::Initialize();
XercesDOMParser* xmlParser = NULL;
DOMWriter* xmlWriter = NULL;
ErrorHandler* errHandler = NULL;
const XMLByte* xmlBuf = NULL;
MemBufInputSource* memBufIS = NULL;
DOMNode* xmlDoc = NULL;
xmlParser = new XercesDOMParser();
xmlParser->setValidationScheme( XercesDOMParser::Val_Never );
xmlParser->setDoNamespaces( false );
xmlParser->setDoSchema( false );
xmlParser->setLoadExternalDTD( false );
errHandler = (ErrorHandler*) new HandlerBase();
xmlParser->setErrorHandler( errHandler );
// Create buffer for current xmlMetadata
xmlBuf = (const XMLByte*) skXmlMetadata.c_str();
const char* bufID = "XmlMetadata";
memBufIS = new MemBufInputSource( xmlBuf, skXmlMetadata.length(), bufID, false );
// Parse
xmlParser->resetErrors();
xmlParser->parse( *memBufIS );
xmlDoc = xmlParser->getDocument();
// Write created xml to input SkArray
XMLCh* metadata = NULL;
xmlWriter = DOMImplementation::getImplementation()->createDOMWriter();
xmlWriter->setFeature( XMLUni::fgDOMWRTFormatPrettyPrint, true );
metadata = xmlWriter->writeToString( *xmlDoc );
xmlWriter->release();
// Print out our parsed document
char* xmlMetadata = XMLString::transcode( metadata );
string c = xmlMetadata;
cout << c << endl;
// Clean up
XMLString::release( &xmlMetadata );
xmlDoc->release();
delete xmlParser; // Dies here
delete memBufIS;
delete errHandler;
XMLPlatformUtils::Terminate();
return 0;
}
</code></pre>
http://stackoverflow.com/questions/953163/disable-gcc-warning-for-incompatible-options0Disable gcc warning for incompatible options. Brian Gianforcaro2009-06-04T21:18:04Z2009-06-05T06:50:56Z
<p>I'm curious if there is an option to disable gcc warnings about a parameter not being valid for the language being compiled. </p>
<p>Ex:</p>
<pre><code>cc1: warning: command line option "-Wno-deprecated" is valid for C++/Java/ObjC++ but not for C
</code></pre>
<p>Our build system passes the warnings we have decided on globally across a build.
We have both C/C++ code and the warnings get real annoying when trying to find actual warnings. </p>
<p>Any suggestions? </p>
http://stackoverflow.com/questions/930944/modifying-alpha-state-when-using-glcalllist-in-opengl0Modifying alpha state when using glCallList in OpenGL.Brian Gianforcaro2009-05-31T00:30:39Z2009-06-03T17:33:39Z
<p>A OpenGL App I've written acts as a viewer for large data files in a propriety format.</p>
<p>It's pretty simple, it loops through each data set one at a time, drawing each one using a glCallList:</p>
<pre><code>for (all objects in our in our data set)
{
if (first time drawing this object)
{
glNewList(...);
for (all pixels in object_memory)
{
drawpixel();
}
glEndList();
glCallList(...);
delete object_memory
}
else
{
glCallList(...);
}
}
</code></pre>
<p>I'm trying to add a feature where I can change the transparency of an individual glCallList.
The problem is, the data files are so big that I generate the glCallList and then have to delete the actual data I read from. This brings the memory usage down from <strong>4GB</strong> to around <strong>400MB</strong>.
The use of glCallLists are pretty vital to the speed of the application also, without them it slows to a crawl.</p>
<p><strong>Is there a way I can modify the global transparency of the current matrix before I actually call the list?</strong></p>
<p>Updating the list each time the alpha value needs to be updated isn't an option.</p>
<p><strong>Alternatively is there another method that has the same performance benefits of CallLists but can be updated easily?</strong> </p>
<p>I've read about VBO's (Vertex Buffer Objects) before and they sound similar but i'm not sure if my data fit's there application domain correctly. </p>
<p>Any thoughts or opinions would be really appriciated.</p>
<p>Thanks, </p>
<p>~ Brian </p>
http://stackoverflow.com/questions/931301/which-is-more-readable-c/931317#9313172Answer by Brian Gianforcaro for Which is more readable (C++ = )Brian Gianforcaro2009-05-31T04:57:05Z2009-05-31T04:57:05Z<p>The first example is more readable purely on the basis that your brain doesn't have to decipher the pointer operations globed together. </p>
<p>This will reduce the time a developer looking at the code for the first time needs to understand what's actually going. In my experience this loosely correlates to reducing the probability of introducing new bugs. </p>
http://stackoverflow.com/questions/1760679/world-of-warcraft-architecture/1760737#1760737Comment by Brian Gianforcaro on World of Warcraft ArchitectureBrian Gianforcaro2009-11-19T03:41:26Z2009-11-19T03:41:26ZI was just looking for this, cool article. http://stackoverflow.com/questions/1664626/terminal-sudo-command/1664635#1664635Comment by Brian Gianforcaro on terminal sudo commandBrian Gianforcaro2009-11-03T02:34:28Z2009-11-03T02:34:28Z@davr, I was assuming he just added the file extension .rtf and that it wasn't a rich text formatted file. Thanks for the down vote, I appreciate it. http://stackoverflow.com/questions/1656112/shortest-total-path-among-set-of-latitude-longitudes/1656186#1656186Comment by Brian Gianforcaro on Shortest total path among set of Latitude/Longitudes Brian Gianforcaro2009-11-01T03:30:34Z2009-11-01T03:30:34Z@THC4k I know that wasn't the question at all, but that comment just totally let me finish my code in the easiest simplest way. I already had TSP solved with the closed path. Thanks!http://stackoverflow.com/questions/1656112/shortest-total-path-among-set-of-latitude-longitudes/1656171#1656171Comment by Brian Gianforcaro on Shortest total path among set of Latitude/Longitudes Brian Gianforcaro2009-11-01T02:12:52Z2009-11-01T02:12:52ZIt's TSP without the stipulation of ending where you started, so you should in theory get a much shorter total distance. http://stackoverflow.com/questions/1641706/as-a-future-game-developer-5-6ish-years-from-now-would-i-still-be-using-cComment by Brian Gianforcaro on As a future game developer (5-6ish years from now), would I still be using C++Brian Gianforcaro2009-10-29T05:05:44Z2009-10-29T05:05:44ZAlthough it is a useful talent, most developers don't have the ability to predict the future. http://stackoverflow.com/questions/1592345/do-you-know-a-good-and-efficient-fft/1592500#1592500Comment by Brian Gianforcaro on Do you know a good and efficient FFT?Brian Gianforcaro2009-10-20T04:54:30Z2009-10-20T04:54:30ZIt does use shared memory FYI, you can't safely run it in parallel. not really sure if this is an issue on the iphone or not (probably not?)http://stackoverflow.com/questions/1564818/how-to-break-2-loops-in-javascript/1564838#1564838Comment by Brian Gianforcaro on How to break 2 loops in javascript?Brian Gianforcaro2009-10-14T07:56:21Z2009-10-14T07:56:21ZHow is it ugly at all? it's powerful and elegant. http://stackoverflow.com/questions/1564818/how-to-break-2-loops-in-javascript/1564838#1564838Comment by Brian Gianforcaro on How to break 2 loops in javascript?Brian Gianforcaro2009-10-14T07:51:04Z2009-10-14T07:51:04Z@Aaron, JavaScript has labels also.http://stackoverflow.com/questions/1451153/c-templates-error/1451167#1451167Comment by Brian Gianforcaro on C++ Templates ErrorBrian Gianforcaro2009-09-20T14:40:23Z2009-09-20T14:40:23ZNot true, you just have to declare what types you want you template class to be defined for in your .C file. http://stackoverflow.com/questions/1418322/how-does-the-term-pythonic-advance-our-understanding-of-programming-in-any-usefComment by Brian Gianforcaro on How does the term "Pythonic" advance our understanding of programming in any useful way?Brian Gianforcaro2009-09-13T18:07:13Z2009-09-13T18:07:13ZFortran, Java, COBOL are more strict in the way's you write programs. Haskell is a functional programming language, automatically giving you many automatic way's of describing a program. Python is a multi-paradim language. You can write the same program in many different way's. All these solutions might not be the most optimal. I usually view the "Pythonic" solution to a problem to be the most elegant and robust solution given all the tools available in python. http://stackoverflow.com/questions/1368563/how-can-i-use-the-unix-shell-to-count-the-number-of-times-a-letter-appears-in-a-t/1368587#1368587Comment by Brian Gianforcaro on How can I use the UNIX shell to count the number of times a letter appears in a text file?Brian Gianforcaro2009-09-02T16:06:10Z2009-09-02T16:06:10ZMy apologizes, It did work quite well. http://stackoverflow.com/questions/1368563/how-can-i-use-the-unix-shell-to-count-the-number-of-times-a-letter-appears-in-a-t/1368587#1368587Comment by Brian Gianforcaro on How can I use the UNIX shell to count the number of times a letter appears in a text file?Brian Gianforcaro2009-09-02T16:01:53Z2009-09-02T16:01:53ZWon't this just count one occurrence per line. So if the char appears twice it will only be counted once. http://stackoverflow.com/questions/1344908/git-gui-stage-everything/1344921#1344921Comment by Brian Gianforcaro on Git GUI.. stage everythingBrian Gianforcaro2009-08-28T03:48:26Z2009-08-28T03:48:26ZHow does this answer the OP's question?http://stackoverflow.com/questions/1319331/get-clients-ip-address-in-sinatra/1319357#1319357Comment by Brian Gianforcaro on Get client's IP address in Sinatra?Brian Gianforcaro2009-08-23T20:57:59Z2009-08-23T20:57:59Zyou should be able to just do #{ @env['HTTP_X_FORWARDED_FOR'] } I have never tested this though, so I'm not positive. http://stackoverflow.com/questions/1319236/integer-value-of-a-string/1319242#1319242Comment by Brian Gianforcaro on integer value of a stringBrian Gianforcaro2009-08-23T19:24:13Z2009-08-23T19:24:13ZI updated the answer with what I think you are trying to do?