Skip to content

Instantly share code, notes, and snippets.

View pstch's full-sized avatar
🔥
/dev/null

pistache pstch

🔥
/dev/null
View GitHub Profile
@pstch
pstch / deepmerge.py
Created August 13, 2017 05:18
Python deepmerge algorithm
#!/usr/bin/env python
"""Deep merge algorithm -- Merges multiple values, combining dictionaries by
theirs keys, tuples by their indices, chaining lists and sets, and
replacing by the last merged value for any other type.
"""
# 0. Imports & metadata
# =============================================================================
@pstch
pstch / zfs_gpf
Created September 14, 2017 15:28
[ 8528.864841] general protection fault: 0000 [#1] SMP
[ 8528.869202] Modules linked in: dm_mod fuse btrfs xor raid6_pq ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs xfs libcrc32c ext4 crc16 jbd2 crc32c_generic fscrypto ecb lrw gf128mul glue_helper ablk_helper cryptd aes_x86_64 mbcache amdkfd radeon ttm ipmi_devintf kvm_intel iTCO_wdt iTCO_vendor_support drm_kms_helper kvm drm dcdbas irqbypass i2c_algo_bit lpc_ich mfd_core i5000_edac edac_core pcspkr sg serio_raw evdev joydev i5k_amb rng_core shpchp ipmi_si ipmi_msghandler button acpi_cpufreq ip_tables x_tables autofs4 zfs(PO) zunicode(PO) zavl(PO) icp(PO) zcommon(PO) znvpair(PO) spl(O) sr_mod cdrom sd_mod uas usb_storage hid_generic usbhid hid psmouse uhci_hcd ehci_pci ehci_hcd mptsas scsi_transport_sas usbcore mptscsih mptbase usb_common scsi_mod bnx2
[ 8528.893864] CPU: 2 PID: 330 Comm: z_rd_int_7 Tainted: P O 4.9.0-3-amd64 #1 Debian 4.9.30-2+deb9u2
[ 8528.893864] Hardware name: Dell Inc. PowerEdge 2950/0NH278, BIOS 1.1.0 06/21/2006
[ 852
@pstch
pstch / plaquage_nuage_de_points_sur_plan.md
Created May 29, 2018 15:35
Détermination d'un algorithme permettant de "plaquer" un nuage de points sur un plan
  • points N := nuage de points cible

  • point G := centre de gravité du nuage de points N

  • plan P := plan pointant vers Z, passant par le point le plus bas du nuage de points N

  • début boucle (détermination du premier point de contact)

    • droite xGA := perpendiculaire dans le plan P à (GA)

    • angle aGA := plus petit angle qui fait entrer d'autres points de N en contact avec le plan

    • appliquer une rotation d'axe xGA et d'angle aGA au plan P

  • B := barycentre des points de N en contact avec P (sauf A)
@pstch
pstch / stream-replace.sh
Last active July 18, 2023 11:35
Pipe a file to a process "in-place"
#!/usr/bin/env bash
# stream-replace.sh -- pipe a file to a process "in-place", using fallocate
#
# Copyright (C) 2020 Hugo Geoffroy "pistache" <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
@pstch
pstch / utils.nix
Created November 19, 2020 20:49
Filtering circular definitions in nested data structures (Nix)
{ lib }:
with builtins;
with lib;
rec {
# Common predicates
nonEmpty = x: length x > 0;
nonEmptyAttrs = x: isAttrs x && nonEmpty (attrNames x);
nonEmptyList = x: isList x && nonEmpty x;
@pstch
pstch / compact_message.rs
Created February 17, 2023 16:29
compact serialization for mail-parser
use serde::{Serialize, Deserialize};
use std::borrow::Cow;
use mail_parser::{Message, MessagePart, MessagePartId, PartType, Header, Encoding as MimeEncoding, MimeHeaders};
use mail_parser::decoders::{base64::base64_decode, quoted_printable::quoted_printable_decode};
use encoding_rs::{Encoding as TextEncoding, UTF_8};
// TODO:
// - add criterion benchmark, especially to compare deserialization+conversion
// to Message::parse