title: Setting Up Laravel in Ubuntu / DigitalOcean
keywords: servers, laravel
description: Let's take a look at settting up a server from scratch for Laravel.
date: April 1, 2019
tags: servers, laravel
permalink: setting-up-laravel-in-ubuntu-digitalocean
img:
author: Tarik Manoar
authorlink: https://github.com/tarikmanoar
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
bootstrap_classes =[ | |
"active", | |
"alert", | |
"alert-danger", | |
"alert-dark", | |
"alert-dismissible", | |
"alert-heading", | |
"alert-info", | |
"alert-light", | |
"alert-link", |
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
# If you come from bash you might have to change your $PATH. | |
export PATH=$HOME/bin:/usr/local/bin:$HOME/.config/composer/vendor/bin:$HOME/.composer/vendor/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/home/manoar/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME |
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
Runner.prototype | |
var defRunner=Runner.prototype.gameOver | |
Runner.prototype.gameOver=function(){console.log("Fuck u Chrome")} | |
Runner.instance_.setSpeed(15000) |
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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.iconTheme": "material-icon-theme", | |
"files.autoSave": "afterDelay", | |
"editor.wordWrap": "on", | |
"terminal.integrated.shell.linux": "/bin/zsh", | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.cursorBlinking": "smooth", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"liveServer.settings.donotShowInfoMsg": true, |
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
xrandr --newmode "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync | |
xrandr --addmode DP-1 1368x768_60.00 | |
xrandr --addmode VGA-1 1368x768_60.00 | |
xrandr --output VGA-1 --mode 1368x768_60.00 |
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
maatwebsite/excel | |
owen-it/laravel-auditing | |
phpoffice/phpspreadsheet | |
realrashid/sweet-alert | |
spatie/db-dumper | |
spatie/laravel-backup | |
spatie/laravel-permission | |
torann/geoip |
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
##Create .htaccess file on root dir and paste it BOOOOOOOOMMM | |
<IfModule mod_rewrite.c> | |
<IfModule mod_negotiation.c> | |
Options -MultiViews | |
</IfModule> | |
RewriteEngine On | |
RewriteCond %{REQUEST_FILENAME} -d [OR] |
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
setInterval(function(){ | |
let input = document.getElementsByName("comment_text")[0]; | |
let submit = document.querySelector("button[type='submit']"); | |
submit.disabled = false; | |
i=adnan =''; | |
for(i=0;i<=Math.floor(Math.random() * 10); i++){ | |
adnan += " #WhereIsAdnan " ; | |
} | |
input.value = adnan; | |
console.log(adnan); |
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
import urllib.request | |
import json | |
import datetime | |
import random | |
import string | |
import time | |
import os | |
import sys | |
os.system("title WARP-PLUS-CLOUDFLARE By ALIILAPRO") | |
os.system('cls' if os.name == 'nt' else 'clear') |
OlderNewer