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
// This function will get only the latest 5000 followers of certain user and update them in the db | |
// First we ask Twitter for fresh followers | |
$fresh_followers = array(); | |
$tmhOAuth = initTmhOAuth($organizer_username); | |
$tmhOAuth->request('GET', $tmhOAuth->url('1/followers/ids'), array( | |
'stringify_ids' => true, | |
'screen_name' => $organizer_username | |
)); |
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
<?php | |
/*ini_set('display_errors', 1); | |
ini_set('error_reporting', E_ALL); | |
*/ | |
require_once("includes/all.inc.php"); | |
require_once("includes/header.inc.php"); | |
require_once("includes/footer.inc.php"); |
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
<?php | |
/****** STYLE GUIDES *****/ | |
/* About parameters: */ | |
/* | |
To make it flexible, all parameters have to be optional (that's why it receives an array) but there are some that are hard to remember and could | |
be the default for certain scenarios. So if the parameter needed is in the array $parameter use it, if not use | |
the default fallback. | |
*/ |
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
tweetExists |
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
<?php | |
//session_start(); | |
ini_set('display_errors', 1); | |
ini_set('error_reporting', E_ALL); | |
require_once("includes/all.inc.php"); | |
require_once("includes/Twitter.class.php"); | |
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
<?php | |
/****** STYLE GUIDES *****/ | |
/* About parameters: */ | |
/* | |
To make it flexible, all parameters have to be optional (that's why it receives an array) but there are some that are hard to remember and could | |
be the default for certain scenarios. So if the parameter needed is in the array $parameter use it, if not use | |
the default fallback. | |
*/ |
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
<?php | |
/****** STYLE GUIDES *****/ | |
/* About parameters: */ | |
/* | |
To make it flexible, all parameters have to be optional (that's why it receives an array) but there are some that are hard to remember and could | |
be the default for certain scenarios. So if the parameter needed is in the array $parameter use it, if not use | |
the default fallback. | |
*/ |
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
<!DOCTYPE html> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>Bumbea.com</title> | |
<meta name="description" content=""> |
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
/* ========================================================================== | |
Product autocomplete styles | |
========================================================================== */ | |
ul.autocomplete-list | |
{ | |
z-index: 3; | |
width: 390px; | |
background: white; | |
margin: 0px; | |
padding: 0px; |
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
<ul class="thumbnail autocomplete-list"> | |
<li class="autocomplete-item"> | |
<a href="#" title=""> | |
<img src="http://bumbea.com/site/img/resources/galaxy-s.jpeg" class="pull-left product-image img-polaroid"> | |
<div class="product-details pull-left"> | |
<h5>Galaxy S</h5> | |
<div class="product-rating"> | |
<i class="icon-star"></i> | |
<i class="icon-star"></i> | |
<i class="icon-star-empty"></i> |