milosev.com
  • Home
    • List all categories
    • Sitemap
  • Downloads
    • WebSphere
    • Hitachi902
    • Hospital
    • Kryptonite
    • OCR
    • APK
  • About me
    • Gallery
      • Italy2022
      • Côte d'Azur 2024
    • Curriculum vitae
      • Resume
      • Lebenslauf
    • Social networks
      • Facebook
      • Twitter
      • LinkedIn
      • Xing
      • GitHub
      • Google Maps
      • Sports tracker
    • Adventures planning
  1. You are here:  
  2. Home

Hitachi902

Details
Written by: Stanko Milosev
Category: Downloads
Published: 19 March 2012
Last Updated: 30 November -0001
Hits: 14767

Host application for blood analysis for Hitachi902 device. You can download it from here.

Hospital

Details
Written by: Stanko Milosev
Category: Downloads
Published: 19 March 2012
Last Updated: 30 November -0001
Hits: 15339

Application, on Serbian, made for the hospital in Novi Sad.

Instalation with MSDE you can find here.

Instalation without MSDE you can find here.

WebSphere

Details
Written by: Stanko Milosev
Category: Downloads
Published: 17 March 2012
Last Updated: 19 March 2012
Hits: 15482

Example of client application for IBM WebSphere MQ.

Exe and source code (Delphi 2009)

Get the last known location with LocationManager

Details
Written by: Stanko Milosev
Category: Android
Published: 30 November 2025
Last Updated: 09 December 2025
Hits: 242
  • kotlin
Hier I gave one example of getting the last known location with FusedLocationProviderClient

Now here is example with LocationManager:

Example with trailing lambdas:

val locationManager = getSystemService(LOCATION_SERVICE) as LocationManager
locationManager.requestLocationUpdates(
	LocationManager.GPS_PROVIDER,
	1000L,
	0f
) { location ->
	logger.log("\nLat: " + location.latitude.toString()
			+ "\nLon: " + location.longitude.toString()
			+ "\nAltitude" + location.altitude.toString())
}
but in order to be able to stop requests, declare lamba like function type:
private lateinit var gpsListener: LocationListener
...
gpsListener = LocationListener { location ->
	logger.log(
				"\nLat: " + location.latitude.toString()
				+ "\nLon: " + location.longitude.toString()
				+ "\nAltitude" + location.altitude.toString()
	)
}

locationManager.requestLocationUpdates(
	LocationManager.GPS_PROVIDER,
	1000L,
	0f,
	gpsListener
)
Stop it like this:
locationManager.removeUpdates(gpsListener)
Example download from here.
  1. Get the last known location with FusedLocationProviderClient
  2. Reloading a KML Layer in Google Maps in a Loop
  3. Remove KmlLayer from the Map to avoid OutOfMemory
  4. Load KML in Google Maps

Subcategories

C#

Azure

ASP.NET

JavaScript

Software Development Philosophy

MS SQL

IBM WebSphere MQ

MySQL

Joomla

Delphi

PHP

Windows

Life

Lazarus

Downloads

Android

CSS

Chrome

HTML

Linux

Eclipse

Page 141 of 168

  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145