Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* Assert that a given where condition does not matches a soft deleted record
*
* @param string $table
* @param array $data
* @param string $connection
* @return $this
*/
protected function seeIsNotSoftDeletedInDatabase($table, array $data, $connection = null)
@EspadaV8
EspadaV8 / overrides.css
Last active May 19, 2020 06:58
Dark Laravel Docs theme
body {
color: #ccc;
background: #525252 url("/assets/img/cloud-bar.png") repeat-x;
}
.docs article code[class*="language-"],
.docs article pre[class*="language-"] {
font-size: 14px;
}
@EspadaV8
EspadaV8 / install-latest-node.sh
Last active August 29, 2015 14:06
Install lastest node on debian
#!/bin/sh
aptitude install checkinstall build-essential
wget -N http://nodejs.org/dist/node-latest.tar.gz
tar xzvf node-latest.tar.gz
cd `ls -1|sort -r|head -1`
./configure
sudo fakeroot checkinstall -y --install=no --pkgversion $(echo $(pwd) | sed -n -re's/.+node-v(.+)$/\1/p') make -j$(($(nproc)+1)) install
sudo dpkg -i node_*
<?php
Route::filter('revisit', function() {
if (Cookie::get('landingpage')) {
return Redirect::to('/' . Cookie::get('landingpage'));
}
});
<?php
class Question extends Eloquent {
public function getAnswerAttribute($value)
{
return (bool)$value;
}
}
@EspadaV8
EspadaV8 / gist:5506405
Last active December 16, 2015 22:20
Resize Youtube to 720p
document.documentElement.style.overflow = document.getElementsByTagName('body')[0].style.overflow = 'hidden';
document.getElementById('player-api').style.width = '1280px';
document.getElementById('player-api').style.height = '751px';
document.getElementById('player').style.padding = '0px';
.share-button .icon {
width: 16px;
height: 16px;
vertical-align: top;
margin: 0 5px 0 -5px;
@include inlineblock;
background-image: url(../images/m/social-share.png);
&.twitter {
background-position: -18px 0;
}
@EspadaV8
EspadaV8 / qw
Created March 12, 2013 06:38
qw
> cat ~/.gitignore_global develop [3e3d5e4]
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
@EspadaV8
EspadaV8 / q
Created March 12, 2013 06:38
qwe
> cat ~/.gitignore_global develop [3e3d5e4]
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
@EspadaV8
EspadaV8 / extract.sql
Created November 20, 2012 10:13
iOS6 SQLite to CSV
SELECT [0],
h.id,
m.date + 978307020000,
CASE m.is_from_me
WHEN 0 THEN 1
WHEN 1 THEN 2
END AS type,
NULL,
m.text,
NULL,