This file contains 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
Aug 3 11:27:42 sagie-macbookpro com.apple.launchd.peruser.210453[317] (com.keymando.keymando.94544[74043]): Exited with code: 1 |
This file contains 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
-- autostart hydra | |
autolaunch.set(true) | |
-- watch for changes | |
pathwatcher.new(os.getenv("HOME") .. "/.hydra/", hydra.reload):start() | |
-- notify on start | |
notify.show("Hydra", "Loaded!", "", "") | |
-- menu icon |
This file contains 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
commit d1f7317d48aa8e19ca8130448f694794b14d9107 | |
Author: Sagie Maoz <[email protected]> | |
Date: Mon May 19 14:50:19 2014 +0300 | |
FormModelAdapter: Fix updating checkbox in groups | |
Appearantly, jQuery's $.each breaks the loop if its callback function | |
returns `false`. Meanwhile, coffeescript implicitly returns the value of | |
the last line in a function. Thus, if the last assignment happens to be | |
to the value of `false` (for example, for an unchecked checkbox), the loop |
This file contains 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
#!/usr/bin/env ruby | |
require 'openssl' | |
filename = ARGV[0] | |
expected = ARGV[1] | |
puts "reading file: #{filename}" | |
def file_blocks(filename) |
This file contains 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
require 'openssl' | |
DEBUG = false | |
BLOCK_SIZE = 16 | |
def log(msg) | |
puts msg if DEBUG | |
end |
This file contains 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
diff --git a/app/assets/javascripts/teams/app.js.coffee b/app/assets/javascripts/teams/app.js.coffee | |
index e3a57ef..23cec17 100644 | |
--- a/app/assets/javascripts/teams/app.js.coffee | |
+++ b/app/assets/javascripts/teams/app.js.coffee | |
@@ -14,11 +14,15 @@ app.config [ | |
controller: 'TeamListCtrl' | |
templateUrl: 'partials/list.html' | |
depth: 1 | |
+ resolve: | |
+ clientInfo: 'ClientInfoFetcher' |
This file contains 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
describe 'APISessionInterceptor', -> | |
beforeEach -> | |
module 'TeamsApp' | |
it 'appends session data to every API request', -> | |
inject (APISessionInterceptor, $http, $httpBackend) -> | |
$httpBackend.when 'GET', | |
'/test-WAS/something?cookie=chocolate_chip&session_id=12345' | |
.respond({}) |
This file contains 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
require 'spec_helper' | |
describe Reports::ReportModelBase do | |
describe '#get_handler_type_name' do | |
describe 'when type is string' do | |
it 'returns string\'s value' do | |
Reports::ReportModelBase.get_handler_type_name({'type' => 'some_value_1'}).should == 'some_value_1' | |
end | |
end | |
describe 'when type is object' do |
This file contains 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
require './stack' | |
class Staqueue | |
def initialize | |
@s1 = Stack.new | |
@s2 = Stack.new | |
end | |
def empty? | |
@s1.empty? |
This file contains 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
~/d/w/adman2 git:master ❯❯❯ g s ⬆ ✭ | |
# On branch master | |
# Your branch is ahead of 'origin/master' by 600 commits. | |
# (use "git push" to publish your local commits) | |
# | |
nothing to commit, working directory clean |