This document provides help on getting your Laravel instance running with the latest versions of Laravel Mix and Font Awesome. Note: This guide is for Laravel versions 5 through 7. If you are using Laravel 8, please go here.
|
This document provides help on getting your Laravel instance running with the latest versions of Laravel Mix and Font Awesome. Note: This guide is for Laravel versions 5 through 7. If you are using Laravel 8, please go here.
|
//Delete all | |
let delete_buttons = Array.from(document.getElementsByClassName('delete')) | |
while (delete_buttons.length > 0) { | |
let button = delete_buttons.pop(); | |
button.click(); | |
Array.from(document.querySelector('.control.ok').getElementsByTagName('*')).forEach(o=>o.click()); | |
} | |
// Delete paused |
# Change to the project directory | |
cd $FORGE_SITE_PATH | |
# Turn on maintenance mode | |
php artisan down || true | |
# Pull the latest changes from the git repository | |
# git reset --hard | |
# git clean -df | |
git pull origin $FORGE_SITE_BRANCH |
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
class TestController extends Controller | |
{ | |
/** | |
* This is just a quick example of how to create a recursive list of items |
A list of commonly asked questions, design decisions, reasons why Clojure is the way it is as they were answered directly by Rich (even when from many years ago, those answers are pretty much valid today!). Feel free to point friends and colleagues here next time they ask (again). Answers are pasted verbatim (I've made small adjustments for readibility, but never changed a sentence) from mailing lists, articles, chats.
How to use:
hello | |
tab indent | |
space indent | |
tab indent with following space | |
space before tab | |
space at eol (trailing-space) | |
tab at eol (trailing-space) | |
blank at eof (also trailing-space) | |
#!/bin/bash | |
# Tom Hale, 2016. MIT Licence. | |
# Print out 256 colours, with each number printed in its corresponding colour | |
# See http://askubuntu.com/questions/821157/print-a-256-color-test-pattern-in-the-terminal/821163#821163 | |
set -eu # Fail on errors or undeclared variables | |
printable_colours=256 |
It's now here, in The Programmer's Compendium. The content is the same as before, but being part of the compendium means that it's actively maintained.