Skip to content

Instantly share code, notes, and snippets.

View elightbo's full-sized avatar

Eric Lightbody elightbo

  • Cars.com / Dealer Inspire
  • Milwaukee
View GitHub Profile
@kevin-smets
kevin-smets / iterm2-solarized.md
Last active July 23, 2024 04:22
iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS)

Default

Default

Powerlevel10k

Powerlevel10k

@cgsmith
cgsmith / Vagrantfile
Created March 4, 2015 01:57
Vagrant example with Ansible. This is a simple setup I use for Vagrant and Ansible for the majority of my projects. Note that my provisioning stuff is in a folder.
# -*- mode: ruby -*-
# vi: set ft=ruby :
require 'yaml'
# Variables
data = YAML.load_file("provisioning/variables.yml")
Vagrant.require_version ">= 1.6.0"
Vagrant.configure("2") do |config|
@simonhamp
simonhamp / AppServiceProvider.php
Last active June 12, 2024 11:05
A pageable Collection implementation for Laravel
<?php
namespace App\Providers;
use Illuminate\Support\Collection;
use Illuminate\Pagination\LengthAwarePaginator;
class AppServiceProvider extends ServiceProvider
{
public function boot()