Skip to content

Instantly share code, notes, and snippets.

View jenvigo's full-sized avatar

Juan Enrique jenvigo

View GitHub Profile
@jenvigo
jenvigo / fetch-repos.sh
Created July 1, 2021 18:29 — forked from hhutch/fetch-repos.sh
find file changes in all forks of a github repo
curl -i https://api.github.com/repos/scrooloose/nerdtree/forks |grep -e "git_url" |awk '{gsub(/,/,"");split($2,a,"/"); system("mkdir "a[4]"; cd "a[4]"; git clone " $2);}'
Crear facturas de los alumnos que han pagado Octubre en la tabla pagos
<?php
for ($i=0; $i <5 ; $i++) {
# code...
fopen("facturasBucle/factura".$i.".txt", "w");
file_put_contents(filename, data);
}
?>
@jenvigo
jenvigo / bucleRecibos.php
Created October 16, 2017 09:46
bucleFacturas
Crear facturas de los alumnos que han pagado Octubre en la tabla pagos
<?php
for ($i=0; $i <5 ; $i++) {
# code...
fopen("facturasBucle/factura".$i.".txt", "w");
// file_put_contents(filename, data)
}
?>