Skip to content

Instantly share code, notes, and snippets.

View studioromeo's full-sized avatar
👨‍💻
Coding

Robert Rhoades studioromeo

👨‍💻
Coding
View GitHub Profile
@studioromeo
studioromeo / generator
Created February 4, 2014 13:38
Codename Generator
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
body {
text-align: center;
font-family: sans-serif;
}
@studioromeo
studioromeo / Dependency.php
Last active August 29, 2015 13:57
PHPSpec
<?php
namespace Acme;
use Acme\SubDependency;
class Dependency
{
protected $subDep;
@studioromeo
studioromeo / app.sh
Last active December 16, 2015 15:19
A small script that helps reduce eyestrain by periodically dimming the display.
#!/bin/sh
# Get the original brightness
BRIGHTNESS=`/rest/brightness -l`;
# Dim the screen to it's lowest setting
`/rest/brightness 0`
# Stop for 5 minutes
sleep 300