hendry

373
Reputation
122 views

Registered User

Name hendry
Member for 1 year
Seen Nov 25 at 10:16
Website
Location GB
Age 31
Linux, Mobile & Web. They'll get big one day I swear.
Nov
8
answered Resources for building public information displays using HTML/CSS?
Nov
8
answered Firefox minimal build
Oct
15
comment How to determine the root of a certificate?
I think answer lies in the issuer name.
Oct
14
asked How to determine the root of a certificate?
Oct
11
answered Alternatives to autoconf / autotools?
Oct
6
awarded  Notable Question
Sep
9
comment html5.0 canvas textfield
Use HTML elements for a login interface. Style with CSS. Canvas is inappropriate for this case.
Sep
5
awarded  Yearling
Aug
26
comment Access attributes from XML in shell
Xpath looks really heavy compared to xmlstarlet.
Aug
20
comment Using getopts in bash shell script to get long and short command line options
Use getopts folks, not getopt. bash-hackers.org/wiki/doku.php/…
Aug
20
comment Using getopts in bash shell script to get long and short command line options
getopt, except for the GNU version (which has a different calling convention), is fundamentally broken. Do not use it. Please use **getopts instead bash-hackers.org/wiki/doku.php/…
Aug
5
comment Why are (X)HTML 5 and XHTML 2 separate standards?
So a fairly boring new element like section that can't be styled in IE7, makes HTML5 backwards incompatible? Hmmm, I would take that with a grain of salt people. :)
Jul
28
comment Calculating days of week given a week number
This code needs better formatting.
Jul
16
comment Access attributes from XML in shell
How extraordinary, it works. `hendry@x61 shell$ xmlstarlet sel -N w="w3.org/ns/widgets"; -T -t -m "/w:widget/@id" -v . -n config.xml webvm.net/widgets/123` However there is an aboniation of switches there. Insane!!
Jul
16
comment Access attributes from XML in shell
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
Jul
16
comment Access attributes from XML in shell
Have you tried this command? It doesn't work for me on 1.0.1.
Jul
16
revised Access attributes from XML in shell
put the source of what i'm working on first
Jul
16
revised Access attributes from XML in shell
selecting isn't a good term
Jul
16
revised Access attributes from XML in shell
removed confusing name reference
Jul
16
comment Is 23,148,855,308,184,500 a magic number, or sheer chance?
Sorry, most people have the Web to hand.
Jul
16
revised Access attributes from XML in shell
included example of config.xml
Jul
16
asked Access attributes from XML in shell
Jun
25
answered Apache PDF digital signatures
Jun
23
answered bash shell script syntax error
Jun
21
comment Splitting /proc/cmdline arguments with spaces
Since this a parameter for a "Web product" Webconverger, where other parameters like homepage webconverger.org/boot will also be URL encoded, I think my initial choice is best.
Jun
21
comment Splitting /proc/cmdline arguments with spaces
So 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.
Jun
21
comment Finding processes using ALSA sound fast
That code is 3x faster on my tests. Great thank you! I've wrongly avoided parameter expansion.
Jun
21
comment Finding processes using ALSA sound fast
/bin/posh -- is what I meant :}
Jun
19
comment Splitting /proc/cmdline arguments with spaces
Why while over a more readable case statement?
Jun
19
comment Splitting /proc/cmdline arguments with spaces
I prefer Web style entity quoting.
Jun
14
comment Splitting /proc/cmdline arguments with spaces
/proc/cmdline is how arguments are set on Linux distros. e.g. webconverger.org/boot
Jun
14
asked Splitting /proc/cmdline arguments with spaces