I hereby claim:
- I am jmmastey on github.
- I am jmmastey (https://keybase.io/jmmastey) on keybase.
- I have a public key whose fingerprint is 96A4 7D87 6ED9 16E5 1D18 1EC6 460D 872E BFC0 C7CD
To claim this, I am signing this object:
def create_customer_leads(posted_data) | |
customer_leads = [] | |
if posted_data.is_an? Array | |
posted_data.each do |lead_params| | |
customer_leads << extract_customer_lead(lead_params) | |
end | |
else | |
customer_leads << extract_customer_lead(posted_data) | |
end | |
customer_leads |
def create_customer_leads(posted_data) | |
customer_leads = [] | |
Array(posted_data).each do |lead_params| | |
customer_leads << extract_customer_lead(lead_params) | |
end | |
customer_leads | |
end | |
def extract_customer_lead(lead_params) | |
AcquisitionClient::CustomerLead.extract_customer_lead(posted_data) |
def create_customer_leads(posted_data) | |
Array(posted_data).map do |lead_params| | |
extract_customer_lead(lead_params) | |
end | |
end | |
def extract_customer_lead(lead_params) | |
AcquisitionClient::CustomerLead.extract_customer_lead(posted_data) | |
end |
def show_account_label | |
puts "#{client_count}, #{last_connection_time}" | |
end | |
def clients | |
@account.client_list | |
end | |
def client_count | |
"#{clients.length} #{"client".pluralize}" |
def auth_by_token(email, auth_token) | |
user = User.find(email: email) | |
if user && Devise.secure_compare(user.auth_token, auth_token) | |
session[:current_user] = user | |
end | |
end |
background(0,0,0); | |
var radius = 1; | |
var drawCircle = function(rad) { | |
translate(200, 200); | |
for(var r = 0; r < 360; r += 2) { | |
fill(20, mouseY, mouseX); | |
rect(rad, rad, 20, 20); | |
rotate(2); | |
} |
I hereby claim:
To claim this, I am signing this object:
Language | % Non-Male | % Other | Total | Male | Female | Other | |
---------------------------------------------------------------------------------------------------- | |
TOTALS | 5% | 0.56% | 190942 | 181170 | 8705 | 1067 | |
JavaScript | 5% | 0.35% | 20219 | 19150 | 999 | 70 | |
SQL | 5% | 0.39% | 14526 | 13739 | 731 | 56 | |
Java | 5% | 0.36% | 14107 | 13270 | 786 | 51 | |
C# | 4% | 0.32% | 12634 | 12056 | 537 | 41 | |
Python | 4% | 0.51% | 10957 | 10441 | 460 | 56 | |
PHP | 5% | 0.48% | 10283 | 9679 | 555 | 49 | |
Android | 5% | 0.41% | 9759 | 9191 | 528 | 40 |
# C-b is not acceptable, make it C-w | |
set -g prefix C-w | |
bind C-w send-prefix | |
#bind-key C-w last-window | |
# navigate windows | |
bind-key -n F11 previous-window | |
bind-key -n F12 next-window | |
# start numbering at 1 |
Moved everything to https://github.com/jmmastey/team_outings so that I could get a more useful URL ;)