<?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: Appynox</title>
    <description>The latest articles on DEV Community by Appynox (@appynox_50b8bce2717b66233).</description>
    <link>https://dev.to/appynox_50b8bce2717b66233</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4077486%2Fe33a1934-5258-48d9-b78b-40451e344ccd.png</url>
      <title>DEV Community: Appynox</title>
      <link>https://dev.to/appynox_50b8bce2717b66233</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/appynox_50b8bce2717b66233"/>
    <language>en</language>
    <item>
      <title>Why Software Video Stabilization Fails on Long-Term Timelapses (And How We Solved It in the Viewfinder)</title>
      <dc:creator>Appynox</dc:creator>
      <pubDate>Mon, 17 Aug 2026 12:11:55 +0000</pubDate>
      <link>https://dev.to/appynox_50b8bce2717b66233/why-software-video-stabilization-fails-on-long-term-timelapses-and-how-we-solved-it-in-the-119i</link>
      <guid>https://dev.to/appynox_50b8bce2717b66233/why-software-video-stabilization-fails-on-long-term-timelapses-and-how-we-solved-it-in-the-119i</guid>
      <description>&lt;p&gt;If you have ever tried creating a 12-week gym progress video, a year-long daily selfie time-lapse, or a seedling-to-bloom reel, you know the frustration: you take 90 photos, drop them into a video editor with digital stabilization, and the resulting video looks warped and jittery.&lt;/p&gt;

&lt;p&gt;Here is why post-capture software stabilization fails for long-term progress photos, and how an optical ghost overlay approach solves it.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. The Physics of Perspective &amp;amp; Parallax
&lt;/h2&gt;

&lt;p&gt;Digital post-capture stabilization works by detecting high-contrast feature points across consecutive frames, calculating an affine or homography transformation matrix, and translating/rotating the image to align those points.&lt;/p&gt;

&lt;p&gt;This works brilliantly for 60fps continuous video because camera movement between frames is tiny (fractions of a millimeter).&lt;/p&gt;

&lt;p&gt;However, in multi-month progress photography:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Lens Distance Drift:&lt;/strong&gt; Standing 1.8m away in Week 1 vs 2.1m away in Week 4 changes the apparent size of the subject.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Perspective Parallax:&lt;/strong&gt; If your camera is tilted 3° upward on Day 10 and 2° downward on Day 20, the relative distance between background objects and foreground facial landmarks shifts geometrically. &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Crop Penalty:&lt;/strong&gt; Post-stabilization must crop the overlapping convex hull of all frames, losing up to 30% of the image resolution.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No 2D affine transform can undo 3D optical parallax after the photo has already been taken.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. Solving Framing Before the Shutter Fires
&lt;/h2&gt;

&lt;p&gt;To eliminate perspective distortion, the alignment must happen &lt;strong&gt;inside the live viewfinder before the sensor exposes the frame&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;We built &lt;a href="https://sameshot.appynox.com" rel="noopener noreferrer"&gt;SameShot&lt;/a&gt;, an offline-first camera application and browser utility suite that projects your previous photo as a semi-transparent &lt;strong&gt;ghost overlay&lt;/strong&gt; directly in the live camera feed:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Draggable Opacity Slider:&lt;/strong&gt; Users adjust the ghost layer (0–100%) to match their subject against the prior frame.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;On-Device ML Auto-Capture:&lt;/strong&gt; Using local Google ML Kit pose and face landmark detection, the shutter fires hands-free the millisecond the subject hits alignment thresholds.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Zero Network Calls:&lt;/strong&gt; The entire pipeline runs locally in browser memory and on-device without sending any image data to a cloud backend.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  3. Building a Client-Side Difference Map in Vanilla JS
&lt;/h2&gt;

&lt;p&gt;To help users inspect whether two photos match in geometry and lighting, we built a zero-server &lt;a href="https://sameshot.appynox.com/tools/photo-alignment-checker/" rel="noopener noreferrer"&gt;Photo Alignment Checker&lt;/a&gt; using the HTML5 Canvas 2D API:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
javascript
// Local Difference Blend Mode via Canvas
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');

canvas.width = baseImage.width;
canvas.height = baseImage.height;

// Draw baseline photo
ctx.drawImage(baseImage, 0, 0);

// Set difference composite operation and draw new photo
ctx.globalCompositeOperation = 'difference';
ctx.drawImage(comparisonImage, 0, 0);

