Xin tổng hợp lại đây một số nội dung tôi đã, đang và sẽ thực hiện:
You can use the following Bash command to dump all current environment variables into a .envrc
file:
export -p | sed 's/^declare -x //' > .envrc
export -p
lists all exported environment variables.sed 's/^declare -x //'
removes thedeclare -x
prefix, leaving justVAR=VALUE
pairs.> .envrc
writes the output to the.envrc
file.
- When Linux Memory Accounting Goes Wrong
- Don't Follow Leaders or "All Models Are Wrong (and So Am I)"
- Let the Chaos Begin—SRE Chaos Engineering Meets Cybersecurity
- What's the Cost of a Millisecond?
- What To Do When SRE is Just a New Job Title?
- Capacity Management for Fun & Profit
- The 'Success' in SRE Is Silent
- Building and Running a Diversity-focused Pre-internship Program for SRE
- A Postmortem of SRE Interviewing
- Self-Destructing Feature Flags
- Tales from the VOID: The Scary Truth about Incident Metrics
- How We Survived (and Thrived) During The Pandemic and Helped Millions...
- How the Sony PlayStation Network Does SRE
- Unleashing Generative AI: Improving Developer Productivity in SRE
- Patterns, Not Categories: Learning Across Incidents
- Observability in the MLOps Lifecycle with Prometheus
- Towards Zero Carbon: Implementing Sustainable Battery Lifecycle...
- Leveraging Analytics for Technical Efficiency and Enhanced User Experience
- 20 Years of SRE: Highs and Lows
- Scam or Savings? A Cloud vs. On-Prem Economic Slapfight
- Is It Already Time To Version Observability? (Signs Point To Yes.)
- Capacity Constraints Unveiled: Navigating Cloud Scaling Realities
- Sharding: Growing Systems from Node-scale to Planet-scale
- Product Reliability for Google Maps
- Build vs. Buy in the Midst of Armageddon
- Compliance & Regulatory Standards Are NOT Incompatible with Modern Development..
Best Practices for Passing Arrays of Strings as Query Parameters:
-
URL Encoding:
- Individual Encoding: Each string within the array should be URL encoded individually. This ensures proper handling of special characters like spaces, ampersands, and other reserved characters.
- Example:
my_array[]=value1&my_array[]=value2&my_array[]=value3
-
Key-Value Pairs:
- Repeated Keys: Use the same key for each value in the array, but with an empty index or a sequential index.
-
Example:
The 80/20 principle, also known as the Pareto Principle, states that 80% of results often come from 20% of efforts. To apply this principle to your SRE tasks, you can focus on identifying the most impactful actions that deliver the highest value with the least effort. Here's how you can implement it:
- Determine the top outcomes you want to achieve (e.g., improved system reliability, reduced incident frequency, faster response times).
- Align tasks with these goals.
- List out all your daily, weekly, and monthly tasks.
NewerOlder