I hereby claim:
- I am abr4xas on github.
- I am abr4xas (https://keybase.io/abr4xas) on keybase.
- I have a public key whose fingerprint is 5792 7F0A 80C5 C97B 2443 9653 22DD 7FDD 8AE6 F481
To claim this, I am signing this object:
genius | |
description: Laptop | |
product: M2421 (1234567890) | |
vendor: VIT | |
version: Not Applicable | |
serial: 12345678901234567 | |
width: 64 bits | |
capabilities: smbios-2.6 dmi-2.6 vsyscall32 | |
configuration: boot=normal chassis=laptop sku=1234567890 | |
*-core |
I hereby claim:
To claim this, I am signing this object:
<nav> | |
<ul class="pagination"> | |
{block:PreviousPage} | |
<li> | |
<a href="{PreviousPage}" aria-label="Previous"> | |
<span aria-hidden="true">«</span> | |
</a> | |
</li> | |
{/block:PreviousPage} | |
{block:JumpPagination length="5"} |
.carousel { | |
height: 50%; | |
} | |
.item, | |
.active, | |
.carousel-inner { | |
height: 100%; | |
} | |
.fill { | |
width: 100%; |
$('.summer').summernote({ | |
height: "200px", | |
callbacks: { | |
onImageUpload: function(files) { | |
url = $(this).data('upload'); //path is defined as data attribute for textarea | |
sendFile(files[0], url, $(this)); | |
} | |
} | |
}); |
$('#summernote').summernote({ | |
height: 300, // set editor height | |
minHeight: null, // set minimum height of editor | |
maxHeight: null, // set maximum height of editor | |
toolbar: [ | |
['style', ['bold', 'italic', 'underline', 'clear']], | |
['insert', ['picture', 'link', 'video']], | |
['fontsize', ['fontsize']], | |
['para', ['ul', 'ol', 'paragraph']], | |
['height', ['height']], |
<?php | |
/* | |
* Bootstrap 4 carousel w/ php | |
*/ | |
$slider = [ | |
[ | |
'img' => 'http://dandywebsolution.com/skdslider/slides/1.jpg', | |
'title' => 'Title 1', | |
'description' => 'description 1' | |
], |
<?php | |
use Illuminate\Database\Schema\Blueprint; | |
use Illuminate\Database\Migrations\Migration; | |
class CreatePostalCodesTable extends Migration { | |
/** | |
* Run the migrations. | |
* |
// Place your settings in this file to overwrite the default settings | |
{ | |
"window.zoomLevel": 0, | |
"extensions.ignoreRecommendations": false, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"workbench.colorTheme": "Laracasts Contrast (rainglow)", | |
"files.autoSave": "onFocusChange", | |
"editor.minimap.enabled": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"phpformatter.composer": true, |
#!/usr/bin/env bash | |
# Script para instalar PHP7 MYSQL | |
# Developed by abr4xas <[email protected]> | |
if [[ $USER != root ]]; then | |
echo "##########################################" | |
echo "# Error: Debe tener privilegios de ROOT ##" | |
echo "##########################################" | |
exit 1 | |
fi |