Your Roadmap to Better Data Decisions Making

Data Decisions

Ever started a project without a plan? It’s not pretty, right? The same goes for data projects. Understanding the data lifecycle can make your work smoother, and more organized, and lead to better results. What’s the Data Lifecycle? It’s like the journey your data takes, from start to finish. It includes six main stages: Plan: … Read more

Anomalies in Energy Monitoring: What’s the Big Deal?

energy monitoring

Ever noticed your electricity bill suddenly skyrocketed? Or maybe a machine at work started acting weird, overheating, or just shutting down unexpectedly? These could be signs of anomalies in your energy systems – basically, unusual patterns or spikes in energy usage that shouldn’t be happening. Why should you care? Well, these anomalies aren’t just a … Read more

Automate your work with google vision and AI

Susiloharjo

Here I’m using Google Vision to convert my receipt to text and then I’m using llama3 with groq to transform not structured data to formated data (JSON) and from the there I can easily pass this to my database, or processing further, this is just simple use case from this you can customize to anything … Read more

How to forward proxy nginx to custom port

nginx proxy

This is a sample nginx proxy config for forwarding nonstandard SSL port to other ip/domain with a custom port, not 443 standard https port server { listen 3000 ssl; server_name xxx.domain.com; error_page 497 301 =307 https://$host:$server_port$request_uri; ssl_certificate /etc/letsencrypt/live/xxx.domain.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/xxx.domain.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam … Read more