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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#environment-files | |
- name: Check if there is any change | |
id: get_changes | |
# deprecated. see https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ | |
#run: echo "::set-output name=changed::$(git status --porcelain | wc -l)" | |
run: echo "changed=$(git status --porcelain | wc -l)" >> $GITHUB_OUTPUT | |
- name: Do something if there is any change | |
if: steps.get_changes.outputs.changed != 0 | |
run: do something |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Mass (bulk) insert or update on duplicate for Laravel 4/5 | |
* | |
* insertOrUpdate([ | |
* ['id'=>1,'value'=>10], | |
* ['id'=>2,'value'=>60] | |
* ]); | |
* | |
* | |
* @param array $rows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
if "%PHPBIN%" == "" set PHPBIN=C:\path\to\PHP\executable\dir\.\php.exe | |
"%PHPBIN%" "C:\path\to\composer.phar" %* |
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.
NewerOlder