Skip to content

Instantly share code, notes, and snippets.

@sunuazizrahayu
sunuazizrahayu / gist:3c89a8f6085c3c8f10e53dc3f88e887b
Created February 14, 2022 08:57 — forked from benshimmin/gist:4088493
Scale to fit and centre-align an image with FPDF
<?php
/* Caveat: I'm not a PHP programmer, so this may or may
* not be the most idiomatic code...
*
* FPDF is a free PHP library for creating PDFs:
* http://www.fpdf.org/
*/
require("fpdf.php");
class PDF extends FPDF {
@sunuazizrahayu
sunuazizrahayu / main.go
Created August 25, 2020 04:22 — forked from nmerouze/main.go
JSON-API with Go and MongoDB: Final Part
package main
import (
"encoding/json"
"log"
"net/http"
"reflect"
"time"
"github.com/gorilla/context"