Skip to content

Instantly share code, notes, and snippets.

@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_*
@EspadaV8
EspadaV8 / Readable.js
Created February 16, 2012 23:59
TuxRadar create HTML audio tag
(function() {
function getScript(url,success){
var script=document.createElement('script');
script.src=url;
var head=document.getElementsByTagName('head')[0],
done=false;
// Attach handlers for all browsers
script.onload = script.onreadystatechange = function() {
if ( !done && (!this.readyState
|| this.readyState == 'loaded'
@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,
@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 / 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
.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 / 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';
<?php
class Question extends Eloquent {
public function getAnswerAttribute($value)
{
return (bool)$value;
}
}
<?php
Route::filter('revisit', function() {
if (Cookie::get('landingpage')) {
return Redirect::to('/' . Cookie::get('landingpage'));
}
});
@EspadaV8
EspadaV8 / mc-ssh.bash
Created July 18, 2011 05:12
Simple script to use minecraft over an SSH tunnel
#!/bin/bash
MCLAUNCHER="path/to/MinecraftLauncher.jar"
# Your SSH host, e.g. www.example.com
SSHHOST="<your-ssh-host>"
# Stores the controlmaster file. Need to enable controlpath in the ssh .config file
SOCKCTL="~/.mc-ssh-ctl"