Balraj Singhbalrajsingh.hashnode.dev·Jan 23, 2025One-Click Azure DevOps CI/CD Pipeline for Azure Container Web Apps with Terraform IntegrationThis document explains how to set up a CI/CD pipeline using Azure DevOps, Terraform, and Azure Container Web App to deploy a Python-based web application. The deployment is automated and can be started with just one click. Prerequisites Before diving...agent vm
Hridhi Kumarikumari-hridhi.hashnode.dev·Jan 21, 2025Transferring Files Between Different Projects In Cloud Storage BucketsSteps to create Bucket in project1. Go to Google Cloud Console and log in with credentials. Search Cloud Storage>Buckets in My First Project . In the Buckets page, click the "Create" button. Name the Bucket. Bucket names must be unique globally(...#gcs
Osama Shaikhblog.osshaikh.in·Jan 16, 2025DR Options for Storage on AzureKey Considerations for Storage DR on Azure 1. Understanding RPO and RTO Define RPO (Recovery Point Objective):RPO determines the maximum acceptable amount of data loss in the event of a disaster. For critical workloads such as financial systems or he...90 readsAzure
Anix Lynchgozeroshot.dev·Jan 14, 2025🔥Practical Guide to AWS S3 CLI1. List Buckets $ aws s3 ls 2023-11-04 14:39:50 my-ml-bucket 2023-11-04 14:40:23 my-training-data 2. Create a Bucket $ aws s3 mb s3://ml-model-bucket --region us-east-1 make_bucket: ml-model-bucket 3. Upload a File $ aws s3 cp model.pkl s3://ml-m...cli
Ademola Adeagboclouding.hashnode.dev·Jan 10, 2025Amazon S3: The Magical Data Storage BucketIntroduction Hi, Tech Enthusiasts! We are setting out on a journey to explore & make sense of the wonders of Amazon Simple Storage Service popularly known as Amazon S3. Today, I look out to you all as a Cloud Engineer and want to take you on a journe...20 likesstorage
Jatin shankar Srivastavajatin-devopw.hashnode.dev·Jan 9, 2025MongoDB vs. DocumentDB: A Comparative Analysis with Code ExamplesWhen building web applications, the choice of database can significantly influence performance, scalability, and ease of development. MongoDB and Amazon DocumentDB are two popular NoSQL databases that are designed for high availability, performance, ...MongoDB
Sai Aneeshlhcee3.hashnode.dev·Jan 8, 2025How Big MAANG Companies Store CodeThe MAANG companies (Microsoft, Amazon, Apple, Netflix, and Google) are at the forefront of technological innovation, and their codebases are among the largest and most complex in the world. Managing such vast amounts of code requires sophisticated s...code storage
Lilian Cariourasengansec.hashnode.dev·Jan 6, 2025Solidity StorageIntroduction Think of Ethereum contract storage like a giant library with infinite shelves, where each shelf (slot) is exactly 32 bytes wide. Many developers new to Solidity imagine storage working like a continuous bookshelf where books (data) are p...storage-optimization
Nitindevswiftable.com·Jan 4, 2025FeaturedMastering UserDefaults: The Right Way to UseWith UserDefaults, you can store small pieces of data persistently in iOS. Basically, it is a key-value store that saves user preferences, settings, and other lightweight data that needs to persist across app launches. Using UserDefaults is simple an...10 likes·522 readsiOS
Shivam barthwalshivamcoder.hashnode.dev·Jan 2, 2025Authentication & Security in Next.js: NextAuth.js, Securing API Routes, Session Cookies, Local Storage, and Best PracticesIn today’s web applications, security is paramount. When developing an app, one of the most critical features to implement is authentication, as it ensures only authorized users can access sensitive data. In this post, we'll dive into how to manage a...Frontend Unlocked: From Basics to BrillianceNext.js