Skip to content

Instantly share code, notes, and snippets.

View KellyLSB's full-sized avatar

Kelly Becker-Neuding KellyLSB

View GitHub Profile
diff -Naur GobiNet.old/GobiUSBNet.c GobiNet/GobiUSBNet.c
--- GobiNet.old/GobiUSBNet.c 2015-04-22 19:45:17.553791454 +0200
+++ GobiNet/GobiUSBNet.c 2015-04-22 19:46:29.299686755 +0200
@@ -66,11 +66,15 @@
#define DRIVER_AUTHOR "Qualcomm Innovation Center"
#define DRIVER_DESC "GobiNet"
+#ifdef bool
+#undef bool
+#endif
@KellyLSB
KellyLSB / example.php
Created August 19, 2011 15:43 — forked from mloberg/example.php
A simple Postmark PHP Class
<?php
require("postmark.php");
$postmark = new Postmark("your-api-key","from-email","optional-reply-to-address");
if($postmark->to("reciver@example.com")->subject("Email Subject")->plain_message("This is a plain text message.")->send()){
echo "Message sent";
}