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 / slack_emoji_usage.md
Created October 25, 2017 19:14
Slack Emoji Usage

🚒 - Support ticket that requires developers to respond.

🌲 - Documentation that should be interesting for new folks.

@briandailey
briandailey / november.md
Created November 18, 2016 23:55
November PyNash

PYCON CFP OPEN

If you are interested in submitting a proposal for a tutorial, talk, poster, or the education summit, please check out https://us.pycon.org/2017/speaking/.

  • The deadline to submit a tutorial proposal is coming up: November 30, 2016 AoE.
  • The deadline to submit proposals for talks, poster, and the Education Summit is January 3, 2017 AoE.
  • Financial aid is also accepting applications. Deadline is February 15, 2017 AoE (https://us.pycon.org/2017/financial-assistance/).
  • PyCon US registration is open https://us.pycon.org/2017/registration/ and we still have early bird ticket rates available.

PYTN

@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

@briandailey
briandailey / pynash_announcements.md
Last active March 24, 2016 23:16
PyNash Announcements
  • Javascript for Pythonistas with Will Golden (@egdelwonk)
  • Ü is for Üñîçødé with Greg Back (@gtback)
  • Lunch is April 6 (Wednesday), 11am @ Taqueria Del Sol.
  • Looking for speakers!
  • Food sponsors, too! Talk to @byeliad or @epochblue on Twitter.
  • PyOhio CFP is open! Great regional conference.
@briandailey
briandailey / gist:b3d81cfbc7ba6ef8376c
Last active December 3, 2015 17:43
Android Open Source
@briandailey
briandailey / token.py
Created September 16, 2015 18:34
token parsing question.
"""
for a string "{{ person }} wants to {{ verb }}" how can i return ['person', 'verb']?
"""
import re
string = "{{ person }} wants to {{ verb }}"
pattern = re.compile('{{ ([^ ]*) }}')
matches = re.findall(pattern, string)
# ['person', 'verb']
or_list = []
for foo in bar:
or_list.append(and_([foo=bar, foo2=bar2]))
query.filter(or_(or_list))