IELTS Study Log | Day 1

Target overall band: 6.5 (L 7 / R 7 / W 6.0 / S 6.0)

Done Today

  • Listening: Section 2 intensive practice (20 mins)
  • Reading: Passage 1 timed practice (20 mins)
  • Writing: Task 1 structure review (15 mins)
  • Speaking: Part 1 topic cards (10 mins)

Notes

  • Listening: slow response to paraphrases
  • Reading: first 5 minutes too slow for locating keywords
  • Writing: intro template needs trimming
  • Speaking: answers are long enough but lack examples
Read more

AWS DVA-C02 Study Guide

Goal: follow an actionable plan to pass AWS Certified Developer - Associate (DVA-C02).

Exam Overview

  • Duration: 130 minutes
  • Question types: multiple choice / multiple response
  • Focus areas: development, deployment, monitoring, identity and access, best practices

Domain Map

  1. Deployment
    • CodeDeploy / CodePipeline / CodeBuild
    • Blue/Green and rolling deployments
  2. Security
    • IAM policy boundaries, STS, role assumption
    • KMS, Secrets Manager, Parameter Store
  3. Development with AWS Services
    • Lambda / API Gateway / DynamoDB / SQS / SNS
    • SDK retries, signing, pagination
  4. Troubleshooting and Optimization
    • CloudWatch / X-Ray
    • Latency and error investigation patterns
Read more

Weekly Study Plan Template

A minimal template to reduce decision fatigue and keep rhythm.

This Week’s Goals

  1. Complete 3 notes
  2. Solve 10 problems
  3. Do 1 weekly review

Daily Schedule

Day Theme Notes
Mon Weekly review 30 mins
Tue Reading + notes 60 mins
Wed Practice 60 mins
Thu Project cleanup 45 mins
Fri Writing 60 mins
Sat Free study 60 mins
Sun Rest light review
Read more

Git Quick Notes

A compact reference for high-frequency Git commands.

Common Commands

1
2
3
4
5
git status
git add .
git commit -m "feat: add post"
git pull --rebase
git push

Branch Operations

1
2
3
git checkout -b feature/post
git switch main
git merge feature/post
Read more

IELTS 备考笔记 | 3月

📚 3月单词、短语、句型积累


Week 1 | 主题:教育 Education

📖 核心词汇

单词 词性 释义 例句
curriculum n 课程体系 The school has updated its curriculum.
compulsory adj 强制的,必修的 English is a compulsory subject.
tuition n 学费;教学 Tuition fees have risen sharply.
literacy n 读写能力 Improving adult literacy is essential.
dropout n 辍学者 The dropout rate has decreased.
Read more

Hexo Quick Start

A minimal Hexo checklist to get started fast.

Install

1
npm install -g hexo-cli

Init

1
2
3
hexo init my-blog
cd my-blog
npm install
Read more

数组 & 哈希

LeetCode Hot 100


1. 两数之和

难度:简单 | LeetCode 链接

给定数组 nums 和目标值 target,找出和为目标值的两个数的下标。

Read more