I hereby claim:
- I am chuyskywalker on github.
- I am chuyskywalker (https://keybase.io/chuyskywalker) on keybase.
- I have a public key whose fingerprint is 45FC 2659 BCE7 ECCB 629D 3BE7 5A27 4011 BC1A 6F11
To claim this, I am signing this object:
package main | |
// second variant, splits process among cores and creates a unique file for each. MUCH faster, but incurs randomness penelty | |
import ( | |
"fmt" | |
"os" | |
"math" | |
"math/rand" | |
"strconv" |
// when the document is fully loaded, run this function | |
$(document).ready(function(){ | |
// find every checkbox | |
$('input[type="checkbox"]') | |
// and bind to the click method to run this function | |
.click(function(){ | |
// create a variable called "box_value" which has the string from the current element's "value" attribute. | |
// $(this), in the current context, refers to the input-checkbox that is experiencing a click event | |
var box_value = $(this).attr("value"); | |
// since the "value" matches the class name, we can start a selector $() which combines a dot and the box_value variable to form a proper class name. |
I hereby claim:
To claim this, I am signing this object:
The mermaid editor on github not super awesomel; try it over here:
esphome: | |
name: kc868-a64 | |
friendly_name: KC868-A64 | |
esp32: | |
board: esp32dev | |
framework: | |
type: arduino | |
# Enable logging |
#include <Wire.h> | |
#include "PS2X_lib.h" | |
#include "QGPMaker_MotorShield.h" | |
QGPMaker_MotorShield AFMS = QGPMaker_MotorShield(); | |
PS2X ps2x; | |
QGPMaker_DCMotor *DCMotor_2 = AFMS.getMotor(2); | |
QGPMaker_DCMotor *DCMotor_4 = AFMS.getMotor(4); | |
QGPMaker_DCMotor *DCMotor_1 = AFMS.getMotor(1); |