Skip to content

Instantly share code, notes, and snippets.

View jeremyfuksa's full-sized avatar
🏠
Working from home

Jeremy Fuksa jeremyfuksa

🏠
Working from home
View GitHub Profile
Here are a few questions that will tee us up for a good conversation:
- Can you tell me about your project in a few sentences?
- What’s the timeframe? Does a certain event depend on this project launching?
- What are you looking for from us? Do you want us to design, build, and launch the whole site? Or do you have developers or other partners lined up and only need us for design?
- Have you already started on any part of the project? Do you have existing work? A new logo? Some rough designs or ideas for the site?
- How large is your team? What are the roles you envision on your end?
- How did you hear about our work? What specifically interests you about it? Any projects that you’re keen on?
- How much money have you set aside for this project?
- Are you talking to others about this project? Might we ask how many? What do you like about their work?
@zoe-edwards
zoe-edwards / hidpi-data
Created May 24, 2012 20:43
Detect high-DPI and use data-hidpi to replace img src
// Are we using a hidpi screen?
var hidpi = window.devicePixelRatio > 1 ? true : false;
if (hidpi) {
// Replace img src with data-hidpi
$('img[data-hidpi]').each(function() {
// If width x height hasn't been set, fill it in
if ($(this).attr('width') == undefined) {
$(this).attr('width', $(this).width());
}
if ($(this).attr('height') == undefined) {