<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>wickline</title>
    <link rel="alternate" type="text/html" href="http://blogs.perl.org/users/wickline/" />
    <link rel="self" type="application/atom+xml" href="http://blogs.perl.org/users/wickline/atom.xml" />
    <id>tag:blogs.perl.org,2009-11-03:/users/wickline//151</id>
    <updated>2012-05-17T00:00:23Z</updated>
    <subtitle>blah blah blog</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Pro 4.38</generator>

<entry>
    <title>duct tape</title>
    <link rel="alternate" type="text/html" href="http://blogs.perl.org/users/wickline/2012/05/duct-tape.html" />
    <id>tag:blogs.perl.org,2012:/users/wickline//151.3254</id>

    <published>2012-05-16T23:47:34Z</published>
    <updated>2012-05-17T00:00:23Z</updated>

    <summary>Folks used to refer to perl as &apos;the duct tape of the internet&apos;. It still totally is. I&apos;ve started posting perl (and other) portland and/or telecommute jobs on twitter. I thought I&apos;d also include these tweets in the 2pdx.com LinkedIn...</summary>
    <author>
        <name>wickline</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.perl.org/users/wickline/">
        <![CDATA[<p>Folks used to refer to perl as 'the duct tape of the internet'. It still totally is.</p>

<p>I've started posting perl (and other) portland and/or telecommute jobs on twitter. I thought I'd also include these tweets in the 2pdx.com LinkedIn group. LI supports rss feed inclusion in the news for their groups, so it should simply be a matter of pasting in the rss url</p>

<p>https://twitter.com/statuses/user_timeline/this_job.rss</p>

<p>into their UI. Nope. LI claims that this is not a valid rss feed. Hmm... <a href="http://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Ftwitter.com%2Fstatuses%2Fuser_timeline%2Fthis_job.rss">The validator disagrees</a>, but it does point out some warnings. Maybe LI's code just isn't up to handling that. Even if this was only an issue with twitter's feeds, "just twitter" is a rather large set of rss feeds to exclude based on an overly-strict parser. I advised them of the issue via their feedback form.</p>

<p>In the mean time, I can take a couple of minutes to write perl to grab one internet resource (the twitter feed) and scrub the content enough so that it is palatable to another internet resource (LI). Now I've got a suitable workaround until LI updates their code.</p>

<p>This seemed like a pretty canonical case of being the duct tape for the internet. The code isn't pretty, but it doesn't need to be.</p>

<pre>
#!/usr/bin/perl -T
my $dirty_rss = 'http://twitter.com/statuses/user_timeline/this_job.rss';
my $clean_rss = 'http://wickline.org/bird_bath/';
use strict;
use warnings;
$| = 1;
use WWW::Mechanize;
 
my $mech = WWW::Mechanize->new();
$mech->get( $dirty_rss );
my $feed = $mech->content();
 
for ( $feed ) {
    s{xmlns:twitter="[^"]+"}{}gi;
    s{&lt;twitter:[^\n]+}{}gi;
    s{\Q$dirty_rss\E}{$clean_rss}gi;
}
 
print "Content-type: application/rss+xml; charset=utf-8\n\n$feed\n";
exit;
</pre>]]>
        
    </content>
</entry>

