Lost all my Azure student credits today after accidentally deploying a DDoS protection plan without checking the pricing๐ฅน๐ฅน. Great reminder to always understand the service before enabling it!
Lesson learned the hard way.ALWAYS read the docs ๐ญ๐
My key daily learning : What is an Azure Virtual Network (VNet)?
A VNet is like our own private network where all our cloud virtual machines(like our devices) are inside the same network, such that they can talk to each other privately and are isolated from the public internet.
I'm officially starting my DevOps journey, and I'm kicking it off with Azure! โ๏ธ
I'll be posting daily with:
My key daily learnings in Azure.
A "New Topic of the Day" for anyone who wants to learn.
Follow me if you want to learn something new about DevOps and Azure, every day.
Just discovered JavaScript's Intl library! ๐ Format numbers, dates, and currencies for any locale in a few lines:
new Intl.NumberFormat('en-IN', { style: 'currency', currency: 'INR' }).format(1234.56); // โน1,234.56
Game-changer for localization! ๐
What I learned today:
Python runs your code in three steps: the interpreter reads it line by line, converts it into bytecode, and the CPython VM translates it into machine code for executionโsimple for you, powerful behind the scenes!
@Abhishekcur Since I'm just starting out in machine learning, what foundational concepts should I focus on before diving into these projects? Any advice on key topics to learn first?
Today, I explored the ML framework. It starts with problem definition (supervised vs unsupervised), data type (structured/unstructured, static/streaming), success metrics, and feature selection. Then comes modeling-training, validation, and comparison before final experimentation
What is Machine Learning?
From what I learned ,machine learning is a way to make machines do tasks , predict patterns by providing them with data without explicitly giving them each and every instructions . The result it gives can be predictions. What's your take on it?