Skip to content

Commit 8294e1e

Browse files
committed
Quartz sync: Dec 31, 2025, 5:29 PM
1 parent 0d1374f commit 8294e1e

File tree

4 files changed

+92
-57
lines changed

4 files changed

+92
-57
lines changed

content/notes/install-winget-on-windows-11-ltsc.md

Lines changed: 67 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -7,38 +7,73 @@ tags:
77
- winget
88
draft: false
99
created: 2025-12-31T16:30
10-
updated: 2025-12-31T17:02
10+
updated: 2025-12-31T17:16
1111
---
12-
This guide describes several methods to install WinGet (Windows Package Manager) on Windows 11 LTSC.
13-
14-
## Requirements
15-
16-
- Windows 11 LTSC (24H2 or newer recommended)
17-
- Administrator privileges
18-
- Internet access
19-
20-
## Manual Installation Directly from the Microsoft winget‑cli Repository.
21-
22-
1. Download the following from the winget GitHub releases:
23-
- `DesktopAppInstaller_Dependencies.zip`
24-
- `*_License1.xml`
25-
- `Microsoft.DesktopAppInstaller_*.msixbundle`
26-
source: [Releases · microsoft/winget-cli](https://github.com/microsoft/winget-cli/releases)
27-
28-
2. Extract `DesktopAppInstaller_Dependencies.zip`
29-
- Copy all files from both `x86` and `x64` folders into one folder.
30-
31-
3. Install dependencies:
32-
```pwsh
33-
Add-AppxPackage Microsoft.VCLibs.140.00_14.0.*_x86.appx
34-
Add-AppxPackage Microsoft.VCLibs.140.00_14.0.*_x64.appx
35-
Add-AppxPackage Microsoft.VCLibs.140.00.UWPDesktop_14.0.*_x86.appx
36-
Add-AppxPackage Microsoft.VCLibs.140.00.UWPDesktop_14.0.*_x64.appx
37-
Add-AppxPackage Microsoft.WindowsAppRuntime.1.8_*_x86.appx
38-
Add-AppxPackage Microsoft.WindowsAppRuntime.1.8_*_x64.appx
12+
Here is a revised version of your guide with improved formatting for both Obsidian and online publishing, along with a recommendation on headline structure.
13+
14+
### A Guide to Installing WinGet on Windows 11 LTSC
15+
16+
This guide provides step-by-step instructions for installing the Windows Package Manager (WinGet) on Windows 11 LTSC.
17+
18+
***
19+
20+
### Requirements
21+
22+
Before you begin, ensure you have the following:
23+
24+
* **Operating System:** Windows 11 LTSC (24H2 or newer is recommended)
25+
* **Permissions:** Administrator privileges
26+
* **Connectivity:** An active internet connection
27+
28+
***
29+
30+
### Manual Installation from the Microsoft `winget-cli` Repository
31+
32+
This method involves directly downloading and installing the necessary files from the official WinGet repository on GitHub.
33+
34+
#### 1. Download Required Files
35+
36+
Navigate to the [winget-cli GitHub releases page](https://github.com/microsoft/winget-cli/releases) and download the following files:
37+
38+
* `DesktopAppInstaller_Dependencies.zip`
39+
* A file ending in `_License1.xml`
40+
* `Microsoft.DesktopAppInstaller_*.msixbundle`
41+
42+
#### 2. Extract and Organize Dependencies
43+
44+
1. Extract the contents of the `DesktopAppInstaller_Dependencies.zip` file.
45+
2. Create a single folder and copy all the files from both the `x86` and `x64` folders into it.
46+
47+
#### 3. Install Dependencies
48+
49+
Open PowerShell with administrator privileges and run the following commands to install the necessary dependencies:
50+
51+
```powershell
52+
# Installs the Visual C++ Libraries
53+
Add-AppxPackage Microsoft.VCLibs.140.00_14.0.*_x86.appx
54+
Add-AppxPackage Microsoft.VCLibs.140.00_14.0.*_x64.appx
55+
Add-AppxPackage Microsoft.VCLibs.140.00.UWPDesktop_14.0.*_x86.appx
56+
Add-AppxPackage Microsoft.VCLibs.140.00.UWPDesktop_14.0.*_x64.appx
57+
58+
# Installs the Windows App Runtime
59+
Add-AppxPackage Microsoft.WindowsAppRuntime.1.8_*_x86.appx
60+
Add-AppxPackage Microsoft.WindowsAppRuntime.1.8_*_x64.appx
61+
```
62+
63+
#### 4. Install the Main WinGet Package
64+
65+
Finally, install the main WinGet package by executing the following command in the same PowerShell window:
66+
67+
```powershell
68+
Add-AppxProvisionedPackage -Online -PackagePath Microsoft.DesktopAppInstaller.Msixbundle -LicensePath *_License1.xml
69+
```
70+
71+
#### 5. Verify the Installation
72+
73+
To confirm that WinGet has been installed correctly, open a **new** Command Prompt or PowerShell window and run the following command:
74+
75+
```powershell
76+
winget --version
3977
```
4078

41-
4. Install main package
42-
```pwsh
43-
Add-AppxProvisionedPackage -Online -PackagePath Microsoft.DesktopAppInstaller.Msixbundle -LicensePath *_License1.xml
44-
```
79+
If the installation was successful, the command will return the installed version number of WinGet (e.g., `v1.8.1121`).

content/notes/simple-git-workflow-guide.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: Simple Git workflow guide
2+
title: Simple Git Workflow Guide
33
description:
44
aliases:
55
tags:
66
- note
77
- git
88
draft: false
99
created: 2025-10-12T16:21
10-
updated: 2025-10-12T16:38
10+
updated: 2025-12-31T17:24
1111
---
1212
A minimal guide covering the essential Git commands for daily team development.
1313

@@ -157,7 +157,7 @@ git push
157157

158158
---
159159

160-
## After PR is Merged
160+
## After PR Is Merged
161161

162162
```bash
163163
# Switch to main
@@ -226,31 +226,31 @@ hotfix/security-patch
226226

227227
## Quick Reference
228228

229-
### Starting work:
229+
### Starting Work:
230230

231231
```bash
232232
git checkout main
233233
git pull origin main
234234
git checkout -b feature/my-feature
235235
```
236236

237-
### During work:
237+
### During Work:
238238

239239
```bash
240240
git add .
241241
git commit -m "Description"
242242
git push
243243
```
244244

245-
### Keep in sync:
245+
### Keep in Sync:
246246

247247
```bash
248248
git pull origin main # merge approach
249249
# or
250250
git fetch origin && git rebase origin/main # rebase approach
251251
```
252252

253-
### Finish work:
253+
### Finish Work:
254254

255255
```bash
256256
git push

content/notes/simple-jj-workflow-guide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Simple JJ workflow guide
2+
title: Simple JJ Workflow Guide
33
description:
44
aliases:
55
tags:
@@ -8,11 +8,11 @@ tags:
88
- git
99
draft: false
1010
created: 2025-10-12T16:27
11-
updated: 2025-10-21T20:10
11+
updated: 2025-12-31T17:24
1212
---
1313
A minimal guide for using JJ (Jujutsu) with Git repositories in colocated mode.
1414

15-
## What is JJ?
15+
## What Is JJ?
1616

1717
JJ is a Git-compatible version control tool that simplifies common workflows. You can use it on existing Git repos and still interact with GitHub/GitLab normally.
1818

@@ -125,7 +125,7 @@ That's it! One command instead of merge/rebase complexity.
125125

126126
---
127127

128-
## Working with Multiple Changes (Stacked Work)
128+
## Working with multiple Changes (Stacked Work)
129129

130130
JJ makes it easy to work on multiple things at once:
131131

@@ -207,7 +207,7 @@ jj git push --branch feature/my-feature
207207

208208
---
209209

210-
## After PR is Merged
210+
## After PR Is Merged
211211

212212
```shell
213213
# Fetch latest (includes your merged work)
@@ -269,7 +269,7 @@ jj op undo
269269

270270
## Understanding JJ Concepts
271271

272-
### Changes vs Commits
272+
### Changes Vs Commits
273273

274274
- **Git:** You create commits
275275
- **JJ:** You create changes (mutable until pushed)

content/posts/how-to-study-so-fast-it-feels-like-lifes-on-easy-mode.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: How to study so fast it feels like life’s on easy mode
2+
title: How to Study So Fast It Feels like Life’s on Easy Mode
33
description:
44
aliases:
55
tags:
66
- post
77
draft: false
88
created: 2025-02-08T11:03
9-
updated: 2025-07-27T18:44
9+
updated: 2025-12-31T17:27
1010
---
1111
Let's talk about studying some hate it some like it but most of us feel like studying is hard. What do we do when something feels hard we start procrastinating and wasting time rather trying to find the root of the problem?
1212

@@ -16,35 +16,35 @@ The truth is you're not the problem it's the boring and inefficient way that you
1616

1717
First let's address the elephant in the room hours studied $\neq$ more knowledge. It's the way you study and how efficient you are at studying. There is that guy in our class who study fewer hours than you but gets better grades than you that means his studying methodology is more efficient. So I am going to guide you through a step-by-step guide on how to study like that cool person in your class by studying smarter, not harder.
1818

19-
## 01 Cut out sugary snacks
19+
## 01 Cut out Sugary Snacks
2020

2121
Sugar is like kryptonite for people who study. In simple terms the more sugar you eat the less active you become. Sugar is like a drug it gives you instant energy boost and gratification while having the side effects slowing down your brain making it harder to focus and retain information. Also, I am not making this up scientific studies from UCLA proves that sugar reduces cognitive functions and impairs memory retention. So let's ditch the sweets and go for brain boosting alternatives like nuts, fish, and berries. These healthy snacks will provide you with sustained energy, keeps your brain sharp and helps you stay focused longer without the dreaded sugar crash.
2222

23-
## 02 Positive thinking matters
23+
## 02 Positive Thinking Matters
2424

25-
Let's change our mindset to change our grade. Your mindset matters more than you think. Let's say you sit down to study while thinking it's going endless and boring it probably will be. On the other hand if you say to yourself it's going to be quick, easy and productive your brain will respond positively. I am not making these things up about positive thinking Harvard studies have proven that positive thinking can significantly boost performance. Try repeating affirmations like, "I can complete this topic in 30 minutes" or "I can understand this topic easily." When you think positively, your brain releases chemicals that reduce stress and help you focus. This makes it easier to absorb information faster.
25+
Let's change our mindset to change our grade. Your mindset matters more than you think. Let's say you sit down to study while thinking it's going endless and boring it probably will be. On the other hand, if you say to yourself it's going to be quick, easy and productive your brain will respond positively. I am not making these things up about positive thinking Harvard studies have proven that positive thinking can significantly boost performance. Try repeating affirmations like, "I can complete this topic in 30 minutes" or "I can understand this topic easily." When you think positively, your brain releases chemicals that reduce stress and help you focus. This makes it easier to absorb information faster.
2626

27-
## 03 The timer trick
27+
## 03 the Timer Trick
2828

2929
The timer trick (nerds call this the [Parkinson's Law](https://en.wikipedia.org/wiki/Parkinson%27s_law)). The simple concept is work expands to fill the time available for its completion. So stop wasting endless hours studying inefficiently. Instead, set a timer for 30 minutes and challenge yourself to get as much done as possible within that time. This technique is inspired by the [Pomodoro Technique](https://en.wikipedia.org/wiki/Pomodoro_Technique), which helps create a sense of urgency and focus. When this happens, your brain enters a productive state where distractions are minimized, and you work faster.
3030

31-
## 04 Focus on key content
31+
## 04 Focus on Key Content
3232

3333
Focusing on key content. The famous 80/20 rule states that 20% of the content will give you 80% of the results. So identify the most critical topics and focus on those. These are information your teacher repeats often, things that are highlighted in the summary or the sections that frequently appear in exams. When you focus on the key concepts first, you avoid wasting time on irrelevant details, helps you learn faster and more effectively.
3434

35-
## 05 Reverse learning
35+
## 05 Reverse Learning
3636

3737
Start with the answer. Why spend hours reading the entire text book when you can backward. Start by looking at the questions and answers related to the subject, this strategy will help you understand what the test will focus on and what information is most critical. Also, working from answers backward also strengthens your ability to identify key patterns and connections between concepts, which speeds up comprehension and helps you retain information longer.
3838

39-
## 06 Tackle your weaknesses head-on
39+
## 06 Tackle Your Weaknesses Head-On
4040

41-
Stop reweaving the topics you already know and focus on areas where you're struggling. It's easy to stay in your comfort zone, but real progress happens when you challenge your self. Make a list of topics you find challenging, tackle them head-on. Try using horizontal learning by connecting related concepts, this method deepens your understanding reduces the time needed to grasp complex concepts by creating connections in your brain.
41+
Stop reweaving the topics you already know and focus on areas where you're struggling. It's easy to stay in your comfort zone, but real progress happens when you challenge your self. Make a list of topics you find challenging, tackle them head-on. Try using horizontal learning by connecting related concepts, this method deepens your understanding and reduces the time needed to grasp complex concepts by creating connections in your brain.
4242

43-
## 07 Harness the power of AI
43+
## 07 Harness the Power of AI
4444

4545
AI tool like ChatGPT can revolutionize the way you study. Imagine having a personal tutor available 24/7 to help you understand complex concepts, create summaries, generate quizzes ad even provide practice questions tailored to your learning style. With the right prompts you can condense hours of study into minutes and stay focused on the essentials. AI tools speed up your learning process by breaking down difficult topics into digestible bits and offering you personalized explanations so you don't waste time being confused.
4646

47-
## 08 Learn from your mistakes
47+
## 08 Learn from Your Mistakes
4848

4949
Don't repeat the same mistakes over and over again. Keep a dedicated notebook or digital document where you record your mistakes from quizzes, assignments, and practice tests review them before every exam to reinforce what you have learned and avoid making the same errors again. Revisiting your mistakes helps your brain identify patterns and gaps making you a faster learner and improving your long term retention.
5050

0 commit comments

Comments
 (0)