Used to provide structural templates.
Pattern
t-template-name
t-template-name--modifier-name
t-template-name__subcomponent-name--subcomponent-modifier-name
Somebody asked me how to become a Product Manager. Here's what I wrote them. | |
--------------------------------------------------------------------------- | |
Hi Jon, | |
Those are a lot of questions. Let me try to simplify it. | |
I think a Product Manager is a person who is responsible for determining | |
what a product should be and how it should evolve. This is a design role |
# Copyright 2007,2008,2009,2011 Everyblock LLC, OpenPlans, and contributors | |
# | |
# This file is part of ebdata | |
# | |
# ebdata is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# ebdata is distributed in the hope that it will be useful, |
My birthday is around the corner and as I grow older (which one hopes will come with more wisdom), all the pieces of my life are starting to fall into place. I’m beginning to get to really know myself—what I love and what I can’t stand, the strength of family and friendships, that quality truly is more important than quantity, and all of the other promises and perils of being an adult—and to be brave enough to embrace who I am without making excuses. Above all else, the last year has helped me redefine what success means to me. | |
When I first started thinking about career options for myself, I gravitated towards things that paid high salaries. Money meant success in my eyes. | |
“Oh, look. An architect can make up to $200,000 a year.” | |
“Wow! Being a pharmacist pays really well.” | |
“I want to be an anesthesiologist and make $300,000!” | |
It was pretty silly of me. |
# ** ERROR 1 ** | |
# FATAL: lock file "postmaster.pid" already exists | |
# HINT: Is another postmaster (PID 4646) running in data directory "/usr/local/var/postgres"? | |
# | |
# ** ERROR 2 ** | |
# Is the server running locally and accepting connections on Unix domain socket "/tmp/.s.PGSQL.5432"? | |
# | |
# To fix one of this errors: | |
cat /usr/local/var/postgres/postmaster.pid # pid is the number on first line |
Every time I start a new project, I want to pull in a log
function that allows the same functionality as the console.log
, including the full functionality of the Console API.
There are a lot of ways to do this, but many are lacking. A common problem with wrapper functions is that the line number that shows up next to the log is the line number of the log function itself, not where log
was invoked. There are also times where the arguments get logged in a way that isn't quite the same as the native function.
This is an attempt to once and for all document the function that I pull in to new projects. There are two different options:
/**********************************************/ | |
/* | |
/* IR_Black Skin by Ben Truyman - 2011 | |
/* | |
/* Based on Todd Werth's IR_Black: | |
/* http://blog.toddwerth.com/entries/2 | |
/* | |
/* Inspired by Darcy Clarke's blog post: | |
/* http://darcyclarke.me/design/skin-your-chrome-inspector/ | |
/* |
require 'hmac-sha1' | |
require 'base64' | |
require 'cgi' | |
module OauthHelper | |
def URLEscape(text) | |
return CGI.escape(text).gsub("+", "%20") | |
end | |
<style type="text/css" media="screen"> | |
#circle div { | |
background-color: #000; | |
float: left; | |
height: 60px; | |
margin-left: 10px; | |
width: 60px; | |
-webkit-animation-name: circle_move; | |
-webkit-border-radius: 60px; | |
-webkit-animation-duration: 4s; |