Skip to content

Instantly share code, notes, and snippets.

View silverly's full-sized avatar
💯
The luster between light and dark.

Silverly silverly

💯
The luster between light and dark.
View GitHub Profile
! special
*.foreground: #ffffff
*.background: #000000
*.cursorColor: #ffffff
! black
*.color0: #3d3d3d
*.color8: #4d4d4d
! red
Verifying I am +silverly on my passcard. https://onename.com/silverly
@silverly
silverly / edit.blade.php
Created April 29, 2015 12:12
laravle bitches
@extends('layouts.admin')
@section('hero-header')
<header>
<div class="overlay"></div>
<div class="header-content center-vertical">
<h1>Edit Shop</h1>
</div>
</header>
@stop
@silverly
silverly / rssrules.txt
Created March 16, 2015 05:06
Rules for Rss
Blogs - Personal
-blogs of people i know
-Blogs of people i don't know but want to follow
-coding blogs
-maths blogs
- fun things
Blogs - Technical
- blogs that are technical in nature
@silverly
silverly / list.txt
Created March 5, 2015 03:39
starting homestead on uni comps
- download vagrant and virtualbox
- vagrant box add laravel/homestead
- download composer
- composer global require "laravel/homestead=~2.0"
- add ~/.composer/vendor/bin to path
- add composer.phar to bin (install it there)
- edit vagrant
- homestead init THEN homestead edit
- add to hosts as well
- vagrant plugin install vagrant-proxyconf
@silverly
silverly / actualenvironmentlist
Last active August 29, 2015 14:15
List of environments that i can think of
http://en.wikipedia.org/wiki/Development_environment_(software_development_process)
Environment/Tier Name Description
Local - Developer's desktop/workstation
Development - Development server aka sandbox
Integration - CI build target, or for developer testing of side effects
Test/QA - For functional, performance testing, Quality Assurance etc.
UAT User - acceptance testing
Stage/Pre-production - Mirror of production environment
Production/Live - Serves end-users/clients
@silverly
silverly / episode.txt
Created February 7, 2015 00:25
filebot configuration
{n}/ {n} {"Season ${s}"}/{n} - {s00e00} - {t}
@silverly
silverly / runthis
Last active August 29, 2015 14:14
Laravel Commands toto
composer update
php artisan cache:clear
go create the laravel_main database
php artisan migrate
~
php artisan db:seed
[Illuminate\Database\QueryException]
@silverly
silverly / Feedly.opml
Created February 3, 2015 21:54
Feedly20150204
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Dilesh subscriptions in feedly Cloud</title>
</head>
<body>
<outline text="Products" title="Products">
<outline type="rss" text="The LastPass Blog" title="The LastPass Blog" xmlUrl="http://blog.lastpass.com/feeds/posts/default" htmlUrl="https://blog.lastpass.com"/>
<outline type="rss" text="Dota 2" title="Dota 2" xmlUrl="http://blog.dota2.com/feed/" htmlUrl="http://blog.dota2.com"/>
@silverly
silverly / product.php
Last active August 29, 2015 14:13
Tables
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
/**
* http://laravel.com/docs/schema
*/
/**