I hereby claim:
- I am macrofig on github.
- I am juanorozco (https://keybase.io/juanorozco) on keybase.
- I have a public key ASCAGfNR346zySvP2C-pukHnVDk5M_Td8cFJZgPsTqmpXQo
To claim this, I am signing this object:
| #include <SparkFun_TB6612.h> | |
| #define AIN1 2 | |
| #define AIN2 4 | |
| #define PWMA 5 | |
| #define BIN1 7 | |
| #define BIN2 8 | |
| #define PWMB 6 |
| <html> | |
| <head> | |
| <title>Frame Same Origin test</title> | |
| </head> | |
| <body> | |
| <h1>This is an iframe!</h1> | |
| <script type="text/javascript"> | |
| (function () { | |
| console.log('FRAME', document.domain, window.location.origin) | |
| console.log('TOP', window.top.domain, window.top.location.origin) |
| const generateDeleteEntries = () => { | |
| const isDialogOpen = () => Boolean(document.querySelector("[role='dialog']")) | |
| const isDeleteVisible = () => Boolean(document.querySelector("[data-testid='dns-record-form-delete-button']")) | |
| const awaitHandler = (predicate, cb, count = 0) => () => { | |
| if (predicate()) { | |
| console.log('done waiting!!') | |
| cb(); | |
| } else { | |
| if (count > 5) { | |
| console.log('UH OH, it took too long!') |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "rules": { | |
| "comma-dangle": [2,"never"], | |
| "no-cond-assign": [2,"except-parens"], | |
| "no-console": 2, | |
| "no-constant-condition": 2, | |
| "no-control-regex": 2, | |
| "no-debugger": 2, | |
| "no-dupe-args": 2, | |
| "no-dupe-keys": 2, |
| /* | |
| Attempts to add MacOS keyboard shortcuts/commands to Windows | |
| NOTE: | |
| In many cases, I use the CTRL key because I am using a Mac keyboard and | |
| therefore swapped the COMMAND (Windows) key with the CONTROL key. | |
| See this blog post, specifcally the "On Windows" section: | |
| https://www.howtogeek.com/219156/how-to-remap-your-windows-cutcopypaste-to-os-x-like-controls-and-vice-versa/ | |
| Might need to download Sharpkeys from here: https://github.com/randyrants/sharpkeys/releases |
| # Credit to this article for the following commands: | |
| # http://gbayer.com/development/moving-files-from-one-git-repository-to-another-preserving-history/ | |
| # Prepare the source repo | |
| mkdir ~/move-commits/source | |
| git clone <git-url> ~/move-commits/source | |
| cd ~/move-commits/source |
| # I find that the delay is pretty good at 10 if there are a lot of shots. | |
| # A delay of 5 gives it a more speedy look. | |
| # Finds all jpg files in current folder and creates a file called animated.gif. | |
| # Also resizes images to 800 by 600 size so output gif will be same. | |
| gm convert -size 800x600 *.jpg -delay 5 -resize 800x600 animated.gif | |
| # Create an mp4 version while we are at it | |
| ffmpeg -i animated.gif -c:v libx264 -crf 12 -b:v 500K animated.mp4 | |
| # Skip the graphicsmagick stuff and just use ffmpeg to concatenate images into a video |
| 'body': | |
| 'ctrl-cmd-q': 'application:quit' | |
| 'cmd-q': 'unset!' |
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: minecraft | |
| # Required-Start: $local_fs $network $named $time $syslog | |
| # Required-Stop: $local_fs $network $named $time $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Description: Manages Minecraft PE (Genisys) server. | |
| ### END INIT INFO |