Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View delor34n's full-sized avatar

Sebastián Lastra delor34n

View GitHub Profile
@delor34n
delor34n / git-remove-all-DS_Store
Created June 13, 2016 14:38 — forked from brianmriley/git-remove-all-DS_Store
How Can I Remove .DS_Store Files From A Git Repository? Open terminal and run the following command from your git project root. http://stackoverflow.com/questions/107701/how-can-i-remove-ds-store-files-from-a-git-repository
find . -name .DS_Store -print0 | xargs -0 git rm --ignore-unmatch
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 1 column, instead of 3. in line 2.
function httpGet(theUrl){
var xmlHttp = new XMLHttpRequest();
xmlHttp.open( 'GET', theUrl, false ); // false for synchronous request
//xmlHttp.setRequestHeader() debe ir después de xmlHttp.open()
xmlHttp.setRequestHeader('nombreHeader', 'valor');
//pero antes de xmlHttp.send()
xmlHttp.send( null );
return xmlHttp.responseText;
}
@delor34n
delor34n / arrayToCsv.php
Last active July 10, 2017 20:09
función que permite exportar un array y exportarlo a un archivo CSV
<?php
/*
* @fuente: http://stackoverflow.com/a/16251849
*/
function generateFile($datos, $filename = "export.csv", $delimiter=";") {
$f = fopen("/tmp/$filename", 'w');
// loop over the input array
foreach ($datos as $line) {
// generate csv lines from the inner arrays