Skip to content

Instantly share code, notes, and snippets.

View sashker's full-sized avatar
💭
Work on Recorn project

Alexander Mustafin sashker

💭
Work on Recorn project
  • Recorn
  • Cyprus
View GitHub Profile
@escopecz
escopecz / form.html
Last active August 11, 2025 15:31
An example of how to send a form submission to a Mautic form with jQuery
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mautic Form Test</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
@andrewmilson
andrewmilson / file-upload-multipart.go
Last active June 28, 2025 18:41
Golang multipart/form-data File Upload
package main
import (
"net/http"
"os"
"bytes"
"path"
"path/filepath"
"mime/multipart"
"io"