GeoNotes Blog


Notes for myself and others
  • find to copy files into single directory

    By John C. Zastrow
    Useful little one liners. This one makes copy of subset of dir/ and below based on finding files that match the criteria. In this case, I wanted all .doc files copied into a single place. [Read More]
  • My MySQL latest config file

    By John C. Zastrow
    I never record this stuff and I always wish I did. So here’s a working MySQL config file that I’m using on a linux virtual machine with 2GB of memory. Notes and all so I don’t keep having to look stuff up. [Read More]
  • File listing ditties

    By John C. Zastrow
    Here are some simple bash scripts to list files into a text files that can be used to catalog stuff. Most of the time I use the last one. ```bash [Read More]
  • Benchmarking MySQL

    By John C. Zastrow
    So I’m trying to figure which old machine to turn into a little mySQL number cruncher. So, I’m going to do some clean installs of Ubuntu server on each and run this little script (with the same my.cnf) and see how they fair. Perhaps you will this useful, run it... [Read More]
  • Run queries in sequence in Access

    By John C. Zastrow
    I’ve gotten so used to using “real” databases, that I find myself frustrated when I have to switch back to Microsoft Access. But, hey, it’s good for a lot of things. [Read More]
  • Screen capture programs

    By John C. Zastrow
    I always need to capture computer screens into graphic files. Even for my Mom who needs the occasional over-email tutorial. So here is a list of screen capture utitlities that I’ve used over the years. Snag-it is by far my tool of choice. But really, all will work. Do you... [Read More]
  • Tables of Tables from MySQL

    By John C. Zastrow
    From Matthew Crowley on the MySQl forums (http://forums.mysql.com/read.php?101,8004), this php script will output a DESC of all databases and tables in MySQL. It needs some formatting for the output, but it works and might be handy later. I really just need to get around to figuring out how to do... [Read More]
  • MySQL Functions

    By John C. Zastrow
    I just want to record these for future reference. I’m actually using the first now. [Read More]