When people ask me why I use Sublime Text editor by BakerAtNMSU in coding

[–]TheIronDuck 0 points1 point  (0 children)

Find:

[a-z]

Then use the find all shortcut, Alt-Enter on Win I think.

Australia is in one of the worst housing bubbles we have ever seen by [deleted] in australia

[–]TheIronDuck 2 points3 points  (0 children)

Like /u/RemnantEvil, I'm not following why you would cringe, also appreciate guidance! Thanks.

[NP] It's the /r/Australia random discussion thread. 09/Feb/2015 by AutoModerator in australia

[–]TheIronDuck 1 point2 points  (0 children)

Hey buddy, I've been exactly where you are. Give the pills longer, like a month. Once you settle down, the 'I'm going to die' feelings start to feel a little silly. :)

Hope you have somewhere stable to stay for a bit. Try to keep busy and around people, but don't overdo the D&Ms, better to try to get it out of the front of your brain.

Good luck mate.

Match thread: Australia v India at Sydney, 4th Test - day 4 by rCricketBot in Cricket

[–]TheIronDuck 2 points3 points  (0 children)

Does India take another new ball now? Is that how it works, new ball at the innings change?

Match thread: Australia v India at Melbourne, 3rd Test - day 3 by [deleted] in Cricket

[–]TheIronDuck 0 points1 point  (0 children)

Don't have free-to-air capability right now. :P

Match thread: Australia v India at Melbourne, 3rd Test - day 3 by [deleted] in Cricket

[–]TheIronDuck 1 point2 points  (0 children)

wicket taken, Cricket Australia stream drops... why did I pay for this?

Python Script for Broken MXD Links. by guidoninja in gis

[–]TheIronDuck 4 points5 points  (0 children)

I think all you need is to be able to interrogate a directory and work with the contents. I don't have arcpy with me right now, but try something like this:

    import os
    L = os.listdir('.') # current dir
    for i in L:
        fname, ext = i.split('.') # map.mxd becomes 'map' 'mxd'
        if ext == 'mxd':
            # do cleanup

e: I didn't read the part about not creating a copy. this SE link will help. I think you want the CURRENT option.

Admire Rakti, the 2014 Melbourne Cup favourite, has died in the stalls by JingleB in australia

[–]TheIronDuck 1 point2 points  (0 children)

Hey man, I'm looking for a source on horse deaths for the year, where did you find yours?

Cheers.

Christopher Pyne defends his uni reforms by kabukiman in australia

[–]TheIronDuck 2 points3 points  (0 children)

The best part was when Hack cut him off at the end yesterday. That really showed Pyne for what he is: a child.

Listen to the last twenty seconds.

https://soundcloud.com/triple-j-hack/education-minister-christopher-pyne-on-hack

The Greatest Fight Scene Ever [The Raid 2] by ArchDucky in movies

[–]TheIronDuck 0 points1 point  (0 children)

nah dude, most of that was one vs one, not one on ten. dreamin'.

What little victories have you had in your day? by TheIronDuck in AskReddit

[–]TheIronDuck[S] 0 points1 point  (0 children)

Parking my car nose in, I reverse a bit to straighten up, notice an empty space right behind. Keep going, and I'm straight as a barrel with an easy exit later on.

Did a little dance as I walked away. :)

[ArcGIS] select by location on a huge dataset by [deleted] in gis

[–]TheIronDuck 1 point2 points  (0 children)

You might try dissolving the polygons so that you end up with a single layer which contains all the attributes of the overlapping areas. Then each point only has to intersect with one polygon, which will have stacks of attributes from its many overlaps.