This file contains 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
# EditorConfig is awesome: http://EditorConfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_style = space | |
indent_size = 2 | |
insert_final_newline = true |
This file contains 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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2004 Sam Hocevar <[email protected]> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit backupGlobals="false" | |
backupStaticAttributes="false" | |
bootstrap="bootstrap/autoload.php" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="true"> |
This file contains 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
<?php | |
class TestCase extends Illuminate\Foundation\Testing\TestCase | |
{ | |
/** | |
* The base URL to use while testing the application. | |
* | |
* @var string | |
*/ | |
protected $baseUrl = 'http://localhost'; |
This file contains 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
# GNU Make unicorns. | |
# TODO: Tests - Solve the problem first, then write the code | |
# TODO: Lints - Enforce Google's C++ style guide | |
# The main C+ compiler | |
CC = g++ | |
# The main Shell environment | |
SHELL = /bin/bash |
This file contains 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
alias diff="colordiff" | |
alias less="less -r" | |
alias md='/usr/local/bin/markdown2' | |
alias yt='/usr/local/bin/youtube-dl' |
This file contains 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
<VirtualHost *:80> | |
Define APP_NAME app | |
Define PROJECT_ROOT /var/www/${APP_NAME} | |
ServerName ${APP_NAME}.local | |
DocumentRoot ${PROJECT_ROOT}/public/index.php | |
<Directory "${PROJECT_ROOT}/public"> | |
Options FollowSymLinks | |
AllowOverride All |
This file contains 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
/* debug.css */ | |
/* Turn off the lights, baby! */ | |
html, body, header, section, div, ul, li, footer, a, span, button, form, input, textarea { background: #333 !important; color: #fff !important; } | |
h1, h2, h3, h4, h5, h6, p { color: #fff !important; } | |
a, a.navbar-brand, .btn-link { color: #3c3 !important; border-color: #3c3 !important; } | |
.btn { background: #333 !important; border-color: #111; color: #fff; } | |
.progress-bar { background: #3c3 !important; } |
This file contains 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
<!--- | |
An attempt to a StackOverflow question | |
https://stackoverflow.com/questions/44725973/how-to-link-esimakin-pagination-with-my-table# | |
You'll need to download jquery-twbs-pagination https://esimakin.github.io/twbs-pagination/ | |
--> | |
<html> | |
<head> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
</head> |
This file contains 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
<?php | |
/** | |
* Server Requirements | |
* | |
* The Laravel framework has few system requirements. Make sure that your server meets the following requirements: | |
* | |
* PHP >= 7.0.0 | |
* OpenSSL PHP Extension | |
* PDO PHP Extension |
OlderNewer