Skip to content

Instantly share code, notes, and snippets.

@internoma
internoma / UUID.php
Last active August 29, 2015 14:13 — forked from dahnielson/UUID.php
<?php
/**
* UUID class
*
* The following class generates VALID RFC 4122 COMPLIANT
* Universally Unique IDentifiers (UUID) version 3, 4 and 5.
*
* UUIDs generated validates using OSSP UUID Tool, and output
* for named-based UUIDs are exactly the same. This is a pure
* PHP implementation.
/**
* Simple localStorage with Cookie Fallback
* v.1.0.0
*
* USAGE:
* ----------------------------------------
* Set New / Modify:
* store('my_key', 'some_value');
*
* Retrieve:
# ----------------------------------------------------------------------
# ROOT/ folder .htaccess
# ----------------------------------------------------------------------
# Laravel Note:
# Note: Laravel is designed to protect your application code,
# and local storage by placing only files that are necessarily
# public in the public folder. It is recommended that you either
# set the public folder as your site's documentRoot (also known as a web root)
# or to place the contents of public into your site's root directory
# and place all of Laravel's other files outside the web root.
// http://forums.laravel.io/viewtopic.php?id=1943#p12005
Route::get('settings/(account|notifications|profile)', array(
'as' => 'settings',
'uses' => 'account.settings@(:1)'
));
URL::to_route('settings', 'profile');
getlaravelfn()
{
if [ -z "$1" ]
then
echo 'Error: No project name entered.'
return
else
curl -L -o laravel-master.zip https://github.com/laravel/laravel/archive/master.zip;
unzip laravel-master.zip;
rm laravel-master.zip;