Skip to content

Instantly share code, notes, and snippets.

View courtesysoft's full-sized avatar
💭
Cooking

Courtesy Soft courtesysoft

💭
Cooking
  • Courtesy Software
  • Utah, USA
  • 22:12 (UTC -12:00)
View GitHub Profile
@courtesysoft
courtesysoft / gist:e2d79a67f6ad25d66f7dc94d3cf7e58a
Created August 10, 2026 16:29
Shooter game produced with Deepseek V4 Flash 0731 IQ4_XS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DeepSeek Shooter</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #05060f;
@courtesysoft
courtesysoft / elavonCurl.php
Created April 6, 2023 21:07
Communicate to Elavon Converge XML API using raw PHP
//This should successfully connect to Elavon's Converge system using the XML api, as of 04/05/2023
//As of today, this isn't documented in: https://developer.elavon.com/na/docs/converge/1.0.0/integration-guide/integration_methods/xmlapi
//Please give this a star on github if i saved you a headache!
$postData = [];
$postData['ssl_merchant_id'] = "";
$postData['ssl_user_id'] = "";
$postData['ssl_pin'] = "";
$postData['ssl_transaction_type'] = "ccsale";
$postData['ssl_amount'] = "1.00";