Skip to content

Instantly share code, notes, and snippets.

View BrianFiala's full-sized avatar
👀

Brian Fiala BrianFiala

👀
  • Home Depot Technology
  • Austin, TX
View GitHub Profile
@BrianFiala
BrianFiala / osx_bootstrap.sh
Last active May 10, 2020 14:30 — forked from codeinthehole/osx_bootstrap.sh
Script to install stuff I want on a new OSX machine
#!/usr/bin/env bash
#
# Bootstrap script for setting up a new OSX machine
#
# This should be idempotent so it can be run multiple times.
#
# Some apps don't have a cask and so still need to be installed by hand. These
# include:
#
# - Twitter (app store)
@BrianFiala
BrianFiala / index.html
Created February 16, 2017 15:05
Practice page for playing with floated elements in css.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Github Users</title>
<meta name="description" content="Week 1 Day 3 Lecture Code">
<meta name="Author" content="Brian and Carlyse">
<link href="style.css" rel="stylesheet">
</head>
<!DOCTYPE html/>
<html lang = 'en'>
<head>
<meta charset='utf-8'>
<title>Creamy Ice</title>
<link href='style.css' rel='stylesheet'>
</head>
@BrianFiala
BrianFiala / index.html
Created February 13, 2017 22:16
My Ice Cream Shop
<!DOCTYPE html/>
<html lang = 'en'>
<head>
<meta charset='utf-8'>
<title>Creamy Ice</title>
<link href='style.css' rel='stylesheet'>
</head>
@BrianFiala
BrianFiala / index.html
Created February 13, 2017 22:10
My awesome first page ever
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>My Awesome Site</title>
<link href='style.css' rel='stylesheet'>
</head>