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
| /** | |
| * Output CSS3 box shadows | |
| * | |
| * @param string $xOffset The x offset of the shadow | |
| * @param string $yOffset The y offset of the shadow | |
| * @param string $size Size of the shadow | |
| * @param string $opacity You can either specify an opacity value (0 through 1) or a hex color value | |
| * @param string $location You can specify this optionally as 'inset' and the shadow will be inside of the element instead of outside | |
| * | |
| * @return string |
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
| Hardware: | |
| Hardware Overview: | |
| Model Name: MacBook Pro | |
| Model Identifier: MacBookPro5,1 | |
| Processor Name: Intel Core 2 Duo | |
| Processor Speed: 2.53 GHz | |
| Number of Processors: 1 | |
| Total Number of Cores: 2 |
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
| var getClassedElemets = function(className, getFirst) { | |
| if (typeof getFirst === undefined) getFirst = false; | |
| var els = []; | |
| var all = document.getElementsByTagName('*'); | |
| var arrEls = getArrFromNodeList(all); | |
| for (var j=0; j < arrEls.length; ++j) { | |
| var test = arrEls[j]; | |
| if (hasClass(test, className)) { |
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
| Object.prototype.hasClass = function(className) { | |
| return this.className.indexOf(className) !== -1; | |
| } | |
| Object.prototype.addClass = function(className) { | |
| if this.hasClass(className) { | |
| return false; | |
| } | |
| this.className = this.className += ' ' + className; |
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
| html: function( value ) { | |
| if ( value === undefined ) { | |
| return this[0] && this[0].nodeType === 1 ? | |
| this[0].innerHTML.replace(rinlinejQuery, "") : | |
| null; | |
| // See if we can take a shortcut and just use innerHTML | |
| } else if ( typeof value === "string" && !rnocache.test( value ) && | |
| (jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value )) && | |
| !wrapMap[ (rtagName.exec( value ) || ["", ""])[1].toLowerCase() ] ) { |
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
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Tigris</title> | |
| <script src="/js/lib/prototype.s2.js" type="text/javascript" charset="utf-8"></script> | |
| <script src="/js/application.js" type="text/javascript" charset="utf-8"></script> | |
| <link rel="stylesheet" href="/css/lib/type.css"> | |
| <link rel="stylesheet" href="/css/application.css"> | |
| </head> | |
| <body> |
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
| if [[ "$TM_SSH_REMOTE_PATH" == "" ]]; then | |
| exit_show_tool_tip "Missing project variable: TM_SSH_REMOTE_PATH" | |
| fi | |
| rsync \ | |
| -auz \ | |
| --stats \ | |
| --delete \ | |
| --exclude *.tmproj \ | |
| --exclude-from '/Users/cduruk/digg/cduruk.local/rsync-exclude.txt' \ | |
| ${TM_SSH_PORT:+ --port=$TM_SSH_PORT} \ |
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
| 3:37:57 PM Can Duruk: flying like a g5 isn't cool | |
| 3:38:01 PM Can Duruk: you know what's cool? | |
| 3:38:06 PM Todd Eichel: like a g6 | |
| 3:38:09 PM Can Duruk: like a g6 | |
| 3:38:12 PM Can Duruk: like a g6 | |
| 3:38:15 PM Can Duruk: na na na nah nah |
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
| floatADivOnDomLoad : function(id, parentid) { | |
| util.doOnDomLoad( function() { | |
| if ($(id)) document.observe('scroll', util.floatADivOnScrollHandler.bind(this,id,parentid)); | |
| // this is for the IEs | |
| if (window.attachEvent && $(id)) window.attachEvent("onscroll", util.floatADivOnScrollHandler.bind(this,id, parentid)); | |
| }); | |
| }, | |
| // | |
| floatADivOnScrollHandler : function(id, parentid) { |
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
| GET /l.php?u=http://www.youtube.com/watch%3Fv%3DGd5yN43TqCk%26feature%3Dplayer_embedded&h=72b0f HTTP/1.1 | |
| Host: www.facebook.com | |
| Accept: */* | |
| HTTP/1.1 200 OK | |
| P3P: CP="DSP LAW" | |
| Refresh: 1;URL=http://www.youtube.com/watch?v=Gd5yN43TqCk&feature=player_embedded | |
| Set-Cookie: datr=qu3eTF-_mLKtmNNl43RcEI3D; expires=Mon, 12-Nov-2012 19:57:30 GMT; path=/; domain=.facebook.com | |
| Set-Cookie: lsd=unWTB; path=/; domain=.facebook.com | |
| Content-Type: text/html; charset=utf-8 |