Skip to content

Commit a8a7173

Browse files
committed
core refactor: Update head links & logo size
1 parent 3e24b24 commit a8a7173

File tree

9 files changed

+25
-52
lines changed

9 files changed

+25
-52
lines changed

docker/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="../logo.png" height="200">
2+
<img src="../logo.png" height="150">
33
</p>
44

55
<h1 align="center">Docker</h1>
@@ -9,7 +9,7 @@
99
</p>
1010

1111
<p align="right">
12-
<a href="https://github.com/seabeya/tech-stack#tech-stack">Main Page ↖</a>
12+
<a href="../#tech-stack">Main Page ↖</a>
1313
</p>
1414

1515
#### Knowledge requirements

dsa/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="../logo.png" height="200">
2+
<img src="../logo.png" height="150">
33
</p>
44

55
<h1 align="center">Data Structures & Algorithms</h1>
@@ -9,7 +9,7 @@
99
</p>
1010

1111
<p align="right">
12-
<a href="https://github.com/seabeya/tech-stack#tech-stack">Main Page ↖</a>
12+
<a href="../#tech-stack">Main Page ↖</a>
1313
</p>
1414

1515
#### Knowledge requirements

git/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="../logo.png" height="200">
2+
<img src="../logo.png" height="150">
33
</p>
44

55
<h1 align="center">Git</h1>
@@ -9,7 +9,7 @@
99
</p>
1010

1111
<p align="right">
12-
<a href="https://github.com/seabeya/tech-stack#tech-stack">Main Page ↖</a>
12+
<a href="../#tech-stack">Main Page ↖</a>
1313
</p>
1414

1515
#### Knowledge requirements
@@ -50,7 +50,7 @@
5050
- Configure the name and email that Git will associate with your work (required before start).
5151
- `git config --global user.name "<Name>"`
5252
- `git config --global user.email "<Email>"`
53-
> (Optional): If you want to keep your email private, you can use the email provided by GitHub. You can find it in your GitHub settings. For example, mine is 35802638+seabeya@users.noreply.github.com.
53+
> (Optional): If you want to keep your email private, you can use the email provided by GitHub. You can find it in your GitHub settings. Example: 123456789+username@users.noreply.github.com.
5454
> Without the `--global` option, the configuration will be applied locally to the current repository (you need an initialized repository to do this).
5555
- `git init`: Initialize a new Git repository in a directory.
5656
> When you run this command in a folder, it sets up all the necessary files and directories that Git needs to start tracking changes in your project. _(You need this once per project.)_

go/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="../logo.png" height="200">
2+
<img src="../logo.png" height="150">
33
</p>
44

55
<h1 align="center">Go</h1>
@@ -9,7 +9,7 @@
99
</p>
1010

1111
<p align="right">
12-
<a href="https://github.com/seabeya/tech-stack#tech-stack">Main Page ↖</a>
12+
<a href="../#tech-stack">Main Page ↖</a>
1313
</p>
1414

1515
#### Knowledge requirements

js/README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="../logo.png" height="200">
2+
<img src="../logo.png" height="150">
33
</p>
44

55
<h1 align="center">JavaScript</h1>
@@ -9,7 +9,7 @@
99
</p>
1010

1111
<p align="right">
12-
<a href="https://github.com/seabeya/tech-stack#tech-stack">Main Page ↖</a>
12+
<a href="../#tech-stack">Main Page ↖</a>
1313
</p>
1414

1515
#### Knowledge requirements
@@ -779,7 +779,7 @@ It allows you to handle multiple asynchronous tasks that depend on each other's
779779
> Anything that we return from one chain will be passed on to the next chain.
780780
781781
```js
782-
const promise = fetch("https://api.github.com/users/seabeya");
782+
const promise = fetch("https://api.github.com/users/username");
783783

784784
console.log("#1: ", promise); // #1: Promise {<pending>}
785785

@@ -788,7 +788,7 @@ promise
788788
return response.json();
789789
})
790790
.then((user) => {
791-
console.log(user); // {login: 'seabeya', ... }
791+
console.log(user); // {login: 'username', ... }
792792

793793
return "torvalds";
794794
})
@@ -811,7 +811,7 @@ console.log("#2: ", promise); // #2: Promise {<pending>}
811811
> ```
812812
> Status check #1: Promise {<pending>}
813813
> Status check #2: Promise {<pending>}
814-
> {login: 'seabeya', …}
814+
> {login: 'username', …}
815815
> torvalds
816816
> {login: 'torvalds', …}
817817
> ```
@@ -2050,7 +2050,6 @@ console.log(mathInstance.add(10, 5)); // 15
20502050
</p>
20512051
20522052
<br>
2053-
20542053
<br>
20552054
20562055
---

linux/README.md

+3-29
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#### Knowledge Requirements
1616

17-
- Nothing.
17+
- No previous knowledge is required!
1818

1919
### Contents
2020

@@ -185,12 +185,6 @@ Definitions:
185185

186186
<br>
187187

188-
<p align="right">
189-
<a href="#linux-debian">back to top ⬆</a>
190-
</p>
191-
192-
<br>
193-
194188
### 🔷 Command Chaining
195189

196190
- `cmd1 ; cmd2 ; cmd3`: Run commands in order, regardless of success.
@@ -205,12 +199,11 @@ Definitions:
205199
find . *.* | less # View the command result in a pager
206200
```
207201