// Invert to highlight drift: identical pixels become pure white
ctx.globalCompositeOperation = 'difference';
ctx.fillStyle = 'white';
ctx.fillRect(0, 0, canvas.width, canvas.height);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>webdev</category>
    </item>
    <item>
      <title>Building a 403-Function Casio fx-991ES PLUS Scientific Calculator in Pure JavaScript &amp; PWA</title>
      <dc:creator>Appynox</dc:creator>
      <pubDate>Fri, 14 Aug 2026 10:06:34 +0000</pubDate>
      <link>https://dev.to/appynox_50b8bce2717b66233/building-a-403-function-casio-fx-991es-plus-scientific-calculator-in-pure-javascript-pwa-3ie1</link>
      <guid>https://dev.to/appynox_50b8bce2717b66233/building-a-403-function-casio-fx-991es-plus-scientific-calculator-in-pure-javascript-pwa-3ie1</guid>
      <description>&lt;p&gt;If you have ever taken high school or university physics, engineering, or calculus, you have almost certainly held a &lt;strong&gt;Casio fx-991ES PLUS&lt;/strong&gt; scientific calculator. Its two-line Natural Textbook Display (V.P.A.M.), multi-mode engine, and tactile layout have made it a staple in classrooms and exam halls worldwide.&lt;/p&gt;

&lt;p&gt;However, most online "scientific" calculators available today are deceptively basic. They give you standard arithmetic, basic trigonometry, and logarithms, but fall completely flat when you need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Numerical definite integration and derivatives&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;$3 \times 3$ Matrix determinants and inversions&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Complex number arithmetic in polar ($r\angle\theta$) and rectangular ($a+bi$) forms&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Statistical regressions (linear, quadratic, exponential, logarithmic)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Base-N conversions with bitwise logic (BIN, OCT, DEC, HEX)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Polynomial &amp;amp; simultaneous linear equation solvers&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To bridge this gap without paywalls or forced app installs, we built &lt;a href="https://widemath.com/scientific-calculator/" rel="noopener noreferrer"&gt;WideMath Scientific Calculator Online&lt;/a&gt;—a full-featured, zero-dependency browser recreation of the fx-991ES PLUS workflow that runs entirely on client-side web standards.&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ Architecture &amp;amp; Engineering Highlights
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Two-Dimensional Natural Textbook Display
&lt;/h3&gt;

&lt;p&gt;A core challenge of recreating the fx-991ES PLUS is rendering mathematical expressions naturally: fractions stacked vertically, arbitrary $n$-th roots with indices, and definite integrals with upper and lower limit boxes.&lt;/p&gt;

&lt;p&gt;Rather than pulling in heavy external math rendering dependencies that inflate load times, WideMath uses a modular HTML/CSS layout engine paired with &lt;a href="https://mathjs.org/" rel="noopener noreferrer"&gt;math.js&lt;/a&gt; for safe tokenization and evaluation without &lt;code&gt;eval()&lt;/code&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Multi-Mode State Machine
&lt;/h3&gt;

&lt;p&gt;The calculator operates across 10 discrete calculation modes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;COMP&lt;/code&gt;: General scientific calculations with automatic bracket completion&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;CMPLX&lt;/code&gt;: Rectangular ($a+bi$) and polar ($r\angle\theta$) calculations&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;STAT&lt;/code&gt;: 1-variable and 2-variable regression analysis&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;BASE-N&lt;/code&gt;: Integer conversions with &lt;code&gt;AND&lt;/code&gt;, &lt;code&gt;OR&lt;/code&gt;, &lt;code&gt;XOR&lt;/code&gt;, &lt;code&gt;XNOR&lt;/code&gt;, and &lt;code&gt;NOT&lt;/code&gt; bitwise operators&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;EQN&lt;/code&gt;: 2-to-3 variable linear systems, quadratics ($ax^2+bx+c=0$), and cubics&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;MATRIX&lt;/code&gt;: Matrix storage ($A, B, C$) with determinants, transpositions, and matrix inversion&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;VECTOR&lt;/code&gt;: Vector storage and dot/cross product calculations&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;TABLE&lt;/code&gt;: Function value tables across customizable ranges and step intervals&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. Shift / Alpha Key Modifiers with Dynamic Illumination
&lt;/h3&gt;

&lt;p&gt;To preserve the intuitive hardware feeling, pressing the &lt;strong&gt;SHIFT&lt;/strong&gt; (yellow) or &lt;strong&gt;ALPHA&lt;/strong&gt; (red) key dynamically dims unavailable buttons and illuminates only the keys that have corresponding functions in that mode.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Zero-Install Progressive Web App (PWA)
&lt;/h3&gt;

&lt;p&gt;By implementing a standalone &lt;code&gt;manifest.json&lt;/code&gt; and service worker caching strategy, the entire calculator can be added to any smartphone or desktop home screen and operated completely offline.&lt;/p&gt;




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

&lt;p&gt;You can test and use the calculator for free with zero sign-up required:&lt;br&gt;
👉 &lt;strong&gt;&lt;a href="https://widemath.com/scientific-calculator/" rel="noopener noreferrer"&gt;Launch WideMath Scientific Calculator&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Let us know what mathematical features or modes you'd like to see next!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>calculators</category>
      <category>javascript</category>
      <category>pwa</category>
    </item>
  </channel>
</rss>
