This file contains hidden or 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 | |
/** | |
* Plugin Name: MemberPress Corporate Sub Account Shortcode | |
* Plugin URI: https://gist.github.com/X-Raym/a2c5a2eb05b9be3c04ee9972876aa2df/edit | |
* Description: AMemberPress Corporate Sub Account Shortcode | |
* Author: X-Raym | |
* Author URI: https://www.extremraym.com/ | |
* License: GNU AGPLv3 | |
* License URI: http://www.gnu.org/licenses/agpl-3.0.html |
This file contains hidden or 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
# wavfile.py (Enhanced) | |
# Date: 20180430_2335 Joseph Basquin | |
# | |
# Mod by X-Raym | |
# Date: 20180706_1558 | |
# * add log parameter for read function | |
# * return 'success' at end of write | |
# * renamed variables to avoid conflict with python native functions | |
# * correct bytes error | |
# * correct write function |
This file contains hidden or 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
""" | |
Example of iterating Bach Chorales and getting individual voice parts | |
In this case, want specifically 4 voice pieces only | |
Also transpose to key of C (major or minor depending on piece) | |
Also shows how to write out all the xml as midi | |
""" | |
# Author: Kyle Kastner | |
# License: BSD 3-Clause | |
# Based on StackOverflow answer | |
# http://stackoverflow.com/questions/36647054/music21-getting-all-notes-with-durations |
This file contains hidden or 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
$('#container').highcharts({ | |
chart: { | |
alignTicks: true, // When using multiple axis, the ticks of two or more opposite axes will automatically be aligned by adding ticks to the axis or axes with the least ticks. | |
animation: true, // Set the overall animation for all chart updating. Animation can be disabled throughout the chart by setting it to false here. | |
backgroundColor: '#FFF', // The background color or gradient for the outer chart area. | |
borderColor: '#4572A7', // The color of the outer chart border. | |
borderRadius: 5, // The corner radius of the outer chart border. In export, the radius defaults to 0. Defaults to 5. | |
borderWidth: 0, // The pixel width of the outer chart border. | |
className: null, // A CSS class name to apply to the charts container div, allowing unique CSS styling for each chart. | |
defaultSeriesType: 'line', // Alias of type. |
This file contains hidden or 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
""" | |
Horizontal Wiimote to vJoy FreePIE script | |
Maps up to 4 wiimotes to 4 virtual joysticks using vJoy. | |
Before running this script define 4 virtual joysticks with x and y axis, 13 buttons (or keep your wiimote + nunchuck virtual joysticks configuration). | |
version: 1.1 | |
author: Jahdrien | |
mod: X-Raym | |
gist: https://gist.github.com/X-Raym/caada7ebc4b76fb01dcd |