layout | title | date | categories | pygments | perex |
---|---|---|---|---|---|
post |
Creating User Filters |
2014-05-27 05:30:00 -0700 |
recipe |
true |
Here we will build project end-to-end with the SDK ultimately applying Mandatory User Filters and Variable filters to the project. |
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
0xAad06Bd579C26284CB25B969A2961662c21b5832 |
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
beakernotebook.com | |
tssecurities.com | |
twosigma.com | |
twosigmasecurities.com | |
twosigmaventures.com | |
pics.twosigma.com | |
sohosecurities.biz | |
twosigma.biz | |
2ssec.com | |
beakernotebook.com |
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
In no way will we spam or abuse the information we use in this application. |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
console.log('hello'); | |
alert('hello'); | |
window.parent.alert('hello'); | |
window.parent.console.log('hello'); |
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
[ | |
{ | |
"name": "Butler", | |
"version": "0.0.1", | |
"category": "admin_tools", | |
"language": "ruby", | |
"tags": "ruby export objects", | |
"parameters": [ | |
{ | |
"name": "butler", |
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
speechSynthesis.getVoices().forEach(function(voice) { | |
var name = voice.name, | |
speech = new SpeechSynthesisUtterance("Hello, my name is " + name); | |
speech.voice = voice; | |
speechSynthesis.speak(speech); | |
}) |
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
// change unlogged in modal form copy from "save" to "bookmark" | |
$(document).bind('click.modal.data-api', '.btn:contains("Bookmark")', function (e) { | |
var $signupModal = $('#signup_modal'); | |
$signupModal.find('.js-dynamic-help-text') | |
.each(function(){ | |
var text = $(this).text(); | |
text = text.replace("saved", "bookmarked"); | |
text = text.replace("save", "bookmark"); | |
$(this).text(text); | |
}) |
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
<!DOCTYPE HTML PUBLIC"-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd"> | |
<html lang="en"> | |
<head> | |
<title>Conditionals with Else</title> | |
</head> | |
<body> | |
<script language="javascript" type="text/javascript"> | |
var numericalGrade = 95; | |
var letterGrade; | |
if(numericalGrade >= 90){ |