This file contains hidden or 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
=== cmwt Config Vars | |
APP_NAME: cmwt | |
BUNDLE_WITHOUT: development:test | |
COMMIT_HASH: be2f6dd | |
CONSOLE_AUTH: app771478:37de8d51938041bd8c8a7f006c704c47 | |
DATABASE_URL: postgres://wybazhkijqfrco:YdJgQz426Epe30HQeekiYbBEMX@ec2-54-243-218-91.compute-1.amazonaws.com:5432/d45d3okb7cekfb | |
HEROKU_POSTGRESQL_BLACK_URL: postgres://wybazhkijqfrco:YdJgQz426Epe30HQeekiYbBEMX@ec2-54-243-218-91.compute-1.amazonaws.com:5432/d45d3okb7cekfb | |
HIREFIRE_EMAIL: [email protected] | |
HIREFIRE_PASSWORD: hkcxxxxxxxxx | |
LANG: en_US.UTF-8 |
This file contains hidden or 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
(function(geo) { | |
if ( geo ) { | |
geo.watchPosition(function(location) { | |
console.log(location); | |
}); } | |
})(navigator.geolocation); |
This file contains hidden or 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
protected HttpURLConnection urlConnection(URL url) | |
{ | |
HttpURLConnection c; | |
try | |
{ | |
c = (HttpURLConnection) url.openConnection(); | |
c.setRequestMethod("GET"); | |
c.setDoOutput(true); | |
c.connect(); | |
} |
This file contains hidden or 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
public class CustomList2 extends ArrayAdapter<String> | |
{ | |
public CustomList2(Context context, int layout_id, ArrayList<String> objects) { | |
super(context, layout_id, objects); | |
} | |
@Override | |
public View getView(final int position, View view, ViewGroup view_group) { | |
if(view == null) | |
{ |
This file contains hidden or 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
THIS SERVERS HEADER DOESN'T WORK WITH urlConnection.getContentLength() | |
$ curl --head "http://www.server0.com/files-for-droid-app/vol-1-beginning-tango/02Posture_and_Walk.m4v" | |
HTTP/1.1 200 OK | |
Set-Cookie: JSESSIONID=A17762C6B65FD8D35840110F8628DE4B.V5; Path=/; HttpOnly | |
X-ServedBy: web114 | |
Set-Cookie: SS_MID=7315b0cb-054c-4dd8-a013-c7163793becehfjcndg8; Domain=.tangoberretin.com; Expires=Thu, 13-Apr-2023 07:57:07 GMT; Path=/ | |
Pragma: cache | |
Cache-Control: private,max-age=86400 | |
Last-Modified: Thu, 21 Feb 2013 06:28:24 GMT |
This file contains hidden or 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
Map<String,List<String>> headers = urlConnection.getHeaderFields(); | |
for (String key : headers.keySet()) { | |
Log.v("key", key + " : "); | |
for (String value : headers.get(key)) { | |
Log.v("value", value); | |
} | |
} |
This file contains hidden or 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
com.amazonaws.services.s3.transfer.Download download = tx.download(s3obj, new_video_file); | |
download.addProgressListener(new ProgressListener() { | |
public void progressChanged(ProgressEvent pe) { | |
String progress = download.getProgress().getPercentTransfered() + "%"; | |
Log.v("dev", progress); | |
if (pe.isDone()) { |
This file contains hidden or 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
before_filter :current_user_to_AR | |
protected | |
def current_user_to_AR | |
cu = current_user | |
ActiveRecord::Base.send(:define_method, "current_user", proc {cu}) | |
end | |
This file contains hidden or 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 'capistrano/ext/multistage' | |
require 'railsmachine/recipes' | |
set :application, "REMOVED" | |
set :domain, "REMOVED.org" | |
role :web, domain | |
role :app, domain, :primary => true | |
role :db, domain, :primary => true |
This file contains hidden or 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
>> Rails.cache.write('test', "foo", :expires_in => 1) | |
=> "foo" | |
>> #waiting 10 seconds | |
?> Rails.cache.read('test') | |
=> "foo" |