<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Broscom</title>
    <link rel="alternate" type="text/html" href="http://www.broscom.com/" />
    <link rel="self" type="application/atom+xml" href="http://www.broscom.com/atom.xml" />
    <id>tag:www.broscom.com,2009-08-01://1</id>
    <updated>2009-11-30T15:42:43Z</updated>
    
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Pro 4.32-en</generator>

<entry>
    <title>Git for version control</title>
    <link rel="alternate" type="text/html" href="http://www.broscom.com/2009/11/git-for-version-control.html" />
    <id>tag:www.broscom.com,2009://1.12</id>

    <published>2009-11-30T14:45:20Z</published>
    <updated>2009-11-30T15:42:43Z</updated>

    <summary>I&apos;ve been using Git for version control on a project I&apos;m working on and I am hooked. Git is a distributed version control system which means that instead of having just a working copy of files, each collaborator has a...</summary>
    <author>
        <name>Andrew Brosnan</name>
        
    </author>
    
    <category term="git" label="Git" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="versioncontrol" label="version control" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="webcast" label="webcast" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en-US" xml:base="http://www.broscom.com/">
        <![CDATA[I've been using <a href="http://git-scm.com/">Git</a> for version control on a project I'm working on and I am hooked. Git is a distributed version control system which means that instead of having just a working copy of files, each collaborator has a full-fledged repository. This is one of the things I like most about git compared with cvs and subversion - everything is local, which means everything is fast. Since you have a complete repository, things like viewing logs, diffs and commits don't need to go across the network. You can even work offline.<br /><br />Git certainly has some useful features. One cool thing you can do with Git is to commit 'hunks' of files, or just specific changes within a file. Let's say you are working on a file and you make three different changes - two of the changes are debugging code and the other change is actual code you want to keep. Git allows you easily commit just the one code change and ignore the other two. Neat huh?<br /><br />Perhaps my favorite feature so far is 'git bisect'. This tool makes it incredibly easy to find which commit introduced a specific bug. On a big project this can be a real time saver. Here's how it works. Let's say you have a bug in your current working copy. You tell Git that your working copy is 'bad' and give it <i>any</i> previous commit, tag or date that was 'good' (i.e. no bug). Git will then update your working copy to whatever commit is halfway between the two. (thus the name 'bisect'). Then you check for the bug and tell Git if it still exists or not. This process continues with you just telling Git 'good' or 'bad'. Git will determine for you the exact commit that introduced the bug in the fewest steps possible.<br /><br />Check out the Git website at <a href="http://git-scm.com/">git-scm.com</a> to download Git and learn more. Scott Chacon maintains the site and also gave the webcast below. Unfortunately the audio is poor, but if you can deal with it, the content is a great intro to using Git.<br /><br />

<div align="center">
<object height="344" width="425"><param name="movie" value="http://www.youtube.com/v/OFkgSjRnay4&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed src="http://www.youtube.com/v/OFkgSjRnay4&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="344" width="425"></object>
</div>

]]>
        
    </content>
</entry>

