Homebridge Logo Loader Animation
A Pen by Mike Kormendy on CodePen.
#!/bin/sh | |
brew tap homebrew/cask-drivers | |
brew install --cask homebrew/cask-versions/adoptopenjdk8 | |
brew install --cask ubiquiti-unifi-controller |
/** | |
* Gravity Wiz // Gravity Forms // Change Field ID via Browser Console | |
* | |
* Provides a simple function for changing the ID of a Gravity Forms field via the browser console from the Form Editor page. | |
* | |
* @version 1.0 | |
* @author David Smith <david@gravitywiz.com> | |
* @license GPL-2.0+ | |
* @link http://gravitywiz.com/changing-your-gravity-forms-field-ids/ | |
* @video http://www.screencast.com/t/STm1eLZEsR9q |
#!/bin/bash | |
find /uploads/sites/*/20* -type f -iname "*.png" -exec pngquant --speed 1 --skip-if-larger --strip {} \; | |
find /uploads/sites/*/20* -type f -iname "*.png" -exec advpng -z4 {} \; | |
find /uploads/sites/*/20* -type f -iregex .*\.jpe?g$ -exec jpegoptim -f -s -v -m 50 {} \; | |
touch optimg.flag | |
# find's -newer command option compares the timestamps of files found against a defined file, in our case optimg.flag | |
# when we finish optimizing all of the images we touch the optimg.flag file to update its timestamp |
A Pen by Mike Kormendy on CodePen.
<?php | |
// Manually create entries and send notifications with Gravity Forms | |
$form_id = 10; | |
// add entry | |
$entry = array( | |
"form_id" => $form_id, | |
"1" => "Entry for field ID 1", |
<?php | |
/* | |
################### READ ME ################################# | |
You'll pass the URL to your feed/file to this function inside the "Download from URL" option when creating an import. | |
Image examples: https://d.pr/hCfNek and https://d.pr/MnerNb. | |
1. [custom_file_download("ftp://username:password@hostname.com/full/path/to/file.csv", "csv")] | |
2. [custom_file_download("http://example.com/full/path/to/file.csv", "csv")] |
//basic zopim widget code, from their site | |
window.$zopim||(function(d,s){var z=$zopim=function(c){z._.push(c)},$=z.s= | |
d.createElement(s),e=d.getElementsByTagName(s)[0];z.set=function(o){z.set. | |
_.push(o)};z._=[];z.set._=[];$.async=!0;$.setAttribute('charset','utf-8'); | |
$.src='//v2.zopim.com/?26Smu9lv0NXQEOOg8IAZrMPh9yQstAcV';z.t=+new Date;$. | |
type='text/javascript';e.parentNode.insertBefore($,e)})(document,'script'); | |
//make sure zopim does not show till we know we have department agents | |
var intial_zopim_hiding_done = false; |
defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true |
import Foundation | |
final class NetworkManager: NSObject, URLSessionDelegate { | |
func login() { | |
var request = URLRequest(url: URL(string: "https://b2vapi.bmwgroup.com/webapi/oauth/token/")!) | |
request.addValue("Content-Type", forHTTPHeaderField: "application/json") | |
request.httpMethod = "GET" | |
let session = URLSession(configuration: URLSessionConfiguration.default, delegate: self, delegateQueue: nil) | |