Skip to content

Instantly share code, notes, and snippets.

View andrewmmc's full-sized avatar

Andrew Mok andrewmmc

View GitHub Profile
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
@andrewmmc
andrewmmc / sass-global.md
Last active January 8, 2018 09:45
[SASS] @import globally available in Webpack Sass-loader

SASS - @import globally available in Webpack Sass-loader

utils.js

// References: https://github.com/vuejs-templates/webpack/issues/149

let sassOptions = {
    indentedSyntax: true
  }
 let scssOptions = {
@andrewmmc
andrewmmc / laravel-mix-postcss-sprites.md
Last active January 8, 2018 09:46
[Laravel] Laravel Mix using postcss-sprites

Laravel 5.5 - Laravel Mix using postcss-sprites

webpack.mix.js

// https://github.com/2createStudio/postcss-sprites/issues/69

let mix = require('laravel-mix')

/*
 |--------------------------------------------------------------------------
@andrewmmc
andrewmmc / pickadate-from-to.md
Last active January 8, 2018 09:49
[Pickadate] Extend Pickadate for `from` & `to` dates functionality

Extend pickadate v3 to get from and to date functionality

HTML:

#### From:

<fieldset>
  <input type="text" id="input_from">
</fieldset>
@andrewmmc
andrewmmc / array-exist.md
Last active January 8, 2018 09:51
[Javascript] Check if variable exist in array

Javascript - Check if variable exist in array

$('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');
@andrewmmc
andrewmmc / phpunit-print-var.md
Last active March 5, 2024 21:09
[PHPUnit] Print variables for debugging

PHPUnit - Print variables for debugging

Print variable in console window:

fwrite(STDERR, print_r($myDebugVar, true));

Test output using the built-in methods:

$this-&gt;expectOutputString('foo');
@andrewmmc
andrewmmc / laravel-print-log.md
Last active January 8, 2018 07:48
[Laravel] Print error log in console window

Laravel 5 - Print error log in console window

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.

@andrewmmc
andrewmmc / const-let.md
Last active January 8, 2018 07:47
[JavaScript ES6] Const / let

JavaScript ES6 - const / let

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;
@andrewmmc
andrewmmc / docker-cleanup-resources.md
Last active January 8, 2018 07:46 — forked from bastman/docker-cleanup-resources.md
[Docker] Cleanup guide: containers, images, volumes, networks

Docker - How to cleanup unused resources

delete orphaned volumes in Docker 1.9 and up

$ docker volume prune

delete volumes

@andrewmmc
andrewmmc / mysql-timezone.md
Last active January 31, 2018 02:14
[MySQL] Server Time Zone Support

MySQL - Server Time Zone Support

## 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();