-
Simplest intro to git by github and codeschool - Try Git
-
[Intro to github]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1. First of all of course get Manjaro: | |
https://manjaro.org/get-manjaro/ | |
# I recommend using Etcher to copy the image to your USB: | |
https://etcher.io/ | |
# 2. Before installing make sure: | |
# - Secure boot is disabled in BIOS | |
# - Your SSD, HDD or NVME drive is set to AHCI instead of RAID | |
# - Fastboot should be on Auto or minimal, but this shouldn't matter to much |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Type | Host | Value | TTL | |
---|---|---|---|---|
A Record | @ | IP_Address | Automatic | |
A+ DDNS Record | Synologyds.example.com | IP_Address | Automatic | |
CNAME Record | Synologyds | Synologyds.example.com | Automatic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontFamily": "Fira Code iScript", | |
"editor.formatOnSave": false, | |
"editor.formatOnPaste": true, | |
"editor.fontSize": 16, | |
"editor.lineHeight": 25, | |
"editor.fontWeight": "400", | |
"editor.tabSize": 2, | |
"editor.cursorWidth": 5, | |
"editor.letterSpacing": 0.5, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"workbench.statusBar.visible": true, | |
"workbench.activityBar.visible": true, | |
"workbench.colorTheme": "Cobalt2", | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#333333", | |
"statusBar.noFolderBackground": "#333333", | |
"statusBar.debuggingBackground": "#263238", | |
"activityBarBadge.background": "#616161", | |
"list.activeSelectionForeground": "#616161", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"files.trimTrailingWhitespace": true, | |
"files.autoSave": "onFocusChange", | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/node_modules": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/.next": true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = Akash | |
email = [email protected] | |
[color] | |
ui = true | |
[color "branch"] | |
current = yellow reverse | |
local = yello | |
remote = green |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function foo (firstName, lastName) { | |
console.log(this) //window | |
console.log(`${firstName} ${lastName}`) //Akash Rajvanshi | |
} | |
foo("Akash", "Rajvanshi") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
console.log('Anonymous function') // Anonymous Function | |
console.log(this) // window object | |
})() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function foo () { | |
'use strict' | |
console.log("Simple Function Call") //Simple Function Call | |
console.log(this) //undefined | |
} | |
foo() |
OlderNewer