Skip to content

Instantly share code, notes, and snippets.

View briandailey's full-sized avatar

Brian Dailey briandailey

View GitHub Profile
@keyframes(bulge) {
0% { font-size: ms(-1) }
30% { font-size: ms(3) }
100% { font-size: ms(0) }
}
.class {
animation: bulge $transition-speed-easing infinite;
}
.class {
transition: color $transition-speed-easing; // preferred method
}
.class {
transition: opacity ($transition-speed * 2) $transition-easing; // For a slower animation
}
.class {
transition: color $transition-speed-easing, // multiple properties
@briandailey
briandailey / stratasan_developer.md
Last active August 27, 2016 03:32 — forked from sburns/stratasan_developer.md
Stratasan: Web Developer

Web Developer

Become a Stratanaut!

Who We Are

Stratasan is a Nashville-based company that provides intelligence on healthcare markets to hospital strategists, physician offices, community care experts, and others. We aggregate healthcare data, curate it, and provide reports and tools that aid healthcare decision-making. As an example, we give guidance to our clients looking to place a new acute care clinic.

Why You Should Talk To Us

diff --git a/app/views/devise/shared/_links.erb b/app/views/devise/shared/_links.erb
dissimilarity index 99%
index 414904b..0b0b21d 100644
--- a/app/views/devise/shared/_links.erb
+++ b/app/views/devise/shared/_links.erb
@@ -1,19 +1,15 @@
-<%- if controller_name != 'sessions' %>
- <%= link_to "Sign in", new_session_path(resource_name) %><br />
-<% end -%>
-
@briandailey
briandailey / leap_year.py
Created September 27, 2012 19:58
method to check a year to see if it's a leap year.
is_leap_year = lambda x: x % 400 == 0 or (x % 100 != 0 and x % 4 == 0)