I hereby claim:
- I am ctalkington on github.
- I am ctalkington (https://keybase.io/ctalkington) on keybase.
- I have a public key ASCX5Kq7AzpGKw26Dbyn4XkXAoNTo4jRi3rCS7XP0_IxIAo
To claim this, I am signing this object:
#!/bin/bash | |
if ! [ -x "$(command -v jq)" ]; then | |
printf "\x1B[31m[ERROR] jq is not installed.\x1B[0m\n" | |
exit 1 | |
fi | |
if ! [ -x "$(command -v sed)" ]; then | |
printf "\x1B[31m[ERROR] sed is not installed (only GNU sed works).\x1B[0m\n" | |
exit 1 |
# pylint: disable=W0621 | |
"""Asynchronous Python client for IPP.""" | |
import asyncio | |
from pyipp import IPP | |
async def main(): | |
"""Show example of connecting to your IPP print server.""" | |
async with IPP("ipp://HP79EC40.local:631/ipp/printer") as ipp: |
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: |
esphome: | |
name: bulb_75w_rgbw_qpw06 | |
platform: ESP8266 | |
board: esp01_1m | |
wifi: | |
ssid: 'YOURWIFISSID' | |
password: 'YOURWIFIPASSWORD' | |
logger: |
I hereby claim:
To claim this, I am signing this object:
<?php | |
/* | |
Plugin Name: Lock Plugin Updates | |
Description: Allow blocking plugins from being updated. | |
Version: 1.0.0 | |
Author: Example | |
Author URI: https://www.example.com/ | |
@author John Doe | |
*/ |
// This is the default html and body font-size for the base rem value. | |
$rem-base ?= 16px; | |
// CT: Stylus Compat | |
sif($res, $t, $f) { | |
return ($res) ? $t : $f; | |
} | |
// CT: Stylus Compat | |
nth($hash, $index) { |
<?php | |
// Errors | |
$lang['Plesk.!error.simplexml_required'] = "The simplexml extension is required for this module."; | |
$lang['Plesk.!error.api.internal'] = "An internal error occurred, or the server did not respond to the request."; | |
$lang['Plesk.!error.server_name.empty'] = "You must enter a Server Label."; | |
$lang['Plesk.!error.host_name.valid'] = "The Hostname appears to be invalid."; | |
$lang['Plesk.!error.ip_address.valid'] = "The IP address appears to be invalid."; | |
$lang['Plesk.!error.port.format'] = "The port number must be a number."; |
<?php | |
/** | |
* Admin Billing Management | |
* | |
* @package blesta | |
* @subpackage blesta.app.controllers | |
* @copyright Copyright (c) 2010, Phillips Data, Inc. | |
* @license http://www.blesta.com/license/ The Blesta License Agreement | |
* @link http://www.blesta.com/ Blesta | |
*/ |
var fs = require('fs') | |
var path = require('path') | |
var zlib = require('zlib') | |
var ls = require('ls-stream') | |
var archiver = require('archiver') | |
var lazystream = require('lazystream') | |
module.exports = streamFolder | |
function streamFolder(dir) { |