(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
# Basic workflow to build and deploy WordPress theme or plugin | |
name: CD | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "master" branch | |
push: | |
branches: [ "master" ] | |
pull_request: |
<?php | |
/** | |
* Prints a string showing current time zone offset to UTC, considering daylight savings time. | |
* @link http://php.net/manual/en/timezones.php | |
* @param string $time_zone Time zone name | |
* @return string Offset in hours, prepended by +/- | |
*/ | |
function ch150918__utc_offset_dst( $time_zone = 'Europe/Berlin' ) { | |
// Set UTC as default time zone. |
<? | |
// | |
// [ BUY BTC & ETH DAILY ON BITSTAMP ] | |
// by @levelsio | |
// | |
// 2017-08-23 | |
// | |
// 1) buy $40/day BTC | |
// 2) buy $10/day ETH | |
// |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
'google' => [ | |
'client_id' => env('GOOGLE_ID'), | |
'client_secret' => env('GOOGLE_SECRET'), | |
'redirect' => env('GOOGLE_REDIRECT') | |
], | |
'github' => [ | |
'client_id' => env('GITHUB_ID'), | |
'client_secret' => env('GITHUB_SECRET'), | |
'redirect' => env('GITHUB_REDIRECT') |