Skip to content

Instantly share code, notes, and snippets.

View mathisve's full-sized avatar
☁️
Code & Cloud

Mathis Van Eetvelde mathisve

☁️
Code & Cloud
View GitHub Profile
@mathisve
mathisve / lambdaS3.go
Created August 20, 2020 12:51
download an image to S3 using Serverless Lambda in Golang
package main
import (
"fmt"
"github.com/aws/aws-lambda-go/lambda"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
@mathisve
mathisve / Chat.sql
Last active August 20, 2020 12:45
CoreProtect SQL queries
USE logging;
SELECT
DATE(FROM_UNIXTIME(co_chat.time)),
co_user.user,
message
FROM
co_chat
LEFT JOIN co_user
ON co_user.rowid = co_chat.user
@mathisve
mathisve / insert.go
Last active March 15, 2024 04:28
Golang script to rapidly insert data into a MySQL database
package main
import (
"bufio"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"sync"
// "math/rand"