AWS
AWS KMS: Managing Encryption Keys
Key Management Service lets you create and manage encryption keys. I use it to encrypt S3 buckets, EBS volumes, and RDS databases. KMS integrates with many…
Stories Worth Reading
PixelProse is your go-to blog for insightful articles on Technology, Travel, Food, Health, Lifestyle, Business, Fashion and Sports. Fresh perspectives. Real stories. Zero fluff.
Results for "encryption keys"
20 articles found
AWS
Key Management Service lets you create and manage encryption keys. I use it to encrypt S3 buckets, EBS volumes, and RDS databases. KMS integrates with many…
Google Cloud Platform
We've all done it. Hardcoded API keys in config files. Committed them to Git. Then scrambled to revoke them when you realize the repo is public. I was guil…
Google Cloud Platform
We've all done it. Hardcoded API keys in config files. Committed them to Git. Then scrambled to revoke them when you realize the repo is public. I was guil…
Standard Library
Python's standard library includes a collections module that provides specialized container datatypes. These can make your code more efficient and expressi…
AWS
DynamoDB is a fully managed NoSQL database with seamless scalability. I was used to relational databases, but DynamoDB's key-value and document model took…
Security
WebAuthn (Web Authentication) is a browser API that enables passwordless authentication using biometrics (fingerprint, face ID), security keys (YubiKey), o…
Technology
In an era where data breaches and surveillance are commonplace, protecting your digital privacy has never been more critical. The first step is understandi…
Real-Time
WebRTC (Web Real-Time Communication) enables direct peer-to-peer audio, video, and data sharing between browsers without intermediate servers. The technolo…
Database
PostgreSQL has become the database of choice for web development, but many developers only scratch the surface of its capabilities. Beyond basic SELECT que…
Performance
HTTP/3 represents the first major revision to the HTTP protocol since HTTP/2, built on QUIC (Quick UDP Internet Connections) instead of TCP. The architectu…
Privacy
WhatsApp says messages are end-to-end encrypted. That means only you and the recipient can read them. That is true. But metadata is not encrypted. Who you…
Destinations
Everyone thinks of Florida in July, but that’s a mistake unless you like saunas. I went to Orlando in August once and the humidity was so thick you could…
Google Cloud Platform
Okay, hear me out. I love GitHub. I have a paid account. But for my work projects on GCP, I started using Cloud Source Repositories. The integration is sea…
Core Concepts
Variables are like labeled boxes where you store information. In Python, you don't need to declare what type of data a variable will hold. You simply assig…
Google Cloud Platform
Okay, hear me out. I love GitHub. I have a paid account. But for my work projects on GCP, I started using Cloud Source Repositories. The integration is sea…
Security
Okay, let’s be real for a minute. Handing over your passwords and API keys to an autonomous piece of software is a security nightmare waiting to happen i…
Finance
Cryptocurrency can sound intimidating, but at its core, it’s digital money that operates on decentralized networks called blockchains. Bitcoin was the fi…
Data Structures
Lists and dictionaries are two of the most powerful data structures in Python. A list is an ordered collection that can hold any type of data. You create o…
GraphQL
As organizations scale, they often end up with multiple GraphQL services owned by different teams. GraphQL Federation solves the challenge of composing the…
Backend
Designing a good API is about creating an intuitive interface that developers will enjoy using. RESTful principles provide a solid foundation. Start with r…