This interface experiments with user input by implementing a circular form, that rotates as the user advances through it's path.
Forked from Yogev Ahuvia's Pen A Circular Form.
A Pen by Seth Calkins on CodePen.
This interface experiments with user input by implementing a circular form, that rotates as the user advances through it's path.
Forked from Yogev Ahuvia's Pen A Circular Form.
A Pen by Seth Calkins on CodePen.
Animated redacted text via Sass for all you confidential needs.
A Pen by Jeremy Paris on CodePen.
Some fun motion.
Forked from Colin Hall-Coates's Pen Exploring Bourbon.
A Pen by Seth Calkins on CodePen.
# Ruby 1.8.7 | |
source "https://rubygems.org" | |
gem "json_pure" | |
group :test do | |
gem "rspec" | |
gem "vcr" | |
gem "webmock" |
library(RCurl) | |
library(XML) | |
library(plyr) | |
#' get the Qualys SSL Labs rating for a domain+cert | |
#' | |
#' @param site domain to test SSL configuration of | |
#' @param ip address of \code{site} (will resolve it and take\cr | |
#' first response if not specified, but that may not always work as you expect) | |
#' @param hide.results ["on"|"off"] should the results show up in the SSL Labs history (default "on") |
/** | |
* Retrieves all the rows in the active spreadsheet that contain data and logs the | |
* values for each row. | |
* For more information on using the Spreadsheet API, see | |
* https://developers.google.com/apps-script/service_spreadsheet | |
*/ | |
function readRows() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var rows = sheet.getDataRange(); | |
var numRows = rows.getNumRows(); |
Custom recipe to get OS X 10.10 Yosemite running from scratch, setup applications and developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.
This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.
You are encouraged to fork this and modify it to your heart's content to match your own needs.
// Sample File for Interaction with the Base CRM API via Google Apps Scripts for Spreadsheet | |
// The below script is getting a Token based on email and password authentification from the base API | |
// and is writing in the active spreadsheets all the deals with the described status | |
// I'm not a programmer, so see it as a prototype to checkout the possibilities. | |
// 2012 Christian Leu - www.leumund.ch | |
function deals() { | |
var email = "base crm e-mail adress"; |