This is really just meant to be goofy, noone should use this instead of a mouse.
Add these lines to your i3 config.
bindsym $mod+Mod1+h exec xdotool mousemove_relative -p 270 10
| locals { | |
| labels = { | |
| "app" = "mongo" | |
| } | |
| volume_config_name = "mongo-config" | |
| } | |
| module "mongo" { | |
| source = "terraform-iaac/stateful-set/kubernetes" | |
| version = "1.4.2" |
| const EXAMPLE_KEY = "example key"; | |
| const describeWrapper = (label, opts, tests) => { | |
| describe(label, () => { | |
| var State = undefined; | |
| beforeAll(async () => { | |
| // acquiring the state irl has to be done asynchronously | |
| State = EXAMPLE_KEY; | |
| }) |
| [motivation] | |
| command=/path/to/motivation/script/motivation | |
| interval=900 |
| /** | |
| Component will show the view named in `current` as defined by it's corresponding attribute. | |
| Usage: | |
| import Switch from './switch' | |
| import Main from './main_view' | |
| import Secondary from './secondary_view' | |
| ReactDOM.render(<Switch current="main" main={<Main />} secondary={<Secondary />} /> | |
| */ |
| #include <iostream> | |
| using namespace std; | |
| // Changes the input type for the user, type must support comparison logic | |
| typedef string INPUT_TYPE; | |
| struct Node { | |
| INPUT_TYPE data; | |
| Node *next; | |
| Node *last; |
| # Definitions described here https://youtu.be/2gKxuBoxIm0 | |
| def factorial(n): | |
| if n == 1: | |
| return n | |
| else: | |
| return n * factorial(n - 1) | |
| def super_factorial(n): | |
| def sf(n): |
| package utils | |
| import ( | |
| "bufio" | |
| "os" | |
| ) | |
| func chanNBRead(c chan bool, def bool) bool { | |
| var e bool | |
| select { |
| In total, 7 object ids were changed. Full details are logged here: | |
| /.../asddfknjsanf.bfg-report/2019-07-15/10-47-07 | |
| BFG run is complete! When ready, run: git reflog expire --expire=now --all && git gc --prune=now --aggressive | |
| -- | |
| You can rewrite history in Git - don't let Trump do it for real! | |
| Trump's administration has lied consistently, to make people give up on ever |
| const sleepsort = (arr, callback) => { | |
| for (var a in arr) { | |
| setTimeout((i) => callback(i), a, a); | |
| } | |
| } | |
| let test = [39, 9, 34, 26, 3, 30, 31, 18, 21, 3, 38, 7, 13, 16, 27, 21, 18, 8, 8, 38, 2, 11, 29, 11, 22, 28, 22, 9, 12, 0, 18, 2, 30, 29, 14, 23, 27, 38, 22, 22] | |
| sleepsort(test, i => console.log(i)); |