Skip to content

Instantly share code, notes, and snippets.

View thomasRag's full-sized avatar

Thomas Ragot thomasRag

  • Anagraph
  • Montreal, QC, Canada
View GitHub Profile
@thomasRag
thomasRag / keybase.md
Created January 11, 2019 20:51
keybase proof

Keybase proof

I hereby claim:

  • I am thomasrag on github.
  • I am thomasrag (https://keybase.io/thomasrag) on keybase.
  • I have a public key ASCRwo_gWvY16Uhm5__nVgjLnM6ay6GZ61ddNp6RzYs3iQo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am thomasrag on github.
  • I am thomasrag (https://keybase.io/thomasrag) on keybase.
  • I have a public key ASCRwo_gWvY16Uhm5__nVgjLnM6ay6GZ61ddNp6RzYs3iQo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am thomasrag on github.
  • I am thomasrag (https://keybase.io/thomasrag) on keybase.
  • I have a public key ASCRwo_gWvY16Uhm5__nVgjLnM6ay6GZ61ddNp6RzYs3iQo

To claim this, I am signing this object:

<?php
$compose = function($f, $g){
return function($x) use ($f,$g) {
return $f($g($x));
};
};
$toUpperCase = function($x) {
return strtoupper($x);
};
@thomasRag
thomasRag / 00. tutorial.md
Last active September 3, 2015 16:17 — forked from maxivak/00. tutorial.md
Importing/Indexing database (MySQL or SQL Server) in Solr using Data Import Handler
<?php
$image = imagecreatefromjpeg($_GET['src']);
$filename = 'images/cropped_whatever.jpg';
$thumb_width = 200;
$thumb_height = 150;
$width = imagesx($image);
$height = imagesy($image);