This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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": "~" | |
} | |
] |
NewerOlder