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
Models::Audience.first | |
=> #<FormsHub::Models::Audience @values={:id=>"ccdd57f2-d24f-4ff7-9356-b41f82756c94", :iid=>17, :account_id=>"0166cbcb-7827-4698-a267-fec98676db0b", :type=>"company", :name=>"Paid companies", :description=>nil, :facebook_account_id=>"act_10150428762524283", :facebook_audience_id=>"6103550209001", :company_segment_id=>"c6eddfbe-23ff-4287-b31c-9d3291c89da3", :person_segment_id=>nil, :company_exclusion_segment_id=>nil, :person_exclusion_segment_id=>nil, :role=>nil, :seniority=>nil, :search=>nil, :path=>nil, :status=>"active", :created_at=>2018-04-04 02:05:48 UTC, :updated_at=>2018-10-11 10:42:55 UTC, :last_sync_at=>nil, :archived_at=>nil}> |
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
const axios = require('axios') | |
const sleep = require('sleep') | |
const base64 = require('base-64') | |
const appId = process.env["GEENY_APPLICATION_ID"] | |
const host = process.env["GEENY_APPLICATION_BROKER_URL"] | |
const brokerConfig = { | |
appId: appId, | |
messageTypeId: '54121087-14f1-4c2a-835f-117681618cc9', // incoming Develco messageType |
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
const axios = require('axios') | |
const sleep = require('sleep') | |
const base64 = require('base-64') | |
const appId = process.env["GEENY_APPLICATION_ID"] | |
const host = process.env["GEENY_APPLICATION_BROKER_URL"] | |
const brokerConfig = { | |
appId: appId, | |
messageTypeId: '54121087-14f1-4c2a-835f-117681618cc9', // incoming Develco messageType |
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
static bool STATS = false; | |
static const int FRAME_PLOT_SIZE = 50; | |
static float frameTimes[FRAME_PLOT_SIZE]; | |
void renderUIElements(float elapsed) { | |
if (STATS) { | |
std::ostringstream os; | |
os << "T: " << elapsed; | |
std::string str = os.str(); | |
char * cstr = new char [str.length()+1]; |
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
require "digest/md5" | |
require "openssl" | |
require "securerandom" | |
require 'benchmark' | |
require "base64" | |
SIZE = 1000 | |
def create_test | |
ret = [] | |
SIZE.times do |
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
-- Before caching RoF fitness | |
-- 00:00:00.1983681 | |
RoF Fitness: 00:00:00.0025516 | |
Fitness total: 00:00:00.0055062 | |
Actions: 00:00:00.0664216 | |
Playing total: 00:00:00.0255507 | |
-- After caching RoF fitness | |
-- 00:00:00.2025582 |
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
public static TResult Aggregate<TSource, TAccumulate, TResult> (this IEnumerable<TSource> source, TAccumulate seed, Func<TAccumulate, TSource, TAccumulate> func, Func<TAccumulate, TResult> resultSelector) { | |
return System.Linq.Aggregate(source, TAccumulate seed, Func<TAccumulate, TSource, TAccumulate> func, Func<TAccumulate, TResult> resultSelector) ; | |
} | |
public static TAccumulate Aggregate<TSource, TAccumulate> (this IEnumerable<TSource> source, TAccumulate seed, Func<TAccumulate, TSource, TAccumulate> func) { | |
return System.Linq.Aggregate (source, TAccumulate seed, Func<TAccumulate, TSource, TAccumulate> func); | |
} | |
public static bool All<TSource> (this IEnumerable<TSource> source, Func<TSource, bool> predicate) { |
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 Data.List | |
removeNegatives = filter $ not . (< 0) . head | |
removeEmpties = filter $ not . null | |
safeTail (x:xs) = xs | |
safeTail x = x | |
parts [] = [] |
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
def updateResourceProgress(state: State, timestamp: Long): State = { | |
val secondsSinceLastUpdate = (timestamp - state.metaData.lastUpdate) | |
logger.debug(s"secondsSinceLastLogin $secondsSinceLastUpdate") | |
val updatedResources: Map[String, Resource] = state.resources.map { | |
case (resourceName, resource) => { | |
val modifier = resource.productionRate * resource.rateModifier / 1000 | |
val productionRate = resource.productionRate + modifier | |
val addedResources = (productionRate.toFloat / 3600.toFloat * secondsSinceLastUpdate).ceil.toLong | |
logger.debug(s"adding $addedResources to $resourceName for $secondsSinceLastUpdate s - ${productionRate}/h") |
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
UserState: | |
{ | |
<new field> | |
itemDetails: [ | |
<Same as ItemConfig> | |
{ | |
"i18n": { | |
"description": "This is a generated item.", | |
"title": "" | |
}, |
NewerOlder