Skip to content

IT Tools

There are certain tasks every developer has to do that often get completed thanks to free online utilities that do things like return the hash of a string, convert markdown data, calculate epoch timestamps, and more. Most of these online tools are littered with ads in order to make the author money.

While setting up my homelab, I came across Corentin Thomasset’s “IT Tools” collection. Available as a docker container, I was able to set up these really nicely designed tools on my local network so I don’t need to use 3rd party cloud options.

Installing

This docker-compose.yml file is all I needed:

services:
  it-tools:
    image: corentinth/it-tools
    container_name: it-tools
    ports:
      - "8088:80"
    restart: unless-stopped

to get it running.

What it includes:

Here’s what it provides (so far!):

Benchmark

  • Benchmark builder

Converter

  • Date-time converter
  • Integer base converter
  • Roman numeral converter
  • Base64 string encoder/decoder
  • Base64 file converter
  • Color converter
  • Case converter
  • Text to NATO alphabet
  • Text to ASCII binary
  • Text to Unicode
  • YAML → JSON converter
  • YAML → TOML converter
  • JSON → YAML converter
  • JSON → TOML converter
  • TOML → JSON converter
  • TOML → YAML converter
  • XML → JSON converter
  • JSON → XML converter
  • Markdown → HTML
  • List converter

Crypto

  • Token generator
  • Hash text
  • Bcrypt
  • UUIDs generator
  • ULID generator
  • Encrypt / decrypt text
  • BIP39 passphrase generator
  • Hmac generator
  • RSA key pair generator
  • Password strength analyser
  • PDF signature checker

Data

  • Phone parser and formatter
  • IBAN validator and parser

Development

  • Git cheatsheet
  • Random port generator
  • Crontab generator
  • JSON prettify and format
  • JSON minify
  • JSON → CSV
  • SQL prettify and format
  • Chmod calculator
  • Docker run → Docker compose converter
  • XML formatter
  • YAML prettify and format
  • Email normalizer
  • Regex tester
  • Regex cheatsheet

Images & Videos

  • QR code generator
  • WiFi QR code generator
  • SVG placeholder generator
  • Camera recorder

Math

  • Math evaluator
  • ETA calculator
  • Percentage calculator

Measurement

  • Chronometer
  • Temperature converter

Network

  • IPv4 subnet calculator
  • IPv4 address converter
  • IPv4 range expander
  • MAC address lookup
  • MAC address generator
  • IPv6 ULA generator

Text

  • Lorem ipsum generator
  • Text statistics
  • Emoji picker
  • String obfuscator
  • Text diff
  • Numeronym generator
  • ASCII art text generator

Web

  • Encode / decode URL-formatted strings
  • Escape HTML entities
  • URL parser
  • Device information
  • Basic auth generator
  • Open graph meta generator
  • OTP code generator
  • MIME types
  • JWT parser
  • Keycode info
  • Slugify string
  • HTML WYSIWYG editor
  • User-agent parser
  • HTTP status codes
  • JSON diff
  • Outlook Safelink decoder

Don’t want to self host?

If you don’t want to self-host your own copy of the site, you can always use the tools at https://it-tools.tech/

One Comment

  1. @shooper I have it available for the public, on my VPS! Great tools ❤

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.