Skip to content

Instantly share code, notes, and snippets.

View meniltiac's full-sized avatar

Caitlin McKenna meniltiac

  • NakedPoppy
  • Boulder, CO
View GitHub Profile
{
"customer": {
"metafields": [
{
"key": "user_quiz_token",
"value": "v5vTmoR51JEgx4L4pULl2Z7ZGMGbj1PgH928",
"value_type": "string",
"namespace": "np_user"
},
{
{
"customer": {
"metafields": [
{
"key": "user_quiz_token",
"value": "v5vTmoR51JEgx4L4pULl2Z7ZGMGbj1PgH928",
"value_type": "string",
"namespace": "np_user"
},
{
'company_category_industryGroup_CB__c': 'Software & Services',
'company_category_industry_CB__c': 'Internet Software & Services',
'company_category_subIndustry_CB__c': 'Internet Software & Services',
'company_crunchbase_handle_CB__c': 'organization/parsely',
'company_description_CB__c': 'ly is a technology company that provides web '
'analytics and content optimization software for '
'online publishers.',
'company_domainAliases_CB__c': ['parsely.com'],
'company_domain_CB__c': 'parse.ly',
'company_emailProvider_CB__c': False,
{'category_industryGroup_CB': 'Software & Services',
'category_industry_CB': 'Internet Software & Services',
'category_naicsCode_CB': '54',
'category_sector_CB': 'Information Technology',
'category_sicCode_CB': '73',
'category_subIndustry_CB': 'Internet Software & Services',
'company_description_CB': 'ly is a technology company that provides web '
'analytics and content optimization software for '
'online publishers.',
'company_domainAliases_CB': ['parsely.com'],
{'company': {'category': {'industry': 'Internet Software & Services',
'industryGroup': 'Software & Services',
'naicsCode': '54',
'sector': 'Information Technology',
'sicCode': '73',
'subIndustry': 'Internet Software & Services'},
'crunchbase': {'handle': 'organization/parsely'},
'description': 'ly is a technology company that provides web '
'analytics and content optimization software for '
'online publishers.',
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.parse.ly/resources/data-studies/content-analytics-brand-publisher-research-survey/</loc>
</url>
<url>
<loc>https://www.parse.ly/resources/data-studies/election-2016-retrospective/</loc>
@meniltiac
meniltiac / homework.js
Created September 11, 2018 06:14
Excercises from the Lambda JS lecture
"use strict";
var log = console.log;
var assert = console.assert;
window.Collections = Object.create(null);
(function(root) {
function Stack(arr=[]) {
this.arr = arr;
@meniltiac
meniltiac / api-response.json
Created October 17, 2016 20:19
api-response
{
"data":[
{
"title": "How the Facebook News Feed Changes Have Affected Traffic to News Websites",
"url": "http://blog.parsely.com/post/977/how-the-facebook-news-feed-changes-have-affected-traffic-to-news-websites/",
"_hits": 274,
"pub_date": "2013-12-19T00:24:29",
"author": "Clare O.",
"section": "Analytics That Matter",
"tags": ["blog", "analytics"],
var SERVER_URL = "https://dash.parsely.com/"
//var SERVER_URL = "http://127.0.0.1:8000/"
angular.module('validate', ['ngSanitize'])
.config(['$interpolateProvider', function($interpolateProvider) {
$interpolateProvider.startSymbol('[[');
$interpolateProvider.endSymbol(']]');
}])
function Preview($scope) {
$tripsHandle = fopen(get_site_url()."/wp-content/transit-data/timetables.txt", "r");
if ($tripsHandle) {
$tripsLineCount = 0;
$trips = array();
while (($line = fgets($tripsHandle)) !== false) {
// Gather any Service ID related to this route, and stick it in the $trips array
if($tripsLineCount > 0) {