This file contains hidden or 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
#include <SoftwareSerial.h> | |
SoftwareSerial LCD= SoftwareSerial(255, 3); | |
void setup() { | |
pinMode(3, OUTPUT); | |
LCD.begin(9600); | |
delay(1000); | |
LCD.print("Hey Brian"); | |
} |
This file contains hidden or 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
int[] lines = new int[10]; | |
int counter = 0; | |
float startTime, currTime; | |
float hitTime; | |
float bpm = 10070; | |
PShape bassDrum; | |
PShape highHat; | |
PShape snare; |
This file contains hidden or 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
int[] lines = new int[10]; | |
int counter = 0; | |
float startTime, currTime; | |
float hitTime; | |
float bpm = 170; | |
PShape bassDrum; |
This file contains hidden or 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
int[] lines = new int[10]; | |
int counter = 0; | |
void setup() { | |
size(1800, 800); | |
} | |
void draw() { | |
//background(0); |
This file contains hidden or 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
// Example 1 - Visitor on page for 3 seconds | |
$(document).ready(function() { | |
var delayLength = 3000; | |
setTimeout(function(){ | |
_pq.push(["track", "User visited"]); | |
}, delayLength); | |
}); | |
// Example 2a - Visitor hovered over element of class | |
$(document).ready(function() { |
This file contains hidden or 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
(function() { | |
window._pa = window._pa || {}; | |
// _pa.orderId = "myOrderId"; // OPTIONAL: attach unique conversion identifier to conversions | |
// _pa.revenue = "19.99"; // OPTIONAL: attach dynamic purchase values to conversions | |
// _pa.productId = "myProductId"; // OPTIONAL: Include product ID for use with dynamic ads | |
var pa = document.createElement('script'); pa.type = 'text/javascript'; pa.async = true; | |
pa.src = ('https:' == document.location.protocol ? 'https:' : 'http:') + "//tag.perfectaudience.com/serve/5356d3fed85252febe000003.js"; | |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(pa, s); | |
})(); |
This file contains hidden or 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
Front-end Developer / Designer | |
About the Position: | |
We're looking for someone to take ownership of interaction & graphic design for Perfect Audience — on web and mobile. Instead of designing yet another drab tool solely aimed at agency campaign managers, your goal is to build a dashboard that makes using & managing dozens of campaigns simple and delightful. | |
What we are looking for: | |
Understanding of and instinct for design and user experience | |
Ability to create designs from scratch (with the tools of your choice) | |
Ability to bring designs to life with HTML/CSS/Javascript (You don't fear committing code. Heck our CEO commits code!) |
This file contains hidden or 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
$endpoint = "http://apidev.retargeter.com/api/retargeter/test"; | |
$data = array( | |
"action" => "test", | |
"sandbox"=>"true" | |
); | |
$ch = curl_init($endpoint); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
curl_setopt($ch, CURLOPT_HEADER, 1); |
NewerOlder