-
https://www.youtube.com/watch?v=niuOc02Rvrc&list=PLsz00TDipIfdrJDjpULKY7mQlIFi4HjdR
-
Tmux
-
Catppuchin theme
-
Tmuxifier
ctrl + shift + = => new pan on side
ctrl + shift + - => new pan on bottom
ctrl + shift + w => close pan
alt + arrow => move focus pan
alt + shift + arrow => resize pan
ctrl + , => open settings
ctrl + shift + p => command pattele
- Use for authentication
- NodeJs Package
- Examples
- openid-connect-helper with nodejs
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
SELECTION | |
--------- | |
Ctrl + D : select a Word | |
Ctrl + L : select Line | |
Ctrl + M : Select whole bracket code | |
Ctrl + Shift + P : Command Patelle | |
Ctrl + P : list all files | |
1) SideBarEnhancements |
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
⌘+Space App Launcher | |
Alt+Tab Window Switcher | |
⇧+Alt+Tab Switch Windows Backwards | |
⌘+W Window Overview | |
⌘+A Window Overview (Across All Workspaces) | |
⌘+Left/Right Switch Workspace | |
⌘+S Workspace Overview | |
⌘+0 New Workspace | |
⇧+⌘+Left/Right Move Window with Workspace | |
Ctrl+⌘+Left/Right Snap Window to Half of Workspace |
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
[Flags] | |
public enum Status | |
{ | |
Success = 1<<0, //1 | |
Fail = 1<<1, //2 | |
Unknown = 1<<2, //4 | |
isNotFail = Success | Unknown | |
} | |
public static bool HasFlag(this int status, int flag) |
(Full description and list of commands at - https://npmjs.org/doc/index.html)
##List of less common (however useful) NPM commands
######Prepand ./bin to your $PATH Make sure to export your local $PATH and prepand relative ./node_modules/.bin/:
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
// Node.js CheatSheet. | |
// Download the Node.js source code or a pre-built installer for your platform, and start developing today. | |
// Download: http://nodejs.org/download/ | |
// More: http://nodejs.org/api/all.html | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html |
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
<div id="body"> | |
<section class="content-wrapper main-content clear-fix" data-bind="with: personList" style="margin-top: 30px;"> | |
<table> | |
<thead> | |
<tr> | |
<td>First Name</td> | |
<td>Last Name</td> | |
<td>Age</td> | |
</tr> | |
</thead> |
NewerOlder