Skip to content

Instantly share code, notes, and snippets.

View Heray's full-sized avatar

Paul Yang Heray

  • New York
View GitHub Profile
@Heray
Heray / content-scoring.sql
Last active March 15, 2019 22:09
Content Scoring
with threshold as (
SELECT percentile_cont(0.25) within group (order by CTR desc) as threshold25,
percentile_cont(0.50) within group (order by CTR desc) as threshold50,
percentile_cont(0.75) within group (order by CTR desc) as threshold75,
count(*) as total_items
FROM items
),
final as (
SELECT
items.id,
@Heray
Heray / pbjs_amazon.html
Last active March 2, 2021 22:51
How to add Amazon as a custom prebid bidder in my site
<html>
<head>
<script>
var PREBID_TIMEOUT = 400;
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];