I hereby claim:
- I am jordanbyron on github.
- I am jordanbyron (https://keybase.io/jordanbyron) on keybase.
- I have a public key ASBndbFYTgsqjlb6qcgJDc1XNPPqvCEDYL_Q20v5d57rMAo
To claim this, I am signing this object:
import Controller from '@ember/controller'; | |
export default class ApplicationController extends Controller { | |
appName = 'Ember Twiddle'; | |
collection = undefined | |
} |
/** | |
* @providesModule Effects | |
* @flow | |
*/ | |
import { Linking } from 'react-native'; | |
import AppDataApi from 'AppDataApi'; | |
import Actions from 'Actions'; | |
import ActionTypes from 'ActionTypes'; |
I hereby claim:
To claim this, I am signing this object:
#import "RCTBridge.h" | |
#import "RCTConvert.h" | |
#import "RCTEventDispatcher.h" | |
#import "EventSource/EventSource.h" | |
#import "EventSourceClient.h" | |
@implementation EventSourceClient | |
@synthesize eventSource; |
cd ~/src
wget http://www.openssl.org/source/openssl-1.0.1h.tar.gz
tar -xzvf openssl-1.0.1h.tar.gz
cd openssl-1.0.1h
Possible ARG based on the book [S.][s-book] by Dorst / Abrams. The following are my initial notes based on the site and its contents.
Please direct all correspondence to [email protected]
using secure communications protocols and encryption
!!! 5 | |
%html{:lang => 'en'} | |
%head | |
%title My Awesome Rails App | |
= stylesheet_link_tag 'application' | |
= javascript_include_tag 'application' | |
= csrf_meta_tag | |
%body{class: "#{controller.controller_name}-#{controller.action_name}"} |
tooltips.each do |method, text| | |
define_method(method) { tooltip text['display'], text['tip'] } | |
end |
file_name = File.basename(@account.logo.url) | |
tmp_file = Rails.root.join('tmp', file_name).to_s | |
File.open(tmp_file, "wb") do |f| | |
f.write open(@account.logo.url).read | |
end |
filepath = "#{Rails.root.join('tmp')}/new" | |
File.open(filepath, "wb") do |f| | |
f.write open(@account.logo.url).read | |
end |