Skip to content

Instantly share code, notes, and snippets.

@ArturDorochowicz
ArturDorochowicz / mf28x_find_deltas.py
Created December 30, 2023 22:16 — forked from Leo-PL/mf28x_find_deltas.py
Delta update finder for ZTE MF283+, MF286, MF286A and MF286D routers
#!/usr/bin/python3
# Original script by frutis, mods by Leo-PL
# Usage:
# 1. uncomment proper section for your router (MF283+, MF286, MF286A, MF286D).
# 2. set correct IME if you have one
# 3. Set correct version ID (the integrate_version from NVRAM) for your device if not already found here
# 4. Run the script - it shall return the URL of data update, if available for the set base version.
from base64 import b64decode, b64encode
@ArturDorochowicz
ArturDorochowicz / installing-teamcity-on-windows.md
Last active December 20, 2016 23:06
Installing a TeamCity server on Windows.
@ArturDorochowicz
ArturDorochowicz / add-certificate-to-java-cert-store.md
Last active December 13, 2022 07:12
Adding a certificate to JRE trusted certificates stores.

Add certificate to JRE trusted certificates store

The default JRE store is in:

<JRE>\lib\security\cacerts

Add a certificate with keytool:

<JRE>\bin\keytool.exe -importcert -file my-cert.cer -alias 'My cert' -keystore <JRE>\lib\security\cacerts
@ArturDorochowicz
ArturDorochowicz / install-pivotal-project-monitor.md
Last active March 31, 2020 19:32
Installing Pivotal Project Monitor on Bitnami Ruby Stack VM in Azure.
@ArturDorochowicz
ArturDorochowicz / certificates.md
Last active March 31, 2020 19:33
Creating SSL certificates with OpenSSL and other notes on creating certificates.