All posts by Kevin

About Kevin

IoT & Azure ML Learner

Create Azure Service Principal and “az login”

Sample of creating Resource Group and then create Service Principle with contributor role under the RG for DevOps Pipeline

#MY_RG=1myResourceGroup
#az group create --name $MY_RG --location southeastasia
#RG_ID=$(az group show --name $MY_RG --query "id" --output tsv)
# or 
MY_RG=1myResourceGroup
RG_ID=$(az group create --name $MY_RG  --location southeastasia --query "id" --output tsv)
SERVICE_PRINCIPAL_NAME=Exzilla-sp-21022022
PASSWORD=$(az ad sp create-for-rbac --name $SERVICE_PRINCIPAL_NAME --role contributor --scopes $RG_ID  --query "password" --output tsv)
USER_NAME=$(az ad sp list --display-name $SERVICE_PRINCIPAL_NAME --query "[].appId" --output tsv)

az login --service-principal -u $USER_NAME -p $PASSWORD --tenant <mytenant>.onmicrosoft.com

How to build real world cloud applications using Windows Azure

How to build real world cloud applications using Windows Azure
 

Video:
Part 1: Building Real World Cloud Apps with Azure
http://channel9.msdn.com/Events/TechEd/Australia/2013/AZR324
 
  Part 2: Building Real World Cloud Apps with Azure
 http://channel9.msdn.com/Events/TechEd/Australia/2013/AZR325
 
 
Free ebook: Building Cloud Apps with Microsoft Azure
 http://weblogs.asp.net/scottgu/free-ebook-building-cloud-apps-with-microsoft-azure

Four Principles of Engineering Scalable, Big Data Software Systems from CMU

 

Four Principles of Engineering Scalable, Big Data Software Systems By Ian Gorton
Senior Member of the Technical Staff
Software Solutions Division

  • First Principle: System Costs Must Grow More Slowly Than System Capacity
  • Second Principle: The More Complex a Solution, the Less Likely it Will Scale
  • Third Principle: Avoid Managing Conversational State Outside the Data Tier
  • Fourth Principle: You Can’t Manage What You Don’t Monitor

http://blog.sei.cmu.edu/post.cfm/four-principles-engineering-big-data-systems-195

Steps to Success

ได้มาจากข้อความที่ติดในโรงเรียนอนุบาล เข้าใจว่าให้ทั้งคุณครูและนักเรียนอนุบาลอ่าน

The Top 10  Steps to Success
 1.Try
 2.Try again
 3.Try once more
 4.Try it a little differently
 5.Try it again tomorrow
 6.Try and ask for help
 7.Try to find someone who’s done it
 8.Try to determine what is not working
 9.Try to determine what is working
 10.Just keep trying

ไม่ว่าจะผ่านไปกี่ปีการต่อสู้กับตนเองก็ยังเกิดขึ้นทุกว้น เกิดขึ้นกับรูปแบบของปัญหาที่ซับซ้อนมากขึ้น และกับความต้องการที่ซับซ้อนมากขั้นด้วยเช่นกัน

(ref: http://www.narisa.com/forums/index.php?app=blog&module=display&section=blog&blogid=4&showentry=1815 )