Download VirtualBox 5.2.22
Download Vagrant 2.0.2
Note: be sure to install VirtualBox first, since Vagrant depends on it.
<?php | |
array( | |
'Pacific/Honolulu' => '(GMT-10:00) Hawaii', | |
'America/Anchorage' => '(GMT-09:00) Alaska', | |
'America/Los_Angeles' => '(GMT-08:00) Pacific Time (US & Canada)', | |
'America/Phoenix' => '(GMT-07:00) Arizona', | |
'America/Denver' => '(GMT-07:00) Mountain Time (US & Canada)', | |
'America/Chicago' => '(GMT-06:00) Central Time (US & Canada)', | |
'America/New_York' => '(GMT-05:00) Eastern Time (US & Canada)', |
[ | |
{ | |
"name": "American Samoa", | |
"time_zone_string": "(GMT-11:00) American Samoa" | |
}, | |
{ | |
"name": "International Date Line West", | |
"time_zone_string": "(GMT-11:00) International Date Line West" | |
}, | |
{ |
. | |
.. | |
........ | |
@ | |
* | |
*.* | |
*.*.* | |
🎠|
Download VirtualBox 5.2.22
Download Vagrant 2.0.2
Note: be sure to install VirtualBox first, since Vagrant depends on it.
git rm -r --cached . | |
git add . | |
git commit -am 'git cache cleared' | |
git push |
#!/bin/bash | |
IFS=$'\n' | |
files=($(git diff --name-only $1 $2)) | |
git archive -o $3 $2 "${files[@]}" |
The standard way of understanding the HTTP protocol is via the request reply pattern. Each HTTP transaction consists of a finitely bounded HTTP request and a finitely bounded HTTP response.
However it's also possible for both parts of an HTTP 1.1 transaction to stream their possibly infinitely bounded data. The advantages is that the sender can send data that is beyond the sender's memory limit, and the receiver can act on
<?php | |
/* | |
WordPress Template Hierarchy (as of WordPress 4.8) | |
is_404() -------------------------------------------------------------------------------------------------> 404.php | |
is_search() ----------------------------------------------------------------------------------------------> search.php | |
is_front_page() ------------------------------------------------------------------------------------------> front-page.php | |
is_home() ------------------------------------------------------------------------------------------------> home.php |
<?php | |
/* Plugin Name: Damn Vulnerable WordPress Plugin | |
* Description: Intentionally vulnerable plugin for plugin author education | |
* Version: 0.1 | |
* Plugin URI: http://make.wordpress.org/plugins/2013/04/09/intentionally-vulnerable-plugin/ | |
* Author: Jon Cave | |
* Author URI: http://joncave.co.uk | |
* License: GPLv2+ | |
* | |
* DO NOT RUN THIS PLUGIN ON AN INTERNET ACCESSIBLE SITE |