This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Lock via wsgi server on Adafruit Feather ESP32S2 | |
# SPDX-FileCopyrightText: 2021 Tenseg LLC | |
# SPDX-License-Identifier: MIT | |
# Save to CIRCUITPY as code.py | |
# Adafruit ESP32-S2 Feather pinouts... | |
# - (GND) to ground (and to LED resistor) | |
# - (A1) to red LED | |
# - (A2) to servo (TowerPro SG-5010) yellow data | |
# - (USB) to servo red power |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( is_multisite() ) { | |
/** | |
* Hacks the $wp_admin_bar global in order to correct, | |
* simplify, or hide it. | |
* | |
* Called by action: wp_before_admin_bar_render | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AutoEmbed plugin for Jekyll | |
# | |
# Created by Eric Celeste for Tenseg LLC | |
# March 2019 | |
# | |
# License: MIT | |
# | |
# This plugin uses the ruby-oembed library to look up an oembed for | |
# any "naked URL" (a URL in a paragraph by itself). If the oembed | |
# is found, then the HTML for the oembed is presented. If there is |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
GFForms::include_addon_framework(); | |
class SubmitTestAddOn extends GFAddOn { | |
protected $_version = "1.0"; | |
protected $_min_gravityforms_version = '1.9'; | |
protected $_slug = 'submittestaddon'; | |
protected $_path = 'submittestaddon/submittestaddon.php'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "System Events" | |
tell process "ColorSync Utility" | |
set visible to true | |
tell pop up button 1 of group 1 of front window | |
click | |
tell menu 1 | |
click menu item "Match to Profile" | |
end tell | |
end tell | |
tell menu button 1 of group 1 of front window |