Skip to content

Instantly share code, notes, and snippets.

View ccaglayan's full-sized avatar
🎯
Focusing

Çağlar Çağlayan ccaglayan

🎯
Focusing
View GitHub Profile
@ZeusAFK
ZeusAFK / ZeusAFK_Multiclient.cs
Created August 24, 2012 14:25
USKO Knight Online World Multiclient source code in C#.NET by ZeusAFK
// By ZeusAFK
// Multiclient ARP patch source code for knight online
// For fun and learning only
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
@drewjoh
drewjoh / example.php
Last active March 21, 2025 00:11 — forked from ivorisoutdoors/example.php
A Simple Postmark PHP Class with Attachments
<?php
require("postmark.php");
$postmark = new Postmark("your-api-key","from-email","optional-reply-to-address");
$result = $postmark->to("[email protected]")
->subject("Email Subject")
->plain_message("This is a plain text message.")
->attachment('File.pdf', base64_encode(file_get_contents('sample.pdf')), 'application/pdf')
@tbranyen
tbranyen / client.js
Created June 3, 2011 02:29
Synchronize yo HTML5 slides
(function(window, document) {
// The end user should be allowed to disable synchronization. This button
// is optional on the page
var syncAllow = true;
var syncButton = document.querySelector('.sync-button');
// If the sync button exists bind a click event and toggle the syncAllow
// boolean. Set the value of the button.
if(syncButton) {