Skip to content

Instantly share code, notes, and snippets.

@n0nick
n0nick / -
Created August 3, 2014 08:28
Aug 3 11:27:42 sagie-macbookpro com.apple.launchd.peruser.210453[317] (com.keymando.keymando.94544[74043]): Exited with code: 1
@n0nick
n0nick / init.lua
Last active August 29, 2015 14:03
-- 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
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
@n0nick
n0nick / hash.rb
Last active August 29, 2015 14:00
#!/usr/bin/env ruby
require 'openssl'
filename = ARGV[0]
expected = ARGV[1]
puts "reading file: #{filename}"
def file_blocks(filename)
require 'openssl'
DEBUG = false
BLOCK_SIZE = 16
def log(msg)
puts msg if DEBUG
end
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'
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({})
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
require './stack'
class Staqueue
def initialize
@s1 = Stack.new
@s2 = Stack.new
end
def empty?
@s1.empty?
@n0nick
n0nick / -
Created February 16, 2014 09:29
~/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