<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Skyhighjinks-Dev</title>
    <description>The latest articles on DEV Community by Skyhighjinks-Dev (@skyhighjinksdev).</description>
    <link>https://dev.to/skyhighjinksdev</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3755047%2Fcee8ee36-ae79-4118-b32a-27acb77ae490.png</url>
      <title>DEV Community: Skyhighjinks-Dev</title>
      <link>https://dev.to/skyhighjinksdev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/skyhighjinksdev"/>
    <language>en</language>
    <item>
      <title>I Built 25 Developer Tools That Never See Your Data</title>
      <dc:creator>Skyhighjinks-Dev</dc:creator>
      <pubDate>Sat, 07 Feb 2026 13:21:47 +0000</pubDate>
      <link>https://dev.to/skyhighjinksdev/i-built-25-developer-tools-that-never-see-your-data-564n</link>
      <guid>https://dev.to/skyhighjinksdev/i-built-25-developer-tools-that-never-see-your-data-564n</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gh"&gt;# I Built 25 Developer Tools That Never See Your Data&lt;/span&gt;

&lt;span class="gu"&gt;## The Problem&lt;/span&gt;

Ever pasted a production JWT into an online decoder? Or tested a regex against sensitive log data on some random website? Then spent the next hour wondering if you just leaked credentials?

Yeah, me too.

&lt;span class="gu"&gt;## The Solution&lt;/span&gt;

I built &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Nyx Development&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://nyx-development.uk&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; — a collection of developer tools that run &lt;span class="gs"&gt;**entirely in your browser**&lt;/span&gt;. No server processing. No logging. No tracking.

&lt;span class="gu"&gt;## What's Inside (14 Tools)&lt;/span&gt;

&lt;span class="gu"&gt;### Text &amp;amp; Data&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**JSON Formatter**&lt;/span&gt; - Validate, format, and minify JSON
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**Regex Tester**&lt;/span&gt; - Real-time pattern matching with JavaScript flavor
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**Markdown Preview**&lt;/span&gt; - Live markdown rendering

&lt;span class="gu"&gt;### Encoding&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**Base64 Encoder/Decoder**&lt;/span&gt; - Standard Base64 operations
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**URL Encoder/Decoder**&lt;/span&gt; - Percent encoding for URLs

&lt;span class="gu"&gt;### Security&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**JWT Decoder**&lt;/span&gt; - Inspect JSON Web Tokens safely
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**Hash Generator**&lt;/span&gt; - MD5, SHA1, SHA256 checksums
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**Password Generator**&lt;/span&gt; - Cryptographically random passwords

&lt;span class="gu"&gt;### Generators&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**UUID Generator**&lt;/span&gt; - Generate v4 UUIDs
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**Lorem Ipsum**&lt;/span&gt; - Placeholder text for mockups

&lt;span class="gu"&gt;### Design&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**Color Converter**&lt;/span&gt; - Convert between HEX, RGB, HSL with live preview

&lt;span class="gu"&gt;### Code Tools&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**CSS Minifier**&lt;/span&gt; - Minify and beautify CSS
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**HTML Formatter**&lt;/span&gt; - Format and compress HTML

&lt;span class="gu"&gt;### Date &amp;amp; Time&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="gs"&gt;**Unix Timestamp Converter**&lt;/span&gt; - Convert epoch to human-readable dates

&lt;span class="gu"&gt;## Technical Approach&lt;/span&gt;

&lt;span class="gs"&gt;**Stack:**&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Vanilla JavaScript (no framework dependencies)
&lt;span class="p"&gt;-&lt;/span&gt; Static hosting on Cloudflare Pages
&lt;span class="p"&gt;-&lt;/span&gt; Zero backend infrastructure

&lt;span class="gs"&gt;**Privacy by design:**&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; All processing happens in the browser
&lt;span class="p"&gt;-&lt;/span&gt; No analytics cookies
&lt;span class="p"&gt;-&lt;/span&gt; No user tracking
&lt;span class="p"&gt;-&lt;/span&gt; No data transmission to servers

&lt;span class="gs"&gt;**Developer-friendly:**&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Machine-readable catalog at &lt;span class="sb"&gt;`/tools.json`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Schema.org markup for AI/CLI integration
&lt;span class="p"&gt;-&lt;/span&gt; Mobile responsive
&lt;span class="p"&gt;-&lt;/span&gt; Works offline (after first load)

