Bread crumb in javascript - V2 February 23, 2008 //Bread crumb scriptvar path = "";var href = document.location.href;var s = href.split("/");for (var i=2;i<(s.length-1);i++) {path+=""+s[i]+" / ";}alert(path);i=s.length-1;path+=""+s[i]+"";alert(path);var url = window.location.protocol + "//" + path;document.writeln(url); Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments
Test internet speed from RaspberryPi August 31, 2015 Cool steps to check the internet speed in raspberryPi http://www.raspberrypi-spy.co.uk/2015/03/measuring-internet-speed-in-python-using-speedtest-cli/#prettyPhoto Read more
Calling Kotlin suspended function from Java January 09, 2024 String result = BuildersKt.runBlocking( EmptyCoroutineContext.INSTANCE, (scope, continuation) -> suspendFunctionName(continuation) ); Reference: https://www.baeldung.com/kotlin/suspend-functions-from-java Read more
Android accessibility resolving common talkback issues (Ref) December 14, 2023 https://medium.com/microsoft-mobile-engineering/android-accessibility-resolving-common-talkback-issues-3c45076bcdf6 Read more
Comments
Post a Comment