Google Hangouts and telephone calling

Posted: June 4th, 2013 | Author: | Filed under: web | Tags: , | No Comments »

So, there has been some concern that Google has removed the ability to make voice calls from inside hangouts. I’ve found that the ability to do that still exists, if you know where to look.

  1. Create a persistent hangout. Go to your Google+ page, create an event in the far future (12/31/2020), make it online only and then visit the hangout that it creates.
  2. Take the hangout and shorten it using a service like bit.ly. Bit.ly works nicely because you can customize the name of the url. Be careful though since once the link is shared, you can no longer change the name and it will always point the supplied URL.
  3. Go to the shortened URL and join your new hangout.
  4. Click the invite people icon. Notice that you can now +Add telephone. Once you add a telephone number, Google will call them and they will join the hangout.

What is cool about this is that you can now have mixed hangout conversations with people in video calls and just pure audio calls. This will be really nice when most people are in an office but you have that one person who can only connect via phone. No more forcing everyone into a conference call…


Clean your bookmarks

Posted: October 21st, 2012 | Author: | Filed under: web | Tags: | No Comments »

I just decided to take a look at my bookmarks. I deleted all of them. I don’t remember the last time I actually used one. Google has become so good at search that I can find what I need by just typing into the search bar. If I don’t find that 2 year old article I was thinking about, I’m likely going to find something better anyway.

 


pairtrix

Posted: August 17th, 2012 | Author: | Filed under: pairtrix, ruby, web | Tags: , , , | No Comments »

I’ve been working on a large project with some developers from Pivotal Labs. Each team is made up of groups of paired developers. Depending on the size of the team, creating a even distribution of pairs can become increasingly difficult.

One of the options was to use a google spreadsheet matrix that had to be manually updated each day. Visually it worked well since you could update the numbers and see a history, but there wasn’t really a way to see who was paired on the given day. Also whenever someone left the team you needed to completely re-work the matrix to account for the change. We discussed the options to improve the experience and I decided to write an application to automate the process.

Pairtrix simplifies the process of managing and viewing team pairings by allowing signed in users to manage companies, employees, teams and pairs. Companies are displayed in a list and signed-in users can request membership to view that company’s information. Users who create a company will also have more administrative functions available to them including approving the membership requests for their companies.

Here are the links to the application, code repository and the tracker project. Please feel free to pass along bugs and feature requests.

Site: http://www.pairtrix.com

Github: https://github.com/jgeiger/pairtrix

Pivotal Tracker: https://www.pivotaltracker.com/projects/608423


Ruby 1.9.x and American dates

Posted: July 3rd, 2012 | Author: | Filed under: ruby, web | Tags: , | No Comments »

I’m not sure how I didn’t run into this before but if you have a date field in ruby 1.9.x it will not parse it in the American format (mm/dd/yyyy). Combined with postgresql turning an invalid date to nil, it makes for some fun debugging.

I usually set dates in my factories to “1/1/2000″ but from now on it will be “12/31/1999″ so I can catch this issue way sooner.

Also check out https://github.com/jeremyevans/ruby-american_date which will solve the issue quickly. (Note, this seems to break using non-American dates (dd/mm/yyyy)


git stash -p

Posted: June 28th, 2012 | Author: | Filed under: Uncategorized | Tags: | No Comments »

You can use git stash -p to selectively stash parts of your current changes. This is really nice to be able to test one specific change in isolation without having to make a series of commits.


mac + iterm2 + tmux + vim cursor change on insert mode

Posted: June 26th, 2012 | Author: | Filed under: ruby | Tags: , , , | No Comments »

I’ve had it working on some machines I’ve worked on but finally found this which let me get it working locally.

gist: Swap iTerm2 cursors in vim insert mode when using tmux

Thanks and hope it helps someone else.


Capistano and bundler working for a git deploy

Posted: April 20th, 2012 | Author: | Filed under: ruby, web | Tags: , , , | No Comments »

I’ve been using the “git” deploy that github talked about so long ago for a while now. I finally got around to deploying something new and decided to use the built in bundler code for capistrano. A long time ago I had to fight with it and eventually gave up. I think they finally fixed it so you can override “current_release” which lets you work in a strategy that doesn’t force releases on you.

Adding the above lines somewhere in your deploy (change as needed) will allow you to override the default and get the deploy working.

It’s interesting that they don’t list “current_release” as an option you can change but if you look at the code it’s being pulled in just like all the others.


rspec view spec and dealing with current_user

Posted: March 30th, 2012 | Author: | Filed under: ruby | Tags: , , | No Comments »

I was trying to learn about view specs since doing everything in Cucumber has been considered to be a bit of overkill recently. I was looking for a solution to deal with current_user and this is what I’m using.

items/show.html.haml

show.html_spec.rb


vim config

Posted: March 24th, 2012 | Author: | Filed under: ruby | Tags: , | No Comments »

I’ve been working on a project which has a really nice set of vim plugins with a decent configuration. I’ve been trying to send in a few patches but it was a bit of a pain to use mine but keep it updated with the main repo. A bit of searching gave me a nice setup.

This clones my fork and also adds the parent as the upstream remote.

Now if you add this to your .gitconfig you can do an easy git pu to pull in changes from both branches.

Thanks
http://gitready.com/intermediate/2009/02/12/easily-fetching-upstream-changes.html


Vim + Ruby + CommandT = win

Posted: March 22nd, 2012 | Author: | Filed under: ruby, web | Tags: , | No Comments »

So I’ve been trying to get vim working on my macbook with the command-t plugin for file searching. I spent quite a while trying to get it working a while ago and finally did a really simple thing and it just worked.

I’m using rbenv with ruby 1.9.3-p125 as my main ruby, but you need to make sure that you compile command-t against whatever ruby vim as compiled with. The homebrew-dupes forumla uses the system ruby (which lives at /usr/bin/ruby) and even if you have rbenv global set to another ruby, you can always directly use the system ruby.

Thanks to:
https://github.com/Casecommons/vim-config
https://github.com/Casecommons/casecommons_workstation/blob/master/recipes/vim.rb