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
[ | |
"dedicated-rdstation-account-60": [ | |
"subuser-60" | |
] | |
] |
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
#!/usr/bin/python | |
import os | |
import pickle | |
import re | |
import sys | |
sys.path.append("../tools/") | |
from parse_out_email_text import parseOutText | |
""" |
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
package ratelimited | |
import ( | |
"fmt" | |
"net/http" | |
"sync/atomic" | |
) | |
type RoundTripper struct { | |
http.RoundTripper |
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
{ | |
"rdsv1.net": [ | |
"rdstation-account-227", | |
"rdstation-account-228", | |
"rdstation-account-231", | |
"rdstation-account-232", | |
"rdstation-account-233", | |
"rdstation-account-235", | |
"rdstation-account-236", | |
"rdstation-account-237", |
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
times in msec | |
clock self+sourced self: sourced script | |
clock elapsed: other lines | |
000.013 000.013: --- NVIM STARTING --- | |
004.937 004.923: locale set | |
009.443 004.506: inits 1 | |
009.461 000.018: window checked |
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
pensarios em que precisamo fazer para chegar no plateau e quanto tempo ele levaria na media | |
dai poderiamos direcionar produto e cosultorias nisso | |
Time to first N sales? | |
Time to first N opportunities? |
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
common: &default_settings | |
app_name: | |
- <%= ENV["NEW_RELIC_APP_NAME"] %> | |
- App Server | |
... | |
background: | |
<<: *default_settings | |
monitor_mode: true |
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
# /Users/pcasaretto/src/rdstation/app/controllers/blog/title_controller.rb | |
class Blog::TitleController < ApplicationController | |
def new | |
@noun = params[:termo] | |
end | |
def create | |
noun = params[:noun] | |
if(!noun.blank?) |
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
RAC(self.sendButton, enabled) = [RACSignal | |
combineLatest:@[self.nomeTextField.rac_textSignal,self.streetTextField.rac_textSignal, self.numberTextField.rac_textSignal, self.bairroTextField.rac_textSignal, self.phoneTextField.rac_textSignal] | |
reduce:^(NSString *nome, NSString *street,NSString *bairro, NSString *phone) { | |
return @(nome.length > 0 && street.length > 0 && bairro.length > 0 && phone.length > 0); | |
}]; |