This examples demonstrates how to use D3's brush component to implement focus + context zooming. Click and drag in the small chart below to pan or zoom.
This example demonstrates how to add visible and draggable handles to D3’s d3.svg.brush component, rather than that relying on the invisible boundary of the brush extent. The handle sizes here are exaggerated for demonstration purposes!
The below configuration will pause the tour after tooltip 2 has appeared (index of 1). In the postStepCallback we check to see if the tour has been paused and fire some code.
<script>
$(window).load(function() {
$('#joyRideTipContent').joyride({
pauseAfter : [1],
postStepCallback : function (index, tip) {
if ($(this).joyride('paused')) {
console.log('Hey there, you\'ve paused the tour.');
Web workers are great; they provide a powerful way to run background threads on website.
I wanted to create a more convenient way to deal with them in a jQuery-esque way. This code allows you to create a web worker and returns a jQuery.Deferred extended with some of the web worker methods on the instance.
// Alias vendor prefixes to standard.
if (!window.BlobBuilder) {
window.BlobBuilder = window.WebKitBlobBuilder || window.MozBlobBuilder;
| $phone: '(max-width: 480px)'; | |
| $tablet-portrait: '(max-width: 767px)'; | |
| $tablet-landscape-desktop: '(min-width: 768px) and (max-width: 979px)'; | |
| $large-desktop: '(min-width: 1200px)'; | |
| $non-retina: 'screen and (-webkit-max-device-pixel-ratio: 1)'; | |
| $retina: 'screen and (-webkit-min-device-pixel-ratio: 2)'; | |
| @mixin respond-to($media) { | |
| @media #{$media} { | |
| @content; |
| public class SmoothCircularIndeterminateProgressBarDrawable | |
| extends Drawable | |
| implements Animatable { | |
| private static final Interpolator ANGLE_INTERPOLATOR = new LinearInterpolator(); | |
| private static final Interpolator SWEEP_INTERPOLATOR = new DecelerateInterpolator(); | |
| private static final int ANGLE_ANIMATOR_DURATION = 2000; | |
| private static final int SWEEP_ANIMATOR_DURATION = 600; | |
| private static final int MIN_SWEEP_ANGLE = 30; | |
| private final RectF fBounds = new RectF(); |
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'rotp' | |
| require 'time' | |
| user = ARGV[0] | |
| secret = ARGV[1] | |
| abort unless user and secret | |
| trap("INT") do |
| require 'openssl' | |
| def gen_key(name) | |
| key = OpenSSL::PKey::RSA.new 1048 | |
| file = File.new(name, "w") | |
| file.write(key) | |
| file.close | |
| end | |
| def get_key(name) |
| domain = "*.example.com" | |
| subjectAltDomains = [ domain, "example.com" ] | |
| require 'openssl' | |
| puts "Generating public and private keys..." | |
| key = OpenSSL::PKey::RSA.new(2048) | |
| subject = "/C=US/ST=California/L=Los Angeles/O=Example Inc./CN=#{domain}" | |
| cert = OpenSSL::X509::Certificate.new |