Skip to content

Instantly share code, notes, and snippets.

View antoineMoPa's full-sized avatar

Antoine M-P antoineMoPa

  • Sherbrooke, Québec, Canada
View GitHub Profile
@antoineMoPa
antoineMoPa / wgsl.md
Last active January 6, 2024 18:53
WGSL vector math utils

WGSL SDF/vector math utils

Please report any issues

Vector Projection

fn position_in_camera_plane(p: vec3<f32>) -> vec2<f32> {
 return vec2(dot(p, camera_right.xyz), dot(p, camera_up.xyz));
@antoineMoPa
antoineMoPa / crawl.sh
Last active December 20, 2023 16:55
Bash Web Crawler
# bash web crawler
# $ bash crawl.sh http://example.com
rm urls.txt
rm sub-urls.txt
rm sub-2-urls.txt
site=$1
function visit(){
@antoineMoPa
antoineMoPa / .gitconfig
Created October 25, 2023 20:32
Recent git branches alias
# Add this to your .gitconfig and use `git recent-branches`
[alias]
recent-branches = branch -v --sort=-committerdate
@antoineMoPa
antoineMoPa / debug-on-property-set.js
Last active October 15, 2023 16:56
Javascript debug on property set (debug on property changer)
const object_to_watch = obj; // Change to the object you are inspecting
const property_to_watch = 'example'; // Change to the property name in the object you are inspecting (here obj.example)
// Store the original value
object_to_watch.__storedValue = object_to_watch[property_to_watch];
Object.defineProperty(object_to_watch, property_to_watch, {
get() {
return this.__storedValue;
},
@antoineMoPa
antoineMoPa / Reproducing Flaky Tests.md
Last active August 10, 2023 16:50
Reproducing Flaky Tests

Reproducing Flaky Tests Tips and Tricks

Use a slower machine

Some time-sensitive test may be easier to reproduce on slower machines.

-resource_class: large
+resource_class: medium
@antoineMoPa
antoineMoPa / get_multipart_file.cpp
Last active June 18, 2023 17:40
C++ to decode HTTP multipart form data from stdin to a file named data.tmp (no dependencies)
/**
* Copyright 2022 Antoine Morin-Paulhus
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH
@antoineMoPa
antoineMoPa / index.html
Created June 18, 2023 13:11
index.html (cities)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body{
padding: 0;
margin: 0;
}
</style>
ARCH=$(uname -m)
echo "Detected OS: GNU/Linux"

if [[ "$ARCH" == "x86_64" ]]; then
    echo "Detected 64 bit intel"
    BINARIES_URL="https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2023-04-19-14-14/ffmpeg-n5.1.3-6-g1e413487bf-linux64-gpl-shared-5.1.tar.xz -O ffmpeg.tar.xz"
elif [[ "$ARCH" == "aarch64" ]]; then
    # ARM linux setup
 echo "Detected ARM"