Skip to content

Instantly share code, notes, and snippets.

View nuxlight's full-sized avatar
🏠
Working from home

Thibaud Pellissier nuxlight

🏠
Working from home
View GitHub Profile
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.PDPage;
import org.apache.pdfbox.pdmodel.PDPageContentStream;
import org.apache.pdfbox.pdmodel.common.PDStream;
import org.apache.pdfbox.pdmodel.font.PDFont;
import org.apache.pdfbox.pdmodel.font.PDType1Font;
import java.io.File;
import java.io.IOException;
EVE - Simple RESTFull API framework in Python with MONGOENGINE
@nuxlight
nuxlight / gist:481c786db072c5653d52270cf5180d41
Created October 3, 2016 14:06
Array to Google charts function
function getGoogleTable($arrayTab){
$finalArray = new stdClass();
$tempArray = array();
foreach ($arrayTab[0] as $fields) {
array_push($tempArray, array(
"label" => $fields,
"type" => 'string'
));
}