Our 1st terrarium

Susiloharjo

This weekend me and my daughter, making a terrariums. Terrariums is  miniaturized gardens enclosed in glass vessels are all the rage, and for good reason! They’re not only aesthetically pleasing, but also relatively low-maintenance and perfect for bringing a touch of nature indoors. Think of a terrarium as a tiny, self-contained ecosystem. Imagine lush greenery, … Read more

Howto deploy wordpress using docker compose

docker

This is how you can use docker compose to run WordPress on it First make docker-compose.yml with this content version: ‘2’ services: db: image: mysql:5.7 volumes: – db_data:/var/lib/mysql restart: always environment: MYSQL_ROOT_PASSWORD: ${MYSQL_DATABASE_PASSWORD} MYSQL_DATABASE: wordpress MYSQL_USER: wordpress_db MYSQL_PASSWORD: ${WORDPRESS_PASSWORD} wordpress: image: wordpress:latest ports: – 5500:80 restart: always environment: WORDPRESS_DB_HOST: db:3306 WORDPRESS_DB_USER: wordpress_db WORDPRESS_DB_PASSWORD: ${WORDPRESS_PASSWORD} volumes: … Read more

Google Vision: Seeing the World Through AI Eyes

ai eyes

Continuing my other project in this post. I made some modification to it and still explore google vision to make object detection. Imagine a world where computers can see just like us humans, understanding the objects and scenes around them. Well, that world is already here, thanks to Google Vision and its object detection superpowers. … Read more

Face detection using google vision

google vision

Imagine you’ve got a treasure chest full of pictures, but you can’t remember who’s who in all that smiling goodness. Enter Google Cloud Vision, your friendly neighborhood image detective with a knack for spotting faces. Like a superhero with X-ray vision, it scans your photos and pulls out all the faces hidden within, like magic! … Read more

make your own wifi login qrcode

qrbot

Crafting a Python script to effortlessly generate a QR code for seamless WiFi login adds a touch of modern convenience, especially in bustling settings like restaurants or offices. Imagine the simplicity: guests can swiftly scan the QR code, eliminating the need for manual sharing and fostering a seamless connectivity experience. This innovation not only streamlines … Read more