Situation - Excel saved file that I want to read into a Lua program I'm writing on Linux. End of line characters on the Excel file are [cr], and Linux used [lf]. Quick solution - sed
sed 's/\x0d/\x0a/g' stationusage.txt > st2.txt
Literally "substitute globally every hex 0D with a hex 0A" ....
"Women to be more equal than men" said the headline on the newspaper sitting on the desk where I was working yesterday - and it struck me that we're more and more in George Orwell's world of Animal Farm and 1984, with some crazy doublespeak and perhaps the thought police out to ensure that everythin ....
Here's a message that we got yesterday when building some of the machines on our Lamp deployment course
[root@easterton apache2]# ./bin/apachectl start
Syntax error on line 233 of /usr/local/apache2/conf/httpd.conf:
Cannot load /usr/local/apache2/modules/libphp5.so into server: /usr/local/apache2/m ....
A single web server computer, running a single Apache httpd daemon, can serve many domains through virtual hosting - usually "named virtual hosting" which allows a single IP address to be used for all the different domains.
Here is how it works ...
• you set up all your defaults in the main h ....
Greetings from Aylesbury ... where I am spending much of this week during the day giving a Linux (LAMP) course, and much of the evening catching up on work. So just a brief tip today ..
If you're transferring files with FTP, remember to specify Binary mode!.
Perhaps advise you've heard before a ....
In Lua, if a partial expression evaluates to true the following section will NOT be evaluated if it follows an or because the whole thing cannot be true.
If a partial expression evaluates to false, the following section will NOT be evaluated if it follow an and because the whole thing must be true. ....
My 'work' in campaigning for an appropriate train service on our local "TransWilts" line started three years ago now (!) with the Save the Train web site ... and grew to include the First Great Western coffeeshop (forum) covering all services in a wedge to the West of London, once we realised that w ....
In an ideal world, business at Well House Manor would be evenly spread through the day ... but it doesn't always work out that way. This morning, we were serving breakfast for two dozen in "The Wilts", for our hotel guests - NOT part of the two dozen - in "The Whitworth" - and we had a small group ....
I've written a new demonstration in PHP ...
* a base class of line items for your accounts
* subclasses for bills and invoices you issue
* a sample application that takes a number of bill and invoice items and produces an accounts table and total
All in the ONE course file as a demo ... here.
Fo ....
How to add a "print me" button on your web page which (err) lets you print your web page ;-)
<form>
<input type=button value="Print me!" onClick="javascript:window.print()">
</form>
Here it is to try out:
....