\n\nA couple additional comments:\n\n· There is also a new billing wiki: [https://corpwiki.appnexus.com/display/billing/][1]\n\n· It is one thing to understand the difference between a campaign and line item, and another to give advice to a client on where they should set a budget. Some guidelines that I have gathered are:\n\no A line item budget should be used if you are getting paid in CPC or CPA, but is not necessary when you are getting paid in CPM as long as you are setting a campaign budget (see next bullet)\n\no Always set a campaign budget to control the amount you are spending, or in the case of getting paid CPM, also control the amount your advertiser is spending\n\no While line item budgets don’t always need to be set as per the above, it can be confusing to use campaign monitor without setting both a line item and campaign budget. For example, if you have 1 month flight dates on the line item and 1 week flight dates on the campaign and a budget only set on the campaign,
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
Last login: Mon Feb 27 08:11:18 2012 from 190.145.89.146 | |
[deploy@stage01 ~]$ ssh git@github.com -v | |
OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008 | |
debug1: Reading configuration data /home/deploy/.ssh/config | |
debug1: Applying options for github.com | |
debug1: Applying options for * | |
debug1: Reading configuration data /etc/ssh/ssh_config | |
debug1: Applying options for * | |
debug1: Connecting to github.com [207.97.227.239] port 22. | |
debug1: Connection established. |
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
<ul class="dropdown-menu"> | |
<li id="ember328" class="ember-view active" href="#/edit_profile"> | |
<a href="view.href"><i class="icon-user"></i>Profile</a> | |
</li> | |
<li id="ember331" class="ember-view" href="#/schedule"> | |
<a href="view.href"><i class="icon-calendar"></i>Schedule</a></li> | |
</ul> |
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
class Api::ApiController < ActionController::API | |
before_filter :user_authenticated? | |
private | |
def user_authenticated? | |
unless user_signed_in? | |
return render :status => 401, :json => {:success => false, :errors => ["Y U NO authenticated?"]} | |
end | |
end |
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
class UserSerializer < ActiveModel::Serializer | |
attributes :id, | |
:email, | |
:name, | |
:username, | |
:location, | |
:description, | |
:avatar_url, | |
:trainer_id, | |
:created_at, |
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
var express = require('express'); | |
var app = express(); | |
app.use(express.bodyParser()); | |
var events = [{ | |
"id": 0, | |
"title": "Atlanta Summit 2016", | |
"date": "February 9th, 2016", | |
"img": "http://www.axial.net/wp-content/uploads/2015/12/Atlanta-Summit-hero-image.jpg" | |
}, { |
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
{ | |
"stocks": [{ | |
"id": 1, | |
"name": "Novavax NVAX", | |
"ticker": "NVAX" | |
}, { | |
"id": 2, | |
"name": "Array ARRY", | |
"ticker": "ARRY" | |
}, { |
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
Motto: The best way to learn is to teach | |
[ ] Master | |
[ ] Algorithms | |
[ ] ng2 | |
[ ] TypeScript | |
[ ] RxJS / Redux | |
[ ] Teach | |
[ ] Publish 50 Blog entries | |
[ ] Lead 20 Lunch n Learn |
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
import { TestBed, inject } from '@angular/core/testing'; | |
import { FakeBackend } from 'ngx-http-test'; | |
import { Observable } from 'rxjs/Observable'; | |
import { CompanyApiService } from './company.api.service'; | |
import { company_mock } from 'assets/mock-data/company.mock'; | |
import { company_offices_mock } from 'assets/mock-data/company-offices.mock'; | |
import { company_projects_mock } from 'assets/mock-data/company-projects.mock'; | |
import { company_transactions_mock } from 'assets/mock-data/company-transactions.mock'; |
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
// ---- | |
// Sass (v3.3.0.rc.2) | |
// Compass (v1.0.0.alpha.17) | |
// ---- | |
// | |
// map-fetch($map, $keys) | |
// | |
// An easy way to fetch a deep value in a multi-level map. Works much like | |
// map-get() except that you pass multiple keys as the second parameter to |
OlderNewer