Skip to content

Instantly share code, notes, and snippets.

@connor11528
connor11528 / upgradeVersion.js
Created March 17, 2021 22:43
Sample problem to upgrade software version
/*
We want to upgrade from initialVersion to targetVersion. To do this
we run through these steps:
- First, we need one upgrade for each incremental major version
(resetting the other numbers to 0)
- Next, we need one upgrade for each incremental minor version
(resetting the third and fourth numbers, if applicable, to 0)
- Then, we need a one-time upgrade to the target third number
(if applicable)
- Finally, we need a one-time upgrade to the target fourth number
@connor11528
connor11528 / ApproveCandidate.php
Last active April 10, 2020 16:18
the approve candidate mailable for sending emails in Laravel 5
<?php
//...
class ApproveCandidate extends Mailable
{
use Queueable, SerializesModels;
public $user;
@connor11528
connor11528 / ApproveCandidate.php
Last active April 10, 2020 16:18
The artisan command to approve a candidate to join the Employbl network so that they can login and update their profile
<?php
//...
class ApproveCandidate extends Command
{
/**
* The name and signature of the console command.
*
* @var string
@connor11528
connor11528 / CandidateController.php
Last active April 11, 2020 22:37
the store method on the candidate controller for saving users to the Employbl database
<?php
//...
class CandidateController extends Controller
{
// ...
/**
* @param Request $request
* @return \Illuminate\Http\JsonResponse
@connor11528
connor11528 / candidates.vue
Last active April 11, 2020 22:47
The Vue component for handling the candidate apply form on the Employbl website
<template>
<form method="POST" action="/" @submit.prevent="submitCandidateApplication" class="form">
<div class="alert alert-success" v-if="success">
{{ success }}
</div>
<div class="alert alert-danger" role="alert" v-if="errors">
Woops had some problems saving
@connor11528
connor11528 / candidates.blade.php
Created April 10, 2020 00:48
The candidate apply form on the Employbl website as it currently stands
@extends('layouts.app')
@section('content')
<header>
<div class="container">
<div class="row mt-5">
<div class="col-md-6 col-sm-12">
<h1 class="mb-3">Join the tech community 🤝</h1>
<h3 class="mb-5 text-small">
@connor11528
connor11528 / approval.blade.php
Last active April 10, 2020 00:48
Candidate welcome email blade template in Laravel PHP
<style>
body {
background-color: white !important;
}
p {
color: black !important;
}
</style>
<p>Hey {{ $user->first_name }},</p>
@connor11528
connor11528 / profile.blade.php
Created May 26, 2019 23:13
Render the file in the browser with Laravel Blade
<div class="row">
<div class="col-12">
@if(!empty($candidate->resume_file_path))
<iframe src="https://s3-us-west-1.amazonaws.com/employbl-production/{{$candidate->resume_file_path}}"
width="800px" height="600px"></iframe>
@else
<p class="text-danger">{{ $candidate->first_name }} has not uploaded a resume yet</p>
@endif
</div>
</div>
@connor11528
connor11528 / CandidateController.php
Last active May 29, 2019 17:50
Laravel route to upload a file to Amazon S3 bucket
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\User;
use Illuminate\Support\Facades\Storage;
class CandidateController extends Controller
{
@connor11528
connor11528 / UploadResume.vue
Last active January 20, 2022 16:03
Vue.js component for uploading a file to Amazon S3
<template>
<div class="row text-center">
<div class="col-md-12 mb-3">
<label>Upload your resume</label>
<small>(.pdf or .docx file please)</small>
</div>
<div class="col-4 offset-4 text-center mb-3">
<!-- Upload resume button. Trigger function on browser file upload -->
<input type="file" name="resume" @change="uploadResume" class="form-control-file">
</div>