added new posts: git, github and internet protocols

This commit is contained in:
hiyori 2023-03-12 00:58:56 -05:00
parent 633beddb46
commit 700370c374
5 changed files with 91 additions and 12 deletions

View File

@ -1,13 +1,33 @@
{ {
"recentFiles": [ "recentFiles": [
{
"basename": "shell scripting",
"path": "shell scripting.md"
},
{
"basename": "Linux",
"path": "Linux.md"
},
{
"basename": "new post",
"path": "templates/new post.md"
},
{ {
"basename": "git and github", "basename": "git and github",
"path": "git and github.md" "path": "git and github.md"
}, },
{
"basename": "markup languages",
"path": "markup languages.md"
},
{ {
"basename": "internet protocols", "basename": "internet protocols",
"path": "internet protocols.md" "path": "internet protocols.md"
}, },
{
"basename": "rmarkdown and LaTeX",
"path": "rmarkdown and LaTeX.md"
},
{ {
"basename": "packages", "basename": "packages",
"path": "packages.md" "path": "packages.md"

View File

@ -67,6 +67,42 @@
} }
} }
}, },
{
"id": "fdfe7d0817eb2e88",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "shell scripting.md",
"mode": "source",
"source": false
}
}
},
{
"id": "279ad3ef4fd3a2af",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Linux.md",
"mode": "source",
"source": false
}
}
},
{
"id": "732cda13d69e8846",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "templates/new post.md",
"mode": "source",
"source": false
}
}
},
{ {
"id": "fbd5c78d637b9b76", "id": "fbd5c78d637b9b76",
"type": "leaf", "type": "leaf",
@ -78,6 +114,18 @@
"source": false "source": false
} }
} }
},
{
"id": "9724238b221bd7bc",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "rmarkdown and LaTeX.md",
"mode": "source",
"source": false
}
}
} }
], ],
"currentTab": 5 "currentTab": 5
@ -134,8 +182,7 @@
"state": {} "state": {}
} }
} }
], ]
"currentTab": 3
} }
], ],
"direction": "horizontal", "direction": "horizontal",
@ -155,7 +202,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "git and github.md", "file": "shell scripting.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -172,7 +219,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "git and github.md", "file": "shell scripting.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -195,7 +242,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "git and github.md" "file": "shell scripting.md"
} }
} }
} }
@ -216,16 +263,20 @@
"command-palette:Open command palette": false "command-palette:Open command palette": false
} }
}, },
"active": "fbd5c78d637b9b76", "active": "fdfe7d0817eb2e88",
"lastOpenFiles": [ "lastOpenFiles": [
"internet protocols.md", "Linux.md",
"shell scripting.md",
"templates/new post.md",
"git and github.md", "git and github.md",
"markup languages.md",
"internet protocols.md",
"rmarkdown and LaTeX.md",
"packages.md", "packages.md",
"powershell scripting.md", "powershell scripting.md",
"functional verbal thinking.md", "functional verbal thinking.md",
"AI chatbots.md", "AI chatbots.md",
"This digital garden.md", "This digital garden.md",
"templates/new post.md",
"templates" "templates"
] ]
} }

View File

@ -1,8 +1,14 @@
--- ---
title: "git and github" title: "git and github"
tags : tags :
- tag1 - entry
- budding
- Bing_AI_assistance
--- ---
how to add commits how to add commits
To add all changes to the staging area in Git, you can use the command `git add .` . The `.` indicates that you want to add all changes, including new and modified files, to the staging area. Alternatively, you can use the command `git add -A` or `git add --all` to achieve the same result. 1. To add all changes to the staging area in Git, you can use the command `git add .` .
- The `.` indicates that you want to add all changes, including new and modified files, to the staging area. Alternatively, you can use the command `git add -A` or `git add --all` to achieve the same result.
2. git commit -m "message here"

View File

@ -12,4 +12,5 @@ Internet protocols are sets of rules that enable communication and data exchange
- HTTP: Hypertext Transfer Protocol. [This protocol is used for accessing and displaying web pages over the internet](https://www.techwalla.com/articles/types-of-internet-protocol)[1](https://www.techwalla.com/articles/types-of-internet-protocol)[2](https://www.geeksforgeeks.org/types-of-internet-protocols/). - HTTP: Hypertext Transfer Protocol. [This protocol is used for accessing and displaying web pages over the internet](https://www.techwalla.com/articles/types-of-internet-protocol)[1](https://www.techwalla.com/articles/types-of-internet-protocol)[2](https://www.geeksforgeeks.org/types-of-internet-protocols/).
- DNS: Domain Name System. [This protocol is used for translating domain names into IP addresses, which are easier for computers to understand](https://www.techtarget.com/searchnetworking/feature/12-common-network-protocols-and-their-functions-explained)[3](https://www.techtarget.com/searchnetworking/feature/12-common-network-protocols-and-their-functions-explained). - DNS: Domain Name System. [This protocol is used for translating domain names into IP addresses, which are easier for computers to understand](https://www.techtarget.com/searchnetworking/feature/12-common-network-protocols-and-their-functions-explained)[3](https://www.techtarget.com/searchnetworking/feature/12-common-network-protocols-and-their-functions-explained).
geminis
These are some examples of internet protocols that you may encounter or use on a daily basis. You can learn more about each protocol by reading their specifications or tutorials online These are some examples of internet protocols that you may encounter or use on a daily basis. You can learn more about each protocol by reading their specifications or tutorials online

View File

@ -1,5 +1,6 @@
--- ---
title: "AI chatbots" title: "new post"
tags : tags :
- tag1 - entry
- budding
--- ---