Author Topic: What geekiness/nerdiness did you do today?  (Read 6487 times)

Re: What geekiness/nerdiness did you do today?
« Reply #25 on: 03 April, 2013, 10:34:40 pm »
VPN client died and said it required uninstalling and reinstalling to fix it.

Only copy of VPN client available for reinstall is on company network which requires VPN to connect to it (I'm on holiday Thu/Fri and on call this weekend.)

However, Windows keeps copies of installed MSIs in C:\Windows\installer albeit with mangled filenames. A bit of prodding and poking (by knowing the rough size of the download) and I found the VPN client MSI.

VPN client uninstalled. VPN client reinstalled from MSI file.

VPN client works. I now don't have to go back into the office on my holiday.
"Yes please" said Squirrel "biscuits are our favourite things."

Vince

  • Can't climb; won't climb
Re: What geekiness/nerdiness did you do today?
« Reply #26 on: 03 April, 2013, 10:44:53 pm »
Started to write a message implementation guide to implement a GS1 message. Normally an easy task, but in this case no-one knows the data that is needed at the recipients systems.  ???
216km from Marsh Gibbon

Biggsy

  • A bodge too far
  • Twit @iceblinker
    • My stuff on eBay
Re: What geekiness/nerdiness did you do today?
« Reply #27 on: 03 April, 2013, 11:14:35 pm »
Found and installed more addons to Firefox and Thunderbird.  I think I'm an addon addict.
●●●  My eBay items  ●●●  Twitter  ●●●

Re: What geekiness/nerdiness did you do today?
« Reply #28 on: 04 April, 2013, 02:49:11 pm »
Today I have been learning all about the Haversine formula. You can do some cool shit like this:

Code: [Select]
    public DataSet getPlaces(int intUnit, float fLat, float fLng, int intDistance)
    {
        DataSet dsMap = new DataSet();
        string strSQL = "SELECT id, name, address, ( " + intUnit + " * acos( cos( radians( " + fLat + " ) ) * cos( radians( lat ) ) * cos( radians( lng ) - radians( " + fLng + " ) ) + sin( radians( " + fLat + " ) ) * sin( radians( lat ) ) ) ) AS distance " +
                        "FROM places " +
                        "HAVING distance < " + intDistance + " " +
                        "ORDER BY distance " +
                        "LIMIT 0 , 99";
        try
        {
            MySqlDataAdapter da = new MySqlDataAdapter(strSQL, sqlConn);
            da.Fill(dsMap, "places");
        }
        catch (Exception getPlacesErr)
        {
            LogError xErr = new LogError();
            xErr.sendError("Mapping.cs", "getPlacesErr: " + getPlacesErr.Message);
        }
        finally
        {
            sqlConn.Close();
        }

        return dsMap;
    }

Yup, it's a Geonames/Google Maps Mashup...

Edit: Hopefully I'll get it done soon -  the app is all about cycle touring....
Those wonderful norks are never far from my thoughts, oh yeah!

woollypigs

  • Mr Peli
    • woollypigs
Re: What geekiness/nerdiness did you do today?
« Reply #29 on: 04 April, 2013, 11:04:04 pm »
Ubuntu nautilus played in 12.04 and in 12.10 and 13.04 it rendered in ubuntu totally unusable, eat memory and CPU. Tried to change flavor and even installed Mint. Then lost WiFi and only could install it on my USB with Mint. Now installed Ubuntu 12.10 with working WiFi and is now trying to see if my back up of the /home folder works as it said on the tin, waiting for 4.2Gb to copy over. So lets see if nautilus will behave after reboot.
Current mood: AARRRGGGGHHHHH !!! #bollockstobrexit

Vince

  • Can't climb; won't climb
Re: What geekiness/nerdiness did you do today?
« Reply #30 on: 04 April, 2013, 11:12:57 pm »
Got bored copying XML element names into a piece of documentation, so I wrote an XSLT to extract the element and attribute names and their parents from a sample XML message output into a table, and just copied that into the documentation.
216km from Marsh Gibbon

Dibdib

  • Fat'n'slow
Re: What geekiness/nerdiness did you do today?
« Reply #31 on: 11 April, 2013, 12:30:44 pm »
Not really "me", as such, but I now have lovely shiny Windows 7 on my brand new work PC. It's lufferly.

David Martin

  • Thats Dr Oi You thankyouverymuch
Re: What geekiness/nerdiness did you do today?
« Reply #32 on: 11 April, 2013, 01:58:31 pm »
Slow process trying to install a MS search engine on a new shiny VM.
"By creating we think. By living we learn" - Patrick Geddes

Phil W

Re: What geekiness/nerdiness did you do today?
« Reply #33 on: 13 April, 2013, 11:17:52 pm »
Written a client / server encryption / decryption process usin rsa 2048 bit and aes 128 bit routines. The client being an Android app, the server being php.

Wascally Weasel

  • Slayer of Dragons and killer of threads.
Re: What geekiness/nerdiness did you do today?
« Reply #34 on: 14 April, 2013, 08:39:56 am »
Started looking for a Roomba. Because robots. And filth. :thumbsup:

I love the idea of a Roomba but I would need to have another robot to pick up all the crap all over the floor for the Roomba to be able to actually see the carpet to hoover.  It would be a bit like all of the cleaning robots that appear when you try to get a Babelfish from the dispenser in the old Infocom H2G2 game.

Regulator

  • That's Councillor Regulator to you...
Re: What geekiness/nerdiness did you do today?
« Reply #35 on: 14 April, 2013, 10:18:45 am »
We've got a robot hoover - a Neato.  It seems to function mainly as a dog amuser...
Quote from: clarion
I completely agree with Reg.

Green Party Councillor

woollypigs

  • Mr Peli
    • woollypigs
Re: What geekiness/nerdiness did you do today?
« Reply #36 on: 18 April, 2013, 12:15:18 pm »
A bit of a doh! and head against table today. Copying the new OSM (600Mb) to the Garmin and then while it was at it I deleted the folder, don't ask why. This could explain why Nautilus freaked out a wee bit, but it took some time for me to figure out.
Current mood: AARRRGGGGHHHHH !!! #bollockstobrexit

David Martin

  • Thats Dr Oi You thankyouverymuch
Re: What geekiness/nerdiness did you do today?
« Reply #37 on: 18 April, 2013, 12:28:13 pm »
Disabled an emergent feature [1] in some software I wrote. It now copes with people who think that tab delimited includes arbitrary whitespace either side of the tab (contrary to the file spec). Post-appending whitespace on identifiers breaks things in amusing and hard to determine ways.

[1] It's not a bug, it is an emergent feature. It does what was intended. It now does more than what was intended.
"By creating we think. By living we learn" - Patrick Geddes

Kim

  • Timelord
    • Fediverse
Re: What geekiness/nerdiness did you do today?
« Reply #38 on: 18 April, 2013, 06:40:10 pm »
Used the Android debugger to transfer my accumulated collection of wifi login details from one device to another.  This probably wasn't a net win over the time taken to enter them all manually.

It's all in /data/misc/wifi/wpa_supplicant.conf for those who want to play along at home.  Watch for device-specific lines in the file, and make sure the file permissions are correct, otherwise the wifi will refuse to start.

Chris S

Re: What geekiness/nerdiness did you do today?
« Reply #39 on: 18 April, 2013, 09:52:13 pm »
Finished commissioning a replacement Hyper-v server, replacing its 6 year old predecessor that melted its brains earlier in the week, causing me considerable angst when I realised one of the VMs I'd been using for development work wasn't in the backup cycle  :facepalm:.

Luckily, I'm old and paranoid enough to have other backups (not to mention, offsite source control) and so only lost a days work.

On the plus side - new server (ProLiant ML310 Gen8 - cheap as chips, and not half bad for the money) has 16Gb of RAM (old server only had 4Gb) so no need to keep turning off VMs to ration memory.

The best thing is - when you turn it on, the cooling stretches its legs a bit, and sounds like a Boeing 777 spooling up!

Kim

  • Timelord
    • Fediverse
Re: What geekiness/nerdiness did you do today?
« Reply #40 on: 18 April, 2013, 10:16:47 pm »
The best thing is - when you turn it on, the cooling stretches its legs a bit, and sounds like a Boeing 777 spooling up!

That never gets old.

Re: What geekiness/nerdiness did you do today?
« Reply #41 on: 18 April, 2013, 10:29:00 pm »
Oh, I don't know. It got old very quickly when I was doing updates on my rack mount ProLiant (hence lots of tiny fans, arranged in a parallel/series configuration to give massive airflow with commensurate noise levels) and ended up with the fans on full speed all the time.

Re: What geekiness/nerdiness did you do today?
« Reply #42 on: 18 April, 2013, 10:51:18 pm »
Listened to solar winds.

woollypigs

  • Mr Peli
    • woollypigs
Re: What geekiness/nerdiness did you do today?
« Reply #43 on: 18 April, 2013, 10:58:21 pm »
Listened to solar winds.
I think we have a winner :)
Current mood: AARRRGGGGHHHHH !!! #bollockstobrexit

