Jim Lynch Codes
  • Blog
  • About Jim

Writings about one coder's stories & experiences.

Don't Be Bitter When They Don't Choose You

7/12/2016

0 Comments

 
I have a habit of falling in love with a company as soon as I leave the interview. Unfortunately, I've had a good deal of no's while looking for a new job. It's important to take the bad new gracefully, reflect on it, and prepare for getting that yes next time. Indeed, I heard a "no" today regarding an interview I went on this past Friday. Yes, I am bitter because I really wanted the job, but sometimes it's just not the right fit for whatever reason.

Read More
0 Comments

Resources for Getting Started with Clojure

7/11/2016

0 Comments

 
As you may know by now, I've recently been very heavily using JavaScript and Angular to build web applications. Before that I had used loads of other object-oriented languages like C#, C++, Java, ActionScript, Objective-C, Swift... However, I had never learned a "Lisp" language and haven't really done too much with functional programming other than knowing that it's a pretty big buzz word these days. Anyway, I was creeping around on Twitter one day and came across the profile of Tim Baldrige (@timbaldridge), and in his profile description he wrote, "programmer who prefers closure". I thought that was interesting and asked him why he preferred Clojure, and that started the whole spiral to my increasing interest in Closure.

Read More
0 Comments

Jim's ISTQB Foundation Level Study Guide

7/9/2016

0 Comments

 
Even though I consider myself more of a developer than a tester, I've realized that the best creators of perfect software of those who can build a balanced suite of automated tests with some code implemented to make them work. Although the ISTQB (International Software Testing Qualifications Board) exam has to do with all testing including just manual testing. Also, as the inventor of Triplex Testing Theory I wanted to make sure I wasn't missing anything. They have some weird vocabulary, but overall studying for this this exam can give you a great awareness of all areas of software testing without being a programming language specific tutorial on it. I don't have much time left before I go to the testing center, but my last method of studying is copying my notes here in a blog post. If you're taking the exam soon, I hope this helps!

Read More
0 Comments

Interesting Presentation on Hiring Remote Employees

7/5/2016

0 Comments

 
A great presentation by ​Elizabeth Hall, VP of People at Trello on how they are having a lot of success hiring remote developers. It's true that finding the best developers is difficult, and being able to hire from any geographical location is a huge advantage. Hall mentions that it took some transitioning to a more remote-focused culture but that overall it was "definitely worth it"!

Read More
0 Comments

Converting a Project from AngularJS ES5 to AngularJS ES2015

7/2/2016

0 Comments

 
Es5 Controller:
(function() {
  'use strict';

  angular
    .module('ngNjOrg')
    .controller('CodeController', CodeController);
  
  function CodeController ($log){
      var self = this;

    
  }
})();

​ES2015 Controller:
export class CodeController {
    constructor($log) {
        let self = this;

        $log.log('CodeController was created.');

  }
  
}
0 Comments
<<Previous
Forward>>

    ​Author

    Picture
    The posts on this site are written and maintained by Jim Lynch. About Jim...
    Picture
    Follow @JimLynchCodes
    Follow @JimLynchCodes

    Categories

    All
    Actionscript 3
    Angular
    AngularJS
    Automated Testing
    AWS Lambda
    Behavior Driven Development
    Blockchain
    Blogging
    Business Building
    C#
    C / C++
    ClojureScript / Clojure
    Coding
    Community Service
    CS Philosophy
    Css / Scss
    Dev Ops
    Firebase
    Fitness
    Flash
    Front End
    Functional Programming
    Git
    Go Lang
    Haskell
    Illustrations
    Investing
    Java
    Javascript
    Lean
    Life
    Linux
    Logic Pro
    Music
    Node.js
    Planning
    Productivity
    Professionalism
    Python
    React
    Redux / Ngrx
    Refactoring
    Reusable Components
    Rust
    Security
    Serverless
    Shell Scripting
    Swift
    Test Driven Development
    Things
    TypeScript
    Useful Sites
    Useful Tools
    Video
    Website Development
    WebStorm
    Writing

    Archives

    March 2023
    August 2021
    February 2021
    January 2021
    October 2020
    September 2020
    May 2020
    April 2020
    February 2020
    January 2020
    December 2019
    October 2019
    September 2019
    August 2019
    July 2019
    June 2019
    May 2019
    April 2019
    March 2019
    February 2019
    January 2019
    December 2018
    November 2018
    October 2018
    September 2018
    August 2018
    June 2018
    May 2018
    April 2018
    March 2018
    February 2018
    January 2018
    December 2017
    November 2017
    October 2017
    September 2017
    August 2017
    July 2017
    May 2017
    April 2017
    March 2017
    February 2017
    January 2017
    December 2016
    November 2016
    October 2016
    September 2016
    August 2016
    July 2016
    June 2016
    May 2016
    April 2016
    March 2016
    February 2016
    January 2016
    December 2015
    November 2015
    October 2015

    RSS Feed

  • Blog
  • About Jim
JimLynchCodes © 2023