- Before going any further, update & upgrade apt (advanced package tool) packages
# 👉 remote terminal
apt update && apt upgrade| // Styles | |
| const consoleGroupLabelColor = "color: grey;"; | |
| const consoleGroupTitleColor = "color: black;"; | |
| const red = [ | |
| "background-color: #ffebe9;", | |
| "color: #82071e;", | |
| "font-weight: bold;", | |
| ]; |
| /** | |
| * @param {string} s | |
| * @return {number} | |
| */ | |
| const romanToInt = s => { | |
| const chart = { | |
| I: 1, | |
| V: 5, | |
| X: 10, | |
| L: 50, |
A Python identifier is a name used to identify a variable, function, class, module or other object.
Python does not allow punctuation characters such as @, $, and % within identifiers.
Python is a case sensitive programming language.
| var EventsModule = { | |
| initialize:function(b) { | |
| this._eventHandler(b); | |
| }, | |
| _eventHandler:function(b) { | |
| Object.keys(b.events).forEach(function(a) { | |
| var c = a.substr(0, a.indexOf(" ")), e = a.substr(a.indexOf(" ") + 1); | |
| a = b.events[a]; | |
| c = document.querySelectorAll(c); | |
| if (c.length && "function" == typeof b[a] && b.hasOwnProperty(a) && e) { |
git show --name-only
commit b1e64c630129b47cb0ff1fcbed8b7cee10857000
Merge: 0fbfdab 8bb6266
Author: x_x <[email protected]>
Date: Thu Nov 24 17:20:31 2016 +0300
fix conflict
module/Admin/view/layout/admin.phtml
| # subl ~/.bashrc | |
| # git | |
| alias glog='git log --all --decorate --oneline --graph --abbrev-commit' |
| # Plugins | |
| https://packagecontrol.io/packages/AutoFileName | |
| https://packagecontrol.io/packages/Case%20Conversion | |
| https://packagecontrol.io/packages/Console%20Wrap%20for%20js | |
| https://packagecontrol.io/packages/AdvancedNewFile | |
| https://packagecontrol.io/packages/Local%20History | |
| https://packagecontrol.io/packages/SideBarEnhancements | |
| https://packagecontrol.io/packages/SwapStrings | |
| https://packagecontrol.io/packages/All%20Autocomplete |
| imdone-atom | |
| rest-client | |
| highlight-selected | |
| file-icons | |
| atom-jade | |
| emmet | |
| linter | |
| linter-eslint | |
| terminal-plus |
| $colors-pallette: (#5856d6, #008aff, #34aadc, #ff2d55); | |
| .wrapper { | |
| @for $i from 1 through length($colors-pallette) { | |
| &:nth-child(#{length($colors-pallette)}n+#{$i}) { | |
| .item { | |
| background-color: nth($colors-pallette, $i); | |
| } | |
| } | |
| } |