View gist:0750d327cf50186475c8
This file contains 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
Customers sharing information with family members, friends and classmates will have a more consistent Internet experience, with solid service reliability at all hours for common sharing activities such as: | |
Uploading a video. | |
Video chatting on Skype or FaceTime. | |
Sharing files on Facebook and Twitter or with classmates and teachers. | |
Getting a jump on an eBay bid. | |
Online shopping with new ecommerce platforms like Rue La La. | |
Beating an online gaming opponent to the punch. | |
Sending big files or backing up files by uploading them to the cloud. |
View twitter.com.js
This file contains 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
$(".cards-media-container").hide() | |
$(window).scroll(function(){ | |
$(".cards-media-container").hide() | |
}); |
View gist:7309763
This file contains 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
$(".cards-media-container").hide() | |
$(window).scroll(function(){ | |
$(".cards-media-container").hide() | |
}); |
View gist:5416664
This file contains 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 window.GroupmePushClient | |
constructor: (@apiToken) -> | |
@baseUri = GroupmePushClient.baseUri || "" | |
@subscriptions = {} | |
publish: (channel, data) -> | |
@debug("publishing to #{channel}...") | |
@client().publish(channel, data) | |
subscribe: (channel, options) -> |