Just trying to do some login animations. Buggy on Firefox, fine in Chrome. Still need to tidy up and Optimize
A Pen by Jamie Coulter on CodePen.
| import cv2 | |
| import numpy as np | |
| canny = rho = threshold = minLen = maxGap = None | |
| def draw(): | |
| lines = cv2.HoughLinesP(canny, rho, np.pi / 180, | |
| threshold, None, minLen, maxGap) | |
| dst = cv2.cvtColor(canny, cv2.COLOR_GRAY2BGR) |
| package demo; | |
| import java.io.Serializable; | |
| import org.springframework.boot.SpringApplication; | |
| import org.springframework.boot.autoconfigure.SpringBootApplication; | |
| import org.springframework.context.annotation.Bean; | |
| import org.springframework.context.annotation.Primary; | |
| import org.springframework.data.redis.connection.RedisConnectionFactory; | |
| import org.springframework.data.redis.core.RedisOperations; |
| # Run Review Board in a Docker container. | |
| FROM ubuntu:latest | |
| MAINTAINER Ondrej Kupka "ondra.cap@gmail.com" | |
| # Get all packages we need | |
| RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list | |
| RUN apt-get update | |
| # Install Python |
| var amqp = require('amqp'); | |
| var config = require('../utils/config'); | |
| var mailClient = require('../controllers/utils/mailClientEdmExt'); | |
| var GMAPI = require('gm-open-api'); | |
| var logger = GMAPI.getEzLogger(module); | |
| var conn = amqp.createConnection({url: "amqp://"+config.rmqUser+":"+config.rmqPsw+"@"+config.rmqHost+":"+config.rmqPort}); | |
| conn.on("ready", function() { |
| function max(a,b) { | |
| a=a+0; | |
| b=b+0; | |
| return a>b?a:b; | |
| } | |
| { | |
| a="2.01"; | |
| b="10.1"; | |
| print max(a,b); |
Just trying to do some login animations. Buggy on Firefox, fine in Chrome. Still need to tidy up and Optimize
A Pen by Jamie Coulter on CodePen.
Based on https://dribbble.com/shots/1990901-Questionnaire-Concept
A Pen by Nikolay Talanov on CodePen.