User phihag - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:38:31Z http://stackoverflow.com/feeds/user/35070 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1777101/php-check-to-see-if-a-string-matches-a-pattern/1777111#1777111 3 Answer by phihag for PHP check to see if a string matches a pattern phihag 2009-11-21T23:13:44Z 2009-11-23T22:13:19Z <p>Use <a href="http://php.net/manual/en/function.preg-match.php" rel="nofollow">regular expressions</a>:</p> <pre><code>preg_match("[^,]+(,[^,]+){2}", $input) </code></pre> <p>This matches:</p> <pre><code>stack,over,flow I'm,not,sure </code></pre> <p>But not:</p> <pre><code>, asdf two,words four,or,more,words empty,word, </code></pre> http://stackoverflow.com/questions/1094157/ffmpeg-wmv-conversion-to-flv/1556733#1556733 0 Answer by phihag for FFMPEG wmv conversion to flv phihag 2009-10-12T20:30:34Z 2009-10-12T20:30:34Z <p>In ffmpeg, options must prefix the input file they relate to. Move <code>-ar 44100</code> to the front and it will work.</p> http://stackoverflow.com/questions/1221108/barchart-with-vertical-labels-in-python-matplotlib 3 Barchart with vertical labels in python/matplotlib phihag 2009-08-03T07:46:13Z 2009-08-14T20:25:41Z <p>I'm using matplotlib to generate a (vertical) barchart. The problem is my labels are rather long. Is there any way to display them vertically, either in the bar or above it or below it?</p> <p>Note: The best answer will get a 500 bounty.</p> http://stackoverflow.com/questions/1006289/how-to-find-out-the-number-of-cpus-in-python 7 How to find out the number of CPUs in python phihag 2009-06-17T10:41:44Z 2009-07-30T14:28:02Z <p>I want to know the number of CPUs on the local machine in Python. The result should be <code>user/real</code> as output by <code>time(1)</code> when called with an optimally scaling userspace-only program. I'd be interested in any better ways to solve that problem.</p> http://stackoverflow.com/questions/1130122/1x1049-in-decimal-how-binary-bits-is-that-and-how-would-you-convert-it-to-bina/1130137#1130137 4 Answer by phihag for 1x10^49 in decimal - how binary bits is that and how would you convert it to binary? phihag 2009-07-15T08:33:44Z 2009-07-15T12:43:01Z <p>Since every decimal digit conveys the same information as <code>lb 10</code> bits, any 50 digit number will fit into <code>ceil(lb(10)*50) = 167</code> bits.</p> <p>Specifically, it's not that hard to convert from decimal to binary, even by hand. Just divide by two, and put the modulus(1 if the last digit was odd, 0 if even) at the end of your binary result. If you need such high numbers in a program, just use your platform's big integer implementation, e.g. <code>BigInteger</code> in Java and just <code>int</code> in python. In the absence of that, look for a numerical library.</p> <p>Oh, and 10^49 in binary is 163 bit long:</p> <pre><code>110 1101 0111 1001 1111 1000 0010 0011 0010 1000 1110 1010 0011 1101 1010 0110 0001 1110 0000 0110 0110 1110 1011 1011 0010 1111 1000 1000 1010 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 </code></pre> http://stackoverflow.com/questions/1096794/is-sleep-evil/1096833#1096833 1 Answer by phihag for Is Sleep() evil? phihag 2009-07-08T08:34:30Z 2009-07-08T08:34:30Z <p>Sometimes, you do not want to refresh your display continually, for example in system or network monitors. Another example is watch(1) - how would you implement that without sleep?</p> http://stackoverflow.com/questions/1093112/is-there-a-way-to-make-internet-explorer-not-cache-a-particular-website/1093173#1093173 2 Answer by phihag for Is there a way to make Internet Explorer not cache a particular website? phihag 2009-07-07T15:52:24Z 2009-07-07T15:52:24Z <p>Set the following HTTP headers:</p> <pre><code>Cache-Control: no-cache Pragma: no-cache </code></pre> <p>The <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.1" rel="nofollow">first one</a> is for HTTP 1.1, the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.32" rel="nofollow">second one</a> for older clients.</p> http://stackoverflow.com/questions/1092989/regex-to-get-numbers-between-periods-in-ip-address/1093103#1093103 0 Answer by phihag for RegEx to get numbers between periods in IP address? phihag 2009-07-07T15:42:44Z 2009-07-07T15:42:44Z <p>While others have pointed out various good regexps; May I ask why you absolutely <em>must</em> use regular expressions for that? It will be slow and error-prone. Most platforms do have integrated IP address functionality, or provide a way to call to <code>inet_aton</code>.</p> http://stackoverflow.com/questions/1048133/learning-from-open-source-code/1048405#1048405 1 Answer by phihag for learning from open source code phihag 2009-06-26T10:34:40Z 2009-06-26T10:40:53Z <p>There is a one-stop-shop for finding open source code.</p> <p>It's called <a href="http://www.google.com/codesearch" rel="nofollow">google codesearch</a> and searches in lots of open source projects. To find code using a specific library, just search for the term you use to include it in code, for example <a href="http://www.google.com/codesearch?hl=en&amp;lr=&amp;q=%22%23include+%3Clibusb%22&amp;sbtn=Search" rel="nofollow">#include &lt;libusb.h&gt;</a> or <a href="http://www.google.com/codesearch?hl=en&amp;lr=&amp;q=%22import+ipaddr%22&amp;sbtn=Search" rel="nofollow">import ipaddr</a>.</p> http://stackoverflow.com/questions/1046474/python-subprocess-how-to-call-a-piped-command-in-windows/1046522#1046522 5 Answer by phihag for Python - Subprocess - How to call a Piped command in Windows? phihag 2009-06-25T22:18:50Z 2009-06-25T22:24:01Z <p>First and foremost, you don't actually need a pipe; you are just sending input. You can use <a href="http://docs.python.org/library/subprocess.html#subprocess.Popen.communicate" rel="nofollow">subprocess.communicate</a> for that.</p> <p>Secondly, don't specify the command as a string; that's messy as soon as filenames with spaces are involved.</p> <p>Thirdly, if you really wanted to execute a piped command, just call the shell. On Windows, I believe it's <code>cmd /c program name arguments | further stuff</code>.</p> <p>Finally, single back slashes can be dangerous: <code>"\p"</code> is <code>'\\p'</code>, but <code>'\n'</code> is a new line. Use <a href="http://docs.python.org/library/os.path.html#os.path.join" rel="nofollow">os.path.join()</a> or <a href="http://docs.python.org/library/os.html#os.sep" rel="nofollow">os.sep</a> or, if specified outside python, just a forward slash.</p> <pre><code>proc = subprocess.Popen( ['C:/Program Files/GNU/GnuPG/gpg.exe', '--batch', '--passphrase-fd', '0', '--output ', 'c:/docume~1/usi/locals~1/temp/tmptlbxka.txt', '--decrypt', 'test.txt.gpg',], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, ) stdout_value, stderr_value = proc.communicate('bosco') </code></pre> http://stackoverflow.com/questions/1044681/impossibility-of-a-1920x1200-dvi-usb-2-0-video-card/1044723#1044723 1 Answer by phihag for Impossibility of a 1920x1200 DVI USB 2.0 video card? phihag 2009-06-25T15:52:07Z 2009-06-25T15:52:07Z <p>USB 2.0 devices can theoretically transmit up to 480 MBit/s = 60 MB/s. At 50Hz and 24 Bit color depth, every pixel takes 150B/s, so the maximum width of a display of height 1200 is 60M/1200/150 ~= 333. Therefore, nearly all current USB devices have to cheat(lossy compression, low refresh rate) anyway just to achieve ~1000x1000.</p> http://stackoverflow.com/questions/1043506/error-when-trying-to-upload-file-in-php/1043520#1043520 1 Answer by phihag for Error when trying to upload file in PHP phihag 2009-06-25T11:56:24Z 2009-06-25T11:56:24Z <p>Interesting syntax in the last line. The error indicates the problem is in that line and either the source file or destination directory is missing. Since the first one is automatically generated, make sure that <code>C:\xampp\htdocs\vectorization\admin\upload</code> exists and is writable.</p> http://stackoverflow.com/questions/1035731/looking-for-an-ajax-or-php-trick-to-detect-if-they-have-javascript/1035754#1035754 7 Answer by phihag for Looking for an Ajax or PHP trick to detect if they have Javascript... phihag 2009-06-23T23:17:28Z 2009-06-24T22:16:30Z <p>What you can do is add code like this (no AJAX needed):</p> <pre><code>&lt;meta http-equiv="refresh" content="2;URL=/?nojs" /&gt; &lt;script type="text/javascript"&gt; window.location.href="/?js"; &lt;/script&gt; </code></pre> <p>However, <strong>you should not do that</strong>. Instead, serve the basic website every time, and decorate it with a <code>script</code> element that loads all the JavaScript that modifies and adds dynamic content.</p> http://stackoverflow.com/questions/1013850/how-to-get-number-of-sub-files-in-php/1013892#1013892 1 Answer by phihag for how to get number of sub files in PHP? phihag 2009-06-18T16:56:45Z 2009-06-18T17:41:54Z <pre><code>function count_files($path) { return count(array_diff(scandir($path), array(".", ".."))); } </code></pre> http://stackoverflow.com/questions/1006289/how-to-find-out-the-number-of-cpus-in-python/1006301#1006301 12 Answer by phihag for How to find out the number of CPUs in python phihag 2009-06-17T10:43:28Z 2009-06-18T06:31:57Z <pre><code>import os,re,subprocess def determineNumberOfCPUs(): """ Number of virtual or physical CPUs on this system, i.e. user/real as output by time(1) when called with an optimally scaling userspace-only program""" # Python 2.6+ try: import multiprocessing return multiprocessing.cpu_count() except (ImportError,NotImplementedError): pass # POSIX try: res = int(os.sysconf('SC_NPROCESSORS_ONLN')) if res &gt; 0: return res except (AttributeError,ValueError): pass # Windows try: res = int(os.environ['NUMBER_OF_PROCESSORS']) if res &gt; 0: return res except (KeyError, ValueError): pass # BSD try: sysctl = subprocess.Popen(['sysctl', '-n', 'hw.ncpu'], stdout=subprocess.PIPE) scStdout = sysctl.communicate()[0] res = int(scStdout) if res &gt; 0: return res except (OSError, ValueError): pass # Linux try: res = open('/proc/cpuinfo').read().count('processor\t:') if res &gt; 0: return res except IOError: pass # Solaris try: pseudoDevices = os.listdir('/devices/pseudo/') expr = re.compile('^cpuid@[0-9]+$') res = 0 for pd in pseudoDevices: if expr.match(pd) != None: res += 1 if res &gt; 0: return res except OSError: pass # Other UNIXes (heuristic) try: try: dmesg = open('/var/run/dmesg.boot').read() except IOError: dmesgProcess = subprocess.Popen(['dmesg'], stdout=subprocess.PIPE) dmesg = dmesgProcess.communicate()[0] res = 0 while '\ncpu' + str(res) + ':' in dmesg: res += 1 if res &gt; 0: return res except OSError: pass raise Exception('Can not determine number of CPUs on this system') </code></pre> http://stackoverflow.com/questions/1011061/file-reading-and-testable-code/1011085#1011085 3 Answer by phihag for File reading and testable code phihag 2009-06-18T06:24:38Z 2009-06-18T06:24:38Z <p>It's a design error not to provide a function that reads from an <code>InputStream</code> if all you do with the file is read it. Therefore, modify the function to take an <code>InputStream</code>, and provide a wrapper that takes a <code>File</code>. Using a <a href="http://java.sun.com/javase/6/docs/api/java/io/ByteArrayInputStream.html" rel="nofollow">ByteArrayInputStream</a> or a StringInputStream to test it is fine.</p> http://stackoverflow.com/questions/1011003/problem-with-xml-file-saving-using-curl-and-php/1011054#1011054 1 Answer by phihag for problem with xml file saving using curl and php phihag 2009-06-18T06:14:24Z 2009-06-18T06:14:24Z <p>Set <code>CURLOPT_RETURNTRANSFER</code> to <code>true</code>:</p> <pre><code>curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); </code></pre> <p>Why did you set it to 0 in the first place?</p> http://stackoverflow.com/questions/1010837/pros-cons-for-containers-for-child-nodes-in-xml/1010852#1010852 1 Answer by phihag for Pros/Cons for containers for child nodes in XML? phihag 2009-06-18T05:03:57Z 2009-06-18T05:17:38Z <p>The first scheme is extensible and not that hard to implement, you just iterate over all <code>childNodes</code> of <code>parent</code> and look whether namespace and element name match anything you can read. However, sometimes, splitting can be favorable, especially when the processing the <code>bars</code> depends on all <code>foos</code> or so.</p> <p>To borrow an example:</p> <pre><code>&lt;zoo xmlns="http://example.org/zoo" xmlns:z="http://example.org/zoo"&gt; &lt;cages&gt; &lt;cage name="open-air" /&gt; &lt;cage name="glass-cage" /&gt; &lt;/cages&gt; &lt;animals&gt; &lt;monkey name="Orlan" cage="open-air"/&gt; &lt;monkey name="Jeremey" cage="glass-cage"/&gt; &lt;snake name="spssshs" cage="glass-cage"/&gt; &lt;panda xmlns="http://china.cn/zoo" z:name="Ying Ying" z:cage="open-air"/&gt; &lt;/animals&gt; &lt;/zoo&gt; </code></pre> <p>So, separating <code>cages</code> and <code>animals</code> makes sense. However, if you had grouped the animals in monkeys and snakes, you would need to add lots of extra processing logic for pandas.</p> http://stackoverflow.com/questions/1006057/dumping-bits-bytes-to-a-file-in-binary-mode/1006075#1006075 0 Answer by phihag for Dumping bits/bytes to a file in binary mode phihag 2009-06-17T09:44:27Z 2009-06-17T09:44:27Z <p><code>0x3bcdf</code> are the 18 LSBits of <code>0xffafbcdf</code>, so it seems to be working as expected. What did you expect?</p> http://stackoverflow.com/questions/1006049/php-xml-parsing/1006063#1006063 2 Answer by phihag for php xml parsing phihag 2009-06-17T09:39:03Z 2009-06-17T09:39:03Z <p>Use any of php's XML modules, <a href="http://php.net/manual/en/simplexml.examples-basic.php" rel="nofollow">for example SimpleXML</a>.</p> http://stackoverflow.com/questions/1005972/what-is-the-easiest-way-to-see-if-a-process-with-a-given-pid-exists-in-python/1006030#1006030 0 Answer by phihag for What is the easiest way to see if a process with a given pid exists in Python? phihag 2009-06-17T09:27:09Z 2009-06-17T09:27:09Z <p>Look at <code>/proc/pid</code>. This exists only of the process is running, and contains lots of information.</p> http://stackoverflow.com/questions/1005678/how-can-i-take-snapshot-of-command-prompt-window-in-full-screen-mode/1005883#1005883 0 Answer by phihag for How can i take snapshot of command prompt window in full screen mode. phihag 2009-06-17T08:49:09Z 2009-06-17T08:49:09Z <p>n-p-r, but here's the trick: Load the program in a virtual instance of Windows, go fullscreen, and let the host operating system take the screenshot. Extravagantly if your Windows instance is not already virtualized, but it works.</p> http://stackoverflow.com/questions/1005807/use-hashset-over-arraylist-to-convey-intention/1005834#1005834 5 Answer by phihag for Use HashSet over ArrayList to Convey Intention? phihag 2009-06-17T08:39:21Z 2009-06-17T08:39:21Z <p>1) is totally bogus. Don't work around bugs, fix them. Therefore, use any <a href="http://java.sun.com/javase/6/docs/api/java/util/Set.html" rel="nofollow">Set</a> implementation if order doesn't matter, or <a href="http://java.sun.com/javase/6/docs/api/java/util/SortedSet.html" rel="nofollow">SortedSet</a> if order <strong>does</strong> matter. If elements don't have to be unique(and you should determine that now, and it usually should not ever change), feel free to use a <a href="http://java.sun.com/javase/6/docs/api/java/util/List.html" rel="nofollow">List</a>.</p> http://stackoverflow.com/questions/1004601/executing-a-dynamically-created-file/1004608#1004608 1 Answer by phihag for executing a dynamically created file phihag 2009-06-17T00:58:47Z 2009-06-17T00:58:47Z <p>Close the file before executing it (and don't redirect System.out):</p> <pre><code>f = new File("abc.txt"); FileOutputStream fos = new FileOutputStream(f); // You would likely use fos.write instead, but here we go PrintStream ps = new PrintStream(fos); ps.println("Hello\n"); fos.close(); Process p = Runtime.getRuntime().exec(f.getPath()); </code></pre> http://stackoverflow.com/questions/819355/how-can-i-check-if-an-ip-is-in-a-network-in-python/1004527#1004527 2 Answer by phihag for How can I check if an ip is in a network in python phihag 2009-06-17T00:15:35Z 2009-06-17T00:15:35Z <p>Using <a href="http://code.google.com/p/ipaddr-py/" rel="nofollow">ipaddr</a> (in the Python stdlib since Python2.7/3.1):</p> <pre><code>&gt;&gt;&gt; from ipaddr import IP &gt;&gt;&gt; IP('192.168.0.1') in IP('192.168.0.0/24') True </code></pre> http://stackoverflow.com/questions/1002150/apache2-access-restricted-to-local-lan/1002210#1002210 1 Answer by phihag for Apache2 access restricted to local LAN phihag 2009-06-16T15:22:41Z 2009-06-16T22:33:03Z <p>Belongs on <a href="http://serverfault.com" rel="nofollow">serverfault</a>, but whatever:</p> <p>The parameter(s) of <code>&lt;VirtualHost</code> are the local addresses you listen to, not the remote ones.</p> <p>You are looking for <a href="http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html" rel="nofollow">authz_host</a> configuration:</p> <pre><code>Order Allow,Deny allow from 127.0.0.0/8 allow from 192.168.0.0/16 </code></pre> http://stackoverflow.com/questions/1004069/php-class-function-not-working/1004106#1004106 0 Answer by phihag for PHP class function not working phihag 2009-06-16T21:43:17Z 2009-06-16T21:43:17Z <p>That is because your php script is erroneous. To catch such errors, you should run it on a debugging server (with <code>display_errors</code> set to <code>On</code>) or use other logging methods.</p> <p>However, the main problem is you are accessing object members the wrong way; there's no second dollar sign. Instead of</p> <pre><code>$this-&gt;$ssProductName = $ssProd; </code></pre> <p>use</p> <pre><code>$this-&gt;ssProductName = $ssProd; </code></pre> http://stackoverflow.com/questions/1003447/java-ada-big-endian-to-linux-little-endian-problems/1003509#1003509 1 Answer by phihag for Java / Ada Big Endian to Linux Little Endian problems. phihag 2009-06-16T19:28:05Z 2009-06-16T19:28:05Z <p>You don't need to rewrite anything. Just make sure you use network order (big endian, the way you naturally express numbers) on both sides. x86 uses little endian, so you have to look at the source code of any application failing on x86.</p> <p>Then, call htonl/htons/ntohl/ntohs (see <code>man 3 htonl</code>) or a similar function to convert every number you send/receive to the correct encoding in the portions of code that send/receive data. Java always uses network order, so you don't have to worry about native Java code.</p> http://stackoverflow.com/questions/996041/deleting-duplicate-lines-in-a-file-using-java/996110#996110 1 Answer by phihag for Deleting duplicate lines in a file using Java phihag 2009-06-15T13:26:08Z 2009-06-15T13:26:08Z <p>If the order does not matter, the <a href="http://bash.org/?6618" rel="nofollow">simplest way is shell scripting</a>:</p> <pre><code>&lt;infile sort | uniq &gt; outfile </code></pre> http://stackoverflow.com/questions/955117/curl-sending-get-instead-of-post/955528#955528 1 Answer by phihag for curl sending GET instead of POST phihag 2009-06-05T12:01:49Z 2009-06-05T12:01:49Z <p>The request is made from the server, and will not show up in Firebug. (You probably confused it with another request by your browser). Use <a href="http://www.wireshark.org/" rel="nofollow">wireshark</a> to find out what really happens. You are not setting <code>CURLOPT_FOLLOWLOCATION</code>; redirects should not be followed.</p> <p>Summarizing: Guess less, post more. Link to a pcap dump, and we will be able to tell exactly what you're doing wrong; or post the exact output of the php script, and we might.</p> http://stackoverflow.com/questions/1094157/ffmpeg-wmv-conversion-to-flv/1556733#1556733 Comment by phihag on FFMPEG wmv conversion to flv phihag 2009-10-27T19:28:00Z 2009-10-27T19:28:00Z @undefined yes, I stumbled over the same problem with a wmv file, found this stackoverflow question, solved it, and wrote it here a couple of days later http://stackoverflow.com/questions/1556613/php-output-buffering-sounds-like-a-bad-idea-is-it/1556669#1556669 Comment by phihag on PHP output buffering - sounds like a bad idea, is it? phihag 2009-10-12T20:33:33Z 2009-10-12T20:33:33Z @Aaron C, or ASM. PHP is such a flexible language that it is usually way slower than any other Desktop language, like C,C++,Java,C# etc. . However, compared to other scripting languages, it can still be pretty fast. http://stackoverflow.com/questions/1221108/barchart-with-vertical-labels-in-python-matplotlib/1221218#1221218 Comment by phihag on Barchart with vertical labels in python/matplotlib phihag 2009-08-03T18:22:40Z 2009-08-03T18:22:40Z Unless a better answer comes, you'll get the bounty, promise. I'll be without internet access until 2009-8-9 though :( http://stackoverflow.com/questions/1221108/barchart-with-vertical-labels-in-python-matplotlib/1221218#1221218 Comment by phihag on Barchart with vertical labels in python/matplotlib phihag 2009-08-03T16:40:04Z 2009-08-03T16:40:04Z @dalloliogm sounds good http://stackoverflow.com/questions/1221108/barchart-with-vertical-labels-in-python-matplotlib/1221218#1221218 Comment by phihag on Barchart with vertical labels in python/matplotlib phihag 2009-08-03T11:13:35Z 2009-08-03T11:13:35Z Note that I'm not using plot(); but bar(). But rotation='vertical' seems to be the key. However, this still doesn't draw the ticks in the bars. http://stackoverflow.com/questions/1006289/how-to-find-out-the-number-of-cpus-in-python/1006337#1006337 Comment by phihag on How to find out the number of CPUs in python phihag 2009-07-30T14:27:33Z 2009-07-30T14:27:33Z @Casey Yes, it does, using sysctl -n. http://stackoverflow.com/questions/1093112/is-there-a-way-to-make-internet-explorer-not-cache-a-particular-website/1093173#1093173 Comment by phihag on Is there a way to make Internet Explorer not cache a particular website? phihag 2009-07-10T00:50:23Z 2009-07-10T00:50:23Z @Corrine It's unlikely that IE has such a noticeable bug that has gone unnoticed so far. Are you sure you are sending the right headers? Please post a sample request and answer. Does the same behavior occur on a blank page without your code on it? On <a href="http://stackoverflow.com" rel="nofollow">stackoverflow.com</a>? If it does not and stackoverflow(or a demonstration page) works, just compare your headers and the ones that work. http://stackoverflow.com/questions/1049396/checkboxes-will-not-check-in-ie7-using-javascript-and-yet-no-errors Comment by phihag on Checkboxes will not check in IE7 using Javascript, and yet no errors phihag 2009-06-26T14:40:02Z 2009-06-26T14:40:02Z Proposing a new tag: whitespace-madness. Seriously, try to to indent using less than 113 spaces. http://stackoverflow.com/questions/1048371/online-high-scores-solution Comment by phihag on Online High Scores Solution phihag 2009-06-26T10:44:30Z 2009-06-26T10:44:30Z This site is for programmers, not users. You seem to be looking for <a href="http://www.rentacoder.com/" rel="nofollow">rentacoder.com</a> . http://stackoverflow.com/questions/1046540/apache-2-2-with-webstack-installation-help Comment by phihag on Apache 2.2 with Webstack installation help phihag 2009-06-25T22:26:54Z 2009-06-25T22:26:54Z Closed means &quot;The question should not have been asked in the first place&quot; here, not &quot;Found a solution&quot;. That's called Accepted on stackoverflow. http://stackoverflow.com/questions/1045220/libusb-1-0-and-ctypes-missing-symbol-that-should-be-there/1045769#1045769 Comment by phihag on libusb-1.0 and ctypes -- missing symbol that should be there phihag 2009-06-25T21:36:04Z 2009-06-25T21:36:04Z @Scott Does it show up on strings /usr/lib/libusb-1.0.so.0 | grep fill_bulk_transfer ? http://stackoverflow.com/questions/1043506/error-when-trying-to-upload-file-in-php/1043519#1043519 Comment by phihag on Error when trying to upload file in PHP phihag 2009-06-25T11:57:18Z 2009-06-25T11:57:18Z Windows' directory separators are \ and /, so that's not a problem. Generally, use DIRECTORY_SEPARATOR in php or just /. http://stackoverflow.com/questions/1043339/javascript-for-detecting-browser-language-preference/1043355#1043355 Comment by phihag on JavaScript for detecting browser language preference phihag 2009-06-25T11:51:34Z 2009-06-25T11:51:34Z @phoenix JavaScript, as specified in the first line and the tags. http://stackoverflow.com/questions/1035459/how-do-i-write-a-javascript-alert-box-to-give-a-yes-or-no-question-and-integrate Comment by phihag on how do i write a javascript alert box to give a yes or no question and integrate with php calls? (repost) phihag 2009-06-23T21:56:51Z 2009-06-23T21:56:51Z You didn't get any answers because your caps lock and punctuation keys were and are still broken. You might want to try to repair you keyword first. And please, don't repost. The way to resurrect a question here is to hand out a bounty. http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1026619#1026619 Comment by phihag on Hidden Features of TCL/TK phihag 2009-06-22T16:53:20Z 2009-06-22T16:53:20Z Great feature, although they seem to be ashamed of it: <a href="http://www.tcl.tk/man/tcl8.5/TclCmd/clock.htm#M58" rel="nofollow">tcl.tk/man/tcl8.5/TclCmd/clock.htm#M58</a> &quot;%Q This format group is reserved for internal use within the Tcl library.&quot;