Skip to content

Instantly share code, notes, and snippets.

View kinoute's full-sized avatar
🐉
playing with Ghidra

Yann Defretin kinoute

🐉
playing with Ghidra
View GitHub Profile
@kinoute
kinoute / helpers.c
Created June 10, 2020 21:04
Harvard CS50 filters
#include "helpers.h"
#include <stdio.h>
#include <math.h>
// Convert image to grayscale
void grayscale(int height, int width, RGBTRIPLE image[height][width])
{
for (int i = 0; i < height; i++)
{
for (int j = 0; j < width; j++)
@kinoute
kinoute / syntax-highlighting-languages.md
Created June 21, 2020 16:47
A list of code blocks from many languages to, for example, test a custom theme and see how it renders the code for each language.

Syntax Highlighting in Markdown

A list of code blocks from many languages to, for example, test a custom theme and see how it renders the code for each language.

Bash

#!/bin/bash
@kinoute
kinoute / style.css
Created April 21, 2021 22:46
Add a wrapper around tables to allow overflow on Jekyll websites
.table-wrapper {
overflow: auto;
padding-top: 10px;
padding-bottom: 10px;
}
@kinoute
kinoute / kill-idle-rabbitmq-connections.sh
Last active December 27, 2022 14:30
Kill idle RabbitMQ connections
#!/usr/bin/env bash
check_connection() {
PID=$(echo "$1" | awk '{print $1}')
SOURCE=$(echo "$1" | awk '{print $2}')
SOURCE_STATUS=$(curl --silent --fail "$SOURCE" --max-time 1 > /dev/null)
# Status code returned when a timeout occurs
if [[ $? -eq 28 ]]; then
@kinoute
kinoute / docker.tf
Created November 29, 2023 06:36 — forked from phumberdroz/docker.tf
Terraform populate Docker Credentials in all Namespaces
variable "docker_password" {}
data "kubernetes_all_namespaces" "allns" {}
resource "kubernetes_secret" "docker_secrets" {
for_each = toset(data.kubernetes_all_namespaces.allns.namespaces)
metadata {
name = "gitlab-cloud"
namespace = each.value
}