Got a job.

Hey Guys, I got a new job as a full stack software developer!
Awesome. It only took a month to achieve.

Stats during 3 weeks

  • Had 1 job while searching for a job.
  • Received 20+ emails from unknown recruiters
  • Contacted 8 recruiters
  • Applied to 10 jobs
  • Had 7 phone interviews
  • Went on 4 on-site interviews
  • 3 rejections, 1 offer

Here are some notes I picked up along the way.

Resume

– Have a Word copy of your resume ready.
Recruiter will want this so they can spell check and format your resume using their company’s template.
– For each job in your resume, list the technology you used. Also, provide a summary of your experience in the summary section of your resume.
– Make your resume easy to find online for two reasons.

  • sometimes the recruiter will lose it and ask you to resend it.
  • When that happened to me, I just told them to google “Larry Battle Resume indeed.com”.

  • People will contact about job postings.

– Ask for feedback about your resume, then update it immediately.
Indeed.com is the best hub to post your resume. Monster.com, careerbuildier.com and dice.com sent me useless job postings.

Sales – 12 Tips To Get Your Dream Job

Larry Battle

I love to program, and discover new tech. Check out my stackoverflow and github accounts.

More Posts - Website

Follow Me:
TwitterLinkedInYouTube

Social Network in 30 days – End

I’m ending the challenge today due to lack of progress.
From the last update, I’ve switched from developing the site in Google go to Meteor, for node.js, and then back to Google Go.
The problem will development was that I didn’t devote enough time each day to complete each feature. This made catching up overwhelming and caused me to stress out about the project. It also didn’t help that I was a one man team with a full time job. 🙁
Oh well. I’ll be re-starting this challenge next month. Let’s see what happens.

Larry Battle

I love to program, and discover new tech. Check out my stackoverflow and github accounts.

More Posts - Website

Follow Me:
TwitterLinkedInYouTube

Social Network in 30 days : Day 8 – Day 10

I haven’t had time to work on the site, LinksTeach.me, for sometime now. So what I’m going to do is delay development for 3 days to finish up a few other side projects and complete essential training.
I’ll startup backup on monday and plan to release an alpha version on Nov 11, 2013.

Awesome bash script:

find . -name main.go | xargs -L1 sed -ri "1s/^\/\/.*[^\.]$/&\./"`


The command finds all the files with the name main.go within the current directory.
After which, for each file it adds a dot to the end of the first line if it’s a comment and doesn’t need with a period.
Why is this useful?
`godoc` is a tool for creating documentation for Google Go files.
Example:
Source code for errors
Documentation for errors

`godoc` will use the first sentence as the description for a package. Since I didn’t end the first line with a period, then the entire comment on multiple lines becomes the description for the package.

So when run the awesome bash command above, it corrects the package comment each main.go like so.
Example.

// Example code for Chapter 2.3 from "Build Web Application with Golang"
// Purpose: Creating a basic function


to this.

// Example code for Chapter 2.3 from "Build Web Application with Golang".
// Purpose: Creating a basic function

Larry Battle

I love to program, and discover new tech. Check out my stackoverflow and github accounts.

More Posts - Website

Follow Me:
TwitterLinkedInYouTube