<?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: Txordy</title>
    <description>The latest articles on DEV Community by Txordy (@txordy).</description>
    <link>https://dev.to/txordy</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%2F2105707%2F4f2898ed-6a6a-4b3c-bc51-8fa5791fbf31.png</url>
      <title>DEV Community: Txordy</title>
      <link>https://dev.to/txordy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/txordy"/>
    <language>en</language>
    <item>
      <title>I Built ExtraTools.dev – Privacy-Focused Dev Tools That Run 100% in Your Browser 🚀</title>
      <dc:creator>Txordy</dc:creator>
      <pubDate>Thu, 20 Feb 2025 18:46:39 +0000</pubDate>
      <link>https://dev.to/txordy/i-built-extratoolsdev-privacy-focused-dev-tools-that-run-100-in-your-browser-2b7j</link>
      <guid>https://dev.to/txordy/i-built-extratoolsdev-privacy-focused-dev-tools-that-run-100-in-your-browser-2b7j</guid>
      <description>&lt;p&gt;Hey Dev.to! 👋&lt;/p&gt;

&lt;p&gt;I recently launched ExtraTools.dev. A set of privacy-focused developer tools that work entirely in your browser. No data leaves your device. No tracking. No ads. Just fast, lightweight, and private tools for everyday developer tasks.&lt;/p&gt;

&lt;p&gt;Like many devs, I constantly use online tools for Base64 encoding, JSON validation, or JWT decoding. But I always wondered:&lt;/p&gt;

&lt;p&gt;Why do these tools need to send my data to a server?&lt;br&gt;
Why do so many have ads, pop-ups, or trackers?&lt;br&gt;
Why isn’t there a lightweight, privacy-first alternative?&lt;br&gt;
So, I built one. 🚀&lt;/p&gt;

&lt;h2&gt;
  
  
  What’s Available in ExtraTools.dev?
&lt;/h2&gt;

&lt;p&gt;✅ Base64 Encoder/Decoder&lt;br&gt;
✅ JSON Beautifier &amp;amp; Validator&lt;br&gt;
✅ JWT Decoder&lt;br&gt;
✅ File Extractor (convert files to binary/Base64)&lt;/p&gt;

&lt;p&gt;Each tool runs 100% in the browser, ensuring your data stays local.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;🛠️ Built with Vanilla JavaScript (no unnecessary frameworks).&lt;br&gt;
💡 Leverages Web APIs &amp;amp; Web Workers for better performance.&lt;br&gt;
⚡ Instant Processing (no lag, no network calls).&lt;br&gt;
🕵️ No Tracking, No Ads – Your data is yours.&lt;/p&gt;

&lt;p&gt;It’s a small but growing project, and I’d love to hear feedback from the dev community.&lt;/p&gt;

&lt;h2&gt;
  
  
  What’s Next?
&lt;/h2&gt;

&lt;p&gt;I’m planning to add more tools based on what developers actually need.&lt;/p&gt;

&lt;p&gt;What’s missing? What other privacy-first dev tools would be useful? Let me know in the comments! 🚀&lt;/p&gt;

&lt;p&gt;🔗 Try ExtraTools.dev here: &lt;a href="https://extratools.dev" rel="noopener noreferrer"&gt;https://extratools.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Would love your thoughts! ❤️&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>Aliens PacMan</title>
      <dc:creator>Txordy</dc:creator>
      <pubDate>Sat, 21 Sep 2024 11:44:52 +0000</pubDate>
      <link>https://dev.to/txordy/aliens-pacman-68h</link>
      <guid>https://dev.to/txordy/aliens-pacman-68h</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/webgame"&gt;Web Game Challenge&lt;/a&gt;, Build a Game: Alien Edition&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;I created a classic PacMan game but with an alien flavor. The player must collect all the points in the map before any alien catches the player.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;You can try the demo in &lt;a href="https://txordy.github.io/aliens-pacman/" rel="noopener noreferrer"&gt;Aliens PacMan Github Pages&lt;/a&gt; &lt;br&gt;
and see the source code in the public &lt;a href="https://github.com/Txordy/aliens-pacman" rel="noopener noreferrer"&gt;repository&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Journey
&lt;/h2&gt;

&lt;p&gt;Since I wanted to deliver something because in previous challenges I ended up running out of time, this time I opted for something quicker and simpler.&lt;/p&gt;

&lt;p&gt;I started by looking at some youtube videos to get inspiration on how to build a PacMan using just html/css/js, and after a couple of different tutorials (mainly &lt;a href="https://www.youtube.com/watch?v=YBtzzVwrTeE" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=YBtzzVwrTeE&lt;/a&gt;), I created my own version.&lt;/p&gt;

&lt;p&gt;The part of the game that was more challenging, was when thinking of different algorithms for the aliens to move across the map.&lt;br&gt;
I think that if I wanted to release this game, it would still need a twist, since there are some situations where they act anything but smart. But for this challenge, I think it's enough as it is.&lt;/p&gt;

&lt;p&gt;Feel free to comment any improvement or suggestion you have!&lt;br&gt;
You can either write me a comment or contact me on twitter on &lt;a href="https://twitter.com/txordy" rel="noopener noreferrer"&gt;@Txordy&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>gamechallenge</category>
      <category>gamedev</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
