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
#!/bin/bash | |
export COLOR_CONTEXT=$GREEN | |
export COLOR_PROJECT=$RED | |
export COLOR_DATE=$LIGHT_GREEN | |
# Force gawk to behave posixly. Comment out if you get an error about | |
# no such option -W. | |
# AWK_OPTIONS="-W posix" | |
if [ "$TODOTXT_PLAIN" -eq "0" ]; then | |
awk $AWK_OPTIONS ' | |
function highlight(colorVar, color) { |
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
#!/bin/bash | |
COLOR_CONTEXT=$GREEN | |
COLOR_PROJECT=$RED | |
COLOR_DATE=$LIGHT_GREEN | |
# Force gawk to behave posixly. Comment out if you get an error about | |
# no such option -W. | |
# AWK_OPTIONS="-W posix" | |
if [ "$TODOTXT_PLAIN" -eq "0" ]; then | |
awk $AWK_OPTIONS " | |
{ color = \"$DEFAULT\" } |
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
2010-11-16 15:24:33 | 3.27 MB | ginatrapani | CrawlerTwitterAPIAccessorOAuth:Errors to tolerate: 10 | |
2010-11-16 15:24:36 | 3.91 MB | ginatrapani | CrawlerTwitterAPIAccessorOAuth:API request: https://api.twitter.com/1/account/rate_limit_status.xml | |
2010-11-16 15:24:36 | 3.91 MB | ginatrapani | CrawlerTwitterAPIAccessorOAuth:Parsing XML data from https://api.twitter.com/1/account/rate_limit_status.xml | |
2010-11-16 15:24:36 | 3.91 MB | ginatrapani | CrawlerTwitterAPIAccessorOAuth:45 of 350 API calls left this hour; 7 for crawler until 15:43:11 | |
2010-11-16 15:24:36 | 3.91 MB | ginatrapani | TwitterCrawler:***in fetchInstanceUserTweets | |
2010-11-16 15:24:37 | 3.91 MB | ginatrapani | CrawlerTwitterAPIAccessorOAuth:API request: https://api.twitter.com/1/users/show/ginatrapani.xml | |
2010-11-16 15:24:37 | 3.91 MB | ginatrapani | CrawlerTwitterAPIAccessorOAuth:44 of 350 API calls left this hour; 6 for crawler until 15:43:11 | |
2010-11-16 15:24:37 | 3.97 MB | ginatrapani | UserMySQLDAO:User ginatrapani updated in system. | |
2010-11-1 |
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
CREATE TABLE tu_posts_tmp ( post_id bigint(11) NOT NULL ); | |
INSERT INTO tu_posts_tmp | |
SELECT p.post_id FROM tu_posts p | |
INNER JOIN tu_posts p1 ON p.in_reply_to_post_id = p1.post_id | |
WHERE p.network = 'facebook' AND p1.network='facebook page'; | |
UPDATE tu_posts, tu_posts_tmp | |
SET network = 'facebook page' |
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
/** | |
* LICENSE: | |
* | |
* This file is part of ThinkUp. | |
* | |
* ThinkUp is free software: you can redistribute it and/or modify it under the terms of the GNU General Public | |
* License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any | |
* later version. | |
* | |
* ThinkUp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
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 | |
header( 'Location: http://localhost/thinkup/plugins/twitter/auth.php?oauth_token='.$_GET['oauth_token'] ) ; | |
// Assumes http://localhost/thinkup is the URL to access ThinkUp on your local server. | |
?> | |
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
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' | |
'DESCRIPTION: This script will clean up any files that have a last modified | |
' date greater than or equal to the number specified. | |
'CREATED BY: Brian Plexico - microISV.com | |
'MODIFIED BY: Gina Trapani ([email protected]) | |
'CREATE DATE: 07/19/2005 | |
'UPDATED: 08/10/2007 | |
' | |
'INSTRUCTIONS: 1. Enter the path to the directory you'd like to clean on line 28. | |
' Make sure to only change the text that currently reads: |
NewerOlder