...

A Little About Me...

I'm a web application developer living in the mountains of Western North Carolina. Vim is my editor, and I <3 mechanical keyboards, my current daily is a Nyquist Rev3. Ruby is my language of choice, although I consider myself a full-stack polyglot developer. I like to try different craft beers, and I prefer IPAs, the hoppier the better! Citra hops are my favorite hops so much in fact I named my rescue pup Citra. If I'm not behind a keeb I'm typically outdoors hiking, MTN biking, taking pitures or just living my best life.

07 July 2013

Switched My Private Repos From Github to Bitbucket

I recently started with a new company writing Ruby. The company I work for now uses Bitbucket because they allow unlimited private repos. This makes absolute sense for my personal projects. I have all kinds of projects I don't want to share with the public that I would love to have backed up to a remote git host. Bitbucket allowing 5 users for free and unlimited repos had me sold. I moved all of my private repos over to Bitbucket and downgraded my Github account to a free account. I mean Github is a great service but paying for private repos for projects I have not worked on in forever just doesn't make sense to me.

22 March 2013

Using Mechanical Keyboards Saved My Career

I work full time for a company during the day writing PHP. At night I am usually hacking on something in Ruby. As most of you know spending so much time on the computer is bad for you. We got Macbook Pros at my day job last year, within months of using the flat keybord day and night my hands and wrists hurt so bad I thought my career was going to be over. After trying many things including wrist braces, wrist rests, and exercises I read somewhere about mechanical switch keyboards and how much better they are for typing for long periods of time. I ordered one from NewEgg and started using it for all my typing. That combined with some wrist and hand exercises and here I am a year later still programming 16 or 17 hours a day sometimes with no pain what so ever. Everyone is like how can you spend $100+ dollars on a keyboard? I say when it comes to your health and career longevity, $100 is not even a concern. I now use a Mitas keyboard at home and a CoolerMaster at work. I will never use a cheap or flat key keyboard ever again.

07 March 2012

Custom sort names EXTJS 4 grids

I build grids all the time in EXTJS 4 and they are usually dealing with a ton of data so server side sorting is a must. EXTJS sends the header name of the grid column and and the sort direction to the server by default. That's all fine and dandy but most of the time my column header names differ from the names I need to send to the server for proper sorting. So here is what I came up with.

First I add a config called customSort to my column configs. The customSort will be the value that is sent to the server when clicking the grid column header.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
var gridColumns = [{
    text: 'Id',
    dataIndex: 'id',
    width: 75
},{
    text: 'Queue Cat',
    dataIndex: 'queue_cat',
    width: 100,
    customSort: 'DocumentQueueCategory.name'
},{
    text: 'Queued to Customer',
    dataIndex: 'queued_to_customer',
    flex: 1,
    customSort: 'User.lastname'
},{
    text: 'Locked By',
    dataIndex: 'locked_by',
    width: 150,
    customSort: 'LockedBy.lastname'
},{
    text: 'Last Act. Admin',
    dataIndex: 'last_activity_admin',
    width: 150,
    customSort: 'LastActAdmin.lastname'
},{
    text: 'Created',
    dataIndex: 'created',
    width: 110,
    format: 'm/d/y g:i a',
    xtype: 'datecolumn'
},{
    text: 'Modified',
    dataIndex: 'modified',
    width: 110,
    format: 'm/d/y g:i a',
    xtype: 'datecolumn'
}];

Then in the store for my grid I add some code to the before load listener to check for a customSort param on each column. If the param is found the store will send the customSort value to the server, if no customSort value is found it will send the column header name as normal.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
listeners: {
  beforeload: function (store, options) {
    if(store.sorters.items[0]){
      var oldSortParam = store.sorters.items[0].property;
      for(var i=0; i < gridColumns.length; i++) {
        var currentCol = gridColumns[i];
        if(currentCol.sortable && currentCol.customSort &&
           currentCol.dataIndex == oldSortParam) {
             store.sorters.items[0].property =
             currentCol.customSort;
             break;
        }
     }
    }
  }
}