<?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: Wessel Wessels</title>
    <description>The latest articles on DEV Community by Wessel Wessels (@asorepos).</description>
    <link>https://dev.to/asorepos</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%2F3365189%2Fc2b904ed-4119-436a-b38f-826af6e382fb.jpeg</url>
      <title>DEV Community: Wessel Wessels</title>
      <link>https://dev.to/asorepos</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/asorepos"/>
    <language>en</language>
    <item>
      <title>🧮 Recreating a Vintage Casio Calculator with Java &amp; JavaFX</title>
      <dc:creator>Wessel Wessels</dc:creator>
      <pubDate>Sun, 20 Jul 2025 16:18:24 +0000</pubDate>
      <link>https://dev.to/asorepos/recreating-a-vintage-casio-calculator-with-java-javafx-5bed</link>
      <guid>https://dev.to/asorepos/recreating-a-vintage-casio-calculator-with-java-javafx-5bed</guid>
      <description>&lt;p&gt;In this project, I rebuilt my original Casio Personal M-1 calculator in JavaFX — not just the functionality, but the entire look and feel, down to the pixel. What started as a UI practice exercise turned into a full-blown retro replica.&lt;/p&gt;




&lt;h2&gt;
  
  
  📐 The Inspiration
&lt;/h2&gt;

&lt;p&gt;This is the actual calculator that started it all — the one I used as a kid:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fud7gxspsxoffpfvbvmwm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fud7gxspsxoffpfvbvmwm.png" alt=" " width="390" height="699"&gt;&lt;/a&gt;&lt;br&gt;
![Original Casio Calculator]&lt;/p&gt;

&lt;p&gt;And here’s my JavaFX recreation, built using Scene Builder and custom styling:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fks75xpt6xbdvbnflhlpy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fks75xpt6xbdvbnflhlpy.png" alt=" " width="390" height="699"&gt;&lt;/a&gt;&lt;br&gt;
![JavaFX Replica]&lt;/p&gt;

&lt;p&gt;From digit alignment to button layout, I wanted it to feel like the original — scratches and all.&lt;/p&gt;




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

&lt;p&gt;&lt;strong&gt;ASO Calculator&lt;/strong&gt; is a clean, desktop JavaFX app with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A glowing LED-style custom display using a handmade font
&lt;/li&gt;
&lt;li&gt;CSS styling for realistic button shadows, presses, and bevels
&lt;/li&gt;
&lt;li&gt;Custom layout with &lt;code&gt;StackPane&lt;/code&gt; for glow overlays
&lt;/li&gt;
&lt;li&gt;Packaged into an &lt;code&gt;.exe&lt;/code&gt; installer via &lt;code&gt;jpackage&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔣 Font Creation
&lt;/h2&gt;

&lt;p&gt;The calculator display font was redrawn by hand in CorelDRAW, then converted and spaced in FontForge. Decimal alignment required custom kerning to match the real LED layout.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fco7307rr3wuedkz0uezt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fco7307rr3wuedkz0uezt.png" alt=" " width="800" height="84"&gt;&lt;/a&gt;&lt;br&gt;
![Font Vector Preview]&lt;/p&gt;

&lt;p&gt;The display glow is achieved using two overlapping labels and a Gaussian drop shadow — pure JavaFX CSS.&lt;/p&gt;




&lt;h2&gt;
  
  
  📚 What I Learned
&lt;/h2&gt;

&lt;p&gt;This project helped solidify my understanding of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JavaFX layouts (&lt;code&gt;GridPane&lt;/code&gt;, &lt;code&gt;VBox&lt;/code&gt;, &lt;code&gt;StackPane&lt;/code&gt;)
&lt;/li&gt;
&lt;li&gt;CSS styling in JavaFX (hover effects, drop shadows)
&lt;/li&gt;
&lt;li&gt;Scene Builder UI integration
&lt;/li&gt;
&lt;li&gt;GitHub workflows and markdown formatting
&lt;/li&gt;
&lt;li&gt;Packaging apps into &lt;code&gt;.exe&lt;/code&gt; using &lt;code&gt;jpackage&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Font creation using external tools and embedding them via JavaFX&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  💡 Why This Matters
&lt;/h2&gt;

&lt;p&gt;It’s more than a calculator.&lt;br&gt;&lt;br&gt;
It represents the bridge from:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Theory → Application&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tutorial → Original Project&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Learning Java → Becoming a Java Developer&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;




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

&lt;p&gt;✅ You can download and test the final app directly from the GitHub Releases tab:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔗 Download Installer&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
➡️ &lt;a href="https://github.com/aso-repos/CalculatorJavaFX/releases/latest" rel="noopener noreferrer"&gt;ASO.Calculator-1.0.exe&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;⚠️ May trigger antivirus warnings since it's unsigned. It’s safe to install.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔗 GitHub Repo&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Browse the full source code, font files, styling, and instructions here:&lt;br&gt;&lt;br&gt;
👉 &lt;a href="https://github.com/aso-repos/CalculatorJavaFX" rel="noopener noreferrer"&gt;https://github.com/aso-repos/CalculatorJavaFX&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  👋 About Me
&lt;/h2&gt;

&lt;p&gt;Java &amp;amp; JavaFX dev.&lt;br&gt;&lt;br&gt;
Caught the coding bug at 12 when I wrote my first program on a Commodore 64. Now actively pursuing my dream &amp;amp; building desktop apps in Java. Certified in Java, Python, HTML and CSS. (See LinkedIn profile for full qualification list, learning institutions, and experience.)&lt;/p&gt;

&lt;p&gt;Let’s connect:&lt;br&gt;&lt;br&gt;
🔗 &lt;a href="https://www.linkedin.com/in/wessel-wessels-9113191a/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;&lt;br&gt;
🔗 &lt;a href="https://github.com/aso-repos" rel="noopener noreferrer"&gt;GitHub Profile&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
