I hereby claim:
- I am jonbca on github.
- I am jonbca (https://keybase.io/jonbca) on keybase.
- I have a public key ASD-4t-K_vWQoQpRlQ2fMqeW2KCxgtkJF33dpD52uXslcgo
To claim this, I am signing this object:
service: catFoodTracker | |
custom: | |
tableName: CatFoodTable | |
provider: | |
name: aws | |
runtime: nodejs8.10 | |
memory: 128 | |
profile: default |
I hereby claim:
To claim this, I am signing this object:
class Array | |
def peach(&block) | |
threads = [] | |
self.each do |item| | |
threads << Thread.new do | |
block.call(item) | |
end | |
end | |
threads.each(&:join) | |
end |
arrayToMap = (attributes, values) -> | |
result = {} | |
for i in [0...attributes.length] | |
result[attributes[i]] = values[i] | |
result |
Ember.testing = true | |
App = Ember.Application.create() | |
App.setupForTesting() | |
App.injectTestHelpers() | |
App.Store = DS.Store.extend | |
revision: 12 | |
adapter: 'DS.FixtureAdapter' |
<table {{bindAttr class="length:show:hide"}}> | |
<thead><tr><th>foo</th></tr></thead> | |
<tbody> | |
{{#each item in controller}} | |
<tr><td>{{item.name}}</td></tr> | |
{{/each}} | |
</tbody> | |
</table> | |
<div {{bindAttr class="length:hide:show"}}> |
require.config({ | |
shim: { | |
backbone: { | |
deps: ['underscore', 'jquery'], | |
exports: 'Backbone' | |
}, | |
underscore: { | |
exports: '_' | |
} | |
}, |
define ['module', 'jquery'], | |
(module, $) -> | |
configValue: | |
module.config().text |
<table xmlns="http://query.yahooapis.com/v1/schema/table.xsd"> | |
<meta> | |
<author>Jonathan Abourbih</author> | |
<description>Query for UK Food Ratings</description> | |
</meta> | |
<bindings> | |
<select itemPath="" produces="XML"> | |
<inputs> | |
<key id="eid" paramType="variable" type="xs:string" required="true" batchable="false"/> | |
</inputs> |
import javax.swing.*; | |
import java.security.* | |
class InnerClassStupidity { | |
void someAction() { | |
AccessController.doPrivileged( new PrivilegedAction() { | |
public Object run() { | |
SwingUtilities.invokeLater( new Runnable() { | |
public void run() { |