This file contains hidden or 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
/* | |
* Facebook Video Downloader, Tested in Chrome / Safari | |
* rotvulpix - July11/2015@0918 CLST | |
*/ | |
/* | |
* Usage: Go to video page (not modal window), and execute this code in console. | |
* If you want the HD Source, please see it on HD first. | |
*/ |
This file contains hidden or 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, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"file_exclude_patterns": [], | |
"folder_exclude_patterns": [], | |
"font_face": "Ubuntu mono", | |
"font_options": ["gray_antialias"], | |
"font_size": 10, |
This file contains hidden or 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
hdiutil makehybrid -o ~/Desktop/image.iso ~/path/to/folder/to/be/converted -iso -joliet |
This file contains hidden or 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
SELECT concat('DROP TABLE IF EXISTS ', table_name, ';') | |
FROM information_schema.tables | |
WHERE table_schema = 'MyDatabaseName'; |
This file contains hidden or 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
<!doctype html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Validador de RUT HTML5</title> | |
</head> | |
<body> | |
<form> | |
<input type="text" id="rut" name="rut" required oninput="checkRut(this)" placeholder="Ingrese RUT"> | |
<button type="submit">Validar RUT y Enviar Form</button> |
This file contains hidden or 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 rotVulpix\TestBundle\Security; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\Security\Core\Authentication\SimpleFormAuthenticatorInterface; | |
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; | |
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken; | |
use Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface; | |
use Symfony\Component\Security\Core\Exception\AuthenticationException; | |
use Symfony\Component\Security\Core\Exception\UsernameNotFoundException; |
This file contains hidden or 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
$("[data-toggle='modal']").click(function(e) { | |
/* Prevent Default*/ | |
e.preventDefault(); | |
/* Parameters */ | |
var url = $(this).attr('href'); | |
var container = "#" + $(this).attr('data-container'); | |
/* XHR */ | |
$.get(url).done(function(data) { |
This file contains hidden or 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 | |
// Errores desde Form | |
$errores = $view['form']->errors($form); | |
// Limpieza | |
$limpiezaUL = str_replace('<ul>','', $errores); | |
$limpiezaUL = trim(str_replace('</ul>','', $limpiezaUL)); | |
// Separar Errores |
This file contains hidden or 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 | |
echo '===> install apc.so in OSX Mavericks' | |
mkdir -p ~/tmp/apc-deps | |
# Compile PCRE - Perl Compatible Regular Expressions | |
cd ~/tmp/apc-deps | |
curl -O ftp://ftp.csx.cam.ac.uk//pub/software/programming/pcre/pcre-8.33.tar.gz | |
tar -xvzf pcre-8.33.tar.gz |
This file contains hidden or 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
<!-- RadioButtons, about them the Dropdown will be filled --> | |
<input type="radio" name="ambito" class="selectable" value="1" data-caption="Ámbito 1"> | |
<input type="radio" name="ambito" class="selectable" value="2" data-caption="Ámbito 2"> | |
<input type="radio" name="ambito" class="selectable" value="3" data-caption="Ámbito 3"> | |
<!-- Bootstrap Dropdown - empty --> | |
<div class="btn-group radio-selectable" data-radio="ambito"> | |
<button type="button" class="btn btn-default dropdown-toggle btn-info" data-toggle="dropdown"> | |
Seleccione <span class="caret"></span> | |
</button> |
OlderNewer