|
2 | 2 | sidebar_position: 1
|
3 | 3 | ---
|
4 | 4 |
|
5 |
| -# EE Notes Intro |
| 5 | +# My Notes |
6 | 6 |
|
7 | 7 | Let's discover **Blog or My Notes**.
|
8 | 8 |
|
9 |
| -## Getting Started |
| 9 | +## What am I doing here |
10 | 10 |
|
11 |
| -Get started by **reading some notes**. |
| 11 | +I am writing my own notes here, from my English notes to my Node.js notes. I will try to keep the notes as short as possible. |
| 12 | +They may be useful for you or they may not interest you at all. I hope you find something useful. |
12 | 13 |
|
13 |
| -Or **try Docusaurus immediately** with **[docusaurus.new](https://docusaurus.new)**. |
| 14 | +## Software Development Notes |
14 | 15 |
|
15 |
| -### What you'll need |
| 16 | +These are my notes on various software development topics, including. |
16 | 17 |
|
17 |
| -- [Node.js](https://nodejs.org/en/download/) |
18 |
| - - You need Node js knowledge. |
| 18 | +### `Javascript` |
19 | 19 |
|
20 |
| -## Generate a new site |
| 20 | +Javascript is everything. ;) |
21 | 21 |
|
22 |
| -Generate a new Docusaurus site using the **classic template**. |
| 22 | +### `React` |
23 | 23 |
|
24 |
| -The classic template will automatically be added to your project after you run the command: |
| 24 | +React is a JavaScript library for building user interfaces. |
| 25 | +Components are the building blocks of React applications. |
| 26 | +Use React's state and props to manage data and pass it between components. |
25 | 27 |
|
26 |
| -```bash |
27 |
| -npm init docusaurus@latest my-website classic |
28 |
| -``` |
| 28 | +### `React Native` |
29 | 29 |
|
30 |
| -You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor. |
| 30 | +React Native is a mobile application development framework that uses React to build native mobile apps. |
| 31 | +Components in React Native work similarly to those in React, but are specific to mobile devices. |
| 32 | +React Native supports both iOS and Android platforms. |
31 | 33 |
|
32 |
| -The command also installs all necessary dependencies you need to run Docusaurus. |
| 34 | +### `SCSS` |
33 | 35 |
|
34 |
| -## Start your site |
| 36 | +SCSS (Sassy CSS) is a preprocessor scripting language that is compiled into CSS. |
| 37 | +Use SCSS to write CSS more efficiently and with more flexibility. |
| 38 | +SCSS supports variables, mixins, functions, and more. |
35 | 39 |
|
36 |
| -Run the development server: |
| 40 | +### `Svelte` |
37 | 41 |
|
38 |
| -```bash |
39 |
| -cd my-website |
40 |
| -npm run start |
41 |
| -``` |
| 42 | +Svelte is a lightweight, fast, and easy-to-learn JavaScript framework for building web applications. |
| 43 | +Svelte compiles your code into highly optimized JavaScript code, resulting in fast and performant web applications. |
| 44 | +Svelte's component-based architecture makes it easy to build modular and reusable components. |
42 | 45 |
|
43 |
| -The `cd` command changes the directory you're working with. In order to work with your newly created Docusaurus site, you'll need to navigate the terminal there. |
| 46 | +### `Vue` |
44 | 47 |
|
45 |
| -The `npm run start` command builds your website locally and serves it through a development server, ready for you to view at http://localhost:3000/. |
| 48 | +Vue is a progressive JavaScript framework for building user interfaces. |
| 49 | +Vue is designed to be flexible and easy to learn, making it a great choice for beginners and experienced developers alike. |
| 50 | +Vue's component-based architecture makes it easy to build reusable and maintainable components. |
46 | 51 |
|
47 |
| -Open `docs/intro.md` (this page) and edit some lines: the site **reloads automatically** and displays your changes. |
| 52 | +### `Node.js` |
| 53 | + |
| 54 | +Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. |
| 55 | +Node.js allows developers to build scalable, high-performance web applications using JavaScript on both the server and client side. |
| 56 | +Node.js has a vast ecosystem of libraries and tools, making it a popular choice for web developers. |
| 57 | +I hope these notes are useful to you in your software development journey. Let me know if you have any questions or if there's anything else I can help with! |
| 58 | + |
| 59 | +### English Learn Notes |
| 60 | + |
| 61 | +#### `Vocabulary` |
| 62 | + |
| 63 | +- I will write vocabulary notes |
| 64 | + |
| 65 | +#### `Grammer` |
| 66 | + |
| 67 | +- I am gonna write grammer tricky notes |
0 commit comments