Basic building blocks (you won't often use these).
Manage the visual regions of your composite application. Composite JS Apps: Regions And Region Managers
Manage one or more related Marionette.Region
objects.
<?php | |
namespace App\Http\Controllers\Zen\Cartorial; | |
use App\Http\Controllers\Controller; | |
use App\Http\Controllers\Adagio; | |
use Validator; | |
use Exception; | |
class RelatorioController extends Controller |
Basic building blocks (you won't often use these).
Manage the visual regions of your composite application. Composite JS Apps: Regions And Region Managers
Manage one or more related Marionette.Region
objects.
#Install Gource in Ubuntu 23.04 | |
======================== | |
#Go to the folder.... and | |
#see http://tylerfrankenstein.com/code/install-gource-ubuntu-1010-visualize-git-repo | |
wget https://github.com/acaudwell/Gource/releases/download/gource-0.55/gource-0.55.tar.gz | |
cd gource-0.55 | |
sudo apt-get update | |
sudo apt-get install libsdl2-dev libsdl2-image-dev libpcre3-dev libfreetype6-dev libglew-dev libglm-dev libboost-filesystem-dev libpng12-dev libsdl1.2-dev libsdl-image1.2-dev libtinyxml-dev | |
./configure | |
make |
## Sublime Text 3 Serial key build is 3176 | |
> * Added these lines into /etc/hosts | |
127.0.0.1 www.sublimetext.com | |
127.0.0.1 license.sublimehq.com | |
> * Used the license key | |
----- BEGIN LICENSE ----- |
* SplFixedArray |
/*** | |
*https://tympanus.net/Development/NotificationStyles/ | |
*https://github.com/codrops/NotificationStyles | |
***/ | |
;( function( window ) { | |
'use strict'; | |
var docElem = window.document.documentElement, | |
support = { animations : Modernizr.cssanimations }, |
#!/bin/sh | |
## PHP7 + nginx + mysql + Lets Encrypt | |
### Comandos de instalação de php7 + nginx + mysql e comandos para criar certificado digital usando Lets Encrypt (Linux) | |
```sh | |
sudo add-apt-repository ppa:nginx/stable | |
sudo apt-get update && sudo apt-get -y upgrade && sudo apt-get -y dist-upgrade |
// Rotas que pertencem a um subdominio deverão ser registradas dentro do grupo
// Rotas para subdominio devem sempre ser declaradas antes das outras
Route::group(['domain' => '{account}.' . env('APP_DOMAIN')], function () {
Route::get('do-something', function ($account) {
//
});
});