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
Show hidden characters
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"create_window_at_startup": false, | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"folder_exclude_patterns": | |
[ |
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
PS1="\n\[\e[1;31m\]\u\[\e[30m\] on \[\e[1;33m\]\h\[\e[30m\] in \[\e[1;32m\]\W\[\e[30m\] (\A) \[\e[0m\]\n$ " |
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
# Installation instructions: https://help.github.com/articles/ignoring-files/#create-a-global-gitignore | |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so |
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
# Navigation Aliases | |
function ..; cd .. ; end | |
function ...; cd ../.. ; end | |
function ....; cd ../../.. ; end | |
function .....; cd ../../../.. ; end | |
# Utilities Aliases | |
function g; git $argv ; end | |
function grep; command grep --color=auto $argv ; end |
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
#!/bin/bash | |
# ------------------------------------------------------------------------------ | |
# Create .env file | |
# ------------------------------------------------------------------------------ | |
cat > .env <<EOL | |
DB_HOST=localhost | |
DB_NAME= | |
DB_USER= |
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 | |
namespace App\Notifications; | |
use Illuminate\Support\Str; | |
use Illuminate\Cache\RateLimiter; | |
use Illuminate\Support\Facades\Log; | |
use Illuminate\Notifications\RoutesNotifications; | |
trait RoutesThrottledNotifications |
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
<form id="payment-information" class="pure-form pure-form-aligned light" method="POST"> | |
<input type="hidden" name="action" value="commerce/payments/pay"/> | |
{{ redirectInput('order/confirmation/{number}') }} | |
{{ csrfInput() }} | |
<input type="hidden" name="cancelUrl" value="{{ '/order'|hash }}"/> | |
<input type="hidden" name="gatewayId" value="{{ cart.gatewayId }}"/> | |
<noscript> | |
<div class="bs-callout bs-callout-danger"> | |
<h4>JavaScript is not enabled!</h4> | |
<p>This payment form requires your browser to have JavaScript enabled. Please activate JavaScript and reload this page. Check <a href="http://enable-javascript.com" target="_blank">enable-javascript.com</a> for more informations.</p> |