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
NativeException: | |
java.io.IOException: exception encrypting data - java.security.InvalidKeyException: Illegal key size | |
org.bouncycastle.jce.provider.JDKPKCS12KeyStore:-1:in `wrapKey' | |
org.bouncycastle.jce.provider.JDKPKCS12KeyStore:-1:in `doStore' | |
org.bouncycastle.jce.provider.JDKPKCS12KeyStore:-1:in `engineStore' | |
java/security/KeyStore.java:1117:in `store' |
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
javascript:["#slider .frames .frame",".mini-avatar-bubble",".line-comments .clipper",".site", ".site .container","#files_bucket",".discussion-timeline"].forEach(function(i) { try { var set=document.querySelectorAll(i); for(var e=0; e<set.length; e++) {set[e].style.setProperty('width','auto');} } catch(e) { console.log(e) } });[".site"].forEach(function(i) { try { document.querySelector(i).style.setProperty('margin-left','31px'); } catch(e) { console.log(e) } }) |
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
ssh az-staging "cd current ; RAILS_ENV=staging bundle exec rails runner 'puts open(URI.parse(\"https://google.com\"))'" | |
# Result : /usr/lib64/rubyee/1.8/net/http.rb:586:in `connect': SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (OpenSSL::SSL::SSLError) | |
ssh az-prod-web1 "cd current ; RAILS_ENV=production bundle exec rails runner 'puts open(URI.parse(\"https://google.com\"))'" | |
# Result : /usr/lib64/rubyee/1.8/net/http.rb:586:in `connect': SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (OpenSSL::SSL::SSLError) | |
ssh az-prod-web2 "cd current ; RAILS_ENV=production bundle exec rails runner 'puts open(URI.parse(\"https://google.com\"))'" |
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
ssh az-staging "cd current ; RAILS_ENV=staging bundle exec rails runner 'puts open(URI.parse(\"https://google.com\"))'" | |
# Result : /usr/lib64/rubyee/1.8/net/http.rb:586:in `connect': SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (OpenSSL::SSL::SSLError) | |
ssh az-prod-web1 "cd current ; RAILS_ENV=production bundle exec rails runner 'puts open(URI.parse(\"https://google.com\"))'" | |
# Result : /usr/lib64/rubyee/1.8/net/http.rb:586:in `connect': SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (OpenSSL::SSL::SSLError) | |
ssh az-prod-web2 "cd current ; RAILS_ENV=production bundle exec rails runner 'puts open(URI.parse(\"https://google.com\"))'" |
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
MOBILE DEFENSE !!! curl -X POST -H "MD-TIMESTAMP:2012-03-28T01:24:59Z" -H "Content-Type:multipart/form-data" -H "MD-CLIENT-ID:lk1Oy3mPMXwp7jPO3yw6NobTpoRhLJsRiPmhGnQz" -H "MD-REQUEST-DIGEST:f4c220ec3aa74ffc5f01ace53cc65f2a42c56e3e856b01054ab88f0c64adb1d4" -F "app[binary]=@/home/partnerpedia/fake_malware.apk" https://staging.mobiledefense.com/api/v1/apps | |
MOBILE DEFENSE !!! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
MOBILE DEFENSE !!! "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
MOBILE DEFENSE !!! | |
MOBILE DEFENSE !!! <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
MOBILE DEFENSE !!! | |
MOBILE DEFENSE !!! <head> | |
MOBILE DEFENSE !!! <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
MOBILE DEFENSE !!! <title>We're sorry, but something went wrong (500)</title> | |
MOBILE DEFENSE !!! <style type="text/css"> |
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
cbuxton: | |
In light of news about vert.x and local Scala meetup talks about akka and play (not fully attended by my colleagues) we're often discussing Actors. We wonder: "why would we want to use them?" and speculate at the complexity cost of developing with them. What is the expected level reuse of Actors? What is the developer burden for creating Actors? Does that cost make it easy or hard to avoid coupling actors together? Or does it make it easier or harder to limit the npath complexity of Actors? | |
Ultimately I think we need to try it to find out. | |
In the meantime, we're going to watch: http://channel9.msdn.com/Shows/Going+Deep/Hewitt-Meijer-and-Szyperski-The-Actor-Model-everything-you-wanted-to-know-but-were-afraid-to-ask | |
tarcieri: | |
Celluloid is a bit more than just actors, it provides concurrent objects that are based on the actor model | |
actor-based concurrent objects were a hot research topic in the early '90s | |
in general actors let you break apart complex event loops like you'd see in vert.x or node.js or |
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
etst |
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
class Notifier | |
constructor: -> | |
@enableNotification = false | |
@checkOrRequirePermission() | |
hasSupport: -> | |
window.webkitNotifications? | |
requestPermission: (cb) -> | |
window.webkitNotifications.requestPermission (cb) |
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
rotation_z180 = [ | |
[cos(180), -sin(180), 0, 0], | |
[sin(180), cos(180), 0, 0], | |
[0, 0, 1, 0], | |
[0, 0, 0, 1]]; | |
rotation_x90 = [ | |
[1, 0, 0, 0], | |
[0, cos(90), sin(90), 0], | |
[0, -sin(90), cos(90), 0], |
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
<a href="chrome://chrome/settings/pointer-overlay#mouse">click here</a> |
OlderNewer