208-
<br>
209-
210202
<p align="right">
211203
<a href="#linux-debian">back to top ⬆</a>
212204
</p>
213205

206+
<br>
214207
<br>
215208

216209
## 🔶 Permissions
@@ -251,12 +244,6 @@ Ownership determines who has control over a file or directory.
251244
252245
<br>
253246

254-
<p align="right">
255-
<a href="#linux-debian">back to top ⬆</a>
256-
</p>
257-
258-
<br>
259-
260247
### 🔷 Structure
261248

262249
The permission structure is represented in a 10-character string, such as `-rwxr-xr--`, which can be broken down as follows:
@@ -311,12 +298,6 @@ A complete table:
311298
312299
<br>
313300

314-
<p align="right">
315-
<a href="#linux-debian">back to top ⬆</a>
316-
</p>
317-
318-
<br>
319-
320301
### 🔷 Permission Commands
321302

322303
- `chmod -<option>... <mode> <file/directory>...`: Change file/directory permissions.
@@ -354,12 +335,6 @@ A complete table:
354335

355336
<br>
356337

357-
<p align="right">
358-
<a href="#linux-debian">back to top ⬆</a>
359-
</p>
360-
361-
<br>
362-
363338
### 🔷 User & Group Commands
364339

365340
- `groups <user>`: List groups a user belongs to.
@@ -369,10 +344,9 @@ A complete table:
369344
- `-d`: Delete a user's password.
370345
- `-e`: Expire a user's password (force change on next login).
371346

372-
<br>
373-
374347
<p align="right">
375348
<a href="#linux-debian">back to top ⬆</a>
376349
</p>
377350

378351
<br>
352+
<br>

react/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="../logo.png" height="200">
2+
<img src="../logo.png" height="150">
33
</p>
44

55
<h1 align="center">React.js</h1>
@@ -9,7 +9,7 @@
99
</p>
1010

1111
<p align="right">
12-
<a href="https://github.com/seabeya/tech-stack#tech-stack">Main Page ↖</a>
12+
<a href="../#tech-stack">Main Page ↖</a>
1313
</p>
1414

1515
#### Knowledge requirements
@@ -294,7 +294,7 @@ In React, conditional rendering is a way to display different components or cont
294294
>
295295
> Or, you can use other approaches to conditional rendering.
296296
297-
Take a look: [JS > Expressions and Operators](https://github.com/seabeya/tech-stack/blob/main/js/README.md#-expressions-and-operators).
297+
Take a look: [JS > Expressions and Operators](../js/README.md#-expressions-and-operators).
298298
299299
<br>
300300

sql/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="../logo.png" height="200">
2+
<img src="../logo.png" height="150">
33
</p>
44

55
<h1 align="center">SQL <em>(PostgreSQL)</em></h1>
@@ -9,7 +9,7 @@
99
</p>
1010

1111
<p align="right">
12-
<a href="https://github.com/seabeya/tech-stack#tech-stack">Main Page ↖</a>
12+
<a href="../#tech-stack">Main Page ↖</a>
1313
</p>
1414

1515
#### Knowledge requirements

ts/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="../logo.png" height="200">
2+
<img src="../logo.png" height="150">
33
</p>
44

55
<h1 align="center">TypeScript</h1>
@@ -9,7 +9,7 @@
99
</p>
1010

1111
<p align="right">
12-
<a href="https://github.com/seabeya/tech-stack#tech-stack">Main Page ↖</a>
12+
<a href="../#tech-stack">Main Page ↖</a>
1313
</p>
1414

1515
#### Knowledge requirements
@@ -930,7 +930,7 @@ console.log(xd.a, xd.b);
930930
are the same.
931931
932932
> [!NOTE]
933-
> TypeScript's `private` modifier doesn't prevent access at runtime; instead, use JavaScript's `#` symbol for runtime prevention ([Classes in JS > Private properties](https://github.com/seabeya/tech-stack/blob/main/js/README.md#-private-properties)).
933+
> TypeScript's `private` modifier doesn't prevent access at runtime; instead, use JavaScript's `#` symbol for runtime prevention ([Classes in JS > Private properties](../js/README.md#-private-properties)).
934934
935935
<br>
936936

0 commit comments

Comments
 (0)