Re: What geekiness/nerdiness did you do today?
« Reply #44 on: 19 April, 2013, 08:07:42 am »
Hah! All I did was sit there and listen.

The person who made the solar-wind-satellite-data-analysing-electromagnet-metal-tube-resonant-frequency-chime-noise-making-device should probably get the credit for the geekiness!

If I can one day learn how to get space data into an arduino, I'll consider that a win  :thumbsup:

Chris S

Re: What geekiness/nerdiness did you do today?
« Reply #45 on: 19 April, 2013, 12:02:19 pm »
Oh, I don't know. It got old very quickly when I was doing updates on my rack mount ProLiant (hence lots of tiny fans, arranged in a parallel/series configuration to give massive airflow with commensurate noise levels) and ended up with the fans on full speed all the time.

You mean, you had to visit the hardware;D

That is old. Anyway, I thought ProLiants have iLO Remote Management (my new one certainly does)?

Ah... I do miss the cut & chase of the server room. My favourite memories:

Perm Sys Admin (yelling in my ear): "If the alarms go, you've got thirty seconds to make that door before it seals and the Halon comes on."
Me (n00b contractor) : "I can't hear a fucking thing for the fans"
Perm Sys Admin: "I know. Sucks doesn't it? Why do you think we get you contractors to do the work in here?"

