I hereby claim:
- I am thesociableme on github.
- I am thesociableme (https://keybase.io/thesociableme) on keybase.
- I have a public key whose fingerprint is 3292 7108 6F10 7CAC 3C6D 528E 9390 656E D725 FEEC
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| main.h - MAX_MONEY - Sanity check for transactions added to the blockchain | |
| main.cpp - GetBlockValue - | |
| New genesis block hash | |
| const char* pszTimestamp = "NY Times - December 23, 2013 - For Today's Babes, Toyland Is Digital"; | |
| Ports |
| #!/bin/bash | |
| # Pre commit hook that prevents FORBIDDEN code from being commited. | |
| # Add unwanted code to the FORBIDDEN array as necessary | |
| FILES_PATTERN='\.(rb|js|coffee)(\..+)?$' | |
| FORBIDDEN=( debugger ruby-debug console.log ) | |
| for i in "${FORBIDDEN[@]}" | |
| do |
| class Assessments.Views.Teacher.Results.Gradebook extends Backbone.View | |
| sdk_url: 'https://downloads.gradecam.com/sdk/current/gcsdk.js' | |
| sdk_css_url: 'https://downloads.gradecam.com/sdk/current/css/gcsdk.css' | |
| gradebook_settings: null | |
| el: '#gradecam' | |
| initialize: (options) -> | |
| w = window | |
| window.gradeCamOnPluginLoad = () => |
| /** | |
| * Created with IntelliJ IDEA. | |
| * | |
| * @author Mark Wagner | |
| * Date: 2/28/13 | |
| * Time: 10:08 AM | |
| */ | |
| public class MapsFragment extends SherlockFragment { | |
| Button mHotelMapButton; |
| /** | |
| * Created with IntelliJ IDEA. | |
| * | |
| * @author Mark Wagner | |
| * Date: 2/27/13 | |
| * Time: 2:47 PM | |
| */ | |
| public class GoogleMapFragment extends Fragment { | |
| private SupportMapFragment mMapFragment; | |
| private GoogleMap mMap; |
| package com.takeit2eleven.towniemeeting.android.fragments; | |
| import android.os.Bundle; | |
| import android.support.v4.app.Fragment; | |
| import android.view.LayoutInflater; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import android.widget.Button; | |
| import com.actionbarsherlock.app.SherlockFragment; | |
| import com.takeit2eleven.towniemeeting.android.R; |
| package com.takeit2eleven.towniemeeting.android.fragments; | |
| import android.os.Bundle; | |
| import android.support.v4.app.Fragment; | |
| import android.view.LayoutInflater; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import android.widget.Button; | |
| import com.actionbarsherlock.app.SherlockFragment; | |
| import com.takeit2eleven.towniemeeting.android.R; |
| @Override | |
| protected void onPostExecute(ArrayList<Tip> result) { | |
| TipsAdapter adapter = new TipsAdapter(mContext, result); | |
| tips_list.setAdapter(adapter); | |
| tips_list.setOnItemClickListener(new OnItemClickListener() { | |
| @Override | |
| public void onItemClick(AdapterView<?> arg0, View arg1, int position, long arg3) { | |
| Tip clicked_tip = (Tip) tips_list.getItemAtPosition(position); | |
| Intent intent = new Intent(getApplicationContext(), MessageListActivity.class ); |
| class Api::V1::BaseApiController < ApplicationController | |
| include Api::V1::BaseApiHelper | |
| respond_to :json | |
| end |