Jesse's Website

2016-12-24 Limiting Access

2016-07-13 More Windows 7 Tweaks

2016-06-12 More Windows 7 Tweaks

2016-04-09 More Windows 7 Tweaks

2015-03-25 Windows 7 Tweaks

These are some tips for making Windows 7 more pleasant to use. More details may be added later if time permits.

2014-11-09 Taxation

How many times can a dollar be spent until it's completely converted into tax? In New Jersey, sales tax is 7%. This calculation doesn't include income tax, which works much faster.

Code used

$taxCalc = array();
$salesTaxRate = 0.07;
$payment = 1.00;
            
for($i=0; $i<pow(2,32); $i++){
    $taxCalc[] = pow($payment-$salesTaxRate, $i);
    if(number_format($taxCalc[$i],2)=="0.00")
        break;
}