User AndrewR - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T19:15:28Zhttp://stackoverflow.com/feeds/user/2994http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1622411/is-there-a-reliable-way-to-determine-if-a-pdf-was-generated-from-a-powerpoint-fil2Is there a reliable way to determine if a PDF was generated from a Powerpoint file?AndrewR2009-10-25T23:07:46Z2009-12-04T14:32:39Z
<p>Like the title says. Reason I ask is that we're converting PDFs to formatted ASCII text (using pdftotext) and only want to display the ones that look reasonably sane.</p>
<p>PPT files tend to have text over images, diagonal text and others things that don't translate to ASCII very well, so we'd like to filter them out if we can.</p>
http://stackoverflow.com/questions/1801050/is-there-a-way-to-view-the-actual-xml-produced-and-received-by-the-xmlrpc-c-libra0Is there a way to view the actual XML produced and received by the xmlrpc-c library?AndrewR2009-11-26T01:15:53Z2009-11-30T11:38:32Z
<p>I've got a system where some C++ code (using xmlrpc-c) talks to a Java servlet which uses the Apache XML-RPC library.</p>
<p>I've got a problem that would be a whole lot easier to resolve if I could view the actual XML being sent back and forth. Is there some way to turn on logging of the wire protocol XML in either Apache XMLRPC or xmlrpc-c?</p>
http://stackoverflow.com/questions/1802059/why-does-this-pointer-to-c-function-code-generate-a-compile-error0Why does this pointer to C++ function code generate a compile error?AndrewR2009-11-26T07:24:13Z2009-11-26T13:35:12Z
<p>Can anyone solve this? I can’t seem to find the solution anywhere, but I see no logical reason why the line below (with the comment showing the compile error) should be a problem. </p>
<p><strong>Note</strong>: This question is a derivative of <a href="http://stackoverflow.com/questions/1801949/how-can-a-c-base-class-determine-at-runtime-if-a-method-has-been-overridden">How can a C++ base class determine at runtime if a method has been overridden?</a></p>
<pre><code>class MyClass
{
typedef void (MyClass::*MethodPtr)();
virtual void Method()
{
MethodPtr a = &MyClass::Method; // legal
MethodPtr b = &Method; // error C2276: ‘&’ : illegal operation on bound member function expression
if (a == b) // this method has not been overridden?
throw “Not overridden”;
}
};
</code></pre>
http://stackoverflow.com/questions/1801050/is-there-a-way-to-view-the-actual-xml-produced-and-received-by-the-xmlrpc-c-libra/1801250#18012500Answer by AndrewR for Is there a way to view the actual XML produced and received by the xmlrpc-c library?AndrewR2009-11-26T02:30:36Z2009-11-26T02:51:22Z<p>I've found a way to do it on the C++ side. If you define the environment variable <code>XMLRPC_TRACE_XML</code> before running your xmlrpc-c code, it logs all XML received and sent and sends it to stderr.</p>
<p>See <a href="http://xmlrpc-c.sourceforge.net/doc/libxmlrpc%5Fserver++.html#trace%5Fxml" rel="nofollow">The xmlrpc-c docs</a> for details.</p>
http://stackoverflow.com/questions/1620707/what-has-been-your-greatest-programming-revelation/1622390#16223903Answer by AndrewR for What has been your greatest programming revelation?AndrewR2009-10-25T23:01:22Z2009-10-25T23:01:22Z<ol>
<li>When I realised that a pointer isn't an arrow, it's a number.</li>
<li>When I realised how learning a new language affects how you program in the ones you already know (for example, learning Perl made me start thinking about C++ problems in terms of regular expressions and maps).</li>
</ol>
http://stackoverflow.com/questions/1016910/how-can-i-strip-invalid-xml-characters-from-strings-in-perl4How can I strip invalid XML characters from strings in Perl?AndrewR2009-06-19T08:31:17Z2009-09-25T13:34:42Z
<p>I'm looking for what the standard, approved, and robust way of stripping invalid characters from strings before writing them to an XML file. I'm talking here about blocks of text containing backspace (^H) and formfeed characters etc.</p>
<p>There <em>has</em> to be a standard library/module function for doing this but I can't find it.</p>
<p>I'm using <a href="http://search.cpan.org/dist/XML-LibXML" rel="nofollow">XML::LibXML</a> to build a DOM tree that I then serialize to disk.</p>
http://stackoverflow.com/questions/1356188/do-scripters-have-to-consider-roundoff-error/1356206#13562060Answer by AndrewR for Do scripters have to consider roundoff error?AndrewR2009-08-31T07:14:40Z2009-08-31T07:14:40Z<p>Well, you're not immune to floating point errors in Ruby. For example:</p>
<pre><code>irb(main):033:0> (2.01 * 1000).to_i
=> 2009
irb(main):034:0> ((2.01 * 1000.0) + 0.5).floor
=> 2010
</code></pre>
http://stackoverflow.com/questions/933959/apache-is-incorrectly-converting-jsp-pages-to-text-plain1Apache is incorrectly converting jsp pages to "text/plain"AndrewR2009-06-01T08:20:53Z2009-08-26T19:29:55Z
<p>I've got a fairly normal setup in which Apache proxies requests to a servlet running inside Tomcat over the AJP protocol. </p>
<p>We've run this setup on Apache 2.0.46/Tomcat 5.0.28 for ages without problems but have recently updated to Apache 2.2.3/Tomcat 5.5.</p>
<p>The problem is that we've noticed that intermittently (maybe one time in 3) Apache will somehow convert the "Content-Type" HTTP header of a page served by the servlet from "text/html" to "text/plain", which results in the browser displaying the HTML source instead of rendering it.</p>
<p>Has anyone seen this sort of behavior before and know what might be the cause? I suspect we're doing something bad in our servlet code that the old version of Tomcat/Apache was more forgiving of.</p>
<p><strong>Update</strong>: I have confirmed that it's Apache changing the headers. If I browse directly to Tomcat the problem doesn't occur.</p>
http://stackoverflow.com/questions/488089/extracting-tables-from-pdf-files/1222257#12222570Answer by AndrewR for Extracting tables from PDF files?AndrewR2009-08-03T13:07:03Z2009-08-03T13:07:03Z<p>As I understand it, there is no such thing as a table in a PDF document (in the HTML markup sense), just a collection of line and text primitives laid out to look like a table. I've seen some tools that attempt to heuristically discover tables in the text but I doubt it's foolproof.</p>
<p>See:</p>
<ul>
<li><a href="http://forums.adobe.com/thread/431402" rel="nofollow">http://forums.adobe.com/thread/431402</a></li>
<li><a href="http://ieg.ifs.tuwien.ac.at/pub/yildiz_iicai_2005.pdf" rel="nofollow">http://ieg.ifs.tuwien.ac.at/pub/yildiz_iicai_2005.pdf</a></li>
</ul>
http://stackoverflow.com/questions/1066917/converting-pdf-to-formatted-ascii-whats-the-state-of-the-art0converting PDF to formatted ASCII - what's the state of the art?AndrewR2009-07-01T01:36:20Z2009-07-01T13:39:48Z
<p>I'm looking for a utility or library for extracting text from PDFs and formatting it in plain text while keeping as much of the original layout as possible (eg tables, columns etc.).</p>
<p>We're currently using pdftotext but I was wondering if there's anything better. It has to be a command-line tool or a library we can link into our app.</p>
<p>Is pdftotext as good as it gets, or is there something better?</p>
http://stackoverflow.com/questions/933959/apache-is-incorrectly-converting-jsp-pages-to-text-plain/937708#9377080Answer by AndrewR for Apache is incorrectly converting jsp pages to "text/plain"AndrewR2009-06-02T02:40:58Z2009-06-02T02:40:58Z<p>Ok. I figured it out, it was a bug in the servlet code:</p>
<p>We were doing something like this to write serialized Java objects as the result of HTTP requests:</p>
<pre><code>DeflaterOutputStream dos = new DeflaterOutputStream(response.getOutputStream());
ObjectOutputStream oos = new ObjectOutputStream(dos);
response.setContentType("application/x-java-serialized-object");
oos.writeObject(someObject);
</code></pre>
<p>What seemed to be happening was that the <code>DeflaterOutputStream</code> and <code>ObjectOutputStream</code> would get garbage-collected three or four requests later when they were still attached to the response object's output stream and this would cause something to happen on the stream that confused Apache and caused it to rewrite the headers.</p>
<p>I replaced the above with:</p>
<pre><code>ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
DeflaterOutputStream dos = new DeflaterOutputStream(byteStream);
oos = new ObjectOutputStream(dos);
response.setContentType("application/x-java-serialized-object");
oos.writeObject(someObject);
oos.flush();
dos.finish();
byteStream.writeTo(response.getOutputStream());
</code></pre>
<p>and the problem has gone away.</p>
<p>The following links seem to describe a similar problem:</p>
<ul>
<li><a href="http://markmail.org/message/btwcnbl2i7ftwj4n#query:apache%20ajp%20changes%20Content-Type%2Bpage:1%2Bmid:btwcnbl2i7ftwj4n%2Bstate:results" rel="nofollow">AJP Flush Packet causing text/plain</a></li>
<li><a href="https://issues.apache.org/bugzilla/show%5Fbug.cgi?id=43478" rel="nofollow">ASF Bugzilla – Bug 43478</a></li>
</ul>
http://stackoverflow.com/questions/833291/is-there-an-equivalent-to-winapis-maxpath-under-linux-unix3Is there an equivalent to WinAPI's MAX_PATH under linux/unix?AndrewR2009-05-07T07:16:35Z2009-05-08T01:30:34Z
<p>If I want to allocate a char array (in C) that is guaranteed to be large enough to hold any valid absolute path+filename, how big does it need to be. </p>
<p>On Win32, there is the MAX_PATH define. What is the equivalent for Unix/linux?</p>
http://stackoverflow.com/questions/833291/is-there-an-equivalent-to-winapis-maxpath-under-linux-unix/833299#8332995Answer by AndrewR for Is there an equivalent to WinAPI's MAX_PATH under linux/unix?AndrewR2009-05-07T07:19:09Z2009-05-07T23:29:00Z<p>Well, on Linux at least, there is:</p>
<ul>
<li><p><code>PATH_MAX</code> (defined in <code>limits.h</code>)</p></li>
<li><p><code>FILENAME_MAX</code> (defined in <code>stdio.h</code>)</p></li>
</ul>
<p>both of these are set to <code>4096</code> on my system (x86 Linux).</p>
<p><strong>Update:</strong> : <a href="http://www.gnu.org/software/libc/manual/html%5Fmono/libc.html#Limits-for-Files" rel="nofollow">Some info from the glibc manual on this</a> </p>
<blockquote>
<p>Each of the following macros is defined in limits.h only if the system has a fixed, uniform limit for the parameter in question. If the system allows different file systems or files to have different limits, then the macro is undefined; use pathconf or fpathconf to find out the limit that applies to a particular file</p>
</blockquote>
http://stackoverflow.com/questions/307503/whats-the-best-way-to-check-that-environment-variables-are-set-in-unix-shellscri4What's the best way to check that environment variables are set in Unix shellscriptAndrewR2008-11-21T01:11:27Z2009-04-08T18:31:58Z
<p>I've got a few Unix shell scripts where I need to check that certain environment variables are set before I start doing stuff, so I do this sort of thing:</p>
<pre><code>if [ -z "$STATE" ]; then
echo "Need to set STATE"
exit 1
fi
if [ -z "$DEST" ]; then
echo "Need to set DEST"
exit 1
fi
</code></pre>
<p>which is a lot of typing. Is there a more elegant idiom for checking that a set of environment variables is set?</p>
<p>EDIT: I should mention that these variables have no meaningful default value - the script should error out if any are unset.</p>
http://stackoverflow.com/questions/696117/what-happens-when-you-close-a-c-console-application/696138#6961385Answer by AndrewR for What happens when you close a c++ console applicationAndrewR2009-03-30T06:08:04Z2009-03-30T06:08:04Z<p>I imagine that the console process just gets unceremoniously killed by the OS. If you want to trap this event and do something it looks like the <a href="http://msdn.microsoft.com/en-us/library/ms686016%28VS.85%29.aspx" rel="nofollow">SetConsoleCtrlHandler</a> function is the way to do it.</p>
<p>See also:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/181413/how-to-handle-a-ctrl-break-signal-in-a-command-line-interface">How to handle a ctrl-break signal in a command line interface</a></li>
<li><a href="http://www.codeproject.com/KB/winsdk/console%5Fevent%5Fhandling.aspx?display=PrintAll" rel="nofollow">Console Event Handling</a></li>
</ul>
http://stackoverflow.com/questions/666979/how-can-my-system-docs-be-more-interactive/672359#6723591Answer by AndrewR for How can my system docs be more interactive?AndrewR2009-03-23T06:07:45Z2009-03-30T05:58:16Z<p>If you just wanted to have a flowchart/stat-machine thing where the user moves from the start point to a set of possible solutions by answering questions, then you could probably implement this as a set of wiki pages, where the possible responses to questions on one page are links to other pages.</p>
<p>This solution relies on being able to represent the answers to questions as links, which isn't going to work if the information is more form-like. For example, suppose one question is "What brand of graphics card do you have?" where the answer is one of 300 possible options. In this case it's going to be tiresome to create the links :)</p>
http://stackoverflow.com/questions/525625/reading-into-arrays-in-c/672400#6724000Answer by AndrewR for Reading into arrays in C++AndrewR2009-03-23T06:34:13Z2009-03-23T06:34:13Z<p>Your loop starts with </p>
<pre><code>for ( int count3=( height-2 ); count3 >= 0; count3--)
{
....
}
</code></pre>
<p>If your input is a 1x1 array then (height-2) == -1 so the loop will never execute (since the condition (count3 >= 0) will never be true.</p>
http://stackoverflow.com/questions/460047/how-do-i-determine-if-a-directory-is-an-nfs-mount-point-in-shellscript/460061#4600613Answer by AndrewR for How do I determine if a directory is an NFS mount point in shellscriptAndrewR2009-01-20T03:39:52Z2009-02-12T22:48:45Z<p>This question is effectively a dup of <a href="http://stackoverflow.com/questions/296455/how-can-i-tell-if-a-file-is-on-a-remote-filesystem-with-perl">how-can-i-tell-if-a-file-is-on-a-remote-filesystem-with-perl</a></p>
<p>The short answer is to use the <code>stat</code> command</p>
<p>eg</p>
<pre><code>$ stat -f -L -c %T localdir
ext2/ext3
$ stat -f -L -c %T remotedir
nfs
</code></pre>
<p>Then a directory is an NFS mount point if its type is 'nfs' and its parent directory isn't.</p>
http://stackoverflow.com/questions/460047/how-do-i-determine-if-a-directory-is-an-nfs-mount-point-in-shellscript2How do I determine if a directory is an NFS mount point in shellscriptAndrewR2009-01-20T03:34:21Z2009-02-12T22:48:45Z
<p>I want to write a sh/bash script that can determine whether a particular directory is a mount point for an NFS filesystem. </p>
<p>eg something like</p>
<pre><code>$ mkdir localdir
$ mkdir remotedir
$ mount host:/share ./remotedir
$ classify_dirs.sh
--> localdir is local
--> remotedir is an NFS mount point
</code></pre>
http://stackoverflow.com/questions/540275/can-i-make-a-single-perl-module-act-as-multiple-kinds-of-modperl-handlers0Can I make a single Perl module act as multiple kinds of mod_perl handlers?AndrewR2009-02-12T06:33:00Z2009-02-12T13:40:26Z
<p>I'm writing a series of related mod_perl handlers for various login-related functions in Apache, so my Apache config file looks like this (for example)</p>
<pre><code>PerlAccessHandler MyApache::MyAccess
PerlAuthenHandler MyApache::MyAuthen
PerlAuthzHandler MyApache::MyAuthz
</code></pre>
<p>Each of the modules (<code>MyAccess</code>, <code>MyAuthen</code>, <code>MyAuthz</code>) defines a </p>
<pre><code>sub handler() {}
</code></pre>
<p>Which <code>mod_perl</code> calls at the relevant point in the processing of the request.</p>
<p>What I'd like to know is whether there is a way of doing this with one Perl module rather than three (it's just tidier and less work for users to install one module instead of 3)? </p>
<p>Is there some way to define the name of the handler method, perhaps. Or is there a way of detecting from within the <code>handler()</code> code which sort of handling I'm supposed to be doing?</p>
http://stackoverflow.com/questions/540275/can-i-make-a-single-perl-module-act-as-multiple-kinds-of-modperl-handlers/540312#5403121Answer by AndrewR for Can I make a single Perl module act as multiple kinds of mod_perl handlers?AndrewR2009-02-12T06:49:06Z2009-02-12T06:49:06Z<p>Looks like one possibility might be using the <code>push_handlers()</code> call and setting up the handlers in code rather than in the apache conf file</p>
<p>See here: <a href="http://tinyurl.com/bwdeew" rel="nofollow">http://tinyurl.com/bwdeew</a></p>
http://stackoverflow.com/questions/27743/how-do-i-gracefully-shut-down-a-mongrel-web-server3How do I gracefully shut down a Mongrel web serverAndrewR2008-08-26T10:59:50Z2009-02-05T19:21:19Z
<p>My RubyOnRails app is set up with the usual pack of mongrels behind Apache configuration. We've noticed that our Mongrel web server memory usage can grow quite large on certain operations and we'd really like to be able to dynamically do a graceful restart of selected Mongrel processes at any time.</p>
<p>However, for reasons I won't go into here it can sometimes be <em>very</em> important that we don't interrupt a Mongrel while it is servicing a request, so I assume a simple process kill isn't the answer.</p>
<p>Ideally, I want to send the Mongrel a signal that says "finish whatever you're doing and then quit before accepting any more connections".</p>
<p>Is there a standard technique or best practice for this?</p>
http://stackoverflow.com/questions/27743/how-do-i-gracefully-shut-down-a-mongrel-web-server/31556#3155610Answer by AndrewR for How do I gracefully shut down a Mongrel web serverAndrewR2008-08-28T02:38:06Z2009-01-27T06:29:12Z<p>I've done a little more investigation into the Mongrel source and it turns out that Mongrel installs a signal handler to catch an standard process kill (TERM) and do a graceful shutdown, so I don't need a special procedure after all.</p>
<p>You can see this working from the log output you get when killing a Mongrel while it's processing a request. For example:</p>
<pre><code>** TERM signal received.
Thu Aug 28 00:52:35 +0000 2008: Reaping 2 threads for slow workers because of 'shutdown'
Waiting for 2 requests to finish, could take 60 seconds.Thu Aug 28 00:52:41 +0000 2008: Reaping 2 threads for slow workers because of 'shutdown'
Waiting for 2 requests to finish, could take 60 seconds.Thu Aug 28 00:52:43 +0000 2008 (13051) Rendering layoutfalsecontent_typetext/htmlactionindex within layouts/application
</code></pre>
http://stackoverflow.com/questions/134202/whos-using-ruby-on-rails-in-production/136795#1367951Answer by AndrewR for Who's using Ruby on Rails in production?AndrewR2008-09-25T23:15:12Z2009-01-17T00:15:19Z<p>One from the Financial world: <a href="http://about.reuters.com/productinfo/compliance/MiFID/material/ReutersTCAS.pdf" rel="nofollow">http://about.reuters.com/productinfo/compliance/MiFID/material/ReutersTCAS.pdf</a></p>
<p><strong>Edit:</strong> In the interests of accuracy, I should mention that this app was discontinued on 31-Dec-2008 :)</p>
http://stackoverflow.com/questions/351582/how-can-i-discover-control-the-level-of-internal-buffering-in-a-c-fstream1How can I discover/control the level of internal buffering in a C++ fstream?AndrewR2008-12-09T02:14:01Z2008-12-09T02:56:33Z
<p>Say I do this (a contrived example):</p>
<pre><code>#include <iostream>
#include <fstream>
using namespace std;
int main(int argc, char* argv[])
{
ifstream ifs(argv[1]);
char ch;
while(ifs.read(&ch, 1)) {
cout << ch;
}
}
</code></pre>
<p>I assume(hope) that the iostream library does some internal buffering here and doesn't turn this into gazillions of one-byte file-read operations at the OS level.</p>
<p>Is there a way of:</p>
<p><strong>a)</strong> Finding out the size of ifstream's internal buffer?</p>
<p><strong>b)</strong> Changing the size of ifstream's internal buffer?</p>
<p>I'm writing a file filter that needs to read multi-gigabyte files in small chunks and I'd like to experiment with different buffer sizes to see if it affects performance.</p>
http://stackoverflow.com/questions/281101/mysql-and-c-applications/294919#2949190Answer by AndrewR for MySQL And C applicationsAndrewR2008-11-17T05:03:14Z2008-11-17T05:03:14Z<p>The following compile command-line worked for me to statically link the mysql client libs:</p>
<pre><code>gcc -I/usr/include/mysql -c mysql.c
gcc -o mysql mysql.o -static -lmysqlclient -static-libgcc -lm -lz -lpthread
</code></pre>
<p>However, I received the following warnings, which may or may not be a problem for you. It seems to be saying that there is a dependency on the target machine having the same glibc version as your build machine. </p>
<pre><code>/usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/libmysqlclient.a(mf_pack.o): In function `unpack_dirname':
(.text+0x6cc): warning: Using 'getpwnam' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/libmysqlclient.a(libmysql.o): In function `read_user_name':
(.text+0x5ed7): warning: Using 'getpwuid' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/libmysqlclient.a(mf_pack.o): In function `unpack_dirname':
(.text+0x6e1): warning: Using 'endpwent' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/libmysqlclient.a(my_gethostbyname.o): In function `my_gethostbyname_r':
(.text+0x3c): warning: Using 'gethostbyname_r' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/libmysqlclient.a(libmysql.o): In function `mysql_server_init':
(.text+0x695d): warning: Using 'getservbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
</code></pre>
http://stackoverflow.com/questions/276581/mysterious-mongrel-rails-crash/277185#2771851Answer by AndrewR for Mysterious Mongrel Rails crashAndrewR2008-11-10T06:14:40Z2008-11-10T06:14:40Z<p>My guess would be that it's dying when it drops from Ruby down into the Postgress C-library to talk to the database. Possible causes of this might be</p>
<ul>
<li>You've got the ruby-pg gem for a different OS or version somehow.</li>
<li>Your ruby-pg doesn't match the Postgres libs on your system.</li>
<li>Something else...</li>
</ul>
http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/270799#2707991Answer by AndrewR for What do project managers do all day?AndrewR2008-11-06T23:40:41Z2008-11-07T04:20:02Z<p>On any project someone needs to be thinking about</p>
<p><strong>1)</strong> What is the <em>complete</em> list of things that need to be done?</p>
<p><strong>2)</strong> At any point in the project: Roughly when will all the tasks be done?</p>
<p>On a small team of top-class developers this work can be informally spread amongst the team. As the size of the team or project grows (or the quality of the people goes down) there really needs to be a single person staying on top of this stuff or the project just won't get done in any reasonable time.</p>
<p>I think the mistake made on a lot of small/medium sized projects is to appoint a non-technical PM to do these tasks when the technical lead could be doing it more accurately and with less friction.</p>
http://stackoverflow.com/questions/264552/c-c-code-to-treat-a-character-array-as-a-bitstream3C/C++ Code to treat a character array as a bitstreamAndrewR2008-11-05T07:24:56Z2008-11-05T13:40:07Z
<p>I have a big lump of binary data in a char[] array which I need to interpret as an array of packed 6-bit values.</p>
<p>I <em>could</em> sit down and write some code to do this but I'm thinking there has to be a good extant class or function somebody has written already.</p>
<p>What I need is something like:</p>
<pre><code>int get_bits(char* data, unsigned bitOffset, unsigned numBits);
</code></pre>
<p>so I could get the 7th 6-bit character in the data by calling:</p>
<pre><code>const unsigned BITSIZE = 6;
char ch = static_cast<char>(get_bits(data, 7 * BITSIZE, BITSIZE));
</code></pre>
http://stackoverflow.com/questions/227172/what-should-i-use-for-a-ruby-development-environment-on-windows/227814#2278140Answer by AndrewR for What should I use for a Ruby development environment on Windows?AndrewR2008-10-22T22:45:48Z2008-10-22T22:45:48Z<p>There's also some ruby support in Intellij IDEA (<a href="http://www.jetbrains.com/idea/features/ruby_rails.html" rel="nofollow">http://www.jetbrains.com/idea/features/ruby_rails.html</a>). I haven't tried it but if it's as good as their Java integration it'll be well worth a look.</p>
<p>(Incidentally, this query is 3 hours old and no-one has mentioned Emacs yet - I'm shocked, I tell you, shocked!)</p>
http://stackoverflow.com/questions/1622411/is-there-a-reliable-way-to-determine-if-a-pdf-was-generated-from-a-powerpoint-fil/1814667#1814667Comment by AndrewR on Is there a reliable way to determine if a PDF was generated from a Powerpoint file?AndrewR2009-12-02T05:10:55Z2009-12-02T05:10:55ZI've also noticed that it seems to be quite common for the "Title" metadata field to start with "Microsoft Powerpoint" http://stackoverflow.com/questions/1622411/is-there-a-reliable-way-to-determine-if-a-pdf-was-generated-from-a-powerpoint-fil/1622477#1622477Comment by AndrewR on Is there a reliable way to determine if a PDF was generated from a Powerpoint file?AndrewR2009-10-25T23:32:46Z2009-10-25T23:32:46ZI quite agree, but the variable I left unstated in the above question is how much effort we want to expend on PDF analysis (answer: not much)http://stackoverflow.com/questions/1016910/how-can-i-strip-invalid-xml-characters-from-strings-in-perl/1017160#1017160Comment by AndrewR on How can I strip invalid XML characters from strings in Perl?AndrewR2009-06-19T12:43:39Z2009-06-19T12:43:39ZYep. This is pretty much what I ended up doing.http://stackoverflow.com/questions/1016910/how-can-i-strip-invalid-xml-characters-from-strings-in-perl/1017045#1017045Comment by AndrewR on How can I strip invalid XML characters from strings in Perl?AndrewR2009-06-19T09:23:19Z2009-06-19T09:23:19Z...which also strips linefeeds - so not very useful :)http://stackoverflow.com/questions/933959/apache-is-incorrectly-converting-jsp-pages-to-text-plain/935746#935746Comment by AndrewR on Apache is incorrectly converting jsp pages to "text/plain"AndrewR2009-06-01T23:29:12Z2009-06-01T23:29:12ZThe problem seems to affect any page in the app. http://stackoverflow.com/questions/833291/is-there-an-equivalent-to-winapis-maxpath-under-linux-unix/833299#833299Comment by AndrewR on Is there an equivalent to WinAPI's MAX_PATH under linux/unix?AndrewR2009-05-07T23:18:33Z2009-05-07T23:18:33ZI suppose the maximum could vary depending on the filesystem type you're using, which would imply a runtime check, not a compile-time constant.
http://stackoverflow.com/questions/696117/what-happens-when-you-close-a-c-console-applicationComment by AndrewR on What happens when you close a c++ console applicationAndrewR2009-04-01T02:29:30Z2009-04-01T02:29:30ZThe use of the phrase "console app" implies windows, as that's MS terminology for character mode apps.http://stackoverflow.com/questions/540275/can-i-make-a-single-perl-module-act-as-multiple-kinds-of-modperl-handlers/541259#541259Comment by AndrewR on Can I make a single Perl module act as multiple kinds of mod_perl handlers?AndrewR2009-02-16T10:43:32Z2009-02-16T10:43:32ZUsing the "...>access_handler" syntax works. Interestingly the handler gets passed two arguments (the second of which is the request object), unlike the handler() function, which only gets passed the request. http://stackoverflow.com/questions/386174/c-mysql-always-fails-connection/414096#414096Comment by AndrewR on C++ Mysql++, always fails connection!AndrewR2009-02-12T23:03:42Z2009-02-12T23:03:42ZWouldn't this result in an unnecessary creation of std::string objects when called with a string literal, eg db.Connect("127.0.0.1", "me", "passwd", "db") ? I'd make the parameters const char* in this case. http://stackoverflow.com/questions/27743/how-do-i-gracefully-shut-down-a-mongrel-web-server/31556#31556Comment by AndrewR on How do I gracefully shut down a Mongrel web serverAndrewR2009-01-27T06:31:12Z2009-01-27T06:31:12ZSeems you now can accept your own answer, so I havehttp://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/249148#249148Comment by AndrewR on Dealbreakers for new programming jobs?AndrewR2008-12-11T10:26:14Z2008-12-11T10:26:14ZIf a potential job contains one or more deal-breakers, then it is not "a good job"http://stackoverflow.com/questions/307503/whats-the-best-way-to-check-that-environment-variables-are-set-in-unix-shellscri/307735#307735Comment by AndrewR on What's the best way to check that environment variables are set in Unix shellscriptAndrewR2008-11-21T03:37:29Z2008-11-21T03:37:29ZThat's the thing I need. I've been using various versions of Unix since 1987 and I've never seen this syntax - just goes to show...
http://stackoverflow.com/questions/307503/whats-the-best-way-to-check-that-environment-variables-are-set-in-unix-shellscriComment by AndrewR on What's the best way to check that environment variables are set in Unix shellscriptAndrewR2008-11-21T02:16:05Z2008-11-21T02:16:05ZYour comment would be useful if it included a link
http://stackoverflow.com/questions/264552/c-c-code-to-treat-a-character-array-as-a-bitstream/264670#264670Comment by AndrewR on C/C++ Code to treat a character array as a bitstreamAndrewR2008-11-05T23:13:54Z2008-11-05T23:13:54ZThis did the trick. Thanks.http://stackoverflow.com/questions/264552/c-c-code-to-treat-a-character-array-as-a-bitstream/264574#264574Comment by AndrewR on C/C++ Code to treat a character array as a bitstreamAndrewR2008-11-05T23:13:10Z2008-11-05T23:13:10ZYeah, I considered that but I was hoping for something that would pack the bits back into an int when I got them out