Me (less n00by): "I'll have to reboot that NT server. Again."
Perm Sys Admin: "That server you're currently using as a chair? It has all the home loan records for [institution's name removed] since forever. It was last rebooted three years ago. Yay for Unix, I guess..."

Me on phone - shouting: "Yes, the aircon is definitely off. The fans are going fucking mental."
Perm Sys Admin: "Is it hot?"
Me on phone - shouting: "Like a furnace. There are three thermal warnings going - oh, and I can smell hot solder."

Ah, the good ol' days...

Psychler

  • Grrrrrrrrrrrrrrrrrrrrrrrr........
  • 33.2 miles from Steeple Bumpstead
Re: What geekiness/nerdiness did you do today?
« Reply #46 on: 19 April, 2013, 12:06:42 pm »
I boiled a kettle, that's about as techy as I get!
I'm gonna limp to the pub and drink 'til the rest of me is as numb as my arse.

David Martin

  • Thats Dr Oi You thankyouverymuch
Re: What geekiness/nerdiness did you do today?
« Reply #47 on: 19 April, 2013, 01:40:47 pm »
I have given up trying to use VBA to do some analysis in Excel. Instead I will dump the worksheets to csv and do it all in Python as it is faster and less likely to cause a global financial meltdown. It will also stop me getting a disciplinary for swearing in the office as VBA is on the 'banned technologies' list.
"By creating we think. By living we learn" - Patrick Geddes

woollypigs

  • Mr Peli
    • woollypigs
Re: What geekiness/nerdiness did you do today?
« Reply #48 on: 19 April, 2013, 01:48:14 pm »
Looked into a Roomba and saw the price and forgot about it.
Current mood: AARRRGGGGHHHHH !!! #bollockstobrexit

Re: What geekiness/nerdiness did you do today?
« Reply #49 on: 19 April, 2013, 03:12:52 pm »
Oh, I don't know. It got old very quickly when I was doing updates on my rack mount ProLiant (hence lots of tiny fans, arranged in a parallel/series configuration to give massive airflow with commensurate noise levels) and ended up with the fans on full speed all the time.

You mean, you had to visit the hardware;D

That is old. Anyway, I thought ProLiants have iLO Remote Management (my new one certainly does)?

It does have iLO, but as for visiting it - this is one of the servers I have at home, so it's not like the rigmarole of getting into a data centre.
Doesn't everyone have a 19" rack in their spare room stuffed full of toys highly complex and essential equipment?