Skip to content
View jkonrath's full-sized avatar
Block or Report

Block or report jkonrath

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
jkonrath/README.md
  • ๐Ÿ‘‹ Hi, Iโ€™m @jkonrath
  • ๐Ÿ“ Iโ€™m interested in docs
  • ๐Ÿ’ฌ I used to write Apple Balloon Help
  • ๐Ÿ’ฝ I loved the MiniDisc
  • ๐Ÿ• I could always eat
  • ๐Ÿ”Œ My computer runs on electricity
  • ๐Ÿ˜ถ I don't speak for my employer

Pinned Loading

  1. emacs-shortcuts-in-macos emacs-shortcuts-in-macos Public

    A tutorial (sort of) so I can remember what emacs shortcuts are in macOS

    1

  2. Kinesis Advantage 2 remapping Kinesis Advantage 2 remapping
    1
    This is so I remember this in a year when I accidentally reset my keyboard again.
    2
    
                  
    3
    1. Set it to Mac mode: **progm + F5**.
    4
    1. Remap **Home** to **Ctrl**: **progm + F12**, then **Ctrl**, then **Home**.
    5
    1. Remap **End** to **Esc**: **progm + F12**, then **Esc**, then **End**.
  3. townscaper-objects townscaper-objects Public

    Objects for the game Townscaper

    1

  4. Windows CMD to make a timestamped di... Windows CMD to make a timestamped directory
    1
    @echo off
    2
    :: Windows CMD - Make a timestamped directory, prefixed with the first argument.
    3
    :: i.e. pass in "proj1" and it creates a directory named "proj1-2020-08-02_09-01-00"
    4
    :: It shouldn't be this hard, but it is.
    5
    for /f "tokens=2 delims==" %%a in ('wmic OS Get localdatetime /value') do set "dt=%%a"
  5. Windows CMD batch file frequent issu... Windows CMD batch file frequent issues/tips
    1
    # Writing Windows CMD Batch File Stuff
    2
    
                  
    3
    I hope I never have to write another Windows .BAT file again in my life, but if I don't jot this stuff down, I will forget it, and then I will.
    4
    
                  
    5
    ## Subroutines
  6. Windows CMD underscores to dashes Windows CMD underscores to dashes
    1
    @echo off
    2
    rem Go through every file in a directory and replace _ with - in each filename.
    3
    rem I'm sure I pasted this from somewhere, no idea.
    4
    rem I wouldn't have to do this if people stopped using underscores in filenames. 
    5
    rem It's bad SEO, and it's that much more typing. Just stop it.