User hendry - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T10:17:16Zhttp://stackoverflow.com/feeds/user/4534http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/453103/resources-for-building-public-information-displays-using-html-css/1697593#16975930Answer by hendry for Resources for building public information displays using HTML/CSS?hendry2009-11-08T19:17:08Z2009-11-08T19:17:08Z<p>Just build a Web site displaying information clearly. You could apply all the mobile best practices to the site. Since when you scale it, to a large screen, you have the same sort of legibility problems.</p>
<p>Another trick is to alter the CSS overflow property to prevent a scroll bar showing up.</p>
<p>I use <a href="http://webconverger.com" rel="nofollow">http://webconverger.com</a> for displaying signs using Web applications.</p>
http://stackoverflow.com/questions/1552372/firefox-minimal-build/1697579#16975790Answer by hendry for Firefox minimal buildhendry2009-11-08T19:13:35Z2009-11-08T19:13:35Z<p><a href="http://webconverger.com/" rel="nofollow">http://webconverger.com/</a> provides a minimalistic OS build featuring Firefox. There is also <a href="http://webconverger.org/develop/" rel="nofollow">build instructions</a> if you want to build your own customised images.</p>
http://stackoverflow.com/questions/1567106/how-to-determine-the-root-of-a-certificate0How to determine the root of a certificate?hendry2009-10-14T15:30:56Z2009-11-06T02:00:33Z
<p>My root certificates are stored as several files in ASN.1 format.</p>
<p>Assume I have a chained end entity certificate in the same format. How do I efficiently determine the root certificate of this certificate?</p>
<p>Currently I have to take a brute force approach which extracts the public key of the end entity certificate and validates that against all root certificates and the first match is considered the root certificate. Is this the right approach??</p>
http://stackoverflow.com/questions/600274/alternatives-to-autoconf-autotools/1551167#15511670Answer by hendry for Alternatives to autoconf / autotools?hendry2009-10-11T17:01:41Z2009-10-11T17:01:41Z<p>How about simply using <a href="http://www.gnu.org/software/make" rel="nofollow">Make</a> and <a href="http://pkg-config.freedesktop.org/wiki/" rel="nofollow">pkg-config</a>?</p>
<p>Here is a <a href="http://hg.suckless.org/surf/file/tip/Makefile" rel="nofollow">Makefile template</a> to get you started.</p>
<p>Less is more people.</p>
http://stackoverflow.com/questions/1137885/access-attributes-from-xml-in-shell0Access attributes from XML in shellhendry2009-07-16T14:11:43Z2009-08-26T02:51:09Z
<p>I'm trying to parse out values from a Widget <a href="http://dev.w3.org/2006/waf/widgets/#configuration-document" rel="nofollow">config.xml</a> using shell. I do want to use sed for this task. If there is something that <a href="http://suckless.org/" rel="nofollow">sucks less</a> than xsltproc, I'd love to know. </p>
<p>In this example I am after the <strong>id</strong> attribute value from the <code>config.xml</code> below:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" id="http://example.org/exampleWidget" version="2.0 Beta" height="200" width="200">
<name short="123">Foo Widget</name>
</widget>
</code></pre>
<p>I wish it was as simple as <a href="http://docs.jquery.com/Attributes/attr" rel="nofollow">Jquery's attr</a>: <code>var id = $("widget").attr("id");</code></p>
<p>Currently this shell code utilising <code>xsltproc</code> fails:</p>
<pre><code>snag () {
TMP=$(tempfile)
cat << EOF > $TMP
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" encoding="utf-8" indent="no"/>
<xsl:template>
<xsl:value-of select="$1"/>
</xsl:template>
</xsl:stylesheet>
EOF
echo $(xsltproc $TMP config.xml)
rm -f $TMP
}
ID=$(snag "widget/@id")
if test "$ID" = "http://example.org/exampleWidget"
then
echo Mission accomplished.
else
echo "<$ID> is wrong."
fi
</code></pre>
http://stackoverflow.com/questions/186431/calculating-days-of-week-given-a-week-number3Calculating days of week given a week numberhendry2008-10-09T08:42:11Z2009-08-19T13:43:50Z
<p>Given a week number, e.g. <code>date -u +%W</code>, how do you calculate the days in that week starting from Monday?</p>
<p>Example rfc-3339 output for week 40:</p>
<pre><code>2008-10-06
2008-10-07
2008-10-08
2008-10-09
2008-10-10
2008-10-11
2008-10-12
</code></pre>
http://stackoverflow.com/questions/760979/apache-pdf-digital-signatures/1042831#10428310Answer by hendry for Apache PDF digital signatureshendry2009-06-25T09:18:20Z2009-06-25T09:18:20Z<p>I would suggest reading the <a href="http://php.net/manual/en/features.file-upload.php" rel="nofollow">PHP upload tutorial</a>.</p>
<p>You might consider WebDAV, but I would not recommend it.</p>
http://stackoverflow.com/questions/1035396/bash-shell-script-syntax-error/1035449#10354490Answer by hendry for bash shell script syntax errorhendry2009-06-23T21:49:19Z2009-06-23T21:49:19Z<p>You should avoid brackets and use <code>test</code> instead:</p>
<pre><code>if test $# -eq 0 || test $# -gt 2
then
echo -1
elif test $# -eq 1
then
echo $(( $1 + $1 ))
else
echo $(( $1 + $2 ))
fi
</code></pre>
<p>Getting a <a href="http://dabase.com/e/13022/" rel="nofollow">better shell style</a> will make you much better. :)</p>
http://stackoverflow.com/questions/526132/finding-processes-using-alsa-sound-fast2Finding processes using ALSA sound fasthendry2009-02-08T18:07:10Z2009-06-19T22:15:35Z
<p>Currently the way <code>/usr/sbin/alsa</code> in Debian knows the processes using the sound card looks like:</p>
<pre><code>echo $( \
lsof +D /dev -F rt \
| awk '/^p/ {pid=$1} /^t/ {type=$1} /^r0x(74|e)..$/ && type == "tCHR" {print pid}' \
| cut -c 2- \
| uniq \
)
</code></pre>
<p>Which is rather ugly and depends on <code>lsof</code>. I am looking for a POSIX solution without <code>lsof</code>, perhaps using /proc.</p>
<pre><code> time for i in /proc/*/fd/*; do readlink $i | grep -q /dev/snd/pcm && echo $i | awk -F '/' '{print $3}'; done | uniq
</code></pre>
<p>Unfortunately seems to take twice as long as the <code>lsof</code> based snippet above. Can you make it faster, in order to make it a viable replacement?</p>
<p><strong>Update</strong> I rewrote the above as:</p>
<pre><code>#!/bin/sh
for i in /proc/[0-9]*/fd/*
do
if readlink $i | grep -q /dev/snd/pcm
then
IFS=/; set -- $i; unset IFS; echo $3
fi
done
</code></pre>
<p>But it seems to have the same performance as my earlier snippet. I suspect grep is the culprit.</p>
<p>Update: I have opened a <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=514661" rel="nofollow">Debian bug</a> on the topic.</p>
http://stackoverflow.com/questions/993452/splitting-proc-cmdline-arguments-with-spaces1Splitting /proc/cmdline arguments with spaceshendry2009-06-14T18:38:22Z2009-06-17T17:47:30Z
<p>Most scripts that parse /proc/cmdline break it up into words and then filter out arguments with a case statement, example:</p>
<pre><code>CMDLINE="quiet union=aufs wlan=FOO"
for x in $CMDLINE
do
»···case $x in
»···»···wlan=*)
»···»···echo "${x//wlan=}"
»···»···;;
»···esac
done
</code></pre>
<p>The problem is when the WLAN ESSID has <strong>spaces</strong>. Users expect to set <code>wlan='FOO</code>
BAR' (like a shell variable) and then get the unexpected result of <code>'FOO</code> with the above code, since the for loop splits on spaces.</p>
<p>Is there a better way of parsing the <code>/proc/cmdline</code> from a shell script falling short of almost evaling it? </p>
<p>Or is there some quoting tricks? I was thinking I could perhaps ask users to entity quote spaces and decode like so: <code>/bin/busybox httpd -d "FOO%20BAR"</code>. Or is that a bad solution?</p>
http://stackoverflow.com/questions/909622/how-to-upload-with-curl-client-certificate-authentication0How to upload with curl client certificate authentication?hendry2009-05-26T08:37:25Z2009-05-26T20:42:26Z
<p>Instead of using basic or digest authentication for an upload, could it be possible for a service to generate a certificate for the client to download for authenticated uploads? <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#the-keygen-element" rel="nofollow">Keygen</a> could be used for example, though it might be more straightforward to "Save the certificate" somewhere.</p>
<p>Once the user has the certificate, the user is able to then upload "foobar.png" via cURL. Perhaps like so:</p>
<pre><code>curl -E mycert.pem -F "fileupload=@foobar.png" http://example.com/secure-upload.php
</code></pre>
<p>Has anyone setup a similar scheme? I'm not sure it's possible as the <code>-E</code> switch in the manpage does not mention POST. Also I am unsure how to setup the httpd service to authenticate the certificate. Hopefully just an <a href="http://httpd.apache.org/docs/2.2/mod/mod%5Fssl.html" rel="nofollow">Apache SSL directive</a>.</p>
http://stackoverflow.com/questions/870505/load-csv-file-into-a-javascript-file/870948#8709480Answer by hendry for load csv file into a javascript filehendry2009-05-15T21:29:11Z2009-05-15T21:29:11Z<p>Sometime ago I wrote a <a href="http://maps.natalian.org/mymap.js" rel="nofollow">script which downloads a CSV and plots the points</a>. Perhaps it's a good starting point for you.</p>
http://stackoverflow.com/questions/759374/browser-independent-javascript-debugger/759743#7597431Answer by hendry for Browser Independent JavaScript debugger?hendry2009-04-17T09:30:24Z2009-04-17T09:30:24Z<p>I run a Webservice that allows developers to "debug" their Javascript in the sense of finding bugs via a <a href="http://www.jslint.com/" rel="nofollow">Javascript validator</a>. See the <a href="http://wiki.whatwg.org/wiki/IDE" rel="nofollow">HTML5 IDE</a> guide for details to set it up with the "global" vim editor.</p>
http://stackoverflow.com/questions/516481/add-last-n-lines-of-files-to-tar-zip/517658#5176580Answer by hendry for Add last n lines of files to tar/ziphendry2009-02-05T20:03:21Z2009-02-05T20:03:21Z<p>Use <strong>logrotate</strong>.</p>
<p>Have a look inside <code>/etc/logrotate.d</code> for examples.</p>
http://stackoverflow.com/questions/428022/css-coding-style/428055#4280551Answer by hendry for CSS coding stylehendry2009-01-09T13:36:02Z2009-01-09T13:36:02Z<p>Just from experience I used to write quite long CSS style sheets. Now my style sheets typically are half a page.</p>
<p>So keep it simple(KISS), line based (greppable) and keep it compact (use font: instead of font-size etc etc.).</p>
http://stackoverflow.com/questions/207690/best-mobile-application-development-tool-environment/275347#275347-1Answer by hendry for Best mobile application development tool/environment?hendry2008-11-08T23:01:40Z2008-11-08T23:01:40Z<p>I respectfully disagree with Fostah.</p>
<p>If you want to reach the masses, the Web is your best bet. It's far easier to write a simple Web application that will work on millions of devices.</p>
<p>And the best bit is that you can easily update your application and <strong>improve the user experience everyday with the Web</strong>.</p>
http://stackoverflow.com/questions/51988/what-work-has-been-done-on-cross-platform-mobile-development/275341#2753411Answer by hendry for What work has been done on cross-platform mobile development?hendry2008-11-08T22:57:24Z2008-11-08T22:57:24Z<p>I think there best chance for cross-platform mobile success is the Web. Just write a <a href="http://geo.webvm.net/" rel="nofollow">very simple Web</a> application for what you want to achieve. It should work on the Nokia S60browser, Iphone and Android.</p>
<p>That's already a lot of mobile devices...</p>
http://stackoverflow.com/questions/10256/android-development/275337#275337-4Answer by hendry for Android Developmenthendry2008-11-08T22:53:12Z2008-11-08T22:53:12Z<p>I think <em>bpapa</em> has a point. Why not just write a Web application?</p>
<p>You'll have a far bigger audience if you do so. I.e: Iphone, any computer with a Web browser...</p>
http://stackoverflow.com/questions/268077/free-diagramming-tool-for-web-site-specification/268253#2682530Answer by hendry for Free diagramming tool for web site specificationhendry2008-11-06T10:41:55Z2008-11-06T10:41:55Z<p><a href="http://inkscape.org/" rel="nofollow">Inkscape</a> is my favourite drawing tool. Has fantastic SVG support.</p>
http://stackoverflow.com/questions/265760/generating-pdfs-with-php/265771#2657710Answer by hendry for Generating PDFs with PHPhendry2008-11-05T16:39:56Z2008-11-05T16:39:56Z<p>Fll out a latex template and call Xetex over it.</p>
<p>I think you'll find the results pleasing at <a href="http://letterly.com/" rel="nofollow">Letterly</a>.</p>
http://stackoverflow.com/questions/221592/geolocation-api-on-the-iphone/259797#259797-2Answer by hendry for Geolocation API on the iPhonehendry2008-11-03T20:16:56Z2008-11-03T20:16:56Z<p>Btw Geolocation works on the Android G1 mobile device with Gears.</p>
<p>Try my <a href="http://geo.webvm.net/" rel="nofollow">Geolocation demo site</a>.</p>
http://stackoverflow.com/questions/207105/how-does-a-website-know-what-city-im-in/259787#2597870Answer by hendry for How does a website know what city I'm in?hendry2008-11-03T20:14:59Z2008-11-03T20:14:59Z<p><a href="http://geo.webvm.net/" rel="nofollow">Visit a demo site that uses Google's AJAX apis</a>.</p>
<p>In firebug enter <code>google.loader.ClientLocation.address.city</code> into the console. That's Google <a href="http://code.google.com/apis/ajax/documentation/#ClientLocation" rel="nofollow">ClientLocation</a> for you, however it only works well in a few places in the world.</p>
http://stackoverflow.com/questions/259742/what-is-the-difference-between-using-html-or-dreamweaver-to-make-a-website-whic/259762#2597622Answer by hendry for What is the difference between using HTML or Dreamweaver to make a website? Which is Better?hendry2008-11-03T20:09:50Z2008-11-03T20:09:50Z<p>Dreamweaver is an IDE for HTML.</p>
http://stackoverflow.com/questions/13/how-can-i-determine-a-web-users-time-zone/259654#2596541Answer by hendry for How can I determine a web user's time zone?hendry2008-11-03T19:28:18Z2008-11-03T19:28:18Z<p>I determine <a href="http://geo.webvm.net/" rel="nofollow">timezone with Geolocation</a> and using the <a href="http://www.geonames.org/" rel="nofollow">Geonames</a> <a href="http://www.geonames.org/export/ws-overview.html" rel="nofollow">APIs</a>.</p>
http://stackoverflow.com/questions/37015/how-can-i-find-a-users-location-based-on-their-ip-address-free-and-not-free-s/259649#2596490Answer by hendry for How can I find a user's location based on their IP address? (free and not free services)hendry2008-11-03T19:25:14Z2008-11-03T19:25:14Z<p>Geolocation with <a href="http://code.google.com/apis/ajax/documentation/#ClientLocation" rel="nofollow">ClientLocation</a> generally works and you get it free when you use <a href="http://code.google.com/apis/ajax/" rel="nofollow">Google's JSAPI</a>.</p>
<ul>
<li><a href="http://geo.webvm.net/" rel="nofollow">Demo site</a></li>
</ul>
http://stackoverflow.com/questions/174119/why-do-shell-script-comparisons-often-use-xvar-xyes/190907#1909070Answer by hendry for Why do shell script comparisons often use x$VAR = xyes?hendry2008-10-10T11:32:26Z2008-10-10T11:32:26Z<p>I wrote up a little known page about <a href="http://dabase.com/e/13022/" rel="nofollow">how to do comparisons in shell</a>.</p>
<p>Basically <strong>quote</strong> and use <strong>test</strong> instead of square brackets.</p>
http://stackoverflow.com/questions/76637/printings-using-cups-when-can-my-app-quit/190892#1908920Answer by hendry for Printings using CUPS, when can my app quit?hendry2008-10-10T11:24:21Z2008-10-10T11:24:21Z<p>How about using a print spool service like <code>lpr</code> & <code>lpq</code>?</p>
http://stackoverflow.com/questions/148905/how-did-you-first-get-interested-in-programming/148944#1489442Answer by hendry for How did you first get interested in programming?hendry2008-09-29T14:35:21Z2008-09-29T14:35:21Z<p>Just trying to make boring repetitive tasks quicker.</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/81757#817579Answer by hendry for What's Your Motto As A Developer/Programmer?hendry2008-09-17T10:19:26Z2008-09-17T10:19:26Z<p><a href="http://www.suckless.org/" rel="nofollow">Suck less</a> :-)</p>
http://stackoverflow.com/questions/549/the-definitive-guide-to-website-authentication-beta/54510#545101Answer by hendry for The Definitive Guide To Website Authentication (beta)hendry2008-09-10T15:57:51Z2008-09-10T15:57:51Z<p><a href="http://www.xiven.com/weblog/2004/07/24/UserAuthenticationOnTheWorldWideWeb" rel="nofollow">User Authentication on the World Wide Web</a> is old, but a good primer read nonetheless.</p>
http://stackoverflow.com/questions/1567106/how-to-determine-the-root-of-a-certificateComment by hendry on How to determine the root of a certificate?hendry2009-10-15T08:53:53Z2009-10-15T08:53:53ZI think answer lies in the issuer name.http://stackoverflow.com/questions/1350741/html5-0-canvas-textfieldComment by hendry on html5.0 canvas textfieldhendry2009-09-09T09:12:26Z2009-09-09T09:12:26ZUse HTML elements for a login interface. Style with CSS. Canvas is inappropriate for this case.http://stackoverflow.com/questions/1137885/access-attributes-from-xml-in-shell/1332116#1332116Comment by hendry on Access attributes from XML in shellhendry2009-08-26T10:09:59Z2009-08-26T10:09:59ZXpath looks really heavy compared to <code>xmlstarlet</code>.http://stackoverflow.com/questions/402377/using-getopts-in-bash-shell-script-to-get-long-and-short-command-line-options/402410#402410Comment by hendry on Using getopts in bash shell script to get long and short command line optionshendry2009-08-20T23:22:33Z2009-08-20T23:22:33ZUse getopts folks, not getopt.
<a href="http://bash-hackers.org/wiki/doku.php/howto/getopts_tutorial" rel="nofollow">bash-hackers.org/wiki/doku.php/…</a>http://stackoverflow.com/questions/402377/using-getopts-in-bash-shell-script-to-get-long-and-short-command-line-options/402413#402413Comment by hendry on Using getopts in bash shell script to get long and short command line optionshendry2009-08-20T23:21:44Z2009-08-20T23:21:44Zgetopt, except for the GNU version (which has a different calling convention), is fundamentally broken. Do not use it.
Please use **getopts instead <a href="http://bash-hackers.org/wiki/doku.php/howto/getopts_tutorial" rel="nofollow">bash-hackers.org/wiki/doku.php/…</a>http://stackoverflow.com/questions/472274/why-are-xhtml-5-and-xhtml-2-separate-standards/1061773#1061773Comment by hendry on Why are (X)HTML 5 and XHTML 2 separate standards?hendry2009-08-05T08:36:12Z2009-08-05T08:36:12ZSo a fairly boring new element like section that can't be <i>styled</i> in <i>IE7</i>, makes HTML5 backwards incompatible? Hmmm, I would take that with a grain of salt people. :)http://stackoverflow.com/questions/186431/calculating-days-of-week-given-a-week-number/1184954#1184954Comment by hendry on Calculating days of week given a week numberhendry2009-07-28T11:00:54Z2009-07-28T11:00:54ZThis code needs better formatting.http://stackoverflow.com/questions/1137885/access-attributes-from-xml-in-shell/1138562#1138562Comment by hendry on Access attributes from XML in shellhendry2009-07-16T17:31:52Z2009-07-16T17:31:52ZHow extraordinary, it works.
`hendry@x61 shell$ xmlstarlet sel -N w="<a href="http://www.w3.org/ns/widgets"" rel="nofollow">w3.org/ns/widgets"</a>; -T -t -m "/w:widget/@id" -v . -n config.xml
<a href="http://webvm.net/widgets/123" rel="nofollow">webvm.net/widgets/123</a>`
However there is an aboniation of switches there. Insane!!http://stackoverflow.com/questions/1137885/access-attributes-from-xml-in-shell/1138522#1138522Comment by hendry on Access attributes from XML in shellhendry2009-07-16T16:04:26Z2009-07-16T16:04:26Z hendry@x61 shell$ sh foo.sh
/tmp/file3jey7M:3: parser error : Specification mandate value for attribute value-of
<xsl:select value-of select="@id" />
^
/tmp/file3jey7M:3: parser error : attributes construct error
<xsl:select value-of select="@id" />
^
/tmp/file3jey7M:3: parser error : Couldn't find end of Start Tag select line 3
<xsl:select value-of select="@id" />
^
cannot parse /tmp/file3jey7M
http://stackoverflow.com/questions/1137885/access-attributes-from-xml-in-shell/1138562#1138562Comment by hendry on Access attributes from XML in shellhendry2009-07-16T16:00:59Z2009-07-16T16:00:59ZHave you tried this command? It doesn't work for me on 1.0.1.http://stackoverflow.com/questions/1133581/is-23-148-855-308-184-500-a-magic-number-or-sheer-chance/1134991#1134991Comment by hendry on Is 23,148,855,308,184,500 a magic number, or sheer chance?hendry2009-07-16T14:32:42Z2009-07-16T14:32:42ZSorry, most people have the Web to hand.http://stackoverflow.com/questions/993452/splitting-proc-cmdline-arguments-with-spaces/1008574#1008574Comment by hendry on Splitting /proc/cmdline arguments with spaceshendry2009-06-21T12:52:59Z2009-06-21T12:52:59ZSince this a parameter for a "Web product" Webconverger, where other parameters like homepage <a href="http://webconverger.org/boot/" rel="nofollow">webconverger.org/boot</a> will also be URL encoded, I think my initial choice is best.http://stackoverflow.com/questions/993452/splitting-proc-cmdline-arguments-with-spaces/1006368#1006368Comment by hendry on Splitting /proc/cmdline arguments with spaceshendry2009-06-21T12:51:32Z2009-06-21T12:51:32ZSo how would users quote an essid like 'foo bar'?
wlan=foo\040bar like the other answer?
I honestly think URL encoding "%20" is easier for the average user than shell octal encodings.http://stackoverflow.com/questions/526132/finding-processes-using-alsa-sound-fast/1020281#1020281Comment by hendry on Finding processes using ALSA sound fasthendry2009-06-21T12:44:41Z2009-06-21T12:44:41ZThat code is 3x faster on my tests. Great thank you! I've wrongly avoided parameter expansion.http://stackoverflow.com/questions/526132/finding-processes-using-alsa-sound-fastComment by hendry on Finding processes using ALSA sound fasthendry2009-06-21T12:43:33Z2009-06-21T12:43:33Z/bin/posh -- is what I meant :}