Welcome at microwebservices.eu, my interests: microservices.com.pl, Java, cloud on AWS, J2EE, containerization/Dockerization, Kubernetes, JEE, EJB, JSP, Maven, Web Services, SOAP, REST, High Availability Systems, Genetic Algorithms, Neural Networks etc. See linkedin.com/in/grathor33/, bitbucket.org and https://github.com/grathor33/
Saturday, November 28, 2020
Metryki w Aplikacji? Infografika Z Pomocą... Do pomiarów wydajności aplikacji, ich zbierania i wykrywania anomalii.
Friday, November 27, 2020
Wednesday, November 25, 2020
Tuesday, November 24, 2020
How Eidos-Montréal created Grid Sensors to improve observations for training agents - Unity Technologies Blog
Defining observations in RL ("reinforcement") and the Unity ML-Agents Toolkit
Monday, November 23, 2020
Sunday, November 22, 2020
Thursday, November 19, 2020
Wednesday, November 18, 2020
Ubiquity of IoT. It is good or not to control everything and everyone?
(Rasberry PI… can receive signals from microcontrollers directly)
Sources:
http://nilhcem.com/iot/cloud-iot-core-with-the-esp32-and-arduino
https://github.com/Nilhcem/home-monitoring-grafana/blob/master/docker-compose.yml
http://nilhcem.com/iot/home-monitoring-with-mqtt-influxdb-grafana
https://hub.docker.com/_/eclipse-mosquitto/
https://github.com/toke/docker-mosquitto
"Xiaomi Mijia Temperature and Humidity Sensor":
https://github.com/hannseman/homebridge-mi-hygrothermograph
https://stackoverflow.com/questions/62841247/how-to-test-mqtt-on-docker-in-windows
https://philhawthorne.com/setting-up-a-local-mosquitto-server-using-docker-for-mqtt-communication/
https://blog.feabhas.com/2020/02/running-the-eclipse-mosquitto-mqtt-broker-in-a-docker-container/
https://ubuntu.com/blog/five-key-kubernetes-resources-for-iot
https://www.networkworld.com/article/3587777/forrester-get-ready-for-iot-networking-chaos.html
https://dzone.com/articles/kafka-at-the-edge-use-cases-and-architectures
Monday, November 16, 2020
IoT: Arduino vs. Rasberry PI
https://www.instructables.com/ESP-12F-ESP8266-Module-Minimal-Breadboard-for-Flas/
https://botland.com.pl/pl/moduly-wifi/8241-modul-wifi-esp8266-nodemcu-v3.html
https://starter-kit.nettigo.pl/2016/03/esp8266-iot-praktyczny-przyklad-cz-1/
https://ubuntu.com/core (https://ubuntu.com/download/iot ) + https://microk8s.io/ + https://pl.wikipedia.org/wiki/5G = IoT
http://www.esp8266basic.com/wifi-station--ap-examples.html
https://ubuntu.com/blog/five-key-kubernetes-resources-for-iot
https://www.networkworld.com/article/3587777/forrester-get-ready-for-iot-networking-chaos.html
https://www.theregister.com/2020/10/20/akri/
https://dzone.com/articles/kafka-at-the-edge-use-cases-and-architectures
https://gitlab.com/s3b0/esp-base
https://www.espressif.com/en/products/socs/esp8266
https://www.esp8266.com/wiki/doku.php?id=esp8266-module-family#esp-12f
Friday, November 13, 2020
Thursday, November 12, 2020
Wednesday, November 11, 2020
Tuesday, November 10, 2020
What's the difference between orchestration and automation?
The Big Bang never happened but fusion will?
Whenever and wherever you look at what the Big Bang hypothesis predicts, and you compare with observations, then in almost every single case you get a mass of contradictions.
This theory – despite its widespread support in the cosmology community – is like Swiss cheese, full of holes."
Monday, November 9, 2020
Saturday, November 7, 2020
Ch 11 Building and testing applications with Docker and Docker Compose - Learn Docker in a Month
cd ch11/exercises/infrastructure # start the app with Linux containers: docker-compose -f docker-compose.yml -f docker-compose-linux.yml up -d # OR start with Windows containers: docker-compose -f docker-compose.yml -f docker-compose-windows.yml up -d # add registry domain to local hosts file on Mac or Linux: echo $'\n127.0.0.1 registry.local' | sudo tee -a /etc/hosts # OR on Windows: Add-Content -Value "127.0.0.1 registry.local" -Path /windows/system32/drivers/etc/hosts # check containers: docker container ls
# docker-compose.yml services: jenkins: image: diamol/jenkins ports: - "8080:8080" networks: - infrastructure # docker-compose-linux.yml jenkins: volumes: - type: bind source: /var/run/docker.sock target: /var/run/docker.sock # docker-compose-windows.yml jenkins: volumes: - type: npipe source: \\.\pipe\docker_engine target: \\.\pipe\docker_engine
services: numbers-api: image: ${REGISTRY:-docker.io}/diamol/ch11-numbers-api:v3-build-${BUILD_NUMBER:-local} networks: - app-net numbers-web: image: ${REGISTRY:-docker.io}/diamol/ch11-numbers-web:v3-build-${BUILD_NUMBER:-local} environment: - RngApi__Url=http://numbers-api/rng networks: - app-net
cd ch11/exercises # build both images: docker-compose -f docker-compose.yml -f docker-compose-build.yml build # check the labels for the web image: docker image inspect -f '{{.Config.Labels}}' diamol/ch11-numbers-api:v3-build-local
Continuous Integration with Jenkins and Docker
Here is what our Jenkinsfile looks like:
docker-compose.integration.yml
file:
Thursday, November 5, 2020
BBC makes switch to AWS, serverless for new website architecture, but observers note HTML unclear?
Wednesday, November 4, 2020
4 ways to run Kubernetes locally!!!
$ sudo install minikube-PLATFORM-amd64 /usr/local/bin/minikube