<entry>
    <title>Look @this_job twitter feed</title>
    <link rel="alternate" type="text/html" href="http://blogs.perl.org/users/wickline/2012/05/look-this-job-twitter-feed.html" />
    <id>tag:blogs.perl.org,2012:/users/wickline//151.3247</id>

    <published>2012-05-16T01:20:34Z</published>
    <updated>2012-05-16T01:26:02Z</updated>

    <summary>I claimed a while ago that I maintained a list of pdx and telecommute jobs of potential interest to folks I know who are looking for new gigs. Well, I suck at maintaining that list. I&apos;m going to try to...</summary>
    <author>
        <name>wickline</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.perl.org/users/wickline/">
        <![CDATA[<p>I claimed a while ago that I maintained a list of pdx and telecommute jobs of potential interest to folks I know who are looking for new gigs. Well, I suck at maintaining that list. I'm going to try to make it easier to maintain by re-inventing the page as a twitter feed. The idea is that it is easier to post a couple tweets each day than to edit an html document. If it is sufficiently easier, then I might actually do it regularly.</p>

<p>If you use twitter, follow <a href="https://twitter.com/#!/this_job">@this_job</a>. If you use rss, subscribe to <a href="https://twitter.com/statuses/user_timeline/this_job.rss">https://twitter.com/statuses/user_timeline/this_job.rss</a>. If you prefer email updates, well I'm sure there is some service out there which will turn twitter streams or rss feeds into email. Actually, I think twitter started doing that themselves.</p>

<p>We'll see if this experiment works any better.</p>]]>
        
    </content>
</entry>

<entry>
    <title>orphaned public key</title>
    <link rel="alternate" type="text/html" href="http://blogs.perl.org/users/wickline/2012/05/orphaned-public-key.html" />
    <id>tag:blogs.perl.org,2012:/users/wickline//151.3200</id>

    <published>2012-05-05T19:17:03Z</published>
    <updated>2012-05-05T19:28:43Z</updated>

    <summary>So, I thought I&apos;d contribute to moose. A week ago I joined #moose and nopasted a public key. Cats and kids jumped all over me and I didn&apos;t follow through. In the end, I think that nobody acted on that....</summary>
    <author>
        <name>wickline</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.perl.org/users/wickline/">
        <![CDATA[<p>So, I thought I'd contribute to moose.</p>

<p>A week ago I joined #moose and nopasted a public key. Cats and kids jumped all over me and I didn't follow through. In the end, I think that nobody acted on that. Today I thought I'd get back to that while the kids were out of the house. I still had the nopaste tab open, so pasted the URL and mst added my key.</p>

<p>hmmm... but I still couldn't clone the rw repo. Sigh. I turns out that the public key was an orphan. From the comment in the public key, I'd believed that it was the one I was using to access github. However, they'd had that security kerfufle a while back and asked everyone to re-verify their public keys. I'd taken that opportunity to simplify a bit and just down my public key list at github to one key. ...and it wasn't the key that I'd sent mst. In fact, after much digging, I believe that I do not actually have a private key to go with that public key.</p>

<p>I also found another public key which appears to be an orphan. I've tidied up a bit now and hope never to be in this situation again. Just in case (or in case anyone else ends up there), here's some bits of info...</p>

<p>github does not show you the public keys you have with them. Instead, it will show you fingerprints:</p>

<p>    https://github.com/settings/ssh</p>

<p>You can view the finger prints of your public keys to see which (if any!) match:</p>

<p>    for i in ~/.ssh/*.pub; do ssh-keygen -l -f "$i"; done</p>

<p>If none match, but you are still able to access github, then you may have misplaced your public key since uploading it to github. Presumably you still have the private key or you would not be able to access github.</p>

<p>    ssh-keygen -y -f ./name_of_private_key_file > name_of_private_key_file.pub</p>

<p>at that point, you can redo the finger print bit and see which public key github is really using.</p>]]>
        
    </content>
</entry>

<entry>
    <title>whack-a-mole</title>
    <link rel="alternate" type="text/html" href="http://blogs.perl.org/users/wickline/2012/04/whack-a-mole.html" />
    <id>tag:blogs.perl.org,2012:/users/wickline//151.3076</id>

    <published>2012-04-10T21:17:01Z</published>
    <updated>2012-04-10T21:18:48Z</updated>

    <summary>find the perl subroutine most in need of refactoring fix it repeat... virtuous whack-a-mole with https://github.com/wickline/whack...</summary>
    <author>
        <name>wickline</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.perl.org/users/wickline/">
        <![CDATA[<p>find the perl subroutine most in need of refactoring</p>

<p>fix it</p>

<p>repeat... virtuous whack-a-mole with https://github.com/wickline/whack</p>]]>
        
    </content>
</entry>

<entry>
    <title>Get a job</title>
    <link rel="alternate" type="text/html" href="http://blogs.perl.org/users/wickline/2011/06/get-a-job.html" />
    <id>tag:blogs.perl.org,2011:/users/wickline//151.1872</id>

    <published>2011-06-20T14:16:28Z</published>
    <updated>2011-06-20T14:18:30Z</updated>

    <summary>I&apos;ve started maintaining a list of interesting-looking jobs. You&apos;ll find mostly perl jobs here (with a pinch of ruby, python, and maybe even php). The jobs will tend to be telecommute, PDX, or &quot;we will relocate you&quot; jobs. http://wickline.org/jobs.html...</summary>
    <author>
        <name>wickline</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.perl.org/users/wickline/">
        <![CDATA[<p>I've started maintaining a list of interesting-looking jobs. You'll find mostly perl jobs here (with a pinch of ruby, python, and maybe even php). The jobs will tend to be telecommute, PDX, or "we will relocate you" jobs.</p>

<p><a href="http://wickline.org/jobs.html">http://wickline.org/jobs.html</a></p>]]>
        
    </content>
</entry>

<entry>
    <title>Job Hunting</title>
    <link rel="alternate" type="text/html" href="http://blogs.perl.org/users/wickline/2011/05/job-hunting.html" />
    <id>tag:blogs.perl.org,2011:/users/wickline//151.1752</id>

    <published>2011-05-12T05:57:39Z</published>
    <updated>2011-05-17T06:38:22Z</updated>

    <summary>They say you should write what you know. Lately I&apos;ve spent some time exploring the job market. I&apos;ve been doing this to some extent for years as I worked to recruit new employees to Rentrak. In the past year, I&apos;ve...</summary>
    <author>
        <name>wickline</name>
        
    </author>
    
    <category term="job_huntingblog_post_idea" label="job_hunting blog_post_idea" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.perl.org/users/wickline/">
        <![CDATA[<p>They say you should write what you know. Lately I've spent some time exploring the job market. I've been doing this to some extent for years as I worked to recruit new employees to Rentrak. In the past year, I've seen the volume of open positions explode as the economy starts to recover. This has created something of a low pressure zone "outside". Plenty of companies are seeing turnover in the past year as employees get sucked out by one of the very many external opportunities.</p>

<p>This is good for developers. Even if you're not actively looking for work, your employer will feel market pressure to improve your working conditions. They want to be sure that you're not sucked out the door. If you are actively looking for work, then there's a veritable smorgasbord of options out there. If you don't see something you like today, just keep your eyes open. If you'd like to be actively looking but are not sure where to start, then the rest of this blog post is for you.</p>

<p>I think you should read two books<br />
<ul><br />
	<li><a href="http://www.amazon.com/Laidoff-Ninja-Craig-Brown/dp/1451558848">The Laidoff Ninja</a></li><br />
	<li><a href="http://www.amazon.com/Land-Tech-Love-Pragmatic-Life/dp/1934356263">Land the Tech Job You Love</a></li><br />
</ul></p>

<p>You don't have to read them before you start a job hunt, but read them while hunting. If you're not in a rush go ahead and read them first. If you're in a rush then you need to have a generic resume ready first.</p>

<p>The Laidoff Ninja is primarily targeted at folks who have been laid off and are struggling with the financial and emotional terrors of unemployment while hunting for work. The psyc bits are still relevant to employed job hunters, however. Job hunting is quite demoralizing and raises all sorts of insecurities. The chapters on finding work (particularly the chapter on using LinkedIn) are also totally relevant.</p>

<p>Land the Tech Job You Love is totally targeted at anyone who has read this far. One of the key pieces of early advice is to get your kit together before you do anything else. So, do that before you read the book ;) Once you have a resume, you're ready to hunt.</p>

<p>There are tons of sites where you can find job postings. Most of them will allow you to set up searches and get email and/or RSS notification of new jobs matching your search criteria. I have found that I get the best coverage from three sites: <a href="http://jobs.perl.org/">jobs.perl.org</a>, <a href="http://www.indeed.com/">indeed</a> and <a href="http://craigslist.org/">craigslist</a>. I've subscribed to others and I expect you would too. However, I got 90% of the value of RSS/email notifications from those three sites.</p>

<p>Now you'll have a steady stream of job postings clogging your daily diet of electronic media. Most of them are crap. Well, they're great jobs for someone, but they're not what you want. Get used to skimming and deleting these posts. You may be motivated to tune your queries to cut out more of the crap. You'll still have mostly crap to delete.</p>

<p>When you see something you like, you've already got your resume ready, so just tweak it for this particular opportunity and tap out a cover letter indicating why this opening excites you so and apply. Expect no response. It's just easier if that's your expectation. The hiring manager is normally a busy person. Now that they're short-staffed, they're even more busy. Eventually they'll get around to looking at the apps. It might be days or weeks. They may not reply to every applicant.</p>

<p>Just keep firing resumes through the front doors of attractive opportunities until you get some serious nibbles. (#blog_post_idea: resume hints)</p>

<p>That's one approach. Another is to go in through the side door. If you've got a nice-sized social network (#blog_post_idea: using LinkedIn), then you may well know someone in the company (or know someone who could introduce you to someone in the company). Reach out to one or more current developers and learn more about the position. This conversation is essentially a no-stress interview. You can learn more about them, and they'll be selling you on the company, and you won't yet be asked to sell yourself.</p>

<p>If you find that the position is a poor fit, then you've probably saved the company (and yourself) a nice chunk of time. If you decide to apply, you've got more details to use in crafting your resume and cover letter to fit the position and the challenges currently facing their team. You might also have the email of the hiring manager to ensure that they see your app before HR has a time to sit on the application for a week. If you actually know the folks on the inside, you might be able to get them to recommend you to the hiring manager (or at least to mention that they should expect your app soon).</p>

<p>If you're not sure what to ask, consider each of your prior jobs. What have you loved and what have you hated? What have you heard good/bad about other folks' jobs? As questions about all those sorts of things to ensure that they have much more of what you love and less of what you hate. Dave Rolsky posted a <a href="http://blog.urth.org/2011/04/my-interview-questions.html">nice write-up of his personal set of questions</a> last month. You might find his list to be inspiring if you're still coming up blank.</p>

<p>You really want to see if this opportunity is a good fit for you. The goal is not "to get inside contacts and build rapport" or "to sound cool and impressive". You're trying to learn. Put together a list of questions which will help you to learn whether or not you'd like to accept the advertised position.</p>

<p>Once you start finding interesting positions and start getting interview requests the job search becomes more interesting (ahem!). One problem is that i can be difficult to schedule time off. See if you can arrange for some regularly available time off (work early and have late afternoon free, work late and have mornings open; work long days and take half or even a full day off. Failing that, you're going to have use PTO every so often. (#blog_post_idea: interview hints)</p>

<p>I'll end this here. I've got a few more ideas for future posts. Right now I am struggling to keep my eyelids open. I'm sure that there are some strange typos in this text, but am too tired to re-read with any hope of finding them ;)</p>]]>
        
    </content>
</entry>

<entry>
    <title>Old Job</title>
    <link rel="alternate" type="text/html" href="http://blogs.perl.org/users/wickline/2011/05/old-job.html" />
    <id>tag:blogs.perl.org,2011:/users/wickline//151.1750</id>

    <published>2011-05-12T05:34:22Z</published>
    <updated>2011-05-12T05:55:49Z</updated>

    <summary>Perhaps &quot;old job&quot; isn&apos;t entirely accurate as I&apos;m still working there for another week and change. I guess &quot;current job&quot; is more appropriate. Ron Savage asked what that job was. Well, I&apos;m happy to share that. I&apos;m working at Rentrak....</summary>
    <author>
        <name>wickline</name>
        
    </author>
    
    <category term="job_pdx" label="job_pdx" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.perl.org/users/wickline/">
        <![CDATA[<p>Perhaps "old job" isn't entirely accurate as I'm still working there for another week and change. I guess "current job" is more appropriate.</p>

<p>Ron Savage asked what that job was. Well, I'm happy to share that. I'm working at Rentrak. Yes, <a href="http://www.rentrak.com/section/corporate/careers/software_development.html">they're hiring</a>. I've been there going on eight years now. If you're in the market for a perl job in Portland, Oregon USA, then look them up.</p>

<p>Perks: tons of smart coworkers, serious about test-driven development, huge repos of code in much better shape than is typical out there (from what I've seen and from what I've heard from others), various degrees of XP and agile influence (which practices are in play depend on which team you land on... and may change over time), etc. There's more behind the link above.</p>

<p>If that strikes your fancy, submit your resume!</p>

<p>Note: that "huge repos of code" bit also means that much of the learning curve is learning your way around perl_lib/RTK. Rentrak has hired plenty of non-perl programmers who do great and contribute novel perspectives. Picking up perl is nothing compared to picking up the existing code. So, if you're a great hacker of some other stripe don't let a lack of perl experience stop you from applying.</p>]]>
        
    </content>
</entry>

<entry>
    <title>First Post</title>
    <link rel="alternate" type="text/html" href="http://blogs.perl.org/users/wickline/2011/05/first-post.html" />
    <id>tag:blogs.perl.org,2011:/users/wickline//151.1744</id>

    <published>2011-05-09T08:28:48Z</published>
    <updated>2011-05-09T08:30:20Z</updated>

    <summary>I gave notice at my old job this weekend. It&apos;s a time of change. Perhaps one of the changes will be that I blog. Time will tell....</summary>
    <author>
        <name>wickline</name>
        
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://blogs.perl.org/users/wickline/">
        <![CDATA[<p>I gave notice at my old job this weekend. It's a time of change. Perhaps one of the changes will be that I blog. Time will tell.</p>]]>
        
    </content>
</entry>

</feed>
