• Installing VS Express 2013

    Capture

    I like Qt, but let’s see how this goes.

     


  • New Project

    Was just told I’m going to be working on one of the newer systems. I get to use Git and a bunch of modern development tools. And I’ll be using C# instead of C++. I’m v happy about all this. Hello garbage collection.


  • 82

    Today at work we had a workshop about the processes some of the new projects are using. They’re definitely interesting, and we all played around with the workflow on the development server. Code is written, unit tested, and pushed to a remote Git repository all from within Qt Creator, where the code automatically has unit tests and Valgrind memory analysis performed. GitLab is hosted on our software server, which integrates nicely with continuous integration. I’d like to use some of that stuff…


  • Post Vaycay

    Took two weeks off to go to Europe. I think I forgot how to program…


  • My .cshrc

    Aside from a bunch of environment variable settings and shortcuts to oft-used directories, I’m collecting in my .cshrc file some little aliases.

    Here are a handful of my favorites:

    # so meta
    alias cshrc 'vi ~/.cshrc' 		
    
    # note-taking is v important
    alias notes 'vi ~/documents/notes.txt'	
    
    # this one just makes me think I never do typos
    alias sl ls				
    
    # display directory contents after cd-ing (stolen from Wikipedia)
    alias cd 'cd \!* && ls' 		
    
    # yes I'm this lazy
    alias status 'svn status' 		
    
    # so v lazy
    alias update 'svn update' 		
    
    # makefiles woooo
    alias build 'make clean ; make all'	
    
    # only show warnings/errors
    alias buildquiet 'make clean > /dev/null ; make all > /dev/null' 
    
    # always show line numbers w/ grep results
    alias grep 'grep -n'			
    
    # teleport to a server (esp cool w/ PKA)
    alias servername 'ssh -X username@servername' 
    
    # resets the terminal. god i love a clean terminal window
    alias r 'tput reset' 			
    
    # new terminal window
    alias term 'gnome-terminal &'		
    
    # shut down the computer
    alias goodnight	'sudo /sbin/shutdown -h -P -time "now"'