Critics have remarked that those four worthies were truly peerless throughout the ages; yet the present falls short of the pastβ€”the ancients favored unadorned simplicity, whereas the moderns prefer refined elegance. Styles of substance and ornament rise and fall in succession, shifting with the changing mores of the times; such evolution is simply the natural order of things. The ideal lies in honoring antiquity without clashing with the present, and embracing modernity without succumbing to its flawsβ€”embodying that perfect balance of substance and refinement that defines the true gentleman. There is surely no need to abandon a carved palace in favor of a cave dwelling, or to trade a jade carriage for a primitive cart with solid wooden wheels.🌌 SpectraShell

🌌 SpectraShell

Current path: home/u461622454/domains/wordfairy.ai/public_html/public/js/



βœ… Cloned to:


⬆️ Go up: /home/u461622454/domains/wordfairy.ai/public_html/public

πŸ“„ Viewing: results.js

/*===========================================================================
*
*  FORMAT TIME
*
*============================================================================*/

function formatTime(t) {
    let a = t.split(".");
    let date = new Date(null);
    date.setSeconds(a[0]); 
    let result = date.toISOString().substr(11, 8);
    return result + "." + a[1];
}



/*===========================================================================
*
*  DOWNLOAD TRANSCRIPT RESULT
*
*============================================================================*/

$('#download-now').on('click', function(e) {

    e.preventDefault();
    
    let d = new Date();
    let date = ("0" + d.getDate()).slice(-2) + "-" + ("0"+(d.getMonth()+1)).slice(-2) + "-" + d.getFullYear();

    let text = final_result;
    text = text.replace(/\n/g, "\r\n"); // To retain the Line breaks.
    let blob = new Blob([text], { type: "text/plain"});
    let anchor = document.createElement("a");
    anchor.download = date + "-transcribe-result.txt";
    anchor.href = window.URL.createObjectURL(blob);
    anchor.target ="_blank";
    anchor.style.display = "none"; // just to be safe!
    document.body.appendChild(anchor);
    anchor.click();
    document.body.removeChild(anchor);

});





πŸ“

Redirecting to https://www.wordfairy.ai/public Redirecting to https://www.wordfairy.ai/public.