In terminal.app, install ffmpeg through homebrew
brew install ffmpeg
Validate the installation:
<?php | |
/** | |
* Get google reviews | |
* @return array Google reviews data | |
*/ | |
function get_google_reviews(){ | |
// URL to fetch | |
$google_api = 'https://maps.googleapis.com/maps/api/place/details/json?placeid=<your_place_id>&sensor=true&key=<key>'; |
#!/bin/sh | |
# Cloudflare API v.4 Variables | |
CF_APIKEY='Your API Key Here' | |
CF_ZONEID='The Zone ID here' # Found on your Cloudflare Dashboard | |
CF_DNSID='The DNS ID here' # Found by listing DNS with Cloudflare API, see below for command | |
CF_EMAIL='[email protected]' | |
CF_DNS='address.domain.com' | |
GET_IP=$(dig +short txt ch whoami.cloudflare @1.0.0.1) |
After you've downloaded and installed WAMP Server, follow these steps:
Add C:\wamp64\bin\apache\apache2.4.27\bin
directory to the PATH so you can access openssl
command from the command prompt (WAMP comes with its own version of OpenSSL already integrated, so you don't need to install it. You'll find it in this directory.).
IMPORTANT: Please note that the path of your installation depends on your version of Apache! DO NOT copy and paste the paths presented in this gist as they will not match with yours!
Navigate to your user directory (C:\Users\%YOUR_USERNAME%\
), create a new folder (.openssl
), navigate to it with Powershell and run these commands:
openssl genrsa -aes256 -out private.key 2048
openssl rsa -in private.key -out private.key
0.0.0.0 feedback.microsoft-hohm.com | |
0.0.0.0 search.msn.com | |
0.0.0.0 a.ads1.msn.com | |
0.0.0.0 a.ads2.msn.com | |
0.0.0.0 a.rad.msn.com | |
0.0.0.0 ac3.msn.com | |
0.0.0.0 ads.msn.com | |
0.0.0.0 ads1.msn.com | |
0.0.0.0 b.ads1.msn.com | |
0.0.0.0 b.rad.msn.com |
<?php | |
$text = "Your Text Here | |
this is a test of the things and stuff and things"; | |
$font_size = "12"; | |
$color = "#000000"; | |
$font_file = "/Applications/XAMPP/xamppfiles/htdocs/otcb/app/fonts/OldStreetSigns.ttf"; | |
$background = "#FFFFFF"; | |
$wrap_width = "250"; | |
$alpha = 0; |
proxy_cache_path /tmp/cacheapi levels=1:2 keys_zone=microcacheapi:100m max_size=1g inactive=1d use_temp_path=off; | |
server { | |
listen 443 ssl http2 default_server; | |
listen [::]:443 ssl http2 default_server; | |
server_name example.com; | |
location /api/ { | |
# Rate Limiting | |
limit_req zone=reqlimit burst=20; # Max burst of request |
#!/bin/bash | |
# A bash script to update a Cloudflare DNS A record with the external IP of the source machine | |
# Used to provide DDNS service for my home | |
# Needs the DNS record pre-creating on Cloudflare | |
# Proxy - uncomment and provide details if using a proxy | |
#export https_proxy=http://<proxyuser>:<proxypassword>@<proxyip>:<proxyport> | |
# Cloudflare zone is the zone which holds the record |
This is a bash script to act as a Cloudflare DDNS client, useful replacement for ddclient.
This gist will no longer update, instead please go to https://github.com/lifehome/systemd-cfddns for more updated versions.
cfupdater
files to /usr/local/bin
-v4
to cfupdater
in the following systemd service unit.[opcache] | |
; Determines if Zend OPCache is enabled | |
opcache.enable=1 | |
; Determines if Zend OPCache is enabled for the CLI version of PHP | |
;opcache.enable_cli=1 | |
; The OPcache shared memory storage size. | |
opcache.memory_consumption=512 |