Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="utf-8"?>
<VAST version="2.0">
<Ad id="110147312">
<InLine>
<AdSystem version="1">Flingo</AdSystem>
<AdTitle><![CDATA[Netflix CTV - Action 30 (copy)]]></AdTitle>
<Description><![CDATA[Netflix CTV - Action 30 (copy) ad]]></Description>
<Error id=""><![CDATA[http://pubads.g.doubleclick.net/pagead/conversion/?ai=BN_Llof6mVIOuH8adkwK3x4DgBsCr3vwFAAAAEAEggKrnIDgAWMD0pfy9AWDJ9viGyKOgGboBDTE5MjB4MTA4MF94bWzIAQWYAsjiAcACAuACAOoCIy8xMzQ2MzYzNTIvdG16L2N0di9saW5lYXJWaWRlby9yb2t1-AKF0h6QA_ABmAOkA6gDAeAEAaAGIw&sigh=Kt94Tuq_SvE&label=videoplayfailed]]></Error>
<Impression id=""><![CDATA[http://pubads.g.doubleclick.net/pagead/adview?ai=BN_Llof6mVIOuH8adkwK3x4DgBsCr3vwFAAAAEAEggKrnIDgAWMD0pfy9AWDJ9viGyKOgGboBDTE5MjB4MTA4MF94bWzIAQWYAsjiAcACAuACAOoCIy8xMzQ2MzYzNTIvdG16L2N0di9saW5lYXJWaWRlby9yb2t1-AKF0h6QA_ABmAOkA6gDAeAEAaAGIw&sigh=5To0rFV--Fk]]></Impression>
<Creatives>
@staltz
staltz / introrx.md
Last active July 4, 2024 10:11
The introduction to Reactive Programming you've been missing
@rgreenjr
rgreenjr / postgres_queries_and_commands.sql
Last active July 4, 2024 11:47
Useful PostgreSQL Queries and Commands
-- show running queries (pre 9.2)
SELECT procpid, age(clock_timestamp(), query_start), usename, current_query
FROM pg_stat_activity
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%'
ORDER BY query_start desc;
-- show running queries (9.2)
SELECT pid, age(clock_timestamp(), query_start), usename, query
FROM pg_stat_activity
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%'
@mrdoob
mrdoob / RequestAnimationFrame.js
Created February 22, 2011 14:50
Provides requestAnimationFrame in a cross browser way.
/**
* Provides requestAnimationFrame in a cross browser way.
* @author paulirish / http://paulirish.com/
*/
if ( !window.requestAnimationFrame ) {
window.requestAnimationFrame = ( function() {
return window.webkitRequestAnimationFrame ||
<VirtualHost 1.2.3.4:80>
ServerAdmin me@example.com
ServerName example.com
DocumentRoot /srv/www/example.com/public/
ErrorLog /srv/www/example.com/logs/error.log
CustomLog /srv/www/example.com/logs/access.log combined
ProxyPass / http://127.0.0.1:8100/
ProxyPassReverse / http://127.0.0.1:8100/
<Proxy *>