&lt;span class="gu"&gt;## Why Vanilla JS?&lt;/span&gt;

Every framework adds complexity. For simple utilities, vanilla JS is:
&lt;span class="p"&gt;-&lt;/span&gt; Faster to load
&lt;span class="p"&gt;-&lt;/span&gt; Easier to maintain
&lt;span class="p"&gt;-&lt;/span&gt; More accessible
&lt;span class="p"&gt;-&lt;/span&gt; Less likely to break with updates

&lt;span class="gu"&gt;## Use Cases&lt;/span&gt;

These tools are specifically useful when you're working with:
&lt;span class="p"&gt;-&lt;/span&gt; Production credentials (JWT tokens, API keys)
&lt;span class="p"&gt;-&lt;/span&gt; Sensitive configuration files
&lt;span class="p"&gt;-&lt;/span&gt; Internal log data
&lt;span class="p"&gt;-&lt;/span&gt; Private code snippets

Basically, any time you &lt;span class="ge"&gt;*need*&lt;/span&gt; a tool but shouldn't trust a random website with your data.

&lt;span class="gu"&gt;## What's Next&lt;/span&gt;

Currently exploring:
&lt;span class="p"&gt;-&lt;/span&gt; Diff viewer
&lt;span class="p"&gt;-&lt;/span&gt; CSV/TSV converter
&lt;span class="p"&gt;-&lt;/span&gt; SQL formatter
&lt;span class="p"&gt;-&lt;/span&gt; API request builder

&lt;span class="gu"&gt;## Try It&lt;/span&gt;

&lt;span class="gs"&gt;**Live site:**&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;nyx-development.uk&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://nyx-development.uk&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="gs"&gt;**API catalog:**&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;tools.json&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://nyx-development.uk/tools.json&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="gu"&gt;## Feedback Welcome&lt;/span&gt;

What tools are you currently using sketchy websites for? What would you want in this format?

Drop a comment or open an issue. Always looking to expand the collection based on actual developer needs.
&lt;span class="p"&gt;
---
&lt;/span&gt;
&lt;span class="ge"&gt;*Built with ☕ and a healthy distrust of third-party tool websites.*&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>privacy</category>
      <category>tools</category>
      <category>javascript</category>
    </item>
    <item>
      <title>I Built 14 Free Developer Tools That Run Entirely in Your Browser</title>
      <dc:creator>Skyhighjinks-Dev</dc:creator>
      <pubDate>Thu, 05 Feb 2026 19:30:48 +0000</pubDate>
      <link>https://dev.to/skyhighjinksdev/i-built-14-free-developer-tools-that-run-entirely-in-your-browser-4okm</link>
      <guid>https://dev.to/skyhighjinksdev/i-built-14-free-developer-tools-that-run-entirely-in-your-browser-4okm</guid>
      <description>&lt;p&gt;Every developer has been there — you need to quickly format some JSON, decode a JWT, or check a regex pattern. You Google it, land on a site plastered with ads, wonder if your data is being logged, and reluctantly paste your API response anyway.&lt;/p&gt;

&lt;p&gt;I decided to fix this for myself by building &lt;a href="https://nyx-development.uk/dev-tools/tools/" rel="noopener noreferrer"&gt;Nyx Dev Tools&lt;/a&gt; — a collection of 14 free developer utilities that run entirely client-side.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Tools
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;What It Does&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;JSON Formatter&lt;/td&gt;
&lt;td&gt;Format, validate, and minify JSON&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Base64 Encoder/Decoder&lt;/td&gt;
&lt;td&gt;Encode and decode Base64 strings&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;UUID Generator&lt;/td&gt;
&lt;td&gt;Generate random v4 UUIDs&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Hash Generator&lt;/td&gt;
&lt;td&gt;MD5, SHA1, SHA256 hash generation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Regex Tester&lt;/td&gt;
&lt;td&gt;Real-time regex matching with highlighting&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;JWT Decoder&lt;/td&gt;
&lt;td&gt;Decode and inspect JWT tokens&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Timestamp Converter&lt;/td&gt;
&lt;td&gt;Unix timestamp ↔ human dates&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;URL Encoder/Decoder&lt;/td&gt;
&lt;td&gt;Percent-encode/decode URLs&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Color Converter&lt;/td&gt;
&lt;td&gt;Convert between HEX, RGB, HSL&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Markdown Preview&lt;/td&gt;
&lt;td&gt;Live markdown editor with preview&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Password Generator&lt;/td&gt;
&lt;td&gt;Cryptographically random passwords&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Lorem Ipsum Generator&lt;/td&gt;
&lt;td&gt;Configurable placeholder text&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CSS Minifier&lt;/td&gt;
&lt;td&gt;Minify and beautify CSS&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;HTML Formatter&lt;/td&gt;
&lt;td&gt;Format and minify HTML&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Why Client-Side Matters
&lt;/h2&gt;

