<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| --- | |
| - name: Ansible tests playbook | |
| hosts: all | |
| remote_user: root | |
| tasks: | |
| - name: Check if mariadb-libs-5.5.44-2.el7.centos.x86_64 package is installed | |
| yum: | |
| list=mariadb-libs-5.5*x86_64 | |
| register: pkg |
link to notes https://git.io/vgpKc
This is a quick-and-dirty guide to setting up a Raspberry Pi as a "router on a stick" to PrivateInternetAccess VPN.
Install Raspbian Jessie (2016-05-27-raspbian-jessie.img) to your Pi's sdcard.
Use the Raspberry Pi Configuration tool or sudo raspi-config to:
| #!/bin/bash | |
| veth_in_use=() | |
| veth_unused=() | |
| veth_all=() | |
| function veth_interface_for_container() { | |
| local pid=$(docker inspect -f '{{.State.Pid}}' "${1}") | |
| mkdir -p /var/run/netns | |
| ln -sf /proc/$pid/ns/net "/var/run/netns/${1}" |
| <?php | |
| /** | |
| * Description of VideoStream | |
| * | |
| * @author Rana | |
| * @link http://codesamplez.com/programming/php-html5-video-streaming-tutorial | |
| */ | |
| class VideoStream | |
| { | |
| private $path = ""; |
| <?php | |
| namespace App\Http; | |
| /** | |
| * Description of VideoStream | |
| * | |
| * @author Rana | |
| * @link https://gist.github.com/vluzrmos/d5682ad426525196d069 | |
| */ |
| <?php | |
| /* | |
| * Set the following constants in wp-config.php. | |
| * These should be added somewhere BEFORE the constant ABSPATH is defined. | |
| * | |
| * Author: Chad Butler | |
| * Author URI: https://butlerblog.com | |
| * | |
| * For more information and instructions, see: https://b.utler.co/Y3 |
Exporting password + one-time code data from iCloud Keychain is now officially supported in macOS Monterey and Safari 15 (for Monterey, Big Sur, and Catalina). You can access it in the Password Manager’s “gear” icon (System Preferences > Passwords on Monterey, and Safari > Passwords everywhere else), or via the File > Export > Passwords... menu item). You shouldn't need to hack up your own exporter anymore.
After my dad died, I wanted to be able to have access any of his online accounts going forward. My dad was a Safari user and used iCloud Keychain to sync his credentials across his devices. I don’t want to have to keep an OS X user account around just to access his accounts, so I wanted to export his credentials to a portable file.
| var Leap = require('leapjs'); | |
| var XboxController = require('xbox-controller'); | |
| var xbox = new XboxController; | |
| Leap.loop(function (frame) { | |
| if (frame.hands.length === 0) { | |
| xbox.rumble(0, 0); | |
| return; | |
| } | |
| frame.hands.forEach(function(hand) { |