Skip to main content

About

I am just a web developer who wants to give back.

  profile for UpHelix at Stack Overflow, Q&A for professional and enthusiast programmers

Popular posts from this blog

US Bank Routing Number Validation

You are probably here because you want to validate routing and bank account numbers. There is good and bad news. Good news US bank routing numbers follow a very strict format. That makes it so you can easily validate it and be assured that before you send that data to the back-end it passes the format requirements. Bad News Bank account numbers are not so fortunate. There is no strict format unlike IBAN . Dang it! I discuss is more here . Routing Number You can get really fancy and do some really deep validation for the routing number. As you can see here  there is a lot behind the format including what each set of digits represents (what kind of institution is the bank, what Federal Reserve district it is in, which state its in, etc). But we are going to keep it simple. There is a checksum. Thanks to BrainJar for presenting a simple solution. First off the number is always 9 digits. Next is the checksum algorithm. Here is our example rou

Quick Ratios with JavaScript

I always find myself needing to know how numbers compare. But I hate taking out a calculator or grabbing pencil and paper to work it out. So I wrote a small script to do it for me. Method Math.Ratio = function (rt1, rt2) { var rt1n = rt1.split(':'); var rt2n = rt2.split(':'); var rntd1i = false, rntd2i = false; for (var i = 0; i < rt1n.length; i++) { if (rt1n[i] == '?') { rntd1i = i; } } for (var ii = 0; ii < rt2n.length; ii++) { if (rt2n[ii] == '?') { rntd2i = ii; } } function rtDetermine(r1, r2, ri) { var isum = r1[0] / r1[1]; return ri == 0 ? r2[1] * isum : r2[0] / isum; } if (rntd1i !== false && rntd2i !== false) { console.warn('Whoops, can only work with one unknown number.'); return false; } else if (rntd1i !== false) { return rtDetermine(rt2n, rt1n, rntd1i); } else if (rntd2i !== false) { return rtDetermine(rt1n, rt2n, rntd2i); } else { console.warn('Whoops, need at le