&lt;p&gt;Every tool runs in your browser using JavaScript. Your data never leaves your machine. No server processing, no logging, no "we may use your input to improve our service."&lt;/p&gt;

&lt;p&gt;This matters when you're pasting:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;API responses with auth tokens&lt;/li&gt;
&lt;li&gt;JWT tokens from production&lt;/li&gt;
&lt;li&gt;Database query results&lt;/li&gt;
&lt;li&gt;Configuration files with secrets&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Stack
&lt;/h2&gt;

&lt;p&gt;Deliberately minimal:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;HTML/CSS/JS&lt;/strong&gt; — no React, Vue, or any framework&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cloudflare Pages&lt;/strong&gt; — free hosting, global CDN&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No build step&lt;/strong&gt; — edit a file, deploy&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No dependencies&lt;/strong&gt; — zero npm packages&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each tool is a single HTML file with embedded JavaScript. No bundler, no transpiler, no node_modules.&lt;/p&gt;

&lt;h2&gt;
  
  
  Developer Guides
&lt;/h2&gt;

&lt;p&gt;I also wrote 15 reference guides that pair with the tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://nyx-development.uk/dev-tools/blog/git-commands-cheat-sheet/" rel="noopener noreferrer"&gt;Git Commands Cheat Sheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://nyx-development.uk/dev-tools/blog/regex-guide/" rel="noopener noreferrer"&gt;Regex Guide&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://nyx-development.uk/dev-tools/blog/docker-commands/" rel="noopener noreferrer"&gt;Docker Commands&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://nyx-development.uk/dev-tools/blog/sql-cheat-sheet/" rel="noopener noreferrer"&gt;SQL Cheat Sheet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://nyx-development.uk/dev-tools/blog/css-grid-flexbox/" rel="noopener noreferrer"&gt;CSS Grid &amp;amp; Flexbox&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://nyx-development.uk/dev-tools/blog/http-status-codes/" rel="noopener noreferrer"&gt;HTTP Status Codes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://nyx-development.uk/dev-tools/blog/jwt-security/" rel="noopener noreferrer"&gt;JWT Security&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;And more on Base64, UUIDs, timestamps, markdown, HTML colors, and environment variables&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;Planning to add:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Cron expression builder&lt;/strong&gt; — visual cron schedule creator&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Diff checker&lt;/strong&gt; — compare two text blocks&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;QR code generator&lt;/strong&gt; — generate QR codes client-side&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Image to Base64&lt;/strong&gt; — convert images without uploading&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try It Out
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;strong&gt;&lt;a href="https://nyx-development.uk" rel="noopener noreferrer"&gt;nyx-development.uk&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;All tools are free, no signup required. If there's a tool you'd want added, let me know in the comments.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>tools</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Nyx Development Tools and Info!</title>
      <dc:creator>Skyhighjinks-Dev</dc:creator>
      <pubDate>Thu, 05 Feb 2026 14:35:55 +0000</pubDate>
      <link>https://dev.to/skyhighjinksdev/nyx-development-tools-and-info-2cn1</link>
      <guid>https://dev.to/skyhighjinksdev/nyx-development-tools-and-info-2cn1</guid>
      <description>&lt;p&gt;I have made a new website that I am hoping to keep on expanding with more topics/knowledge as a single source of information for a lot key tools and technologies that I've learnt/experienced over the last 6 years of professional development!&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://nyx-development.uk/" rel="noopener noreferrer"&gt;https://nyx-development.uk/&lt;/a&gt;&lt;br&gt;
I am not a web developer by nature, I am much closer to a .NET full stack developer with a heavy lean on backend development work, so if there are any issues please do let me know.&lt;/p&gt;

&lt;p&gt;In addition to that, if you wish to see any other content, feel free to add suggestions!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
      <category>docker</category>
    </item>
  </channel>
</rss>
