Skip to content

Instantly share code, notes, and snippets.

View gaulatti's full-sized avatar

Javier Godoy Núñez gaulatti

View GitHub Profile
@gaulatti
gaulatti / Preferences.sublime-settings
Last active August 29, 2015 14:00
Sublime Settings
{
"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,
@gaulatti
gaulatti / folderToISO.sh
Created May 7, 2014 16:24
Create ISO from Folder in OS X
hdiutil makehybrid -o ~/Desktop/image.iso ~/path/to/folder/to/be/converted -iso -joliet
@gaulatti
gaulatti / selectTablesForDrop.sql
Created May 12, 2014 16:53
Select Tables for drop in MySQL
SELECT concat('DROP TABLE IF EXISTS ', table_name, ';')
FROM information_schema.tables
WHERE table_schema = 'MyDatabaseName';
@gaulatti
gaulatti / RutAuthenticator.php
Created July 14, 2014 15:09
Login con RUT en Symfony2
<?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;
@gaulatti
gaulatti / AjaxError.html.php
Last active August 29, 2015 14:04
Symfony2 Form Errors as JSON
<?php
// Errores desde Form
$errores = $view['form']->errors($form);
// Limpieza
$limpiezaUL = str_replace('<ul>','', $errores);
$limpiezaUL = trim(str_replace('</ul>','', $limpiezaUL));
// Separar Errores
#!/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
@gaulatti
gaulatti / checkboxAsDropdown
Last active August 29, 2015 14:06
Representing Checkboxes with Bootstrap Dropdowns
<!-- 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>
@gaulatti
gaulatti / clear2.php
Created October 13, 2014 16:30
Deploying Symfony2
<?php
shell_exec('rm -rf ../app/cache/*');
shell_exec('chmod -R 777 ../app/cache/*');
shell_exec('rm -rf ../app/logs/*');
shell_exec('chmod -R 777 ../app/logs/*');
@gaulatti
gaulatti / BaseController.php
Created November 21, 2014 17:07
Laravel Base Controller w/Hacks
<?php
class BaseController extends Controller {
/**
* Setup the layout used by the controller.
*
* @return void
*/
protected function setupLayout()
--- /usr/local/etc/apache2/2.2/original/httpd.conf 2014-12-05 20:14:50.000000000 -0500
+++ /usr/local/etc/apache2/2.2/httpd.conf 2014-12-05 20:16:46.000000000 -0500
@@ -38,7 +38,7 @@
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
-Listen 8080
+Listen 8000
#