Install git:
sudo apt-get install git
Configure Git:
touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global
git config --global user.name "Your Name"
git config --global user.email "Your Email"
Install git:
sudo apt-get install git
Configure Git:
touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global
git config --global user.name "Your Name"
git config --global user.email "Your Email"
Edit your /etc/fstab
:
sudo nano /etc/fstab
Add the following:
[NAME] [MOUNT_POINT] vboxsf rw 0 0
Where [NAME]
is the name setup in the virtual machine settings and [MOUNT_POINT]
is the path in the guest OS (Ubuntu) you want the shared folder located.
@echo off | |
if "%PHPBIN%" == "" set PHPBIN=C:\path\to\PHP\executable\dir\.\php.exe | |
"%PHPBIN%" "C:\path\to\composer.phar" %* |
$(document).ajaxComplete(function(event, XMLHttpRequest){ | |
var token = XMLHttpRequest.getResponseHeader('x-debug-token'), | |
protocol = window.location.protocol, | |
hostname = window.location.hostname; | |
if(token) { | |
$.get(protocol+'//'+hostname+'/_wdt/'+token, function(data){ |
/** | |
* Mass (bulk) insert or update on duplicate for Laravel 4/5 | |
* | |
* insertOrUpdate([ | |
* ['id'=>1,'value'=>10], | |
* ['id'=>2,'value'=>60] | |
* ]); | |
* | |
* | |
* @param array $rows |
Date | Topics | URL | Summary |
---|---|---|---|
May 21st, 2015 | core team organization, issue tagging/organization, PSR-7 | logs | -- |
June 4th, 2015 | PSR-HttpFoundation, DI-PSR, issue triaging/organization, meeting organization | logs | -- |
June 18th, 2015 | workflow/notifications, removing forums/ML, 3.0 changes - templating | logs | -- |
July 2nd, 2015 | issues bot / HttpFoundation PSR-7 / dropping templating / new SE structure/ config component split / HttpKernel split | logs | summary |
July 16th, 2015 | issues bot / updates on initiatives / closing old issues | logs | -- |
July 30th, 2015 | deprecatio |
// Creates a new promise that automatically resolves after some timeout: | |
Promise.delay = function (time) { | |
return new Promise((resolve, reject) => { | |
setTimeout(resolve, time) | |
}) | |
} | |
// Throttle this promise to resolve no faster than the specified time: | |
Promise.prototype.takeAtLeast = function (time) { | |
return new Promise((resolve, reject) => { |
//Notes | |
// | |
//For mapping the 100-900 colors we have mapped as follows: | |
//darkest:900 | |
//darker:700 | |
//dark:600 | |
//base:500 | |
//light:400 | |
//lighter:300 | |
//lightest:100 |
// https://davidpiesse.github.io/tailwind-md-colours/ | |
// | |
//Notes | |
// | |
//All colours are generated from Material Design Docs | |
//Colours have a base, a set of shades (50-900) accent colours | |
//In addition a companion set of contrast colours are included for colouring text / icons | |
// Example usage | |
// class="w-full bg-red-600 text-red-600-constrast" |