Skip to content

Instantly share code, notes, and snippets.

View eruffaldi's full-sized avatar

Emanuele Ruffaldi eruffaldi

View GitHub Profile
@eruffaldi
eruffaldi / wrappedarray.py
Last active March 31, 2025 11:44
Allows to manipulate array element as a single object
# WrappedArray by Emanuele Ruffaldi 2025
#
# Allows to execute function on all elements of an array
from typing import Callable, Any
class WrapperArray:
def __init__(self, items):
self.items = items
def __repr__(self):
@eruffaldi
eruffaldi / removestrikeouts.py
Created February 16, 2025 11:13
Remove Strikeouts from Excel in Python
# given excel file removes strikeout
# Emanuele Ruffaldi MMI 2025
# requires openpyxl
# Tested with 3.10.12 and openpyxl 3.1.4
#
import sys
from openpyxl import load_workbook
from openpyxl.styles import Font
from openpyxl.cell.rich_text import Text, CellRichText
import shutil
@eruffaldi
eruffaldi / make_secret.sh
Last active February 4, 2025 11:32
Encrypted Environment Variable files. Use make_secret.sh example.env to obtain example.env_decrypt.env. Then source the file to evaluate it. Example provided
#!/bin/bash
# Simple env encrypt
# Emanuele Ruffaldi 2025
# Check if a filename is provided
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <filename>"
exit 1
fi
@eruffaldi
eruffaldi / convert.bash
Created October 9, 2024 13:17
ffmpeg from images with size fix
ffmpeg -framerate 1 -pattern_type glob -i "*.jpg" -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2" -c:v libx264 -q:v 0 -r 60 output.mp4
@eruffaldi
eruffaldi / mp4atoms.py
Last active September 23, 2024 09:59
Dump MP4 Atoms Structure
# Emanuele Ruffaldi 2024
import mmap
import json
import os
import struct
import sys
def extract_boxes(mp4_file,offset=0,size=None):
"""
Parse the MP4 file and extract all boxes.
@eruffaldi
eruffaldi / lookup_cell_color.ocs
Created April 6, 2024 15:27
Excel Lookup Cell Color
function main(workbook: ExcelScript.Workbook) {
// Specify the sheet names
let mainSheetName = "System Items";
let lookupSheetName = "Foglio1";
// Get the sheets
let mainSheet = workbook.getWorksheet(mainSheetName);
let lookupSheet = workbook.getWorksheet(lookupSheetName);
// Get used ranges (assuming data starts from row 1)
@eruffaldi
eruffaldi / vacations.ocs
Created April 5, 2024 16:15
Excel Vacations
function main(workbook: ExcelScript.Workbook) {
// Specify the worksheet name
let worksheetNameS = "Foglio2"; // Adjust the sheet name as necessary
let worksheetS = workbook.getWorksheet(worksheetNameS);
// Specify the worksheet name
let worksheetNameD = "Foglio1"; // Adjust the sheet name as necessary
let worksheetD = workbook.getWorksheet(worksheetNameD);
// Starting and ending cells in the column containing the range addresses
@eruffaldi
eruffaldi / Excel Lambda
Created January 9, 2024 08:11
Calculate solid angle of Rotation Roll-Pitch-Yaw in Excel
=LAMBDA(r,p,y,ARCCOS((COS(p)*COS(r)+COS(p)*COS(y)+COS(y)*COS(r)+SEN(p)*SEN(r)*SEN(y)-1)/2))(A3,B3,C3)
@eruffaldi
eruffaldi / openssh-build-static.sh
Last active January 4, 2024 07:23 — forked from fumiyas/openssh-build-static.sh
Build OpenSSH with static linked zlib and OpenSSL libraries
#!/usr/bin/env bash
# Dependencies: curl gcc make autoconf
#
# Changes: 2024-01-03 Emanuele Ruffald
# Updated to latest libraries, modified for building openssh, added some if for debugging
set -uex
umask 0077
ZLIB_VERSION=1.3
@eruffaldi
eruffaldi / JSON
Created December 27, 2023 16:54
Add tilde shortcut to Visual Studio for Code
// Run command Open Keyboard Shortcuts (JSON)
// AltGr+ì is oem_6 ==> use Open Keyboard Shortcuts , select record key and press the shortcut
[
{ "key": "oem_6",
"command": "editor.action.insertSnippet",
"when": "editorTextFocus",
"args": {
"snippet": "~"
}
]