This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Route::get('/sql',function(){ | |
$sql=<<<EOF | |
-- ----------------------------------------------------- | |
-- Table `migrations` | |
-- ----------------------------------------------------- | |
CREATE TABLE IF NOT EXISTS `migrations` ( | |
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, | |
`migration` VARCHAR(191) COLLATE 'utf8mb4_unicode_ci' NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://itsolutionstuff.com/post/laravel-56-user-roles-and-permissions-acl-using-spatie-tutorialexample.html | |
https://itsolutionstuff.com/post/html-form-not-found-in-laravel-5example.html | |
https://laravel.com/docs/5.6/authentication | |
https://www.laraning.com/videos/episode-5-introduction-to-controllers | |
https://github.com/spatie/laravel-activitylog |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#http://makitweb.com/how-to-add-datepicker-in-bootstrap/ | |
#https://uxsolutions.github.io/bootstrap-datepicker/?markup=input&format=&weekStart=&startDate=&endDate=&startView=0&minViewMode=0&maxViewMode=4&todayBtn=false&clearBtn=false&language=en&orientation=auto&multidate=&multidateSeparator=&keyboardNavigation=on&forceParse=on#sandbox | |
#https://github.com/uxsolutions/bootstrap-datepicker/blob/master/docs/options.rst | |
#https://bootstrap-datepicker.readthedocs.io/en/latest/options.html#startdate | |
#Sync dt_start with dt_end | |
<div class="form-group"> | |
<label class="form-check-label">Date Range<br> | |
<div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Sometimes you need to move your existing git repository | |
# to a new remote repository (/new remote origin). | |
# Here are a simple and quick steps that does exactly this. | |
# | |
# Let's assume we call "old repo" the repository you wish | |
# to move, and "new repo" the one you wish to move to. | |
# | |
### Step 1. Make sure you have a local copy of all "old repo" | |
### branches and tags. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Note: please edit with your ubuntu root user name. The follow example is expecting to have the user "ila" as a Root privileges. | |
UBT_USER='ila' | |
HOME_PATH=/home/$UBT_USER | |
PRJ_DOMAIN='firemap' | |
PRJ_API="${PRJ_DOMAIN}_api" | |
PRJ_WEB="${PRJ_DOMAIN}.com" | |
#Alias to the URL, edit at your convinience | |
#VHOST="${PRJ_DOMAIN}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://mega.nz/#F!dd0lyTwb!7HtzHbm-jkUyuA9jwJzvIQ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://askubuntu.com/questions/756181/installing-php-5-6-on-xenial-16-04?rq=1 | |
https://hub.docker.com/r/yarsoniy/php5.6/~/dockerfile/ | |
https://github.com/oerdnj/deb.sury.org/issues/56 | |
FROM ubuntu:16.04 | |
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections | |
ENV DEBIAN_FRONTEND noninteractive | |
#https://github.com/tianon/docker-brew-ubuntu-core/issues/48 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update.sh" | |
# | |
# PLEASE DO NOT EDIT IT DIRECTLY. | |
# | |
FROM debian:jessie | |
# persistent / runtime deps | |
ENV PHPIZE_DEPS \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.imore.com/how-use-stickies-mac | |
https://www.jetbrains.com/help/idea/netbeans.html | |
//VSUAL STUDIO CODE - Key Bindings ==> https://code.visualstudio.com/docs/getstarted/keybindings | |
https://www.shortcutfoo.com/app/dojos/intellij-idea-win | |
https://shortcutworld.com/en/IntelliJ-IDEA/win/all | |
NetBeans |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/robbyrussell/oh-my-zsh/wiki/themes | |
https://github.com/robbyrussell/oh-my-zsh | |
https://github.com/robbyrussell/oh-my-zsh/wiki/Plugin:git | |
https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins | |
https://github.com/robbyrussell/oh-my-zsh | |
https://apple.stackexchange.com/questions/88278/change-default-shell-from-bash-to-zsh | |
https://apple.stackexchange.com/questions/115013/completion-for-git-commands | |
https://stackoverflow.com/questions/33992353/docker-create-images-ubuntu-14-04-with-docker-file | |
https://github.com/tianon/docker-brew-ubuntu-core/blob/a2573609340194bf33712c1fa2dc4de8f9b70ca2/trusty/Dockerfile |