I hereby claim:
- I am sdsykes on github.
- I am sdsykes (https://keybase.io/sdsykes) on keybase.
- I have a public key whose fingerprint is 8083 1053 7ED3 36B7 4B12 A80B 90A5 BAEA 6D05 D980
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| require 'totalspaces2' | |
| columns = TotalSpaces2.grid_columns | |
| displays = TotalSpaces2.display_list() | |
| if displays.size == 1 | |
| spaces_count = TotalSpaces2.number_of_spaces | |
| if spaces_count > columns && spaces_count % columns == columns - 1 |
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <link rel="stylesheet" href="http://cmx.io/v/0.1/cmx.css"> | |
| <script src="http://cmx.io/v/0.1/cmx.js" charset="utf-8"></script> | |
| <style>.cmx-user-scene4 .cmx-text-border .cmx-path {stroke: orange}</style> | |
| <body> | |
| <div style="max-width:900px; -webkit-transform:rotate(0deg)"> | |
| <scene id="scene1" width="300"> | |
| <drawing t="translate(0,31)"> |
| #!/usr/bin/env ruby | |
| require 'totalspaces2' | |
| displays = TotalSpaces2.display_list | |
| if displays.count != 2 | |
| puts "Must have 2 displays attached" | |
| exit 1 | |
| end |
| require 'totalspaces2' | |
| current = TotalSpaces2.current_space | |
| spaces = TotalSpaces2.number_of_spaces | |
| columns = TotalSpaces2.grid_columns | |
| new_space = current + columns | |
| if new_space <= spaces | |
| TotalSpaces2.move_to_space(new_space) | |
| end |
| require 'totalspaces2' | |
| TotalSpaces2.move_to_space(ARGV[0].to_i) |
| /// header | |
| id CGSCopyManagedDisplaySpaces(int conn); | |
| int _CGSDefaultConnection(); | |
| id CGSCopyWindowsWithOptionsAndTags(int conn, unsigned owner, NSArray *spids, unsigned options, unsigned long long *setTags, unsigned long long *clearTags); | |
| // code | |
| int spaceNumber = 0; // the space you want to get the windows for. numbering starts at 0. |
| $size = ARGV[0].to_i | |
| if $size <= 0 | |
| puts "Supply numeric level (grid size) as an argument" | |
| exit | |
| end | |
| def show(placement) | |
| 0.upto($size - 1) do |x| |
I hereby claim:
To claim this, I am signing this object:
| # initializers/mongoid.rb | |
| # for when files in lib depend on or inherit from other files in lib | |
| def do_require(file) | |
| begin | |
| require file | |
| rescue NameError => e | |
| e.message =~ /constant (\w+::)*(\w+)$/ | |
| if $2 | |
| do_require($2.underscore) |
| def four_char_code(s) | |
| (s[0].ord << 24) + (s[1].ord << 16) + (s[2].ord << 8) + s[3].ord | |
| end | |
| system = SBApplication.applicationWithBundleIdentifier("com.apple.SystemEvents") | |
| system.send(:"keystroke:using:", space_number.to_s, four_char_code('Kctl')) |