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
Android ref links February 13, 2024 Library reference resources: MVVM Architecture : https://developer.android.com/jetpack/guide Hilt: https://developer.android.com/training/dependency-injection/hilt-android Coroutines: https://developer.android.com/kotlin/coroutines Retrofit: https://square.github.io/retrofit/ Moshi: https://github.com/square/moshi Coil: https://coil-kt.github.io/coil/ Leak Canary: https://square.github.io/leakcanary/ Concept reference resources: Repository Codelab: https://developer.android.com/codelabs/kotlin-android-training-repository Room and Coroutines Codelab: https://developer.android.com/codelabs/kotlin-android-training-room-database Room and Flow Codelab: https://developer.android.com/codelabs/basic-android-kotlin-training-intro-room-flow Hilt Codelab: https://developer.android.com/codelabs/android-hilt Navigation Codelab: https://developer.android.com/codelabs/jetpack-compose-navigation Theming Codelab: https:... 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
Comments
Post a Comment