Length: 123 x 109in = 464 linear inches = 38 feet
Type: RGB
Length: 120 x 84in = 408 linear inches = 34 feet
Type: RGB
// A place to store results | |
var memory = {}; | |
var primesUpTo = function(maxNumber){ | |
// set up something that is very unique to this request | |
var cacheKey = 'primes:max:' + maxNumber; | |
// Get the result from memory | |
var result = memory[cacheKey]; |
<div class="color-container"> | |
<input type="text" name="hex" class="text-value" /> | |
<input type="color" name="color" class="color-value" /> | |
</div> | |
<script type="text/javascript"> | |
$('.color-container').on('change keyup', 'input[type="text"], input[type="color"]', | |
function(){ | |
var $this = $(this); | |
if($this.attr('type') === 'color'){ |
by humdog (1994)
when i went into cyberspace i went into it thinking that it was a place like any other place and that it would be a human interaction like any other human interaction. i was wrong when i thought that. it was a terrible mistake.
the very first understanding that i had that it was not a place like any place and that the interaction would be different was when people began to talk to me as though i were a man. when they wrote about me in the third person, they would say “he.” it interested me to have people think i was “he” instead of “she” and so at first i did not say anything. i grinned and let them think i was “he.” this went on for a little while and it was fun but after a while i was uncomfortable. finally i said unto them that i, humdog, was a woman and not a man. this surprised them. at that moment i realized that the dissolution of gender-category was something that was happening everywhere, and perhaps it was only just very obvious on the
I hereby claim:
To claim this, I am signing this object:
Process Notes
Why choose Vue?
Beginning Steps:
Our team has been asked to create a premium advertising experience for MegaBaby SuperWipes™. The ad experience should allow users to drag and drop labels into two columns, allowing our loyal customers to vote with their minds and mice. They're hoping to get a sense of how well they are executing their refreshed company goals in the wake of the Great MegaBaby Warehouse Wipeout Incident of 2017.
The design team has created an amazing mockup for us, and our code is almost there! The CSS and HTML is bulletproof, thankfully.
But we're using the lovely dragula open-source drag & drop JavaScript library — and we're having some problems:
var words = ["district line", "parsons green", "1 dead 22 injured", "18 year old tourist", "2 students in critical condition", "32 dead after magnitude 8.1 earthquake rocks mexico", "5 people dead", "80 killed", "afghan presidential palace", "afghan war", "afghanistan bombing", "afghanistan isis", "ahmad musa jibril", "aircraft crashed", "alexandria virginia shooting", "alt right", "alyssa elsman", "anti semitic", "anti semitism", "antisemitic", "antisemitic jokes", "antisemitic posts", "antisemitism", "ap bjb flight 202", "apbjb flight 202", "ariana grande", "ass", "asses", "asshole", "assholes", "attack on paris police", "attack philippines", "bangsamoro islamic freedom fighters", "barcelona attack", "barcelona terror attack", "barcelona van attack", "barcelonaattack", "barcelonaterrorattack", "barcelonavanattack", "biff", "biff attack", "bigot", "bisexual", "bisexuals", "bitch", "bitches", "blast hits st petersburg metro carriage", "blast on st petersburg metro", "blast rocks kabul", "blimp at us open catc |
const videoElement = document.querySelector('video'); | |
const concertVast = new ConcertVast(); | |
const url = 'https://www.ad-server.com/some-great-vast.xml'; | |
concertVast.loadRemoteVast(url).then(e => { | |
concertVast.applyToVideoElementAsPreroll(videoElement, { | |
autoplay: true, | |
muted: true | |
}); | |
}); |
The question was asked why I (as a programmer who prefers dynamic languages) don't consider static types "worth it". Here is a short list of what I would need from a type system for it to be truely useful to me:
(defn concat-names [person]
(assoc person :full-name (str (:first-name person)
(:second-name person))))