poniedziałek, maja 29, 2017

Doskonała analiza Google Maps

https://www.justinobeirne.com/a-year-of-google-maps-and-apple-maps

sobota, maja 27, 2017

Antywirusy chmurowe są do kitu

http://blog.emsisoft.com/2017/05/12/wcry-ransomware-outbreak/

czwartek, maja 25, 2017

Microsoft Translator

https://translator.microsoft.com/neural


EMS stats in picture



piątek, maja 19, 2017

Empatia jest agile

Jeśli będąc w IT podchodzisz do biznesu z empatią, to masz większe szanse na sukces. Wchodzisz w dialog, chcesz pomóc, chcesz zrozumieć problemy, wyzwania i oczekiwania. Takie podejście sprzyja budowaniu zaufania i właściwych relacji. Pomagając biznesowi dbasz o swoją premię wynikającą z realizacji celu całej firmy. Aspekty społeczne w Business IT alignment są bardzo ważne.

czwartek, maja 18, 2017

Bug in Java(c)?

String lastReturnCode = "WAITING";
Long isSuccessful = ("OK".equals(lastReturnCode) || "DEAD".equals(lastReturnCode)) ? 1L :
 "WAITING".equals(lastReturnCode) ? null : 0L;
System.out.println(isSuccessful);

NullPointerException in the third line. Let's decompile class file.
Long isSuccessful = Long.valueOf((("OK".equals(lastReturnCode)) || ("DEAD".equals(lastReturnCode))) ? 1L : 
(("WAITING".equals(lastReturnCode)) ? null : Long.valueOf(0L))
.longValue());

No proper autoboxing here. Use Long.valueOf(1L) to fix it.

poniedziałek, maja 15, 2017

How to monitor Tibco BW with free tools

Connect to BW via JMX. Export metrics to Prometheus PushGateway via BW Timer or cron. Use metrics in preferred monitoring GUI.


środa, maja 10, 2017

Microsoft Face API dostępne publicznie

https://azure.microsoft.com/en-us/services/cognitive-services/face/


Clustered filesystem is built-in standard of Windows 201x

Use Cluster Shared Volumes in a Failover Cluster, https://technet.microsoft.com/en-us/library/jj612868(v=ws.11).aspx