<entry>
    <title>New perl.org Website</title>
    <link rel="alternate" type="text/html" href="http://www.broscom.com/2009/11/new-perlorg-website.html" />
    <id>tag:www.broscom.com,2009://1.11</id>

    <published>2009-11-18T16:43:51Z</published>
    <updated>2009-11-18T16:54:58Z</updated>

    <summary>Perl.org has a new website design thanks to Ranguard. From his post at use.perl.org:&quot;Well, it&apos;s taken me 6 weeks of evenings and the odd weekend, but I&apos;m proud to say the new http://www.perl.org/ site has just gone live. This is...</summary>
    <author>
        <name>Andrew Brosnan</name>
        
    </author>
    
    <category term="perl" label="Perl" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en-US" xml:base="http://www.broscom.com/">
        <![CDATA[<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="perl_dot_org.png" src="http://www.broscom.com/images/perl_dot_org.png" class="mt-image-right" style="margin: 0pt 0pt 20px 20px; float: right;" height="239" width="300" /></span>Perl.org has a new website design thanks to Ranguard. From his post at use.perl.org:<br /><br />"Well, it's taken me 6 weeks of evenings and the odd weekend, but I'm proud to say the new <a href="http://www.perl.org/" rel="nofollow">http://www.perl.org/</a> site has just gone live.
<p>
This is a complete redesign and content review. Hopefully it's cleaner
and easier for people to actually get the information they are after."</p><p>Visit <a href="http://www.perl.org/">perl.org</a><br /></p>]]>
        
    </content>
</entry>

<entry>
    <title>Mac OS X Tip: Secret Screen Capture Shortcut</title>
    <link rel="alternate" type="text/html" href="http://www.broscom.com/2009/11/mac-os-x-tip-secret-screen-capture-shortcut.html" />
    <id>tag:www.broscom.com,2009://1.10</id>

    <published>2009-11-18T15:51:49Z</published>
    <updated>2009-11-18T16:05:51Z</updated>

    <summary>From the Mac OS X Pro Tips page, handy shortcuts for screen shots and screen captures:&quot;Okay, you probably already know the ol&apos; Command-Shift-3 shortcut for taking a screen capture of your entire screen, and you may even know about Command-Shift-4,...</summary>
    <author>
        <name>Andrew Brosnan</name>
        
    </author>
    
    <category term="macosx" label="Mac OS X" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="productivity" label="productivity" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en-US" xml:base="http://www.broscom.com/">
        <![CDATA[<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="mac_screen_capture_shortcut.png" src="http://www.broscom.com/images/mac_screen_capture_shortcut.png" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" height="203" width="287" /></span>From the Mac OS X Pro Tips page, handy shortcuts for screen shots and screen captures:<br /><br />"Okay, you probably already know the ol' Command-Shift-3 shortcut for
taking a screen capture of your entire screen, and you may even know
about Command-Shift-4, which gives you a crosshair cursor so you can
choose which area of the screen you want to capture. But perhaps the
coolest, most-secret hidden capture shortcut is Control-Command-Shift-3
(or 4), which, instead of creating a file on your desktop, copies the
capture into your Clipboard memory, so you can paste it where you want.
(I use this to paste screen captures right into Photoshop.)"<br /><br />More <a href="http://www.apple.com/pro/tips/">Mac Pro Tips</a><br />]]>
        
    </content>
</entry>

<entry>
    <title>New iPhone 3GS</title>
    <link rel="alternate" type="text/html" href="http://www.broscom.com/2009/08/new-iphone-3gs.html" />
    <id>tag:www.broscom.com,2009://1.7</id>

    <published>2009-08-04T22:57:09Z</published>
    <updated>2009-08-04T23:29:00Z</updated>

    <summary> Quick review of the new iPhone 3GS - New in June &apos;09, the iPhone 3GS is by far the nicest phone I have ever used. I can now see what all the fuss is about. I bought one recently...</summary>
    <author>
        <name>Andrew Brosnan</name>
        
    </author>
    
    <category term="iphone" label="iPhone" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en-US" xml:base="http://www.broscom.com/">
        <![CDATA[<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="iphone.jpg" src="http://www.broscom.com/images/iphone.jpg" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" width="123" height="200" /></span> <div>Quick review of the new iPhone 3GS - New in June '09, the iPhone 3GS is by far the nicest phone I have ever used. I can now see what all the fuss is about. I bought one recently and I'm very impressed with it's performance and the user experience in general. Here's a few things I really like about it.<br /><blockquote><ul><li>Call clarity and signal strength is excellent, far superior to my Blackberry.</li><li>Speed and performance - very zippy.</li><li>I can use Skype to make free calls! :-)</li><li>The camera actually takes good photos!<br /></li><li>Syncing with my computer (email, contacts, photos, etc.) is truly a snap.</li><li>It's very intuitive and easy to use... and it's fun!</li></ul>Excellent introduction video from Apple <a href="http://www.apple.com/iphone/guidedtour/">here</a>.<br /></blockquote></div>]]>
        
    </content>
</entry>

<entry>
    <title>Just finished setting up Movable Type.</title>
    <link rel="alternate" type="text/html" href="http://www.broscom.com/2009/08/i-just-finished-installing-movable-type-4.html" />
    <id>tag:www.broscom.com,2009://1.5</id>

    <published>2009-08-01T15:00:49Z</published>
    <updated>2009-08-04T23:32:22Z</updated>

    <summary>As they say on Slashdot - &apos;First Post!&apos;...</summary>
    <author>
        <name>Andrew Brosnan</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://www.broscom.com/">
        <![CDATA[As they say on Slashdot - 'First Post!'<br />]]>
        
    </content>
</entry>

</feed>

