utils.js
// References: https://github.com/vuejs-templates/webpack/issues/149
let sassOptions = {
indentedSyntax: true
}
let scssOptions = {
Go to Bitbucket and create a new repository (its better to have an empty repo) | |
git clone [email protected]:abc/myforkedrepo.git | |
cd myforkedrepo | |
Now add Github repo as a new remote in Bitbucket called "sync" | |
git remote add sync [email protected]:def/originalrepo.git | |
Verify what are the remotes currently being setup for "myforkedrepo". This following command should show "fetch" and "push" for two remotes i.e. "origin" and "sync" | |
git remote -v |
from
and to
date functionalityHTML:
#### From:
<fieldset>
<input type="text" id="input_from">
</fieldset>
$('div#info div#checkboxDiv div.checkboxDivCat a[data-order-status-id]').each(function () {
var statusId = $(this).data('order-status-id');
var defaultStatus = [0, 3, 4, 5];
$(this).removeClass('active');
if ((defaultStatus.indexOf(statusId) > -1)) {
$(this).addClass('active');
Print error log in console window:
tail -f logs/laravel-2017-10-09.log
tail
is a command which prints the last few number of lines (10 lines by default) of a certain file. The -f option “which stands for follow” will keep the stream going. It will start printing extra lines on to console added to the file after it is opened.
To break it, press CTRL+C
.
Note: Don’t confuse const
with mutable objects. As I said, you cannot assign some other value to the const variables, but you can modify the const
value. Constant Reference, Not Value:The other new keyword for variable declaration in ES6 is const, but it is often misinterpreted as being a “constant value”. Instead, in ES6 a const represents a constant reference to a value (the same is true in most languages, in fact). In other words, the pointer that the variable name is using cannot change in memory, but the thing the variable points to might change. For example,
‘use strict’;
const a = {};
a.a = 1;
## The current values of the global and client-specific time zones can be retrieved like this:
SELECT @@global.time_zone, @@session.time_zone;
## NOW() returns current datetime based on system timezone in ‘YYYY-MM-DD HH:MM:SS’
## UNIX_TIMESTAMP() returns a Unix timestamp in seconds since '1970-01-01 00:00:00' UTC if no arguments are passed
## UTC_TIMESTAMP() returns current UTC datetime in 'YYYY-MM-DD HH:MM:SS'
SELECT NOW(), UNIX_TIMESTAMP(), UTC_TIMESTAMP();