User phihag - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T07:38:31Zhttp://stackoverflow.com/feeds/user/35070http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1777101/php-check-to-see-if-a-string-matches-a-pattern/1777111#17771113Answer by phihag for PHP check to see if a string matches a patternphihag2009-11-21T23:13:44Z2009-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#15567330Answer by phihag for FFMPEG wmv conversion to flvphihag2009-10-12T20:30:34Z2009-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-matplotlib3Barchart with vertical labels in python/matplotlibphihag2009-08-03T07:46:13Z2009-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-python7How to find out the number of CPUs in pythonphihag2009-06-17T10:41:44Z2009-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#11301374Answer by phihag for 1x10^49 in decimal - how binary bits is that and how would you convert it to binary?phihag2009-07-15T08:33:44Z2009-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#10968331Answer by phihag for Is Sleep() evil?phihag2009-07-08T08:34:30Z2009-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#10931732Answer by phihag for Is there a way to make Internet Explorer not cache a particular website?phihag2009-07-07T15:52:24Z2009-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#10931030Answer by phihag for RegEx to get numbers between periods in IP address? phihag2009-07-07T15:42:44Z2009-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#10484051Answer by phihag for learning from open source codephihag2009-06-26T10:34:40Z2009-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&lr=&q=%22%23include+%3Clibusb%22&sbtn=Search" rel="nofollow">#include <libusb.h></a> or <a href="http://www.google.com/codesearch?hl=en&lr=&q=%22import+ipaddr%22&sbtn=Search" rel="nofollow">import ipaddr</a>.</p>
http://stackoverflow.com/questions/1046474/python-subprocess-how-to-call-a-piped-command-in-windows/1046522#10465225Answer by phihag for Python - Subprocess - How to call a Piped command in Windows?phihag2009-06-25T22:18:50Z2009-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#10447231Answer by phihag for Impossibility of a 1920x1200 DVI USB 2.0 video card?phihag2009-06-25T15:52:07Z2009-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#10435201Answer by phihag for Error when trying to upload file in PHPphihag2009-06-25T11:56:24Z2009-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#10357547Answer by phihag for Looking for an Ajax or PHP trick to detect if they have Javascript...phihag2009-06-23T23:17:28Z2009-06-24T22:16:30Z<p>What you can do is add code like this (no AJAX needed):</p>
<pre><code><meta http-equiv="refresh" content="2;URL=/?nojs" />
<script type="text/javascript">
window.location.href="/?js";
</script>
</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#10138921Answer by phihag for how to get number of sub files in PHP?phihag2009-06-18T16:56:45Z2009-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#100630112Answer by phihag for How to find out the number of CPUs in pythonphihag2009-06-17T10:43:28Z2009-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 > 0:
return res
except (AttributeError,ValueError):
pass
# Windows
try:
res = int(os.environ['NUMBER_OF_PROCESSORS'])
if res > 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 > 0:
return res
except (OSError, ValueError):
pass
# Linux
try:
res = open('/proc/cpuinfo').read().count('processor\t:')
if res > 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 > 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 > 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#10110853Answer by phihag for File reading and testable codephihag2009-06-18T06:24:38Z2009-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#10110541Answer by phihag for problem with xml file saving using curl and phpphihag2009-06-18T06:14:24Z2009-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#10108521Answer by phihag for Pros/Cons for containers for child nodes in XML?phihag2009-06-18T05:03:57Z2009-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><zoo xmlns="http://example.org/zoo" xmlns:z="http://example.org/zoo">
<cages>
<cage name="open-air" />
<cage name="glass-cage" />
</cages>
<animals>
<monkey name="Orlan" cage="open-air"/>
<monkey name="Jeremey" cage="glass-cage"/>
<snake name="spssshs" cage="glass-cage"/>
<panda xmlns="http://china.cn/zoo" z:name="Ying Ying" z:cage="open-air"/>
</animals>
</zoo>
</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#10060750Answer by phihag for Dumping bits/bytes to a file in binary modephihag2009-06-17T09:44:27Z2009-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#10060632Answer by phihag for php xml parsingphihag2009-06-17T09:39:03Z2009-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#10060300Answer by phihag for What is the easiest way to see if a process with a given pid exists in Python?phihag2009-06-17T09:27:09Z2009-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#10058830Answer by phihag for How can i take snapshot of command prompt window in full screen mode.phihag2009-06-17T08:49:09Z2009-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#10058345Answer by phihag for Use HashSet over ArrayList to Convey Intention?phihag2009-06-17T08:39:21Z2009-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#10046081Answer by phihag for executing a dynamically created filephihag2009-06-17T00:58:47Z2009-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#10045272Answer by phihag for How can I check if an ip is in a network in pythonphihag2009-06-17T00:15:35Z2009-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>>>> from ipaddr import IP
>>> 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#10022101Answer by phihag for Apache2 access restricted to local LANphihag2009-06-16T15:22:41Z2009-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><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#10041060Answer by phihag for PHP class function not workingphihag2009-06-16T21:43:17Z2009-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->$ssProductName = $ssProd;
</code></pre>
<p>use</p>
<pre><code>$this->ssProductName = $ssProd;
</code></pre>
http://stackoverflow.com/questions/1003447/java-ada-big-endian-to-linux-little-endian-problems/1003509#10035091Answer by phihag for Java / Ada Big Endian to Linux Little Endian problems.phihag2009-06-16T19:28:05Z2009-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#9961101Answer by phihag for Deleting duplicate lines in a file using Javaphihag2009-06-15T13:26:08Z2009-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><infile sort | uniq > outfile
</code></pre>
http://stackoverflow.com/questions/955117/curl-sending-get-instead-of-post/955528#9555281Answer by phihag for curl sending GET instead of POSTphihag2009-06-05T12:01:49Z2009-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#1556733Comment by phihag on FFMPEG wmv conversion to flvphihag2009-10-27T19:28:00Z2009-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 laterhttp://stackoverflow.com/questions/1556613/php-output-buffering-sounds-like-a-bad-idea-is-it/1556669#1556669Comment by phihag on PHP output buffering - sounds like a bad idea, is it?phihag2009-10-12T20:33:33Z2009-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#1221218Comment by phihag on Barchart with vertical labels in python/matplotlibphihag2009-08-03T18:22:40Z2009-08-03T18:22:40ZUnless 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#1221218Comment by phihag on Barchart with vertical labels in python/matplotlibphihag2009-08-03T16:40:04Z2009-08-03T16:40:04Z@dalloliogm sounds goodhttp://stackoverflow.com/questions/1221108/barchart-with-vertical-labels-in-python-matplotlib/1221218#1221218Comment by phihag on Barchart with vertical labels in python/matplotlibphihag2009-08-03T11:13:35Z2009-08-03T11:13:35ZNote 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#1006337Comment by phihag on How to find out the number of CPUs in pythonphihag2009-07-30T14:27:33Z2009-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#1093173Comment by phihag on Is there a way to make Internet Explorer not cache a particular website?phihag2009-07-10T00:50:23Z2009-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-errorsComment by phihag on Checkboxes will not check in IE7 using Javascript, and yet no errorsphihag2009-06-26T14:40:02Z2009-06-26T14:40:02ZProposing a new tag: whitespace-madness. Seriously, try to to indent using less than 113 spaces.http://stackoverflow.com/questions/1048371/online-high-scores-solutionComment by phihag on Online High Scores Solutionphihag2009-06-26T10:44:30Z2009-06-26T10:44:30ZThis 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-helpComment by phihag on Apache 2.2 with Webstack installation helpphihag2009-06-25T22:26:54Z2009-06-25T22:26:54ZClosed means "The question should not have been asked in the first place" here, not "Found a solution". That's called Accepted on stackoverflow.http://stackoverflow.com/questions/1045220/libusb-1-0-and-ctypes-missing-symbol-that-should-be-there/1045769#1045769Comment by phihag on libusb-1.0 and ctypes -- missing symbol that should be therephihag2009-06-25T21:36:04Z2009-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#1043519Comment by phihag on Error when trying to upload file in PHPphihag2009-06-25T11:57:18Z2009-06-25T11:57:18ZWindows' 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#1043355Comment by phihag on JavaScript for detecting browser language preferencephihag2009-06-25T11:51:34Z2009-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-integrateComment by phihag on how do i write a javascript alert box to give a yes or no question and integrate with php calls? (repost)phihag2009-06-23T21:56:51Z2009-06-23T21:56:51ZYou 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#1026619Comment by phihag on Hidden Features of TCL/TKphihag2009-06-22T16:53:20Z2009-06-22T16:53:20ZGreat 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> "%Q This format group is reserved for internal use within the Tcl library."