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' |
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
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) { |
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.
/** | |
* @param {string} s | |
* @return {number} | |
*/ | |
const romanToInt = s => { | |
const chart = { | |
I: 1, | |
V: 5, | |
X: 10, | |
L: 50, |
// Styles | |
const consoleGroupLabelColor = "color: grey;"; | |
const consoleGroupTitleColor = "color: black;"; | |
const red = [ | |
"background-color: #ffebe9;", | |
"color: #82071e;", | |
"font-weight: bold;", | |
]; |