Skip to content

Instantly share code, notes, and snippets.

View danilo04's full-sized avatar

Danilo Domínguez Pérez danilo04

View GitHub Profile
@danilo04
danilo04 / ajaxform.js
Created July 29, 2013 16:34
Jquery send ajax form serialize
// this is the id of the submit button
$("#submitButtonId").click(function() {
var url = "path/to/your/script.php"; // the script where you handle the form input.
$.ajax({
type: "POST",
url: url,
data: $("#idForm").serialize(), // serializes the form's elements.
success: function(data)
PackManager.v().getPack("jtp").add(
new Transform("jtp.methodinstrumenter", new BodyTransformer() {
@Override
protected void internalTransform(Body body, String arg1,
Map<String, String> arg2) {
// this method runs for all the methods in the app under analysis
UnitGraph g = new ExceptionalUnitGraph(body);
// unit graph is a statement based control flow graph
}
#!/bin/bash
set -euo pipefail
I1FS=$'\n\t'
mkdir -p /tmp/adodefont
cd /tmp/adodefont
wget -q --show-progress -O source-code-pro.zip https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip
unzip -q source-code-pro.zip -d source-code-pro
mkdir -p ~/.fonts
cp -v source-code-pro/*/OTF/*.otf ~/.fonts/
fc-cache -f
# Add the remote, call it "upstream":
git remote add upstream https://github.com/whoever/whatever.git
# Fetch all the branches of that remote into remote-tracking branches,
# such as upstream/master:
git fetch upstream
# Make sure that you're on your master branch:
Referencias
1. https://en.wikipedia.org/wiki/Programming_paradigm
2. http://www.slideshare.net/Coverity/the-psychology-of-c-analysis-24025354
3. http://sealedabstract.com/rants/why-mobile-web-apps-are-slow/
4. http://www.youtube.com/view_play_list?p=9D558D49CA734A02
5. https://en.wikipedia.org/wiki/Type_inference
6. http://www.infoq.com/presentations/ruby-invitation
7. http://www.infoq.com/presentations/java-g1
8. https://developers.google.com/events/io/sessions/324431687
@danilo04
danilo04 / index.php
Last active December 20, 2015 20:19
<?php
$pageIndexToSection = array(
0 => 'inicio',
1 => 'registro',
2 => 'busqueda',
3 => 'perfil',
4 => 'perfil_publico',
5 => 'agregar_evento',
6 => 'agregar_empresa',
7 => 'buscar_certificado',
@danilo04
danilo04 / mysqlalterview.sql
Created July 23, 2013 21:48
Change the view creator mysql
SELECT CONCAT("ALTER DEFINER=`youruser`@`host` VIEW ",
table_name," AS ", view_definition,";") FROM
information_schema.views WHERE table_schema='databasename'
Mix this with the mysql command line (assuming *nix, not familiar with windows):
> echo above_query | mysql -uuser -p > alterView.sql
> mysql -uuser -ppass databasename < alterView.sql
@danilo04
danilo04 / error_reporting.php
Created July 22, 2013 21:11
Error reporting php
ini_set('display_errors',1);
ini_set('display_startup_errors',1);
error_reporting(-1);
@danilo04
danilo04 / credit_card_validation.php
Created July 3, 2013 17:15
Validacion credit card
/*
* Luhn algorithm number checker -
* (c) 2005-2008 shaman - www.planzero.org * This code has been released
* into the public domain, however please * give credit to the original author
* where possible.
*/
function _luhn_check($number) {
// Strip any non-digits (useful for credit card numbers with spaces
// and hyphens)
<?php
/**
* $Id$
* @license
*
* @package usuarios
* @subpackage components
* @author Danilo Domínguez P.
* @copyright UTP
*/