Skip to content

Instantly share code, notes, and snippets.

@vincios
vincios / windows_fix.md
Last active May 1, 2026 15:46
Windows fUxs

Windows Fix

A collection of common fixs to Windows shitty errors.

[WINDOWS 7] kernell32.dll not found

TL;DR

install this fix: x86 x64

Source

See this video.

@vincios
vincios / OMAlert.ps1
Last active July 25, 2023 17:32
Dell OMSA (OpenManage Server Administrator) script to send EMAIL alerts
#begin PS script
### README
### Copy this script in a known location. Set its path into the $ScriptPath variable below.
### You must run "Set-ExecutionPolicy RemoteSigned" or "Set-ExecutionPolicy Unrestricted" on the server first, or the script will not run automatically. ###
### For Dell OpenManage Administrator use, run the script manually once with the -configure option to set the script in the OpenManage application. Example: "OMAlert.ps1 -configure". ###
### Edit the $AlertConfig variable to choose which alerts you want to enable.
### Rerun the script manually if you change any of the information in the Body section. ###
### To test script, you can either pull a redundant power supply, or change the temperature warning (just make sure to change it back)OR by running .\OMAlert.ps1 'Power Supply Failure' from within PowerShell. ###
### Tested with 64bit Only as of 2020-01-14.
@vincios
vincios / E2.md
Last active December 1, 2023 17:22
E2

Base URL:

@vincios
vincios / leaflet-note.md
Last active May 3, 2023 15:14
Leaflet-note

Leaflet

Leaflet è una libreria javascript che permette di integrare mappe interattive in pagine web.

Leaflet mette a disposizione una vasta libreria di funzioni che permettono aggiungere, visualizzare, modificare e interagire con oggetti georeferenziati, mappe, layers e controlli in pagine web. Inoltre, offre un cospicuo numero di eventi che permettono di "reagire" alle interazioni che l'utente effettua sulle mappe.

Tutte operazioni sulle mappe vengono effettuate tramite script JavaScript, semplicemente eseguendo le funzioni messe a disposizione dalla libreria. Sarà quest'ultima poi ad occuparsi di inserire nella pagina web tutti gli elementi html necessari per visualizzare e interagire con gli oggetti delle mappe.

Setup

@vincios
vincios / tips.md
Last active August 7, 2024 16:52
Q5 Calibration Tips

Q5 Calibration tips

Questa guida aggiunge alcuni suggerimenti e integrazioni alle guide di Foxies e di Ellis.

Tensione Molla Estrusore

Non è chiaro quanto la molla deve essere stretta, tuttavia sembra che sia meglio stringere il meno possibile, evitando comunque che il motore perda passi o che il filamento scivoli.

Una buona impostazione sembra essere la seguente.

Posizione di partenza: molla completamente lasca, segnare con un pennarello due tacche che corrispondono: una sull'estrusore e una sulla ruota.

@vincios
vincios / 0-README.md
Last active December 7, 2022 01:12
QNAP Guide

QNAP Guide

Run a script at NAS startup

The QNAP nas have a autorun.sh script into the DOM that will execute at each nas startup. Read more here.

To enable this, use this script: https://github.com/onecdonly/create-autorun.

It basically creates an autorun.sh file into the .system/autorun folder of your NAS System HDD that runs al the scripts found in a folder scripts near the autorun.sh file. This autoun.sh is then linked to the system DOM autorun.sh file.

For example, you can create a script [YOUR_SYSTEM_HDD]/.system/autorun/scripts/000-example.sh that will run at each startup of your NAS.

@vincios
vincios / Pygeoapi Complete Setup.md
Created April 4, 2022 12:18
Integration to the official pygeoapi setup installation guide (https://docs.pygeoapi.io/en/latest/installation.html). This gist adds to the official installation guide support for GDAL, rasterio, Geopackage and a fix for a server cors error connecting through a client.

Pygeoserver setup

  1. git clone https://github.com/geopython/pygeoapi.git

  2. cd pygeoapi

  3. python -m venv venv

  4. .\venv\Scripts\Activate.ps1

  5. Download GDAL and rasterio wheels into pygeoapi folder

    NOTE: Download cpXY version for python X.Y

  6. Install them with pip