This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
el.fade('out').get('tween').chain(function(){ | |
el.destroy(); | |
}).delay(5000); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* `Rounded Corners | |
----------------------------------------------------------------------------------------------------*/ | |
.round_all { | |
-khtml-border-radius: 5px; | |
-moz-border-radius: 5px; | |
-webkit-border-radius: 5px; | |
border-radius: 5px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Run via OS X Terminal.app to block junk tweets in Tweetie. | |
// Info: http://atebits.posterous.com/test-filtering-in-tweetie-for-mac | |
defaults write com.atebits.tweetie-mac filterTerms -array "@gowalla" "http://gowal.la" "@foursquare" "http://4sq.com" "lunch" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Form Elements | |
-- Styled to look like native Safari on OS X. | |
-- Drop-down <select> menus are unaffected. | |
-- Buttons are unaffected. Native OS style. | |
*/ | |
input, | |
button, | |
select, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Should be: | |
<code>This is an [email protected]</code> | |
#Instead it shows this: | |
<code>This is an <a href="mailto:[email protected]">[email protected]</a></code> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static MySingletonClass *sharedGizmoManager = nil; | |
(MySingletonClass*)sharedManager{ | |
if (sharedSingletonManager == nil) { | |
sharedSingletonManager = [[super allocWithZone:NULL] init]; | |
} | |
return sharedGizmoManager; | |
} | |
(id)allocWithZone:(NSZone *)zone{ | |
return [[self sharedManager] retain]; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<iframe src="http://www.coveritlive.com/index2.php/option=com_altcaster/task=viewaltcast/altcast_code=9353bf7bcd/height=800/width=610" scrolling="no" height="800px" width="610px" frameBorder ="0" ><a href="http://www.coveritlive.com/mobile.php/option=com_mobile/task=viewaltcast/altcast_code=9353bf7bcd" >WWDC 2010 Live Coverage</a></iframe> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="/tracks" html="idtracking" method="post"> | |
<div id="trackingnumber"> | |
<input id="number" name="tracking" type="text" value="Enter your tracking number" /> | |
</div> | |
<div id="submitpkg"> | |
<button type="submit">Track Your Package</button> | |
</div> | |
</form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Dog < ActiveRecord::Base | |
has_many :videos | |
has_many :photos | |
belongs_to :user | |
end | |
class Video < ActiveRecord::Base | |
has_many :dogs | |
belongs_to :user | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li> <a class="pic" href="#"><img src="/wp-content/uploads/2011/06/Lisa_harris.jpg" alt="" /></a> | |
<h3><a href="#">Lisa Harris</a></h3> | |
<p class="links"><a href="http://www.linkedin.com/pub/lisa-harris/5/3a5/666">Website</a></p> | |
<p>They say that the devil is in the details.</p> | |
<p>However, “they” don’t have Lisa. Prior to joining Six Foot Five, Lisa worked in the agency world for 12+ years supervising client accounts and managing campaigns for numerous local, regional, and national brands. All this experience comes together to make Lisa our commercial producer extraordinaire. AANNDD, In addition to producing, she is also in charge of drumming up new relationships.</p> | |
<p>Bottom line: Lisa’s passion/job is making things happen. Lucky us!</p> | |
</li> |
OlderNewer