Coder Social home page Coder Social logo
(ns profile.github
  (:require
    [profile.app-materials    :refer [cover-letter resume clojure-job-offers]]
    [profile.side-effects     :refer [send-email update-cover-letter]]
    [profile.accomplish-goals :refer [crush-interview! accept-offer!]]))

(def about-me
  {:name  "Chase Lambert"
   :email "[email protected]"
   :desc  "I am a self taught developer who has experience building full stack web apps.
           I am looking for a new role using Clojure/ClojureScript or Rust.
           Frontend experience includes: Reagent, Re-Frame, Fulcro, Tailwind
           Backend: Ring, Reitit, Integrant, JDBC, HugSQL (Postgres)
           I prefer remote but will consider relocation within the US.
           I have mainly focused on web development but am open to other projects as well"})

(def profile-links
  {:github   "https://github.com/chase-lambert"
   :linkedin "https://www.linkedin.com/in/chase-lambert/"}
   :skills   ["clojure(script)" "rust" "web development" "sql (mostly postgres)" "tailwind"]})

(def projects
  {:lesson-planner  {:url  "https://lessonplanner.onrender.com/"
                     :repo "https://github.com/chase-lambert/lesson-planner"
                     :desc "Full stack Clojure/ClojureScript app that helps teachers
                            build lesson plans and materials using OpenAI technologies."}

   :distance-finder {:url  "https://distancefinder.onrender.com/"
                     :repo "https://github.com/chase-lambert/distancefinder"
                     :desc "Final project for Harvard's CS50 course
                            Built using Python with Flask"}})

(def profile (merge about-me profile-links projects))

(defn send-job-application [profile cover-letter resume job-offer]
  (let [app     (assoc profile :cover-letter cover-letter :resume resume)
        contact (:email job-offer)]
    (send-email app contact)))

(defn find-new-job [job-offers]
  (doseq [{:keys [desc location offer-package] :as offer} job-offers
          :when (and (= desc "interesting challenge")
                     (= location :remote-or-enticing-offer-to-relocate)
                     (= offer-package :exciting))
          :let [letter (update-cover-letter cover-letter)]]
    (send-job-application profile letter resume offer)
    (crush-interview!)
    (accept-offer!)))

(comment
  (find-new-job clojure-job-offers))

Chase's Projects

askama icon askama

Type-safe, compiled Jinja-like templates for Rust

breakout icon breakout

old breakout level editor written while following along on lambda island's re-frame tutorials

dop-challenges icon dop-challenges

Solving the 6 challenges from the Data Oriented Programming book using Clojure.

fulcro-book icon fulcro-book

Following along with the Fulcro Developer's Handbook

github_profile icon github_profile

The Rust project showing my silly little Github profile code actually compiles.

kanban icon kanban

Old little kanban app created back when going through lambda island reagent tutorials

lesson-planner-clj icon lesson-planner-clj

Full stack Clojure/ClojureScript app that helps teachers build lesson plans and materials using OpenAI technologies.

lesson_planner icon lesson_planner

Full stack Rust app that helps teachers build lesson plans using OpenAI technology

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.