mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
update tweets
This commit is contained in:
parent
03fd061411
commit
e9490d49ee
143 changed files with 90147 additions and 40411 deletions
17
public/tweets/README.txt
Executable file
17
public/tweets/README.txt
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
# How to use your Twitter archive
|
||||
|
||||
The simplest way to use your Twitter archive is through the archive browser interface provided in this file. Just double-click `index.html` from the root folder and you can browse your entire history of Tweets from inside your browser.
|
||||
|
||||
---
|
||||
|
||||
In the `data` folder, your Twitter archive is present in two formats: JSON and CSV exports by month and year.
|
||||
|
||||
* CSV is a generic format that can be imported into many data tools, spreadsheet applications, or consumed simply using a programming language.
|
||||
|
||||
## JSON for Developers
|
||||
|
||||
* The JSON export contains a full representation of your Tweets as returned by v1.1 of the Twitter API. See https://dev.twitter.com/docs/api/1.1 for more information.
|
||||
* The JSON export is also used to power the archive browser interface (index.html).
|
||||
* To consume the export in a generic JSON parser in any language, strip the first and last lines of each file.
|
||||
|
||||
To provide feedback, ask questions, or share ideas with other Twitter developers, join the discussion forums on https://dev.twitter.com.
|
||||
1
public/tweets/css/application.min.css
vendored
Executable file
1
public/tweets/css/application.min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
|
|
@ -1,449 +0,0 @@
|
|||
@font-face {
|
||||
font-family: 'simplebird';
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
src: url("../fonts/simplebird.eot");
|
||||
src: url("../fonts/simplebird.eot?#iefix") format("embedded-opentype"), url("../fonts/simplebird.woff") format("woff"), url("../fonts/simplebird.ttf") format("truetype"), url("../fonts/simplebird.svg#simplebird") format("svg");
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 10px;
|
||||
font-family: "Helvetica Neue", Helvetica, sans-serif;
|
||||
background: #eaeaea;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
font-size: 1rem;
|
||||
font-weight: normal;
|
||||
text-rendering: optimizelegibility;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul, dl {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #25b2e6;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.atname {
|
||||
text-decoration: none;
|
||||
}
|
||||
.atname:before {
|
||||
content: '@';
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
[data-icon] {
|
||||
font-family: 'simplebird';
|
||||
content: attr(data-icon);
|
||||
speak: none;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
header {
|
||||
background: #2c2c2c;
|
||||
background: -webkit-linear-gradient(top, #333333 0%, #1e1e1e 100%);
|
||||
/* Webkit */
|
||||
background: linear-gradient(to bottom, #333333 0%, #1e1e1e 100%);
|
||||
/* W3C */
|
||||
color: #fff;
|
||||
padding: 1rem 0;
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
header hgroup {
|
||||
max-width: 560px;
|
||||
min-width: 320px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
@media screen and (max-width: 600px) {
|
||||
header hgroup > *:first-child {
|
||||
margin-left: 10px;
|
||||
}
|
||||
header hgroup > *:last-child {
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
header a {
|
||||
font-size: 2em;
|
||||
font-weight: 200;
|
||||
color: #fff;
|
||||
}
|
||||
header a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
header .newtweet {
|
||||
background: #3476b3;
|
||||
background: -webkit-linear-gradient(top, #7db7e9 0%, #3476b3 100%);
|
||||
/* Webkit */
|
||||
background: linear-gradient(to bottom, #7db7e9 0%, #3476b3 100%);
|
||||
/* W3C */
|
||||
padding: 0.5em 0.6em;
|
||||
font-size: 1.5em;
|
||||
border-radius: .25em;
|
||||
box-shadow: 0 1px 1px #1e1e1e, inset 0 1px 1px rgba(255, 255, 255, 0.3);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: -0.3rem;
|
||||
}
|
||||
|
||||
#main {
|
||||
background: #fff;
|
||||
border-radius: .5em;
|
||||
border: 1px solid #dddddd;
|
||||
margin: 3rem auto;
|
||||
font-size: 1.5rem;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
max-width: 560px;
|
||||
min-width: 320px;
|
||||
}
|
||||
@media screen and (max-width: 600px) {
|
||||
#main {
|
||||
border-width: 1px 0;
|
||||
border-radius: 0;
|
||||
max-width: 100%;
|
||||
margin: 1em 0 1em;
|
||||
}
|
||||
}
|
||||
|
||||
nav {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
padding: 1.5rem 20px;
|
||||
border-bottom: 1px solid lightgrey;
|
||||
background: #fff;
|
||||
border-top-left-radius: .5em;
|
||||
border-top-right-radius: .5em;
|
||||
-webkit-transform: translateZ(0);
|
||||
-webkit-transition: box-shadow 0.3s ease;
|
||||
-moz-transition: box-shadow 0.3s ease;
|
||||
-ms-transition: box-shadow 0.3s ease;
|
||||
-o-transition: box-shadow 0.3s ease;
|
||||
transition: box-shadow 0.3s ease;
|
||||
}
|
||||
nav button {
|
||||
background: #e2e2e2;
|
||||
border: 1px solid lightgrey;
|
||||
border-radius: 10em;
|
||||
color: #fff;
|
||||
font-size: 1.5em;
|
||||
padding: 0.1em;
|
||||
position: absolute;
|
||||
top: 1.5rem;
|
||||
z-index: 1;
|
||||
cursor: pointer;
|
||||
}
|
||||
nav button#prev {
|
||||
left: 20px;
|
||||
}
|
||||
@media screen and (max-width: 600px) {
|
||||
nav button#prev {
|
||||
left: 10px;
|
||||
}
|
||||
}
|
||||
nav button#next {
|
||||
right: 20px;
|
||||
text-indent: 0.1em;
|
||||
padding-right: 0;
|
||||
}
|
||||
@media screen and (max-width: 600px) {
|
||||
nav button#next {
|
||||
right: 10px;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 430px) {
|
||||
nav button {
|
||||
font-size: 1em;
|
||||
}
|
||||
}
|
||||
nav dt {
|
||||
text-align: center;
|
||||
font-size: 2em;
|
||||
font-weight: 600;
|
||||
line-height: 1em;
|
||||
position: relative;
|
||||
top: 0.1em;
|
||||
}
|
||||
@media screen and (max-width: 430px) {
|
||||
nav dt {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
}
|
||||
nav dt em {
|
||||
font-size: 2rem;
|
||||
font-weight: 200;
|
||||
font-style: normal;
|
||||
color: #aaa;
|
||||
}
|
||||
@media screen and (max-width: 430px) {
|
||||
nav dt em {
|
||||
font-size: 0.7em;
|
||||
}
|
||||
}
|
||||
nav #toggle_history {
|
||||
position: absolute;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
left: 50%;
|
||||
bottom: -15px;
|
||||
margin-left: -15px;
|
||||
z-index: 2;
|
||||
font-family: "simplebird";
|
||||
font-size: 1.4em;
|
||||
text-align: center;
|
||||
color: #a4a4a4;
|
||||
line-height: 1.4em;
|
||||
background: #fff;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
nav #toggle_history:hover {
|
||||
color: #666;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 20px;
|
||||
background: #fff;
|
||||
border-bottom-left-radius: .5em;
|
||||
border-bottom-right-radius: .5em;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
-webkit-transition: -webkit-transform 0.3s ease;
|
||||
-moz-transition: -webkit-transform 0.3s ease;
|
||||
-ms-transition: -webkit-transform 0.3s ease;
|
||||
-o-transition: -webkit-transform 0.3s ease;
|
||||
transition: -webkit-transform 0.3s ease;
|
||||
-webkit-transform: translateZ(0);
|
||||
}
|
||||
@media screen and (max-width: 600px) {
|
||||
section {
|
||||
padding: 20px 10px;
|
||||
}
|
||||
}
|
||||
section .tweet {
|
||||
display: table;
|
||||
padding-bottom: 1em;
|
||||
margin-bottom: 1em;
|
||||
border-bottom: 1px solid #efefef;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
section .tweet:last-child {
|
||||
margin-bottom: 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
section .tweet .avatar {
|
||||
border-radius: 0.5rem;
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
margin-right: 10px;
|
||||
}
|
||||
@media screen and (max-width: 600px) {
|
||||
section .tweet .avatar {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
section .tweet .tweet_body {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 100%;
|
||||
}
|
||||
section .tweet .tweet_info {
|
||||
display: table;
|
||||
width: 100%;
|
||||
line-height: 1em;
|
||||
}
|
||||
section .tweet .user {
|
||||
display: table-cell;
|
||||
}
|
||||
section .tweet .user a {
|
||||
color: #222;
|
||||
font-weight: 500;
|
||||
}
|
||||
section .tweet .user a span {
|
||||
color: #aaa;
|
||||
font-weight: 200;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
section .tweet .user a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
section .tweet .user a:hover span {
|
||||
text-decoration: underline;
|
||||
}
|
||||
section .tweet a.permalink {
|
||||
display: table-cell;
|
||||
text-align: right;
|
||||
font-size: 0.8em;
|
||||
font-weight: 500;
|
||||
color: #222;
|
||||
}
|
||||
section .tweet .content {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
section .tweet .retweeted {
|
||||
font-size: 0.8em;
|
||||
font-weight: 200;
|
||||
margin-top: -0.25em;
|
||||
}
|
||||
section .tweet .retweeted, section .tweet .retweeted a {
|
||||
color: #aaa;
|
||||
}
|
||||
section .tweet .retweeted:before {
|
||||
content: "\e001";
|
||||
font-family: 'simplebird';
|
||||
font-size: 1.2em;
|
||||
position: relative;
|
||||
top: 0.15em;
|
||||
margin-right: 0.2em;
|
||||
}
|
||||
section .tweet .tweet_footer {
|
||||
margin-top: 0.5em;
|
||||
display: table;
|
||||
width: 100%;
|
||||
}
|
||||
section .tweet .tweet_footer > * {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
}
|
||||
section .tweet .metadata {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
section .tweet .metadata, section .tweet .metadata a {
|
||||
font-size: 1.3rem;
|
||||
color: #333;
|
||||
}
|
||||
section .tweet .metadata a {
|
||||
font-weight: 500;
|
||||
}
|
||||
section .tweet .metadata .replyto {
|
||||
font-weight: 400;
|
||||
}
|
||||
section .tweet .metadata .replyto span {
|
||||
font-weight: 500;
|
||||
}
|
||||
section .tweet .tweet_actions {
|
||||
font-family: simplebird;
|
||||
font-size: 1.2em;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
top: -0.1em;
|
||||
}
|
||||
section .tweet .tweet_actions a {
|
||||
color: #aaa;
|
||||
margin-left: 0.4em;
|
||||
}
|
||||
section .tweet .tweet_actions a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#tweet_history {
|
||||
position: absolute;
|
||||
padding: 20px;
|
||||
background: #fff;
|
||||
max-height: 17em;
|
||||
overflow-y: auto;
|
||||
-webkit-transform: translateZ(0);
|
||||
}
|
||||
@media screen and (max-width: 430px) {
|
||||
#tweet_history {
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
#tweet_history, #tweet_history ol {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
#tweet_history h2 {
|
||||
color: #333;
|
||||
font-size: 1.2em;
|
||||
font-weight: 600;
|
||||
}
|
||||
#tweet_history .tweet_year {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
#tweet_history .tweet_year:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
#tweet_history .tweet_year:not(.active) {
|
||||
opacity: .5;
|
||||
}
|
||||
#tweet_history .tweet_year:not(.active):hover {
|
||||
opacity: 1;
|
||||
}
|
||||
#tweet_history .tweet_months {
|
||||
display: table;
|
||||
padding: 0;
|
||||
}
|
||||
#tweet_history .tweet_months .bar {
|
||||
display: table-cell;
|
||||
padding-right: 3px;
|
||||
}
|
||||
#tweet_history .tweet_months .bar a {
|
||||
display: block;
|
||||
background: #94ddf8;
|
||||
height: 2em;
|
||||
}
|
||||
#tweet_history .tweet_months .bar .count_bar {
|
||||
background: #f8f8f8;
|
||||
display: block;
|
||||
height: 2em;
|
||||
}
|
||||
#tweet_history .tweet_months .bar.active a {
|
||||
background: #25b2e6;
|
||||
}
|
||||
#tweet_history .tweet_months .bar.active .count_bar {
|
||||
background: #dddddd;
|
||||
}
|
||||
|
||||
.menu_open section {
|
||||
-webkit-transform: translateY(17em);
|
||||
border-top: 1px solid lightgrey;
|
||||
}
|
||||
.menu_open section, .menu_open nav {
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.menu_open #tweet_history {
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
font-size: 1.3em;
|
||||
color: #bbb;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
footer a {
|
||||
color: #bbb;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"29608381","","","","","2007-04-16 06:52:21 +0000","web","About to go to sleep. Exciting first post no?!"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,10 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"125568372","","","","","2007-06-29 02:46:51 +0000","web","Reading too much into http://tinyurl.com/yqnaom"
|
||||
"121900592","","","","","2007-06-26 20:22:18 +0000","web","grep searching in emacs, it's like compiling and then jumping to each error except you jump to each match output from grep."
|
||||
"116443452","","","","","2007-06-22 22:29:48 +0000","web","Wishing I could define rules for rendering views in Rails!"
|
||||
"112606532","","","","","2007-06-20 07:48:09 +0000","web","Starting to like emacs quite a bit."
|
||||
"106911972","","","","","2007-06-16 07:52:55 +0000","web","Understanding Haskell more every day. I added float support to my Scheme after hours of reading, trial & error, and help from allbery_b."
|
||||
"103992812","","","","","2007-06-14 08:25:09 +0000","web","Late night hacking on my scheme interpreter in Haskell. Yummy!"
|
||||
"100078892","","","","","2007-06-11 17:04:50 +0000","web","Creeped out by the facts of Nina Reiser's murder. The trial starts today. http://tinyurl.com/2rnjqh"
|
||||
"99026442","","","","","2007-06-11 00:42:34 +0000","web","enjoying test/spec on rails"
|
||||
"88709672","","","","","2007-06-03 01:47:52 +0000","<a href=""http://twitter.com/devices"" rel=""nofollow"">txt</a>","Just moved into my new place, watching hockey!"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,2 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"282196192","280720262","894911","","","2007-09-20 18:46:09 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","@JimRoepcke Once I used vi on my workstation at home from my PDA, via ssh, while on the ferry. The terse commands rule for small keyboa ..."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,2 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"308350462","","","","","2007-10-03 01:23:23 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Pondering uses for JSONrequest. Doing some Rails stuff..."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,2 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"566320412","","","","","2008-01-05 21:14:34 +0000","web","Sending out positive thoughts to our boys in the World Juniors! You've got this one!"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,3 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"4492249713","","","","","2009-09-30 07:32:02 +0000","<a href=""http://twitpic.com/"" rel=""nofollow"">TwitPic</a>","http://twitpic.com/jp34x - That's a comfy puppy"
|
||||
"4404520862","","","","","2009-09-26 23:26:07 +0000","<a href=""http://twitpic.com/"" rel=""nofollow"">TwitPic</a>","http://twitpic.com/ja11r - Hatley Castle"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,12 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"5221873767","","","","","2009-10-28 04:02:47 +0000","web","Seashore is somewhat unstable though, puts a damper on things. We'll see how it goes. I heartily enjoy the 2 second startup."
|
||||
"5220494863","","","","","2009-10-28 02:58:19 +0000","web","Seashore is the GIMP for OS X, sans X11, Glib, Gtk+. Beautiful! 8.8mb vs 270mb. http://seashore.sourceforge.net/index.php"
|
||||
"5049167584","","","","","2009-10-21 18:23:08 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","PC I built last year is Core2Quad LGA775 => no upgrade path (I knew this). #AMD still pushing CPUs compatible w/ AM2. http://bit.ly/2CVihn"
|
||||
"5004305660","","","","","2009-10-19 23:50:55 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Fall colours. http://bit.ly/aq2nh http://yfrog.com/0b9g8fj"
|
||||
"4919229991","4906986970","894911","","","2009-10-16 16:11:29 +0000","web","@JimRoepcke No lists yet for me either. I don't twitter enough to really need them though."
|
||||
"4880997373","","","","","2009-10-15 04:12:02 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Found this little guy at witty beach in the forest. He's really skinny and ate a ton. Hope he's not claimed. :) http://yfrog.com/76kruj"
|
||||
"4880878300","4877166818","894911","","","2009-10-15 04:05:42 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke still in vic! Well colwood anyway, near Esquimalt lagoon."
|
||||
"4877094591","4876200327","894911","","","2009-10-15 01:08:27 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke shame! Every solution seems like a hack."
|
||||
"4874316124","","","","","2009-10-14 23:05:50 +0000","web","Cocoa Touch and XCode 3.1 are quite nice, but why oh why can't I associate an NSNumberFormatter with a UITextField? Am I missing something?"
|
||||
"4764457305","","","","","2009-10-10 17:16:51 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","1GHz x86 Device-on-Chip, AA battery option, 1024x600 8.9"", fully upgradeable from CPU and RAM to internal modules. WANT http://bit.ly/xe7qm"
|
||||
"4723710449","","","","","2009-10-09 01:58:48 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Wrong road down to the beach! http://twitpic.com/ks8wz"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,43 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"6187652541","","","","","2009-11-30 02:03:07 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Oldies but goodies. 50% OC on a ""Yorkfield"" Core 2 Quad: http://bit.ly/4vfLVO and 42% on a ""Wolfdale"" Core 2 Duo: http://bit.ly/77IqnN"
|
||||
"6182566535","","","","","2009-11-29 22:50:20 +0000","web","Hope I find some time to look at #Node.js http://nodejs.org"
|
||||
"6178054881","","","","","2009-11-29 19:54:01 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I cannot fathom how they could not have seen that Dubai is and was a huge bubble for ~10 years now. Uncanny. http://bit.ly/5j1en0"
|
||||
"6088139103","","","6084646173","1235521","2009-11-26 18:05:46 +0000","web","RT @timbray: Dear America: Happy Thanksgiving & bon appetit. Meanwhile, we're enjoying a quietly productive day at work. - The World"
|
||||
"6055594178","","","","","2009-11-25 17:30:40 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","#Android and #iPhone apparently in a two-horse race for mobile systems: http://is.gd/53vXp"
|
||||
"6015820098","","","","","2009-11-24 18:52:38 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Annoyed at sed's -i option always swallowing -e after it, silently creating a mess of backup files I didn't want. My fault but annoying!"
|
||||
"5990838796","","","","","2009-11-23 23:10:34 +0000","web","#notjustme #dropbox #sync #fail"
|
||||
"5982743197","5982310941","33858688","","","2009-11-23 17:54:20 +0000","web","@ehoppe I was just thinking about how much longer it takes to sync many small files than one larger file, we should zip most things #dropbox"
|
||||
"5937405527","5937203718","14273142","","","2009-11-22 04:11:18 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko the url bar gets be too. i much prefer chrome and firefox behaviour, not http://ha%20ha%20you%20suck or some nonsense #safari"
|
||||
"5937350356","5937203718","14273142","","","2009-11-22 04:08:39 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko that's funny! I probably look at your place all the time."
|
||||
"5936800941","5935568982","14273142","","","2009-11-22 03:42:54 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko picture from here: http://bit.ly/8xzRVQ ... my house: http://bit.ly/6Psa5v"
|
||||
"5936722272","5935554718","14273142","","","2009-11-22 03:39:14 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko it's the corner of lagoon rd and heatherbell in colwood by esquimalt lagoon. what's wrong with safari? i use chrome everywhere."
|
||||
"5934722777","5934135024","14273142","","","2009-11-22 02:08:23 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko nice shot! it was a gorgeous day, and we needed it too."
|
||||
"5918258896","","","","","2009-11-21 13:23:18 +0000","web","Been up hacking on mojo.el. No more switching to a shell to package/install/launch apps, just hit F5. #webOS #emacs http://is.gd/50l5y"
|
||||
"5914321394","","","5907000124","817328","2009-11-21 08:13:47 +0000","web","RT @jonnay: Your momma is so fat, when you invoke her continuation, you blow the stack and the heap. #schemeinsults"
|
||||
"5908258481","","","","","2009-11-21 02:33:36 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Burnt out trying to debug a #webos back event propagation conundrum. The commander chain is broken or I'm fucking insane."
|
||||
"5908223784","","","","","2009-11-21 02:32:07 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","RT @avibryant: RT @MagLev: MagLev public Alpha is available: http://bit.ly/7jyman"
|
||||
"5899812233","","","","","2009-11-20 20:42:33 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","At least #Dropbox can make me smile while it's being extremely slow and annoying: http://twitpic.com/q9lu0"
|
||||
"5897714892","","","","","2009-11-20 19:15:31 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","The commute can be annoying but damn this is a nice place to live. http://yfrog.com/37j0pj"
|
||||
"5885019444","","","","","2009-11-20 09:36:06 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I had a bit of a chuckle at their message to remove ads for $3/mo ... http://twitpic.com/q7mov #flashblock rocks."
|
||||
"5884979737","5884601643","33858688","","","2009-11-20 09:33:05 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@ehoppe #Grooveshark is pretty sweet! They have a pretty good Radio feature, like iTunes' genius. Good so far anyway."
|
||||
"5881979750","","","5879970896","33423","2009-11-20 06:02:49 +0000","web","RT @gruber: The torrent linked here worked for me. There's really not much to see. It's like Chrome for Windows without Windows. http:// ..."
|
||||
"5881949774","","33858688","","","2009-11-20 06:01:07 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@ehoppe remind me tomorrow. i need to punch a hole in the router so i can vnc and ssh to my hackintosh."
|
||||
"5881610472","","","","","2009-11-20 05:41:37 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","% ldd libflashplayer.so | grep X11 #=> libX11.so.6 ... so how does Google do Flash on #ChromiumOS? iirc they don't use X11."
|
||||
"5879408208","","","","","2009-11-20 03:55:34 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Downloading from #dropbox at between 500kB/s and 1MB/s ... that's more like it! http://twitpic.com/q6rhi"
|
||||
"5860762799","5847707247","33858688","","","2009-11-19 15:55:18 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@ehoppe wow the telcos sound like bunch of kids in a schoolyard! ""No *my* network is faster!"""
|
||||
"5847651914","","","","","2009-11-19 03:39:03 +0000","web","My name has been made of Might! What will thy name become? http://makememighty.ca/?n=785eaa80 #makememighty"
|
||||
"5847214535","","","5845868189","34582340","2009-11-19 03:21:18 +0000","web","RT @appiphany: There is an app for that - #iPhone app that blows air with the speaker http://bit.ly/4A615o"
|
||||
"5847202671","","","5845019882","16748247","2009-11-19 03:20:50 +0000","web","RT @sigfpe: You won't often see me post on how to build an e-commerce site: ""How not to sort by average rating"" http://tinyurl.com/djzhvz"
|
||||
"5821437916","","","","","2009-11-18 08:18:37 +0000","web","Impressed by Komodo Edit + webOS plugin for Mojo devel. Faster than Eclipse on my aging 2006 MacBook. Probably end up using Emacs anyhow."
|
||||
"5817440260","","","","","2009-11-18 04:12:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","http://twitpic.com/py7ir 20kB/s ... really dropbox? i've got 25mbit down ffs."
|
||||
"5817384120","","","","","2009-11-18 04:09:37 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","2010 is The Year of the Linux Desktop! :p Cool news though. Maybe a reason to try e17 again. http://bit.ly/1Q4JiV"
|
||||
"5725976243","","","","","2009-11-15 02:50:42 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Just saw A Christmas Carol in 3D. It was amazing! #Christmas"
|
||||
"5714651535","","","","","2009-11-14 18:16:32 +0000","<a href=""http://wave-samples-gallery.appspot.com/"" rel=""nofollow"">Google Wave (Tweety)</a>","Just got my invite to #googlewave ... this tweet is from wave."
|
||||
"5672895159","","","","","2009-11-13 06:14:17 +0000","web","iPhone or Droid? http://xkcd.com/662/ #droid #iphone"
|
||||
"5664389682","5664275479","59263461","","","2009-11-13 00:06:37 +0000","web","@Rod_Phillips I'm interested in a 6 pack of Red Racer ... Douglas location."
|
||||
"5549833787","5542774732","894911","","","2009-11-09 03:41:00 +0000","web","@JimRoepcke We watched it last night and thought it was one of the better movies to come out recently. It was pretty funny!"
|
||||
"5443094952","","","","","2009-11-05 05:56:00 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","cat >~/bin/drop
|
||||
#!/bin/sh
|
||||
[[ x""$1"" = x ]] && cp -R . ~/Dropbox/${PWD##*/} || cp -R ""$@"" ~/Dropbox/"
|
||||
"5409255966","5404568644","1235521","","","2009-11-04 02:18:03 +0000","web","@timbray Some of my Scotland photos: http://picasaweb.google.com/sami.samhuri/Scotland2009"
|
||||
"5343769815","","","","","2009-11-01 19:16:45 +0000","web","I just ditched Vista for Snow Leopard on my Core 2 Quad. First desktop Mac since my G4 Mini. Couldn't be happier! 2006 MacBook getting old."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,52 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"7256201910","","","","","2010-01-01 02:39:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","http://club1994.com The 90s are the new 80s. That's weird."
|
||||
"7255400937","","","","","2010-01-01 02:06:30 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","So jealous! I have to listen to that soundtrack now. It's mostly brilliant. RT @defunkt: About to watch the Beatles LOVE show at the Mirage"
|
||||
"7255136818","","","","","2010-01-01 01:56:06 +0000","<a href=""http://www.grooveshark.com/"" rel=""nofollow"">Grooveshark</a>","""The streets don't change but maybe the names, I ain't got time for the game"" #nowplaying GNR Patience @Grooveshark: http://tinysong.com/hnd"
|
||||
"7251392567","","","","","2009-12-31 23:28:48 +0000","<a href=""http://www.grooveshark.com/"" rel=""nofollow"">Grooveshark</a>","discover old music you never knew the name or artist of! 6 Underground by Sneaker Pimps on @Grooveshark radio: http://tinysong.com/6T3w"
|
||||
"7250975614","","","7250391199","33423","2009-12-31 23:12:59 +0000","web","RT @gruber: Why you don?t award ?Headline of the Year? until the year is over:
|
||||
|
||||
Cops: Man Kills Dog, Streaks, Pours Coffee on Head
|
||||
http: ..."
|
||||
"7249767351","","","","","2009-12-31 22:27:59 +0000","web","The Dutch also compound words but I have a harder time inferring their meanings. e.g. the transport commission, GVB: Gemeentevervoerbedrijf"
|
||||
"7249448847","","","","","2009-12-31 22:16:27 +0000","web","Got to love those compound German words! Fairly easy to derive the meaning too. e.g. http://en.wikipedia.org/wiki/1._Unterseebootsflottille"
|
||||
"7249293494","","","","","2009-12-31 22:10:45 +0000","web","#10yearsago I was in Dubai attending ISC http://is.gd/5I4lM and neither nofxwiki.net nor no-eff-eks.com existed yet. http://is.gd/5I4D8"
|
||||
"7248721222","","","","","2009-12-31 21:49:15 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Hpricot doesn't always like XHTML. When Hpricot.scan calls downcase on some nil value retry with Hpricot.XML(<#io_object>) and it works!"
|
||||
"7248254803","","","","","2009-12-31 21:31:54 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","#10yearsago I was in Glasgow getting ready for the street party. It was pretty fucking amazing! At midnight everyone hugged each other."
|
||||
"7248203976","7248077125","894911","","","2009-12-31 21:30:05 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke heh, I remember wrestling with them at first! It definitely takes some getting used to, goes against instincts."
|
||||
"7216863595","7214243453","14273142","","","2009-12-31 01:49:31 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko Hope the new place is good. Have a safe trip!"
|
||||
"7216820686","","","","","2009-12-31 01:48:05 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Does this http://is.gd/5Hfd6 mean Yegge was right http://is.gd/5Hfd7 or that JS and Rb devs twitter too much? #code2009"
|
||||
"7216613261","","","","","2009-12-31 01:41:14 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","This looks fun ... #code2009 for me: Objective-C, JavaScript, x86 assembly, and as always Ruby and C."
|
||||
"7215542569","","","","","2009-12-31 01:05:10 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Looking into building Hpricot from scratch to try and debug Hpricot.scan without goto (it's calling downcase on nil somewhere)."
|
||||
"7210665847","","","","","2009-12-30 22:14:37 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","RT @defunkt: Male lions eat 15lbs of meat and sleep 18-20 hours a day."
|
||||
"7208339823","7207401832","53921137","","","2009-12-30 20:51:26 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@goodbyebuddy I can't get through, though this morning I got an error. Is the server just getting slammed right now?"
|
||||
"7202546456","7202401755","16748247","","","2009-12-30 17:34:43 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@sigfpe Another vote for git here. Git stays out of my way more than other VCSs."
|
||||
"7181981856","","","","","2009-12-30 03:00:23 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","It's strange *not* to like potatoes (french fries) w/ gravy. Stranger yet to recoil in horror when delicious cheese is added to the mix."
|
||||
"7176513014","","","7176327404","4641021","2009-12-29 23:54:32 +0000","web","RT @rww: Twitter 2.0: API Rate Change Could Lead to a World of New Apps & Features http://bit.ly/5xqIsv"
|
||||
"7140598388","","","","","2009-12-29 00:31:26 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Another beautiful Victoria sunset. All moved in. Pretty good day! http://yfrog.com/4euivtj"
|
||||
"7097258665","","","","","2009-12-27 18:54:57 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Listening to a little Less Than Jake to get going without any coffee."
|
||||
"7084172167","","","","","2009-12-27 07:13:24 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","All packed ready to move. Enjoying a few Granville Island beers."
|
||||
"7072928917","","","7064942445","21024740","2009-12-26 23:10:15 +0000","web","RT @dylanrhymes: Iphone??? FORGET IT! Here is the XPhone http://bit.ly/8k3zpq AMAZING! GOTTA GIVE IT TO THE GERMANS!!!!"
|
||||
"7065494889","","","","","2009-12-26 17:23:36 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Machine Translates Thoughts into Speech in Real Time (sub-50ms response): http://www.physorg.com/news180620740.html/r:t/"
|
||||
"7041954078","","","","","2009-12-25 21:04:16 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I'm starting to warm up to #grooveshark a little more. Starting to build a library."
|
||||
"7040858356","","","","","2009-12-25 20:10:19 +0000","web","a pastebin that can execute your code: http://ideone.com (from the folks that brought us SPOJ)"
|
||||
"7018869746","","","7008570092","678953","2009-12-25 02:06:42 +0000","web","RT @TUAW: Rumored tablet could include dynamic tactile surface http://bit.ly/4NVfmv [post]"
|
||||
"6970152381","","","","","2009-12-23 17:05:36 +0000","web","Avatar's science reviewed by an astrophysicist: http://www.aintitcool.com/node/43440"
|
||||
"6968371222","","","","","2009-12-23 16:04:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","RT @gruber: Danny DeVito reviews ""Avatar"": https://twitter.com/danny_devito/status/6955787503"
|
||||
"6955851047","","","","","2009-12-23 05:53:08 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","indeed http://ido.nu/kuma/2008/11/22/jscocoa-interactive-console-for-iphone/"
|
||||
"6955392645","6943353212","96409095","","","2009-12-23 05:32:55 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@zshtips two ways to dupe-and-append an arg in the current command: $(cp file.ext !#2.bak) and $(cp file.ext{,.bak})"
|
||||
"6902964015","","","","","2009-12-21 19:33:30 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Got a room near Quadra & Cook, the old neighbourhood. Stoked to be back in the city! Pretty nice house too."
|
||||
"6897126917","","","","","2009-12-21 16:03:12 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","Friendly: Easy Schemaless ?NoSQL? Data Storage with MySQL in Ruby http://tinyurl.com/yjhvnnw"
|
||||
"6885124149","","","","","2009-12-21 05:58:15 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","real web apps for #iPhone, actually pretty cool thanks to icons in springboard + html5. videos: http://is.gd/5vJYr ars: http://is.gd/5vJYq"
|
||||
"6877317634","","","","","2009-12-21 01:04:42 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Done migrating elisp.js to CommonJS and real modules. Now I can work on elisp.js itself again! but not this weekend :) http://is.gd/5vssw"
|
||||
"6822594363","6822318982","16748247","","","2009-12-19 06:38:09 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@sigfpe ctrl-[ is your friend"
|
||||
"6536215603","","","","","2009-12-10 16:36:22 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","In JavaScript null and undefined aren't objects ... Puts a damper on andand."
|
||||
"6535392640","","","","","2009-12-10 16:08:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I need to port #andand to #JavaScript. http://andand.rubyforge.org/ it's not much code but has anyone done it already?"
|
||||
"6525195705","","","","","2009-12-10 07:40:27 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","elisp.js was noticed by @jwz, the post tagged as mad science, perversions, religion .. sounds about right! :) http://is.gd/5hBkg"
|
||||
"6523751041","","","6523554390","33858688","2009-12-10 06:17:06 +0000","web","RT @ehoppe: Interdimensional portal above Norway : http://bit.ly/6eQKZa"
|
||||
"6522873265","","","","","2009-12-10 05:34:39 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","#AdMob released an SDK for #webOS last week http://is.gd/5hwhS"
|
||||
"6521411036","","","6521090995","54403950","2009-12-10 04:32:14 +0000","web","RT @Pre101: RT @rmxdave: RT @Phonedog_Noah: The Best: Why Palm's WebOS should rule - but doesn't http://bit.ly/8l2iIB (via @GobicoGames)"
|
||||
"6482146401","6478284057","14273142","","","2009-12-09 01:35:20 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko If it's not too late check out http://is.gd/5gqBU"
|
||||
"6469119192","","","","","2009-12-08 17:20:52 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","If the rain stays away I don't mind the cold that much really. It's nice when it's a bit brisk."
|
||||
"6451979179","","","","","2009-12-08 03:07:27 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","ars: Artists' lawsuit: major record labels are the real pirates http://tinyurl.com/y8spqph (about time!)"
|
||||
"6451807743","","","","","2009-12-08 03:01:28 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Looking for a room or apartment in Victoria this month. Lots of good places! Now to make some appointments to see them."
|
||||
"6293342093","","","","","2009-12-03 04:19:08 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","jailbroken 3.1.2 er, broke. shutdown from apple logo. back to 3.1. #iphone"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,127 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"8455530931","8452273743","636923","","","2010-01-31 15:34:47 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@siracusa BC used to have bags of milk too. I haven't seen them in several years now though. I like them because there are no crusties."
|
||||
"8444357816","","","","","2010-01-31 07:24:19 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Hung out with my sister longer than I expected. Fun though. Her husband's family is great."
|
||||
"8437149776","8435783293","33858688","","","2010-01-31 03:24:35 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","@ehoppe I was at the Douglas one. Thai green curry. So good!"
|
||||
"8434912022","","","","","2010-01-31 02:20:03 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Couldn't be more excited about Noodle Box right now. It's been too long! http://twitpic.com/10lyus"
|
||||
"8427035034","","","","","2010-01-30 22:15:12 +0000","<a href=""http://www.tweeteryapp.com/"" rel=""nofollow"">Tweetery</a>","Long line, but worth it for a nice double double from Timmy ho's on a rainy Saturday."
|
||||
"8373716974","8371375607","89704018","","","2010-01-29 16:20:52 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Evilman_ It will be fixed though! Hopefully this weekend. Thanks for sticking with us."
|
||||
"8373686297","8371375607","89704018","","","2010-01-29 16:20:07 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Evilman_ GS is delayed sometimes, and out of order. When scrobbleshark submits tracks it saves the last time, so tracks can be missed. :("
|
||||
"8371327017","8369784913","89704018","","","2010-01-29 15:19:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Evilman_ I haven't changed anything yet. When grooveshark feeds are lagging and out of order there's nothing I can do about it."
|
||||
"8345119830","","3806441","","","2010-01-29 00:22:48 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@grooveshark I never heard this cover of Black Hole Sun by Frampton before: http://tinysong.com/7evA ... awesome!"
|
||||
"8340003990","8338672114","14273142","","","2010-01-28 21:55:47 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko I just need a couple solid coding sessions, so maybe a week? I'll definitely take you up on the offer for help so maybe less."
|
||||
"8337948189","8337127429","14273142","","","2010-01-28 20:55:41 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko Scrobbling rocks! It's always fun to check out listening trends on last.fm and last graph."
|
||||
"8328636491","8328395828","14273142","","","2010-01-28 16:26:41 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko Most people getting Apple devices know the limitations. It's kind of a loophole imo. But my next device will run Android anyhow..."
|
||||
"8328108746","","","","","2010-01-28 16:12:07 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","People wishing for multitasking on iPhone and now iPad need to use more webapps. Safari is the best we have for the foreseeable future."
|
||||
"8328049019","","3806441","","","2010-01-28 16:10:27 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@grooveshark Don't want to bug you but I'm really excited about VIP... how's about it? :)"
|
||||
"8326596306","8320416343","89704018","","","2010-01-28 15:31:14 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Evilman_ Oh dear, I have to disable sign ups till I rewrite the backend. There's too much interest. Thanks for letting me know!"
|
||||
"8308267901","","","","","2010-01-28 03:50:45 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","agh, need to find some time for #scrobbleshark. tracks can be missed and it's annoying. have family visiting this weekend though."
|
||||
"8305904969","","","8303411333","16748247","2010-01-28 02:38:49 +0000","web","RT @sigfpe: ""I can't imagine why anyone would need X"" is a statement about your imagination, not X."
|
||||
"8293687489","8291188690","14273142","","","2010-01-27 20:46:52 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko From what I can see in the engadget photos there are at least some new things for popup windows and such. I'm after the simulator!"
|
||||
"8291013489","","","","","2010-01-27 19:33:26 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Ok the fun's over ... now where's the fucking SDK?!"
|
||||
"8285290988","","3806441","","","2010-01-27 16:39:52 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@grooveshark new version is snappier in general, but hijacks cmd-shift-t (undo close-tab) in firefox 3.6/os x 10.6."
|
||||
"8285089180","8284227910","14273142","","","2010-01-27 16:33:39 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko I didn't realize how awesome it was for a little while but I'm completely hooked now. I barely use iTunes anymore."
|
||||
"8285026676","8284365682","89704018","","","2010-01-27 16:31:44 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Evilman_ It should work unless JavaScript is disabled. What browser & version are you using? I'm at work but I'll try & fix it soon for ya!"
|
||||
"8282849475","","","","","2010-01-27 15:27:27 +0000","web","<3 the new @grooveshark so far! previous tracks can be restored. column browser for artist/album. and i thought i was in love before! ;-)"
|
||||
"8282793034","","","8282485260","678953","2010-01-27 15:25:50 +0000","web","RT @TUAW: The Onion: Frantic Steve Jobs Stays Up All Night... http://www.theonion.com/%63ontent/news_briefs/frantic_steve_jobs_stays_up"
|
||||
"8282119469","","","","","2010-01-27 15:06:23 +0000","<a href=""http://www.tweeteryapp.com/"" rel=""nofollow"">Tweetery</a>","Too dark to get up. wtf am I doing."
|
||||
"8269764295","","","","","2010-01-27 06:35:50 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","#grooveshark's maintenance message: http://twitpic.com/zyrx4 (somehow that never gets old for me)"
|
||||
"8269697142","","","","","2010-01-27 06:32:50 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","#scrobbleshark doesn't look like ass on my iphone anymore. yay!"
|
||||
"8261541943","8261216391","14206068","","","2010-01-27 02:17:48 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@tlrobinson Like chewing gum, perhaps it helps with concentration. Or maybe it's just the caffeine. I don't really know, but I do it too."
|
||||
"8252376329","","","8252066782","678953","2010-01-26 22:01:38 +0000","web","RT @TUAW: Tweetery is a new Twitter app for iPhone that's free all this week. http://www.tweeteryapp.com/ Check it out and let us know w ..."
|
||||
"8243648667","","","","","2010-01-26 17:39:51 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Hard not to smile when you see this on your iPod. http://yfrog.com/4ek1zp"
|
||||
"8238630886","","","","","2010-01-26 15:19:24 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Oldie but a goodie ... ""Success"" http://xkcd.com/349/"
|
||||
"8212705312","8211390280","3806441","","","2010-01-25 23:53:08 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Grooveshark Get Out by Bargain Music: http://tinysong.com/ah0q ... I like this one more than the original."
|
||||
"8211954127","","3806441","","","2010-01-25 23:31:24 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Grooveshark Not many know this is a cover but A Perfect Government by NOFX rocks: http://tinysong.com/98Ql orig. by Mark Curry, not on GS."
|
||||
"8211544976","8211138844","3806441","","","2010-01-25 23:19:30 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Grooveshark This one isn't for everyone but you might like Les Claypool's rendition of Shine on you Crazy Diamond: http://tinysong.com/7SCS"
|
||||
"8211067542","8210667506","3806441","","","2010-01-25 23:05:46 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Grooveshark Careful with questions like that, I could be sending you songs all afternoon! I also have a soft spot for good covers. :)"
|
||||
"8210954290","8210667506","3806441","","","2010-01-25 23:02:38 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Grooveshark The Pusher by Blind Melon: http://tinysong.com/7btg and War Pigs by CAKE: http://tinysong.com/71L0"
|
||||
"8206076585","8205848016","14273142","","","2010-01-25 20:41:54 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko ah ... best you forget my last tweet. i was confused about things this morning. :)"
|
||||
"8199295011","8173455076","14273142","","","2010-01-25 17:17:27 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","@lunafiko grooveshark is implementing scrobbling so it's probably just a stop-gap thing. Fun though! :)"
|
||||
"8198347703","","3806441","","","2010-01-25 16:50:35 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@grooveshark I'm samsonjs on grooveshark. Have more to talk to you guys about later but have to get to work. Thanks so much! You guys rock."
|
||||
"8165943951","","","","","2010-01-24 22:38:26 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Turned into a much more social weekend than I planned, but that's good because I was kind of a hermit last weekend. #scrobbleshark can wait."
|
||||
"8159159408","","","","","2010-01-24 19:11:27 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","#scrobbleshark is going under the knife today. i did not really expect more than 10 users at first. thanks for being patient!"
|
||||
"8128973723","","","","","2010-01-24 00:04:51 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","One more of Swan Lake. http://twitpic.com/zg2i9"
|
||||
"8126683760","","","","","2010-01-23 22:47:34 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","I love Victoria! In January. So awesome. http://twitpic.com/zfnez"
|
||||
"8122331566","8122155808","815869","","","2010-01-23 20:13:30 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@nocas Thanks for pointing out the bug! I feel silly for not testing it w/ utf8. Typical english speaker. ;-)"
|
||||
"8121179965","8120731163","815869","","","2010-01-23 19:33:52 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@nocas Every 10 minutes. Grooveshark updates their feed every 10 minutes too, so I based it on that. Thanks for trying it out!"
|
||||
"8120446123","8112208420","18165558","","","2010-01-23 19:08:46 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@XIPRELAY I'm glad you like scrobbleshark. Thanks for trying it! Good idea w/ the links, I'll add them now."
|
||||
"8106749405","8106515324","15109262","","","2010-01-23 10:13:50 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@freemanfx is your grooveshark username freemanfx? if so your feed seems to work for me: http://is.gd/6Rv4q let me know if it's different."
|
||||
"8105892353","8095460199","9511932","","","2010-01-23 09:23:58 +0000","web","@loritodd Even easier scrobbling for Grooveshark, web-based: http://scrobbleshark.appspot.com let me know what you think if you try it!"
|
||||
"8105446782","","","","","2010-01-23 08:59:00 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","http://samisamhuri.blogspot.com/2010/01/scrobbleshark-is-alive.html ... and hungry for beta testers! <3 @lastfm and @grooveshark"
|
||||
"8098685170","","","8098350229","13217612","2010-01-23 04:11:10 +0000","web","RT @chuq: make sure you watch this: http://radar.oreilly.com/2010/01/iphoning-his-way-to-retirement.html"
|
||||
"8096170681","","","","","2010-01-23 02:55:16 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Got a reply from last.fm! Looks like there might be some python web dev in the cards this weekend. #doubleplusgood"
|
||||
"8095081962","","3806441","","","2010-01-23 02:26:50 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@grooveshark Can I mail a cheque for VIP? Paypal won't let me pay w/ a canuck bank acct. No credit card, nor do I want one. <3 the shark!"
|
||||
"8094996056","","3806441","","","2010-01-23 02:24:26 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@grooveshark is there any way we could get track lengths in the rss feed for listens? that would be most excellent!"
|
||||
"8091242845","","","","","2010-01-23 00:38:30 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I can control @grooveshark with my iPhone thanks to @dascgo's fremote. shark tab must be selected, but still awesome. http://bit.ly/56BLdL"
|
||||
"8090985671","8086885309","15686746","","","2010-01-23 00:30:41 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@dascgo It works wonderfully! I had to install mysql-python and create the fremote_development db to get start.py working."
|
||||
"8086608269","8086522556","15686746","","","2010-01-22 22:15:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@dascgo thank you! i'm *really* excited about this. literally been on the edge of my seat."
|
||||
"8086023239","","","","","2010-01-22 21:57:26 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","firefox 3.6 opens new tabs directly to the right of the current tab. i got really used to that in chrome, glad firefox changed it."
|
||||
"8078847965","8078386295","14273142","","","2010-01-22 18:12:55 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko Sounds a lot better than of these: http://www.officepod.co.uk/ Hope you enjoy the extra room."
|
||||
"8046557493","","","","","2010-01-21 23:38:12 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","between activitymonitord and #dropbox my (normally snappy) Core2Quad is sluggish. ugh. wishing for an SSD, might help."
|
||||
"8037306566","8036429743","16748247","","","2010-01-21 18:50:10 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@sigfpe I haven't visited Japan yet, but that sounds quite nice if you have a long commute."
|
||||
"8034902527","8034154724","16748247","","","2010-01-21 17:34:00 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@sigfpe I think it's a N.A. thing. It's as if we think our voice has to reach the other party unassisted by the cellular technology."
|
||||
"8019300303","","","","","2010-01-21 07:27:55 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Note to self: don't write 4 bytes to memory if you only want to write 2 bytes."
|
||||
"8017047924","8016852380","894911","","","2010-01-21 05:45:08 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke I agree it is pretty unpleasant. I think I've lost one that way, couldn't get it out."
|
||||
"8002830057","","","8002023400","13192","2010-01-20 22:40:26 +0000","web","RT @avibryant: Beatles fans have to listen to this, right now: http://waxy.org/2009/10/audio_analysis_of_the_beatles_multitrack_masters/"
|
||||
"7995339328","","","","","2010-01-20 18:44:47 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Don't put more than 27 or 28 sections in a table view if you have a section index, every other index title turns into a bullet. #iphone"
|
||||
"7994232609","","","","","2010-01-20 18:08:35 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Oh how I've wished for this! RT @raganwald: Hammertime is an interactive error console for Ruby: http://bit.ly/4suW1d"
|
||||
"7979184760","","","","","2010-01-20 07:30:18 +0000","web","if you read this please block http://twitter.com/the_arbitrator for spam."
|
||||
"7979009447","","","","","2010-01-20 07:21:03 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Compiling usable Mach object files of arbitrary size! Pretty exciting to see those tests pass for the first time."
|
||||
"7972288052","","","","","2010-01-20 03:20:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Oh dear. The Smart Crash Reports installer, er, crashed. #deliciousirony"
|
||||
"7915270793","7914960717","1341781","","","2010-01-18 19:30:34 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@gilesgoatboy +1 for pixelmator, never tried acorn though"
|
||||
"7907986046","","","7907842547","678953","2010-01-18 15:46:50 +0000","web","RT @TUAW: It appears that iTunes Connect (dev's door into App Store) is currently down. We'll update when it's back up."
|
||||
"7893719461","","","","","2010-01-18 05:42:35 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Done reading and writing about Mach-O for today. I'm starting to go cross-eyed."
|
||||
"7893652393","","","","","2010-01-18 05:39:59 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","For once I'm actually a bit sad I'm not still in Ontario."
|
||||
"7893631081","","","","","2010-01-18 05:39:10 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","RT @igrigorik: ha! nothing like a RESTful API for your local liquor store (LCBO): http://bit.ly/6ye3nn (for canucks, at least..) :-)"
|
||||
"7885033611","","","","","2010-01-18 01:22:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I feel stupid for spending all afternoon trying to do something that seemed so wrong. Should have re-read the ABI after an 8 month hiatus."
|
||||
"7884830671","","","","","2010-01-18 01:16:23 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Aha! Learning about some useful bits in Mach-O load commands. I need read about reloff and nreloc in the ABI docs. Thanks nasm!"
|
||||
"7879453024","","33858688","","","2010-01-17 22:33:52 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","@ehoppe walking by #shawcable. Should I throw something at them for you? ;-)"
|
||||
"7872667977","","","","","2010-01-17 18:57:15 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Breakfast of champions. Protein. That is all. http://twitpic.com/yj4mq"
|
||||
"7844208958","","","","","2010-01-17 00:01:50 +0000","web","Closer to compiling programs with __TEXT segments larger than 4096 bytes. Fun to get back into some code I hadn't worked on for 8 months."
|
||||
"7797728511","7797227194","1235521","","","2010-01-15 18:53:28 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@timbray In my experience w/ 25M from Telus, mostly just the big CDNs. It's sure nice when there's a new version of Xcode though."
|
||||
"7792286723","7777555207","14273142","","","2010-01-15 16:05:47 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","@lunafiko celery looks quite slick! Let us know how it goes."
|
||||
"7772080265","","","","","2010-01-15 02:37:13 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","well well well. i was going to work on my compiler (in ruby) but it looks like tonight is a poker night!"
|
||||
"7755604429","","","","","2010-01-14 17:50:36 +0000","web","http://firstpersontetris.com/ makes me a bit dizzy but is pretty awesome"
|
||||
"7720988830","","","","","2010-01-13 20:34:53 +0000","<a href=""http://www.grooveshark.com/"" rel=""nofollow"">Grooveshark</a>","listening to Eminence Front [Live] by The Who on @Grooveshark: http://tinysong.com/7nGc #greatmusic"
|
||||
"7715529728","","","","","2010-01-13 17:32:38 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Why does time fly when I'm debugging late at night? Ugh..."
|
||||
"7685824248","","","","","2010-01-12 22:43:50 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Google finally flipped the ""any file on google docs"" switch:http://googledocs.blogspot.com/2010/01/upload-and-store-your-files-in-cloud.html"
|
||||
"7679496268","","","","","2010-01-12 19:23:53 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Specs for humans-CommonJS FTW RT @commonjs: The Packages 1.0 spec has been ratified: http://bit.ly/7Yob5u announcement: http://bit.ly/69ByFz"
|
||||
"7661130356","","10821","","","2010-01-12 07:02:03 +0000","<a href=""http://posterous.com"" rel=""nofollow"">Posterous</a>","@bmann At the University of Victoria they taught us some CVS. It was kind of weak, but they did it. We had to use it for assignments."
|
||||
"7661066444","7660589396","13217612","","","2010-01-12 06:58:57 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@chuq fwiw at UVic we learned some CVS. Just the basics but we did it. We also wrote Java, Perl, C, and m68k assembly by year 2 or 3."
|
||||
"7654401680","","3806441","","","2010-01-12 02:57:53 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@grooveshark recent plays rss feed is not ordered by date. easily worked around but thought you should know. (my user: samsonjs)"
|
||||
"7649421810","","","7648781433","780561","2010-01-12 00:30:30 +0000","web","RT @technoweenie: http://www.barbie.com/vote/ => vote for computer engineer as her next career :)"
|
||||
"7647899441","","","","","2010-01-11 23:43:25 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Can't relate to the feeling that regexes create a 2nd problem. They're not hard unless you suck at development anyway, find a new job."
|
||||
"7639203681","","3806441","","","2010-01-11 19:01:01 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@grooveshark not sure if my feed is fixed because of the message i sent a minute ago, but you guys are *awesome* regardless. love the shark!"
|
||||
"7638968195","","","","","2010-01-11 18:53:01 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","#grooveshark's rss feed is updating again! plays from last night are still appearing but it looks to be fixing itself slowly."
|
||||
"7633997975","","","","","2010-01-11 16:08:00 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","My well-timed screenshot made it to the top of http://reddit.com/r/canada ... jokes aside London had a great music scene when I was there."
|
||||
"7604070727","","","","","2010-01-10 20:46:50 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Flash 10.1 beta for OS X is garbage from what I can see. Doesn't improve performance and is very buggy to boot. Reverted for @grooveshark."
|
||||
"7603259738","7569229029","1962961","","","2010-01-10 20:18:19 +0000","web","@synack You might be interested in http://scrobbleshark.appspot.com ... I plan to put the code on github but right now it's too ugly."
|
||||
"7587763560","","","","","2010-01-10 08:43:13 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","(note that no scrobbling will actually happen until I get a real client ID from last.fm!)"
|
||||
"7587604060","","","","","2010-01-10 08:34:13 +0000","web","I'm not ready to release my code on github yet but check out http://github.com/synack/scrobbleshark ... and http://scrobbleshark.appspot.com"
|
||||
"7580821589","","","","","2010-01-10 03:51:47 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Food was good. Recommend the Linden burger and corn chowder. Nice driftwood brewery beer too"
|
||||
"7579553901","","","","","2010-01-10 03:10:11 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Watching the canucks at Podium. As far as bars in Victoria go this is pretty good! http://twitpic.com/xglf3"
|
||||
"7568323152","","","","","2010-01-09 20:38:54 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","now that the backend is working i can jazz up the ui. by the time last.fm hooks up a client id it might be ready for a few other testers."
|
||||
"7568075185","","","","","2010-01-09 20:29:41 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","oh snap, the shark scrobbles! just like washington http://www.youtube.com/watch?v=sbRom1Rz8OA - it's coming. it's coming. it's coming."
|
||||
"7552406455","","","","","2010-01-09 09:19:58 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","some online poker, then some python hacking. fun night. scrobbleshark is coming."
|
||||
"7541420764","","","","","2010-01-09 02:00:40 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","sweet jesus my vintage 2006 macbook's fan just took off like a jet engine. hope it's not about to kick the bucket."
|
||||
"7530697946","","","","","2010-01-08 20:04:06 +0000","<a href=""http://www.grooveshark.com/"" rel=""nofollow"">Grooveshark</a>","listening to ony of my favourite Ozzy Osbourne tunes: My Jekyll Doesn't Hide by on @Grooveshark: http://tinysong.com/cp5q"
|
||||
"7526005582","7520750028","14273142","","","2010-01-08 17:31:37 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko I have to admit sometimes I do miss the snow itself. It's pretty, and fun."
|
||||
"7510766609","","","","","2010-01-08 07:16:59 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Canadian tree planter http://twitpic.com/x66v6"
|
||||
"7501564315","7488904918","14273142","","","2010-01-08 02:06:47 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko sshhhh...it's just warming up here, don't jinx us with that snow talk. vic's already the town of the newly-wed and nearly dead ;-)"
|
||||
"7499962052","","","","","2010-01-08 01:20:43 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Inside outside where have I been? Out of my brain on the 5:15! Out of my brain on the train, on the train."
|
||||
"7485751373","","","","","2010-01-07 17:32:09 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Ugh, later than I like but still under slept. Definetely going to need a coffee this morning."
|
||||
"7472705177","7432753607","14273142","","","2010-01-07 08:32:49 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko A parka, ha ha ha! I'm still rockin the winter hoody! Love the island... better get yourself one coffee for each hand. :)"
|
||||
"7472616928","","","","","2010-01-07 08:28:02 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Digging Python+webapp on GAE. I was surprised to see it's about as simple as web.py. Just what I want!"
|
||||
"7412862426","","","","","2010-01-05 19:36:35 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Scrobble your #grooveshark tracks to last.fm with Rumpus http://rumpus.altervista.org/ ... who knew grooveshark provided feeds! awesome."
|
||||
"7408106706","7407518283","33858688","","","2010-01-05 16:40:27 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@ehoppe You can count me in that 21% ... it'll be nice to have 2 top platforms. Apple doesn't rest on their laurels but choice is good."
|
||||
"7408061473","7404545682","14273142","","","2010-01-05 16:38:49 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko Sounds nice! I usually get my coffee after the walk. >_< I should switch it up."
|
||||
"7388817599","7386499311","22406953","","","2010-01-05 02:33:44 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@mahyarm Last.fm (the iphone app still plays for me without paying) ... they have radio and if you scrobble your library too."
|
||||
"7381389518","","","","","2010-01-04 22:33:53 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","[I wonder if it can do emacs...] RT @zii: Love the QuickCursor idea (use your fav text editor anywhere) http://bit.ly/18LqCe (via @azaaza)"
|
||||
"7373149069","7369580015","14273142","","","2010-01-04 17:28:16 +0000","web","@lunafiko oh yes, thanks for leaving a 2nd monitor for me! And possibly a hackintosh for Cailee. You're like santa. :)"
|
||||
"7357427296","","","","","2010-01-04 05:27:28 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Messing around with WebSockets (and node.js). Can't wait for mobile browsers to get this API."
|
||||
"7323770241","7319403764","1341781","","","2010-01-03 05:52:39 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@gilesgoatboy Bad choice of words on my part. I simply meant that the US is predominantly a capitalist society."
|
||||
"7318084854","","","","","2010-01-03 02:25:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Absolute capitalism doesn't work. RT @gilesgoatboy: http://www.good.is/post/cost-of-health-care-by-country-as-compared-to-life-expectancy"
|
||||
"7317979853","","","","","2010-01-03 02:21:43 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","RT @tlrobinson: Huxley vs. Orwell: http://i.imgur.com/XmNt6.jpg Who was [more] right?"
|
||||
"7274724238","","","","","2010-01-01 18:05:49 +0000","web","Bring in '10 w/music! RT @TheBeatlesVideo VIDEO: The Beatles - ""Revolution"" (Version 2) http://bit.ly/5DoyhL Plz ReTweet & #followfriday us!"
|
||||
"7268202797","","","","","2010-01-01 12:29:58 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Time to pack it in. Happy new year everyone! Hope it was loads of fun (and safe)."
|
||||
"7268086370","7265755765","14273142","","","2010-01-01 12:22:00 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko not just you! It's always hyped. Happy new year anyway! Hope next year is better than the last."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,60 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"9797877156","9797079403","19637934","","","2010-02-28 23:26:48 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@rainnwilson You'll have to wait 4 years ... didn't you see your boys get the silver medals, almost in tears? ;-)"
|
||||
"9796994818","","","","","2010-02-28 23:06:52 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","That was intense."
|
||||
"9761171486","","","","","2010-02-28 04:07:28 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Never had a ping return a pang before. Must be a wild Saturday inside my MacBook!"
|
||||
"9745059055","","","","","2010-02-27 20:51:03 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Emacs modes should leave most ""electric"" keys disabled by default. At least 75% of the time they are a huge turn-off and annoyance."
|
||||
"9740545283","","","9737046519","1341781","2010-02-27 18:42:40 +0000","web","RT @gilesgoatboy: it's sometimes a good idea to read beginner books for fields that you're an expert in. humility + reality check + wake ..."
|
||||
"9734139326","","","","","2010-02-27 15:58:49 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Wow, grooveshark feeds are nowhere even close to in order! Have to parse the whole feed and check for existing tracks, no other way. :("
|
||||
"9692301875","9691948068","33858688","","","2010-02-26 19:19:16 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@ehoppe Sadly no. There's definitely a point of diminishing returns right around shot # 4. I'm about to run laps around the board room."
|
||||
"9691870437","","","","","2010-02-26 19:08:25 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","If the barista at Starbucks asks if you want an extra 5th shot in your Americano, the correct answer is ""no""! My brain, my stomach... blurgh"
|
||||
"9682943727","","","","","2010-02-26 15:41:05 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","scrobbleshark broke 300 users in the last day or so. I was surprised at first, but in retrospect music lovers would use last.fm+grooveshark."
|
||||
"9682285690","9674829299","14368342","","","2010-02-26 15:26:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@DRMacIver 99% of JS devs learned it for the browser first, where JS has an event loop baked in. Familiar is what most mean by it, imo."
|
||||
"9666563750","","","","","2010-02-26 06:31:47 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I once read that every program is either an interpreter or a compiler. Sometimes it's a mental stretch, but it is essentially true."
|
||||
"9661850101","","","","","2010-02-26 04:23:38 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Google Chrome recently acquired a download count & pie-shaped progress indicator badge on the dock icon. Nifty."
|
||||
"9541910183","9535060723","18760821","","","2010-02-23 20:45:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@chexov_ grooveshark updates their feeds every 10mins, so I hit GS every 10m and within 10 mins after that they should be scrobbled."
|
||||
"9516531440","","","","","2010-02-23 07:32:31 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Another piece of Skynet is in place: http://www.popsci.com.au/scitech/article/2006-04/john-koza-has-built-invention-machine
|
||||
Soon, soon..."
|
||||
"9515310754","","","","","2010-02-23 06:40:36 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","""Most people need less done well, not more done poorly."" http://tinyurl.com/y8sfmjo"
|
||||
"9514459053","","","","","2010-02-23 06:08:22 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","#Grooveshark feed is slowly getting itself together again. Looks like it was just a hiccup."
|
||||
"9514322639","","","","","2010-02-23 06:03:30 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Grooveshark thinks I listened to 8 songs simultaneously at exactly midnight EDT. Unsurprisingly last.fm ignores those scrobbles."
|
||||
"9375372692","","","","","2010-02-20 07:52:06 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I'll have to sleep with my contacts in tonight. No gloves + habaneros = bad news if I even rub my eyes, forget sticking my finger in them!"
|
||||
"9369383267","","","","","2010-02-20 04:29:35 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Soon this will be salsa. Do you know why? Because people like to say salsa. http://twitpic.com/1490p2"
|
||||
"9324158789","","","","","2010-02-19 06:55:06 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","If we aren't supposed to eat animals then why are they made of meat?"
|
||||
"9299241789","","","","","2010-02-18 20:18:03 +0000","web","Schools using notebooks to spy on students at home. This is disturbing and incredibly disgusting. They have no morals. http://bit.ly/bLRxbp"
|
||||
"9294231781","","","9293612561","678953","2010-02-18 18:05:23 +0000","web","RT @TUAW: Apple may have upped its over-the-air download limits for App Store http://bit.ly/dubzIG [post]"
|
||||
"9254549932","","","","","2010-02-17 22:34:42 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","#Dropbox slows down every Finder window. Even scrolling is sluggish, so I have to quit it when I'm working and re-open it later. blurgh"
|
||||
"9223267915","","","","","2010-02-17 06:35:46 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","It would be cool if @tweetie could open links in the background by holding down a modifier key. Sometimes I open a few in a row."
|
||||
"9219489240","","","","","2010-02-17 04:31:53 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Doubles on scrobbleshark should still only be scrobbled once, but tracks might have been missed. Sorry, I thought the feed was fixed!"
|
||||
"9219450183","","","","","2010-02-17 04:30:49 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Grooveshark feeds still adding played tracks out of order. Fix coming soon. *le sigh*"
|
||||
"9192595443","","","","","2010-02-16 17:00:25 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","iTerm tip: In OS X's keyboard prefs you can map shortcuts for ""Select Previous Tab"" and ""Select Next Tab"" to Cmd-Shift-[ and Cmd-Shift-]."
|
||||
"9164471810","","","","","2010-02-16 01:38:21 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","i'm willing to bet that many of the confused users are more victims of firefox's odd behaviour than their own lack of knowledge."
|
||||
"9164440350","","","","","2010-02-16 01:37:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","[re: RWW/facebook login] firefox's url bar takes you to the 1st goog result, so people get used to typing ""facebook login"" into the url bar."
|
||||
"9131085794","","","","","2010-02-15 07:04:56 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Flash?, taking your 2ghz Core Duo back to Pentium 120mhz days where playing music sucks up 100% CPU and skips if you do anything else."
|
||||
"9127937602","","","","","2010-02-15 05:05:10 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","twitter |?twit?r|
|
||||
verb [ intrans. ]
|
||||
? talk rapidly and at length in an idle or trivial way : he twittered on about buying a new workshop."
|
||||
"9124726962","","","","","2010-02-15 03:29:28 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Good devel time on the train! It's dark so I didn't miss anything, and could tether when I needed to get on the 'net. Awesome."
|
||||
"9039423188","","","","","2010-02-13 03:19:54 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Ok what is with the dancers in white?! They're awful. Gordon Campbell seems to be having fun though."
|
||||
"9015989311","","","","","2010-02-12 16:42:08 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","First train ride in Canada, up the Malahat to Courtenay. It's already really beautiful!"
|
||||
"8996196908","8995477081","22406953","","","2010-02-12 05:28:10 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@mahyarm I'm also still learning about GAE, especially BigTable and its distributed nature. Datastore calls use a surprising amt of CPU time"
|
||||
"8996146366","8995477081","22406953","","","2010-02-12 05:26:31 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@mahyarm Essentially. Grooveshark's feeds complicate things, but seem to be in order recently so I improved things a bit tonight. We'll see."
|
||||
"8995065249","","","","","2010-02-12 04:52:17 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Scrobbleshark is going to run out of cpu time again. Sorry! I'll look into getting a google checkout account. (I'm working on the code too)"
|
||||
"8952389286","","","","","2010-02-11 07:53:10 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","""unix has just too many confusing two-letter commands, so I have to use one-letter aliases to sort them out"" http://is.gd/88IcN"
|
||||
"8951626212","","","","","2010-02-11 07:19:42 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","(possibly on google's tubes, using google dns servers)"
|
||||
"8951583106","","","","","2010-02-11 07:17:56 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","images, maps, gmail, buzz, picasa, wave, youtube, books, news, translate, blogger, reader, calendar, chrome os never has to leave google.tld"
|
||||
"8907140031","8902997100","3431581","","","2010-02-10 16:07:34 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@trezzer heh, not quite *that* popular. this time is was user error, on my part. still learning about GAE."
|
||||
"8907081826","","","","","2010-02-10 16:06:10 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Agh, sorry guys. Made a change that made Scrobbleshark too hungry (for the CPU). It'll be back midnight PDT."
|
||||
"8858933813","8851824419","3431581","","","2010-02-09 15:36:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@trezzer You're right, it's working for others but I have to work and can't debug it now. Sorry about that!"
|
||||
"8844791095","","","","","2010-02-09 06:45:42 +0000","web","ok guys it's my turn to use github, kindly gtfo"
|
||||
"8813740420","","","","","2010-02-08 15:48:30 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Just saw a guy with a discman. How retro, very 1999. :p"
|
||||
"8781575552","","","","","2010-02-07 22:25:50 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","RT @nocas: teen teaches how to view ip addresses http://bit.ly/9p5meP makes us all laugh till we cry :D http://twitpic.com/11yg5k"
|
||||
"8776771280","8120731163","815869","","","2010-02-07 20:06:13 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@nocas Thank you! :)"
|
||||
"8705804068","","","8705344653","14206068","2010-02-06 02:50:40 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @tlrobinson: I'm not advocating this, but if you wanted to discourage people from using AdBlock you could put goatse, etc behind your ..."
|
||||
"8642412207","","","","","2010-02-04 18:26:24 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Today I love Cocoa, especially NSOperationQueue."
|
||||
"8618301416","8595697827","89704018","","","2010-02-04 04:09:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Evilman_ I must have messed up the migration to the new version. I don't think any valid scobbles will be missed in the future."
|
||||
"8593590480","8584904703","89704018","","","2010-02-03 16:24:01 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Evilman_ You shouldn't have to re link w/ last.fm thanks for the report. I'll try and scrobble your missed tracks, sorry about that!"
|
||||
"8591366729","","","","","2010-02-03 15:23:26 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","Man, I hate night guy today. What an asshole! http://bit.ly/9MSS33"
|
||||
"8579955235","","","","","2010-02-03 08:13:38 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","#scrobbleshark sign up is open again! things seem to work but let me know if you have any problems at all. happy scrobbling! :)"
|
||||
"8575941793","","","","","2010-02-03 05:20:22 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","could today be the day? .... let's hope. #scrobbleshark"
|
||||
"8574342795","","","","","2010-02-03 04:27:24 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I've also started hitting ""C-x o"" when I want cmd-tab. ""xo"" littered in text fields all over the place. #toomuchemacs"
|
||||
"8574284179","","","","","2010-02-03 04:25:32 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I often start txting the wrong person due to years of typing the msg *then* choosing the recipient. iPhone's Messages app thinks different."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,94 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"11411575407","","","11400407558","8526432","2010-04-01 06:41:50 +0000","web","RT @wycats: I love git clean -fdx"
|
||||
"11400050283","","","11398965428","4216361","2010-04-01 02:04:11 +0000","web","RT @dalmaer: <style contenteditable>head,style{display:block}</style> http://annevankesteren.nl/test/contenteditable-style.htm"
|
||||
"11349156360","","","","","2010-03-31 04:28:08 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","who knew http://www.reddit.com/r/apple/comments/bk6tt/pressing_backticktilde_key_after_pressing_tab/"
|
||||
"11348158594","11346308421","815114","","","2010-03-31 04:05:21 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@jedschmidt Perfect! Thanks :) I'll send you a pull request for node v0.1.30+ compat this week."
|
||||
"11344775894","","","","","2010-03-31 02:59:58 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Good old spicy peanut. Reading about tcl. ? at The Noodle Box http://gowal.la/s/eye"
|
||||
"11322835618","11312118043","815114","","","2010-03-30 18:50:47 +0000","web","@jedschmidt What are the license terms for cookie-node?"
|
||||
"11315507550","","","","","2010-03-30 16:09:42 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Ah, just had to check the settings for Backgrounder. It can do everything I want. Goes hand in hand with the #Grooveshark mobile app!"
|
||||
"11314685577","","","","","2010-03-30 15:53:07 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","Backgrounder for iPhone should use the long button press to background an app, not toggle backgrounding. Shouldn't have to remember state."
|
||||
"11273356342","11273115129","23774974","","","2010-03-29 22:21:36 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@sauntimo I'm in Canada and Grooveshark is my only option. I just get jealous seeing what other countries have available so I don't look. :)"
|
||||
"11272241564","11258354679","23774974","","","2010-03-29 21:55:48 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@sauntimo A virtually unlimited music library in my pocket. It's what I've always wanted and I definitely recommend going VIP for it!"
|
||||
"11258155936","","","","","2010-03-29 16:40:22 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Enjoyed some @grooveshark on my iPhone this morning. They complement each other nicely! It's everything I ever dreamed. :)"
|
||||
"11213248848","","","","","2010-03-28 21:20:15 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Photo: Nurse stump ? at Gowlland Tod Park http://gowal.la/c/vKiq"
|
||||
"11205749579","","","11203590289","14939200","2010-03-28 18:10:36 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","RT @seancribbs: Wishing #nosql had been named #altdb or something less flame-inviting."
|
||||
"11158272640","11141921864","3374231","","","2010-03-27 19:21:22 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","@mxcl I've been listening to a bit of Jamiroquai. Pretty good stuff! Nice idea btw. :)"
|
||||
"11122405818","11119924765","14962753","","","2010-03-27 02:07:38 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@t_a_w You have some good tips there. Default HISTSIZE should be higher, and >> is a good habit. Don't like clobbering w/ aliases though."
|
||||
"11122252439","11122116123","6509982","","","2010-03-27 02:04:20 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@argv0 lyrics to ""oops i did it again"""
|
||||
"11119484239","11118539616","14962753","","","2010-03-27 01:02:24 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@t_a_w Sounds like you need zsh. `mate =script.rb` to edit. Also `setopt noclobber` and glob qualifiers. Bash is playing catch-up since v2."
|
||||
"11118928621","","","","","2010-03-27 00:49:39 +0000","web","I thought I had an original idea mounting a Riak bucket with FUSE. At least now I have some code to start with!"
|
||||
"11118889015","","","11116852239","14097822","2010-03-27 00:48:43 +0000","web","RT @johnrlynch: Light a FUSE under your Riak cluster! http://bit.ly/dhfNJl"
|
||||
"11118800781","11118136598","41456363","","","2010-03-27 00:46:37 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@NCIXdotCOM I'll be your BFF if you send me an XFX Radeon 5850. :)"
|
||||
"11115884211","","","","","2010-03-26 23:36:52 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","""The curse of the gifted programmer is apparently the need to deal with occasional direct emails from Eric Raymond."" http://is.gd/b16tf"
|
||||
"11113188838","","","","","2010-03-26 22:30:40 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","For posterity: http://yfrog.com/4ziu0p ... made a few of us here lol on a long Friday afternoon."
|
||||
"11062374796","","","","","2010-03-26 00:36:46 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","Idiot users still intentionally opening, clicking on spam http://tinyurl.com/yl2tnzt (great, there is no hope then)"
|
||||
"11061811920","","","11058872352","14561327","2010-03-26 00:24:44 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","RT @dhh: ""Adobe? Acrobat? Connect? Pro Mobile"" -- it reads like a joke, but it's actually the name of an iPhone app. Kid you not."
|
||||
"11047244539","11046951067","14130443","","","2010-03-25 18:31:25 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@ckdarby Same result using servers in and around Vancouver. In fact Bellingham WA is a bit faster than Burnaby BC. Data relayed by towers?"
|
||||
"11043054999","","","","","2010-03-25 16:52:21 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Pretty graphs of projects & people on github: http://lumberjaph.net/blog/index.php/2010/03/25/github-explorer/"
|
||||
"11040209720","11022166757","14130443","","","2010-03-25 15:49:25 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","@ckdarby roaming? I'm right in the middle of Victoria. Latency to the tower max 1s then it should be wired, max +300ms within N. America."
|
||||
"11013651388","","","","","2010-03-25 02:45:23 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","Come on #rogers you can do better. 2616ms latency! http://twitpic.com/1aqkff"
|
||||
"11013057232","11008243181","14962753","","","2010-03-25 02:32:17 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","@t_a_w I had the same experience w/ songbird a few years ago. Good to know I don't need to try it again."
|
||||
"10994439628","10993421518","14277942","","","2010-03-24 19:33:05 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Ipsquiggle No favourites yet. It's been on my TODO list too long now. I'll try & get around to it soon."
|
||||
"10953021486","10951693122","23774974","","","2010-03-24 00:42:01 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@sauntimo No need to leave it open. Google's computers will scrobble in the background. Enjoy! :)"
|
||||
"10878838029","","","","","2010-03-22 16:12:07 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Photo: It's a frap! ? at Starbucks http://gowal.la/c/tBmc"
|
||||
"10842106902","","","","","2010-03-21 22:55:19 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Photo: ? at Beacon Hill Park http://gowal.la/c/tqMd"
|
||||
"10842057429","","","","","2010-03-21 22:54:01 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","I'm at Beacon Hill Park in Victoria http://gowal.la/s/mWA"
|
||||
"10827531998","10824081647","14962753","","","2010-03-21 16:29:19 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@t_a_w I like my iPhone (a lot) but sometimes it feels too much like Apple's iPhone, not mine. $99/yr to put my own app on it? Android next."
|
||||
"10826298478","","","10814555748","5813712","2010-03-21 15:58:55 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","RT @antirez: Results of some yesterday hacking: Linenoise, a 360 lines of code readline replacement: http://github.com/antirez/linenoise"
|
||||
"10803441619","10794001565","27705041","","","2010-03-21 03:15:53 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Machiventa It should work fine with Firefox. What part is giving you trouble?"
|
||||
"10763988500","","","","","2010-03-20 07:50:40 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I wonder if OS X can run on the Sony Vaio Z. http://is.gd/aPS8K"
|
||||
"10730236474","","","10729730792","14939200","2010-03-19 16:29:32 +0000","web","RT @seancribbs: Schema design in Riak, an introduction (on the @basho blog): http://ow.ly/1owTy #riak #nosql"
|
||||
"10709338214","","","","","2010-03-19 05:46:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Damn you @ncixdotcom! Why must you tempt me like this?! Just as I'm thinking about one of these they go on sale. http://is.gd/aOgRz"
|
||||
"10707358280","","","","","2010-03-19 04:41:13 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Ugh, explains a lot. -- ""In order for a book to sell,"" said my publisher, ""it's got to be thick. 600 pages thick."" http://is.gd/aOdXF"
|
||||
"10654073830","10647539165","91170325","","","2010-03-18 03:48:01 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@jtjn thanks :)"
|
||||
"10647203406","10644429770","91170325","","","2010-03-18 00:41:44 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@jtjn You'll have to link up scrobbleshark to last.fm again if you go with the first option."
|
||||
"10647170316","10644429770","91170325","","","2010-03-18 00:40:54 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@jtjn You can revoke scrobbleshark's access to your last.fm account on last.fm's site, or pause scrobbling on the scrobbleshark site."
|
||||
"10611907518","","","","","2010-03-17 08:01:46 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","agh, 1am already?! time to put node-riak down for the night."
|
||||
"10555024776","","","","","2010-03-16 04:55:40 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","http://www.infoq.com/presentations/Are-We-There-Yet-Rich-Hickey Makes me want to learn Clojure even more. Maybe next year."
|
||||
"10523488677","10519338493","5281041","","","2010-03-15 16:02:21 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@monvoix Thanks. :) Glad you like it!"
|
||||
"10487968318","","","","","2010-03-14 22:24:12 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","I'm at Serious Coffee in Victoria http://gowal.la/s/3Nxb"
|
||||
"10486800485","","","","","2010-03-14 21:53:48 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","TextMate refugees, drag stuff in Emacs: http://is.gd/aDyDx (like cmd-ctrl-<arrow> in TextMate) ... reminds me to check out textmate.el."
|
||||
"10449862757","10443005063","22406953","","","2010-03-14 02:20:44 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@mahyarm About a month ago. Just for 2 months though."
|
||||
"10443671196","","","","","2010-03-13 23:36:47 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Photo: ? at Thetis Lake http://gowal.la/c/qqNq"
|
||||
"10438148319","10437910194","6707392","","","2010-03-13 21:00:14 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@sstephenson There is also readlink -f on Linux. On OS X/BSD run readlink in a loop."
|
||||
"10438141113","10437910194","6707392","","","2010-03-13 21:00:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@sstephenson `cd -P /a/symlinked/dir` will resolve the symlink. With autopushd on you can popd, otherwise `cd - to` get back."
|
||||
"10405949161","","","","","2010-03-13 03:55:00 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Getting that spicy peanut! ? at The Noodle Box http://gowal.la/s/eye"
|
||||
"10403957887","","","","","2010-03-13 03:04:20 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Used 2.2GB of unlimited 3G access the 1st month. 1 day I ran Software Update while tethered => 800MB. I should get the new Xcode beta! :p"
|
||||
"10341344052","","","10339670168","636923","2010-03-11 21:50:38 +0000","web","RT @siracusa: Canabalt (a $2.99 game) reveals app pricing as a means of managing reviews: http://bit.ly/bqqoRA More good stuff here: ht ..."
|
||||
"10332161723","10068750283","894911","","","2010-03-11 17:40:13 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke BC champs eh? not bad, not bad at all! :)"
|
||||
"10327133361","","","10324398622","9980812","2010-03-11 15:37:45 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @igrigorik: great start to #nosqllive by @timanglade.. ""nosql as a brand is a liability, it lacks definition and respectability"" - amen."
|
||||
"10290462351","","","","","2010-03-10 21:50:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Too bad you can't add command line args to Info.plist in an app bundle on OS X ... or can you?"
|
||||
"10290426247","","","","","2010-03-10 21:49:08 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","alias chrome='/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --allow-file-access-from-files >/dev/null 2>&1 &!' ... *sigh*"
|
||||
"10289609392","10289433993","22406953","","","2010-03-10 21:28:50 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@mahyarm Ah, that makes sense. I wonder how long after the refresh before they were available. Have to wait and see I guess. :)"
|
||||
"10288518588","","","","","2010-03-10 20:57:56 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Emacs may get a package manager in version 24. http://is.gd/a9FrI One day we'll boot Linux directly to Emacs and cut out the middle man."
|
||||
"10286387339","10280595637","9989362","","","2010-03-10 20:00:57 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@headius That does sound straightforward. Maybe I could reuse my toy x86 assembler to emit code at runtime (written in Ruby)."
|
||||
"10280247930","10272709248","9989362","","","2010-03-10 17:17:10 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@headius I should pick up the blue book and really learn this stuff sometime. Interesting but time consuming! Have to be dedicated."
|
||||
"10262804891","","","","","2010-03-10 08:33:41 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Never heard of a ""method chooser"" before. I wonder if JIT compilers besides Rubinius do this too. http://is.gd/a6OOv"
|
||||
"10259887450","","","","","2010-03-10 06:33:28 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Rap lyrics generator: http://is.gd/a6uiM ... ""gold Jerry, gold!"""
|
||||
"10257721524","10242381897","22406953","","","2010-03-10 05:19:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@mahyarm @ChrisNoel_Vic don't forget the last.fm status ""boards""! the bears are my fav. http://blog.last.fm/2008/08/01/quality-control"
|
||||
"10255360972","","","","","2010-03-10 04:11:39 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Grooveshark has implemented native scrobbling for VIPs! Now if only I could sign up for a VIP account ... *sigh*"
|
||||
"10255145693","","","","","2010-03-10 04:06:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","First day at the new job. Great so far! Lots of interesting stuff to learn."
|
||||
"10254985784","10252944305","22406953","","","2010-03-10 04:02:03 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@mahyarm $2600+tax is $3000. ouch! refurb is $2200+tax, still $2500. can get a 15""mbp + 24""LCD for that price."
|
||||
"10254877767","10252944305","22406953","","","2010-03-10 03:59:34 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@mahyarm don't want to spend $2600, but that is a possibility. I might be getting a mbp from work, and have more time to wait and think."
|
||||
"10248960220","","14273142","","","2010-03-10 01:39:12 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko online payment systems always shaft non-US folk. hopefully we can get a response from @grooveshark on this... http://is.gd/a5yyB"
|
||||
"10206646283","","","","","2010-03-09 05:00:01 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I wanted to try Celery http://is.gd/a0ySo but I'll be happy learning RabbitMQ directly. Nitrogen http://is.gd/a0AI4 looks like fun too."
|
||||
"10206297917","","","","","2010-03-09 04:49:20 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Thinking I might rewrite scrobbleshark completely. Need a good project to learn Erlang, and it fits the bill perfectly."
|
||||
"10181014467","","","","","2010-03-08 17:58:58 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Joachim_Joe Yeah, it's by no means perfect but it's a good stop-gap until Grooveshark rolls out scrobbling support. Glad you like it. :)"
|
||||
"10179342997","","","","","2010-03-08 17:15:10 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Joachim_Joe I could get it down to about 15 mins, but I need to change servers and have been really busy the last 2 weeks."
|
||||
"10179320920","","","","","2010-03-08 17:14:37 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Joachim_Joe Grooveshark only updates their feeds every 10 mins, and right now I think it updates every 20-30 mins."
|
||||
"10176886617","","","","","2010-03-08 16:13:05 +0000","<a href=""http://echofon.com/"" rel=""nofollow"">Echofon</a>","@Joachim_Joe nope, once you set it up you can pretty much forget about it. :)"
|
||||
"10089188493","","","","","2010-03-06 20:52:09 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Rogers gave me 2 months unlimited data for upgrading to a 1GB data plan. It's ridiculous I had to do so to tether, but I'll get my $s worth!"
|
||||
"10084345781","","","","","2010-03-06 18:29:32 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Now my decision is wait for the 15"" MBP refresh (hopefully w/ Core i7, or i5) and go new, or get a refurbished 17"" MBP anytime. hmmm...."
|
||||
"10084280414","","","","","2010-03-06 18:27:39 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","1280x800 (1.05MP) -> 1440x900 (1.3MP) is not really compelling. 1920x1200 (2.3MP) on the other hand ... http://i.imgur.com/lKDL3.png"
|
||||
"10082846701","10068750283","894911","","","2010-03-06 17:48:02 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke I agree about Fluid. It's great for gmail, google docs, and Grooveshark. I'll have to try github."
|
||||
"10042665815","10042424153","17088322","","","2010-03-05 21:24:00 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@ChrisNoel_Vic :o ... we missed it in 3D at the IMAX. No point watching it now anyway."
|
||||
"10040791831","","","","","2010-03-05 20:33:35 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Am I the only guy in North America that hasn't seen Avatar yet?"
|
||||
"10033772350","","3806441","","","2010-03-05 17:29:39 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@grooveshark do you have an email address i can just send money to with paypal? There's got to be a way for me to give you money."
|
||||
"10033511678","","","","","2010-03-05 17:23:17 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Great, now I have around USD$30 in my @PayPal account for no reason. I better be able to use it for something. Not impressed. Not one bit."
|
||||
"10031546865","","","","","2010-03-05 16:35:59 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","... or not? @grooveshark, it shouldn't be so hard to get VIP for canucks w/o a CC. Not sure if it's Paypal being lame, but I'm done trying."
|
||||
"10031420299","","","","","2010-03-05 16:32:57 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Realized I could transfer funds to my paypal account, then use that to pay for a @grooveshark VIP pass. iPhone groovesharkin in a few mins!"
|
||||
"9997766029","","","","","2010-03-05 00:00:59 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","UITextView + sizeWithFont:constrainedToSize: = blurgh. that is all."
|
||||
"9994065353","","","","","2010-03-04 22:32:41 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Fluid is neat but unless you keep your fluid apps open all day it's far quicker to open a new tab and type the first 3 letters of the URL."
|
||||
"9953907597","","","","","2010-03-04 02:34:09 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","400 scrobbleshark users are too many for a free google app engine account. I'll start looking for a new host, have to port a bit of code."
|
||||
"9904713318","","","","","2010-03-03 02:37:02 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","RDBMS have been abused to do all kinds of things they were never meant to do, so the set of tasks that NoSQL excels at may however be large."
|
||||
"9904447874","","","","","2010-03-03 02:31:35 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Why must everything be black & white? NoSQL isn't going to ""kill"" RDBMSs, it's an *additional* tool better suited to certain tasks. Yeesh..."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,59 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"13157669261","","","","","2010-04-30 23:55:59 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","RT @Grooveshark: Now accepting Lala refugees."
|
||||
"12654628856","12654445157","6217862","","","2010-04-22 18:44:02 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@zimmund GAE resets quotas at midnight Pacific time (in 12 hours). No activity until then, but it will catch up at that time."
|
||||
"12649965788","","","","","2010-04-22 17:01:40 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Wow, I'm really sorry about scrobbleshark being down! 1000 users is way too much for the base GAE account. I'll work on the rewrite soon."
|
||||
"12621862744","","","","","2010-04-22 05:20:24 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","(maybe it's not crashier on iPad, but on iPhone OS 3.2. not sure on that one)"
|
||||
"12621836597","","","","","2010-04-22 05:19:42 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Need to crash mobile Safari? Visit http://apirocks.com/html5/html5.html Crashier on iPad than iPhone. If it doesn't crash just rotate."
|
||||
"12620508667","12615500462","14273142","","","2010-04-22 04:44:50 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko I think I just found it on twitpic, cool!"
|
||||
"12614255760","","","","","2010-04-22 02:33:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Got an iPad for the evening. Back on my MacBook now, I want to rotate the display to surf the web."
|
||||
"12499117475","12498442444","14273142","","","2010-04-20 05:13:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko heh, sounds like a good time :)"
|
||||
"12498062927","","","","","2010-04-20 04:47:44 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","html5 makes the browser the best cross-platform toolkit. ironically throwing out native look'n'feel altogether wins. http://is.gd/bA948"
|
||||
"12497941010","12495440281","14273142","","","2010-04-20 04:44:46 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko Nope, very low! I guess there are only so many ways to make a restaurant website ""interesting"". Me I just want info. gopher ftw :p"
|
||||
"12491970038","","","","","2010-04-20 02:36:56 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Incidentally I just discovered that scrolling with 2-fingers scrolls an iframe in mobile Safari. 8 months with an iPhone and still learning."
|
||||
"12491891020","","","","","2010-04-20 02:35:25 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Refreshing. fifthstreet.ca bar&grill has a decent site that isn't Flash. It kind of sucks on iPhone but at least it works."
|
||||
"12421964589","","","12419872636","14206068","2010-04-18 22:44:23 +0000","web","RT @tlrobinson: .@brendaneich at #jsconf talking about awesome new features slated for next edition of JS. Detail on the ECMA wiki: http ..."
|
||||
"12349220407","","","12347514148","4216361","2010-04-17 16:20:41 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","RT @dalmaer: The @280north crew have released: nib2cib now supports iPhone to web conversion #jsconf"
|
||||
"12342410195","","","","","2010-04-17 14:00:47 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Photo: God BC is beautiful! ? at The Spirit of British Columbia http://gowal.la/c/BSKC"
|
||||
"12341974008","","","","","2010-04-17 13:50:56 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Meeting my sister in Van for the day. ? at Swartz Bay Foot Passenger Terminal http://gowal.la/s/ecZ"
|
||||
"12322999305","","","","","2010-04-17 03:56:58 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","""but be warned: it's definitely not for the casual jailbreaker."" http://tinyurl.com/y2vsbnv sounds like a challenge! ;-)"
|
||||
"12318341622","","","12317797100","6149572","2010-04-17 02:17:03 +0000","web","RT @dysinger: Latest #riak (client) requires protobuffs installed in erlang/lib #TODO add to the readme so people don't have to read the ..."
|
||||
"12149333164","12147485431","33858688","","","2010-04-14 06:27:58 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@ehoppe I uploaded about 500mb. Have to watch my groovesharking. or go for the 3gb plan :)"
|
||||
"12147208295","","","","","2010-04-14 05:21:25 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","Close bittorrent when tethering notebook to phone. #protip"
|
||||
"12143998162","12141735174","894911","","","2010-04-14 03:59:03 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke Need to save up a bit. I'll probably pull the trigger in May. (Unless I decide to get the i7 or 8GB of DDR3 or something :)"
|
||||
"12141397626","","","","","2010-04-14 03:03:30 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","New 15"" MBPs have a hi-res option (1680x1050). Sweet!"
|
||||
"12140731451","12114284409","119695936","","","2010-04-14 02:50:23 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@dudeimlost I need to rewrite #scrobbleshark and move away from Google AppEngine. Didn't expect 1000 users! Sorry it's so laggy for you."
|
||||
"12127055723","12126943664","894911","","","2010-04-13 22:11:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke wheee!"
|
||||
"12110770286","","","","","2010-04-13 15:54:52 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","New MacBook Pros! Now to save up some $$"
|
||||
"12090100417","","","","","2010-04-13 06:18:03 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","RT @dalmaer traits.js is a minimal standards-compliant trait composition library for Javascript http://is.gd/bqwux by Tom Cutsem&Mark Miller"
|
||||
"12065048772","12064718775","14273142","","","2010-04-12 20:43:41 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko I e-mailed support and they gave me a free VIP account. I guess I'll worry about renewing in a year ... sorry that isn't helpful."
|
||||
"12063461234","12060622395","918271","","","2010-04-12 20:04:37 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@davidhund It's almost as stable as Grooveshark's RSS feeds. Need to move off of GAE. Scrobbleshark is more popular than I anticipated."
|
||||
"11971479272","","","","","2010-04-11 03:29:51 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","I'm at Esquimalt Lagoon in Colwood http://gowal.la/s/5H6X"
|
||||
"11952230982","","","11951964520","14358152","2010-04-10 19:26:48 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","RT @mentalguy: The best and worst things about Ubuntu is that Mark Shuttleworth isn't Steve Jobs."
|
||||
"11952207220","","","","","2010-04-10 19:26:10 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","There's a new version of grooveshark for iPhone! Has free trial and less bugs. Yay :)"
|
||||
"11866230279","","","","","2010-04-09 05:50:50 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Twitter lists should have an option to let your mutual followers edit them too. Might be fun!"
|
||||
"11863183373","","","","","2010-04-09 04:25:36 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Wonder if Tog's articles were any influence on app folders in iPhone OS 4. http://is.gd/bl0lO http://is.gd/bl0lN http://is.gd/bl0lY"
|
||||
"11863072449","11861758691","894911","","","2010-04-09 04:22:47 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke yes indeed. re-reading some webmachine docs made for an enlightening evening."
|
||||
"11861679739","","","","","2010-04-09 03:49:41 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","Microsoft offers much-needed fix for Windows OSS development http://tinyurl.com/y9nltme [Ed: this is awesome! Good for MS.]"
|
||||
"11858253272","","","","","2010-04-09 02:34:33 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Any sufficiently complicated web app contains an ad hoc, informally-specified, bug-ridden, slow implementation of half of Webmachine."
|
||||
"11837968216","11808141498","14273142","","","2010-04-08 18:52:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko On recent hardware Linux in a VM is a good option. When using Windows I do exactly that for real work. xmonad+full screen VM = :)"
|
||||
"11731951764","","","","","2010-04-07 01:55:18 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","I'm at Nando's in Victoria http://gowal.la/s/5xPX"
|
||||
"11722285856","11708256727","14273142","","","2010-04-06 22:32:11 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko I was a big Linux guy before @JimRoepcke converted me in 2005. I miss having a feature-rich window manager and stuff."
|
||||
"11722174592","11708256727","14273142","","","2010-04-06 22:29:49 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko MBP is a great machine no matter what OS you put on it! New Sony Vaio Z looks nice too, MBP needs a refresh badly."
|
||||
"11674454811","","","","","2010-04-06 02:08:07 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","A block away I hear the cops yelling to come out of the house. Someone's getting busted. #yyj"
|
||||
"11674060781","","","","","2010-04-06 02:00:01 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","No South bound traffic at quadra and Falmouth. Police roadblock. #yyj"
|
||||
"11673722071","","","","","2010-04-06 01:52:50 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","Double tap Home for iPod controls anywhere, not just at the lock screen. Who knew?! #iPhone"
|
||||
"11672837197","","","","","2010-04-06 01:34:32 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","A watched box never updates. Fuck it, it's future-Sami's problem now!"
|
||||
"11672381507","11671939412","14273142","","","2010-04-06 01:25:10 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","@lunafiko heh, yeah it's my best OS X box. When new MacBook pros come out I'll get one to replace my old 2006 MacBook."
|
||||
"11671160487","","","","","2010-04-06 01:00:20 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","10.6.3 is taking forever to install on my hackintosh. It better just work because I'm more than ready to go home!"
|
||||
"11669340501","","","","","2010-04-06 00:22:18 +0000","web","YAY! I've been waiting too long. http://arstechnica.com/apple/news/2010/04/apple-not-ignoring-macbooks-this-month-despite-mobile-mania.ars"
|
||||
"11607873405","","","","","2010-04-04 22:00:55 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Event based programming goes hand in hand with functional programming. It's hard to mix for loops, breaks, and continues with callbacks."
|
||||
"11607503975","","","","","2010-04-04 21:51:05 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","<3 js2-mode ... makes me want to write an Emacs Lisp parser for every language I use in Emacs."
|
||||
"11554649434","11552691428","27705041","","","2010-04-03 21:52:56 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Machiventa It does take a bit of time. Might be able to cut that down. Grooveshark updates feeds every 10 min so that's the limit though."
|
||||
"11518167255","","","","","2010-04-03 04:25:35 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","[[[[""00""]]]] == false; [[[[""true""]]]] == ""true""; [[""1""]] + [[""2""]] == 12; #wtfjs (via @zii)"
|
||||
"11513861902","","","","","2010-04-03 02:45:09 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Changing it up, Cambodian jungle curry today! ? at The Noodle Box (Douglas St.) http://gowal.la/s/LKi"
|
||||
"11507303156","","","","","2010-04-03 00:08:29 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Photo: ? at James Houlihan Park http://gowal.la/c/xked"
|
||||
"11499943233","","","","","2010-04-02 20:50:41 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","Was going storm watching but it's not very stormy anymore. Oh well, Arbutus cove will still be nice!"
|
||||
"11493944313","","","11493489451","6149572","2010-04-02 18:18:18 +0000","web","RT @dysinger: Somebody tell me if there is a dvorak keyboard layout for the pop up & external keyboard for the #ipad :) I want one but n ..."
|
||||
"11441266210","","","","","2010-04-01 19:40:23 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Just ate BBQ prawn stir fry ? at 1550's http://gowal.la/s/3gMB"
|
||||
"11439208380","","","","","2010-04-01 18:48:54 +0000","<a href=""http://twitpic.com/"" rel=""nofollow"">TwitPic</a>","http://twitpic.com/1cg0dk -"
|
||||
"11430328586","","","","","2010-04-01 15:36:35 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","New Zealand patent reform bill says no to software patents http://tinyurl.com/y8wl9vy"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,58 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"15157172140","","","","","2010-06-01 05:04:52 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Probably not something your computer tells you everyday: ""Merge made by octopus."" #git"
|
||||
"15073858309","","","15073735648","780561","2010-05-31 00:31:12 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @technoweenie: MAP REDUCE MAP REUSE MAP RECYCLE (http://bit.ly/X2PDw) that's something i can get behind"
|
||||
"15066279424","","","","","2010-05-30 21:49:35 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Warm and rainy. Kind of nice! #victoria #summer"
|
||||
"15062511934","","","","","2010-05-30 20:23:20 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Links that open iTunes automatically make me want to hurt people. If I wanted to open iTunes I would fucking open iTunes."
|
||||
"15057979597","","71894064","","","2010-05-30 18:39:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@boastr_net Unsure where to report bugs so I'll bug you on twitter :) Window snapping only works with the dock on the bottom.Thanks for BTT!"
|
||||
"15055823784","","","","","2010-05-30 17:53:07 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","might not be ""street"" ... http://i.imgur.com/tWkCL.jpg"
|
||||
"15027296805","","","","","2010-05-30 07:26:51 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Still no multitouch trackpad, but BetterTouchTool is worth downloading for the drag-to-left-or-right-edge-to-fill-half-screen feature."
|
||||
"15019387240","","","","","2010-05-30 04:17:32 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Gonna be an uncle 8 times over next Jan! Maybe I'll try for a singapore trip at Christmas."
|
||||
"15017258362","","","14984935918","17708254","2010-05-30 03:36:04 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @NeilRobbins: ""#Riak works correctly mathematically because it doesn't try to break the laws of the universe"" Joe Armstrong http://bi ..."
|
||||
"14990033165","14959767218","894911","","","2010-05-29 18:05:56 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke & what can I say, ich mag der blinkenlichten. amazing I don't use menumeters anymore. what's my mem usage? net throughput??!! :)"
|
||||
"14989858968","14959767218","894911","","","2010-05-29 18:02:27 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke Don't have it, just saw videos of SSD vs HDD for common tasks. SSDs use 0.5-1w, complete tasks faster, get back to idle fast!"
|
||||
"14951657363","","","","","2010-05-29 03:30:32 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Sometimes I wish null and undefined in JS were like nil in Obj-C. I'd like the option to turn on whiny nulls in certain places tho, for dev."
|
||||
"14949672773","","","","","2010-05-29 02:54:21 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Uh oh ... convincing myself that it's a waste of $$ to keep the mech HDD in my new MBP. New, fast machine dragged down by the HDD: not cool."
|
||||
"14947029957","14945272206","894911","","","2010-05-29 02:05:03 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke Heh, probably the only thing we've ever decided on politely now that you mention it!"
|
||||
"14946609901","14946077502","894911","","","2010-05-29 01:57:23 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke Apps using non-standard text controls will have to explicitly enable cut/copy/paste. Ouch! UITextField will have to improve."
|
||||
"14945209277","","","","","2010-05-29 01:31:14 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Noticed the Canada subreddit description for the first time: ""We decided on this description politely."""
|
||||
"14846356261","","","","","2010-05-27 16:49:26 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Already late, may as well be late with coffee :) ? at Starbucks Quadra & Mackenzie http://gowal.la/v/c/PeCF/tw"
|
||||
"14813149739","","","","","2010-05-27 04:40:47 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","RT @ohmyzsh: Declaring that next Tuesday, June 1st, is convert a bash user day. Direct your loved ones here: http://is.gd/cqP8f"
|
||||
"14667910801","","","","","2010-05-25 03:24:55 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","It starts innocently, just an americano. Then you add the size, possibly a flavour shot. Suddenly your order makes you sound douchey."
|
||||
"14662184431","","","","","2010-05-25 01:45:30 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Buskers with brass playing the final countdown. That is pure, concentrated awesome! ? at Inner Harbour Causeway http://gowal.la/c/NxGo"
|
||||
"14660970421","","","14652351912","12712742","2010-05-25 01:24:22 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @zii: A new and devious phishing attack. http://bit.ly/aMX3D6 (via @azaaza) well played sir"
|
||||
"14651923810","","","14646836334","8038312","2010-05-24 22:40:00 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @izs: Ponder it deeply for a while, and then ignore it completely. Good ideas arrive when they're ready."
|
||||
"14598069581","","","","","2010-05-24 03:15:51 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I think a ruby dsl is a good fit for starlogo. Might have to play with that. With rubinius it'd be turtles all the way down. :)"
|
||||
"14571144876","","","","","2010-05-23 18:15:35 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","For the love of science, s/NoSQL/DocDB/g to help stop the madness. The term ""NoSQL"" is a giant blunder.
|
||||
|
||||
#nonosql #docdb #nosql"
|
||||
"14521573978","","","14521160441","6509982","2010-05-22 23:14:28 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @argv0: Look at your DB. Now back to me. Now back at your DB. Now back to me. I'm the DB your DB could scale like if your DB was ..."
|
||||
"14518843441","","","","","2010-05-22 22:07:15 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","About to watch a haggis hurling competition. The record is 190 ft!"
|
||||
"14451956498","","","","","2010-05-21 20:52:41 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Well, I can see github again. That was short-lived."
|
||||
"14451901173","","","","","2010-05-21 20:51:25 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","ugh, apparently Shaw in Victoria is one of the ISPs/regions that can't get to github right now. guess that means it's lunch time!"
|
||||
"14232765831","14217793600","14358152","","","2010-05-18 15:06:47 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@mentalguy I remember that feeling. Here are 9 more to blow your mind: http://en.wikipedia.org/wiki/Ontario_(disambiguation)"
|
||||
"14232450331","","","14227650848","29777587","2010-05-18 15:00:42 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @pharkmillups: thorough, great post from the the mozilla metrics team about choosing a nosql data store http://bit.ly/cgFx7j #cassand ..."
|
||||
"14203180461","","","14202822307","645143","2010-05-18 03:14:10 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @tirsen: emacs day #2: an abundance of yaks needing shaves."
|
||||
"14200790046","","14174890","","","2010-05-18 02:32:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@semel just discovered @dvlprs, surfed to http://dvlprs.com/kangax and saw a JS alert stating ""1"". thought you'd like to know. cool site!"
|
||||
"14121195105","14101734821","22406953","","","2010-05-16 21:33:58 +0000","web","@mahyarm ha ha, i knew someone would ask that! :) i was just walking down Government st, past the shop and he jumped out at me."
|
||||
"14077389539","","","","","2010-05-16 04:17:29 +0000","<a href=""http://www.tweetdeck.com/"" rel=""nofollow"">TweetDeck</a>","It's really nice to lean back in my chair and read a long article on the iPad. Typing while leant back, not so much. Thumbs method is ok."
|
||||
"14064594313","","","","","2010-05-15 23:38:52 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","iPad + MyWi is good enough, and costs only $10, once. Caveats: iPhone gets a bit hot and MyWi has annoying bugs."
|
||||
"14061668953","","","","","2010-05-15 22:25:52 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Some guy from Lush just said the word cuticle to me. Wtf?! Do I look like a guy who cares about cuticles?"
|
||||
"13822590357","13821487356","8959562","","","2010-05-12 01:33:13 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","@strlen 15"" i7 hands-down"
|
||||
"13802309935","","","13750048241","16891384","2010-05-11 18:23:55 +0000","web","RT @KentBeck: switching quickly between the onion and reuters offers unique mental health challenges (& unintended humor)"
|
||||
"13796031037","","","13790430027","9980812","2010-05-11 16:08:43 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","RT @igrigorik: ah, turns you can make git pull --rebase the default ""pull"": http://bit.ly/a2RK09 - kudos to @vsizikov for the tip"
|
||||
"13795757751","13777762860","22406953","","","2010-05-11 16:03:11 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","@mahyarm Inner harbour and James bay are really packed with tourists. Quiet spots are no longer quiet, for better and worse. :)"
|
||||
"13688609117","","","13687971650","14372486","2010-05-09 21:25:54 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","RT @engadget: Magic Mouse syncs with jailbroken iPad, enabling cursory cursor control (video) http://bit.ly/av8H7a"
|
||||
"13634872590","","","","","2010-05-08 23:38:56 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","I keep forgetting how much downtown sucks in the summer. Have to stick to nature!"
|
||||
"13633518545","","","","","2010-05-08 23:06:04 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","It's so calm out today. A really nice change for
|
||||
Victoria! http://twitpic.com/1m7g4b"
|
||||
"13617072239","","","13592433292","13192","2010-05-08 16:28:38 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","RT @avibryant: Yes, I'm a languages geek. Laughed out loud all through this: http://bit.ly/nAXkj"
|
||||
"13617029992","13593943165","14273142","","","2010-05-08 16:27:46 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","@lunafiko the 1st time i ran vim I had to hard reset my new Linux install. Didn't know how to type, quit, or switch virtual consoles :)"
|
||||
"13593669269","","","","","2010-05-08 06:03:17 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","""Vim mode in emacs: unbind all keys. It beeps at you whatever you do, and you can't quit."" http://is.gd/bZHQK"
|
||||
"13585600820","","","","","2010-05-08 02:55:46 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","Downtown ducks. Could be the ducks a coworker saw getting it on yesterday. http://twitpic.com/1lxm8c"
|
||||
"13585530857","13582573552","894911","","","2010-05-08 02:54:18 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","@JimRoepcke i'd say bacon for dinner is accomplishment enough. anything after that is just gravy."
|
||||
"13582076013","","","","","2010-05-08 01:43:22 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I don't try to be different, I try to use the best tools. It just so happens that the default or most popular tools are often not the best."
|
||||
"13578006426","","","","","2010-05-08 00:18:19 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","ha ha, thanks guys! http://wiki.github.com/280north/cappuccino/objjc at least it was good for a laugh. :)"
|
||||
"13556062187","","","13544675482","12497","2010-05-07 16:02:20 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","RT @simonw: So apparently Ajax means ""uses JavaScript"" and HTML5 now means ""doesn't use Flash"""
|
||||
"13463697190","","","13457708148","14113080","2010-05-06 02:39:32 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","RT @sophistifunk: Alan Kay is definitely famous enough to call Steve and get Scratch back."
|
||||
"13371443876","13369743525","14273142","","","2010-05-04 16:03:20 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","@lunafiko good timing it's starting to get nice! Have a good trip."
|
||||
"13217100047","","","13216605013","14206068","2010-05-02 00:45:26 +0000","<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","RT @tlrobinson: ""Passing callbacks is the *price* of asynchronous API's, not the benefit."""
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,86 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"17466589345","","","","","2010-07-01 04:06:30 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Man, why haven't I tried Cmd-Shift-G in the simple save dialog on OS X till just now? Staying on the home row makes me happy."
|
||||
"17377632680","","","","","2010-06-30 01:28:25 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Wow, Divvy looks really cool. Better than SizeUp. Might have to buy Divvy as well. Man, I really just want Xmonad. Some days I miss Linux :("
|
||||
"17360235144","","","17358269406","8675502","2010-06-29 20:15:57 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @me1000: woot!!! RT @nciagra: Rerelease of CappuGeo: CoreLocation and MapKit for Cappuccino. http://github.com/nciagra/CappuGeo"
|
||||
"17308681929","","","17307981492","5444392","2010-06-29 05:04:17 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @evanphx: Um... http://bit.ly/cLP73J ... there is a japanese company making a hardware ruby interpreter for embedded programming?"
|
||||
"17303613084","","","","","2010-06-29 03:40:05 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","That *after* a slide saying MS wants to copy Apple's reliability and great UX. MS' path doesn't lead to their goal. http://bit.ly/cCZMuQ"
|
||||
"17303483300","","","","","2010-06-29 03:38:04 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Windows 8 Push Button Reset: We know there's a problem but instead of fixing the OS we'll just burden the user with more crap. Ah, progress."
|
||||
"17268853856","","","","","2010-06-28 18:02:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","I need to create an Objective-J mode for Emacs that's based on js2-mode first and objc-mode second. objj-mode sucks at object literals."
|
||||
"17260432677","","","17256415901","9144132","2010-06-28 15:48:45 +0000","web","RT @flipsasser: Dear Ruby developers learning Node.js: JavaScript is not Ruby. That is all."
|
||||
"17260256743","17243190836","22406953","","","2010-06-28 15:46:06 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mahyarm Tweet some pics! I haven't heard of Ubud before and it looks pretty amazing. How much longer are you traveling for?"
|
||||
"17260055166","17243140070","22406953","","","2010-06-28 15:43:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mahyarm It's not the amount of state, but every time new state is introduced there are consequences that aren't always clear at first."
|
||||
"17228558579","","","","","2010-06-28 05:08:57 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","(cache invalidation, not caching. whatever)"
|
||||
"17228472876","","","","","2010-06-28 05:07:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Most state is essentially caching, i.e. premature optimization. Not to mention that caching is one of the two hard things in comp sci."
|
||||
"17228435251","","","","","2010-06-28 05:06:32 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Have I mentioned today that state is evil? Yes, evil. The Devil, Al Shaitan, Lucifer, Azazel, Lord of the Underworld, et cetera."
|
||||
"17223783303","17222099807","27302287","","","2010-06-28 03:47:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jacobrothstein Very possible. Lisp is dead easy to parse, and if you stick close to JS semantics it's easy to emit the resulting JS too."
|
||||
"17217461602","","","","","2010-06-28 02:32:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Too bad locally owned coffee shops aren't open late on Sunday. Most good local shops have free WiFi, it's only Starbucks stuck in 2001."
|
||||
"17217156178","","","","","2010-06-28 02:28:20 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Bell gives you 2 free hours of WiFi per day at Starbucks now. Have to sign up for it, but it's still better than nothing."
|
||||
"17193202984","17192255856","894911","","","2010-06-27 20:39:03 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke Ah, must be new since 0.8 then. It is nice."
|
||||
"17191418310","","","","","2010-06-27 20:09:17 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","The Objective-J parser supports the #pragma pre-processor directive. All this time I've been commenting them out."
|
||||
"17188013114","","","","","2010-06-27 19:16:59 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Every non trivial bug I hit seems to be because of state. State is evil."
|
||||
"17144545963","","","","","2010-06-27 05:45:04 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Sadly katmouse is still required to make scrolling usable in Windows 7. http://ehiti.de/katmouse/ When will MS ever fix this?"
|
||||
"17143720414","","","","","2010-06-27 05:28:15 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Windows: Zero to infuriated in 3s flat. Half the reason people are so in love with OS X and Linux is because Windows is so utterly terrible."
|
||||
"17141713893","","","","","2010-06-27 04:49:21 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Ugh, sorry about that noise. Didn't realize every comment on the justin.tv chat was going to be tweeted. Won't happen again!"
|
||||
"17122744008","","","","","2010-06-26 22:50:23 +0000","<a href=""http://www.tumblr.com/"" rel=""nofollow"">Tumblr</a>","Video: Ignite Rails - Chris Wanstrath?s How to Bootstrap a Business (via igniterails) http://tumblr.com/xzoc8ev1p"
|
||||
"17118553616","16781467689","54403950","","","2010-06-26 21:19:02 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Pre101 it doesn't prevent sleep on lid close. I'm not sure if it even prevents safesleep on my new macbook! (sorry I missed this reply)"
|
||||
"17068335384","","","","","2010-06-26 04:32:08 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>",":) http://i.imgur.com/3dQWy.jpg"
|
||||
"16944935679","","","","","2010-06-24 17:08:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Just used Time Machine to restore something for the first time. Something I'd lost with git rebase. Time Machine ftw today."
|
||||
"16912476511","","","","","2010-06-24 07:30:38 +0000","<a href=""http://www.tumblr.com/"" rel=""nofollow"">Tumblr</a>","Your App?s Website Sucks - learn try buy communicate enhance http://tumblr.com/xzoc2zj4u"
|
||||
"16747944013","16747035172","894911","","","2010-06-22 04:40:54 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke But unless I'm missing something smartsleep gets you 99% of the way. The last 1% is just not using your machine w/ < 5m battery."
|
||||
"16747555171","16747035172","894911","","","2010-06-22 04:33:41 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke Oh yeah, you wanted a battery reserve instead of hibernation."
|
||||
"16747242957","","","","","2010-06-22 04:28:07 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","AnandTech reports that TRIM appears to be coming to OS X ... sometime. I don't have an SSD yet but it's about time! :p http://bit.ly/d00uZv"
|
||||
"16746934457","","","","","2010-06-22 04:22:40 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Only hibernate when your battery is low: http://www.apple.com/downloads/macosx/system_disk_utilities/smartsleep.html (ping @JimRoepcke)"
|
||||
"16705280757","","","","","2010-06-21 16:28:49 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","JavaScript based SVG editor in the browser. Great stuff. http://bit.ly/cje47p"
|
||||
"16669212473","","","","","2010-06-21 04:35:20 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Speed Tracer extension for Chrome, nice! http://bit.ly/6PTyvP"
|
||||
"16567795804","","","","","2010-06-19 19:47:13 +0000","web","Steve Jobs on modern PC devices at D5, 2007 http://youtu.be/Vc8QXzYQoBY"
|
||||
"16526625913","","","","","2010-06-19 06:05:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","The videos app for iPad should put the scrubber at the bottom. Your hand covers the video while scrubbing. Pretty annoying."
|
||||
"16450349412","","","","","2010-06-18 06:15:58 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","If you haven't watched Crockford on JS yet, go watch them! Crockford'll forgive you for starting with #2. http://yuiblog.com/crockford/"
|
||||
"16365440175","","","","","2010-06-17 05:16:50 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","So security on the web is more or less impossible. One less thing to worry about! ;-) http://blip.tv/file/3684946?file_type=flv"
|
||||
"16288584486","","","","","2010-06-16 07:01:14 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I saw it before but didn't fully appreciate how awesome it is. Time to learn me a CoffeeScript. JS looks so noisy now. http://bit.ly/9iPFNc"
|
||||
"16285683620","","","","","2010-06-16 05:53:21 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","caught up on a lot of email but am probably declaring bankruptcy on the rest. i'm just no good at keeping in touch."
|
||||
"16235270330","","","","","2010-06-15 16:08:31 +0000","web","This is why open standards are paramount. Adobe is spread thin between mobile and desktops and can't deliver. http://j.mp/b3n5Wg"
|
||||
"16207987123","","","","","2010-06-15 07:45:09 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","""Just because we're competing with somebody doesn't mean we have to be rude."" -- Steve Jobs http://bit.ly/9l6Mck (around 30m00s)"
|
||||
"16194027552","16188134170","17088322","","","2010-06-15 02:15:32 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@ChrisNoel_Vic it was great! Learned a lot. We can do lunch or maybe dinner. I think Cailee and Eric wanted to meet for beers too."
|
||||
"16173069344","16088965710","72948424","","","2010-06-14 20:09:18 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@UltanKC I hope so. I was at wwdc last week but other than that I'm running out of excuses!"
|
||||
"16029316839","","","","","2010-06-12 20:56:52 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Round and round and round they go... Where they stop, on the MacBook pro! #dataconsolidationisboring http://yfrog.com/4bf61gj"
|
||||
"16027055399","","","","","2010-06-12 20:12:16 +0000","web","Finally picked up my 15"" Core i7 MBP today. Words can't describe how badly it trashes my 2006 ""Yonah"" MacBook (Core Duo). Steam here I come!"
|
||||
"16026769413","","10552322","","","2010-06-12 20:06:49 +0000","web","@codykrieger Thanks for gfxCardStatus, you rock! Wish I could donate more."
|
||||
"16010998454","","","","","2010-06-12 15:45:40 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Safari 5 moved the ""always show tab bar"" option to View -> Hide/Show Tab Bar (??T) Once shown it will stay visible."
|
||||
"15956701990","","","15953679158","5813712","2010-06-11 21:28:44 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @antirez: Linus is cool: http://bit.ly/clfl95"
|
||||
"15933749993","","","15933354129","70596949","2010-06-11 14:52:36 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @creationix: Connect app on quad-core machine over a real network connection. 35231.05 Reqs/sec http://bit.ly/aCWnd5 #nodejs #connect"
|
||||
"15886178196","","","","","2010-06-10 23:26:28 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Seems a particular session prompted a change in Apple's license. Intent is likely the same but nice to know for sure. http://bit.ly/aQtJCX"
|
||||
"15884188707","15851306796","11559032","","","2010-06-10 22:51:04 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@jfahrenkrug Don't think I'll be able to make @jsconfeu this year. There's always next year though!"
|
||||
"15880166721","","","","","2010-06-10 21:36:55 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Cocoa code using GNU coding guidelines, zee goggles, zey do nosink!"
|
||||
"15874943552","","","","","2010-06-10 20:05:16 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Outrage re: Safari's new reader button: let's keep in mind that this is already possible, and Safari has a very small share of the market."
|
||||
"15854961644","","","15854031063","18137723","2010-06-10 14:45:06 +0000","web","RT @raganwald: Succinct but insightful comment about agile & productivity: http://bit.ly/ahajET"
|
||||
"15645386875","15644224653","668423","","","2010-06-07 17:48:07 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@mikeal I think it's $428 million"
|
||||
"15644274453","","","","","2010-06-07 17:30:14 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Apple has paid $1 billion to app store developers from 5 billion downloads. #wwdc"
|
||||
"15631525613","15581615212","54403950","","","2010-06-07 14:08:36 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Pre101 I hadn't planned on it since I'm not doing webos anymore but I guess we'll see how Wednesday goes!"
|
||||
"15630937798","","","","","2010-06-07 13:59:34 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","At 5th and Howard. Apparently people were lining up for the keynote since 10.30pm last night. That's beyond insane! #wwdc"
|
||||
"15607885132","","","","","2010-06-07 05:05:15 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","I've said that Apple wouldn't make a solar iPhone OS device because it'd be ugly. Solar touchscreen changes that: http://bit.ly/d7sXce"
|
||||
"15606622221","","","","","2010-06-07 04:38:09 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","#WWDC parties: http://macindie.com/2010/06/definitive-wwdc10-parties-list/"
|
||||
"15606467111","","","15596793474","636923","2010-06-07 04:34:56 +0000","web","RT @siracusa: Congratulations to all the Ars Design Awards winners! http://bit.ly/cQ8Q7I"
|
||||
"15605100822","15581615212","54403950","","","2010-06-07 04:07:29 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@Pre101 I didn't know about it (not doing webOS dev at my current job) but we'll see how Wednesday goes I guess!"
|
||||
"15576860782","","","","","2010-06-06 19:57:17 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Barely seen a 3g signal since arriving in SF. No wonder AT&T customers are pissed! #ATT #fail"
|
||||
"15571337242","","","","","2010-06-06 18:06:46 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","I'm at Marriott in San Francisco, CA http://gowal.la/r/CV9"
|
||||
"15569457675","15563895743","17088322","","","2010-06-06 17:30:51 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@ChrisNoel_Vic thanks man! Pretty excited. :) We should meet up for beers when I get back."
|
||||
"15564749432","","","","","2010-06-06 16:06:54 +0000","<a href=""http://gowalla.com/"" rel=""nofollow"">Gowalla</a>","Just Arrived in #sfo from #yyj ? at SFO San Francisco International http://gowal.la/r/BUD"
|
||||
"15555265243","","","","","2010-06-06 13:23:24 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","The pilgrimage begins. #wwdc"
|
||||
"15537996658","15537136188","894911","","","2010-06-06 06:00:51 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke * _sjs slaps JimRoepcke around a bit with a large trout"
|
||||
"15537118785","15536811798","8675502","","","2010-06-06 05:41:08 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@me1000 er, I meant *list* comprehensions of course, not lisp comps."
|
||||
"15536999101","15536811798","8675502","","","2010-06-06 05:38:36 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@me1000 imo you couldn't really go wrong with either one. Both have cool (and useful) features. Lisp comps in Python, blocks in Ruby, etc."
|
||||
"15536647099","15536105113","8675502","","","2010-06-06 05:30:51 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@me1000 It sounds like Python might fit you better. I generally prefer Ruby but like Python as well. Python is more consistent w.r.t syntax."
|
||||
"15531227374","","","","","2010-06-06 03:45:18 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","""I feel like my answers are quite trivial since nobody really knows how to design a good language, including me."" -- Alan Kay"
|
||||
"15531117225","15529556525","22406953","","","2010-06-06 03:43:17 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@mahyarm Good idea, I definitely should have looked into that. Hopefully I remember next time."
|
||||
"15515872892","","","","","2010-06-05 22:47:58 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Rogers data roaming rates for the US are insane. I feel like such a sucker paying them. Collusion by Canadian telcos drives me mad #fuckCRTC"
|
||||
"15514883507","","","15511815228","33493","2010-06-05 22:26:09 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @peterc: The Mrs asked if I wanted to come swimming. I said ""What's the point, it's just a big bathtub really."" #iPad"
|
||||
"15395309393","15392972590","894911","","","2010-06-04 05:33:26 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke I guess this is old news by now but I hadn't seen it before: http://www.facebook.com/KipDrordy"
|
||||
"15336024643","15335145390","14094622","","","2010-06-03 16:19:51 +0000","web","@flohei Marco has a bookmarklet that exports your favourite sessions to iCal: http://www.marco.org/658617964 #wwdc"
|
||||
"15310621607","","","","","2010-06-03 07:52:18 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Random reads & writes improve the most since access time is now constant. Mechanical HDDs aren't even in the race: http://is.gd/cAHFy"
|
||||
"15310547287","","","","","2010-06-03 07:50:09 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","SATA 6Gbps and Sandforce-based SSDs are looking good. And they'll be even better in 2011. http://is.gd/cAHxa"
|
||||
"15308981799","","","15308081876","788245","2010-06-03 07:06:57 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @iTod: Proper Fucking Booming. [NSFW] http://tod.nu/fuckingboom"
|
||||
"15307350068","","","","","2010-06-03 06:23:47 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","It's official, I'm going to WWDC! I haven't been before so it's pretty exciting."
|
||||
"15184224740","","","15181550616","14560304","2010-06-01 15:13:44 +0000","<a href=""http://dev.twitter.com/"" rel=""nofollow"">API</a>","RT @frank06: the real-world is often async: starbucks case http://www.eaipatterns.com/ramblings/18_starbucks.html"
|
||||
"15163381551","","","","","2010-06-01 07:50:31 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Apparently I really suck at using a touchpad and/or mouse. Probably why I prefer to use the keyboard. discrete motions ftw"
|
||||
"15163335695","","","","","2010-06-01 07:49:10 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Fun, light JavaScript hacking. In the browser and on the command line. result is biggist: http://is.gd/cxRAr and a patch http://is.gd/cxRAs"
|
||||
"15162997606","","","","","2010-06-01 07:39:13 +0000","<a href=""http://itunes.apple.com/app/twitter/id333903271?mt=8"" rel=""nofollow"">Twitter for iPhone</a>","Didn't realize how much I'd come to rely on the new experimental branch of GitX. It's pretty awesome. http://github.com/brotherbard/gitx"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,43 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"19974275691","","","","","2010-07-31 06:50:50 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","It's fast."
|
||||
"19954306661","","","","","2010-07-31 01:19:22 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Torx bits finally arrived from KY. Time to trim the fat from $HOME and get this SSD running!"
|
||||
"19787619703","19776875582","15481055","","","2010-07-29 01:43:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@darrell_schulte Thanks, trying it. Drag lock might not behave as I expected at all. Clicking once didn't stop the dragging behaviour."
|
||||
"19775362858","","","","","2010-07-28 22:32:33 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","New MacBook Pro trackpad firmware is buggy on my 2010 15"" MBP. Sometimes it thinks buttons are held down when they're not. --textEditing :("
|
||||
"19606105282","19229094336","159816349","","","2010-07-26 22:13:24 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mayolaycamp No interest. Blocked for spam."
|
||||
"19533135493","","","","","2010-07-26 00:44:22 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","YYC -> YYJ ... Back to reality"
|
||||
"19007757579","","","18800856899","14273142","2010-07-20 16:52:25 +0000","web","RT @lunafiko: Launched my new web app: it sends you text messages when stuff you care about gets updates. Greg's Pulse: http://gregspuls ..."
|
||||
"18781934785","","","","","2010-07-17 17:51:27 +0000","<a href=""http://foursquare.com"" rel=""nofollow"">foursquare</a>","I'm at Cora?s Breakfast & Lunch (#360, 5111 North land Drive NW, Calgary). http://4sq.com/8wNEq5"
|
||||
"18750002115","","","18749654267","811350","2010-07-17 07:08:46 +0000","web","RT @kn0thing: Did I really just watch a guy on a unicycle playing StarWars on his bagpipes? Awesome. http://youtu.be/fzBvNVNEo3U"
|
||||
"18652408973","18651848056","12712742","","","2010-07-16 02:49:38 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@zii good choice, your hands & wrists will thank you! If it's too much of a change maybe try colemak, which is also comfortable."
|
||||
"18621140591","18620690473","14231571","","","2010-07-15 18:09:57 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@marcoarment May as well go for 1 TB at that point. Winter will bring higher capacities & lower prices. http://bit.ly/9F8uE5"
|
||||
"18621075368","18619439643","6608642","","","2010-07-15 18:08:51 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@action_jay Telus was pretty bad. With Shaw I can get >= 1 MB/s on well seeded (infringing) torrents, but usually set my limit to 500kb/s."
|
||||
"18618171311","18611930887","6608642","","","2010-07-15 17:21:56 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@action_jay Good point. I haven't noticed throttling recently so maybe things changed in the last 5 years. 3 years of those I was w/ Telus."
|
||||
"18611754195","18611180046","6608642","","","2010-07-15 15:47:50 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@action_jay In my experience with Shaw only infringing torrents are throttled. Ubuntu torrents usually download at 1-2 MB/s."
|
||||
"18553248050","","","18553204783","894911","2010-07-14 22:30:00 +0000","web","RT @JimRoepcke: An Xcode project's Overview toolbar menu (where you set the config/target/etc) no longer has a Simulator or Device item. ..."
|
||||
"18532394200","","","","","2010-07-14 16:38:04 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Not sure if I should keep saving videos w/ Instapaper. They accumulate much more than text articles and take longer to chew through."
|
||||
"18379356012","","","","","2010-07-12 20:15:19 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Aha! Nginx's rewrite leaves the original URL in the location bar only if you rewrite to a relative URL. Last problem solved!"
|
||||
"18369805129","18368061134","12712742","","","2010-07-12 17:26:24 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@zii iirc from another Crockford talk, the difference is trailing whitespace after the backslash. Tricky!"
|
||||
"18366966341","","","18356643669","42421507","2010-07-12 16:40:28 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @sroucheray: Excellent ECMAScript 5 intro by Douglas Corckford : The New and Improved Parts http://slidesha.re/drVb8q #javascript"
|
||||
"18321294951","","","","","2010-07-12 02:17:44 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Wow, that was too easy. Should've switched to nginx a long time ago."
|
||||
"18313116093","","","","","2010-07-11 23:53:53 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Starting the Apache -> nginx switch. Hopefully it's a painless migration (ha)."
|
||||
"18298528656","18297175374","894911","","","2010-07-11 20:26:34 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke @nevyn http://en.wikipedia.org/wiki/State_pattern is ok. The drawing example is decent anyway."
|
||||
"18236179161","","","","","2010-07-11 01:33:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Mind blown. Invisible Tetris?! http://www.youtube.com/watch?v=jwC544Z37qo"
|
||||
"18229965983","","","","","2010-07-10 23:31:04 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","YouTube begins support for 4K resolutions. http://bit.ly/dBCqjW Now all I need is an IMAX projector at home..."
|
||||
"18213623675","","","","","2010-07-10 18:14:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Voices of The Simpsons: http://farm1.static.flickr.com/37/91548339_5e0656486d_b.jpg"
|
||||
"18175479964","","","18171089437","27302287","2010-07-10 05:19:31 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @jacobrothstein: Weird javascript of the day: A regexp is a function. /^t/('test') is a match array. /^t/('no match') is null."
|
||||
"18175469322","18172237509","894911","","","2010-07-10 05:19:19 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke I blame the weather :)"
|
||||
"18129222659","","","18105017768","1541461","2010-07-09 16:06:33 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @opera: Opera launches viral campaign. Please RT."
|
||||
"18096935328","18096432910","894911","","","2010-07-09 06:12:04 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke He might not be around by the time this is ever viable for commercial airlines. I'm sure someone will fill his shoes though."
|
||||
"18095683523","","","","","2010-07-09 05:47:03 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","26-hour solar powered flight! That's really exciting. http://news.bbc.co.uk/2/hi/europe/10550430.stm"
|
||||
"18051073386","","","","","2010-07-08 17:36:13 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","To think this all started with a @reddit thread of ppl showing off tattoo photos... http://bit.ly/cErtrI (via @kn0thing)"
|
||||
"17987597382","","","17981975405","15662302","2010-07-07 22:54:05 +0000","web","RT @canice: echoing everyone else: WOW. just, wow. CF soldier in afghanistan writes open letter to the #G20 police http://bit.ly/djoWnO ..."
|
||||
"17974129306","","","17963046750","809760","2010-07-07 19:35:01 +0000","web","RT @badbanana: I won't dismiss Prince's internet prediction. You must admit he nailed the amount of partying we all ended up doing in 1999."
|
||||
"17972582348","","","","","2010-07-07 19:12:27 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Firefox 4's tabs on top looks terrible on OS X. It's like they didn't even try. I thought the UI below was supposed to belong to the tab! :/"
|
||||
"17963150494","17945860632","22406953","","","2010-07-07 16:53:06 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mahyarm None of that matters with the limited space for apps and inability to install to the SD card. Users don't care where things go."
|
||||
"17922724095","","","","","2010-07-07 04:26:35 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","I'll take a fixed and limited storage that just works over that headache any day. Let alone recommend it to non-tech savvy friends & family."
|
||||
"17922530337","","","","","2010-07-07 04:23:23 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Normal people should not have to think about this kind of thing. SD card mess on Nexus One: http://bit.ly/aFyeFe"
|
||||
"17879632664","","","","","2010-07-06 16:35:46 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","A watch with Bluetooth and an SDK. That could certainly be interesting. http://www.readwriteweb.com/archives/fossil_watch_api.php"
|
||||
"17874486983","","","","","2010-07-06 15:19:56 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Erlang on the JVM: http://wiki.github.com/krestenkrab/erjang/"
|
||||
"17684814957","","","","","2010-07-04 00:04:28 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Kim Jong Il is certifiably insane. I'd love to give myself ridiculously grand titles too though! http://harpers.org/archive/2005/02/0080381"
|
||||
"17628391831","","","","","2010-07-03 05:33:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","50min interview w/ Richard Feynman on Google Video: http://bit.ly/osyYq Or check out shorter clips on YouTube: http://bit.ly/a4cEzK"
|
||||
"17628169127","","","","","2010-07-03 05:29:23 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Richard Feynman has a fascinating mind. Easy to get sucked into his videos, and awesome that we can preserve this stuff for generations."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,48 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"22673362598","","","","","2010-09-01 03:06:43 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","I'm glad I found a workaround but Apple really needs to fix this. Wish I could check the status of filed bug reports that get closed ""dupe""."
|
||||
"22673150711","","","","","2010-09-01 03:03:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Workaround for stuck MBP trackpad: disable Dragging in trackpad prefs, then re-enable. That unstuck it for me just now. Hooray, no reboot."
|
||||
"22196470498","","","","","2010-08-26 17:36:59 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","username: samsonjs favourite band: NOFX #GSfriends (via a cool idea from @Grooveshark!)"
|
||||
"22072526745","","","22070124505","13370272","2010-08-25 08:32:34 +0000","web","RT @azaaza: Tabs in OSX Finder! http://totalfinder.binaryage.com / via @ia"
|
||||
"22070129223","22066310974","22406953","","","2010-08-25 07:33:57 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mahyarm Good point! I'll definitely go for a cloud-based one (it's for my mom). She had it OOB on her ooold Nokia and wants one again."
|
||||
"22056076156","","","","","2010-08-25 03:07:13 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Dear lazy twitter, is there a good, secure wallet app for iOS?"
|
||||
"22056046540","22055770179","13192","","","2010-08-25 03:06:47 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@avibryant I've had this, horribly annoying! Apparently turning BlueTooth off helps, can't confirm. Also 4-finger swipe might help."
|
||||
"21629375971","21609203634","794796","","","2010-08-20 02:37:38 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@joevandyk Glad I could help. :) Nice of you to share that with us!"
|
||||
"21531978748","","3806441","","","2010-08-19 00:06:11 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@grooveshark wow, thank you guys for not giving up on iOS! Hopefully Apple comes around, and if not Cydia will always be there. <3 the shark"
|
||||
"21279809496","21277141075","794796","","","2010-08-16 02:30:32 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@joevandyk And I had to set the chef server URL manually it /etc/chef/<something>.rb for the webui to work."
|
||||
"21279730919","21277141075","794796","","","2010-08-16 02:29:21 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@joevandyk Vagrant: http://bit.ly/9AwzqX http://bit.ly/c7nW3V http://bit.ly/ayuq6b Then add the recipe chef::bootstrap_server to your VM."
|
||||
"21271274747","","","21270897515","11768402","2010-08-16 00:19:43 +0000","web","RT @nciagra: My Macbook Pro keeps doing this trackpad stuck in mouseDown thing. It stops after a few minutes or if I restart. Any ideas?"
|
||||
"21259802445","","","","","2010-08-15 21:14:00 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Now ... I can haz 8gb of memory? plz? http://yfrog.com/jowo0p"
|
||||
"21259715432","","","","","2010-08-15 21:12:30 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Testing our app with 2 Riak nodes balanced behind 1 HAProxy node, and one web server node. On my notebook. With one command: vagrant up. \o/"
|
||||
"21213006592","","","","","2010-08-15 07:01:37 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","I used to check out my configs from github & symlink in ~ to get comfortable on a new box, but now I just run: wget -qO - bit.ly/newbox | sh"
|
||||
"21211099925","","894911","","","2010-08-15 06:23:11 +0000","web","@JimRoepcke And #vagrant's multi VMs make it too easy to share cookbooks and roles, don't even need to bother w/ symlinks."
|
||||
"21210998323","21209450841","894911","","","2010-08-15 06:21:11 +0000","web","@JimRoepcke It's great, but I decided it's easier to use chef-solo for VMs."
|
||||
"21201458248","","","","","2010-08-15 03:41:58 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","""polymorphism is a pretentious name for the concept of late binding. Late binding is a pretentious name for ..."" http://bit.ly/b1wRQo"
|
||||
"21201374618","","","","","2010-08-15 03:40:43 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Pretty easy to get an #opschef server running on #vagrant using chef-solo and the chef::bootstrap_server recipe."
|
||||
"21192974395","","","","","2010-08-15 01:32:08 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","MultiVM stuff in #vagrant is sweet. Going to have fun with that this weekend. http://vagrantup.com/docs/multivm.html"
|
||||
"21192209153","21190336879","22406953","","","2010-08-15 01:19:33 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mahyarm Stick with 3.1, there's not really anything great in 4.0. Esp. if you jailbreak and already have Backgrounder, folders, etc."
|
||||
"21188103327","","","","","2010-08-15 00:08:18 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Urban teepee! http://yfrog.com/69ag0wj"
|
||||
"21103222767","","","","","2010-08-13 23:11:53 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Looks like a bit of column A and a bit of column B."
|
||||
"21102824316","","","","","2010-08-13 23:05:21 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","GoDaddy's UI is horrible or I'm incredibly stupid. Of course those aren't mutually exclusive."
|
||||
"21088256453","21085789688","17025041","","","2010-08-13 19:06:45 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jtimberman It might be useful for a backup but it certainly shouldn't be the default behaviour. At least the fix is easy!"
|
||||
"21079809826","","","","","2010-08-13 16:58:45 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Prevent ._ files when creating tarballs on OS X: http://snipt.net/jrguitar21/prevent-dot-underscore-mac-os-x-tar/"
|
||||
"21079510547","21077009181","12712742","","","2010-08-13 16:54:38 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>",".@zii Node recipe is on github: http://bit.ly/aMsn0d Attributes undocumented but it's straightforward. #opschef #nodejs"
|
||||
"21077911489","21077009181","12712742","","","2010-08-13 16:33:26 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@zii I modified this gist http://gist.github.com/510314 to use attributes for the version (and ditched the solo if statement)."
|
||||
"21076554037","","","21076393639","13217612","2010-08-13 16:15:40 +0000","web","RT @chuq: please. If I visit your site, the first thing to NOT do is shove a modal dialog at me screaming SUBSCRIBE -- over what I want ..."
|
||||
"21076416524","","","","","2010-08-13 16:13:53 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Tab completion was merged into #nodejs v0.1.104, nice! Also nice to know that rolling out the new release is trivial w/ #opschef."
|
||||
"21076304728","21075337965","894911","","","2010-08-13 16:12:27 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke Not sure how it stacks up against the one you're at but the @Serious_Coffee in Westshore is pretty nice too."
|
||||
"21027581992","","","","","2010-08-13 02:33:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","I'm starting to get a handle on chef. It feels good to be able to spin up a node in minutes, with only a few commands. #opschef"
|
||||
"20939389257","","","20934106284","6707392","2010-08-12 02:44:25 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @sstephenson: Stay looks handy for switching between internal and external displays: http://cordlessdog.com/stay/"
|
||||
"20914578252","","","","","2010-08-11 20:34:41 +0000","web","It's nice that chef doesn't make me learn a new language in addition to learning chef itself."
|
||||
"20914507659","","","20913923028","3806441","2010-08-11 20:33:30 +0000","web","RT @Grooveshark: Hey! download the Grooveshark app (this time with desktop-friendly link): http://mobile.grooveshark.com/phones/iphone ..."
|
||||
"20865440145","","","","","2010-08-11 07:04:43 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Another great okcupid blog post. Can't get enough of these. http://blog.okcupid.com/index.php/dont-be-ugly-by-accident/"
|
||||
"20526902352","","","","","2010-08-07 04:43:15 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","MBP trackpad bug manifested itself with drag lock off, definitely a real bug. It thought the button was down when it wasn't."
|
||||
"20236126608","","","","","2010-08-03 17:04:30 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Ctrl-n and -p select next/previous completions in Chrome's address bar. Wish I'd tried that sooner. #protip"
|
||||
"20234649818","","","","","2010-08-03 16:41:33 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Hooray! Just when I upgrade to iOS 4 @grooveshark confirms that they're working on iOS 4 support. Hook up those music controls! :)"
|
||||
"20158625234","","","","","2010-08-02 18:27:32 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Despite the PHP WTFs, Rasmus delivered a great talk on performance optimization."
|
||||
"20156981479","","","","","2010-08-02 18:00:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","It's a limited goto, so why not let break accept a label, which is common practice? They're basically asking for it using the term ""goto""."
|
||||
"20156663443","","","","","2010-08-02 17:54:36 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","WTFs everywhere! PHP's solution to counting loops when breaking out of 6+ nested while loops? Introduce goto! Enabling poor code since 1993."
|
||||
"20156395807","","","","","2010-08-02 17:49:57 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Rasmus Lerdorf on late static binding: ""If you need that, you're a pretty big geek."" http://bit.ly/bCkqQ5 ... Programmers? Geeks? No way! :p"
|
||||
"20109572150","","","","","2010-08-02 03:14:10 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Can you define a new kind of number in code, use one in a normal rectangle, and paint it black, and it all works? http://bit.ly/cMbxgZ #oop"
|
||||
"20105674862","","","","","2010-08-02 02:11:30 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Best jailbreak ever. OTA FTW"
|
||||
"20099744192","","","","","2010-08-02 00:36:11 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Taking the iOS 4 plunge, about to test http://jailbreakme.com. I hope it works because I don't want to bother with sn0wbreeze!"
|
||||
"20099553676","","","20096336109","8675502","2010-08-02 00:32:53 +0000","web","RT @me1000: Jailbreakers have cool web apps too! http://9to5mac.com/jailbreakme-on-video? *BAM*"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,91 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"25992039113","","","25990204473","9973082","2010-09-30 15:53:36 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @kangax: Upset about Function <3 being false? That's easy to fix: Function.valueOf=function(){return 2}; Now Function <3 is true"
|
||||
"25989561990","","","25987415888","4826261","2010-09-30 15:25:49 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @RussB: Someone desperately needs to invent an 8 a.m. that comes after 11 a.m. I'd totally buy one of those."
|
||||
"25981915856","25934983529","22406953","","","2010-09-30 14:02:37 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","@mahyarm that's true, but software isn't designed for it. Agree that more pixels are good regardless."
|
||||
"25934013381","","","25898221598","7350652","2010-09-30 00:53:51 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @swedal: If you think hiring a professional is expensive, wait till you hire an amateur."
|
||||
"25931023520","","","","","2010-09-30 00:16:05 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","My 15"" MacBook does 1680x1050 on 15"" with ~ 132 PPI and I'm constantly bumping up the font size of web pages. Still a powerful 13"" is great."
|
||||
"25930928877","","","","","2010-09-30 00:14:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Sony Vaio Z keeps pushing the bar for smaller more powerful notebooks. Not sure about 1920x1080 on a 13"" display though, almost 170 PPI!"
|
||||
"25886813627","","","25886036555","14170972","2010-09-29 14:19:48 +0000","web","RT @ilinsky: @getify @_sjs dblclick is wrong anyway. It should be click with click detail set to 2"
|
||||
"25885256123","25884584511","14170972","","","2010-09-29 14:01:55 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@ilinsky @getify agreed, but what do we do with ondblactivate? Could let users implement it, or just keep it I guess."
|
||||
"25884877724","","","25884584511","14170972","2010-09-29 13:57:26 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @ilinsky: I would really like to see activate event name in browsers instead of click (for buttons, links, etc.)"
|
||||
"25884835147","25864104846","815114","","","2010-09-29 13:56:55 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@jedschmidt chim chim charoo (I'm not sure if that's a popular English saying, I heard it in a movie ;-)"
|
||||
"25854778196","","","","","2010-09-29 04:47:12 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Open a site using the History menu in Chrome, back button still works. Genius."
|
||||
"25830952164","","","","","2010-09-28 23:32:37 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","May as well mandate parens on every return statement JUST IN CASE! Parens around every expression or ASI will get you in your sleep!"
|
||||
"25830440201","","","","","2010-09-28 23:26:04 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Ok enough of the JavaScript semicolon FUD. Writing JS != implementing ASI and always using semicolons doesn't cure Random Newline Insertion."
|
||||
"25807453737","25803273658","815114","","","2010-09-28 18:07:27 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jedschmidt It's been bad since at least 2000. After spending a day in London I'd blow my nose later, jet black. Coming from Canada ... :/"
|
||||
"25802733649","25802220002","9973082","","","2010-09-28 17:02:32 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@kangax Manually inserting semi-colons doesn't help in most of the cases from that quiz. Not inserting pointless newlines does."
|
||||
"25790058602","","","","","2010-09-28 14:36:03 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","The real lesson from that quiz is to not break statements over N lines unless you understand ASI. Write readable code."
|
||||
"25789971605","","","","","2010-09-28 14:35:04 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","I'm open to hearing real drawbacks to taking advantage of ASI. A contrived quiz is no reason to fear something. ... (cont)"
|
||||
"25789623062","","","","","2010-09-28 14:31:06 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","If someone writes code like this I won't work with them or accept their patches. Simple as that. http://asi.qfox.nl/"
|
||||
"25789372894","","","","","2010-09-28 14:28:21 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","Dear JavaScripters trying to scare people into using semicolons: your scare tactics make you seem like religious crazies. That is all."
|
||||
"25787963601","","","25780957353","532923","2010-09-28 14:12:36 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @mathias: Mobile phone makers, please disable auto-capitalization and auto-correction on URL, email, and password inputs. http://i.im ..."
|
||||
"25760536126","","","","","2010-09-28 05:57:58 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","No Google, that's not what I meant, but you definitely have my attention! http://yfrog.com/jn4amp"
|
||||
"25753541706","","","","","2010-09-28 03:52:25 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Tangotango looks like this: http://yfrog.com/bdwaep"
|
||||
"25753334934","","","","","2010-09-28 03:49:28 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","In #TextMate my fav low contrast theme is Espresso Libre but it's bad in low light, so for higher contrast I turn to Sunburst."
|
||||
"25753179647","","","","","2010-09-28 03:47:17 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","My new favourite #emacs colour theme: http://github.com/juba/color-theme-tangotango Quite good in low light for such low contrast."
|
||||
"25750217767","25740792160","15158430","","","2010-09-28 03:07:28 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@RyanGahl haven't done much desktop Linux in a couple years but I remember 64 bit being very seamless. Even 32 bit Flash."
|
||||
"25749958634","","","25741331155","15687937","2010-09-28 03:04:09 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @devongovett: Nice! Address Validation using the Google Maps API: http://bit.ly/duf1fW"
|
||||
"25738594985","","","","","2010-09-28 00:45:01 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Just had 3 micro-convos w/ same person via Twitter DM, SMS, and email. Using my phone and notebook. From a moving bus. #welcometothefuture"
|
||||
"25737850039","","","","","2010-09-28 00:35:56 +0000","web","listening to Blue Skies by BT on @Grooveshark: http://tinysong.com/fPhf #musicmonday #nowplaying"
|
||||
"25723675401","25721129579","14560304","","","2010-09-27 21:43:20 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@frank06 Ah, ok. Just wasn't sure if it was expected. I liked the docs, hope you can generate them again!"
|
||||
"25719791398","","14560304","","","2010-09-27 20:47:50 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@frank06 riak-js.org/docs.html is 404"
|
||||
"25717176033","","","","","2010-09-27 20:09:20 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Everyone here at @SelfServeApps is getting #newtwitter and all I get is #notwitter http://yfrog.com/5g5d9p"
|
||||
"25640162800","","","","","2010-09-27 00:49:54 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","I try to keep an open mind but Windows is simply obnoxious. Win7 looks better but it's just lipstick on a pig."
|
||||
"25627930531","","","25626080353","8526432","2010-09-26 22:07:07 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @wycats: Is it weird that I'm flying through the air and I think the magical part is that I have wifi?"
|
||||
"25617512077","","","25605392653","648873","2010-09-26 19:31:57 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @rem: I may not be at @jsconfeu, but I /can/ support fellow JavaScripters & docs by adding http://promotejs.com to my blog - please d ..."
|
||||
"25451990447","","","","","2010-09-25 00:18:53 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Really impressive work by Mozilla. They're almost fast! http://arewefastyet.com/ JM+TM just passed Nitro at v8bench."
|
||||
"25448192081","","","25350263183","19623488","2010-09-24 23:25:34 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @gussynichols: Worried Mom fought for helmets, now BC is getting fatter cause of it. http://t.co/DlNTKRH via @AddThis #bike #bc @bccycle","http://www.richmond-news.com/health/Worried+fought+helmets/3449978/story.html"
|
||||
"25447982924","","","","","2010-09-24 23:22:40 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","It's pretty lame to be slave to a schedule."
|
||||
"25422750644","","","25422627168","717233","2010-09-24 17:11:35 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @pjhyett: what's a guy gotta do to get the new twitter interface"
|
||||
"25422413735","","","","","2010-09-24 17:07:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Edit commands in the #nodejs repl with your text editor: `npm install repl-edit && node-repl-edit` or http://github.com/samsonjs/repl-edit"
|
||||
"25413352553","","","25413065193","85645271","2010-09-24 15:20:51 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @AaronHillegass: We have space in the upcoming Beginning Cocoa class (Oct 9 - 15, Atlanta) so I'm offering you, dear followers, 20% o ..."
|
||||
"25408426670","","","25368955288","14335498","2010-09-24 14:25:22 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @newsycombinator: Node.js: a short history http://j.mp/bhqSi7"
|
||||
"25383184930","","","","","2010-09-24 07:11:23 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Uh oh, up way too late because of @gilesgoatboy and his video on vim-in-irb http://bit.ly/dmwlZg ... stay tuned for #nodejs repl goodness."
|
||||
"25345740995","25340363483","8675502","","","2010-09-23 21:56:51 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@me1000 Saw the thread on with(), it would definitely be a welcome change! To be fair it has improved already this year."
|
||||
"25326466259","","","","","2010-09-23 17:25:20 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Some days I loathe the Objective-J parser. Manually bisecting files one by one is not how I want to spend my morning."
|
||||
"25318169241","25315589283","33493","","","2010-09-23 15:42:05 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@peterc the nice thing about Cmd-{ and } is they can be typed comfortably from the home row."
|
||||
"25318031347","","","25317257681","14939200","2010-09-23 15:40:27 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @seancribbs: To all, I realize you can set your own keyboard shortcuts (and just did). Just wish app authors would follow UI guidelin ..."
|
||||
"25316963418","25311801823","14939200","","","2010-09-23 15:27:59 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@seancribbs (system keyboard prefs that is)"
|
||||
"25316832889","25311801823","14939200","","","2010-09-23 15:26:27 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@seancribbs if they have menu items remap them in your Keyboard prefs. I do that with iTerm."
|
||||
"25257995885","","","","","2010-09-23 00:08:06 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","... and if you don't have a phone + data plan get one instead of the usb dongle, the phone is more useful!"
|
||||
"25257916765","","","","","2010-09-23 00:07:04 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","It's always funny to see people using 3g usb dongles on public transit. Mobile phones are also mobile modems now, no need to carry 2 around."
|
||||
"25218922118","","","","","2010-09-22 15:01:39 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Netflix in Canada! Had no idea it was coming, makes for a nice surprise. http://netflix.ca"
|
||||
"25156575407","25156351041","894911","","","2010-09-21 22:19:22 +0000","web","@JimRoepcke Sold my soul for #newtwitter. Oh shit, I did it again! :p #seriouslythoughicanhaznewtwitternow?"
|
||||
"25156152911","","","","","2010-09-21 22:13:25 +0000","web","Still don't know anyone IRL who has #newtwitter yet. #twitterhatescanadians ;-)"
|
||||
"25095073212","25081441908","9980812","","","2010-09-21 06:12:54 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@igrigorik desktop app services. Just another form of IPC (that can be RPC too). Bonjour could discover local services."
|
||||
"25073798369","","","","","2010-09-21 00:48:20 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","http://www.macruby.org/blog/2010/09/20/announcing-control-tower.html Another brick in the wall. HTTP will dominate IPC and RPC eventually."
|
||||
"25034882581","25022860327","14561327","","","2010-09-20 15:31:22 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@dhh why do we use Safari and Chrome instead of WebKit and Chromium? Value added."
|
||||
"24961678619","","","","","2010-09-19 19:45:53 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","http://tumblr.com/x8ej1mkse applies equally to Cappuccino. I've been using CPWebView more than I'd like."
|
||||
"24961383246","24885445015","15687937","","","2010-09-19 19:41:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@devongovett That's great! Didn't even think to check for support. I wish Cappuccino didn't have to re-invent event handling in the browser."
|
||||
"24915244349","24909233369","63803","","","2010-09-19 06:49:34 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","@sh1mmer iirc throw \v into a regex to trigger Very magic mode in vim."
|
||||
"24870688233","","","","","2010-09-18 18:29:50 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","I really wish we could use Safari's pasteboard events in Cappuccino. I wouldn't mind that becoming a standard. http://bit.ly/94HhAJ"
|
||||
"24828987941","","","24785569749","14658472","2010-09-18 06:48:13 +0000","web","RT @roidrage: Just got #oldtwitter. It's awesome!"
|
||||
"24828514758","24821042602","14582359","","","2010-09-18 06:37:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@acangiano The problem is that even after realizing that truth I still get sucked in. :/"
|
||||
"24819995211","","","24818193150","9395312","2010-09-18 04:04:12 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @tqbf: This thread is sure to be ""2 Girls 1 Cup"" for software security people. I should make reaction videos. http://bit.ly/cRIECf"
|
||||
"24805584100","","","24804044756","13370272","2010-09-18 00:39:56 +0000","web","RT @azaaza: The Incredible Machine would make an amazing iPad/web game. Anyone want to make it for me? http://bit.ly/aOXehG"
|
||||
"24803109459","","","24797344318","749863","2010-09-18 00:03:27 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @hotdogsladies: Why didn't you ""like"" my ""star"" of your ""fave"" of my reblog of your tweet about social media?
|
||||
|
||||
I thought we were ""fri ..."
|
||||
"24801372539","","","24755353159","613923","2010-09-17 23:37:01 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @derekmorrison: Very clear refresher on JavaScript scoping: http://t.co/Hl7s23F by @bcherry","http://www.adequatelygood.com/2010/2/JavaScript-Scoping-and-Hoisting"
|
||||
"24771176206","","","","","2010-09-17 16:08:18 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","If only I could uninstall the broken trackpad update. I suppose I could reinstall and restore my data but I shouldn't have to! *shakes fist*"
|
||||
"24771077960","","","","","2010-09-17 16:07:08 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","MBP's stuck trackpad button bug is incredibly annoying. None of the workarounds are reliable. Apple needs to fix what they broke, fast."
|
||||
"24765301018","","","","","2010-09-17 15:00:33 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","Adobe launches 64-bit accelerated Flash on the *only* platform that it already performs well on. *facepalm*"
|
||||
"24707416056","24703304036","16686076","","","2010-09-16 23:33:13 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@getify you can delete it until it's been read, like a ghetto ""undo send"". I thought it was dumb at first but it can be useful."
|
||||
"24697941346","","","24671196190","4216361","2010-09-16 21:15:35 +0000","web","RT @dalmaer: ""Microsoft, if you want a way to declare a context-menu in HTML use HTML5?s <menu> element!"" http://bit.ly/9IHrSp"
|
||||
"24697681628","24697003963","15158430","","","2010-09-16 21:11:40 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@RyanGahl Let's hope :) I got to do some webOS dev last fall and I really liked it."
|
||||
"24697222574","","","","","2010-09-16 21:05:04 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Text editors are the worst. I need Emacs and TextMate to breed, spawning a super-editor that can indent properly and has a project browser."
|
||||
"24697082218","24696851199","15158430","","","2010-09-16 21:02:53 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@RyanGahl It *really* rubs me the wrong way when I can't run what I want on my own device. I completely understand your sentiment on this."
|
||||
"24696997145","24696851199","15158430","","","2010-09-16 21:01:34 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@RyanGahl I'm in Canada so I don't have much to say on AT&T. If I couldn't jailbreak my iPhone I would go Android or webOS in a second."
|
||||
"24696880528","24696774360","15158430","","","2010-09-16 20:59:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@RyanGahl Fair enough. I don't like how closed Apple is either but being open isn't enough to beat them. The avg user simply doesn't care."
|
||||
"24696817448","24696445246","15158430","","","2010-09-16 20:58:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@RyanGahl webOS is pretty awesome but you have to admit that the Pre and Pixi suck. iOS and Android > webOS for that reason alone. hw is ui."
|
||||
"24696605165","24695785836","15158430","","","2010-09-16 20:55:40 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@RyanGahl UI is *everything* to users. The fact that so very few companies understand that contributes greatly to Apple's success."
|
||||
"24687573623","","","","","2010-09-16 18:36:11 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","#ie9 is a huge leap forward. Ctrl-L finally does the right thing, but it still doesn't understand 10.0.0.1:8080 is a URL without a protocol."
|
||||
"24606998532","","","","","2010-09-15 21:59:40 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Being punished by git for adding git@github.com:samsonjs/riak-js as a submodule (instead of http://github.com/samsonjs/riak-js) grrr...."
|
||||
"24606906108","24530525987","14677393","","","2010-09-15 21:58:13 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@d_sc That's a good idea. I never use my optical drive so if I need more space maybe I'll go that route as well."
|
||||
"24450929315","","","","","2010-09-14 05:28:11 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Backup time. One last boot for my Hackintosh till it gains a 5770 and becomes a Windows gaming / HTPC rig again. (sorry @JimRoepcke ;-)"
|
||||
"24450772101","24434010147","894911","","","2010-09-14 05:25:11 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke @bryan_kyle The random r/w speed isn't improved much, the main reason SSDs are fast. I'd save up till capacities increase again."
|
||||
"24450388764","24437269622","14677393","","","2010-09-14 05:18:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@d_sc I've been waiting for this kind of improvement in storage for a long time :) Couldn't resist getting a 64gb ssd for my desktop as well"
|
||||
"24234474616","24225929254","3167301","","","2010-09-11 23:29:31 +0000","web","@tobie I like lowercase but with some modules naming conflicts are pretty common, e.g. url, so it's clear why some use uppercase."
|
||||
"23123779127","","","","","2010-09-06 06:36:59 +0000","<a href=""http://www.tumblr.com/"" rel=""nofollow"">Tumblr</a>","Periodic Table of the Elements - Josh Duck http://tumblr.com/xzohrggx2"
|
||||
"22933353307","","","","","2010-09-04 00:32:28 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Current status: http://yfrog.com/mga06kj"
|
||||
"22845345587","","","","","2010-09-03 00:55:59 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","iPad + MyWi make an hour long commute pretty nice. Mywi 4.0 is much easier on my battery too."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,128 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"29328445426","29322081414","14273142","","","2010-11-01 01:05:44 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko I probably should have said the 2nd is easier to spot when not looking for it. I'm not on a crusade though, I just like it."
|
||||
"29320734406","","","","","2010-10-31 23:24:41 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","there's definitely something to comma-first style: http://gist.github.com/657303"
|
||||
"29301565027","","","29300781513","14560304","2010-10-31 18:52:58 +0000","web","RT @frank06: numbers everyone should know http://bit.ly/9WUpk1"
|
||||
"29301283806","29229873706","14405464","","","2010-10-31 18:48:41 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@SubtleGradient Looks pretty nice. Cheers!"
|
||||
"29222385497","","","29221983256","663463","2010-10-30 22:26:28 +0000","web","RT @rentzsch: @rauchg what about fake submodules? http://j.mp/cr0Lkt"
|
||||
"29222006056","","","29215872435","15540222","2010-10-30 22:20:30 +0000","web","RT @rauchg: Replacing submodules in favor of straight checked out code. People were having too much trouble with it."
|
||||
"29213319101","29167875050","3260971","","","2010-10-30 19:59:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@niels_bom I'd have test things like turning syntax highlighting off before making an educated guess. Not really sure."
|
||||
"29213269215","29167875050","3260971","","","2010-10-30 19:59:03 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@niels_bom Might be syntax hightlighting the whole file at once instead of the visible viewport, difficulty in incremental parsing."
|
||||
"29209759235","","","","","2010-10-30 19:05:06 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Anyone else having trouble w/ Grooveshark mobile today? #downforeveryoneorjustme"
|
||||
"29164043947","","14063149","","","2010-10-30 07:38:31 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@miksago Thanks :)"
|
||||
"29163859673","","","29163351684","14063149","2010-10-30 07:34:27 +0000","web","RT @miksago: Guh!? http://codebutler.github.com/firesheep/tc12/ #security #firesheep (via @klepas)"
|
||||
"29154010614","","","","","2010-10-30 04:23:18 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","rebasing like a mofo, --autosquash ftw! <3 #git ... don't know how I coped w/ cvs & subversion"
|
||||
"29140409322","","","","","2010-10-30 01:14:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","... though an app that toggles the proxy would be nice. It could let you whitelist networks where it turned itself off. That'd be sweet."
|
||||
"29140271296","","","","","2010-10-30 01:12:28 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","If you're worried about Firesheep `ssh -N -D 5050 <remote box you trust>` then set localhost:5050 as your system wide SOCKS proxy. Simple."
|
||||
"29136402296","","","","","2010-10-30 00:22:12 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","vim can handle 1.7m. Thank goodness for vim! Glad that I haven't let my vim skills rust since switching to Emacs."
|
||||
"29136049197","","","","","2010-10-30 00:17:32 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","It's 2010, I have a Core i7, 8GB memory, Sandforce 1200 SSD. Neither TextMate nor Emacs can handle a 1.7MB file well. #welcometothefuture"
|
||||
"29132560231","","","","","2010-10-29 23:28:36 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","!@#$ MyWi ... if you disable regular Internet Tethering then enable it when you're done! Really annoying."
|
||||
"29132023240","","","","","2010-10-29 23:21:09 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Of course this would happen at the end of a Friday. Thanks Murph!"
|
||||
"29113110200","29111380613","95698494","","","2010-10-29 18:39:59 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@SelfServeApps Is she talking on a time phone?! There are no cell towers or satellites back in 1928..."
|
||||
"29111623890","","","","","2010-10-29 18:18:26 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Writing scripts with cat, like a boss!"
|
||||
"29100155157","29098789600","95698494","","","2010-10-29 15:50:46 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@SelfServeApps nice! I'm still working on it. Haven't got 3 stars on all levels on the first one yet either."
|
||||
"29099649182","29040699827","14063149","","","2010-10-29 15:44:58 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@miksago I'll take an invite if you have any left."
|
||||
"29099362984","29037969539","8038312","","","2010-10-29 15:41:39 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@izs I'm surprised at how much I've been using TM as well. It does just enough right. At times it's really annoying though."
|
||||
"28992093757","","","","","2010-10-28 14:06:00 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","TextMate's broken file cache makes refactoring & renaming kind of scary. At least grep -r is reliable. Need TM's find-in-project for Emacs."
|
||||
"28959519631","","","28957836964","780561","2010-10-28 04:49:28 +0000","web","RT @technoweenie: this is basically what it feels like every time a riak node goes down: http://bit.ly/c0RhzX"
|
||||
"28959517536","","","28957639785","29777587","2010-10-28 04:49:25 +0000","web","RT @pharkmillups: This is basically what it feels like every time you spin up a new riak node
|
||||
http://twitpic.com/31hf5i"
|
||||
"28954415306","","","","","2010-10-28 03:27:49 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","2010 MacBook Pro ""sticky"" trackpad bug is infuriating. Don't like leaving the home row, leaving the keyboard altogether is the worst."
|
||||
"28951629297","","","","","2010-10-28 02:49:08 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Reddit's performance is getting much better. No more >10s page loads. Wasting time is efficient again."
|
||||
"28920209842","","","","","2010-10-27 20:04:35 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @Cloud9IDE: Welcome @_sjs as our 500th follower on GitHub. http://twitpic.com/318wgn"
|
||||
"28867863751","","","","","2010-10-27 07:13:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Sweet! We can provision servers and schedule maintenance updates for @SelfServeApps without typing anything into a terminal."
|
||||
"28860905425","","","28859394890","14864447","2010-10-27 04:47:01 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @bryan_kyle: @_sjs I think the fact that you don?t need to memorize operator precedence and associativity helps too."
|
||||
"28854324171","","","","","2010-10-27 03:04:03 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","call me crazy but formatting and readability of complex conditionals is easier and better w/ prefix operators like in Lisp."
|
||||
"28845913467","","","","","2010-10-27 01:19:13 +0000","web","Competition! http://www.thestar.com/business/companies/rogers/article/881114--wireless-competition-weighs-on-rogers-profits"
|
||||
"28836853306","28832680498","6707392","","","2010-10-26 23:34:47 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@sstephenson if all means ""none fail"" it's a logical consequence. I think false would be a much worse answer."
|
||||
"28809250642","","","","","2010-10-26 17:08:24 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Dear coffee scripters: Not everyone uses and loves coffeescript. Please provide [MRJ]akefiles so we can compile w/o looking up CS docs. thx."
|
||||
"28796811091","","","28791548232","14658472","2010-10-26 14:39:43 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @roidrage: I hereby deprecate usage of the terms NoSQL and schema-less. It's a database, deal with it."
|
||||
"28795757432","","","","","2010-10-26 14:27:49 +0000","<a href=""http://reederapp.com"" rel=""nofollow"">Reeder</a>","JavaScript animation library: http://j.mp/9vyw3u"
|
||||
"28762865453","","","","","2010-10-26 05:27:58 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","dude, clang builds linux http://article.gmane.org/gmane.comp.compilers.clang.devel/11432"
|
||||
"28741877874","","","","","2010-10-26 00:39:43 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Having never done Java dev I don't think I fully appreciate the irony of JavaScript on servers. I'm just stoked I don't have to write Java."
|
||||
"28735392670","","","","","2010-10-25 23:21:59 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","I miss my old winter hoody's collar. Kept my neck so toasty!"
|
||||
"28731265676","","","","","2010-10-25 22:31:49 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Dvorak typists of the world, gbcy.!"
|
||||
"28728323828","28726839305","15687937","","","2010-10-25 21:53:22 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@devongovett Depends if you need/want the extra pixels, or the XpressCard slot (say for eSATA). Pixels are significant: 30% more, +0.5MP"
|
||||
"28728050124","","","28726269319","894911","2010-10-25 21:49:36 +0000","web","RT @JimRoepcke: Finally got sick of switching between QWERTY and DVORAK constantly when pairing with @_sjs - ordered a QIDO. http://www. ..."
|
||||
"28710434839","","3806441","","","2010-10-25 17:22:28 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@grooveshark Sure wish my own tracks played were included on the community page. Is there anywhere I can see that info right now?"
|
||||
"28709074562","","","","","2010-10-25 17:04:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","I could trade in my 15"" MacBook for a 13"" Air. Never use the optical drive. Once they move all the ports to the left side I'll consider it."
|
||||
"28653713322","","","28649689530","13192","2010-10-25 02:45:21 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @avibryant: Session hijacking made idiot-proof. Yikes. http://t.co/PPvQeiW","http://codebutler.com/firesheep"
|
||||
"28547135154","","","28541909390","27302287","2010-10-24 00:25:00 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @jacobrothstein: Just discovered CTRL-x-e in bash opens current command in $EDITOR. Inordinately excited."
|
||||
"28534788717","28529314620","11973362","","","2010-10-23 21:15:32 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","@typeoneerror @linode we use stackscripts and chef to provision boxes without even looking at a shell. #opschef #linode #stackscripts"
|
||||
"28450075270","","","","","2010-10-22 23:34:32 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>",".@grooveshark on iPhone shows no playlists or fav songs, but I see them on my notebook :("
|
||||
"28425090921","","","","","2010-10-22 17:30:55 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Reproducible! It's going to be annoying to reduce a test case... so glad I have an SSD and can boot in ~20s."
|
||||
"28424873328","","","","","2010-10-22 17:28:00 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","WTF, messing around with Node's child_process.exec and my MacBook kernel panicked."
|
||||
"28424811213","28369437323","202771442","","","2010-10-22 17:27:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@djchrisrail Who knew it was in Mill Bay! If you can't find one in Sooke you could always make your own..."
|
||||
"28418665375","","","","","2010-10-22 16:10:50 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Easy to convert dates to numbers before comparing but still doesn't make sense. A, B are dates, A < B is false and A > B is false => A == B!"
|
||||
"28418451528","","","","","2010-10-22 16:08:21 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Date comparison in JavaScript must be a bad joke. > and < work as expected but == compares object identity, not the dates themselves. :/"
|
||||
"28067132832","","","","","2010-10-21 22:39:51 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Current status, found! http://yfrog.com/em67cfj"
|
||||
"28005506745","28005077159","14273142","","","2010-10-21 07:31:02 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@lunafiko hmm, not a bad plan. no comfy chair at my desk either, like the old wooden seats at uvic, so i wouldn't want to stay long"
|
||||
"28004827036","28004762298","14273142","","","2010-10-21 07:15:29 +0000","web","@lunafiko ain't that the truth. i guess i should at least lie on the couch instead of sitting."
|
||||
"28004546747","28004444242","734903","","","2010-10-21 07:09:05 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mjijackson yup"
|
||||
"28004532064","","","","","2010-10-21 07:08:45 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","argh @github is down! may be a sign that i should be in bed ;-)"
|
||||
"27996970198","","","","","2010-10-21 04:31:44 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Aw hell now I'm writing my CSS semicolon-first. I wonder what'll be next."
|
||||
"27975088682","27970849710","3560241","","","2010-10-20 23:31:57 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@ezmobius (reboot a few more times because it's unbelievably fast :) ... Don't forget to set your SSD as the startup disk."
|
||||
"27973581075","","","","","2010-10-20 23:12:55 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Good for users: ""If an app even exhibits a bug, it will be rejected -- does Apple know how many apps, open-source or otherwise, have bugs?"""
|
||||
"27900687592","27899153554","33858688","","","2010-10-20 04:14:31 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@ehoppe No problem!"
|
||||
"27878893566","","","","","2010-10-19 23:28:08 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","ScotiaBank has a new mobile banking site... 100% Flash. #scotiabank #mobile #fail"
|
||||
"27868228439","27868122381","4777951","","","2010-10-19 21:04:25 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@_sjs @ehoppe spending more than the price of a Mac mini (Mac pro territory). Can't build a machine as good as the mini for the same cost."
|
||||
"27868122381","27858424443","33858688","","","2010-10-19 21:02:50 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@ehoppe You'd have to find a notebook known to be compatible. Dell mini might work well. Building a hackintosh only makes sense if you're..."
|
||||
"27845217037","","","","","2010-10-19 15:46:53 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Always nice to hear how early the guys at the coffee shop get up. Makes me feel better about rising at 6am."
|
||||
"27784410092","27784155226","894911","","","2010-10-19 00:18:26 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke You're gonna be doing a lot of doobie-rolling when you're *living in a van, down by the river!!*"
|
||||
"27784218121","","","","","2010-10-19 00:16:07 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Open source is good, but is only one part of the puzzle. Open development might be just as important (for some projects)."
|
||||
"27784150669","","","","","2010-10-19 00:15:18 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Am I mistaken in thinking that Google's cathedral style development & manufacturers private forks basically just pay lip service to OSS?"
|
||||
"27784042904","27783476882","894911","","","2010-10-19 00:13:59 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke Well LA-DI-FREAKIN-DA! We got ourselves a writer! Is that Bill Shakespeare over there?"
|
||||
"27782617270","","","","","2010-10-18 23:56:58 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Now that iOS music apps can be controlled via built-in audio controls, how can I do the same thing on OS X w/ the audio keys on my MacBook?"
|
||||
"27782256097","","","","","2010-10-18 23:52:37 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","There's no hair covering my ears, in the way of my headphones. It's nice but weird. Got used to the shag."
|
||||
"27780525861","27778109090","676363","","","2010-10-18 23:32:00 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@brianleroux can you download/modify/distribute private android forks that actually ship on devices? Parts of iOS are OSS. Where's the line?"
|
||||
"27772088254","","","","","2010-10-18 21:45:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Hey, my first commit to #nodejs just landed. http://is.gd/g7hqJ There'll be new syntax in a future release of repl-edit http://is.gd/g7hrO"
|
||||
"27771978351","27766446321","894911","","","2010-10-18 21:44:22 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke yeah I love comma fir- .... wait a minute now... ;-)"
|
||||
"27764723878","","","","","2010-10-18 19:59:07 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","http://enterprise-js.com/4"
|
||||
"27516932910","","","","","2010-10-16 06:04:11 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Like the iPod Mini they effectively killed it. Instead of introducing something better they're just pointing to the iPod Touch."
|
||||
"27516845467","","","","","2010-10-16 06:02:36 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","I see why Apple turned the Nano into a Shuffle+screen. ""Real"" iPods should run iOS. It was too good as it was, w/ video camera and all."
|
||||
"27479964401","","","","","2010-10-15 21:32:21 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Of course some bizarre bug decides to show itself on Friday afternoon. Think I'll climb under my desk for a nap."
|
||||
"27457133127","","","","","2010-10-15 16:23:37 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Current status: http://yfrog.com/76k93p (Anyone know of a language that has promises/futures baked in? Could be interesting.)"
|
||||
"27451894026","","","27445849851","33493","2010-10-15 15:27:52 +0000","web","RT @peterc: Hacker News users might find this thing I whipped up this morning interesting: http://hackerslide.com/"
|
||||
"27392649875","","12819682","","","2010-10-15 00:41:08 +0000","web","@mitchellh congrats on the grant! you certainly deserve it."
|
||||
"27391802317","","","","","2010-10-15 00:30:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Wasting time on the bus... have to pee too bad to hack on anything, which sucks cuz ChromeShark doesn't work on preview.grooveshark.com :("
|
||||
"27390660953","","3806441","","","2010-10-15 00:16:37 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@Grooveshark tinysong.com links don't redirect to a protocol that opens Grooveshark on iPhone :( Would love to txt links to my friends!"
|
||||
"27390325765","","","","","2010-10-15 00:12:26 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","""When we drink we do it right gettin slizzard! ... When sober girls around me they be actin like they drunk."" popular music makes me laugh."
|
||||
"27389278460","","894911","","","2010-10-14 23:59:21 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke I mentioned this a while back, came across it again today: http://zombo.com and just to be trendy http://html5zombo.com/"
|
||||
"27389175298","","","","","2010-10-14 23:58:01 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","New @Grooveshark is in Cydia and it's freakin' awesome! Harder, better, faster, stronger. <3 the shark!"
|
||||
"27387112748","27385246383","14864447","","","2010-10-14 23:31:58 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@bryan_kyle agreed, definitely not C style! One day I'll have to look at Sibilant and see where it's at."
|
||||
"27384947972","","","","","2010-10-14 23:04:25 +0000","web","I don't like languages that compile to JavaScript, yet JS (esp. Node) needs many things that aren't possible (without macros). Catch 22."
|
||||
"27380185709","","","27361842996","17983820","2010-10-14 22:00:37 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @clashmore: You're not a rockstar. You're not a ninja. You're a bespectacled 20-something white dude with a Wacom & a receding hairli ..."
|
||||
"27344619441","","","27323333768","82843","2010-10-14 14:16:31 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @cyberdelia: Riak Search is now one step away from being installed on your mac with 'brew install riak-search' : http://bit.ly/d58ooN"
|
||||
"27289401270","","","","","2010-10-14 00:01:42 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","If you use Google Chrome and #Grooveshark be sure to check out ChromeShark: http://is.gd/g0XsL"
|
||||
"27288353547","27273577863","14273142","","","2010-10-13 23:48:34 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko stackscripts are cool. They go hand in hand w/ chef. Provisioning nodes without writing a single command is pretty fun."
|
||||
"27267944188","27266557953","14273142","","","2010-10-13 19:01:15 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@lunafiko Linode is great! I think you'll be happy with the switch."
|
||||
"26887516781","","","26882221440","19575586","2010-10-10 00:00:18 +0000","web","RT @hackernewsbot: Chmod -x chmod... http://www.slideshare.net/cog/chmod-x-chmod"
|
||||
"26852400790","","","","","2010-10-09 15:30:44 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","Another hit. Cut the Rope is addictive. Angry Birds addictive."
|
||||
"26850677806","","","26834103354","645143","2010-10-09 15:10:37 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @tirsen: Interesting. RT @erhanerdogan: How Twitter increased conversion rate to 29% by adding 1 extra step http://bit.ly/bSiHuP"
|
||||
"26792723008","","","","","2010-10-08 23:04:48 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Current status: http://yfrog.com/ncz8rzj"
|
||||
"26770916914","","","26768963902","9885102","2010-10-08 17:40:53 +0000","web","RT @drnic: RT @Caius: (cmd-F1) to toggle ""Mirror Displays"" & (alt-F1) gets you into the Displays.prefpane quickly too."
|
||||
"26752363532","26751954469","6927562","","","2010-10-08 14:09:43 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>",".@thomasfuchs Best summit evar! This is certainly the beginning of a new era on the web. Exciting times! #vaporjs"
|
||||
"26752112789","","","","","2010-10-08 14:07:02 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Light rain, F.lux still has my screen tinted when I get on the morning bus. Another winter on the island."
|
||||
"26750758991","26714785699","894911","","","2010-10-08 13:52:55 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke damn, no I don't remember either. I'll search a bit and see if I can find it."
|
||||
"26714427135","","","","","2010-10-08 03:29:49 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","The Bespin bookmarklet is cool but I can't live without Emacs keyboard shortcuts. Schade."
|
||||
"26686470139","","","","","2010-10-07 21:26:46 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Ah the elusive monad. Once someone understands them they become incapable of explaining them to those who don't understand. Round and round."
|
||||
"26684336980","","","","","2010-10-07 20:55:44 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Ugh, battling a heisenbug! :( The good thing is that I can leave log statements around to hide it till I track down the real problem."
|
||||
"26684288288","26680587033","63803","","","2010-10-07 20:55:02 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>",".@sh1mmer I know you solved it, but fwiw in zsh this kind of stuff is easy, without resorting to find: rm **/*~*.xml~*.js(.)"
|
||||
"26664747901","","","","","2010-10-07 16:41:22 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Too much to read and too little time to read it."
|
||||
"26652573091","","","","","2010-10-07 14:18:51 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","15(!) domains want to run JavaScript on a 9to5mac.com page. Thank you NotScripts for making the web safer and far less annoying."
|
||||
"26620394912","","","26554670983","14620798","2010-10-07 04:42:27 +0000","web","RT @zachwaugh: Just put up a beta release of a new mac app I'm working on - Crosshairs. Download it here: http://bit.ly/crosshairs"
|
||||
"26588923267","","","26584875031","14206068","2010-10-06 22:03:15 +0000","web","RT @tlrobinson: Writing recursive asynchronous code makes my head hurt."
|
||||
"26582217878","","","","","2010-10-06 20:25:47 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Rebooted last night and Instachrome stopped working, perhaps because Chrome updated itself. Reinstalled the extension -> fixed. #instapaper"
|
||||
"26562539734","26559352831","894911","","","2010-10-06 15:42:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke Yeah, good read!"
|
||||
"26558759424","","","","","2010-10-06 14:58:45 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","""But it also means they inherently plan to throw away 90% of the work they do."" http://bit.ly/qdoW6 -- Why you can't innovate like Apple"
|
||||
"26554061967","26551571761","6368672","","","2010-10-06 14:05:29 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@saurik If you're interested in a k/v store I highly recommend riak. Basho knows what they're doing."
|
||||
"26524284042","26522707679","12819682","","","2010-10-06 04:58:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mitchellh Hmmm. Yes, I'll have to seek out other heretics. If it makes a difference I *mostly* use Emacs & TextMate these days :)"
|
||||
"26522561497","","","","","2010-10-06 04:30:46 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","This might sound weird but is there a vimscript mode for Emacs? #vim #emacs"
|
||||
"26388754982","26387819301","138082149","","","2010-10-04 19:24:15 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@jordymoughtin me too! Some guy keeps getting me to print stuff for him. What a jerk. ;-)"
|
||||
"26388119295","","","26381111586","195403247","2010-10-04 19:14:51 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @promotejs: Are We First Yet is handcrafted awesomeness made with an infusion of the @jsconfeu post party vom Oktoberfest."
|
||||
"26363821712","","","","","2010-10-04 13:52:44 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Current status http://yfrog.com/n1rrsej"
|
||||
"26227785695","","","26199993388","5237281","2010-10-03 02:20:07 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @bryanthatcher: This month has 5 Fridays, 5 Saturdays and 5 Sundays. It happens only once in 823 years."
|
||||
"26227402354","","","26206456126","18948541","2010-10-03 02:14:58 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @SethMacFarlane: MySpace now feels like bizarro Hill Valley after Biff got rich. Used to be a neat little spot, but something has go ..."
|
||||
"26218111818","26184251163","22406953","","","2010-10-03 00:01:38 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@mahyarm yeah worth a shot I suppose. Will try it. Do you have it? If so what do you think?"
|
||||
"26127584267","","","26127342278","4216361","2010-10-02 00:08:32 +0000","web","RT @dalmaer: It's Friday. click on ""all the way"" :) http://ajxn.it/9OhVJH"
|
||||
"26127488911","","","","","2010-10-02 00:07:11 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Done waiting for #newtwtitter. The only reason I check twitter.com with a browser is to see if I have #newtwitter yet. When I get I get it."
|
||||
"26127283052","","","","","2010-10-02 00:04:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Repeat last shell command until it succeeds, handy while waiting for a net connection to establish: f(){!!||f};f"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,230 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"9828904965509121","","","","","2010-12-01 04:39:28 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","So this is what it looks like eh? http://yfrog.com/31uupp"
|
||||
"9770430135009280","","","","","2010-12-01 00:47:06 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Huh, AirPlay doesn't work for 3rd party apps. Guess I'm skipping 4.2 entirely on my phone then."
|
||||
"9654306240208896","","","","","2010-11-30 17:05:40 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Looks like @ryah merged some win32 support into #nodejs recently. Windows isn't for me but apparently it's pretty popular, so good news!"
|
||||
"9650317171884032","","","9632179977986050","636923","2010-11-30 16:49:49 +0000","web","RT @siracusa: What a world! @anandshimpi of @anandtech fame writing for Macworld on the future of Mac CPUs: http://bit.ly/ee8V9E"
|
||||
"9635992277360640","","","","","2010-11-30 15:52:54 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Why work doesn't happen at work: http://www.youtube.com/watch?v=5XD2kNopsUs (hat tip @JimRoepcke http://bit.ly/idrDHA)"
|
||||
"9627424165724160","","","","","2010-11-30 15:18:51 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","http://www.douglasadams.com/dna/pedants.html"
|
||||
"9506101384978432","","","9499008535887872","1235521","2010-11-30 07:16:45 +0000","web","RT @timbray: ZOMG speedflying http://www.youtube.com/watch?v=UwWLnaME0CI"
|
||||
"9362545483718657","","","","","2010-11-29 21:46:19 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Underwhelmed by Gitbox and GitTower. GitX + git on the command line are already a great solution for me, so I must not be in the target mkt."
|
||||
"9022183451918336","","","","","2010-11-28 23:13:50 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Opera 11's installer for Windows is awesome. Click ""Agree and Install"", wait 5 seconds, Opera 11 opens."
|
||||
"8972559655636992","8969243794079744","1389781","","","2010-11-28 19:56:39 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@sil one advantage to using a knife is less peel stuck in your teeth. Also just kind of fun :)"
|
||||
"8949729022967808","","","","","2010-11-28 18:25:56 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","""why do we have an <img> element? [...] Quite simply, because Marc Andreessen shipped one, and shipping code wins."" http://is.gd/hV9gJ"
|
||||
"8387832506753024","","","","","2010-11-27 05:13:09 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","A simple namespaced data store based on html5 local storage https://gist.github.com/717591 (kind of like buckets)."
|
||||
"8334157188960256","8324223873327105","14465889","","","2010-11-27 01:39:52 +0000","web","@jalbertbowdenii Sorry, didn't catch that. What lightbox?"
|
||||
"8333465925718017","","","","","2010-11-27 01:37:07 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Don?t do this: cp -a . test, instead do: cp -a . ../test #protip"
|
||||
"8323956318674944","","","","","2010-11-27 00:59:20 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","#newtwitter?s new ""menu bar"" doesn't resize, new tweet and user menu not visible at 840px. @twitter #ux #fail http://twitpic.com/3ahxik"
|
||||
"8323324824264704","","","","","2010-11-27 00:56:49 +0000","web","Listening to Dougie's Lament by Nine Big Dogs (a band from Ontario in the 90s) on @Grooveshark: http://tinysong.com/v25g #nowplaying"
|
||||
"8272822392586240","","","8218833923870720","14814762","2010-11-26 21:36:09 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @joemccann: Think jsbin, but for node.js: http://jsapp.us/ (via @roncioso)"
|
||||
"8215946288173056","","","","","2010-11-26 17:50:08 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Even Crock gets currying wrong in JS the Good Parts. There?s a big difference between currying and partial application."
|
||||
"8202767315238912","","","8179978168442880","9980812","2010-11-26 16:57:46 +0000","web","RT @igrigorik: htracr: node_pcap + raphael.js = beautiful HTTP/TCP packet sniffer @ http://j.mp/dLDTTb"
|
||||
"8183166472822784","","","","","2010-11-26 15:39:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Store objects using the html5 local storage API: https://gist.github.com/716858"
|
||||
"7917446325342209","","","7914181147754496","22406953","2010-11-25 22:04:00 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @mahyarm: @BC_Transit Please add routes and schedules to google maps, it would very useful! And cut down on paper schedule costs"
|
||||
"7843925314248704","7843514540888065","894911","","","2010-11-25 17:11:52 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke mckenzie gets slow at the hill by braefoot as well."
|
||||
"7839156453511169","7837889060671488","16314033","","","2010-11-25 16:52:55 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@porteneuve It's not always smart, but hopefully people understand what to do with a checklist. Custom UI is making a comeback, eg. iPad UI"
|
||||
"7836766832689152","7834987265003520","6927562","","","2010-11-25 16:43:25 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@thomasfuchs Such a tease! :p"
|
||||
"7830401103958016","7827283922386944","894911","","","2010-11-25 16:18:07 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke It's moving a bit faster past Helmcken. Less snow on the road here, looks ploughed."
|
||||
"7828398390906880","","","7827461848965121","67042447","2010-11-25 16:10:10 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @BC_Transit: Here we go again, Victoria. Because of snowfall and road conditions, buses may be running late. Bundle up! #yyj"
|
||||
"7828335975464960","","","","","2010-11-25 16:09:55 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I wish my my notebook got my location from my phone. I want my tweets geotagged no matter which device I type on."
|
||||
"7827251164880896","","","","","2010-11-25 16:05:36 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Doesn't look like I can use a SOCKS proxy when tethered to my phone w/ BlueTooth, OS X fail! #sadpanda"
|
||||
"7826782317182976","","894911","","","2010-11-25 16:03:44 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke I'd stay home for a couple of hours if I were you. Traffic is reeeaaally slow."
|
||||
"7824205030621184","7823767438888961","894911","","","2010-11-25 15:53:30 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke We didn't actually slide very far but it was a good scare. I'm not sure if rain this afternoon is a blessing or curse yet..."
|
||||
"7815630581399552","","","","","2010-11-25 15:19:26 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I don't understand people. It's easier (and cheaper) to just use unix than to port unix stuff to Windows. Assimilate already! ;-)"
|
||||
"7812329840316416","","","","","2010-11-25 15:06:19 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Damn, the bus just about slid into a ditch! Probably should have worked from home at least one more day."
|
||||
"7652532272758784","","","","","2010-11-25 04:31:20 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","npm version, that *is* fucking cool. http://blog.izs.me/post/1675072029/10-cool-things-you-probably-didnt-realize-npm-could-do #npm #nodejs"
|
||||
"7563898068668416","","","","","2010-11-24 22:39:08 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Yikes, {encode,decode}URI(Component)? replaced {,un}escape when I wasn't looking. http://xkr.us/articles/javascript/encode-compare/"
|
||||
"7555599436881920","","","","","2010-11-24 22:06:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Wow! Sony basing their Snap SDK off GNUStep (GPL), Motorola picking up Cappuccino (LGPL), and almost everyone getting in on Android (Apache)"
|
||||
"7553123723780096","","","7512086204645376","11322372","2010-11-24 21:56:19 +0000","web","RT @holman: Boom.
|
||||
|
||||
https://github.com/holman/boom"
|
||||
"7538434621046785","7532234647015424","6707392","","","2010-11-24 20:57:57 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@sstephenson I like vanilla Emacs http://is.gd/hIEH2 http://yfrog.com/0ivgyp w/ some familiar keyboard shortcuts http://is.gd/hIEH1"
|
||||
"7468712059740160","","","","","2010-11-24 16:20:54 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Destructuring bind, proxies, let, and maybe even iterators/generators. Paren-free control structure heads would just be icing on the cake."
|
||||
"7467715476332544","","","","","2010-11-24 16:16:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I'm probably getting too excited for ES Harmony at this early stage, but there is some seriously awesome stuff coming up."
|
||||
"7466225718272000","","","7351856971907073","9533042","2010-11-24 16:11:01 +0000","web","RT @BrendanEich: New post: Paren-Free http://brendaneich.com/2010/11/paren-free/"
|
||||
"7263363675455489","","","","","2010-11-24 02:44:55 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Is there a way to ignore certain *lines* with git? Not just add -p or gitx, but permanently ignore them? Maybe a hook can do that w/ grep -v"
|
||||
"7190759837016064","7187118862368768","14206068","","","2010-11-23 21:56:25 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tlrobinson You can click the X in the top right corner of the scary pic. Only spotted it today but it hasn't showed up again yet."
|
||||
"7153611339468800","","","","","2010-11-23 19:28:48 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Horrible realization: There's no coffee in the house! The cup my roommate left me this morning was the last of it."
|
||||
"7135593024720896","7131949030178816","138082149","","","2010-11-23 18:17:12 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jordymoughtin You should post a pic or two! The ground holds a lot of warmth so snow melts relatively quick down there."
|
||||
"7135518248669184","7135354414956545","894911","","","2010-11-23 18:16:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke derp"
|
||||
"7135012646289408","7132455655964673","894911","","","2010-11-23 18:14:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke Crap, well I'm still hoping for a surprise blizzard :)"
|
||||
"7120569245900800","","","7094982804508672","181984707","2010-11-23 17:17:30 +0000","web","RT @aminutewith: Discussing a Bytecode Standard In Browsers #amwb http://t.co/govKc0O","http://www.aminutewithbrendan.com/pages/20101122"
|
||||
"7101850608214016","","","","","2010-11-23 16:03:07 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Should work from home more often, it's beautiful here: http://yfrog.com/j6pt5aj http://yfrog.com/3osa3pj"
|
||||
"6854729866940416","6846595924496384","46209261","","","2010-11-22 23:41:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mrobertsdesign Good to hear! I'll try my luck :)"
|
||||
"6843663996944385","6841815126773761","67042447","","","2010-11-22 22:57:11 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@BC_Transit Any news on the #rt99 Shawnigan Lake and #rt66 Duncan going out of #yyj this afternoon? #yyjsnow"
|
||||
"6795770019713024","","","","","2010-11-22 19:46:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","omfg, this can't be a real sign! RT @moonpolysoft: current status: http://bit.ly/buN5On"
|
||||
"6769564239007744","6569580650569729","29255412","","","2010-11-22 18:02:44 +0000","web","@tjholowaychuk it's also a good warning, it means they don't really understand things and we probably don't want to steal their shit anyway."
|
||||
"6431366640050176","","","","","2010-11-21 19:38:51 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I really dig this GitHub code browser: http://sr3d.github.com/GithubFinder/?user_id=creationix&repo=wheat"
|
||||
"6078873519259648","","","","","2010-11-20 20:18:11 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Current status, no power: http://twitpic.com/38m1jo"
|
||||
"5835466062438400","","","","","2010-11-20 04:10:58 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","I know it's not much but it doesn't snow much here. It's sweet! http://yfrog.com/59kz6cj http://yfrog.com/04gzozj"
|
||||
"5827330597462016","","","","","2010-11-20 03:38:38 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Not every day you get to have a snowball fight here on the island!"
|
||||
"5789957469765633","","","","","2010-11-20 01:10:08 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Is it so hard to handle touch *and* click events? I realize many sites are optimized for either mobile or desktop, but come one."
|
||||
"5760213411958784","5671637231861761","1089691","","","2010-11-19 23:11:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@glasner Nope, we're using #nodejs and #riak at @SelfServeApps and they're awesome, great communities. Everyone at @basho is fantastic."
|
||||
"5697319752171521","","","5695419396923393","15394440","2010-11-19 19:02:01 +0000","web","RT @isntitvacant: YES FINALLY http://www.zurb.com/playground/jquery-raptorize"
|
||||
"5693491686412289","","","","","2010-11-19 18:46:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Convert hex colours to and from RGB on the command line, gist: http://is.gd/hqZas github: http://is.gd/hqZat /cc @JimRoepcke"
|
||||
"5645084926156800","","","","","2010-11-19 15:34:27 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","TIL that PowerPoint doesn't know what a centimetre is: http://support.microsoft.com/kb/189826 (They use some made up unit and call it a cm)"
|
||||
"5484267274502144","","","","","2010-11-19 04:55:25 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","https://github.com/ivanvc/gists-tmbundle ... I'll have to write this up for Emacs too. (tip o' the hat to @JimRoepcke)"
|
||||
"5481686577979392","","","5343998050828288","12876","2010-11-19 04:45:10 +0000","web","RT @edd: Help me find out what language to learn next ? fun survey for programmers http://edd.me/proglangs ? I'll publish results, please RT"
|
||||
"5423677059371009","5419746010865664","33493","","","2010-11-19 00:54:40 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@peterc oops see you already heard that. :) Would be nice to fix it for the colour blind though, it's quite cool."
|
||||
"5423108294975488","5419746010865664","33493","","","2010-11-19 00:52:24 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@peterc what about colour blind folks? They rely on light position."
|
||||
"5422530533793792","","","5370822680117249","36383929","2010-11-19 00:50:06 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @spyced: Configuration options are a hope that your users, with less knowledge of how the system works, will find the right solution ..."
|
||||
"5137798986203137","","","5131215220772864","668863","2010-11-18 05:58:41 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @tomdale: I am guilty of this: http://www.wiccat.net/jargon/html/C/creeping-elegance.html"
|
||||
"5137681390505984","","","5099335956045825","18572656","2010-11-18 05:58:13 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @Brotherbard: New GitX release: syntax highlighting and blame (and gisting works again) download: http://is.gd/hkeTU screenshots: htt ..."
|
||||
"5086764213473282","","","5080288711409664","663463","2010-11-18 02:35:53 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @rentzsch: @ryah no fair adding a pipe() method to core just so you could tweet that ;-)"
|
||||
"5071011485585408","","","5041072732372992","18022416","2010-11-18 01:33:18 +0000","web","RT @sebmarkbage: Blog Post: Leaky This - Why not all code can be safely wrapped, even with JavaScript Proxies. http://goo.gl/dAgGr cc @B ..."
|
||||
"5067901602111488","","","","","2010-11-18 01:20:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I've been editing spreadsheets on Google Docs since last year when I got my iPhone. Had to refresh to see changes, but it was not read-only."
|
||||
"5040136614060032","5036855619747840","5813712","","","2010-11-17 23:30:36 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@antirez I do the same w/ github. To get comfy on a new box I type `wget -qO - bit.ly/newbox | sh` ? check http://bit.ly/newbox for details."
|
||||
"5036132395909120","5035155257303040","14063149","","","2010-11-17 23:14:42 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@miksago ah, that's much better"
|
||||
"5034675546361856","","","","","2010-11-17 23:08:54 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I have a few @kiwi_app v2 beta invites if anyone's interested."
|
||||
"5034233579966464","5032078190059520","14063149","","","2010-11-17 23:07:09 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@miksago It'd be easy to implement, no? Something like: https://gist.github.com/704310 (untested)"
|
||||
"4992613341990912","","","","","2010-11-17 20:21:46 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","How have I not seen http://tweetingtoohard.com/ before. http://tweetingtoohard.com/top is gold. #TTH"
|
||||
"4982533787746304","","","4977897676734464","894911","2010-11-17 19:41:43 +0000","web","RT @JimRoepcke: The revived feature I was talking about on Nov 9th is live! iPhone Simulator (beta 1). Written in Cappuccino. http://cms ..."
|
||||
"4916701837664258","4845535081005056","30226730","","","2010-11-17 15:20:07 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@OgreSwamp Looks great so far. Thanks for the invite!"
|
||||
"4913497150332928","","","","","2010-11-17 15:07:23 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Just bought @kiwi_app, they turned my complaint into a sale."
|
||||
"4911787044507648","","","4882543836930048","42855024","2010-11-17 15:00:35 +0000","web","RT @diegoperini: avoid browser fake ""favicon"" requests by using <link rel=""shortcut icon"" href=""data:image/x-icon;,"" type=""image/x-ic ..."
|
||||
"4902998199242752","4845535081005056","30226730","","","2010-11-17 14:25:40 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@OgreSwamp I've been using it so far. Worked around shortcuts not working."
|
||||
"4773795134971904","","","","","2010-11-17 05:52:16 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Well well well, what have we here: https://github.com/ry/node/blob/master/src/node.js#L280-281 Have to look into this further."
|
||||
"4731842850725888","4728326174277632","51201464","","","2010-11-17 03:05:33 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kiwi_app Works in Echofon and Divvy. I can only set custom shortcut in System Preferences if I choose different shortcuts than defaults."
|
||||
"4727906391560192","4715333503946753","30226730","","","2010-11-17 02:49:55 +0000","web","@OgreSwamp I'll take one off your hands. :)"
|
||||
"4727186623827968","4704803049443328","51201464","","","2010-11-17 02:47:03 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kiwi_app Aha, Cmd-n works. It's only the menu bar shortcuts, Ctrl-Cmd-[kmn], that are qwerty."
|
||||
"4703528966688768","4698007182245888","17088322","","","2010-11-17 01:13:03 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@ChrisNoel_Vic ha ha, there might be kevlar involved! and gas masks."
|
||||
"4703377732673536","4696714539696128","51201464","","","2010-11-17 01:12:27 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@kiwi_app Only the key bindings don't work. I'm not sure if Cocoa has multiple ways to handle shortcuts or something. Strange."
|
||||
"4696889538646016","4696309000830977","51201464","","","2010-11-17 00:46:40 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@kiwi_app In transit. I'll submit a proper bug report when I can! Sorry for the mix up. Kiwi is a nice client, you've done a great job."
|
||||
"4695417614761984","4693258315763712","51201464","","","2010-11-17 00:40:49 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@kiwi_app I'm sorry if I seemed rude myself. I really just wanted to let you know it was broken, could have used more tact."
|
||||
"4693538612707328","4682415859564544","17088322","","","2010-11-17 00:33:21 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@ChrisNoel_Vic I hope so! Another day like this and I'll go on a rampage."
|
||||
"4692331156475904","4687853263003648","51201464","","","2010-11-17 00:28:33 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@kiwi_app No need to be rude or take it personally. I probably wasn't buying anyway since it's broken for me, but fwiw you just cemented it."
|
||||
"4691322904510464","4687853263003648","51201464","","","2010-11-17 00:24:33 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@kiwi_app tweetie. Every app I use does the right thing except kiwi. Non-standard key handling? Lots of devs type dvorak btw. I'm not crazy."
|
||||
"4673971366666240","","","","","2010-11-16 23:15:36 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","computers suck today. flaky bastards, all of 'em."
|
||||
"4662436959358976","","","","","2010-11-16 22:29:46 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>",".@kiwi_app looks nice but keyboard shortcuts are broken if you don't type Qwerty :/ Looking nice is good but it's unusable for me."
|
||||
"4656235991269376","4653670352297984","16686076","","","2010-11-16 22:05:07 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify Configure your editor differently. TextMate can treat groups of spaces like a tab. Emacs makes it easy to repeat a command N times."
|
||||
"4651259885780992","","","4646758718111745","676363","2010-11-16 21:45:21 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @brianleroux: expand tabs to spaces. pls, I beg you. tabs are for makefiles and nothing else!"
|
||||
"4569207953956864","4556666381008896","14582359","","","2010-11-16 16:19:18 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@acangiano I assumed we'd have to wait for their works to be public domain before digital sales of the Beatles' music. Kind of a big deal."
|
||||
"4566620739469312","","","4565507432783873","8675502","2010-11-16 16:09:01 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @me1000: I've had two people tell me they wont watch the cappuccino repo on github because there is too much activity. #thatsWhatILik ..."
|
||||
"4554283932450817","","","","","2010-11-16 15:20:00 +0000","web","Now we just need to get the Beatles on @grooveshark and I'll be set :)"
|
||||
"4551863143763970","","","","","2010-11-16 15:10:23 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","The people who control the Beatles' library want people to hear it now. That is kind of a big deal, just not to those who use BT or rip CDs."
|
||||
"4418615348563969","","","","","2010-11-16 06:20:54 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Power went out, couldn't finish scrabble w/o the router. #welcometothefuture"
|
||||
"4361903669256192","4360896142905344","17025041","","","2010-11-16 02:35:33 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","@jtimberman to be fair zsh and bash as well ... But that's it."
|
||||
"4322597265215488","","","4312579535011840","9973082","2010-11-15 23:59:22 +0000","web","RT @kangax: Don't forget folks: crockford.com has to be written as www.CROCKFORD.com ? https://github.com/douglascrockford"
|
||||
"4299099784355840","","","4296565921423360","36156834","2010-11-15 22:25:59 +0000","web","RT @cloudhead: Having options which enable/disable UI or UX features is a sign of bad/confused UX. Don't hand off that duty to the user."
|
||||
"4289852174508032","","","","","2010-11-15 21:49:15 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","A useful tool called JSON diff by @tlrobinson http://samhuri.net/json-diff.html It's coming in really handy today."
|
||||
"4279082619506688","","","4275211570520064","181984707","2010-11-15 21:06:27 +0000","web","RT @aminutewith: Help up mod the latest episode of #amwb: http://ke-we.net/7sq"
|
||||
"4260909836935169","","","4229346512338944","83494384","2010-11-15 19:54:14 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @Cstep4: @jtaby @_sjs A nerdy argument about boners? It's 9:48am. You can't have an argument about 'boner semantics' at 9:48am."
|
||||
"4222997430800385","4220258722258945","6827332","","","2010-11-15 17:23:35 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jtaby ha ha. I suppose so! I'm a boxers & loose jeans guy :)"
|
||||
"4209436415496192","4197072861401089","6827332","","","2010-11-15 16:29:42 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","@jtaby Boners don't usually hang down."
|
||||
"4208961632862208","","","","","2010-11-15 16:27:49 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","I like Reeder at least 10x more than Pulse. Not as flashy but much more usable. I guess not everyone chews through 200+ items a day though."
|
||||
"4205401134338048","4014941333884928","11366522","","","2010-11-15 16:13:40 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@pyrotechnick I'm not hating, and s/CoffeeScript/anything that compiles to JS/g"
|
||||
"4205183542235136","4080563543613440","894911","","","2010-11-15 16:12:48 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke yup. And it seems like a petty reason to fork but it crosses my mind often enough."
|
||||
"4197723674771456","","","","","2010-11-15 15:43:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","""The wolves thin the RAID arrays, removing the slowest and weakest disks to keep the average seek speed high."""
|
||||
"4191159081508864","4052772404076544","27302287","","","2010-11-15 15:17:04 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jacobrothstein requireCS() and requireSibilant() that compiled if necessary or ran some make command would go a long way. I should make it."
|
||||
"4052202888892416","","","","","2010-11-15 06:04:55 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","I'm not against compiling to JS in general. Believe me I know JS is not perfect. However no one uses C libs written in stalin scheme, right?"
|
||||
"4043491575332864","4041634102644738","27302287","","","2010-11-15 05:30:18 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jacobrothstein @tjholowaychuk JS has many big and ugly warts so I understand the desire to fix them. Libraries shouldn't be a chore is all."
|
||||
"4043188868222976","4041634102644738","27302287","","","2010-11-15 05:29:06 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jacobrothstein Comments often stripped, generated JS more difficult to read, adds extra steps to fixing/modding the lib. /cc @tjholowaychuk"
|
||||
"4039062470000641","4009013972836352","29255412","","","2010-11-15 05:12:42 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tjholowaychuk Maybe, maybe not. Either way it's an annoyance. Like if someone wrote a C lib with a scheme-to-C compiler."
|
||||
"4008269135749121","","18022416","","","2010-11-15 03:10:20 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@sebmarkbage It's not all bad though. I do like reading CoffeeScript, it should just be more seamless I suppose. Problem to be solved? :)"
|
||||
"4008049614262273","3972702050197505","18022416","","","2010-11-15 03:09:28 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@sebmarkbage This case it's a server based on #nodejs. I've thought of compiling on demand but I don't like shaving yaks if I don't have to."
|
||||
"4007660898750464","3972227456311296","18022416","","","2010-11-15 03:07:55 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@sebmarkbage It's a barrier to those who would modify that library, and the compiled JS isn't always a joy to read, comments often stripped."
|
||||
"3971757589401600","3965646211649536","18022416","","","2010-11-15 00:45:15 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@sebmarkbage There are many advantages (and disadvantages) to dynamic languages. No compile step is definitely an advantage."
|
||||
"3930532060594176","","","3926179803299841","14658472","2010-11-14 22:01:26 +0000","web","RT @roidrage: @peterc I can hear the angry Erlang hacker mob stampeding down the street."
|
||||
"3930499449880577","","","3923905517453312","33493","2010-11-14 22:01:18 +0000","web","RT @peterc: @roidrage Node is 21st century Erlang."
|
||||
"3930481951252480","","","3921192981372928","14658472","2010-11-14 22:01:14 +0000","web","RT @roidrage: One of these days I'm gonna play with Node.js. Though it's even more likely I'm gonna build something with Erlang."
|
||||
"3910056114397184","","","3880206821490688","16686076","2010-11-14 20:40:04 +0000","web","RT @getify: I just posted a quick 5 minute overview screencast about LABjs, if you've been wondering what it's for: http://screenr.com/N7c"
|
||||
"3876206239813632","","","","","2010-11-14 18:25:34 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Throwing away a major advantage of dynamic languages isn't worth a little bit of syntax sugar. #getthefuckoffmylawn"
|
||||
"3875527567876096","","","","","2010-11-14 18:22:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","CoffeeScript is nice in some ways but libraries shouldn't be written in it. What happened to people embracing the lack of compilation?"
|
||||
"3874126028611584","","","","","2010-11-14 18:17:18 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Here's a novel idea, if you're writing a JavaScript library write it in JavaScript. Otherwise you have not written a JavaScript library."
|
||||
"3872721607860225","3863606437347328","9973082","","","2010-11-14 18:11:43 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@kangax Ah, makes sense. Thanks."
|
||||
"3722689223073792","3721411239616512","14063149","","","2010-11-14 08:15:32 +0000","web","@miksago Yes, it is. No compression by default either (-C) ... :/ Common workaround: tar cjf - /some/path | ssh remote 'cd path; tar xjf -'"
|
||||
"3714599727661056","3702036503728128","9973082","","","2010-11-14 07:43:24 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@kangax In Firefox 4 it's false, but ({""__proto__"":[]}) instanceof Array is true. Why should JSON.parse('\1') differ? Does FF get it right?"
|
||||
"3646990990704640","","","","","2010-11-14 03:14:45 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Current status: http://yfrog.com/2qk70bj"
|
||||
"3555882537328640","","","3545501794304001","894911","2010-11-13 21:12:43 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @JimRoepcke: I have a feeling this girl is going to regret making her dog this smart... http://www.youtube.com/watch?v=6RRjqkUAs8k"
|
||||
"3251880822050816","","","3251026052251648","3167301","2010-11-13 01:04:43 +0000","web","RT @tobie: #textmate update. Not a 2.0, but still."
|
||||
"3244719245099008","3217356864098304","12725872","","","2010-11-13 00:36:16 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@karlgoldfield you just did. ;-) my email is sami.samhuri+twt@gmail.com"
|
||||
"2868702638776320","","","","","2010-11-11 23:42:06 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","printf/sprintf and strftime in JavaScript: http://github.com/samsonjs/format and http://github.com/samsonjs/strftime (both are on npm)"
|
||||
"2862699633446913","","","2862092545695745","14206068","2010-11-11 23:18:15 +0000","web","RT @tlrobinson: You should never see multiple ""alert()""s from the same JavaScript context on the screen at once, right? http://bit.ly/di ..."
|
||||
"2862387883417600","2861144641376256","894911","","","2010-11-11 23:17:01 +0000","web","@JimRoepcke omfg #facedesk"
|
||||
"2860710354751490","2855378404507649","894911","","","2010-11-11 23:10:21 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>",".@JimRoepcke Firefox 4 introduces a major annoyance: basic auth credentials aren't saved. Hitting our staging server w/ Fx4 is infuriating."
|
||||
"2785079105421312","","","2768945010446337","14405464","2010-11-11 18:09:49 +0000","web","RT @SubtleGradient: NEW appify 2.0!
|
||||
Create the simplest possible mac app from a shell script!
|
||||
`cat my-script.sh | appify MyApp`
|
||||
|
||||
https:/ ..."
|
||||
"2595597475389442","","","2521132708134914","795244","2010-11-11 05:36:53 +0000","web","RT @mattknox: @gilesgoatboy sibilant by @jacobrothstein is sorta similar, as is something of mine."
|
||||
"2595585978802176","","","2520070060253184","1341781","2010-11-11 05:36:50 +0000","web","RT @gilesgoatboy: it's weird that there's no coffeescript equivalent that allows you to write javascript with lisp syntax"
|
||||
"2564340540514306","","","2545376875773952","14231571","2010-11-11 03:32:41 +0000","web","RT @marcoarment: Instapaper 2.3 for iPhone and iPad: http://blog.instapaper.com/post/1538890633"
|
||||
"2423780030808064","","","","","2010-11-10 18:14:08 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @rklophaus: Emacs + PeepOpen (by PeepCode) = Bliss http://bit.ly/aIogPG"
|
||||
"2422328965201920","","","","","2010-11-10 18:08:22 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Cleaning out watched repos on @github. Wish there was a star button on repos as well as gists, I'd like to keep a handle on some of these."
|
||||
"2381888807243778","","","2374406705778688","14560304","2010-11-10 15:27:41 +0000","web","RT @frank06: luwak (big file) support landed in riak-js master https://github.com/frank06/riak-js #riak #nodejs #riakjs"
|
||||
"2379645236285440","","","","","2010-11-10 15:18:46 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @peterc: DNode is like Ruby's DRb for node.js, but slicker (and asynchronous!): http://is.gd/gTr5a"
|
||||
"2206750530871296","","","2201125067423744","806757","2010-11-10 03:51:44 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @dshaw: Joyent & Node http://groups.google.com/group/nodejs/browse_thread/thread/956a3431b1d9e937"
|
||||
"2158295842295809","","","2157046266863616","27302287","2010-11-10 00:39:12 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @jacobrothstein: Twitter recommendation column should be a mini-stream of tweets from suggested users. Entice me to follow them with ..."
|
||||
"2065647718629376","2060783638810624","138082149","","","2010-11-09 18:31:03 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jordymoughtin fall? You keep on using that word. I don't think it means what you think it means. ;-) #yyj #victoriaonlyhas2seasons"
|
||||
"2035840536543232","2029887388917760","894911","","","2010-11-09 16:32:36 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke Sounds like a good compromise."
|
||||
"2028238226333697","1860944204402688","894911","","","2010-11-09 16:02:24 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke What if you could own it but still had to stream it? I have mixed feelings on that."
|
||||
"2026945600552960","","","2023394778292224","90286855","2010-11-09 15:57:16 +0000","web","RT @changelogshow: New episode: 0.4.0 - #riak revisited and the move to #github with @argv0, @pharkmillups, and @jnunemaker http://lg.gd ..."
|
||||
"2016628665491456","","","","","2010-11-09 15:16:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Ah, it highlights where it found your search terms. That's kind of cool I guess, but the same blurb is already under each link..."
|
||||
"2016126972203008","","","","","2010-11-09 15:14:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Woah, Google shows site previews in search results now. When did that happen? Not sure if I like it yet."
|
||||
"2014936544837632","","","","","2010-11-09 15:09:32 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Cappuccino improves really quickly. I subscribe to RSS feeds for a few projects on github and Cappuccino has the most commits."
|
||||
"1900553181339648","1892265207267328","14273142","","","2010-11-09 07:35:01 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@lunafiko I agree. The next button appearing where the submit button was surprised me as well."
|
||||
"1889739711979521","","","","","2010-11-09 06:52:03 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Wow, 25/26. Guess I know more jQuery than I thought. It was suspiciously easy though. http://tutorialzine.com/quizzes/take/1/"
|
||||
"1886494004350976","","","","","2010-11-09 06:39:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Just pushed gitter v0.0.2. Now works in Chrome 7 and Safari 5. I don't want to support browsers without ES5."
|
||||
"1853414258507776","","","","","2010-11-09 04:27:43 +0000","web","shell script dev tip: prepend all commands with $prefix, and when a -t or --test arg is given set prefix=echo"
|
||||
"1849364116934656","","","1826102859268096","13192","2010-11-09 04:11:37 +0000","web","RT @avibryant: I love a good arms race - using Firesheep's code to detect usage of Firesheep: http://t.co/KK7QhuM","http://j.mp/bQtAnt"
|
||||
"1801695877140480","","","","","2010-11-09 01:02:12 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @lunafiko: git archive? Damn awesome."
|
||||
"1800929586184192","1798735306686465","14273142","","","2010-11-09 00:59:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@lunafiko That's true. I also like it being light[er] in the morning so I shouldn't be whining."
|
||||
"1798306980175872","1796201280180224","14273142","","","2010-11-09 00:48:44 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@lunafiko pesky reality. Theory ftw!"
|
||||
"1791457161646080","","","","","2010-11-09 00:21:31 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Work's done, getting dark. So it begins."
|
||||
"1680645889720320","","","","","2010-11-08 17:01:11 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","weekend hack: gitter http://is.gd/gQ55y The API needs work, but it's a nice little github library for #nodejs, on npm. (read-only for now)"
|
||||
"1669916658769921","","","1666481234378753","3374231","2010-11-08 16:18:33 +0000","web","RT @mxcl: I'm trying to build foo on Windows, can you help? Yes I can. Your problem, you see, is you are trying to do software developme ..."
|
||||
"1669660764282880","1660882169888768","14658472","","","2010-11-08 16:17:32 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@roidrage They didn't even mention Riak."
|
||||
"1665855230320640","","","1663027397009408","181984707","2010-11-08 16:02:25 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @aminutewith: Awesome new episode posted today about threading, co-routines, and continuations. Deep JS FTW - http://t.co/Dk2Da6U #amwb","http://www.aminutewithbrendan.com/pages/20101108"
|
||||
"1665132803399680","","","1655987329044481","532923","2010-11-08 15:59:33 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @mathias: Remember the auto-buying bot from xkcd comic #576? Someone actually built it: http://mths.be/anm"
|
||||
"1411096472723457","","","","","2010-11-07 23:10:06 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Writing JS feels like Scheme, it's great. Not perfect but mostly a pleasure with node & ES5. The prototype API sucks though."
|
||||
"1033055552671744","","","671488130686976","202118058","2010-11-06 22:07:54 +0000","web","RT @ontwiik: Brendan Eich ? A Brief History of #JavaScript http://goo.gl/fb/Nskh9 @ontwiik #jsconf"
|
||||
"765972692606976","709333583142912","27302287","","","2010-11-06 04:26:36 +0000","web","@jacobrothstein Nice! I like the look of that chain macro. Reminds me that I've been meaning to write a bit of sibilant."
|
||||
"634714364837889","","","618041108860928","41154223","2010-11-05 19:45:02 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @saikatc: Feh - Sheena is right - Chrome is awesome with how fast it moves, but it's hard to keep up when they introduce bugs."
|
||||
"615460034846720","","","","","2010-11-05 18:28:31 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","""Seriously? No."" http://yfrog.com/66abuep"
|
||||
"611935951265792","","","","","2010-11-05 18:14:31 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","http://yfrog.com/fv8dnp"
|
||||
"595016703549441","","894911","","","2010-11-05 17:07:17 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke http://www.reddit.com/r/pics/comments/e1ro9/my_hatchback_needs_2_spaces_for_all_my_trendy/"
|
||||
"582346411606016","578482375499777","33493","","","2010-11-05 16:16:56 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@peterc Heh, yeah I have a long bus commute so I finished it up this morning."
|
||||
"582113816477696","574093225103360","138082149","","","2010-11-05 16:16:01 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jordymoughtin I got a geo alarm but it didn't go off today. I'll have to figure out how to use it so I remember to snap those photos."
|
||||
"569167153467393","","","553490682216449","6707392","2010-11-05 15:24:34 +0000","web","RT @sstephenson: The JS that powers Chalk is written in CoffeeScript, compiled and served on-the-fly with Brochure: http://github.com/ss ..."
|
||||
"569157116497920","","","551993839976448","6707392","2010-11-05 15:24:32 +0000","web","RT @sstephenson: Spot-on dissection of Chalk by @_sjs: http://samisamhuri.blogspot.com/2010/11/37signals-chalk-dissected.html"
|
||||
"569053273919489","566423520804865","138082149","","","2010-11-05 15:24:07 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jordymoughtin Tell me about it! No chance for a sunrise photo today :/"
|
||||
"547556920659968","542037195628544","15045995","","","2010-11-05 13:58:42 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@asianmack thanks :)"
|
||||
"438487950041088","435863469162496","33493","","","2010-11-05 06:45:18 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@peterc Sweet! I doubt I said everything so I look forward to reading your post as well :)"
|
||||
"429474470436864","363432440233984","33493","","","2010-11-05 06:09:29 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>",".@peterc Ask and ye shall receive: http://samisamhuri.blogspot.com/2010/11/37signals-chalk-dissected.html"
|
||||
"391737109385216","","","375969575604224","658643","2010-11-05 03:39:32 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @SteveStreza: 19 of the top 25 iPhone paid apps are games. Annoying that games and apps are lumped together, they're fundamentally di ..."
|
||||
"349036066381824","","","","","2010-11-05 00:49:51 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","ES Harmony aims to warn about undefined vars at compile time. That's fucking sweet! http://www.aminutewithbrendan.com/pages/20101103"
|
||||
"334303720382464","","","","","2010-11-04 23:51:18 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","""in a decision so shockingly sane that it's still a bit hard to believe."" --http://j.mp/duN8Qg (ain't that the truth)"
|
||||
"29695471545","29694954320","16686076","","","2010-11-04 19:43:41 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@getify I think regex behaviour is fine as is, but think that split should accept a flag to include captures in results, default is false."
|
||||
"29694935960","","","29694190835","14561327","2010-11-04 19:35:40 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @dhh: As a reminder, it took more than a year before Basecamp could simply pay the bills. Much longer to be a ""success""."
|
||||
"29690632205","29689312179","14273142","","","2010-11-04 18:32:51 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@lunafiko More (metal) Rick while you wait: http://www.youtube.com/watch?v=ntu-poC2FOI"
|
||||
"29678348437","","","","","2010-11-04 15:51:19 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Sweet, looks like I *can* set a geo alarm (without writing it myself)! I shouldn't be surprised that I'm not the first to have that idea."
|
||||
"29678127850","29677299943","138082149","","","2010-11-04 15:48:38 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jordymoughtin It would be cool if I could set a geo reminder that went off when I was coming up to a certain location."
|
||||
"29676994383","","","","","2010-11-04 15:34:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Apple removes the disk from the AppleTV, and Western Digital adds a 1TB disk to their WD Live! box. Seems like no one knows what to do here."
|
||||
"29673272595","","","","","2010-11-04 14:50:40 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Not spectacular but still pretty. (/cc @jordymoughtin) http://yfrog.com/28t13oj"
|
||||
"29672190052","","","29670293252","14405464","2010-11-04 14:35:35 +0000","web","RT @SubtleGradient: While we all try to implement inbox zero?
|
||||
|
||||
I've been successfully implementing wallet zero for years."
|
||||
"29637164320","","","","","2010-11-04 03:42:07 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Does any browser have a keyboard shortcut to pop the current tab out into a new window? There's a gap between window & tab management w/ kb."
|
||||
"29618498177","29585274512","138082149","","","2010-11-03 23:42:32 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@jordymoughtin that sounds like a lot of work."
|
||||
"29580323560","29579180249","138082149","","","2010-11-03 15:16:00 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@jordymoughtin no doubt. I guess the advantage of leaving in the dark is seeing beautiful sunrises."
|
||||
"29578382934","","","","","2010-11-03 14:54:01 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Current status: http://yfrog.com/6bmsmvj"
|
||||
"29572230950","","","29569868391","14582359","2010-11-03 13:43:20 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @acangiano: Modern life: http://bit.ly/dqAEmE"
|
||||
"29534601154","29513473323","676363","","","2010-11-03 03:00:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@brianleroux with a few VMs a lemur w/ spacious hdd might trump the air's fast ssd. v13 is very meh. core solo & 2gb ram? /cc @sh1mmer"
|
||||
"29521689693","","","","","2010-11-03 00:24:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Bonobos are incredible! http://www.reddit.com/r/todayilearned/comments/dzyyl/til_that_there_is_a_species_of_ape_that_is_more/"
|
||||
"29517895804","","","","","2010-11-02 23:41:47 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","No luck w/ @grooveshark for iPhone the last few days. Every song pops up an alert saying it can't be played. #sadpanda"
|
||||
"29510496581","29503115600","14206068","","","2010-11-02 22:14:28 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tlrobinson Divvy, SizeUp, Issues, Colloquy, GitX, Chrome, VLC"
|
||||
"29483259436","","","29473292480","6707392","2010-11-02 16:04:21 +0000","web","RT @sstephenson: Chalk is a little iPad app we made for fun: http://bit.ly/c93xN3"
|
||||
"29479276705","","","29478498377","13302022","2010-11-02 15:19:24 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @TechmemeFH: Skyfire iOS browser approved by Apple, converts Flash video to HTML5 (Katie Marsal / AppleInsider) http://j.mp/cqAmYH ht ..."
|
||||
"29422458502","","","","","2010-11-02 00:40:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","This is just embarrassing: http://is.gd/gAKuy We've gone too far to correct our path. North America is a joke."
|
||||
"29392091074","","","","","2010-11-01 17:34:12 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","TextMate needs some kind of warning when a bundle clobbers a native keyboard shortcut. Ideally with a ""Slap Bundle Author"" button."
|
||||
"29388475602","","","","","2010-11-01 16:46:18 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","To make it perfect you need language support. if, for, while, etc. all need to grok promise/futures/deferreds. I can wish..."
|
||||
"29387808624","","","","","2010-11-01 16:37:51 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Unfortunately to make it really excellent you need method missing as well. Can't wait for proxies! http://is.gd/gzS6Q"
|
||||
"29387607225","","","","","2010-11-01 16:35:20 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Combined with dynamic properties (getter/setter) you could make an async system that's a pleasure to use."
|
||||
"29387515974","","","","","2010-11-01 16:34:12 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Node needs a standard library with deep promises/futures/deferred support. If all values may be deferred you write fewer nested callbacks."
|
||||
"29385115672","","","","","2010-11-01 16:04:37 +0000","web","Why doesn't #newtwitter display conversations like the iPad app? It's basically impossible to trace a reply back to the root. #fail"
|
||||
"29382783017","","","","","2010-11-01 15:35:52 +0000","web","Quite possibly the best Everclear song: AM Radio. On @Grooveshark: http://tinysong.com/1XlM #musicmonday #nowplaying #rainymonday"
|
||||
"29377939391","29375735737","3260971","","","2010-11-01 14:39:21 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@niels_bom Hmm, even w/ syntax highlighting off emacs is slow while editing 1.7MB. TextMate fares much better, at least as good as vim."
|
||||
"29375363397","","","29373811618","14582359","2010-11-01 14:10:04 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @acangiano: WOW, a lyrics site that doesn't suck: http://instalyrics.com"
|
||||
"29375266306","","","29371945221","86026492","2010-11-01 14:08:59 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","RT @js_fiddle: Please help with a little survey - http://survey.jsfiddle.net/ takes 15sec, no personal data collected - repeat as many t ..."
|
||||
"29375030439","29329351171","14273142","","","2010-11-01 14:06:22 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","@lunafiko careful with it though, it can become a habit fast! I do my CSS the same way now :)"
|
||||
"29374815208","29358745907","3260971","","","2010-11-01 14:03:56 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","@niels_bom interesting, who knew people edited files > 1GB with a normal editor. That's massive."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,157 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"20704831341600768","20697233640923137","16686076","","","2010-12-31 04:56:31 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","@getify make sure not to allow vim or other editors that can shell out w/ sudo. It's a PITA but you have to edit as user & cp files w/ sudo."
|
||||
"20646017758138368","","","","","2010-12-31 01:02:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","New 404 page on @github is pretty awesome. https://github.com/samsonjs/404 (just in case some joker registers the user 404 ;-)"
|
||||
"20483137414889473","","","","","2010-12-30 14:15:35 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Even worse today. Why can't I just get Buckley's via IV and sleep until I'm better?"
|
||||
"20479600169590784","20405434812731392","14206068","","","2010-12-30 14:01:31 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tlrobinson Definitely not. Seems like I'm always removing youtube's feature=related one, or some google reader crap."
|
||||
"20301276986216448","20300822743093248","14358152","","","2010-12-30 02:12:56 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mentalguy Definitely, HN poll is just the lazy way to get a rough idea."
|
||||
"20295292309995521","20294187253506048","14358152","","","2010-12-30 01:49:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mentalguy Interesting, that does make sense in a way. Maybe we should do a hacker news poll to get an idea."
|
||||
"20295028014325760","20291153286926337","20826421","","","2010-12-30 01:48:06 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@wavded Yeah I should see if I can whip something up for Emacs. Seems like I could find some algorithms to start with if I search."
|
||||
"20290262827802624","20277928260538368","20826421","","","2010-12-30 01:29:10 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@wavded I'm thinking more text completion that intelligently finds matches based on capitalization and such rather than straight prefixes."
|
||||
"20282096224309249","20271897430200320","14358152","","","2010-12-30 00:56:43 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mentalguy Heh, so a majority of developers then."
|
||||
"20275314152177667","","","","","2010-12-30 00:29:46 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Do Emacs or vim have completion that works like the Cmd-t dialog in TextMate or expansion in zsh? I want ""relTy<COMPLETE>"" -> ""releaseType"""
|
||||
"20161204047577088","","","","","2010-12-29 16:56:20 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Didn't have any caffeine for a week, and now it seems to do more harm than good. Maybe that's because I'm sick & took some cold&cough meds."
|
||||
"20108790447738880","","","20105073468112896","887251","2010-12-29 13:28:03 +0000","web","RT @ppk: New blog post: The Unbearable Inevitability of Talking Nonsense when you Don?t Know Shit about the Mobile Market
|
||||
http://bit.ly/ ..."
|
||||
"20102836775821312","","","20001547630944258","14273142","2010-12-29 13:04:24 +0000","web","RT @lunafiko: If you're a Netflix user, check out my IMDb ratings/links chrome plugin: IMflixDB: http://goo.gl/odxQo"
|
||||
"19996727578726400","19992272107995136","16240267","","","2010-12-29 06:02:46 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@instapaper Thank you, that's why we love Instapaper. Just rated it 5 stars."
|
||||
"19880947809787905","","","19878524328349696","14433431","2010-12-28 22:22:41 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @kriszyp: So master/trunk of jQuery and Dojo support the same module format... Cooperation and interoperabilty among libraries, wow!"
|
||||
"19869571808763904","19867157449936896","27302287","","","2010-12-28 21:37:29 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jacobrothstein It is a sign of a healthy JS ecosystem to have languages compiling down to it."
|
||||
"19869360742993920","19868635296169984","123323498","","","2010-12-28 21:36:39 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jashkenas That certainly is one of CS's strengths. I've become accustomed to ES5 and coding for browsers seems like a bigger PITA now."
|
||||
"19865885489496064","19864989921705984","123323498","","","2010-12-28 21:22:50 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jashkenas @tjholowaychuk In reality using a library -> changing it -> compiling CS libs, though I hear node can execute CS directly."
|
||||
"19864097671610368","19861349014175744","16621709","","","2010-12-28 21:15:44 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jadedoto http://www.youtube.com/watch?v=ZxYA6duF-9E"
|
||||
"19864070131818496","19861888988880896","123323498","","","2010-12-28 21:15:38 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jashkenas @tjholowaychuk Not threatening but it's a barrier to contribution (could be good or bad) and adds extra steps to using CS libs."
|
||||
"19861550118469632","19841488074571777","903351","","","2010-12-28 21:05:37 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@elliottkember Ouch, not even really sure I'd want to see that. Ok I'm lying, I would definitely watch that video if it were on youtube."
|
||||
"19861330680872960","19830879304028160","894911","","","2010-12-28 21:04:44 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke Heh, might do. Barring JavaScript itself improving, I'd like something between JS and CS but CS already has a lot of momentum..."
|
||||
"19826890525114368","19826318107484161","903351","","","2010-12-28 18:47:53 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@elliottkember Do you have a spoon, lighter, or counter top? Absolute worst case you can use your teeth, but it might hurt..."
|
||||
"19826715068993536","","","","","2010-12-28 18:47:11 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","function frob(x) { return new Foo().bar(x) } ... I would love to instead write: var frob = Foo ? new ? bar; using point-free style."
|
||||
"19810707214180353","","","19766564328833024","29777587","2010-12-28 17:43:35 +0000","web","RT @pharkmillups: so Pat Metheny is pretty darn spectacular #thatisall"
|
||||
"19766084504657920","","","","","2010-12-28 14:46:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Wish there was a mini DisplayPort cable lying around here. I could open up my sister's 27"" iMac and use it as an external display. #sadpanda"
|
||||
"19467263891480576","","","","","2010-12-27 18:58:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Fill form, hit return, wait for things to happen ... no JS errors, what's going on? Oh I see, I have to click the stupid button. BLURGH!"
|
||||
"18545025151401984","18520751522979840","14581738","","","2010-12-25 05:54:13 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","@tolmasky calling toString should do it. Native methods usually say ""native code"" or something."
|
||||
"15944797621583872","15913498877890560","16686076","","","2010-12-18 01:41:50 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify Or just get 2 rocks and set them on Cmd/Ctrl and T"
|
||||
"15944650254721025","","","","","2010-12-18 01:41:15 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Oops, nevermind. Looks like Firefox 3.6 does support CORS."
|
||||
"15943600974077952","","","","","2010-12-18 01:37:05 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Firefox 3.6 doesn't support CORS, anything better to fallback to than JSONP? Proxying all requests might be simpler ... ugh."
|
||||
"15904633033592832","","","15891593160560640","16686076","2010-12-17 23:02:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @getify: ""I can fix that..."" http://bit.ly/fhR0nu #haha"
|
||||
"15884548122345472","15878801028292608","15258949","","","2010-12-17 21:42:26 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tilgovi closure or ocaml. I don't know either of them yet but they are really interesting. All good choices though, you can't go wrong."
|
||||
"15850007655612416","","","","","2010-12-17 19:25:10 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","$ mongo scale-for-interwebs"
|
||||
"15805187683778560","","","15800050101788672","6707392","2010-12-17 16:27:05 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @sstephenson: Dropbox 1.0: ?You now can choose which folders get downloaded to which computers.? Right on. http://blog.dropbox.com/?p=581"
|
||||
"15593595394326530","","","15592279016218624","894911","2010-12-17 02:26:17 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @JimRoepcke: Folks, it's officially THE FUTURE. Word Lens is insane. I wanna go to Mexico just to have a good reason to use it! http: ..."
|
||||
"15584538897944577","","","","","2010-12-17 01:50:18 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","heh ... ""Christmas time is and always has been a good excuse to purchase expensive computer hardware of course -- come on admit it."""
|
||||
"15549827970502656","","","15548762025889792","29777587","2010-12-16 23:32:22 +0000","web","RT @pharkmillups: ATTN all bad ass developers: if u can't make tonight's riak+node.js talk in SF, don't fret. we're streaming it: http:/ ..."
|
||||
"15489927789674497","","","15489228989267968","16333852","2010-12-16 19:34:21 +0000","web","RT @opscode: Chef on Steroids (Demo Tonight) at LOPSALA ( http://ow.ly/3qpwS ) #chef #devops"
|
||||
"15482845841596416","","","","","2010-12-16 19:06:12 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Will you look at that, view-source for POSTs is apparently fixed in Chromium! http://code.google.com/p/chromium/issues/detail?id=523#c102"
|
||||
"15193983722459136","","","","","2010-12-15 23:58:22 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Hooray, they wrote the post I wanted to read! @Grooveshark's transition from Flash to HTML: http://is.gd/iOsKi"
|
||||
"15193570059227136","","","","","2010-12-15 23:56:44 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","go @sstephenson! RT @thomasfuchs: Zepto.js is maturing, lots of commits in December so far! http://bit.ly/hr2vY0 :) v0.3 isn't far off now!"
|
||||
"15183363086221312","15182645679890432","8038312","","","2010-12-15 23:16:10 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@izs Ah, that is pretty awesome!"
|
||||
"15181537582514176","15179330011275264","8038312","","","2010-12-15 23:08:55 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@izs Looks like a pretty generic tool. Can you be more specific about what you did with it?"
|
||||
"15162399350849536","15141340123766786","676363","","","2010-12-15 21:52:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@brianleroux Totally agree, but unfortunately a lot of people don't care. They want a cheaper handset and never intend to switch carriers."
|
||||
"15132847224393728","15129237690253312","14560304","","","2010-12-15 19:55:26 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@frank06 CoffeeScript sure does have some nice features. I like short lambda syntax and extended regexes a lot too."
|
||||
"15128790489374721","","","","","2010-12-15 19:39:19 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Wish everything in JavaScript were an expression like in Ruby and Lisp. We can fake it with one-off functions but it's kind of annoying."
|
||||
"15106674851315714","","","15065103338577921","118963","2010-12-15 18:11:26 +0000","web","RT @brianarn: Mind is blown. Water drop at 10000 fps. Amazing. http://youtu.be/6KKNnjFpGto so, so amazing. Want to see this special."
|
||||
"15095001268617217","15094653296582656","894911","","","2010-12-15 17:25:03 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke Always follows for 2-3 days too, presumably looking for follow-backs. What's amazing to me is that it seems to work. :/"
|
||||
"15094115184152576","15093312318873601","894911","","","2010-12-15 17:21:32 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke I usually am too if someone is following thousands. Not sure why I'm being nice to random spammer X today."
|
||||
"15090204062785537","","","15087903860326400","226591222","2010-12-15 17:05:59 +0000","web","RT @minutewith: Announcing the launch of our main directory page: http://minutewith.com AND our new podcast http://node.minutewith.com"
|
||||
"15085530408550401","15067213501300736","819606","","","2010-12-15 16:47:25 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@janl | most"
|
||||
"15073686868467712","","","15071903395872768","197495418","2010-12-15 16:00:21 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @DalaiLamaInBed: At one level, all major religious traditions have the same aim ? to transform the individual into a positive being i ..."
|
||||
"15063374261911552","","","","","2010-12-15 15:19:22 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","?"
|
||||
"15059781643411456","","145216969","","","2010-12-15 15:05:06 +0000","web","@KlikkiScott You've followed and unfollowed me 3 times now. Stop it. Next time you get reported for spam."
|
||||
"15059245879795713","","","15057286439370752","15439395","2010-12-15 15:02:58 +0000","web","RT @stephenfry: Just for a moment I thought the 4th letter of that sentence was an 'e' ... http://twitpic.com/3g5srd"
|
||||
"14854886231384066","14848029391593473","29255412","","","2010-12-15 01:30:55 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tjholowaychuk Hurray! Have waited for this for quite a while."
|
||||
"14842738600054784","","","14838086244499456","1183041","2010-12-15 00:42:39 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @wilw: @kn0thing All I want for Christmas is for Social Media Agencies and Social Media Douchebags to ride a rocket into the heart of ..."
|
||||
"14787644269535232","14761375171608576","138082149","","","2010-12-14 21:03:43 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jordymoughtin ? Walkin' in a soggy wonderland ?"
|
||||
"14750860466716672","14743881165836288","4777951","","","2010-12-14 18:37:33 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@_sjs @getify Seems to work https://gist.github.com/740840 ... not copy/paste easy unfortunately"
|
||||
"14743881165836288","14743153009496065","16686076","","","2010-12-14 18:09:49 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@getify Hmmm. This is a bit hacky and not turn-key, but what if you modified the add-line-numbers code to spit out innerHTML?"
|
||||
"14742164793729024","14739781841854465","16686076","","","2010-12-14 18:03:00 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify what's the use case? seems like a gist might be enough, just add line numbers: http://is.gd/iK8PK ... if it has to be static I dunno"
|
||||
"14732506158858240","","","14720795674673152","18137723","2010-12-14 17:24:37 +0000","web","RT @raganwald: Three-sided coin: @lsegal http://bit.ly/e2ki2x, @unclebobmartin http://post.ly/1KkVI, @raganwald http://bit.ly/iaTrCb"
|
||||
"14542407932575744","14481260499959809","29255412","","","2010-12-14 04:49:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tjholowaychuk Hijack or start, whichever. We wouldn't go from 0 to 100 in 6 months like Aaron mentioned but I bet we'd do ok. Couple dozen?"
|
||||
"14541546556751873","","","","","2010-12-14 04:45:49 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","thank you chrome http://yfrog.com/h0pp6p"
|
||||
"14472239063764993","14468508809175040","29255412","","","2010-12-14 00:10:25 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tjholowaychuk I have been thinking about it a lot recently. VanJS jealousy, and I don't want to drag myself to Van on a wed. night :)"
|
||||
"14452070526492672","14440471904391168","29255412","","","2010-12-13 22:50:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tjholowaychuk I'm in Shawnigan Lake till April or so, but after then I'll be all over a JS / node meetup."
|
||||
"14445133449658368","14441513698205696","14063149","","","2010-12-13 22:22:42 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@miksago meh, it's nicer up here in BC ;-)"
|
||||
"13742023454490624","13740923158532097","903351","","","2010-12-11 23:48:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@elliottkember cheese & chili, no questions asked! :)"
|
||||
"13394912452022272","13393219450568704","676363","","","2010-12-11 00:49:30 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@brianleroux yeah, or shell out. Some might whine about portability to windows but IMO windows users should do real work in a *nix vm. meh."
|
||||
"13393193613664256","13390224239366144","676363","","","2010-12-11 00:42:40 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@brianleroux there's a library called async.js with fs tools to help. Can send a link later as there are 2 libs called async.js."
|
||||
"13365855446376448","","","","","2010-12-10 22:54:02 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","This is amazingly cool. Makes textareas into more than passable vi editors. http://gpl.internetconnection.net/vi/"
|
||||
"13362885010915328","13356926200979456","16748247","","","2010-12-10 22:42:14 +0000","web","@sigfpe It's a machine that one rows with, like a time machine is a machine one...times with? English isn't burdened by having to make sense"
|
||||
"13333495367602176","","","13331361511251968","9533042","2010-12-10 20:45:27 +0000","web","RT @BrendanEich: New blog from @awbjs at http://www.wirfs-brock.com/allen/ -- good first posts"
|
||||
"13285317498904576","13283182174543872","16686076","","","2010-12-10 17:34:01 +0000","web","@getify <hgroup> stands out amongst the new html5 tags. It's oddly named and its usage is odd too. It's going to breed confusion."
|
||||
"13021052967845888","12999417153978369","668423","","","2010-12-10 00:03:55 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mikeal Downloading the OTP from the official site is a trial in patience as well. Perhaps it's meant to prepare you for the build..."
|
||||
"12978065713926144","12973542886875136","713263","","","2010-12-09 21:13:06 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@defunkt Nothing official. 2 of us here (small group) use 1password so we have an ad-hoc distributed thing going on, backed up to Dropbox."
|
||||
"12931736098840576","12929441361563648","887251","","","2010-12-09 18:09:00 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@ppk I also keep ~/Applications and ~/Downloads in my dock to make installing things a snap. (Folders in the dock are called ""stacks"")"
|
||||
"12931352617811968","12929441361563648","887251","","","2010-12-09 18:07:29 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@ppk I create ~/Applications and keep apps I install there, no need to authenticate and keeps system & user apps separated nicely."
|
||||
"12931017417433088","12929441361563648","887251","","","2010-12-09 18:06:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@ppk To modify files owned by root you need to authenticate. It's the same on Linux, you have to use sudo to `mv /bin/cp /tmp/foo`."
|
||||
"12930769399844865","12928917094535168","887251","","","2010-12-09 18:05:10 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@ppk Opera?"
|
||||
"12912967515381760","12910943386210304","14433431","","","2010-12-09 16:54:26 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@kriszyp I hope not."
|
||||
"12898562476081153","","","12896897178009601","14640131","2010-12-09 15:57:11 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @bradfordw: Pardon my Kanye: ""Yo node.js, Imma let you finish, but Erlang/OTP is one of the greatest network service languages/platfo ..."
|
||||
"12752193241223168","12749102336974849","676363","","","2010-12-09 06:15:34 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@brianleroux bastard millis. looks like dates are compared by ref too though unless I'm missing something. http://yfrog.com/gz8v0p"
|
||||
"12746955499245568","12726654879137792","676363","","","2010-12-09 05:54:45 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","@brianleroux millis?"
|
||||
"12687176252792833","","","","","2010-12-09 01:57:13 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Only 3 languages? I say learn C, JavaScript, and one that you *want* to learn because it sounds interesting. http://is.gd/ipWwc"
|
||||
"12658661839077376","12656824050253824","12510462","","","2010-12-09 00:03:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@ischi touch? :)"
|
||||
"12653616397557760","","","","","2010-12-08 23:43:51 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","""Windows?. Life without Walls?."" http://rog.asus.com/Product.aspx?PId=39 ... isn't life without walls life without windows too? #fail"
|
||||
"12633040001966080","12603128453005313","14273142","","","2010-12-08 22:22:06 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@lunafiko It took a few days of nosing around to get familiar with their terminology, and learn which links take me where."
|
||||
"12577101160914944","","","","","2010-12-08 18:39:49 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Note to self: don't wash coffee thermos in a hurry. Soapy coffee is really awful. #sadpanda"
|
||||
"12576957497606144","12572336842612736","14273142","","","2010-12-08 18:39:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@lunafiko It's pretty good! Been using it for a couple of months now. It lets me know when I have no money in my chequing account :("
|
||||
"12548596918390784","","","","","2010-12-08 16:46:33 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Looks like some app is stealing Ctrl-2 from me. If I change the shortcut to something else, or focus the dock first, then Ctrl-2 works. ARGH"
|
||||
"12537004759715840","","","","","2010-12-08 16:00:29 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Grr, why does my OS X keyboard shortcut for selecting the menu bar sometimes stop working? So disrupting. I thrive on Ctrl-2 f <RET> o <RET>"
|
||||
"12534841157361665","","","","","2010-12-08 15:51:53 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Cool project of the day is @tjholowaychuk's keys. http://github.com/visionmedia/keys"
|
||||
"12530380678635520","12383692425003008","33493","","","2010-12-08 15:34:10 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@peterc We were looking at benchmarks run on single-core machine. There are JRuby benchmarks for quad-core boxes too."
|
||||
"12379542886813696","12325247214686208","33493","","","2010-12-08 05:34:47 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@peterc Pretty unfair to compare a multi-threaded benchmark against a single-thread benchmark on a single-core machine. Really bizarre."
|
||||
"12377858823430145","12325247214686208","33493","","","2010-12-08 05:28:06 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@peterc Weird is an understatement! omfg"
|
||||
"12318905406070785","","","","","2010-12-08 01:33:50 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","http://www.emacswiki.org/emacs/UndoTree ftw"
|
||||
"12313934497325056","12297447086759936","33493","","","2010-12-08 01:14:05 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@peterc Interestingly JS uses less code for the tests where it dominates in time & memory. Some native stuff that Ruby lacks? I wonder..."
|
||||
"12267496342036481","","","12265915898925057","16100691","2010-12-07 22:09:33 +0000","web","RT @erikcorry: Node.js: Upgrade V8 to 3.0.0. https://github.com/ry/node/commit/c30f1137121315b0d3641af6dc61e3b047f940e1"
|
||||
"12257971773906944","12255915902238720","15029296","","","2010-12-07 21:31:42 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@zedshaw I think pretty much everyone likes git. It transcends languages. I mean, everyone from JavaScripters to kernel hackers likes it."
|
||||
"12239074769248256","","","12218779513659392","637763","2010-12-07 20:16:37 +0000","web","RT @voodootikigod: May has been deemed the month of JS - http://jsconf.us/2011 and http://nodeconf.com ITS GOING TO BE AWESOME!"
|
||||
"12204090687758336","","","","","2010-12-07 17:57:36 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","It's too bad Firefox 4 will disable WebSockets by default, but the security concerns seem to warrant it. http://is.gd/ilPn7"
|
||||
"12190510236045312","12185164184551425","68104177","","","2010-12-07 17:03:38 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tjcreative Unfortunately I don't think it'll be very soon. To move from Google App Engine I have to rewrite most of the app, time's short."
|
||||
"12169020463652864","","","","","2010-12-07 15:38:15 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Opera 11: http://yfrog.com/9emssnp Chrome 8: http://yfrog.com/2pq3np Safari 5 (worst): http://yfrog.com/ei9f0p"
|
||||
"12168307176120320","","","","","2010-12-07 15:35:25 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Firefox 4 and Opera 10+ render border-radius with a 1em border 1000x better than WebKit (Safari 5, Chrome 8)."
|
||||
"12163983846932481","","3806441","","","2010-12-07 15:18:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@Grooveshark I would love to read a blog post on the migration to HTML if you guys want to write it. :)"
|
||||
"11940485916524545","","","","","2010-12-07 00:30:08 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Tapping the icon of an app that's loading pauses/unpauses it. How did I not know this till now?! #iphone #ios"
|
||||
"11939110885265409","","","11937608288440320","734903","2010-12-07 00:24:40 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @mjijackson: The more software I write, the more I'm convinced that it should do as little as possible to get the job done."
|
||||
"11905877736947712","","","","","2010-12-06 22:12:37 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Essential shell aliases: 1) reload rc file 2) edit & reload rc file ... https://github.com/samsonjs/config/blob/master/zsh/zshrc#L186-189"
|
||||
"11896403919904768","","","","","2010-12-06 21:34:58 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","heh, ""EichScript"" ... what about ""EichmaScript""?"
|
||||
"11851330599518209","11851089460592642","95938827","","","2010-12-06 18:35:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@hij1nx I'll make you a contributor since it seems you'll be working on it immediately."
|
||||
"11850911873769473","11849915147751424","14206068","","","2010-12-06 18:34:12 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tlrobinson Cool. Re: intelligence, it works for my purposes so far so that's good enough. :)"
|
||||
"11846564846772224","","","","","2010-12-06 18:16:55 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Nice to see the Nexus S move to built-in storage. It's the right choice for a phone targeting the masses, and is a sign of maturity."
|
||||
"11841014469763072","11836221072347136","95938827","","","2010-12-06 17:54:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@hij1nx https://github.com/samsonjs/json-diff Might be a good time to extract the JS from the HTML. /cc @tlrobinson"
|
||||
"11835757060694016","11834667766390784","95938827","","","2010-12-06 17:33:59 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@hij1nx Not yet, but I'll do so shortly. (Note that JSON diff is @tlrobinsons's creation. He was nice enough to CC license it though.)"
|
||||
"11815387733692416","","","11804511043588096","181984707","2010-12-06 16:13:02 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @aminutewith: /be talks about Rust and programming language innovation http://t.co/twHZqZX #amwb","http://www.aminutewithbrendan.com/pages/20101206"
|
||||
"11815313293189120","","","11801576549130243","181984707","2010-12-06 16:12:44 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @aminutewith: An amazing episode of #amwb is about to be released. If you are a language nerd, block 9 minutes away for awesomeness!!"
|
||||
"11799266024488961","11613129985236992","14465889","","","2010-12-06 15:08:58 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jalbertbowdenii It is kind of like that in that it specifies how to display pages in a certain medium."
|
||||
"11598131045076993","11588701255634944","14465889","","","2010-12-06 01:49:44 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jalbertbowdenii Not familiar with @page, haven't thought about it deeply at all. Just a glimmer of an idea so far. I'll read up on @page."
|
||||
"11588789117911040","11588411261460481","4777951","","","2010-12-06 01:12:37 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@_sjs @JimRoepcke I just realized that I could do both, swizzle the URL and also have standalone pages. Might be interesting."
|
||||
"11588411261460481","11587973178982400","4777951","","","2010-12-06 01:11:07 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@_sjs @JimRoepcke I'm thinking about a blog in this case. Would be cool to transition between posts, but don't want them all one page."
|
||||
"11587973178982400","11587490385231872","894911","","","2010-12-06 01:09:22 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke There are other reasons to change the URL, just something I was thinking of where that's currently the only way and seems wrong."
|
||||
"11585961913745408","","","","","2010-12-06 01:01:23 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","idea: CSS page transitions. Could be specified by an attribute on links or something. Seems better than swizzling the URL for eye candy."
|
||||
"11112472874323968","11111898325975042","627213","","","2010-12-04 17:39:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@amyhoy Agreed. I just think putting a cash value on your time is a bit silly. If you write some awesome code that time could b worth >$160."
|
||||
"11111451993309185","11097596160385024","627213","","","2010-12-04 17:35:51 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@amyhoy Also, unless you would have been working during that time it's not a good comparison. Your time isn't worth $, the value u create is"
|
||||
"11111164859645952","11097596160385024","627213","","","2010-12-04 17:34:42 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@amyhoy You should know too well that the cost of an item doesn't always represent its value. The $16 (or $40) book could be very valuable."
|
||||
"10961292210737152","","","","","2010-12-04 07:39:10 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","swank-js: http://imgur.com/WHaFo.png I'm impressed! https://github.com/ivan4th/swank-js"
|
||||
"10839324975169536","","","10831265540341760","33493","2010-12-03 23:34:31 +0000","web","RT @peterc: ""A person feels threatened only in areas that he considers the basis for his identity."" ? David J. Lieberman"
|
||||
"10815809379110912","10812275631857664","29255412","","","2010-12-03 22:01:04 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tjholowaychuk yeah it is much better, my hopes were just too high I guess :)"
|
||||
"10812205549228032","10779353851895808","6827332","","","2010-12-03 21:46:45 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jtaby They stream music dude. They are far from ""one of the shadiest""."
|
||||
"10811257967869952","","","","","2010-12-03 21:42:59 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Oldie but a goodie: http://img.chan4chan.com/img/2009-03-23/vim.gif /cc @JimRoepcke"
|
||||
"10811085951074305","10796828958134272","29255412","","","2010-12-03 21:42:18 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tjholowaychuk I was really hoping it would work on the iPad but it still uses Flash for audio. iPad at the office isn't jailbroken :/"
|
||||
"10770362912481280","10770114311884800","6827332","","","2010-12-03 19:00:29 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jtaby Well, then, have a nap."
|
||||
"10770249460748288","10768275847774208","9533042","","","2010-12-03 19:00:02 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@BrendanEich I'll have to play around with that this weekend. It doesn't sound as lightweight as I hoped but still sounds interesting. Thx!"
|
||||
"10765449675411456","","","10531199827050496","9478892","2010-12-03 18:40:57 +0000","web","RT @tswicegood: ""Your primary concern should be to create an environment where you developers can code fearlessly."" http://j.mp/dM65Lb"
|
||||
"10765374811275265","","","10763115163557888","9478892","2010-12-03 18:40:40 +0000","web","RT @tswicegood: I *really* don't like working on code w/o any meaningful test coverage. Every change is like Russian roulette. I'm good ..."
|
||||
"10762850909822976","10760570793889792","9533042","","","2010-12-03 18:30:38 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@BrendanEich @bryan_kyle I don't immediately see how it alleviates nested callback woes. Need a bit more time to read & digest it."
|
||||
"10756632262746112","10755841032462337","14864447","","","2010-12-03 18:05:55 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@bryan_kyle Seems to always go that way :)"
|
||||
"10755183613059072","10754705474981889","14864447","","","2010-12-03 18:00:10 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@bryan_kyle Lots of work involved but the concepts are proven. Twisted's deferred has auto pausing & chaining on returned deferreds."
|
||||
"10753892673396736","10752300582707200","14864447","","","2010-12-03 17:55:02 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@bryan_kyle @brendaneich An async {} block structure would rock, but banks on having some kind of promises built in. http://is.gd/i9pUa"
|
||||
"10735547240677376","","","","","2010-12-03 16:42:08 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Better look before it?s gone Victoria, the sun?s out! #yyj"
|
||||
"10733096336891904","","","","","2010-12-03 16:32:24 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Async in JS is manageable but verbose as hell. @brendaneich's ""decaf"" proposals are great but don't address why we need so many lambdas."
|
||||
"10730302733287424","","","","","2010-12-03 16:21:18 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Good discussion on async JS & promises/defer, start here -> https://twitter.com/getify/status/10726870576275457 I totally agree with @getify"
|
||||
"10729525952385024","","","10729089954488320","29255412","2010-12-03 16:18:12 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @tjholowaychuk: our little Amazon S3 client for #nodejs is open sourced http://bit.ly/gSNWhz"
|
||||
"10728915521769473","","","10722592465883136","14939200","2010-12-03 16:15:47 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @seancribbs: @roidrage How about just ""programmer"" or ""developer"". I use Ruby, Erlang and JS, I *am* none exclusively."
|
||||
"10699619809886208","","","10693851819806720","14582359","2010-12-03 14:19:22 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @acangiano: Dear @Twitter, when I visit a page on your site and I sign in, I expect to be redirected to that page. Fix it, please."
|
||||
"10557440802160640","10522925023109120","14273142","","","2010-12-03 04:54:24 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@lunafiko @JimRoepcke Likewise! Should be a fun little project."
|
||||
"10506209668898818","","","","","2010-12-03 01:30:50 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Coolest thing I've seen today: a rule-based HTTP proxy using #nodejs https://github.com/greim/hoxy (by greim) ... think greasemonkey 4 http!"
|
||||
"10353674840702977","","","10224804737056768","14864447","2010-12-02 15:24:43 +0000","web","RT @bryan_kyle: @_sjs or wrap lines after infix operators, not before."
|
||||
"10351310981300224","","","","","2010-12-02 15:15:19 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","An unjailbroken iPhone would drive me nuts. How do you get by without something like SBSettings?"
|
||||
"10216548639707137","","","","","2010-12-02 06:19:49 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","To avoid Auto Semicolon Insertion mishaps in JS use parens around expressions that span multiple lines, whether or not you use semicolons."
|
||||
"10030566418157569","10023222791639040","16686076","","","2010-12-01 18:00:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify @hij1nx It's a Perlism, $` is everything before the match and $' is everything after the match."
|
||||
"10004793917444096","10003693533396994","627213","","","2010-12-01 16:18:23 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@amyhoy *burns JS performance rocks*"
|
||||
"10004649180405760","","","","","2010-12-01 16:17:48 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","If you tweet more links than you can possibly read it makes me question the value of them. Fewer good links >>> lots of questionable links."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,185 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"31050595867557888","","","","","2011-01-28 18:06:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Just found yesterday's honey bun in my backpack. Score!"
|
||||
"31032607785353217","","","","","2011-01-28 16:55:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I've probably whined about this before, but if you write a TextMate bundle please don't clobber native TM key bindings. So disruptive!"
|
||||
"30734619850571776","30731580011970560","14864447","","","2011-01-27 21:11:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Heh, thanks. I've already written a factory anyway so it's all good. Well, as good as can be expected ;-)"
|
||||
"30706767205765121","","","","","2011-01-27 19:20:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Me: ""I'd like to return a class from this method and let the caller instantiate it please.""
|
||||
|
||||
Java: ""Bwa ha ha ha! No."""
|
||||
"30659113700556801","","","30650009519136769","14296920","2011-01-27 16:11:16 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @timrosenblatt: never run out of battery on your laptop again! http://imgur.com/WirzU.jpg"
|
||||
"30645113587769344","26203190974226432","71283","","","2011-01-27 15:15:39 +0000","web","@mkamp Well that didn't take long, I'm back :)"
|
||||
"30644737362894848","","","","","2011-01-27 15:14:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","When did twitter add the connections section on their site? I really like it."
|
||||
"30490396895223811","","","","","2011-01-27 05:00:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I've come around. Newsrob is by far the best RSS reader for Android. I miss how quick it is to Instapaper something in Reeder, but hey."
|
||||
"30054097616904192","","","30051461517803520","12806822","2011-01-26 00:07:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @SlexAxton: Who needs PEMDAS when you have MNFCIDLNBNUPUNTVDMDMASBSRIIEBABOLALOCAC - JavaScript Operator Precedence: http://t.co/d0DNsfw","https://developer.mozilla.org/en/JavaScript/Reference/Operators/Operator_Precedence"
|
||||
"30053524280713216","","","","","2011-01-26 00:04:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Dear lazy twitter, is there something in the regex ""^https?://"" that needs to be escaped in Java? Not working on Android :/ #killmenow"
|
||||
"30049053324607488","","","30048583029891073","16182069","2011-01-25 23:47:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @timescolonist: Victoria police release photo of high-risk offender in the community. http://ow.ly/3KcJ0"
|
||||
"30046718607233025","30044898556121088","676363","","","2011-01-25 23:37:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@brianleroux can it be both?"
|
||||
"30041123988709378","","","","","2011-01-25 23:15:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I really hope Google implements a domain blacklist for search results."
|
||||
"29618714282295296","","","","","2011-01-24 19:17:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Re: my Java question, the answer is to just use ""this"". (thanks to @bryan_kyle)"
|
||||
"29618411084451840","29617537146691584","14864447","","","2011-01-24 19:15:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Ah, thanks! That was too easy, and it makes perfect sense."
|
||||
"29615666780708864","","","","","2011-01-24 19:04:59 +0000","<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>","In Java how can I reference an anonymous inner class from within itself? http://t.co/sC2GyBl","http://stackoverflow.com/q/4785998/188752"
|
||||
"28875418643726336","","","28841597810515970","20079975","2011-01-22 18:03:30 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @polotek: The @grooveshark ui is pretty badass. I went through the whole signup process without losing anything and the music didn't ..."
|
||||
"28619010480275456","","","","","2011-01-22 01:04:38 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Ugh, @grooveshark sucks about the same on my iphone right now ... Backend issues? #supersadpanda"
|
||||
"28617995798446080","","","","","2011-01-22 01:00:36 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Latest @grooveshark update doesn't play many songs on my nexus one :( some streaming API key error. #sadpanda luckily I'm packing an iPhone!"
|
||||
"28604367548456961","","","28586133495484416","14307090","2011-01-22 00:06:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @philcrosby: I can't believe I didn't build this earlier in life. livecss: making the browser dance to your CSS https://github.com/oo ..."
|
||||
"28589343404724225","","","","","2011-01-21 23:06:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Weird, looks like I have a disciple on github: http://t.co/yr1hW3C ... I know my github stream isn't that interesting, makes me suspicious.","https://github.com/preavy"
|
||||
"28582895094337537","","","","","2011-01-21 22:41:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","If it doesn't take an entire day to send mail from a server throw more Enterprise Java Goop? at it."
|
||||
"28581233738911744","","","28579996075294720","9989362","2011-01-21 22:34:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @headius: Why you should never believe anything you read about Oracle v Google: http://bit.ly/hEP82y followed by http://zd.net/fIPtf4"
|
||||
"28573321599655936","28572346101010432","17201709","","","2011-01-21 22:03:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bramcohen They serve their purpose. I've seen bathrooms without them get very moldy due to steam from the shower and no circulation."
|
||||
"28508971564273665","","","28507840431792128","186697923","2011-01-21 17:47:23 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @nodeconf: Combo tickets for NodeConf/JSConf sold out quick! More NodeConf tickets to will be released soon."
|
||||
"28506922143453184","28505989145694208","33967973","","","2011-01-21 17:39:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>",".@Swype That sounds perfect! Thanks for the reply :) And I don't mean to sound like a hater, I really like swype overall. Innovation ftw"
|
||||
"28505271240232960","","","","","2011-01-21 17:32:40 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Including all the jsconf+nodeconf combos :( #sadpanda RT @jsconf: 100 tickets sold, 15 minutes."
|
||||
"28498431865520130","","","28497395159404544","9599342","2011-01-21 17:05:30 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @felixge: Just published my ""Node.js in production"" slides from @berlinjs last night. http://t.co/odjmBD1 #nodejs","http://debuggable.com/posts/slides-node-js-in-production:4d39b9a4-e250-4ba3-85d4-6388cbdd56cb"
|
||||
"28489366837923840","","","","","2011-01-21 16:29:29 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","The home button is way too close to the space bar on this android phone."
|
||||
"28479924692062209","","","","","2011-01-21 15:51:57 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","http://webkit.org/blog/1424/css3-gradients/ ... no mothereffinggradients.com yet? ;-) /cc @paul_irish"
|
||||
"28475716626546688","","","","","2011-01-21 15:35:14 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Also it should remember words I use often better. I never type ""yiu"", it's ""you""!! But most of the time I really like @swype so far."
|
||||
"28475300304130048","","","","","2011-01-21 15:33:35 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Sometimes I hate @swype. When I'm typing numbers don't suggest words like 3rd or 76ers *first*, they should be after the nums I'm touching."
|
||||
"28470268825440256","","","28410194568413184","193216253","2011-01-21 15:13:35 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @zeptojs: Zepto.js v0.4 is out: JSONP, .eq, .size, .parent(s), .val, better .find, .each, .closest; function args for html/attr. http ..."
|
||||
"28468873888010240","","","28396013416873984","14560304","2011-01-21 15:08:03 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @frank06: winston supports riak as a transport thru riak-js! http://bit.ly/gKB4E2 #nodejs #riak"
|
||||
"28468705142775808","","","28391247211134976","14560304","2011-01-21 15:07:22 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @frank06: @pharkmillups i wish github had a star/bookmark button; certain projects are interesting but pollute my timeline /cc @github"
|
||||
"28456438535815168","28353867942993920","22406953","","","2011-01-21 14:18:38 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@mahyarm a lot of the time yes. Definitely when using the filesystem."
|
||||
"28284581996142593","28275329453785088","29255412","","","2011-01-21 02:55:44 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@tjholowaychuk I can see that but imo it's a good fit for something like (your) ext.js too."
|
||||
"28267906924019713","","","","","2011-01-21 01:49:28 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Q. Why do Java devs write so much code?
|
||||
|
||||
A. So they can brag about the size of their package."
|
||||
"28267700966916096","28262919359692800","29255412","","","2011-01-21 01:48:39 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@tjholowaychuk What about a pluck method? I ported this from some old Ruby code of mine: https://gist.github.com/614363"
|
||||
"28214808138481664","","","","","2011-01-20 22:18:29 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Huh, IBM Developer Works does have decent articles just not an things I normally read about."
|
||||
"28204338648190976","28203341322387456","16686076","","","2011-01-20 21:36:53 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify No problem! Just to clarify you don't have to update each submodule individually, but you update them separately from the main repo."
|
||||
"28203044105617408","28200116296880128","16686076","","","2011-01-20 21:31:44 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify That's cool then. Just a note, you not only can update them separately, you *have* to. For some uses that's an annoyance not a boon."
|
||||
"28197948160475137","28186507474898944","16686076","","","2011-01-20 21:11:29 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@getify compare the article on using submodules to the one on fake submodules. too complex for little payoff."
|
||||
"28181869606473728","","","28178429966819328","6927562","2011-01-20 20:07:35 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @thomasfuchs: Just because it's fun. https://img.skitch.com/20100729-ky9jubmx9q71pqkixw3d3n5ui2.png"
|
||||
"28179198916956160","","","28163230912221184","9360032","2011-01-20 19:56:59 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @thnetos: Posted ""Dvorak for two weeks, a retrospective"": http://writequit.org/blog/?p=431 #dvorak #keyboard"
|
||||
"28166558773682176","28164838924488704","16686076","","","2011-01-20 19:06:45 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify Don't. Just copy the code into your project."
|
||||
"28166410207232000","","","","","2011-01-20 19:06:10 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Why hello there block scope. I've kind of missed you."
|
||||
"27893454818254848","","","","","2011-01-20 01:01:32 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","""We felt like were on to something, so, being math nerds, we put on sweatpants. Then we did some work."" http://is.gd/xk9dCe I love OkCupid."
|
||||
"27891228813033472","","","27838559314513921","18864191","2011-01-20 00:52:41 +0000","web","RT @steshaw: It's quite telling when InfoQ's ""latest from Java"" has the following titles: ""Groovy Update"", ""JVM Languages"", ""Clojure"", "" ..."
|
||||
"27891035812139008","","","27868275861889024","18405409","2011-01-20 00:51:55 +0000","web","RT @DanPollock: Google Maps now includes @BC_Transit data for #yyj: http://j.mp/hZKNZx #opendata #opengov #gov20 #ogw"
|
||||
"27884402843328512","","","27881939193036800","12819682","2011-01-20 00:25:34 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @mitchellh: Vagrant 0.7.0 officially released. VirtualBox 4 ONLY, Puppet Server, Chef Enhancements, more more more. Read: http://t.co ..."
|
||||
"27874341681111040","27872892926562305","14582359","","","2011-01-19 23:45:35 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@acangiano Thanks for the reply, I'll take a look :)"
|
||||
"27869918061924353","","","","","2011-01-19 23:28:00 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","For now I'll drown my sorrows in delicious rhubarb crumble."
|
||||
"27869762314833921","","","","","2011-01-19 23:27:23 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Elbow deep in goop all day. I wonder when I'll stop laughing about how horrible this is and start sneaking whiskey into my coffee."
|
||||
"27866595971833856","27861814335246337","14582359","","","2011-01-19 23:14:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@acangiano Looks similar to LaunchBar and QuickSilver. Anything particularly compelling that you like about @Alfredapp?"
|
||||
"27845229008658434","","","","","2011-01-19 21:49:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","""The GC will run as it needs (sometimes sooner)"""
|
||||
"27841567872000000","","","","","2011-01-19 21:35:21 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Just as HTML5 gets a shiny new logo it becomes plain, old, numberless HTML."
|
||||
"27841398036234240","","","27840521846132736","3963051","2011-01-19 21:34:41 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @WHATWG: HTML is the new HTML5 ? http://bit.ly/heyUeB"
|
||||
"27835004872560640","","","27833962864840704","19637934","2011-01-19 21:09:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @rainnwilson: Why aren't our teachers revered as much as our soldiers? They should have uniforms & be thanked at airports too."
|
||||
"27797592943370240","27796582657171456","27302287","","","2011-01-19 18:40:37 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jacobrothstein That will be game changing for Java, imo. 7 can't arrive soon enough."
|
||||
"27796411529568257","","","","","2011-01-19 18:35:55 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Hey look at this: http://developer.android.com/reference/android/os/AsyncTask.html whaddya know! That's actually a sane interface."
|
||||
"27795503487918080","","","","","2011-01-19 18:32:19 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","I think I'm allergic to Java. Simple things like making an async network request are way too complicated."
|
||||
"27793848428138496","","","27792301573013504","173630577","2011-01-19 18:25:44 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @bcantrill: ""86.75.30.9! Jenny, what's your server? 86.75.30.nie-ee-eine!"""
|
||||
"27787877433741312","27783166999666688","6927562","","","2011-01-19 18:02:00 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@thomasfuchs Works if I disable GPU accel compositing. Sorry for the noise."
|
||||
"27783814541479937","27783166999666688","6927562","","","2011-01-19 17:45:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@thomasfuchs Ah! Forgot I enabled some labs stuff in Chrome, sorry. Perhaps some extension isn't playing nice w/ some labs thing I enabled."
|
||||
"27783297576738816","27780635728809984","6927562","","","2011-01-19 17:43:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@thomasfuchs Will do. If I disable all extensions & restart Chrome it works, disable w/ no restart => same problem. There's a bug somewhere."
|
||||
"27780433764687872","27779279081181184","6927562","","","2011-01-19 17:32:26 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@thomasfuchs Not on the dev channel. I suspect one of my extensions if it works for you."
|
||||
"27779566990790657","","","","","2011-01-19 17:28:59 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Java & Objective-C: battle of verbosity"
|
||||
"27779074659196928","27776634157268992","16686076","","","2011-01-19 17:27:02 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify @aknosis ""Under Linux, some filesystems have a mount-time option to use BSD semantics[...]"" http://is.gd/pkPjox ... hope?"
|
||||
"27778537440153602","27776634157268992","16686076","","","2011-01-19 17:24:54 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify Interesting that Unix & Linux just waste that bit. I wonder if it's oversight or deliberate. BSD behaviour seems far better."
|
||||
"27777342415839232","27772464419311616","6927562","","","2011-01-19 17:20:09 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@thomasfuchs Most of the text is missing on Chrome/Mac 8.0.552.237. http://twitpic.com/3rhjp7"
|
||||
"27773592754192385","27771923987439617","16686076","","","2011-01-19 17:05:15 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify That would be nice, and more consistent."
|
||||
"27771705652944896","27771153661566976","16686076","","","2011-01-19 16:57:45 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify Only thing I can think of is to perform the operation as the user you want to own the file, using su or sudo."
|
||||
"27770242205749249","","226591222","","","2011-01-19 16:51:56 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@minutewith http://riak.minutewith.com/archives I think Brian's mug is out of place on that page. And Brendan's is missing on mwJS archives."
|
||||
"27750213217161216","","","27531371140358145","9533042","2011-01-19 15:32:21 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @BrendanEich: New post: Harmony Of My Dreams http://brendaneich.com/2011/01/harmony-of-my-dreams/"
|
||||
"27517920946950145","","","27516621731930112","27302287","2011-01-19 00:09:18 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @jacobrothstein: @sophistifunk @_sjs http://www.snopes.com/photos/military/brutus.asp"
|
||||
"27517853116669952","27516621731930112","27302287","","","2011-01-19 00:09:02 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jacobrothstein Damn, I was all stoked on the bad ass dog. Thanks for the heads up!"
|
||||
"27515767427698688","","","27502699058565120","14113080","2011-01-19 00:00:44 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","RT @sophistifunk: This is the most badass dog in the world: http://t.co/yDB0fzp","http://mansequins.blogspot.com/2011/01/brave-military-k9-dog-brutus.html"
|
||||
"27423328268455936","","","","","2011-01-18 17:53:25 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","JSON & source code syntax highlighting for Chrome. Awesome! http://thechangelog.com/post/2811687972/sight-the-syntax-highlighter-for-chrome"
|
||||
"27213802185433088","27189511171608576","7549272","","","2011-01-18 04:00:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@boucher Not if you want to change things on both machines and then sync. Otherwise rsync + glue gets it done. http://t.co/Xrbyvoa","https://gist.github.com/783965"
|
||||
"27177228773101568","","","","","2011-01-18 01:35:30 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Hardwarewise Nexus One is fantastic. Great build quality, thin, good battery, but my 3GS seems to get a stronger 3G signal on the highway."
|
||||
"27169485735596032","","","27169012785872896","186697923","2011-01-18 01:04:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @nodeconf: Invited speakers are up on nodeconf.com http://www.nodeconf.com/"
|
||||
"27166213389942784","","","","","2011-01-18 00:51:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Love the @Grooveshark widget on Android. Swype is also really neat, as are tasks (activity stack things). None of which are possible on iOS."
|
||||
"27125040994586625","27121837523607552","17432169","","","2011-01-17 22:08:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jsconf No doubt about the awesomeness, it'd just be nice to make plans, book a hotel, etc. I know it all takes time, I'll be patient :)"
|
||||
"26868782689419264","","","26867093173444609","668423","2011-01-17 05:09:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @mikeal: Whenever you wanna write a framework, don't. Write an app, solve a problem, then solve it again, then write a library or fra ..."
|
||||
"26696844608278529","26696323491176448","784912","","","2011-01-16 17:46:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jsnell Ah, that would help a lot."
|
||||
"26694448532430848","26694102191964160","784912","","","2011-01-16 17:37:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jsnell iOS needs something akin to Android's tasks (stacks of views) before that workflow would be nice to use. Losing context sucks."
|
||||
"26391913984688128","","","","","2011-01-15 21:34:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I'll have to get used to reply all by default."
|
||||
"26390741538308096","26389368620982274","2262091","","","2011-01-15 21:30:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@ajordens @instapaper heh, ain't that the truth"
|
||||
"26386331126996992","","","","","2011-01-15 21:12:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I love how easy it is to get something into @instapaper."
|
||||
"26333324607754240","26328551154262016","40593","","","2011-01-15 17:42:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@nevyn Nope, you can put things in but can't get them out. The only thing that rubs me the wrong way about @instapaper."
|
||||
"26052380143394817","","","25681690164727808","9767742","2011-01-14 23:05:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @mxweas: ""Now, Geohot will have to jailbreak himself."" rofl @ whoever came up with this"
|
||||
"26048205619732481","","71283","","","2011-01-14 22:49:10 +0000","web","@mkamp That was extremely good of you. Thanks!"
|
||||
"26034956127961089","26020621221625856","17432169","","","2011-01-14 21:56:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jsconf No fair! Until there are more details on the conf you're just taunting us."
|
||||
"25985798872506369","","","25959775418187776","28294632","2011-01-14 18:41:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @appleoutsider: Embrace, Extend, Extinguish http://appleoutsider.com/20110114/e3/"
|
||||
"25984726690955264","","","25969747354980352","15181839","2011-01-14 18:36:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @tloh: Weeks later and walking by our billboard still puts a smile on my face, no matter how grey out http://yfrog.com/h7ecynhj"
|
||||
"25982182807834624","","","","","2011-01-14 18:26:49 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Newsrob on Android doesn't even come close to Reeder. I want my ?5 back. I'll probably end up using Google Reader in the browser on Android."
|
||||
"25980855407091713","25979647707586560","33423","","","2011-01-14 18:21:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@gruber Now you're just trolling."
|
||||
"25978818669838336","","","25978458697900032","15686746","2011-01-14 18:13:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @dsg: Super cool - Interface hardware to iPhone for free via the headphone jack http://bit.ly/es29Gh (via @markjnet)"
|
||||
"25973156875337729","","","25968531434635264","532923","2011-01-14 17:50:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @mathias: Pro tip: there might just be a super-secret easter egg on the @w3fools website? http://w3fools.com/"
|
||||
"25972702619639810","25972132726968320","14172298","","","2011-01-14 17:49:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jeff_lamarche ncftp"
|
||||
"25972486499737600","","","","","2011-01-14 17:48:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","In the UI and UX department iOS > Android, no contest, and doubly so for non-techies. Android is great, but iOS is excellent."
|
||||
"25970672408723456","","","","","2011-01-14 17:41:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Android > iOS, but for me jailbroken iOS > Android"
|
||||
"25970608512700416","","","","","2011-01-14 17:40:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Been using a Nexus One since last night. Rethinking my plan to try an Android phone, probably going to get the next iPhone instead."
|
||||
"25939696500604929","","","","","2011-01-14 15:38:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Quick, sue ALL the trees for violating this patent! Lazy, no good trees don't do any r&d themselves... http://t.co/7Orj0RQ","http://www.google.com/patents?id=hhYJAAAAEBAJ&printsec=abstract&zoom=4#v=onepage&q&f=false"
|
||||
"25932884116250624","","","","","2011-01-14 15:10:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","""When all you have is Java-style OO, everything looks like an AbstractHammerFactoryInterface."" http://t.co/QRvFfwG","http://news.ycombinator.com/item?id=2103233"
|
||||
"25686125267910657","","","","","2011-01-13 22:50:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","normal app : Android app :: monolithic kernel : microkernel"
|
||||
"25624870343671810","25622445574586368","6013662","","","2011-01-13 18:46:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@infil00p It's somewhat fitting that there may be BBW postings on http://t.co/6rT22tX in the future.","http://rim.jobs"
|
||||
"25588537348853761","","","25587721061797888","1235521","2011-01-13 16:22:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @timbray: Things Real People Don't Say About Advertising: http://tpdsaa.tumblr.com/"
|
||||
"25585840310722561","","","","","2011-01-13 16:11:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Anyone doing production Android dev with something other than Java? Would love to hear tales about Clojure, Python, Ruby."
|
||||
"25578260020596736","","","","","2011-01-13 15:41:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","People already had to encode HTML5 video in Theora or WebM for Firefox (and maybe Opera), but other than that great arguments from Ars."
|
||||
"25577045471793153","","","25572599631183872","717313","2011-01-13 15:36:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @arstechnica: Google's dropping H.264 from Chrome a step backward for openness: http://t.co/P7hHj0a by @drpizza","http://arst.ch/nuc"
|
||||
"25241080224026624","25238476471402496","676573","","","2011-01-12 17:21:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tobi x264 is free but in a legal grey area in the US. Google clearly has other motives, it'd be practical for them to just support h.264."
|
||||
"25240169237975040","25238476471402496","676573","","","2011-01-12 17:18:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tobi And having to pay someone to effectively distribute video online is a barrier to the freedom and democracy of the Internet."
|
||||
"25240014472351744","25238476471402496","676573","","","2011-01-12 17:17:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tobi It's open but you still have to pay royalties to the MPEG LA if you distribute an encoder or decoder. http://t.co/1iJjgJu","http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Patent_licensing"
|
||||
"25196636628058115","25184650980753408","44287241","","","2011-01-12 14:25:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@BradFazner Ah the Asus one. It got at least a couple good reviews too."
|
||||
"25029015668527105","","","","","2011-01-12 03:19:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","http://t.co/tgASwpu So true, @Grooveshark is by the far the best streaming music service in Canada. <3 the shark!","http://socialsoundsystem.com/spotify-is-the-coolest-music-service-you-cant?c=1"
|
||||
"25027042206552064","","73371769","","","2011-01-12 03:11:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@guru_3d I'd love to see something like this used for all those graphs in your reviews :) http://t.co/Udaxfxp","http://highcharts.com/"
|
||||
"25025985057398784","","","","","2011-01-12 03:07:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","?@mikeal: find of the day http://t.co/Udaxfxp? Somebody get this to Hilbert from Guru3D so my CPU fan doesn't spin up reading his reviews.","http://highcharts.com/"
|
||||
"25005174795800576","","","","","2011-01-12 01:44:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","The Jeff Atwood interview I just retweeted is much better than I thought it might be. Worth a listen."
|
||||
"25004824860823552","","","24919228675002370","5905672","2011-01-12 01:43:09 +0000","web","RT @danbenjamin: My Pipeline interview with Jeff Atwood (@codinghorror) is up - http://t.co/MyEGQ4e","http://5by5.tv/s/53"
|
||||
"24943800661057536","","","24942100537671680","69655255","2011-01-11 21:40:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @pornelski: Oh, I forgot. Flash is going to support WebM too. So that leaves only iOS as the odd one (and hardware WebM decoders are ..."
|
||||
"24943790682808320","","","24941583744901120","69655255","2011-01-11 21:40:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @pornelski: For me it means: high-res WebM for desktop, low-res H.264 for mobile and IE."
|
||||
"24853113450008576","","","23428991381676033","226591222","2011-01-11 15:40:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @minutewith: Minute With Riak brought to you from @rklophaus of @basho - a true expert in all things data and @riak"
|
||||
"24853049184878595","","","24524039817011200","226591222","2011-01-11 15:40:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @minutewith: Back from a long break, Episode 17 of A Minute With Brendan: http://t.co/5BEWqSV #js #harmony #ecma #funcwhat","http://www.aminutewithbrendan.com/pages/20110110"
|
||||
"24845247926243328","24737960695959553","894911","","","2011-01-11 15:09:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I'm a decent typist when it's mindless typing like that. Thinking and typing is more difficult."
|
||||
"24710041177165824","","","","","2011-01-11 06:11:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","http://t.co/38baRxz http://t.co/Hd7iwMY","http://www.phoboslab.org/ztype/","http://yfrog.com/h2d8kp"
|
||||
"24702285162487808","","","","","2011-01-11 05:40:58 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","one prediction for 2011: HTML5 will continue to be popular, because anything popular will get labeled ?HTML5.? http://t.co/oXDXxkj","http://diveintomark.org/archives/2011/01/09/dive-into-2010"
|
||||
"24642759025491968","","","24570925143818240","6509982","2011-01-11 01:44:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @argv0: Riak supports kill-9. #nosql"
|
||||
"24636329866305536","","","","","2011-01-11 01:18:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","The CRTC is worse than useless, they are actively harming the communications landscape in Canada. http://t.co/FPwm2M9 #crtc","http://www.cbc.ca/technology/story/2010/05/06/crtc-usage-based-billing-internet.html"
|
||||
"24631150903304192","","","","","2011-01-11 00:58:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Sandy Bridge, Windows on ARM, Nvidia and Intel cooperating, dual-core 1GHz ARM CPUs, Android 3.0 ... the future will be interesting."
|
||||
"24582960141307904","","","24404498784976897","236315878","2011-01-10 21:46:49 +0000","web","RT @BellCanadaPR: Tired of paying reasonable prices for internet from our resellers? We've teamed up with the CRTC to fix this! http://i ..."
|
||||
"23189911360249856","","","","","2011-01-07 01:31:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Best thing I've seen in the last 15 minutes: http://t.co/zRwBli2","http://illreallyanimatethat.deviantart.com/art/1-192413771"
|
||||
"23188026754596864","","","","","2011-01-07 01:23:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Winner for python + readline on Snow Leopard: http://t.co/HEza1q6","http://blog.zacharyvoase.com/2009/08/29/python-readline-sl/"
|
||||
"23186271274803201","","","","","2011-01-07 01:16:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Still kinda weird to see tar and other commands that perform disk i/o complete instantly. Life's better without spinning platters."
|
||||
"23183291909677056","","","","","2011-01-07 01:05:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Python and readline on a mac w/ 10.6 ... fml. Somebody's got to rewrite a BSD/MIT licensed version (truly free not FSF's definition of free)"
|
||||
"23140295851900928","","","","","2011-01-06 22:14:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","My kingdom for a macro."
|
||||
"23137963282014208","23135863877672960","15567002","","","2011-01-06 22:04:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@Eberk89 Hmmm. That's too bad. Maybe I should make some time for @scrobbleshark. It's not terribly complicated."
|
||||
"23135147092082688","","","23134561001021441","6503412","2011-01-06 21:53:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @Cocoia: Looks like this guy has already started making a nice 'best of the Mac App Store': http://readthefuckinghig.tumblr.com/"
|
||||
"23134852245102592","23134036419411968","15567002","","","2011-01-06 21:52:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@Eberk89 Does Rumpus not work anymore? Is there no free grooveshark -> last.fm scrobbler at the moment?"
|
||||
"23134707482890240","23134036419411968","15567002","","","2011-01-06 21:51:58 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@Eberk89 @t3hub3rk1tten I would like to rewrite scrobbleshark, this time not on Google App Engine. Haven't found time yet though."
|
||||
"23088854785331200","","894911","","","2011-01-06 18:49:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke cool eh? :)"
|
||||
"23061874715136000","23061351312134144","16686076","","","2011-01-06 17:02:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@getify Good point. I think app stores have most value for non-techie types. Mom, grandma, people who think finding/installing apps is hard."
|
||||
"23060955680215040","23060489181339650","16686076","","","2011-01-06 16:58:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@getify When I used Windows I always wished 3rd party apps could register w/ MS update for one-stop updates. To each his own :)"
|
||||
"23060793381621760","23059933436055552","14172298","","","2011-01-06 16:58:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jeff_lamarche Shhh, they might be listening! *glances around*"
|
||||
"23059944962002944","23059156319604736","16686076","","","2011-01-06 16:54:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@getify Do you update all of your user apps individually, or hope they auto-update? For me updating is the killer feature of pkg managers."
|
||||
"23059327090692096","23058982302121986","16686076","","","2011-01-06 16:52:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@getify Yes, and each time you must enter your CC details (hassle) and trust them w/ your CC info. It's not terrible just not optimal."
|
||||
"23058544139960320","","","","","2011-01-06 16:49:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Can no longer click the menu bar icon to show/hide @tweetie 2 :( #sadpanda and Notification prefs UI is pretty bad. Otherwise I like it!"
|
||||
"23057553579573248","23047768599695360","16686076","","","2011-01-06 16:45:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@getify @jasonhuck @gregferrell Semantics. I have visited, just happen to still be visiting. Could leave any time and have visited no less."
|
||||
"23056910198509568","23055228743974912","16686076","","","2011-01-06 16:42:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@getify If you use Linux for a while you'll understand why centralized app repos are a very nice thing. Upgrades and removal are easier too."
|
||||
"23056707496181760","23055228743974912","16686076","","","2011-01-06 16:42:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@getify No, they're not good enough. I don't want to wait for the app to be delivered *in the mail*, and centralized payment is nice."
|
||||
"23044837028667392","","","","","2011-01-06 15:54:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Those complaining about the Mac App Store's UI oddities better not open Twitter for Mac (aka Tweetie 2) ... completely non-standard."
|
||||
"23044276929695744","23041243466440704","16686076","","","2011-01-06 15:52:38 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify But I guess some may feel that visited in the past tense means the visit is over, so until they leave it's ""visiting"" ... blech :/"
|
||||
"23043973123674114","23041516939251713","16686076","","","2011-01-06 15:51:25 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@getify I think as soon as the page is displayed you've visited it, so it should be marked as such."
|
||||
"23043512496824320","","","","","2011-01-06 15:49:36 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","I just realized the best thing about the Mac App Store: being able to buy iLife apps individually. I only ever want iPhoto."
|
||||
"22854712160165890","","","","","2011-01-06 03:19:22 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","Poor man's SSL VPN: `ssh -D 9050 my-server.net` and then use the SOCKS proxy localhost:9050"
|
||||
"22830804367319040","","","22830247460212736","17088322","2011-01-06 01:44:22 +0000","web","RT @HipwoodDigital: #yyj Company sold to social gaming heavyweight- Zynga buys Flock, The Social Browser That You Never Used http://tcrn ..."
|
||||
"22830695659343872","","","","","2011-01-06 01:43:56 +0000","web","Dragged Bodega to the trash on Monday since I used it once or twice then forgot about it. We'll see if the Mac App Store fares any better."
|
||||
"22817402697814017","","","","","2011-01-06 00:51:07 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","It's like the scene in Fargo where the cop is questioning the guy who kidnapped his own wife. What a joke. http://is.gd/k6Qmr"
|
||||
"22695095790739456","","","","","2011-01-05 16:45:07 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Finnerty Express has great food & snacks! I should ""miss"" my stop more often and come here in the morning. #yyj #uvic"
|
||||
"22692460568248321","","","","","2011-01-05 16:34:38 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Whoops! Missed my stop because of Cut the Rope."
|
||||
"22341342000586753","22142807846162432","44287241","","","2011-01-04 17:19:25 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@BradFazner I do everything including some system admin, iPhone apps, web stuff, whatever's needed. Lucky friend, good place to work!"
|
||||
"22083407974498304","22080309411450880","668423","","","2011-01-04 00:14:29 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@mikeal oops... it's 21 now. didn't know about dev dependencies."
|
||||
"22082597068738562","22062727497252864","14864447","","","2011-01-04 00:11:16 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@bryan_kyle I had to look up #virtualpcdoctor and the 2nd result on google is titled ""Virtual PC Doctor Scam"". You're not the only one."
|
||||
"22038339473383424","","","","","2011-01-03 21:15:24 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@BradFazner I write software and generally just make computers do things. It's pretty awesome most of the time."
|
||||
"21979069830668288","21977727531753472","894911","","","2011-01-03 17:19:53 +0000","web","@JimRoepcke I meant to ask if they're supposed to work today, on the 3rd, or tomorrow, after the 3rd. Doesn't matter now I guess :)"
|
||||
"21977267466936320","21971819187666944","894911","","","2011-01-03 17:12:43 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@JimRoepcke Were they supposed to work on or after the 3rd? I didn't pay close attention since I only use recurring alarms and Sleep Cycle."
|
||||
"21625507871203328","21614206377787392","44287241","","","2011-01-02 17:54:57 +0000","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","@BradFazner I believe it, saw a few of your COD videos on YouTube!"
|
||||
"21270884425666560","21266153594683392","14063149","","","2011-01-01 18:25:48 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@miksago Yup, completely agree there. Again I'm just speculating on why they haven't done it yet. Doesn't seem high priority is all."
|
||||
"21267426968604673","21267235569934336","14063149","","","2011-01-01 18:12:04 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@miksago It's on the app store again? That's news to me."
|
||||
"21267016019091456","21265900363583489","14063149","","","2011-01-01 18:10:26 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@miksago Licensors have proved they care little about nonsensical restrictions, just like iTunes' FairPlay and the CD burning loophole."
|
||||
"21266623629365249","21265900363583489","14063149","","","2011-01-01 18:08:52 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@miksago We certainly can especially since our phones are necessarily jailbroken if we have Grooveshark. Never said it makes sense."
|
||||
"21264251431686145","21261670936485888","14063149","","","2011-01-01 17:59:27 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@miksago That's not to say they *shouldn't*, I'm just speculating on why they currently do not."
|
||||
"21263999635038208","21261670936485888","14063149","","","2011-01-01 17:58:27 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@miksago Licensing deals, lack of bandwidth caps in Florida, and few people with limited data or slow connections would use Grooveshark."
|
||||
"21251768662888448","21248618740580352","96914034","","","2011-01-01 17:09:51 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@jodooshi I'm sneaky like that ;-)"
|
||||
"21251535975481344","21241278813442048","1589691","","","2011-01-01 17:08:55 +0000","<a href=""http://twitter.com"" rel=""nofollow"">Tweetie for Mac</a>","@reybango We're getting rid of them in Canada. Here a penny is worth 1/20th of its value when introduced, and cost 1.5? to produce."
|
||||
"21236889742737408","21236243685707776","16686076","","","2011-01-01 16:10:43 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@getify heh, thats true. And there you'd have us Canucks beat, damn loonies and twonies!"
|
||||
"21234472682782720","21234241408860160","16686076","","","2011-01-01 16:01:07 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@getify In Canada we are getting rid of the penny. About time!"
|
||||
"21234258441928704","","","","","2011-01-01 16:00:16 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Ease of creating something that works is more important than difficulty of creating something broken, e.g. Scheme vs. Lisp or even C macros."
|
||||
"21171138738528256","","","","","2011-01-01 11:49:27 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Tablets with dual cameras should have the best one in front. Seems like that'd be the most oft used one."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,142 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"41303652014628864","","","41302966170296320","20733754","2011-02-26 01:08:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @mrdoob: Someone on reddit ""fixed"" the Android Activations video. Much better with music ;) http://goo.gl/oqKOZ"
|
||||
"41292184216932352","41291563313278976","636923","","","2011-02-26 00:23:18 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@siracusa that's a good point. And since @wilshipley spotted several mistakes on his site..."
|
||||
"41270122282749952","41269314053087232","636923","","","2011-02-25 22:55:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@siracusa @wilshipley It could have been done on purpose. Picture a cutesy bear cartoon character and how he might pronounce it."
|
||||
"41184646607798272","","","41184528752062464","815114","2011-02-25 17:15:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @jedschmidt: deprecating the most popular #nodejs cookie library, since i've written a more modern one based on keygrip: https://gith ..."
|
||||
"41181760851017729","41175773268291585","14864447","","","2011-02-25 17:04:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle I think it was a couple weeks ago. The TC ran an article about it earlier this week."
|
||||
"41155838550884352","","","","","2011-02-25 15:21:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","It seems like Apple quietly fixed their 2010 MBP trackpad bug sometime in the last few months, it hasn't happened recently."
|
||||
"40949539376603136","","","40949104007847936","471323","2011-02-25 01:41:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @foresmac: LOL: Apple wraps the fine print stuff on pages on its website in class=""sosumi""."
|
||||
"40946353827872768","40945384998182912","20079975","","","2011-02-25 01:29:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@polotek Nope, that's true. This is in the context of http://t.co/ttPMB61 where the objective is simply converting decimal numbers.","http://www.wirfs-brock.com/allen/posts/166#comment-160"
|
||||
"40931805586665472","","","","","2011-02-25 00:31:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","If you want to convert strings to numbers use Number(str). parseInt is rarely necessary. ['1','2','3'].map(Number) works as expected."
|
||||
"40930294085193728","","","40929750285295616","6798592","2011-02-25 00:25:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @cowboy: A JavaScript Optional Argument Hazard http://bit.ly/gvhQ2A #javascript #ecmascript #carelessness"
|
||||
"40925124269973504","","","","","2011-02-25 00:04:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","structs.js: a binary data library for JavaScript http://t.co/voBYH1E","http://blog.mozilla.com/dherman/2011/02/24/structs-js/"
|
||||
"40476032565903360","40475362026733568","45993","","","2011-02-23 18:20:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@clint Or when they link to the comments, or the photos tab of a news article. Linking properly is too hard if Cmd-L Cmd-C doesn't do it :/"
|
||||
"40445440453394432","","","","","2011-02-23 16:18:39 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Why do I have a love/hate relationship with so many new technologies?"
|
||||
"40273059847872512","","","","","2011-02-23 04:53:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","System Preferences | Keyboard | Modifier Keys? | Caps Lock (?) Key: ? Control (via http://t.co/Y9eWwrI)","http://www.reddit.com/r/apple/comments/fqqhw/til_apple_intentionally_makes_the_caps_lock_key/c1hxr91"
|
||||
"40215689646186496","","","40215306840440832","676363","2011-02-23 01:05:42 +0000","web","RT @brianleroux: The guy who created Adobe Updater has to be buddies with the dude who created the Android AVD and SDK Manager."
|
||||
"40215429414658048","40211203271835648","9286842","","","2011-02-23 01:04:40 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@topgenorth yeah, who knew that a complaint about missing or malformed xml means that the xml is missing or malformed ;)"
|
||||
"40210420337741824","40208342056054785","9286842","","","2011-02-23 00:44:45 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@topgenorth I basically did the same. Thanks for the reply :)"
|
||||
"40172168968929281","","","40170686278402049","19044984","2011-02-22 22:12:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @jamesiry: What if instead of solving for ""what languages work for large teams"" we solved for ""what languages prevent the need for la ..."
|
||||
"40138442998288384","","","","","2011-02-22 19:58:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Take your JS skills to the next level: http://t.co/lzOhfc7 /cc @JimRoepcke","http://www.reddit.com/r/javascript/comments/fpp7m/recommendations_for_mastering_javascript/c1hs3fq"
|
||||
"40112452733501440","28962316837986304","9286842","","","2011-02-22 18:15:28 +0000","web","@topgenorth Did you figure out ""AndroidManifest.xml doesn't exist or has incorrect root tag""? ... google reveals next to nothing on this :/"
|
||||
"39837712164982784","39834931026866177","29255412","","","2011-02-22 00:03:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk Sweet!"
|
||||
"39837510762889216","","","39834931026866177","29255412","2011-02-22 00:02:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @tjholowaychuk: Found another nodejs developer that lives in Victoria! Wahoo we have three now"
|
||||
"39428732225724416","","","","","2011-02-20 20:58:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Eggs benedict with bacon, avocado, tomatoes, hollandaise, prawns sauteed in garlic butter, and fresh guacamole-ish salsa. So good, no pic :("
|
||||
"39057990363529216","","","","","2011-02-19 20:25:25 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","By going from Core 2 Duo to Sandy Bridge the new MBA will be some ridiculous figure such as 3x faster. Marketing must love that."
|
||||
"39043793386741760","","","38966019276017664","121483664","2011-02-19 19:29:00 +0000","web","RT @TonyClement_MP: I would like to see Macleans' parent Rogers return the annual taxpayer subsidy returned: is that asking too much @ac ..."
|
||||
"39032058860933121","","","38734077968392192","14822853","2011-02-19 18:42:22 +0000","web","RT @mhevery: @KentBeck To new or not to New: http://misko.hevery.com/2008/09/30/to-new-or-not-to-new/"
|
||||
"39032049100660736","","","38732659253452800","14822853","2011-02-19 18:42:20 +0000","web","RT @mhevery: @KentBeck Here is my point of view on the new operator: http://misko.hevery.com/2008/07/08/how-to-think-about-the-new-operator/"
|
||||
"39031903881273344","","","38728085620662272","16891384","2011-02-19 18:41:45 +0000","web","RT @KentBeck: designing software so you can test it via @mhevery in http://bit.ly/ey2E1y . i'm not so anti-new as he is. need to think a ..."
|
||||
"38750533615353856","38749648143253504","668423","","","2011-02-19 00:03:41 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mikeal And manually start it with ""start <name of file>"", stop with ""stop <name of file>"", you can guess how to restart..."
|
||||
"38750214302998530","38749648143253504","668423","","","2011-02-19 00:02:25 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mikeal http://t.co/htmSji7, place that in /etc/init","https://gist.github.com/834635"
|
||||
"38639562813087745","","","","","2011-02-18 16:42:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","View source on responses to POST requests works in Chrome 9, hooray! Hopefully it doesn't make a second request for the source..."
|
||||
"38629161996259328","","","38618644338450432","6899112","2011-02-18 16:01:24 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @justinlilly: OH: ""Java is a DSL for translating XML into stack traces."""
|
||||
"38101619253968896","","","","","2011-02-17 05:05:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","A few HTML questions that need answering http://t.co/PJdbDDG","http://www.wait-till-i.com/2011/02/14/a-few-html5-questions-that-need-answering/"
|
||||
"38064719596232704","","","38056905536577537","1671811","2011-02-17 02:38:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @paul_irish: @github users.... check out git-friendly: http://goo.gl/dyJKv Copies a compare URL to yr clipboard after a git push. Ama ..."
|
||||
"38064689585991680","38060463015067648","2911221","","","2011-02-17 02:38:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@wilshipley Which features? Similar people and connections, or something else?"
|
||||
"38064237544742912","","","","","2011-02-17 02:36:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I gotta say, when I did a little webOS development scping compiled apps to the device was sweet. Would like to try one for a week or two."
|
||||
"38063900226232320","","","","","2011-02-17 02:35:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Definitely not getting another iPhone, will be Android or webOS. iOS already rubs me the wrong way, must jailbreak to fully use the device."
|
||||
"38062294944591872","38060705378865152","4826261","","","2011-02-17 02:28:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@RussB Plus you can see replies to others which is not possible with the official web client."
|
||||
"38062100869951488","38060705378865152","4826261","","","2011-02-17 02:28:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@RussB New tweets appear automatically, easy to keep in a corner of the display, keyboard shortcuts. Mild conveniences but still nice."
|
||||
"38020574315950080","","","","","2011-02-16 23:43:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Ok, you want an uppercase letter in my password, I have 4 of them ... Now it's over 15 chars and invalid, what is that TOO secure? Fuck you."
|
||||
"37978209849053184","37975545480351745","72573","","","2011-02-16 20:54:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@lukeredpath Must it be shredded? Fire seems like a reasonable solution if you have a fireplace or can burn outside somewhere."
|
||||
"37964047445917696","","","37963919507210240","637763","2011-02-16 19:58:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @voodootikigod: I would love for twitter to provide ""topic trending"" IE. Trending in Technology or even better Trending Amongst Your ..."
|
||||
"37585665285816320","","","37584546681720832","4826261","2011-02-15 18:54:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @RussB: I'm a (very, very small) Nokia shareholder too, and I really like MeeGo and dislike Windows, but even I think the ""Plan B"" gu ..."
|
||||
"37342589556359168","","","36360340325269504","90286855","2011-02-15 02:49:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @changelogshow: super-nginx: #nginix on steroids bundles #redis, Drizzle support, serves up async Lua apps, from @ezmobius http://lg. ..."
|
||||
"37342572208726017","","","36193656763322368","90286855","2011-02-15 02:48:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @changelogshow: webbit: Evented HTTP, WebSocket server for #Java and #Clojure from @joewalnes http://lg.gd/8h"
|
||||
"37198555357790208","","","37196767728500736","14658472","2011-02-14 17:16:41 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @roidrage: If you really want to understand something, try explaining it to someone else."
|
||||
"37036969909297152","","","37031252255055872","13835862","2011-02-14 06:34:36 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","RT @osteele: is tempted to write a webapp in NodeJS on the server and GWT on the client. Just to be perverse."
|
||||
"37010133695340544","","","37007356093153280","658643","2011-02-14 04:47:58 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @SteveStreza: The Grammy's end, Reddit goes down. Tide goes in, tide goes out. Never a miscommunication."
|
||||
"36969528755757056","","","36968237539270656","90420314","2011-02-14 02:06:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @ActuallyNPH: Big fan of the monocle. So glad to see it making a comeback."
|
||||
"36969370395611136","36967146747596800","14864447","","","2011-02-14 02:05:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle they do have great wings! Only been on a wednesday night once but would definitely go again."
|
||||
"36943588914896896","36940402430844928","894911","","","2011-02-14 00:23:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I don't mind the blue fox, but the bennies at 1550s looked good enough for me too."
|
||||
"36940212642910208","36865211633762304","894911","","","2011-02-14 00:10:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Just a taste, now I want more"
|
||||
"36838206498541568","","","","","2011-02-13 17:24:47 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Breakfast buffet with bennies. Awesome! http://t.co/jfTpAc7","http://twitpic.com/3zf5ha"
|
||||
"36817101448675328","36620872756371456","894911","","","2011-02-13 16:00:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke It was good, but it poured all afternoon. You'll probably be able to catch highlights on CBC, or PlayOn's YouTube Channel."
|
||||
"36226304307236864","","","36224992559640576","33493","2011-02-12 00:53:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @peterc: A minor update on my first week with an SSD in the iMac: Everything is Super Crazy Instant?. Much recommended. Apologies to ..."
|
||||
"36139037320286208","","","","","2011-02-11 19:06:32 +0000","web","Yikes, following almost 500 people now. Sounds like too many."
|
||||
"36118240673538048","","","","","2011-02-11 17:43:54 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","http://amiworkingforgithubnow.com"
|
||||
"36118049622851584","","","36117736358678528","45993","2011-02-11 17:43:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @clint: You are all officially working for Github. You have no choice in this matter. Report for duty Monday morning."
|
||||
"36118034993119233","","","36117478685941760","13334762","2011-02-11 17:43:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @github: Tater has joined the GitHub team! https://github.com/blog/794-tater-is-a-githubber"
|
||||
"36093534796775425","","","","","2011-02-11 16:05:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","#yyj #hockey ?@PlayOnDirector: Here we go! Ball has dropped. Play On! In Victoria!?"
|
||||
"36090622976729088","","","36090150542905345","20079975","2011-02-11 15:54:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @polotek: Very handy reference for how type conversions work in #javascript - Truth, Equality and JavaScript http://bit.ly/dTv2pr"
|
||||
"36090353358475264","35974552383131649","22406953","","","2011-02-11 15:53:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm *face palm* ..."
|
||||
"35919616781979648","","","","","2011-02-11 04:34:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>",":/ http://t.co/WcHQPJX","http://yfrog.com/gyp6up"
|
||||
"35813158962728960","","","35803691642662912","234489024","2011-02-10 21:31:37 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","RT @twitterglobalpr: New version of Twitter for Android - now available for everyone http://t.co/HLMRi62","http://blog.twitter.com/2011/02/twitter-for-android-new-and-improved.html"
|
||||
"35749201342246912","35748721937358848","4777951","","","2011-02-10 17:17:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@_sjs @jimroepcke Not the greatest analogy because of temporary password retention, but people need to take responsibility not blame Apple."
|
||||
"35748860059983873","35748448225468417","19127403","","","2011-02-10 17:16:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@atomicpoet Agreed, but I'd rather they not rush it to market and do things properly, unlike the Samsung Galaxy Tab."
|
||||
"35748721937358848","35747468226469888","894911","","","2011-02-10 17:15:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke If you give your kid a CC and let them go buy a toy without supervision, and they come back with 10 toys, not Toys'r'Us fault."
|
||||
"35748228917895168","","","","","2011-02-10 17:13:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","However, HP does have to deliver what it promised, and on time. If they slip at all it'll be terrible."
|
||||
"35748021811548160","","","","","2011-02-10 17:12:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Despite what some think HP was smart to announce the TouchPad + smaller friends this early. Many people will hold off on other tablets."
|
||||
"35747954149036032","35728969470971904","250175995","","","2011-02-10 17:12:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@david_greatest Is there an echo in here?"
|
||||
"35747789598236672","35747468226469888","894911","","","2011-02-10 17:11:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Then don't link a CC at all just buy the kids gift cards. It's so simple, an investigation into this is a BS waste of resources."
|
||||
"35741711858667520","","1692881","","","2011-02-10 16:47:42 +0000","web","@bhaggs Looks like you have a doppelganger in Berlin: @david_greatest"
|
||||
"35723684651991041","","","","","2011-02-10 15:36:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","The FTC doesn't need to investigate kids and in-app purchases, parents can just stop giving their kids their CC and/or iTunes password. Easy"
|
||||
"35714208666488832","","","35545494906351616","9213742","2011-02-10 14:58:25 +0000","web","RT @robey: All java code eventually degenerates until there are interfaces containing a single method. Usually named ""invoke()"" or ""call()""."
|
||||
"35513924216565761","35513433260695552","16240267","","","2011-02-10 01:42:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@instapaper Hey don't worry too much about the iOS version of Instapaper. You've done such a great job it'll be difficult to beat."
|
||||
"35513619181469696","","","35513433260695552","16240267","2011-02-10 01:41:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @instapaper: Full API now available: http://t.co/diqusxu","http://blog.instapaper.com/post/3208433429"
|
||||
"35510235791630336","35509869586948097","15258949","","","2011-02-10 01:27:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tilgovi If you get any ""no""s let me know and I'll arrange for some busted kneecaps and elbows ;-)"
|
||||
"35509990106214400","","","","","2011-02-10 01:26:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I love @Grooveshark's HTML UI. It's already way better than the old one ... but I think they use synchronous XHR :/"
|
||||
"35508116149772288","35507752897875968","1692881","","","2011-02-10 01:19:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bhaggs Sweet! That's really nice to hear :)"
|
||||
"35508114602070016","","","35507752897875968","1692881","2011-02-10 01:19:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @bhaggs: @_sjs wait until tomorrow and you'll have that."
|
||||
"35504147218448384","35503073392721920","15258949","","","2011-02-10 01:03:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>",".@tilgovi Seesmic looks great so far, cheers! Free to boot, can't complain about that."
|
||||
"35504029912154112","","","35503073392721920","15258949","2011-02-10 01:03:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @tilgovi: @_sjs I use seesmic"
|
||||
"35502583544020992","","","","","2011-02-10 00:57:30 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","I wish #twitter on #android displayed conversations the same as on iphone. Any recommendations for good android clients?"
|
||||
"35418617675784192","","","","","2011-02-09 19:23:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","OH: ""You guys are evil! Showing happy families just to sell cream cheese?!"""
|
||||
"35413578995466240","","","35411469378002944","14618863","2011-02-09 19:03:49 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @anandshimpi: The webOS multitasking UI continues to be infinitely better than iOS"
|
||||
"35384976329412608","35383638195445761","45993","","","2011-02-09 17:10:10 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@clint 10am in the middle of the pacific."
|
||||
"35134878131568640","","","35116545873022976","18713","2011-02-09 00:36:22 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @al3x: Congrats to peeps at @basho on their round: http://bit.ly/f5nwgK. Riak is about to be everyone's not-so-secret weapon."
|
||||
"35134314782003200","","","35130529372180480","6585632","2011-02-09 00:34:08 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @kriskowal: I'm building ""Lode"", an experimental package-aware statically-linked asynchronous module loader for Node. No scraping. ht ..."
|
||||
"35028881631088641","","","","","2011-02-08 17:35:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Ok I was a little hasty, the show() command toggles auto printing of results ... I think it should be on by default but whatever. #BeanShell"
|
||||
"35028545117888512","35027799043612672","20826421","","","2011-02-08 17:33:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@wavded Apparently not the BeanShell guys. I'm still working on my ability to see the answer without it being displayed. I'll get there."
|
||||
"35028138064875520","35026117991731200","14864447","","","2011-02-08 17:32:13 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Typical half-baked crap rushed to market... the Spotlight calculator in iOS is /even worse/"
|
||||
"35027480863576064","","","","","2011-02-08 17:29:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","If it doesn't automatically print what it evaluates then it's not actually a read-eval-PRINT-loop."
|
||||
"35025908863598592","35023599458975744","14864447","","","2011-02-08 17:23:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle That's not all, it's horrible at word problems too."
|
||||
"35021717948596224","","","","","2011-02-08 17:06:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Hey, who knew. When you use Spotlight as a calculator Cmd-c copies the result without having to select it. http://t.co/29wGIoV","http://littlebigdetails.com/post/3181201603/mac-os-x-when-doing-a-calculation-in-spotlight"
|
||||
"34756856622747648","","","34756455840092162","894911","2011-02-07 23:34:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @JimRoepcke: Proud to announce HeavyLifters has open-sourced HLDeferred for iOS 4.x. Makes it easy to write async code in ObjC. http: ..."
|
||||
"33656775261696000","","","33656360713322496","6264792","2011-02-04 22:42:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @technomancy: http://www.jwz.org/images/qrrr.gif"
|
||||
"33571933924622336","33571108502372352","14231571","","","2011-02-04 17:05:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@marcoarment Well, if you ask me that revealed his bias much more than your own. He sounds absolutely insane."
|
||||
"33570363950505984","33567286644178944","14864447","","","2011-02-04 16:59:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle It's especially perplexing when guys like Google miss it. Right hand not talking to the left or what."
|
||||
"33570106592202752","","","33567286644178944","14864447","2011-02-04 16:58:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @bryan_kyle: Why don't more sites use @type=""email""for their inputs? It falls back gracefully and shows that you care about mobile."
|
||||
"33553262825185280","","","","","2011-02-04 15:51:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","SSD+HDD hybrids aren't the future, they are a stop-gap measure. No moving parts is clearly the future as SSDs will gain capacity soon enough"
|
||||
"33338681309790208","","","","","2011-02-04 01:38:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Go @Grooveshark! ""According to VirtualMusic, our user base is now 236% bigger."" http://t.co/dl2MPuX","http://blog.grooveshark.com/post/3092944949/groovesharks-on-fire"
|
||||
"33324861392683008","","","33320497416642560","14172298","2011-02-04 00:44:00 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @jeff_lamarche: Everybody should go to the iOS Dev Center?
|
||||
|
||||
? in exactly 2 hours and 11 minutes."
|
||||
"33318990830895104","","","","","2011-02-04 00:20:41 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Here comes the fun cooker."
|
||||
"33306054351785984","33305370264866816","15029296","","","2011-02-03 23:29:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@zedshaw @dkastner If I want to stage something for a commit I use 'git add'. It's as simple as that unless you try to complicate it."
|
||||
"33298658095005697","33292824602484736","15029296","","","2011-02-03 22:59:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@zedshaw @dkastner And I think that putting that on the command line is stupid. To each his own man."
|
||||
"33292334770683904","33290901467963392","15029296","","","2011-02-03 22:34:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@zedshaw You don't have to like git but surely you can find something better than # of commands to complain about, that's so easy."
|
||||
"33291910604918785","33290901467963392","15029296","","","2011-02-03 22:33:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>",".@zedshaw Git commands are akin to functions. Only a handful of them are actual UI for daily use, the rest are libs."
|
||||
"33247829887557632","33240425024335872","11973362","","","2011-02-03 19:37:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror Aha! Editor -> Smart Keys -> Use ""CamelHumps"" words ... thanks for the push in the right direction."
|
||||
"33245324260679680","33240425024335872","11973362","","","2011-02-03 19:27:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror Oh weird, I wonder why it doesn't do the same here. Maybe time to ask on the IntelliJ forums or mailing list."
|
||||
"33239992117628928","33234709714575360","11973362","","","2011-02-03 19:06:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror That moves by words. Where ^ is the cursor I want <modifier>+right to go from ^HelloThere to Hello^There, not to HelloThere^."
|
||||
"33234299880742912","33233060388548608","11973362","","","2011-02-03 18:44:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror Ah, must be different on my Mac or with the Mac 10.5+ keymap set. I'll have to dig a bit, but good to know it's there! Thanks."
|
||||
"33232366478561280","","","","","2011-02-03 18:36:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Dear lazy twitter, can't google up anything useful about subword navigation in IntelliJ IDEA. Is there native support or a plugin? must haz"
|
||||
"33201385105268736","","","","","2011-02-03 16:33:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","For 28 I sure can be a grumpy old man sometimes. Ok most of the time."
|
||||
"33189632459935745","33183803321098240","31151313","","","2011-02-03 15:46:39 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@kuvos @wavded ""expressive"" still isn't the right word but maybe something along those lines."
|
||||
"33184086923153408","33022690902151168","15226527","","","2011-02-03 15:24:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@fastest963 Good to hear! I'll be waiting anxiously :)"
|
||||
"33025787892342784","","","33022690902151168","15226527","2011-02-03 04:55:36 +0000","web","RT @fastest963: @_sjs 200 limit is partially on my end (API). Working on a better method of them over the next week or so."
|
||||
"33020892405702656","","","","","2011-02-03 04:36:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Import iTunes, Spotify, and Last.fm playlists into @Grooveshark with groovylists: http://t.co/FfYhVUN ... pretty sweet but 200 song limit.","http://groovylists.com/"
|
||||
"33019544087826432","33016169371803649","2262091","","","2011-02-03 04:30:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@ajordens I'm pretty much sold on IDEA after 1/4 day with it. And a great thing about twitter is async messaging :)"
|
||||
"33019314156077056","","","33018201495310336","20826421","2011-02-03 04:29:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @wavded: CoffeeScript is arguably more powerful than JS because of how it exploits/makes it easier to use JS best features, discuss :)"
|
||||
"33017098812792832","","","","","2011-02-03 04:21:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","OH: ""There are pretty much only 2 things you can do with [misbehaving] electronics: restart them, and hit them."""
|
||||
"33016810399862785","","","32883145439191040","11973362","2011-02-03 04:19:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @typeoneerror: @_sjs IntelliJ 10 has everything you need for Android built-in. Honestly, much better support than Eclipse. http://yf ..."
|
||||
"32985940230148098","","","","","2011-02-03 02:17:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","This is why I use NoScript in Firefox and NotScripts in Chrome: http://t.co/p73lY99 and of course the old http://t.co/mafE5k4","https://grepular.com/Abusing_HTTP_Status_Codes_to_Expose_Private_Information","http://ha.ckers.org/weird/CSS-history-hack.html"
|
||||
"32967398210404352","","","32835842309357568","3742641","2011-02-03 01:03:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @jemerick: Fun about page... http://t.co/5P6jcGL","http://www.technologywithpassion.com/about-us/team/"
|
||||
"32958840374820864","","","","","2011-02-03 00:29:34 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","IntelliJ is so much more responsive than eclipse, it's refreshing."
|
||||
"32958305852719105","","","","","2011-02-03 00:27:27 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","As soon as I figure out sub-word navigation in IntelliJ IDEA I don't think I'll need eclipse. That makes me happy."
|
||||
"32957522725834753","","","32954689918074880","2911221","2011-02-03 00:24:20 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @wilshipley: Microsoft: ?We didn?t copy Google, unless by ?copy? you mean ?watch what they did and then do the same thing.? Then, yah ..."
|
||||
"32916729931763712","","","","","2011-02-02 21:42:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","OH: ""Oh my god github, I want your babies!"""
|
||||
"32888997512482816","","","","","2011-02-02 19:52:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Wow, I haven't even edited any code yet and I already like #IntelliJ #IDEA. The UI isn't sluggish like that dog #Eclipse. /cc @typeoneerror"
|
||||
"32884395119476736","32883145439191040","11973362","","","2011-02-02 19:33:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror Wow that's great, thanks! :) I'm going to try it today, Eclipse makes me want to kill kittens."
|
||||
"32882664457371649","32882228795015169","11973362","","","2011-02-02 19:26:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror I want to try it out but seems like all the tools are for Eclipse (e.g. for Android dev). Maybe the tools aren't so important."
|
||||
"32881736211759104","","","32855165803429888","3043421","2011-02-02 19:23:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @krobertson: Been feeling very anti-java after 3 days of pain. Feel myself about to go on a war path."
|
||||
"32877410848342016","","","","","2011-02-02 19:06:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Dear Eclipse, sorry I was mean to you yesterday. Friends? I won't hang you on purpose with tricky floating point constants if you just work."
|
||||
"32681475820228608","32585691112153088","228317729","","","2011-02-02 06:07:25 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@podviaznikov We have different definitions of the word ""shame"" ;-)"
|
||||
"32595954758586368","32593123322372097","14864447","","","2011-02-02 00:27:35 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@bryan_kyle it's pretty unfair that the perfect setup costs about $10k"
|
||||
"32595235095707648","32592750922694656","14864447","","","2011-02-02 00:24:44 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@bryan_kyle yeah it's not a bad work machine by many standards. Most cheapo 15"" notebooks give you 11"" Air resolution :/"
|
||||
"32591950892769280","32586784592367616","14864447","","","2011-02-02 00:11:41 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Ha, yeah my perfect setup includes both MBP and MBA as well. *le sigh* ... I'd try the 13"" Air, don't like it sell it."
|
||||
"32583811371896832","32582705854025728","14864447","","","2011-02-01 23:39:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle I'm still waiting on the 15"" Air :) ... but I got a new MBP last summer so I'm not hurting to upgrade."
|
||||
"32583453455159297","32582705854025728","14864447","","","2011-02-01 23:37:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle I've only used SSDs in machines with a fast CPU, not sure what the greater bottleneck is on the Air. Compelling machines though."
|
||||
"32581677473595395","","","","","2011-02-01 23:30:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Got a fast machine with an SSD, lots of RAM? Feeling nostalgic? Just start Eclipse and you'll think you were back on your old P3 box."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,110 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"53559163372060673","53557253063708672","10058662","","","2011-03-31 20:47:54 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@asadotzler @F1LT3R I hope so! I'm sticking with Chrome for the time being since it has been remarkably good till now (for me anyway)."
|
||||
"53551162372259840","","","","","2011-03-31 20:16:06 +0000","web","@F1LT3R @asadotzler Current version on OS X is horrible, it's almost like they're trying to drive users to Firefox 4. Wasn't always so."
|
||||
"53219553920028673","","","","","2011-03-30 22:18:25 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Despite their user base growing over 250% in 2010 @Grooveshark continues to set the bar high. Customer service is even better in 2011! <3"
|
||||
"53159198749495296","","","53158392818176000","15534471","2011-03-30 18:18:35 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @cramforce: +1 http://j.mp/e3vlx9"
|
||||
"52916842615947265","52909655021719552","29255412","","","2011-03-30 02:15:33 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@tjholowaychuk The keyboard shortcuts are great. I really like cmd-u and being able to see replies to any user."
|
||||
"52786302453686272","","","52783170122297344","17259752","2011-03-29 17:36:49 +0000","web","RT @kpdecker: jsdiff: The diff engine from Firediff, now standalone for CommonJS https://github.com/kpdecker/jsdiff"
|
||||
"51023032675876865","","","51022708238061568","113713261","2011-03-24 20:50:13 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @ChromiumDev: WebKit got pretty XML viewing last week: http://goo.gl/24iR5 and the Inspector just pretty JSON http://goo.gl/SytwC ^pi"
|
||||
"50951745681113089","","","50950275019702273","7198302","2011-03-24 16:06:57 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @jonathanstark: This doesn't spread my toes, but it does speak to thoughts I've been having about building services on top of Dropbox ..."
|
||||
"50625621839192064","50623645822885888","668423","","","2011-03-23 18:31:03 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@mikeal http://www.youtube.com/watch?v=hb63PdobcZ0"
|
||||
"48901120231354369","48899169041129472","2319611","","","2011-03-19 00:18:30 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@shaver That's fair. None of us *know* anything. imo too big to be oversight, and too complex to immediately attribute to malice."
|
||||
"48898498480967680","48886276774051840","2319611","","","2011-03-19 00:08:05 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@shaver Nitro has to alloc memory with PROT_EXEC. iOS disallows this for most apps but Nitro requires it, so Safari must be whitelisted."
|
||||
"48877525878841344","48875679592366081","894911","","","2011-03-18 22:44:44 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke @jonathanstark An example of this being enforced by iOS: http://j.mp/i0swfY%0A tl;dr he can allocate exec mem in sim, not device"
|
||||
"48870192943595520","48869817737949184","676363","","","2011-03-18 22:15:36 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux :)"
|
||||
"48870105060347904","48869817737949184","676363","","","2011-03-18 22:15:15 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux lol"
|
||||
"48868828653961216","48866734509264896","676363","","","2011-03-18 22:10:11 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux @JimRoepcke @bryan_kyle Totally agree, we all know that we're all speculating. Nothing taken personally!"
|
||||
"48862093469949952","48860998580453376","14864447","","","2011-03-18 21:43:25 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle I do like Dreamhost's domain admin UI, use it for all my domains even the ones not hosted there."
|
||||
"48861997474906112","48860998580453376","14864447","","","2011-03-18 21:43:02 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle Dreamhost is ok for serving small volumes of static files, dynamic stuff I prefer to manage my own OS & stack."
|
||||
"48859706147602432","48858563979902976","14864447","","","2011-03-18 21:33:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle It's just a shared Dreamhost thing with a .htaccess to enable caching. Comments are served from a Linode VM running Ubuntu."
|
||||
"48857141511065600","","","","","2011-03-18 21:23:44 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","It's pretty quick'n'dirty ... the comments are in fact stored in a very dirty database: https://github.com/felixge/node-dirty"
|
||||
"48856603549638656","","","","","2011-03-18 21:21:36 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","samhuri.net is baked using an unholy combination of Ruby, JavaScript (#nodejs), shell scripts, and Makefile icing. http://j.mp/fiABy4%0A"
|
||||
"48856145229647872","","","48854142562746368","1235521","2011-03-18 21:19:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @timbray: More on baking: http://goo.gl/sjc9o"
|
||||
"48848754610151424","48844970236452864","14864447","","","2011-03-18 20:50:25 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle It's ok to not know something, but to dismiss others because of one's own lack of understanding is pretty lame."
|
||||
"48842202142605312","","","","","2011-03-18 20:24:23 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Gotta love it when someone dismisses you as an idiot instead of just talking to you and reasoning with you. Twitter discourse ftw :p"
|
||||
"48818344865968128","48810689476837376","2319611","","","2011-03-18 18:49:35 +0000","web","@shaver @JimRoepcke Exactly. Apple can audit Safari for buffer overflows and such, but cannot (realistically) for arbitrary app X."
|
||||
"48812688268210177","48811251811352576","676363","","","2011-03-18 18:27:06 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux Sorry I was unclear before, shouldn't be trying to have this convo in 140 chars :)"
|
||||
"48812121995231232","48811251811352576","676363","","","2011-03-18 18:24:51 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux This is a fundamental departure from traditional interpreters and compilers, and it's JIT compiler 101."
|
||||
"48811835465547776","48811251811352576","676363","","","2011-03-18 18:23:43 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux When you move to a JIT, you are now generating code in memory NOT marked exec, which must then be marked exec & executed."
|
||||
"48811726879207424","48811251811352576","676363","","","2011-03-18 18:23:17 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux Interpreters act on byte codes by calling existing code, again marked as exec by the OS when the interpreter is loaded."
|
||||
"48811628044632064","48811251811352576","676363","","","2011-03-18 18:22:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux No, I'm saying traditional compilers generate binaries that when loaded by the OS are marked as exec in memory."
|
||||
"48809337690402817","48807789996408832","676363","","","2011-03-18 18:13:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux Whereas an interpreter reads byte codes & calls functions. A compiler generates a binary, when loaded by OS marked as exec."
|
||||
"48808876476346369","48807789996408832","676363","","","2011-03-18 18:11:57 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux When moving from an interpreter or compiler to a JIT compiler, the JIT has to create code in memory, mark as executable & exec."
|
||||
"48808326477266944","48807174863994880","676363","","","2011-03-18 18:09:46 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux It's called the NX bit http://en.wikipedia.org/wiki/NX_bit ... not sure why you think this is made up."
|
||||
"48793403781169153","48784725480968192","14864447","","","2011-03-18 17:10:28 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle @tjholowaychuk @JimRoepcke We built a custom framework around node-machine (a port of WebMachine), but it's pretty low level."
|
||||
"48792888171171840","48784725480968192","14864447","","","2011-03-18 17:08:25 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle @tjholowaychuk @JimRoepcke express http://expressjs.com/ seems to be the de-facto framework. Haven't used it but it looks good."
|
||||
"48771947336699904","48614143510585346","894911","","","2011-03-18 15:45:13 +0000","web","@JimRoepcke See this @arstechnica article: http://arst.ch/olo ... the security risk is real and this seems like a pretty reasonable reason."
|
||||
"48771367172194306","48614143510585346","894911","","","2011-03-18 15:42:54 +0000","web","@JimRoepcke If it were because of back-compat it wouldn't be in Safari either. The NX bit explanation (due to JIT) holds more water imo."
|
||||
"48261764692983808","48251977070678016","894911","","","2011-03-17 05:57:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Yeah it looks great! Soon."
|
||||
"48248611045257216","","894911","","","2011-03-17 05:05:39 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke http://twitpic.com/4a83e9"
|
||||
"47757919697125376","47756099851522048","894911","","","2011-03-15 20:35:50 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke When I looked into multiple Xcode installs I found that some files are always written to common dirs. Last install wins, yay! :/"
|
||||
"47757443022860289","47746211398168576","14864447","","","2011-03-15 20:33:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle I'd switch to CS if someone did! We could also port Node to Spidermonkey and use generators to write sync-looking async code :p"
|
||||
"47745165791727616","47737740174954497","14864447","","","2011-03-15 19:45:09 +0000","<a href=""http://www.tweetdeck.com"" rel=""nofollow"">TweetDeck</a>","@bryan_kyle no worries, sorry that there isn't really a good or useful answer :)"
|
||||
"47711469093130240","","","47680575217205248","20079975","2011-03-15 17:31:15 +0000","web","RT @polotek: I was gonna build something like this. Share full twitter conversations. http://www.exquisitetweets.com/ http://bit.ly/eS3xJY"
|
||||
"47686183383334912","","","","","2011-03-15 15:50:46 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","Instead of doing something as a Rubyist just do it as a human."
|
||||
"47679768136658944","","","47678325245751296","2440841","2011-03-15 15:25:17 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","RT @basho: Psst... there's still time to register for ""Riak with node.js"", today at 2PM EDT! http://ow.ly/4eV3F #riak #node #nosql"
|
||||
"47654306849107968","","14063149","","","2011-03-15 13:44:06 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@miksago @tjholowaychuk ... and I'm replying to old tweets in this twitter client."
|
||||
"47653089628524544","47026316721127424","14063149","","","2011-03-15 13:39:16 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@miksago @tjholowaychuk we've got @Serious_Coffee too. And Francellis in Royal Oak."
|
||||
"47019335188889600","46804086716239872","14365611","","","2011-03-13 19:40:57 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@Shaun_R :( is right"
|
||||
"47013571942563840","","","","","2011-03-13 19:18:03 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","All the ""surfing w/o Flash, and it's great!"" tweets are pretty funny. FlashBlock is at least 7 years old now guys."
|
||||
"47002191172616192","","51201464","","","2011-03-13 18:32:50 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kiwi_app Possible bug: Hide Kiwi doesn't actually hide the app, but toggles visibility of the main window. Seems odd."
|
||||
"46310110338879488","","","46307865056653312","14582359","2011-03-11 20:42:45 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @acangiano: Whenever you find yourself on the side of the majority, it is time to pause and reflect. -- Mark Twain"
|
||||
"46248250109460480","","","","","2011-03-11 16:36:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Not to mention that it didn't even work for Apple. Maybe if they concentrated more on security all the time they wouldn't fall in 5 seconds."
|
||||
"46248061663580160","","","","","2011-03-11 16:36:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","So companies leave unpatched remote execution vulns in their browsers/devices until the last minute to save face at pwn2own? Pretty selfish."
|
||||
"46075622472155137","","","","","2011-03-11 05:10:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Promises are the monad of asynchronous programming, by @jcoglan http://t.co/bkSzZsl /cc @JimRoepcke","http://blog.jcoglan.com/2011/03/11/promises-are-the-monad-of-asynchronous-programming/"
|
||||
"46001702041686016","","","46001658525777920","11322372","2011-03-11 00:17:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @holman: I also think Apple should include a replacement for Hacker News on the OS X installer DVD too."
|
||||
"46001671981121536","","","","","2011-03-11 00:17:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I really prefer stars to ""likes"" :/"
|
||||
"45913756152242176","","","45912601355489281","1045541","2011-03-10 18:27:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @limi: On Reddit today: We are the Firefox development team, and we just shipped FF4 RC ? ask us anything! http://t.co/6fh0jOM (Pleas ...","http://www.reddit.com/r/IAmA/comments/g197r/iama_were_on_the_firefox_development_team_and/"
|
||||
"45908994551848961","","","","","2011-03-10 18:08:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Unfortunately Android *still* lacks a screen shot utility (w/o rooting), so I had to plug my phone into my computer to capture that."
|
||||
"45908647171198976","","","","","2011-03-10 18:07:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Android 2.3 ""Gingerbread"" has green signal strength indicators that turn grey when there's no connectivity to Google http://t.co/unbPrW4","http://yfrog.com/h4aeptp"
|
||||
"45872433953120256","45872065353490432","5813712","","","2011-03-10 15:43:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@antirez I think you can name commits when merging, naming a branch is just a shortcut to the commit, e.g. git merge feature-branch~4"
|
||||
"45871523579437056","","","","","2011-03-10 15:39:58 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Sure wish I could double-click tweets to view convos in users' @ replies tab on Twitter for Mac /cc @lorenb @atebits"
|
||||
"45869015259807744","","","","","2011-03-10 15:30:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I cannot believe I have to root Android or connect this phone to a computer via USB to take a damn screen shot."
|
||||
"45849974684139520","","","45847377529143296","16642746","2011-03-10 14:14:20 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @miketaylr: In case you didn't know that the web is busted, http://t.co/KZRXvEN","http://blogs.msdn.com/b/ieinternals/archive/2011/03/09/browsers-accommodate-incorrect-http-content-length-and-sites-depressingly-depend-on-it.aspx"
|
||||
"45714590230781953","","","45372439902945280","4216361","2011-03-10 05:16:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @dalmaer: JQUERY IS FOR N00BS http://t.co/Otlmf4G (only just saw this. heh)","http://bobremeika.com/2011/03/03/jquery-is-for-n00bs/"
|
||||
"45687905997434880","45687048874622976","14864447","","","2011-03-10 03:30:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle @jimroepcke Good point, they would be a bit behind."
|
||||
"45686193291137025","45685684383645696","14864447","","","2011-03-10 03:23:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle @jimroepcke In some ways maybe, it will depend how fast Apple moves. Everyone can leverage Clang."
|
||||
"45684476264726529","45683270582673408","894911","","","2011-03-10 03:16:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke @bryan_kyle SharpDevelop, TextMate, IDEA, Coda, Espresso, SlickEdit, BBEdit. Indies and communities can do it."
|
||||
"45683802563026944","45683095734718465","894911","","","2011-03-10 03:14:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke @bryan_kyle There are counter examples but they really only appeal to a niche of geeks. But then so do dev tools."
|
||||
"45683028147712000","45682136392531968","14864447","","","2011-03-10 03:10:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle @jimroepcke That explains it. $hundreds makes sense, free makes sense, $5 does not make sense."
|
||||
"45681372655915009","45680966290767872","894911","","","2011-03-10 03:04:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I'm not against paying for dev tools I just feel that free and easy to obtain dev tools are good for a platform."
|
||||
"45681218267787264","45680966290767872","894911","","","2011-03-10 03:03:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Xcode pro would kick ass, let's hope CIDR fills the role nicely."
|
||||
"45681011144667136","45680500764971008","894911","","","2011-03-10 03:02:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke It's not for free, the platform is a cohesive entity as they emphasize all the time, Xcode + docs + samples + review team, etc."
|
||||
"45680676145610754","45680354417328128","894911","","","2011-03-10 03:01:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke and they make $5/*person* on even fewer people, who are would-be future enthusiasts."
|
||||
"45680353637183488","45675670495428608","894911","","","2011-03-10 03:00:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Charging $5 is a silly cash grab that brings in relatively little revenue and creates an unnecessary barrier to entry."
|
||||
"45680020689125376","45675670495428608","894911","","","2011-03-10 02:59:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Apple doesn't need to make money on Xcode, they already make $100/year/dev plus the cost of the computers & iPhones & iPods +30%"
|
||||
"45653801469882368","","","","","2011-03-10 01:14:49 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","""Thus Safari fails on Apple?s own two platforms, but passes on Microsoft?s. Go figure. You can?t make this up."" http://t.co/JzjhfU2","http://www.quirksmode.org/blog/archives/2011/03/the_new_input_t.html"
|
||||
"45636702873722880","","","45632802586238976","4216361","2011-03-10 00:06:52 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @dalmaer: YSlow has come to Chrome too. Nice work @swapnil_shinde and co http://t.co/xoFeVCE","http://developer.yahoo.com/blogs/ydn/posts/2011/03/yslow-for-chrome/"
|
||||
"45579926354665473","45578748468264960","72573","","","2011-03-09 20:21:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@lukeredpath Probable false alarm. It looks like you can get Xcode 3 with a free dev account. They don't mention Xcode4 http://t.co/oapFPyD","http://developer.apple.com/programs/register/"
|
||||
"45579174857015296","45578748468264960","72573","","","2011-03-09 20:18:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@lukeredpath Yes, an unfortunate step backwards even if the barrier to entry is only an Apple ID and $5."
|
||||
"45578485078556672","45577438541000704","72573","","","2011-03-09 20:15:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@lukeredpath Apparently you can only download Xcode 4 if you're a Mac or iOS dev, which costs $100/year each. Haven't confirmed myself."
|
||||
"45520186576613377","","","45515446551715840","637763","2011-03-09 16:23:52 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @voodootikigod: How I Pick Speakers For JSConf http://post.ly/1iwXe"
|
||||
"45266244114460673","","","45188304525737985","887251","2011-03-08 23:34:48 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @ppk: Mobile browser input type compatibility table at http://quirksmode.org/html5/inputs_mobile.html . Last three browsers not yet done."
|
||||
"45229395207659520","","","45180411592179712","1656101","2011-03-08 21:08:22 +0000","web","RT @probablycorey: Last night I decided to makes something ridiculous: http://probablyinteractive.com/url-hunter"
|
||||
"44953649125920768","","","","","2011-03-08 02:52:39 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I'm almost invariably happier when I decide to *not* comment on reddit, but just move on."
|
||||
"44878652030189568","44875609549185024","11768402","","","2011-03-07 21:54:39 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@nciagra No problem! I use the same technique to remove references to JSONP callbacks when they are fired."
|
||||
"44870556436279296","44870012632178688","11768402","","","2011-03-07 21:22:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@nciagra Sure, why not? Run this in your browser's console, 2nd call will throw a TypeError: var x = function(){x=null}; x(); x()"
|
||||
"44867386880430080","","","44867196115091456","23830105","2011-03-07 21:09:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @joedamato: sorry, but there really is no such thing as a social media expert."
|
||||
"44838728925069312","","","44836021795430400","15414399","2011-03-07 19:16:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @paulrouget: 9 Awesome SSH Tricks http://bit.ly/dEvxFo"
|
||||
"44828476607447041","44800362984648704","3655191","","","2011-03-07 18:35:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@isaiah Good post though. It illustrates how silly the FaceTime restriction is."
|
||||
"44828336689655808","44800362984648704","3655191","","","2011-03-07 18:34:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@isaiah It's not possible to simultaneously connect to a WiFi network while using MyWi on iOS or Android's native WiFi hotspot thing."
|
||||
"44795228514816000","","","","","2011-03-07 16:23:09 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Been working on some neat JS and today might be the day we release it! Well, a piece of it..."
|
||||
"44778119021862912","","","","","2011-03-07 15:15:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Lego Carcassonne: http://t.co/2geaBnu /cc @JimRoepcke @CarcassonneApp","http://www.iamcal.com/lego-carcassonne/"
|
||||
"43857902297026560","","","","","2011-03-05 02:18:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","What's up with this? http://t.co/OE9pyit","http://yfrog.com/gz58mvp"
|
||||
"43789520138805248","43787627673030656","57433438","","","2011-03-04 21:46:49 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@deanlandolt That would be a good addition. We might have to replace JSONP before enough people care though."
|
||||
"43787391923793920","","","43787262537900032","15687937","2011-03-04 21:38:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @devongovett: Thanks for trying to kill IE6, Microsoft. Why don't you also kill IE7 and IE8 while you're at it!"
|
||||
"43786382413537280","","","","","2011-03-04 21:34:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I like the look of JSend, this is pretty much exactly what I already do, suspect it's the same for others. http://t.co/FVA6FoI","http://labs.omniti.com/labs/jsend"
|
||||
"43768579337887744","","","","","2011-03-04 20:23:37 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Herp derp"
|
||||
"43733620770344960","","","43732536194637826","1671811","2011-03-04 18:04:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @paul_irish: Whoa - http://yepnopejs.com just went 1.0 - the script loader that'll soon be at the foundation of most HTML5 sites. Jus ..."
|
||||
"43731700987076608","","","","","2011-03-04 17:57:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","How not to write jQuery: http://t.co/753J05t 10 seconds of cleanup yields: http://t.co/LBgvQ06 ... can we do even better?","http://ie6countdown.com/","https://gist.github.com/855389"
|
||||
"43729138367987712","43727614103392256","20079975","","","2011-03-04 17:46:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@polotek Both worlds have a lot to learn from each other, good for everyone. I love seeing Qt & three20 adopt CSS for styling native apps."
|
||||
"43726851385987072","","","43724285113671683","16686076","2011-03-04 17:37:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @getify: microsoft should buy this domain: http://isie6deadyet.com/ and run it in the vein of ""arewefastyet"" and such."
|
||||
"43725726930845696","","","","","2011-03-04 17:33:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Browser extensions, user scripts, and bookmarklets make browsers a killer platform. Imagine having all that potential on your desktop OS."
|
||||
"43542441109889024","","","","","2011-03-04 05:25:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","zsh, ssh, vim, git, screen, curl, vagrant, iTerm - Things I use all the time but don't talk about as much because they stay out of the way."
|
||||
"43527312553160704","43525102037516288","14864447","","","2011-03-04 04:24:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle @jimroepcke JetBrains has already taken on Eclipse and vim/emacs/etc (Ruby, JS). Biggest diff is Xcode is halfway decent-ish."
|
||||
"43480902029946880","","","","","2011-03-04 01:20:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","JetBrains is doing an Objective-C IDE: http://t.co/QtvcbIv /cc @JimRoepcke","http://www.jetbrains.com/cidr/"
|
||||
"42790102665150464","42788496548708353","6927562","","","2011-03-02 03:35:30 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@nzkoz @thomasfuchs If a different store attracted enough Android devs it could become ""the store"", not so with iOS."
|
||||
"42758417848352768","42757328310767616","668423","","","2011-03-02 01:29:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mikeal It's especially silly since they should be recommending the standard editor anyway. Not this newfangled, trendy ""vim"" thing."
|
||||
"42753509287931904","","","42753115878989824","6798592","2011-03-02 01:10:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @cowboy: jQuery snippet that simulates the DOM building: (function n(e){e.eq(0).fadeIn(99,function(){n(e.slice(1))})})($("":visible""). ..."
|
||||
"42613459854176256","","","42611369568239616","11573212","2011-03-01 15:53:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @jcrossley3: We teach Java in schools? Hard to think of a less inspiring language. http://t.co/80ftJFG","http://www.youtube.com/watch?feature=youtube_gdata_player&v=5kj5ApnhPAE"
|
||||
"42606711357452288","","","","","2011-03-01 15:26:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Dear Apple, System prefs don't need to be 2nd class citizens in Spotlight results. Twitter beats out Network prefs for ""network"", please fix"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,70 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"64496305937985536","","","","","2011-05-01 01:08:12 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","I'm going to be in Victoria for the foreseeable future. Vancouver will have to wait!"
|
||||
"64449214855385088","","","88563872","183793","2011-04-30 22:01:04 +0000","web","RT @woolstar: Its not .gdbrc, its .gdbinit just to be different."
|
||||
"64448096226131969","","","","","2011-04-30 21:56:38 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I would have been happy to debug this if the cause wasn't something I instruct the compiler to warn me about."
|
||||
"64447810174595072","","","","","2011-04-30 21:55:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Perhaps it's time to transition my little scheme interpreter to llvm."
|
||||
"64447667861848064","","","","","2011-04-30 21:54:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","argh! I failed to include a header so it was assumed that b() return int, not void*. Why was I not warned about the assumed return type? ?_?"
|
||||
"64433383731761152","","","","","2011-04-30 20:58:10 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","There's no panacea in abstractions, they all leak eventually. Even if you just happen to be the unlucky bastard struck by odd cosmic rays."
|
||||
"64433029577318400","","","","","2011-04-30 20:56:46 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","And if you really know C you must *at least* have an idea of how the underlying machine works, and cannot be afraid to drop to that level."
|
||||
"64432530727772160","","","","","2011-04-30 20:54:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","If you find weird behaviour in Python/Ruby/whatever and want to debug it you *must* know C or C++."
|
||||
"64431648808243200","","","","","2011-04-30 20:51:16 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I'll have to drop down to assembly to debug this one. This is exactly why I claim that a real dev understands *all* layers of abstraction."
|
||||
"64431296692240385","64430410817474560","53010195","","","2011-04-30 20:49:52 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@mraleph Doh, I meant `p` of course. thanks"
|
||||
"64428846723764225","","","64425378097266688","8038312","2011-04-30 20:40:08 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @izs: npm 1.0 is out.
|
||||
curl http://t.co/Fm0fyVj | sh
|
||||
|
||||
This will also clean up any 0.x cruft it finds.
|
||||
|
||||
Blog post forthcoming.","http://npmjs.org/install.sh"
|
||||
"64428600711069696","","","","","2011-04-30 20:39:10 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","C WTF: void a() { void *p = b(); } ... in b() the return value is 0x10020e130 as reported by printf, but x is assigned 0x20e130. ???"
|
||||
"64425776589701120","64423218370449408","16686076","","","2011-04-30 20:27:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@getify It would be useful for handful of geeks to target browsers via URL, but you have to extend URL format or add hacks to every browser"
|
||||
"64424500384641025","64423218370449408","16686076","","","2011-04-30 20:22:52 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@getify That just shifts the inconvenience of not being able to simply click a link from one person to the other."
|
||||
"64423526358196224","64422882662559744","16686076","","","2011-04-30 20:19:00 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@getify I think he means a malicious user would spam links around the net and target a specific browser with a known vuln."
|
||||
"64422074004946944","64421136015953920","16686076","","","2011-04-30 20:13:14 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@getify And if I want to see what it looks like in Firefox 5 alpha (or whatever) I can follow it anyway."
|
||||
"64420854863368192","64417532160909312","16686076","","","2011-04-30 20:08:23 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@getify The thought of people passing around browser specific links makes me cringe though."
|
||||
"64420657315852288","64417532160909312","16686076","","","2011-04-30 20:07:36 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@getify what's the value? If any browser wanted a scheme e.g. firefox:// they could just register themselves to handle such URLs with the OS"
|
||||
"64405955202383872","","","64397298414796801","676363","2011-04-30 19:09:10 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @brianleroux: Got the http://vanjs.no.de client running on iOS and Android. Not as quickly as it could've been..but faster than if yo ..."
|
||||
"64100216881676288","","","64092295980515328","159946057","2011-04-29 22:54:17 +0000","web","RT @awbjs: jsmirrors post 3: Combining Mirror Facets http://bit.ly/ivjVA8 #javascript #reflection"
|
||||
"64063055281131520","64061506337251328","53010195","","","2011-04-29 20:26:37 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@mraleph Interesting, thanks. Once again I'm amazed at how fast you act on this stuff :)"
|
||||
"64060589240098816","64059474113077248","53010195","","","2011-04-29 20:16:49 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@mraleph Ahh, that sheds some light for me. So essentially the props of the wrapper and the wrapped string are combined?"
|
||||
"64059649451765761","64057437388414976","53010195","","","2011-04-29 20:13:05 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@mraleph Yup that's right. I just filed issue 1353: https://code.google.com/p/v8/issues/detail?id=1353 Glad to help in any way if I can."
|
||||
"64052563271630848","","","","","2011-04-29 19:44:55 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Weird JavaScript bug in v8's generic methods: https://gist.github.com/948901 (article on generic methods: http://j.mp/mMFEWX%0A)"
|
||||
"64051050222600192","","","64046758556205057","14052205","2011-04-29 19:38:55 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @skylerslade: seeking/scrubbing coming soon to the @Grooveshark #android app ..."
|
||||
"64038964008452096","63950666820894720","6927562","","","2011-04-29 18:50:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@thomasfuchs es5-shim and http://ejohn.org/blog/javascript-micro-templating/"
|
||||
"64026238955692033","","","","","2011-04-29 18:00:19 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","OH: ""Cats out of the closet"""
|
||||
"64014551271735296","","","","","2011-04-29 17:13:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Fun in node's repl: 'what?'.indexOf)( '?' ... yup, that works. Expressions must get wrapped in parens on the way to eval."
|
||||
"64006955626274816","","","63997342596087808","88751152","2011-04-29 16:43:42 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @pcwalton: Rust is self-hosting!"
|
||||
"64000531009511424","63989875975782400","14939200","","","2011-04-29 16:18:10 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@seancribbs No argument there."
|
||||
"63988474222608385","63986637134241792","780561","","","2011-04-29 15:30:15 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@technoweenie @seancribbs Kind of daunting, just have to start small. Could start by porting https://github.com/tautologistics/nodemachine"
|
||||
"63726265340928001","","","","","2011-04-28 22:08:20 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Finally got to see the eagle catch a fish! I've been waiting 8 months for that, and it was awesome."
|
||||
"63535942660669440","","815114","","","2011-04-28 09:32:03 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@jedschmidt @miksago Sorry scratch that, I ran the wrong benchmark in Opera. However it is way faster at Node1."
|
||||
"63535456301760512","63533892342251521","815114","","","2011-04-28 09:30:07 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@jedschmidt @miksago Sounds plausible to me. Interestingly in Opera 11 all 3 types of prop assignment are roughly == and dom-tree is closer"
|
||||
"63532892625698816","63532544477495296","14063149","","","2011-04-28 09:19:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@miksago @jedschmidt Implicit coercion carries a heftier penalty than I thought."
|
||||
"63532729169489920","63532209793011712","4777951","","","2011-04-28 09:19:17 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@_sjs @miksago @jedschmidt Holy shit! Safari is also crazy fast with the dot assignment."
|
||||
"63532209793011712","63522047669714944","14063149","","","2011-04-28 09:17:13 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@miksago @jedschmidt Looks like assignment using a number is slower than using a string as well. http://jsperf.com/property-assignment"
|
||||
"63525183524315136","","","","","2011-04-28 08:49:18 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","(your) information wants to be free: http://benlog.com/articles/2011/04/28/your-information-wants-to-be-free/ (by @benadida)"
|
||||
"63493620744994816","63489454563786752","894911","","","2011-04-28 06:43:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Thanks, and it has been fun! Been a couple years since I've written much C and there's more typing involved than I remembered."
|
||||
"63485434478608384","","","63368155631849472","159946057","2011-04-28 06:11:21 +0000","web","RT @awbjs: New post: introspection using jsmirrors http://bit.ly/lUtJPv #javascript #reflection"
|
||||
"63485423485337600","","","62656060384739328","159946057","2011-04-28 06:11:19 +0000","web","RT @awbjs: Lastest post: Experimenting with Mirrors for JavaScript. http://bit.ly/ehbMcG #javascript #ecmascript"
|
||||
"63485380414013441","","","","","2011-04-28 06:11:08 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Here's nice example of prototypal inheritance in JavaScript by @awbjs https://github.com/allenwb/jsmirrors/blob/master/mirrors.js"
|
||||
"63481810612535297","63481362958655489","894911","","","2011-04-28 05:56:57 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Boo. Sorry that's all I've got."
|
||||
"63481034796318720","63469121110683649","894911","","","2011-04-28 05:53:52 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Maybe try Save As in Preview, then choose the Quart filter Reduce File Size. Not sure if that'll convert them though."
|
||||
"63338857638264832","","","","","2011-04-27 20:28:55 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Not taking responsibility is slimy and should rightly be criticized, but no one gets bonus points in my book just for owning up."
|
||||
"63338419178323968","","","","","2011-04-27 20:27:10 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I don't understand praising companies that take responsibility for the AWS outage. If I colo a server & the DC burns it's still my outage."
|
||||
"63305699312152576","","","63236999959674880","55648990","2011-04-27 18:17:09 +0000","web","RT @danielbmarkham: OH ""when you don't create things, you become defined by your tastes rather than ability. your tastes only narrow & e ..."
|
||||
"62793597224878080","","","","","2011-04-26 08:22:14 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","No fair, there was a Second Great Awakening http://j.mp/g8S8gC%0A but we haven't had a Second Age of Enlightenment yet http://j.mp/gR9MuT%0A"
|
||||
"62689026796306432","","","","","2011-04-26 01:26:43 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","""A Real Developer can reason about what is happening, from the UI or API right down to bits in registers."" http://j.mp/ifui8C%0A"
|
||||
"62603344241360896","","","62602623047565312","87274687","2011-04-25 19:46:15 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @rektide: one of the great ones begins, harmony proxies in v8: http://code.google.com/p/v8/source/detail?r=7630"
|
||||
"62582340970487808","","","","","2011-04-25 18:22:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Using JavaScript proxies we can make objects that return bound methods instead of unbound methods, e.g. foo = obj.foo; foo() // this == obj"
|
||||
"59320551222681600","","","","","2011-04-16 18:21:36 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","Current status: http://twitpic.com/4lnutd"
|
||||
"58571698764660736","","","","","2011-04-14 16:45:55 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Current status: http://twitpic.com/4kso2o"
|
||||
"58245564193701888","58244504792219648","894911","","","2011-04-13 19:09:59 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Never too late to start ;-)"
|
||||
"57340085066141696","","","","","2011-04-11 07:11:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","The more I learn about Go the more I like it. Some of the syntax is funky but it's quite expressive."
|
||||
"55800519196819456","","","","","2011-04-07 01:14:15 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Mono for Android looks great. It'd be nice to shed the Java straight jacket. Sometimes you gotta take off your pants and jacket."
|
||||
"55463657806639104","","","55379415969959937","277576227","2011-04-06 02:55:41 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","RT @1990sPythonUser: And all you new fangled Async frameworks? Twisted did it 25 years ago, glad you just got the deferred."
|
||||
"54296239126216705","54288200331558914","136077128","","","2011-04-02 21:36:46 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@kitgoncharov but it's interesting, you have clean out the cruft eventually."
|
||||
"54296076060073984","54288200331558914","136077128","","","2011-04-02 21:36:07 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@kitgoncharov no one @google.com has endorsed it so far. I don't think they'll remove it unless JSC does."
|
||||
"54278017274490881","","","","","2011-04-02 20:24:22 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","David Cross is hilarious in Running Wilde http://www.imdb.com/title/tt1615926/"
|
||||
"54267342183596032","","","","","2011-04-02 19:41:57 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","V8 issue 1300: Remove __defineGetter__ and __defineSetter__ http://code.google.com/p/v8/issues/detail?id=1300"
|
||||
"54032317156573184","","4216361","","","2011-04-02 04:08:02 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@dalmaer Some people are calling Mirah CoffeeScript for Java. It's very Ruby-ish, you might like it: http://www.mirah.org/"
|
||||
"54021431478071296","","","","","2011-04-02 03:24:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I wonder if anyone has stats on the # of domains that websites load JavaScript from. I happen to be at mostlymaths.net ... 18 domains ?_?"
|
||||
"53853934938374144","","","53853038066147329","2142731","2011-04-01 16:19:13 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @firefox: Tired of those April Fools' jokes and pranks? Tell websites you do not want to be fooled with ""Do Not Fool"" in Firefox. htt ..."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,188 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"75735742189547520","","","","","2011-06-01 01:29:42 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Domains are too easy to shout at the end of an infomercial. I preferred it when they had to recite a 1-800 number and mailing address, twice"
|
||||
"75599271348547585","75595037982998529","33493","","","2011-05-31 16:27:25 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@peterc Good advice, I need to try harder!"
|
||||
"75598820045635585","74167379806011393","18236716","","","2011-05-31 16:25:37 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@backblaze @ejel @stevelosh If my customers were asking for it I'd be less concerned with classifications and moreso with their needs."
|
||||
"75597207545458688","75561092310515713","636923","","","2011-05-31 16:19:13 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@siracusa Looks like you're out of luck with @backblaze: http://j.mp/lQ3zeD%0A http://j.mp/lJa8zw%0A"
|
||||
"75592114888654848","","","","","2011-05-31 15:58:59 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Oh great, more drama revolving around @zedshaw. Why are people so enamoured with this guy and the schoolyard BS that follows him?"
|
||||
"75495372016992256","75467410345443328","31151313","","","2011-05-31 09:34:33 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@kuvos cheers to you, thanks for another quiz!"
|
||||
"75412405907230720","","31151313","","","2011-05-31 04:04:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kuvos re: quiz # 49, 1 instanceof Number // => false. I *think* the reason it's true is because constructors coerce `this` to an object."
|
||||
"75404433906872320","","","","","2011-05-31 03:33:12 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I'm surprisingly hooked on the behaviour of Chrome's minimal status bar. Firefox's irritates me now even though it tries to be considerate."
|
||||
"75303934633312256","","","75299780405895169","8308952","2011-05-30 20:53:51 +0000","web","RT @madninja: Haven't had the time to shout out to @jimroepcke and @_sjs for their great work on HLDeferred! Excellent toolbox for async ..."
|
||||
"75289268867694592","","","","","2011-05-30 19:55:35 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","<3 @github you guys are just awesome"
|
||||
"75054361952264192","75049236093341696","22406953","","","2011-05-30 04:22:08 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@mahyarm Me neither. I'm going with it since that's what was there and for the most part it's fine. Distros are the same just different."
|
||||
"75024448083861504","75018317198393344","39448955","","","2011-05-30 02:23:16 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@amanduh86 Sorry was going off my memory I didn't look it up."
|
||||
"75013265779998720","75006173526507520","39448955","","","2011-05-30 01:38:50 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@amanduh86 It's a good one! Scott Tenorman Must Die, Season 5 Ep. 1"
|
||||
"75003596499988480","74994728252350464","39448955","","","2011-05-30 01:00:25 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@amanduh86 http://www.youtube.com/watch?v=Mo0WQ2L3OGo"
|
||||
"74963768135794690","74955458363932672","13447902","","","2011-05-29 22:22:09 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@copumpkin It's true, we've all read several articles on them but still don't know what they are ;)"
|
||||
"74923713866366976","","","","","2011-05-29 19:43:00 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I'm not used to adding 3rd party repos for what I consider common software. Not on servers anyway."
|
||||
"74923071470977024","","","","","2011-05-29 19:40:26 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Why do I get useful stuff like monit, git, rubygems, denyhosts, htop, and more from the EPEL repo on CentOS? Different from distros I know."
|
||||
"74697601554989056","","","","","2011-05-29 04:44:30 +0000","<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>","listening to Bathtub Gin by Phish on @Grooveshark: http://t.co/9pjiuHH #nowplaying","http://tinysong.com/jgFF"
|
||||
"74606050225029120","74604795524169728","15969274","","","2011-05-28 22:40:43 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@goldshan No that would be creepy. I don't know him personally I only read his blog and listen to his podcast :)"
|
||||
"74580746836246528","","","","","2011-05-28 21:00:10 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@ryah hyphens - fuck the shift key"
|
||||
"74579648691978240","74578009595715584","12599412","","","2011-05-28 20:55:48 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@lvdjgarcia lol, none yet but I actually am in the market for one so I'll check out @danbenjamin's since @siracusa gave it the thumbs up."
|
||||
"74575984774479872","","","","","2011-05-28 20:41:14 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Thanks to @marcoarment I have a ridiculous coffee grinder + AeroPress and am now listening to Phish. What can I say? The guy has good taste."
|
||||
"74571745092304896","74571027329466368","3374231","","","2011-05-28 20:24:24 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@mxcl Let me guess, it's /not/ a jumbo bendy 8"" black specialty cock..."
|
||||
"74564091703857153","74560790522363904","110465841","","","2011-05-28 19:53:59 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@maraksquires Haven't tried Blue Moon but Hoegaarden is pretty nice. Might get a little sweet after that much, not sure."
|
||||
"74542654465126401","","","","","2011-05-28 18:28:48 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","No Object.create in Opera 11. Colour me surprised."
|
||||
"74287535194513409","","","","","2011-05-28 01:35:03 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Actually going to give jade a shot. Can't be worse than mustache! :p"
|
||||
"74181626459979776","74175743785050112","734903","","","2011-05-27 18:34:12 +0000","web","@mjijackson Strongly disagree with my current experience, but very curious what made you say that. I want to try it out!"
|
||||
"74150250138443776","74148203683004416","887251","","","2011-05-27 16:29:31 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@ppk Is it Tegra2 based?"
|
||||
"74019769170403328","","","","","2011-05-27 07:51:02 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","#winning"
|
||||
"73779470301011968","","","73149687003226112","903351","2011-05-26 15:56:11 +0000","web","RT @elliottkember: The only people who tell you not to buy an SSD are the people who don't have one. Buy an SSD."
|
||||
"73779185881067520","73735420113981440","6490602","","","2011-05-26 15:55:03 +0000","web","@rmurphey Please RT good responses. I'm curious too! :)"
|
||||
"73777688661340160","","","73751667656495104","659933","2011-05-26 15:49:06 +0000","web","RT @bryanl: Want to piss off a dba? Explain to them how map reduce works."
|
||||
"73636957669949440","73634573371711488","894911","","","2011-05-26 06:29:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Good point. That's an explanation for Fusion supporting Coherence mode on Linux guests (Gnome on a few popular distros)."
|
||||
"73632694956855296","73631720913649664","894911","","","2011-05-26 06:12:57 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke True. There's the argument that OS X is Parallels' sole focus but that doesn't seem to be a true advantage. VMWare is huge."
|
||||
"73632332040503297","","","","","2011-05-26 06:11:30 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Not much to say about Fusion and I like that. I don't want to notice it at all. That sounds like a great VM to me."
|
||||
"73631289797914625","","","","","2011-05-26 06:07:22 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Parallels' trial nags on VM startup / resume and disables features. It wasn't a deciding factor but both of those rubbed me the wrong way."
|
||||
"73630444238798848","","","","","2011-05-26 06:04:00 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Parallels snapshot manager needs work and their UI in general is gaudy. If they scaled the effects back they could be tasteful and useful."
|
||||
"73629848802836480","","","","","2011-05-26 06:01:38 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Going with Fusion for reliability and (imo) superior snapshotting. Neither of those is worth a bit of performance or extra UI integration."
|
||||
"73628467249418240","73622308182433792","894911","","","2011-05-26 05:56:09 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Parallels has better UI integration. I don't care for most of it, if Fusion's was just a little better I'd have already bought."
|
||||
"73627925412450304","73622308182433792","894911","","","2011-05-26 05:54:00 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Good to know. Mostly testing in IE, so also simple. Parallels is a bit faster in casual tests but the UI is gaudy."
|
||||
"73620824833277952","","","","","2011-05-26 05:25:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Can't decide between Parallels and Fusion, any thoughts or experiences? Reliability is my highest priority."
|
||||
"73506725428346880","","","73504159726448640","29777587","2011-05-25 21:52:23 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @pharkmillups: I just interviewed @_sjs for new series on basho blog: short convos w/ community members to talk Riak & other tech. wa ..."
|
||||
"73323356967026688","","","","","2011-05-25 09:43:45 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Best one yet by far http://i.imgur.com/ig5kA.png"
|
||||
"73188376068628480","73175789276893184","102550526","","","2011-05-25 00:47:23 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@gnachman if you want to take this beyond twitter just let me know where"
|
||||
"73187587380088832","73175789276893184","102550526","","","2011-05-25 00:44:15 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@gnachman havent filed an issue because testing on a clean user account there is no problem. Blowing away plist prefs didn't help either."
|
||||
"73187164745240576","73175789276893184","102550526","","","2011-05-25 00:42:34 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@gnachman TextMate's command line tool for editing files. The problem seems to lie with TM re-activating iTerm when done."
|
||||
"73142291325386752","","","73114982933471232","14864447","2011-05-24 21:44:15 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @bryan_kyle: @_sjs ""Never mock synergy"" - Jack Donaghy"
|
||||
"73114280907636736","73111982236110848","14864447","","","2011-05-24 19:52:57 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle People won't even be able to comprehend the synergy."
|
||||
"73107434562007041","","","73107211563433984","16031975","2011-05-24 19:25:45 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","RT @b6n: Early customers are as important as early hires. Recruit both carefully!"
|
||||
"73096317299208193","","","","","2011-05-24 18:41:34 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","""Transform your SEO int a ROI-Driven Marketing Channel"", or ""herp de derp, tee tum tee teedly derp de dum"""
|
||||
"73093352496709632","73091861924941824","136077128","","","2011-05-24 18:29:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov That is, it's Infuriating and confusing that they are presented as folders but they don't *behave* like folders."
|
||||
"73093038456569856","73091861924941824","136077128","","","2011-05-24 18:28:33 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov It's so infuriating and confusing to present them as folders. How they have survived for 10 years is beyond me."
|
||||
"73089045869240322","73085899235274752","1235521","","","2011-05-24 18:12:41 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@timbray I hope not, I install things to ~/Applications and don't want apps to simply choose to install elsewhere."
|
||||
"73086276882006016","","","","","2011-05-24 18:01:40 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Oh, hello Windows ""zip folder"". I missed being tricked into thinking you were a regular folder. What a horrible UI."
|
||||
"72822749122408448","","31151313","","","2011-05-24 00:34:31 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kuvos is there an error in questions 43 - 45? It seems like the answer should be the result of the last statement, a's value is obvious."
|
||||
"72816198307422208","","","","","2011-05-24 00:08:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Another awesome JavaScript quiz from @kuvos http://qfox.nl/weblog/233"
|
||||
"72398798864908288","","","","","2011-05-22 20:29:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Today I learned that JSON doesn't allow escaping any char with a backslash. How many times have I read json.org and not picked up on that?"
|
||||
"72196808130035712","72109123939991552","136077128","","","2011-05-22 07:07:15 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov I ended up just reverting to an old alpha build of iTerm. Not worth sinking much time into it."
|
||||
"72116205942611968","72115211032727552","29255412","","","2011-05-22 01:46:58 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@tjholowaychuk me too but then I subscribed again, ha"
|
||||
"72115512288608256","72112377528717312","29255412","","","2011-05-22 01:44:12 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@tjholowaychuk It gets tiring really quickly. It's also really hard to find a good syntax for anything new. I dislike ()->{}, {||} and #(){}"
|
||||
"72114934158327808","72112377528717312","29255412","","","2011-05-22 01:41:54 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@tjholowaychuk There are big problems. JS needs fixing and it's impossible for everyone to be happy w/ fixes. Seen -> stuff on es-discuss?"
|
||||
"72108277248434176","72102639944474624","136077128","","","2011-05-22 01:15:27 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov Could be my shell config, I'll have to do a binary search of my environment. blurgh. Trashing prefs didn't help."
|
||||
"72101768951111680","","136077128","","","2011-05-22 00:49:35 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov The weird thing is that it behaves normally when logged in as a test user account. Some config of mine is broken somewhere."
|
||||
"72100485712195584","72098559104794625","136077128","","","2011-05-22 00:44:30 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov ah, no re-activate. iTerm recently added an option to run a 2nd instance for Visor. Maybe that's involved here."
|
||||
"72100254857691137","72098559104794625","136077128","","","2011-05-22 00:43:34 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov both behave the same, I don't return to iTerm but no 2nd iTerm is opened! I'll have to read the man page I guess. Thanks :)"
|
||||
"72099897523970048","72096741641560064","29777587","","","2011-05-22 00:42:09 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@pharkmillups sami@samhuri.net"
|
||||
"72094219266822144","72091821072842752","136077128","","","2011-05-22 00:19:35 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov iTerm2 opens TM, when I close the file instead of returning to iTerm another instance of iTerm opens, 2nd dock icon."
|
||||
"72091333648596992","","","","","2011-05-22 00:08:07 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","lazywebz: Anything I can try before trashing preferences?"
|
||||
"72091085266104320","","","","","2011-05-22 00:07:08 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","`mate -w` in iTerm2 is broken, and it's my config. Clean test account behaves properly. After closing the file 2nd iTerm instance opens ?_?"
|
||||
"72077079331614720","","","","","2011-05-21 23:11:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Ignoring problems won't make them go away. If you don't like a proposal at least try to understand the motivation behind it."
|
||||
"72076887932944384","","","","","2011-05-21 23:10:43 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","The resistance to change exhibited by some JSers is worrying. No suggestions on how to fix real problems, they just dismiss all new ideas."
|
||||
"72076849802518528","72075855920242688","136077128","","","2011-05-21 23:10:34 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov @_sjs @voodootikigod lol, I have Friedl's book on hand just in case that day ever comes."
|
||||
"72074335631839232","72071180563136512","637763","","","2011-05-21 23:00:35 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@voodootikigod Reminds me of http://j.mp/itgQA7%0A but I can't think of a punchline. Maybe something about look-around or back references."
|
||||
"72068994739339264","72066960489316352","894911","","","2011-05-21 22:39:21 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Oh man! That must have been terrible :( I'd freak out."
|
||||
"72068779072425984","","","","","2011-05-21 22:38:30 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I shouldn't forget to do things like eat meals. Being a hacker is a kind of disability, have to learn to cope with your disadvantages."
|
||||
"72064156165079040","","","","","2011-05-21 22:20:08 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Just added a config command to @NodeKohai https://github.com/samsonjs/kohai/commit/5309c5c5e45e8a4c07ca72b377919a83db6c22be"
|
||||
"72038629966495744","","","","","2011-05-21 20:38:42 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Configs are all JSON, data is exchanged in JSON, I store JSON in Riak and use JavaScript to map-reduce it. JS is everywhere."
|
||||
"72038174376984576","","","","","2011-05-21 20:36:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Whether I'm hacking on a browser extension, server, webpage, or irc bot it's all JavaScript these days."
|
||||
"72034991713943552","","","72033452106579970","713263","2011-05-21 20:24:15 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @defunkt: for those who enjoy js golfing: https://github.com/jed/140bytes/wiki/Byte-saving-techniques"
|
||||
"72032046603706368","","","72003463709597696","29032962","2011-05-21 20:12:32 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @CP442: If you can't think of a #rapture joke...don't worry. It's not the end of the world"
|
||||
"72019756919689216","","","","","2011-05-21 19:23:42 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Frustrated trying complex things in the #nodejs repl? Look at http://github.com/samsonjs/repl-edit New version can extend a running repl."
|
||||
"71809957066047488","71808111593259008","8038312","","","2011-05-21 05:30:02 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@izs Is it the syntax, semantics, or both? Some of the behaviour seems desirable to me."
|
||||
"71800551238672384","","","","","2011-05-21 04:52:40 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Getting the hang of this Aeropress thing. Digging it."
|
||||
"71772098317647872","71768738684346370","9533042","","","2011-05-21 02:59:36 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@BrendanEich Close, Scarface ;-) Maybe I should start reading es-discuss again, I got bored of all the -> talk and took a break."
|
||||
"71767917976498176","71755435455152129","9533042","","","2011-05-21 02:42:59 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@BrendanEich And finally, I prefer the simpler semantics of the lambda revival to the skinny/fat arrow business. We'll always have function."
|
||||
"71766803906428928","71755435455152129","9533042","","","2011-05-21 02:38:34 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@BrendanEich I'd have to actually use the arrow syntax to know if I prefer it or not so the jury is out on that for me."
|
||||
"71766287629553664","71755435455152129","9533042","","","2011-05-21 02:36:30 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@BrendanEich Could take or leave the syntax, can't think of anything better given the constraints. I type Dvorak, touch easier w/ Qwerty."
|
||||
"71765953028947968","71755435455152129","9533042","","","2011-05-21 02:35:11 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@BrendanEich Lots to like. Lightweight lambda w/ no return, fixes self = this / bind, plays nice w/ control flow. http://twitpic.com/50bpjo"
|
||||
"71739607246569472","71739045755092992","9533042","","","2011-05-21 00:50:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@BrendanEich Ha, ok I thought it didn't add up somehow."
|
||||
"71738084479344640","","9533042","","","2011-05-21 00:44:26 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@BrendanEich re: lambda revival, is it supposed to be `let o = {m: this_in_block()};`?"
|
||||
"71728859174813696","","","","","2011-05-21 00:07:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Thunderbolt eliminates the need for massive ExpressCard slots on MacBooks."
|
||||
"71726698386825218","","9533042","","","2011-05-20 23:59:12 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@BrendanEich [Rubyists are] just Smalltalkers who use an ugly syntax (via @awbjs) -- ouch! the truth hurts :)"
|
||||
"71711086688210944","","","71710438156533761","637763","2011-05-20 22:57:10 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","RT @voodootikigod: A minute with brendan is back: http://www.aminutewithbrendan.com/pages/20110520"
|
||||
"71692737191231488","","","71691078172033024","1671811","2011-05-20 21:44:15 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @paul_irish: Small userscript to clean the ugly ?utm_source param junk from URLs on load via HTML5 History api: https://gist.github.c ..."
|
||||
"71685182792536064","71678893823770624","39448955","","","2011-05-20 21:14:14 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@amanduh86 lol, I'm a little worried about how much attention you pay to my twitter account ;)"
|
||||
"71660215426224128","","","","","2011-05-20 19:35:01 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","#winning"
|
||||
"71601140441169920","","","71600304117907456","8710132","2011-05-20 15:40:16 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @bmf: Another tourist to the Netherlands mauled after accidentally ordering a ""beer."" #BilingualJokes"
|
||||
"71600974430609408","71600124442324993","676363","","","2011-05-20 15:39:37 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@brianleroux na zdrowie!"
|
||||
"71600694171418624","71570168169508864","39448955","","","2011-05-20 15:38:30 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@amanduh86 1 more :p ... can't stop"
|
||||
"71260492118765568","","","","","2011-05-19 17:06:39 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","A build folder you're not supposed to trash? ?_?"
|
||||
"71080810962354176","","","","","2011-05-19 05:12:40 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","hmmm, might be passing the itch-scratching stage into the needs-some-tests stage."
|
||||
"71064836188020736","71056690392481792","62074674","","","2011-05-19 04:09:11 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@pleasantdemise @wavded Mostly, though I'm heretical and on some projects I omit semicolons."
|
||||
"71064429004996608","71060633143087104","29255412","","","2011-05-19 04:07:34 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@tjholowaychuk Yup, it must have just enough right. It really is scheme-ish at heart and I'm a sucker for lisp."
|
||||
"71063904511475712","71060083898982400","778332","","","2011-05-19 04:05:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@mde Ain't that the truth, there's no panacea."
|
||||
"71063752656695296","","","71060083898982400","778332","2011-05-19 04:04:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @mde: @_sjs Any language you actually use for things is terrible on various levels."
|
||||
"70977331665174528","","","","","2011-05-18 22:21:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","JavaScript is such a terrible language, riddled with inconsistencies and nonsensical behaviour. Yet for some reason I still enjoy it."
|
||||
"70933081216921600","","","","","2011-05-18 19:25:39 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Sneaking #nodejs into every project I can. I really enjoy writing JavaScript."
|
||||
"70744336022777856","","","","","2011-05-18 06:55:38 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Current status: bedtime http://i.imgur.com/T9jXt.png"
|
||||
"70740404730986496","70735458203738112","223741798","","","2011-05-18 06:40:01 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@__DavidFlanagan If you don't use right alt/option maybe map that to control with doublecommand http://doublecommand.sourceforge.net/"
|
||||
"70732165893193730","70730445133848576","223741798","","","2011-05-18 06:07:17 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@__DavidFlanagan I've never been able to use right modifiers, this is all I need. http://twitpic.com/4z53c2 (Left pinky is expendable ;-)"
|
||||
"70661948768915456","70659548150640640","20079975","","","2011-05-18 01:28:16 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@polotek Just to keep people guessing I switch between semis/no-semis depending on the project. Finally gave in to 2-space indent."
|
||||
"70613291298324481","70611596191342593","136077128","","","2011-05-17 22:14:55 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov In this case my inputs are well specified and guaranteed to fit in 32 bits, but Math.floor is nice and explicit anyway."
|
||||
"70612890264141824","70611596191342593","136077128","","","2011-05-17 22:13:19 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov Yeah it should work for any bitwise ops that are effectively noops (on the int), e.g. x >> 0"
|
||||
"70612759976488960","70610717224607744","136077128","","","2011-05-17 22:12:48 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kitgoncharov Nice bit of golf there :)"
|
||||
"70609165755756545","","","","","2011-05-17 21:58:31 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","What's the best way to drop the 4 last digits from a number > 10000 in JavaScript? I currently have this: Math.floor(x / 10000) //x is whole"
|
||||
"70527578259210240","70503130382610432","39448955","","","2011-05-17 16:34:19 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@amanduh86 programmers are a strange lot..."
|
||||
"70494853120802816","70471964296351744","39448955","","","2011-05-17 14:24:17 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@amanduh86 https://secure.wikimedia.org/wiktionary/en/wiki/yak_shaving"
|
||||
"70379798496681984","","","","","2011-05-17 06:47:06 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Sometimes I feel silly shuffling articles from Google Reader to Instapaper but hey. I do it because Instapaper waits politely. No red badge."
|
||||
"70377581244977152","","","","","2011-05-17 06:38:17 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Tonight I sleep on a pile of yak hair!"
|
||||
"70369212652204032","","","70368332569780224","15534471","2011-05-17 06:05:02 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @cramforce: Some more info on the JS x86 VM running Linux http://bellard.org/jslinux/tech.html"
|
||||
"70369175582941184","","","70366124872695808","143883","2011-05-17 06:04:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @sogrady: you can now emulate x86 in JavaScript. for serious (via @jdub & @bcantrill). Bellard also did FFmpeg, QEMU and Tiny C: http ..."
|
||||
"69921517714153473","","","69919693791703040","6927562","2011-05-16 00:26:03 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @thomasfuchs: Dear people on twitter, use the reply button to reply to tweets."
|
||||
"69921300738613249","69913543276888064","13861042","","","2011-05-16 00:25:11 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@jcoglan @peterc Dropbox or any online backup service. Load up your notebook for the trip, arrive and open notebook, backup starts..."
|
||||
"69905205306728450","","","","","2011-05-15 23:21:14 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Can be portable + dock, or just a @Grooveshark speaker. Either way is fine with me."
|
||||
"69905108737073152","","","","","2011-05-15 23:20:51 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Idea: portable and/or docked @Grooveshark player, like an iPod shuffle or nano and a speaker dock. If you make this I promise to buy two."
|
||||
"69868985704919040","","","69814956157186048","15534471","2011-05-15 20:57:18 +0000","web","RT @cramforce: How to make WIFI work at tech conferences http://j.mp/mtPzwl"
|
||||
"69616777734275072","","","","","2011-05-15 04:15:07 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I know it's bollocks, but hey http://twitpic.com/4xtvoz /cc @Grooveshark"
|
||||
"69571840019939328","","","","","2011-05-15 01:16:33 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","MIT license ftw http://twitpic.com/4xr81d"
|
||||
"69569326709080064","","","","","2011-05-15 01:06:34 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I just released NorthWatcher, it's basically cron for filesystem changes. Feedback welcome! https://github.com/samsonjs/NorthWatcher"
|
||||
"69226325180817409","","","","","2011-05-14 02:23:36 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Does @mint send balances at 7pm Friday on purpose?"
|
||||
"69096123024945152","","","","","2011-05-13 17:46:14 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Appcelerator Titanium is a promising project. The API is terrible but they know it and are fixing it. Needs less hand holding."
|
||||
"68550764565499904","","","","","2011-05-12 05:39:10 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","14-15 years if you are curious."
|
||||
"68550474831372289","","","","","2011-05-12 05:38:01 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I've known HTML for exactly half of my life and until recently that has always been the exact same version (in practice, officially ~10yrs)."
|
||||
"68200515812589568","","","","","2011-05-11 06:27:24 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I'll be out of a tent and onto a mattress by Thursday night! Now all I need is a bed. And a couch."
|
||||
"68198599766446080","","","68191134710644736","1045541","2011-05-11 06:19:47 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","RT @limi: Checked status.twitter.com to see if Twitter had issues. It's hosted on Tumblr, which is down. Tumblr lists their service stat ..."
|
||||
"68032104222560256","67350470389272576","20826421","","","2011-05-10 19:18:12 +0000","web","@wavded And here it is: https://github.com/heavylifters/deferred-js happy async coding!"
|
||||
"68023632751886337","68021255340699648","894911","","","2011-05-10 18:44:32 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke That's a surprise! Very cool."
|
||||
"68023422629842944","","","68011171441152000","894911","2011-05-10 18:43:42 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @JimRoepcke: Last night @_sjs released HeavyLifters' Deferred implementation for JavaScript. It works in #nodejs and browsers. http:/ ..."
|
||||
"67771654511665152","","","67769177615761408","102550526","2011-05-10 02:03:16 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","RT @gnachman: @_sjs Good idea! Hey @1password let me know if you're interested in integrating with iTerm2."
|
||||
"67717715640598528","","","","","2011-05-09 22:28:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Days like today I wonder what I would do without 1password. If only there was some kind of iTerm integration."
|
||||
"67351997774442496","67350470389272576","20826421","","","2011-05-08 22:15:42 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@wavded We ported Twisted's Deferred class (and DeferredList) to JavaScript at HeavyLifters. We really need to open source that..."
|
||||
"67349117453611008","67345460301541377","63803","","","2011-05-08 22:04:15 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@sh1mmer I have *had* it with these motherfucking streams on this motherfucking plane!"
|
||||
"67348857796820992","","","67348342476259328","3806441","2011-05-08 22:03:13 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @Grooveshark: Ladies and Gentlemen, we're about to hit 10 million registered users! Count down with us at: http://www.ustream.tv/chan ..."
|
||||
"67348815459528704","","","","","2011-05-08 22:03:03 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Nigerian scammers have *already* compensated me for ""past experience had with Nigerian scammers"", lol http://twitpic.com/4v9cgt"
|
||||
"67036172907589632","","","67020587352064000","2911221","2011-05-08 01:20:43 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","RT @wilshipley: What should the punishment be for people who add custom control-key handling to web forms and replace Emacs key bindings ..."
|
||||
"66750394180698113","","","","","2011-05-07 06:25:08 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I don't know if I'd actually use it but it has potential to be interesting. Ideally you'd probably end up with something like Xmonad anyway."
|
||||
"66750074667020288","","","","","2011-05-07 06:23:52 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","This guy has fully inverted the concept of an X11 window manager. Awesome, haven't seen that before! https://github.com/patrickhaller/no-wm"
|
||||
"66746258429190144","","","","","2011-05-07 06:08:42 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Now I just need Apple to add tabs to Quartz ;-) ... or back to Linux (unlikely for now)"
|
||||
"66745921039380480","","","","","2011-05-07 06:07:22 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Fluxbox and other window managers w/ tabs have it right. Firefox's Panorama and Chrome's experimental Tabspose are conceptual madness."
|
||||
"66366368085319682","66363293190721536","29255412","","","2011-05-06 04:59:09 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@tjholowaychuk no argument there!"
|
||||
"66361431624396801","66358017544826880","29255412","","","2011-05-06 04:39:32 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@tjholowaychuk @BrendanEich @naholyr by which I meant breaking existing code. New code is obviously not compatible with old implementations."
|
||||
"66360914592534528","66358017544826880","29255412","","","2011-05-06 04:37:29 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@tjholowaychuk @BrendanEich @naholyr new syntax can be a nice way to fix behaviour without making backwards incompatible changes."
|
||||
"66360482755387392","","","","","2011-05-06 04:35:46 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","Home sweet home! If I never move again I'll be happy."
|
||||
"66268493800148992","","","","","2011-05-05 22:30:14 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Excited to move but man am I going to miss this http://twitpic.com/4tv462"
|
||||
"65964146251923458","","","","","2011-05-05 02:20:52 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","Nice to know where I'm moving, i can order books and what not now!"
|
||||
"65908048983633920","","","65906157679673344","15431118","2011-05-04 22:37:58 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @souders: To get page load times from Google Analytics you have to add one line: _gaq.push(['_trackPageLoadTime']); - http://bit.ly/j ..."
|
||||
"65861424999710720","65853638664396800","471323","","","2011-05-04 19:32:42 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@foresmac That makes me feel slightly better about CAD$60/mo for 25/2.5 ... slightly. We need some change in North America :/"
|
||||
"65838640558915584","65836333159030784","117668566","","","2011-05-04 18:02:09 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@TELUSsupport Seriously? Thanks! Please pass on the word to your website team, this text is confusingly placed: http://twitpic.com/4tcip1"
|
||||
"65832751533797377","65826053557456896","117668566","","","2011-05-04 17:38:45 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@TELUSsupport Thanks but I find TV unbearable and will never want to subscribe. I think it's a shame the services are bound to each other."
|
||||
"65824455477313536","","","","","2011-05-04 17:05:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","FYI: @telus @telussupport I've had Telus' Optik Internet and it's awesome, but I'll be going with Shaw because I don't want TV."
|
||||
"65822992806064129","","","","","2011-05-04 16:59:59 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Please don't make us say ""object used as a class"" in JavaScript. It's understood that's what we mean by ""class"" in JavaScript... right?"
|
||||
"65821774977302529","65815490848768001","11973362","","","2011-05-04 16:55:08 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@typeoneerror Indeed, I put keywords at the beginning of a line and I'm sure many people would hate it. https://gist.github.com/955562"
|
||||
"65814829713195008","65813318824239104","11973362","","","2011-05-04 16:27:32 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@typeoneerror Ugh, that's GNU style. I think Linus sums it up well in the intro here: http://www.kernel.org/doc/Documentation/CodingStyle"
|
||||
"65812582069567489","","","","","2011-05-04 16:18:36 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","The form has no email field, yet ""invalid email address format"" AND ""invalid format for email address"". Whoever made this is incompetent."
|
||||
"65666786439335936","65562861346357248","14864447","","","2011-05-04 06:39:16 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle If you pushed a repo to publish I bet it would sell."
|
||||
"65591838685413376","","","65570507931648000","197721167","2011-05-04 01:41:27 +0000","<a href=""http://seesmic.com/seesmic_mobile/iphone/"" rel=""nofollow"">Seesmic for iPhone</a>","RT @KaKaRoToKS: @zedshaw @comex lol, it is retarded. It's no different than a goto, only uglier.. just never use a goto to go above your ..."
|
||||
"65253486027227136","65250623309877249","894911","","","2011-05-03 03:16:58 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@JimRoepcke indeed. I'm not even sure that would've been a dealbreaker but I was tired by then."
|
||||
"65250309722738688","65230560523591680","894911","","","2011-05-03 03:04:20 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@JimRoepcke I was worried about the lease starting on the 5th but they didn't even look at the date XD"
|
||||
"65226240990265344","","","","","2011-05-03 01:28:42 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","Done and done! Time to vote."
|
||||
"65165350995640320","65164500231405569","894911","","","2011-05-02 21:26:45 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Er, Nanaimo-Cowichan district. Apparently the Shawnigan Lake Community Centre."
|
||||
"65163132754083840","65162293448687616","894911","","","2011-05-02 21:17:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke If you're travelling or otherwise can't vote at the correct station apparently you have to mail in earlier :/"
|
||||
"65162947613294593","65162293448687616","894911","","","2011-05-02 21:17:12 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke V0R 2W1"
|
||||
"65162124753772544","65160752234897410","894911","","","2011-05-02 21:13:55 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Apparently I have to go to Nanaimo since that's where Shawnigan residents have to vote."
|
||||
"65160409002418176","65150309130960896","894911","","","2011-05-02 21:07:06 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Just denied my right to vote because I'm not in some precise geographical location. Bureaucratic bullshit FTL."
|
||||
"65159992428347392","65144102362152960","14864447","","","2011-05-02 21:05:27 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle Ah, surgery due to shotgun wound. Nice, I like that."
|
||||
"65142727100219392","","","65110836884160513","894911","2011-05-02 19:56:51 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @JimRoepcke: CANADA, GO VOTE! Remember ""The Harper Government"": Contempt, Prorogue, Prisons, F35, G20, Kyoto, Census, muzzled scienti ..."
|
||||
"65142634863276032","64073004426072064","14864447","","","2011-05-02 19:56:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle Forgot to reply to this, haven't heard the term before. Is it surgery by shotgun, i.e. just blowing it away with no regard?"
|
||||
"65133500495437824","65132105948086272","14864447","","","2011-05-02 19:20:11 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle thanks! I start at Beta Street Media next week. It's a new company and we don't have a website yet, might be my first task."
|
||||
"65130981341925376","","","","","2011-05-02 19:10:10 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Best Monday ever! Locked down some downtown Victoria living space and formally accepted the new job. Not even the weather can bring me down."
|
||||
"65076776119971842","","","","","2011-05-02 15:34:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Replying to old tweets. Like a boss."
|
||||
"65076651742085120","64908481987219456","16686076","","","2011-05-02 15:34:17 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@getify @sh1mmer Of course Obama had no choice but to claim to be a devout believer to have a hope of being elected. Not convinced."
|
||||
"65076434053513216","","","64902813263736833","16655768","2011-05-02 15:33:25 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @gteehan: Found out about 9/11 on radio & TV. Found out about Bin Laden on Twitter."
|
||||
"64869350103982082","","","","","2011-05-02 01:50:32 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I give in, I'm just going to catch up on all past episodes of #HyperCritical since I'm already on that trajectory http://j.mp/jfOfLN%0A"
|
||||
"64730641278832640","","","64723904308051969","12591","2011-05-01 16:39:22 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @snookca: Font sizing with rem http://snk.ms/i That is not a typo: rem!"
|
||||
"64730484843888640","","","64669904690888704","14148574","2011-05-01 16:38:44 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @vivsharma: Common fallacies in reason: http://t.co/Qxyr2AQ","http://commfaculty.fullerton.edu/rgass/fallacy3211.htm"
|
||||
"64729051167862785","64710196500500481","7206052","","","2011-05-01 16:33:03 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@dizzyd While iOS is polished and stable I don't like how it feels like Apple's phone, not mine. I still recommend iPhone to friends&family."
|
||||
"64728161371422720","64710196500500481","7206052","","","2011-05-01 16:29:30 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@dizzyd Been using a Nexus One since January. It's good but iOS has a far better keyboard (yes better than Swype) and less bugs than 2.3."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,83 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"86587553888739328","86586578746605568","12510462","","","2011-07-01 00:10:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@ischi We'll see how this pans out in the long run, might end up shooting myself in the foot if my Info.plist gets stale."
|
||||
"86587282236243968","86586578746605568","12510462","","","2011-07-01 00:09:51 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@ischi I found a workaround on the web, build the project then copy build/.../Info.plist into your project. Ti will pick it up from then on."
|
||||
"86586118249787392","","","","","2011-07-01 00:05:13 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","titanium y u no add my ipad icon?! they say a bad dev blames his tools, there's a big assumption there that the tools are always good."
|
||||
"86498020102914049","86493427272921088","14864447","","","2011-06-30 18:15:09 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle Yup. Right now I have none ""free"" but 2.2 GB inactive. If I made a point of closing apps not in use I could trim that down."
|
||||
"86492633450549248","86486335958958080","14864447","","","2011-06-30 17:53:45 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle That's an issue for me too though I would settle for 4. In general 4 - 8 GB of memory is in use on my machine at any given time."
|
||||
"86482827377512448","86480855094149121","14864447","","","2011-06-30 17:14:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle The Sandy Bridge CPUs rumoured to be in the new Airs are performant enough for me though. They will be tempting."
|
||||
"86482576000286720","86480855094149121","14864447","","","2011-06-30 17:13:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle Rumours say the new chassis is mostly unchanged. If I keep waiting for it to be perfectly tailored for me I'll never get one."
|
||||
"86479485452558336","","","","","2011-06-30 17:01:30 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I'll be upset if the MacBook Air isn't redesigned soon. They have to consolidate the ports, the current configuration is terrible."
|
||||
"86473804586561536","","","86473477049171968","159946057","2011-06-30 16:38:56 +0000","web","RT @awbjs: Offical ECMAScript 5.1 standard is now at http://bit.ly/EoBu9 #JavaScript"
|
||||
"86473614387449856","","","86473091127062528","159946057","2011-06-30 16:38:10 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @awbjs: ECMAScript 5.1/ISO 16262 edition 3 is now the offical JavaScript standard http://bit.ly/itRhXR"
|
||||
"85557573851430912","85556280491638786","894911","","","2011-06-28 03:58:09 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke ha ha, it will be if it works out ... mindBLASTING! anything can blow your mind, this will BLAST it"
|
||||
"85556133791674368","85554883171852288","894911","","","2011-06-28 03:52:26 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Not personally, but yes. Building a few mining rigs at work. Going to try some crazy shit this week!"
|
||||
"85240787180322816","85211604404285440","22406953","","","2011-06-27 06:59:22 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@mahyarm That's true. Most 16:9 LCDs are ridiculously cheap :/"
|
||||
"85047190774480896","","","","","2011-06-26 18:10:05 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I'm going to reverse my stance and advise everyone to *stop* buying SSDs ... until the prices fall. It's for the greater good!"
|
||||
"85046987803721729","","","","","2011-06-26 18:09:16 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","This time 2010 a 512 GB SSD ran ~ $1500, now they're under $1000. They'd fall to $500 if the 240 GB drives would make room."
|
||||
"84435760245248001","84401515753783297","8038312","","","2011-06-25 01:40:28 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@izs Can you specify a save hook? That's what I use in my editor. Failing that there's always a git pre-commit hook."
|
||||
"84117540049137664","","","","","2011-06-24 04:35:59 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I realize I'm late to the game, still excited."
|
||||
"84117367029907456","","","","","2011-06-24 04:35:17 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","WWDC 2011 videos are out!"
|
||||
"84065258460819457","","","84062907364671488","155949717","2011-06-24 01:08:14 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @badass_js: Safari on iOS 5 now has rich text editing via the contenteditable attribute. Also allows for on screen keyboard customiza ..."
|
||||
"84062241682489344","84055078423625728","14231571","","","2011-06-24 00:56:14 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@marcoarment Anyone who says anything bad about you without offering to actually help fight them is just blowing smoke anyway, imo."
|
||||
"84062050875228160","84055158077661185","14231571","","","2011-06-24 00:55:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@marcoarment Forget the jerks, please stay transparent. It's easy to imagine taking on the FBI, but faced with actually doing it few would."
|
||||
"83979962415185922","83976116922101760","29255412","","","2011-06-23 19:29:17 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@tjholowaychuk maybe! I'll have to take a look :)"
|
||||
"83976028501983233","","29255412","","","2011-06-23 19:13:40 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@tjholowaychuk I meant *to* JS of course"
|
||||
"83975368809254912","83953405747408898","29255412","","","2011-06-23 19:11:02 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@tjholowaychuk I've been meaning to port this from JS http://samhuri.net/blog/2010-01-17_working-with-c-style-structs-in-ruby.html"
|
||||
"83956929029881856","","","","","2011-06-23 17:57:46 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","21st century mining http://twitpic.com/5fqkfn"
|
||||
"83929928789262336","","","83926755273998338","20079975","2011-06-23 16:10:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @polotek: This is pretty huge. ?@reybango: From the Node blog, Microsoft is partnering with Joyent to help port Node to Windows http: ..."
|
||||
"83767688165462016","","13334762","","","2011-06-23 05:25:47 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@github where would you like bug reports on GH for Mac? I've sent a couple to support@gh, if there's a better avenue say the word."
|
||||
"83751189191200768","","","83736049666371584","18334333","2011-06-23 04:20:14 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @eee_c: From nothing to express-spdy in one painful blog post: http://bit.ly/lpJaJQ #mychain"
|
||||
"83738299046436866","","","","","2011-06-23 03:29:00 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","The positive feedback loop that Apple created with quality software for iOS and OS X is astonishing. And competitors still don't get it."
|
||||
"82881956802600960","82877890915606529","5905672","","","2011-06-20 18:46:13 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@danbenjamin Thanks for giving us so many great shows! Seems like I'm always picking up another one."
|
||||
"82385535246663680","","","","","2011-06-19 09:53:36 +0000","web","""Close #944 Implement --save switch to write deps to package.json"" http://t.co/xpTscqC more awesomeness in npm, I love it #npm #nodejs","https://github.com/isaacs/npm/commit/2d970344545d7dfadf217365755afd0cdca5b1f1"
|
||||
"82373063089455104","","","","","2011-06-19 09:04:03 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","long shark is long, and nicely themed for it! http://twitpic.com/5dq76n +@grooveshark"
|
||||
"81563880408612864","","","","","2011-06-17 03:28:39 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","There's no way I'm uploading my music though. Between @Grooveshark and @doubletwist I'm a pretty happy camper on iOS and Android alike."
|
||||
"81563418590593024","","","","","2011-06-17 03:26:49 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","System subverted, can't keep all of us Canadians from Google Music on Android :p It's actually pretty good, have to try it on 3G sometime."
|
||||
"81548237072367616","","","","","2011-06-17 02:26:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","scored a Google Music invite"
|
||||
"81420730876702720","81417255744835585","20079975","","","2011-06-16 17:59:49 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@polotek I think that everyone who wanted to loot and riot was just waiting and hoping for the Canucks to lose. Ask them to name 10 Canucks."
|
||||
"81184189411622912","80912520998694912","31151313","","","2011-06-16 02:19:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kuvos My perspective is pretty dated at this point, 5 or 6 years old. Things should be better but I only use Linux on servers and VMs now."
|
||||
"80851072431816705","","31151313","","","2011-06-15 04:16:12 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@kuvos Now you know why so many unix geeks just use macbooks :) I still like Linux but after wifi, suspend, and multi monitor... hello Apple"
|
||||
"80773283091447810","","14405464","","","2011-06-14 23:07:06 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@SubtleGradient I think @slava_pestov already did this cross-platform in Factor but who knows how that ports to Node."
|
||||
"80772868144766979","80770600687247360","14405464","","","2011-06-14 23:05:27 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@SubtleGradient No kidding. Too bad we'd have to support Windows now too. So it's at least kqueue, inotify, and whatever Windows has."
|
||||
"80768724105297920","80767285530333185","14405464","","","2011-06-14 22:48:59 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@SubtleGradient Although iirc node still polls instead of using kqueue. I'll have to look into whether that's still the case."
|
||||
"80768364208861184","80767285530333185","14405464","","","2011-06-14 22:47:33 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@SubtleGradient I created something similar recently http://j.mp/m6Y06G%0A or for something lower level see @mikeal's http://j.mp/mLzr9g%0A"
|
||||
"80694976316588032","","","","","2011-06-14 17:55:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Nick Fitzgerald talks about Operation Transform on his blog as well: http://fitzgeraldnick.com/weblog/"
|
||||
"80694694090252288","","","80689757646102528","15687937","2011-06-14 17:54:48 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @devongovett: A JavaScript implementation of Operational Transformation: http://t.co/MLoTB66","https://github.com/fitzgen/operational-transformation"
|
||||
"80683752723972096","","","","","2011-06-14 17:11:20 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Pretty cool to see async module definitions coming to #nodejs. I'll have to update some of my cross-platform libs on npm."
|
||||
"80317889382596608","80316683650203648","10724012","","","2011-06-13 16:57:31 +0000","web","@andy_matuschak @marcoarment It made much more sense for commuters last year ago since you had to jailbreak to use MyWi."
|
||||
"79619298838061057","","","","","2011-06-11 18:41:34 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I hope that Apple will roll out a replacement for MobileMe galleries just as they go away next year. June 2012 EOL may be significant."
|
||||
"79369441292468224","","","","","2011-06-11 02:08:44 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","well that's pretty awesome, been meaning to check this project out. traverse by @substack https://github.com/substack/js-traverse"
|
||||
"79369273558040576","","","79363973694226433","125027291","2011-06-11 02:08:04 +0000","web","RT @substack: take THAT, ast: http://t.co/TL4RRGH","https://gist.github.com/1020106"
|
||||
"79294050141872128","79292883496210432","894911","","","2011-06-10 21:09:09 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Will check it out, I still have a lot to learn! Going to read the user guide this weekend."
|
||||
"79292242069700609","","","","","2011-06-10 21:01:58 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","After a day I'm starting to come around to Xcode 4. Changed keyboard shortcuts are frustrating but they are more consistent so it's a win."
|
||||
"79222091567738880","79027522213384192","155808472","","","2011-06-10 16:23:13 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@petermichaux lambda(x){x} wins by being the easiest for me to type. #(x){x} is second, and I find {|x| x} and (x)->{x} both awful to type."
|
||||
"78992984435212288","78987704427229184","3655191","","","2011-06-10 01:12:49 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@isaiah Appertino? Cupertinapp? Same thing as far as I'm concerned, about the same distance from Victoria."
|
||||
"78658110268506112","","","78648456662626304","2262091","2011-06-09 03:02:09 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @ajordens: Better to write ugly code with a bunch of hacks than to write nothing at all. http://j.mp/mpJZMH"
|
||||
"78655929255600128","","","","","2011-06-09 02:53:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","We already measure CPUs by cores not clock speed. Wonder if we'll ever have megacore and gigacore CPUs (with crazy on-die interconnects)."
|
||||
"78514126825074688","","","","","2011-06-08 17:30:01 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Snagged the ebook of JS the definitive guide for only $20. O'Reilly's got it on sale for the week. http://oreilly.com/store/dd-HALFD.csp"
|
||||
"78308613457846272","","","","","2011-06-08 03:53:23 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT: @reconbot: WHO HAS ANY ARP JOKES? #protolol (via http://attrition.org/misc/ee/protolol.txt via @diveintomark)"
|
||||
"78124829705900032","77996910547447808","14864447","","","2011-06-07 15:43:05 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle Someone on HN mentioned weak references but no real details."
|
||||
"77952984159490048","","","","","2011-06-07 04:20:14 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Into experimental branches of GitX? Check this one out: http://gitx.laullon.com/"
|
||||
"77943166988333056","77940897215561729","894911","","","2011-06-07 03:41:13 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke That is hot. Not just a euphemism for GC then eh."
|
||||
"77942802943713280","77937805627621376","7198302","","","2011-06-07 03:39:46 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@jonathanstark Ha, same w/ 4.3. I'm still impressed by how much of a boost they gave the platform today. Almost considering iPhone again..."
|
||||
"77940507828957185","77939462960721920","894911","","","2011-06-07 03:30:39 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke bastard"
|
||||
"77914874444906496","77911376617684992","11322372","","","2011-06-07 01:48:48 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@holman Rumour is also that they had to charge for accounting, and once they shipped it w/ devices they wouldn't have to charge anymore."
|
||||
"77810868376698881","","","77809556616519680","14620798","2011-06-06 18:55:31 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @zachwaugh: Now, just need some new Macbook Airs and I'll be all set. #wwdc"
|
||||
"77807710992744449","","","","","2011-06-06 18:42:58 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Ok I'm happy now. Bring on the trifecta!"
|
||||
"77807417454379009","","","77806627964723200","8038312","2011-06-06 18:41:48 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @izs: No room for ego or packratism in software. Until you've rewritten it at least 3 times, it's garbage."
|
||||
"77804615214706689","","","","","2011-06-06 18:30:40 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I pay for MobileMe for iPhoto integration alone, that's it. What about online galleries Steve? Don't care about books or backup right now."
|
||||
"77803870608293888","","","","","2011-06-06 18:27:42 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","iCloud looks good but why would I switch from Google's mail/contacts/calendar to Apple's? And I'm *already* a MobileMe customer..."
|
||||
"77102178069774337","","","77055588034543616","894911","2011-06-04 19:59:26 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @JimRoepcke: If you haven't seen the HNIC intro to game 1, here it is, amazing work. Even if you're not a hockey fan, check it out. h ..."
|
||||
"76880032794030080","","","","","2011-06-04 05:16:42 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Just in case you haven't seen it I present the a cappella Inception trailer: http://youtu.be/d2yD4yDsiP4"
|
||||
"76856351048990720","","","","","2011-06-04 03:42:36 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","But *why* couldn't they print a message that tells us to run that command? Or ask if we'd like to run it. Anything besides current behaviour"
|
||||
"76856009099976704","","","","","2011-06-04 03:41:15 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I have to take some of what I said back. Now that I've rebuilt native extensions the gem warnings are gone."
|
||||
"76854661205860352","76852457405284352","894911","","","2011-06-04 03:35:53 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Thanks, don't think I tried the pristine command without --no-extensions. It's rebuilding stuff, may help."
|
||||
"76849389305462784","76845718576431104","894911","","","2011-06-04 03:14:56 +0000","web","@JimRoepcke It's madness. It barfs out warnings for every installed package every time it's required. Glad I'm not doing Ruby atm."
|
||||
"76842058001813504","76805691284799488","29255412","","","2011-06-04 02:45:48 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@tjholowaychuk I can't believe someone thought it was a good idea to include those warnings. vagrant is unusable for me now."
|
||||
"76347660013023234","76342320890523650","9662352","","","2011-06-02 18:01:15 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@appcelerator Article in question: http://wiki.appcelerator.org/display/guides/Push+Notifications+-+urbanairship.js ... anyway it is up now."
|
||||
"76347582883971073","76342320890523650","9662352","","","2011-06-02 18:00:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@appcelerator Articles were not loading and I saw a maintenance message. Now I can see the article but {code} is an unknown macro"
|
||||
"76337555607519232","","","","","2011-06-02 17:21:06 +0000","web","It's been 8 hours... RT @gavincoop: @appcelerator any ideas how long the wiki will be down for?"
|
||||
"76328758386241536","76327224323739648","91625528","","","2011-06-02 16:46:08 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@chpwn I think I misunderstood. Cydia must be an overloaded name."
|
||||
"76327100453367809","76325966414217216","91625528","","","2011-06-02 16:39:33 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@chpwn Because someone might want a piece of the pie for their work I suppose."
|
||||
"76107003252051969","76097601103077376","668863","","","2011-06-02 02:04:58 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@tomdale how many will be using it? For fewer people who will take care in the process, AeroPress. More people or less careful, Bodum."
|
||||
"76098453528260608","","","76091998762844160","3237831","2011-06-02 01:30:59 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @stevedekorte: Props to Mozilla http://www.youtube.com/watch?v=BHs9bDsEnUo"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,275 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"97826668516876290","","106231780","","","2011-08-01 00:31:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@5by5 If you did a week on BBEdit that would be cool. Good potential for some interesting FU too. How many of you guys use #BBEdit now?"
|
||||
"97780317288546304","97390190800285697","20079975","","","2011-07-31 21:26:58 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@polotek I liked it, good job. It would be cool to see (pseudo) JS by the C++ or something to help bridge the gap."
|
||||
"97536572613857280","97532464276307969","15540222","","","2011-07-31 05:18:25 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@rauchg rough guess, 30-50% excluding replies"
|
||||
"97431474919321601","","","","","2011-07-30 22:20:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Is there a solution to the Nexus One running out of space? It's getting old. Install location is set to SD but internal just keeps filling."
|
||||
"97232951577804800","","","","","2011-07-30 09:11:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","A nice thing about Lion scrollbars is a tall target for sizing Finder columns to fit their content by double clicking the divider."
|
||||
"97228642031120384","97210253476765697","6585632","","","2011-07-30 08:54:49 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kriskowal Glad to help."
|
||||
"97159713917124608","","","97159561202511873","9492852","2011-07-30 04:20:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @emacs: I don't always violate the GPL, but when I do, I leave out Bison grammar files."
|
||||
"97155460586668032","97153554476834816","894911","","","2011-07-30 04:04:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Yeah and I reboot infrequently so a 30s login is probably not going to ruin my day. I'll see how it goes now that I disabled ?Q."
|
||||
"97147791670915072","97147439995297792","894911","","","2011-07-30 03:33:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Now that I'm thinking about it I really don't need to do it for *every* app. I never use TextEdit so it can quit, no biggie."
|
||||
"97147297120518145","97146113357922305","894911","","","2011-07-30 03:31:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Is there a way to automate that? Every app has a different menu item title, Quit <AppName>. Maybe I'll just add common apps."
|
||||
"97133982931628032","","","","","2011-07-30 02:38:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Ideally I'd like to require a confirmation or change the shortcut to Cmd-Ctrl-Q or something. Too bad each app has a different menu title."
|
||||
"97127856890576896","97112056322473984","6585632","","","2011-07-30 02:14:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kriskowal Assuming you don't care about Firefox 2(!) it looks like it's false everywhere that matters."
|
||||
"97127619618807808","97112056322473984","6585632","","","2011-07-30 02:13:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kriskowal false in Safari 4.0.5, Opera 10.63, Chrome 9, Firefox 3.6, IE6, IE7, and IE8 on XP. Also false in Firefox 3.0 onward on Mac."
|
||||
"97126089658339329","97125011336339456","17201709","","","2011-07-30 02:07:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bramcohen Taking condoms to the Playboy mansion reminds me of a Polish saying from an old friend, ""Why are you taking wood to the forest?"""
|
||||
"97115113974272000","97112056322473984","6585632","","","2011-07-30 01:23:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kriskowal I'll open up my old MacBook and see what browsers I have on it. Last time I opened it up Chrome updated and I lost v7 :/"
|
||||
"97114776093724673","97112056322473984","6585632","","","2011-07-30 01:22:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kriskowal It's true on Firefox 2.0 on Mac. You asked for old :)"
|
||||
"97050430609166336","97048635568693248","894911","","","2011-07-29 21:06:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Sounds like a bug. Can't imagine anyone expecting or wanting that."
|
||||
"97050299352625152","","","","","2011-07-29 21:06:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","""important APIs [?] in C++. You don?t need to write JavaScript code to use the html5 APIs like WebGL, Audio, Keyboard, Mouse, Sockets, etc."""
|
||||
"97048303690194944","97047955114180608","894911","","","2011-07-29 20:58:13 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke If a URL has already been loaded is it still empty or is it the previous URL in webViewDidStartLoad:?"
|
||||
"97047199032164353","97035499792896002","102550526","","","2011-07-29 20:53:49 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@gnachman Cool, thanks for working so hard to make iTerm2 awesome! Especially recently. You're a machine."
|
||||
"96973758501367809","96972681802563584","22406953","","","2011-07-29 16:02:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm My friend @JimRoepcke has been using 4.1 for a while and had some problems, crashes. I think he said the GM is better, not perfect."
|
||||
"96973016872919040","96972681802563584","22406953","","","2011-07-29 15:59:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm I have only built a couple of things in 4.1 so far and it was fine (doing web stuff at the moment)."
|
||||
"96972583102193664","96972166339366913","22406953","","","2011-07-29 15:57:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm Sorry I'm not sure, I haven't used Xcode 4.2 yet."
|
||||
"96833264790142976","96830010001854464","12819682","","","2011-07-29 06:43:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mitchellh Yeah, wish I used Terminal :) I'd love to see #iTerm2 show a few lines of context from previous sessions in tabs too. +@gnachman"
|
||||
"96830152415248384","","","","","2011-07-29 06:31:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","If I can have iTerm2 set some env var with the tab number I think I could do that in zsh. Worth trying anyway."
|
||||
"96829720154488832","","","","","2011-07-29 06:29:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","In Lion Terminal restores tabs by showing the last few lines from the previous session. That's a nice touch, will have to make zsh do that."
|
||||
"96827629201670144","96826404183883777","894911","","","2011-07-29 06:21:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Eventually phishers will start tweeting and that might be hard to ignore. Who knows, maybe they already are and are ignored..."
|
||||
"96824372270071808","","","","","2011-07-29 06:08:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Spammer @mckenzyztnno0 has tweeted bare links to random people for 14 hours. How long does it take to recognize that pattern as spam?"
|
||||
"96821527831515136","96778071742492673","13634662","","","2011-07-29 05:57:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dave_dash @ohmyzsh A kind of loophole I guess. If I have time I'll go line by line but that might ease the transition if I need to."
|
||||
"96791855089459200","96782693630611456","136077128","","","2011-07-29 03:59:11 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@kitcambridge no problem, hope you find something you like :)"
|
||||
"96782110001594368","96781720145244160","136077128","","","2011-07-29 03:20:27 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@kitcambridge github.com/samsonjs/config has it all"
|
||||
"96765845132414976","","","","","2011-07-29 02:15:49 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Looks like I'll switch from my venerable custom zshrc to @ohmyzsh sometime soon. July must be my month for changing up tools."
|
||||
"96765444698030081","96760136433025024","191791052","","","2011-07-29 02:14:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@korjavin Cool, thanks! I think I'll take the plunge this weekend :)"
|
||||
"96739776241209344","","","","","2011-07-29 00:32:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Thank goodness for versions because Cmd-Shift-S now clobbers files instead of doing a Save As? #lion"
|
||||
"96738077430644736","","","","","2011-07-29 00:25:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Any old time zshers out there changed to oh-my-zsh? Was it easy to merge in your existing configs and prompt? /cc @ohmyzsh"
|
||||
"96737312934858752","","","","","2011-07-29 00:22:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Some handy info on bundling frameworks in your OS X apps. For noobs like me anyway. http://t.co/4gWeN1T","http://www.dribin.org/dave/blog/archives/2009/11/15/rpath/"
|
||||
"96733064071364609","96732540827734016","894911","","","2011-07-29 00:05:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke As is tradition. http://t.co/tjqMUpv","http://www.youtube.com/watch?v=xawn9xxP678"
|
||||
"96731377734656001","","","","","2011-07-28 23:58:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","NSSearchField doesn't call EndEditing or DidChange when a recent search is selected. And I can't just change the menu's delegate. Blurgh."
|
||||
"96729400011276288","96724596648189953","894911","","","2011-07-28 23:51:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Now you don't have to call someone over to look at it. Progress!"
|
||||
"96685789932564480","","","","","2011-07-28 20:57:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Ok @twitter you're past the adolescent stage, all grown up. Time to actually tackle the spam problem. It's so tiresome."
|
||||
"96684586494476288","","","96684290766680064","190919200","2011-07-28 20:52:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @batdrance: Apple to buy Barnes and Noble. Then Starbucks. Then Express. Then Banana Republic. Then maybe lunch at P.F. Chang's befor ..."
|
||||
"96679166681939968","96678354283003905","14112263","","","2011-07-28 20:31:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@juddv It does sound strange. Of course, having zero knowledge about that stuff makes it easy for me to make wild claims like that."
|
||||
"96678151127711744","96675703633879040","14112263","","","2011-07-28 20:27:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@juddv It seems easier to predict what will happen in 100 years +/- 10 years than what will happen in a specific 24h window."
|
||||
"96677310228471808","","","96673755220295680","636923","2011-07-28 20:24:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @siracusa: This is pretty neat: quickly edit text in any app with your favorite text editor with QuickCursor http://bit.ly/omHfPT"
|
||||
"96640090780090368","96631152089112578","14864447","","","2011-07-28 17:56:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Yeah that can be a killer. When I had my Linux workstation I used Emacs almost exclusively on OS X to keep it sane."
|
||||
"96639951281733634","","","","","2011-07-28 17:55:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Here are a few #bbedit goodies for shuffling lines around, I'm going to yank the move line up/down and dupe line stuff. http://t.co/sQIFMqc","http://www.entropy.ch/blog/Developer/2008/04/13/AppleScripts-for-Some-Missing-BBEdit-Text-Operations.html"
|
||||
"96620959594848258","","36156834","","","2011-07-28 16:40:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@cloudhead I usually end up with a password like FUCKYOUstackexchange!1 in those situations."
|
||||
"96620726068580352","96615268721246209","14864447","","","2011-07-28 16:39:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle It is a great deal. I have actually been using TextMate for the past year or so and TM -> BBEdit is a much easier decision."
|
||||
"96611605424508928","","","","","2011-07-28 16:02:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Oh hey, it's my reddit birthday. 5 years wasted, and counting!"
|
||||
"96609918605459456","96464946702991360","14864447","","","2011-07-28 15:56:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle It was really easy to extend BBEdit with some AppleScript I found on daringfireball.net. Will sit down w/ the manual soon."
|
||||
"96609670394953728","96464946702991360","14864447","","","2011-07-28 15:55:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle If I used another OS regularly I'd probably stick with Emacs too. That's a pretty big hurdle to jump."
|
||||
"96609204768489472","96464946702991360","14864447","","","2011-07-28 15:53:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle That's a tough one, it's really early to say. I just typed away in it yesterday and haven't learned much yet."
|
||||
"96604515213651969","","","","","2011-07-28 15:34:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","A good tool only has to do two things 1) get the job done, and 2) don't piss me off."
|
||||
"96436123601084416","","","","","2011-07-28 04:25:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Installed git on Oct. 16, 2007 and the last svn command on my own repos ran on Oct. 22, 2007. #zhistory"
|
||||
"96430674873036800","","","","","2011-07-28 04:03:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Now that I know how many lines 200,000 really is I think I'll trim my zhistory down to 50,000. I don't need MacPorts commands from 2007..."
|
||||
"96419791757254656","96419372452691968","15687937","","","2011-07-28 03:20:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@devongovett No worries, have fun with whatever you end up with :)"
|
||||
"96419116893745153","","","","","2011-07-28 03:18:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Nice, @bbedit just replied to my moaning about sub word movement (OS was clobbering them). Rounds out a great first day with #bbedit!"
|
||||
"96417669024194560","96416826854080512","39076170","","","2011-07-28 03:12:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bbedit That's perfect, thanks. I'll be sure to write in the future."
|
||||
"96417101253836801","96412153837404161","15687937","","","2011-07-28 03:10:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@devongovett After glancing at a couple of benchmarks I would go for the Crucial drive."
|
||||
"96414263672979456","96412153837404161","15687937","","","2011-07-28 02:58:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@devongovett Oh, actually writes might be slower on the Kingston. I thought it was a different controller. Strike the last tweet."
|
||||
"96413704874229760","96412153837404161","15687937","","","2011-07-28 02:56:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@devongovett Probably not, *maybe* if you have SATA 6gbps. Day to day you likely wouldn't notice a difference."
|
||||
"96394918343348224","","","","","2011-07-28 01:41:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","""Improved: Circus Ponies' NoteBook resizing."" ? I guess it's a good thing."
|
||||
"96378787243098112","96377771298787328","2262091","","","2011-07-28 00:37:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@ajordens @juddv Ridiculous and unproductive but Apple kind of had it coming."
|
||||
"96378413165711361","","","","","2011-07-28 00:36:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","But they *do* work with the shift modifier. Since I have a clean BBEdit install maybe I should file a bug? #bbedit"
|
||||
"96377555275358208","","","","","2011-07-28 00:32:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","BBEdit 10's sub word movements (Ctrl-right/left) don't work for me on Lion. Nothing happens at all. What gives? #bbedit #lion"
|
||||
"96371717756293120","96370725883084800","136077128","","","2011-07-28 00:09:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitcambridge Try them both and see which you like better. I ended up w/ VMware Fusion (+ upgrade since 4 is ostensibly around the corner)."
|
||||
"96361606694449152","96341968061337600","15687937","","","2011-07-27 23:29:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@devongovett Plus, do you want git diff and github and other code tools to show you some weird version of your code w/ different size tabs?"
|
||||
"96361202652954624","96341968061337600","15687937","","","2011-07-27 23:27:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@devongovett Spaces. Anyone who says otherwise is selling software to manage the mess created by mixing tabs and spaces."
|
||||
"96312430271021056","96311897745391617","7516242","","","2011-07-27 20:14:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mislav Montreal too."
|
||||
"96297820637769729","","","","","2011-07-27 19:16:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Recenter doesn't seem to have any effect in BBEdit 10 on Lion. No menu bar item flashes blue when I hit Ctrl-L, nothing happens at all."
|
||||
"96295057338019840","","","","","2011-07-27 19:05:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Decided to actually use BBEdit today and it's great so far. I missed Ctrl-W from TextMate to select a word but @gruber has that covered."
|
||||
"95993932655247360","95992853137862657","22651735","","","2011-07-26 23:08:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@filmaj Apple has (presumably) caught up to Android's wireless goodness w/ iCloud. I'm so ready to ditch my Nexus One for the next iPhone."
|
||||
"95958332665364480","95956242543030273","14136236","","","2011-07-26 20:47:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@BigZaphod Ignore me, I was way off."
|
||||
"95945636616208384","95940869076697088","14206068","","","2011-07-26 19:56:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tlrobinson ""And since our latest update we've had 100% fewer bug reports!"""
|
||||
"95623862292709376","95618986108137472","11973362","","","2011-07-25 22:38:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror I was wrong about how it works. In foo <(bar) bar's stdout goes to a FIFO, the name of which is passed as a *param* to foo."
|
||||
"95622887813287937","95618986108137472","11973362","","","2011-07-25 22:34:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror @killerspaz Relevant docs: http://t.co/dj0F9hn","http://www.gnu.org/software/bash/manual/bashref.html#Process-Substitution"
|
||||
"95613604816105472","95610589405134849","11973362","","","2011-07-25 21:57:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror I'm not sure what bash -c does but foo <(bar) means that bar's stdout is piped to foo's stdin."
|
||||
"95327712134172672","95312587436199936","7198302","","","2011-07-25 03:01:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jonathanstark Cmd-Shift-G ~/Library <return> ... it's a pain but as many said, it's a http://t.co/0OsgBcu :/","http://i.imgur.com/Apu35.jpg"
|
||||
"94911226584375296","","","","","2011-07-23 23:26:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","It would be pretty cool if Apple released an iCloud Time Capsule. #northcarolinadatacentresolvesallproblems"
|
||||
"94909463462551552","94908545392324608","2142731","","","2011-07-23 23:19:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@firefox DNS and HTTP prefetching and caching stuff Chrome does to seem fast. That'd be icing on the nice perf/mem improvements you've made."
|
||||
"94890159924985856","","","94889646177271808","12819682","2011-07-23 22:02:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @mitchellh: Just learned about follow-mode in emacs via HN. Incredible for large screens and browsing long files. http://t.co/KzMdSNM","http://stackoverflow.com/questions/970292/emacs-multiple-columns-one-buffer"
|
||||
"94882961861783552","","","94876472824709120","666043","2011-07-23 21:33:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @danielpunkass: You probably know about Lion's new window-resize from any edge, but do you know about the modifiers? http://t.co/F2zh ..."
|
||||
"94882818018119680","94875300273455104","63803","","","2011-07-23 21:33:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@sh1mmer iTunes is sorely lacking here and the worst part is that the iPod has had that ability since I first got one in 2005."
|
||||
"94590122347073536","","","","","2011-07-23 02:10:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","What do phone makers, PC makers, and content distributors have in common? They all want a piece of the tablet market. It's gonna be crowded."
|
||||
"94565810391097344","94562556718489601","17088322","","","2011-07-23 00:33:40 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@HipwoodDigital oh sorry for the DM didn't see these tweets."
|
||||
"94531997120208896","94530063864827904","2319611","","","2011-07-22 22:19:19 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@shaver Q. How do you get a Canadian to apologise? A. Step on his foot."
|
||||
"94472216145694720","94471296179646464","14864447","","","2011-07-22 18:21:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Take 3 seconds to display a context menu?"
|
||||
"94321136455786496","","","","","2011-07-22 08:21:25 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I gave Android a fair chance. The platform has some good ideas, albeit some implemented poorly, but Google isn't improving it fast enough."
|
||||
"94319636597833728","","","","","2011-07-22 08:15:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","""want extra control"" means ""have an app that's broken on some devices"" If that's not pain from fragmentation what is it? http://t.co/ts6EF6U","http://android-developers.blogspot.com/2011/07/multiple-apk-support-in-android-market.html"
|
||||
"94317851594342400","","","","","2011-07-22 08:08:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Rebooted back into Snow Leopard and wondered why the scrolling was all weird. Forgot to tell Scroll Reverser to start at login. #pieceofcake"
|
||||
"94184496139735040","","","94183068922945536","190919200","2011-07-21 23:18:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @batdrance: Apple should use all of that cash to buy Lodsys's patent portfolio and start suing developers directly."
|
||||
"94184381001908224","94183726904377344","63803","","","2011-07-21 23:18:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@sh1mmer Me too. I'm disappointed at the 4gb limit, was hoping this Air would be powerful enough to replace a 2010 Pro. It's close..."
|
||||
"94182708288290817","94181587041779712","63803","","","2011-07-21 23:11:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@sh1mmer They might not be using the highest density chips available. Something has to be cut to make room for the SSD in their budget."
|
||||
"93898539293351936","","","","","2011-07-21 04:22:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","iTunes 10.5 on Snow Leopard restores your last state as on Lion. Why didn't I notice till now? I remember checking when 10.5 was released."
|
||||
"93897428410966017","93894373640638465","14305022","","","2011-07-21 04:17:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@edog1203 @siracusa Now that it's out maybe @siracusa will tell us his 8 word summary he mentioned on Hypercritical. 27k words -> 1 tweet"
|
||||
"93384932944134144","93374221685755904","811350","","","2011-07-19 18:21:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kn0thing Aaron's official statement makes the same mistake ... http://t.co/lwbNYib","https://twitter.com/#!/aaronsw/status/93379438623985664"
|
||||
"93369238974234624","","","","","2011-07-19 17:18:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Oh, looks like they've dropped the regular price to $50. Maybe it was always $50 in the App Store."
|
||||
"93368733690626049","","","","","2011-07-19 17:16:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","BBEdit is $40 right now. That's amazing. At that price I'm tempted to buy it just in case I ever want it."
|
||||
"93359686304284672","","","","","2011-07-19 16:40:58 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Google+ for iOS doesn't work on 4.2. Oversight? Or does their preference for new platforms extend to mobile as well?"
|
||||
"93070834607984640","","","","","2011-07-18 21:33:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Computers and the Internet have been far worse for my handwriting than my memory. I remember stuff every day, but can barely scrawl my name."
|
||||
"92692522702352384","92687699797999616","7198302","","","2011-07-17 20:29:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jonathanstark @oceanswest Pretty crazy. And awesome. Can't wait to see the twitter bot."
|
||||
"92684784811253760","92681799532154880","7198302","","","2011-07-17 19:59:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jonathanstark @oceanswest I think you've created something new, the first communal coffee card. Take a coffee leave a coffee."
|
||||
"92679565041868801","","","","","2011-07-17 19:38:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","This is literally the coolest house I have ever seen. Location is everything. http://t.co/Lp0SNjm","http://wherethefuckisthis.com/wtf_main/view/687/"
|
||||
"92469696502300672","92385421211873280","202771442","","","2011-07-17 05:44:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@djchrisrail Yeah! Make Core Data your bitch."
|
||||
"92308321494777856","","","","","2011-07-16 19:03:13 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","If you ever have to guess at a question about where some piece of modern tech was invented go with PARC. They invented everything."
|
||||
"92303824630456320","92298892066037760","9395312","","","2011-07-16 18:45:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tqbf I'm doing both. Like twitter Google+ is what you make of it. Microblog, blog, stream, chat, feed, ... we'll have to see what sticks."
|
||||
"92285801953636352","92259004419547137","22406953","","","2011-07-16 17:33:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm AFAIK no telephone or cable companies that offer Internet have rolled out 1 gbps in Canada or the US."
|
||||
"92285489180184576","92259004419547137","22406953","","","2011-07-16 17:32:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm We'll have to wait and see if and when even symmetrical 100 mbps is readily available."
|
||||
"92108442143166464","92106337823096832","36156834","","","2011-07-16 05:48:58 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@cloudhead @indexzero Hard to say without context. If your relative paths are out of hand might be time to reorganize the project."
|
||||
"92084901695848448","","","","","2011-07-16 04:15:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","No matter how you slice it telcos and cablecos will get what they feel is their share of profits. They will win unless our gov'ts step in."
|
||||
"92084598460268546","","","","","2011-07-16 04:14:13 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","In Canada & US one day we'll wake to symmetrical 1gbps Internet & rejoice, ditch phone & cable. Price will be the same though. Boiled frogs."
|
||||
"92041562804064256","","","92035356668592129","14451083","2011-07-16 01:23:13 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @benadida: You've been asking, so here goes: How Mozilla Labs' BrowserID differs from OpenID http://bit.ly/nk7Vq9 #browserid #mozilla"
|
||||
"92040281452589056","91918238224613377","20079975","","","2011-07-16 01:18:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@polotek Wow... just wow. Trey Parker and Matt Stone couldn't have written crazier songs than those two country songs at the end."
|
||||
"91973830406455296","91972680374427648","894911","","","2011-07-15 20:54:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke If he had some kind of point at least we could give him that but it sounds like he only wanted to boost his own ego."
|
||||
"91942208386768896","91940817958223872","1235521","","","2011-07-15 18:48:25 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@timbray Whether or not the data travels over cable frequencies or Internet frequencies is an implementation detail."
|
||||
"91942060625633280","91940817958223872","1235521","","","2011-07-15 18:47:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@timbray Does that actually change anything? It's the same as Rogers w/ VOD. Still gives their service an unfair advantage over same cable."
|
||||
"91935780276150272","91935258836074496","13818902","","","2011-07-15 18:22:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@aaronheckmann That's a good question. Because Spotify has more ads and audio ads? It's available in fewer countries so it's more exclusive?"
|
||||
"91916556531019776","","","91916141336866816","1235521","2011-07-15 17:06:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @timbray: Ooh, Shaw is being very VERY bad: http://goo.gl/NH3tE (cc @DonDavies)"
|
||||
"91755803668791296","","","","","2011-07-15 06:27:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>",".com is a ghetto. I'm moving on."
|
||||
"91662961785049088","91662524243652609","86876879","","","2011-07-15 00:18:47 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@accessorizer @JimRoepcke I dunno but sometimes the tubes get clogged!"
|
||||
"91661238026776576","91660877761216512","894911","","","2011-07-15 00:11:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Oops. Knowing this I understand your feelings on the subject completely."
|
||||
"91661068354596864","91660457940762624","894911","","","2011-07-15 00:11:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I see it as an advantage. More room for unique and personal info in my brain tubes. Clear that shit out just like long division."
|
||||
"91641782663782400","91641398834638848","15294170","","","2011-07-14 22:54:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@hannibalrex From what I've heard about Lion and Xcode on Lion it's a good thing they haven't shipped yet. No comment on tying MBAs to Lion."
|
||||
"91637950173028353","91637652788490240","1235521","","","2011-07-14 22:39:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@asymco @timbray Let's hope we don't end up with a duopoly though. Plenty of people for other platforms too."
|
||||
"91566446466973696","","","91529201571729409","24949617","2011-07-14 17:55:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @jeremyckahn: The best developers are the ones who do it for fun."
|
||||
"91564808872271872","91561819231092736","17120390","","","2011-07-14 17:48:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@gepeto42 In the short run or long run? http://t.co/QB19DAb","http://news.ycombinator.com/item?id=2759376"
|
||||
"91561477189808128","91561187388563457","668863","","","2011-07-14 17:35:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tomdale Apparently you get Nitro just like Safari does."
|
||||
"91559909421875202","","","91558463653679104","19045458","2011-07-14 17:29:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @espiekermann: A world map showing Flickr & Twitter use. Very cool! http://t.co/Fkxn3OO","http://bit.ly/oY0sjM"
|
||||
"91559129155502080","91557734318743552","7198302","","","2011-07-14 17:26:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jonathanstark Saw that this morning, neat idea :) I'd love to try it but I'm in Canada. Maybe I should try anyway."
|
||||
"91318131267604480","91312953441267712","197263266","","","2011-07-14 01:28:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@rob_pike Or it could be an elaborate joke. Why are the first 4 commits hello world programs by Brian Kernighan? Really strange..."
|
||||
"91301191417470978","91297292551856128","136077128","","","2011-07-14 00:21:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov (oops, just pretend I used an example equation that made sense and both sides evaluated to NaN :)"
|
||||
"91301046449750016","91297292551856128","136077128","","","2011-07-14 00:20:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov It's weird, but what if 1/0 === 0/0 resulted in true? That would be weird too."
|
||||
"91300763216785409","91297292551856128","136077128","","","2011-07-14 00:19:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov @jashkenas @mikesherov I wouldn't hesitate to call either isEqual if you only need one of them."
|
||||
"91300641149947904","91297292551856128","136077128","","","2011-07-14 00:19:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov @jashkenas @mikesherov Here's my 2?: a={foo:NaN}; a.isEqual({foo:NaN}) // => false, but a.isIsomorphic({foo:NaN}) // => true."
|
||||
"91276165884559361","91275465741975553","11973362","","","2011-07-13 22:41:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror That's a category for Celebrity Jeopardy if I've ever seen one."
|
||||
"91249611905302528","","1199081","","","2011-07-13 20:56:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@ded Something up with your blog's feed? It's shown all posts unread twice today."
|
||||
"91234259037192192","91231470596784128","129551339","","","2011-07-13 19:55:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@attachmentsme Must be, it certainly rings a bell. Thanks :)"
|
||||
"91233869789016065","91209682240278528","17088322","","","2011-07-13 19:53:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@HipwoodDigital Yes! Sounds like it, thanks :)"
|
||||
"91202029187375104","91201823037337600","136077128","","","2011-07-13 17:47:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov Yeah, it can be really tough. Especially if you just want to get stuff done."
|
||||
"91200213875822592","","","","","2011-07-13 17:40:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","What song is playing in the intro video on http://t.co/9NDgN83 ? Stuck in my head all morning, now I have to listen to it.","http://attachments.me"
|
||||
"91199159696232449","91199064162566144","4777951","","","2011-07-13 17:35:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@_sjs @kitgoncharov But another part of being a good dev is objectively evaluating new things and adopting the good changes."
|
||||
"91199064162566144","91198844083249152","136077128","","","2011-07-13 17:35:25 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov I think part of being a good dev is being skeptical of new things, especially when so much new stuff is just fashion."
|
||||
"91198128862138368","","","91197875748470784","136077128","2011-07-13 17:31:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @kitgoncharov: Clarification: ""If Harmony had existed when I began learning JS, what would I have thought of it?"" That's what seasone ..."
|
||||
"91195890928336896","91195518985846784","894911","","","2011-07-13 17:22:49 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Oy, what a slap in the face! If your needs are light go for Acorn or Pixelmator, they both rock."
|
||||
"91195530809585664","91195237631926272","136077128","","","2011-07-13 17:21:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov That's the right mindset. Luckily all the newness is opt-in for your own code so devs can migrate at their leisure."
|
||||
"91194657127677953","91194567927398400","4777951","","","2011-07-13 17:17:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@_sjs @kitgoncharov Regardless of their feelings about the syntax. But people rarely look at things objectively. It's hard even if you try."
|
||||
"91194567927398400","91193735945273344","136077128","","","2011-07-13 17:17:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov If someone is being 100% objective they have to admit that CoffeeScript eases many JS pains and reduces boilerplate."
|
||||
"91194440391196672","91193735945273344","136077128","","","2011-07-13 17:17:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov New syntax is a good way to introduce new semantics without breaking old code, but it is also highly subjective."
|
||||
"91193567241965568","91193017653919744","4777951","","","2011-07-13 17:13:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@_sjs @kitgoncharov let, destructuring bind, default args, rest and spread. Those help eliminate boilerplate."
|
||||
"91193017653919744","91192591084830720","136077128","","","2011-07-13 17:11:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov I disagree, seasoned JS devs should appreciate the new semantics even more than noobs because they have been bitten by the old"
|
||||
"91171518628888577","","","90886836523769856","7516242","2011-07-13 15:45:58 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @mislav: a Faraday primer: http://t.co/JyRZSv0 ? If you make HTTP requests, you should read it. /cc @alloy","http://mislav.uniqpath.com/2011/07/faraday-advanced-http/"
|
||||
"91170910211538945","91170583374610432","123323498","","","2011-07-13 15:43:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jashkenas Anyone who finds that controversial is looking for controversy. People say that about languages every day."
|
||||
"91165154380759040","","","","","2011-07-13 15:20:41 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","attachments.me has a great intro video. I almost wish I had a need for the service."
|
||||
"91164099056111616","91162105239191552","15540222","","","2011-07-13 15:16:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@rauchg Ask this question on a PHP forum and you'd be surprised how many answer ""yes"". Lots of people think hosting is getting an FTP login."
|
||||
"90969348679806976","","","","","2011-07-13 02:22:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I would pay @Netflix what cable companies charge per month for unlimited streaming w/o commercials. Library in Canada needs some love though"
|
||||
"90966662576209920","90965259178868736","11973362","","","2011-07-13 02:11:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror Well that makes me feel terrible about never being able to snag good self portraits when I'm *trying* to."
|
||||
"90966116112932865","90963412930138112","4777951","","","2011-07-13 02:09:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@_sjs @peterc It lacks the teeth chattering shake you'd get in person, but hey. http://t.co/H12ZaOP","http://www.youtube.com/watch?v=EHH_pk5kgks#t=70s"
|
||||
"90963412930138112","90962088142442496","33493","","","2011-07-13 01:59:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@peterc It looks solid I think my mind just balks at the angle. Rickety can be ok, it's the only thing the Minebuster has going for it ;-)"
|
||||
"90961856478445568","90958774520647680","33493","","","2011-07-13 01:52:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@peterc You're not joking! That looks really fun, and scary. I'm not apprehensive about many roller coasters."
|
||||
"90911065357041664","","","90899045190602752","51193121","2011-07-12 22:31:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @toyns: I can't believe Netflix is going to charge me slightly more to watch whatever I want whenever I want to!"
|
||||
"90901714579898368","90894311801094144","3260971","","","2011-07-12 21:53:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@niels_bom Agreed, as long as they keep working on it I'm happy."
|
||||
"90893839451164672","90892236669190144","3260971","","","2011-07-12 21:22:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@niels_bom Heh, Google seems committed so I hope it's not that bad. But I'm not holding my breath either."
|
||||
"90890873600086016","90888666129510401","3260971","","","2011-07-12 21:10:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@niels_bom Google would be wise to make sure the iOS app stands on its own with enough instruction to get started."
|
||||
"90890307494883328","90890184094265344","4777951","","","2011-07-12 21:08:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@_sjs @niels_bom then the mobile app will be even more confusing."
|
||||
"90890184094265344","90889148398977024","3260971","","","2011-07-12 21:08:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@niels_bom I haven't tried any Facebook apps at all. Good point about G+ itself being a bit confusing. If you haven't used G+ on the web..."
|
||||
"90886118916108288","90884175304994817","3260971","","","2011-07-12 20:51:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@niels_bom I've never used an app like this before so unfortunately I don't have a reference point to compare it to."
|
||||
"90885793916256256","90884175304994817","3260971","","","2011-07-12 20:50:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@niels_bom A great start, might be confusing for some though. Streams for individual Circles are hidden behind 3 taps. #googleplus #android"
|
||||
"90626112429899776","","","","","2011-07-12 03:38:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Legless torsos! Torsoless legs! ?@JeffJonas: But I want to be anonymous! http://t.co/oaYZVgj. Zoom into this and ponder? http://t.co/m98zIsO","http://www.gigapixel.com/image/gigapan-canucks-g7v2.html","http://yfrog.com/kko1xp"
|
||||
"90620256128737280","90619908152508416","29255412","","","2011-07-12 03:15:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk That's good, sounds like the right idea. Balance practical use with ideals."
|
||||
"90619291380092928","90619072085102593","81680030","","","2011-07-12 03:11:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jedisct1 @ohmyzsh Way to go and ruin my excuse for not moving yet. I got nothing on 15 years :("
|
||||
"90618979953025024","90611546329317376","29255412","","","2011-07-12 03:10:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk Should have started with the Readme! lol Code is nice so far though."
|
||||
"90617912590741504","90611546329317376","29255412","","","2011-07-12 03:06:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk Looks like I'll have to read the source to learn about reflection tonight :)"
|
||||
"90617643614224384","90611546329317376","29255412","","","2011-07-12 03:05:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk What does a function that takes two literal function params look like in Luna? Can you write a function on one line?"
|
||||
"90617292689391617","","","90615085277519872","110465841","2011-07-12 03:03:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @maraksquires: I think @substack just won the ""Best New #nodejs Logo"" contest with http://t.co/epSUFqM","http://substack.net/images/node_turtle.png"
|
||||
"90616587211653120","90611546329317376","29255412","","","2011-07-12 03:00:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk I dig the io-ish message send syntax and protos. Surprised about the Ruby-esque special cases for message send syntax."
|
||||
"90602885410332673","90601512232947712","894911","","","2011-07-12 02:06:25 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke :o Deleted my Lion VM ... can't wait to check that out, it must be amazing."
|
||||
"90586636412399616","","","","","2011-07-12 01:01:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","ha HA! I win, JNI. #winning"
|
||||
"90564415803506688","90549143776399360","11628","","","2011-07-11 23:33:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@t Instapaper!"
|
||||
"90541242458439681","90540853310930944","4600051","","","2011-07-11 22:01:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@klimpong To me it looks like""(character set) name"" not ""character (set name)"""
|
||||
"90533117277896704","90532348055138304","11973362","","","2011-07-11 21:29:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror Too bad, that was my only guess at a fix. Maybe I have exceptional luck on this one."
|
||||
"90532196271661056","90531750509424640","11973362","","","2011-07-11 21:25:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@typeoneerror I've been using Dreamhost for several years and have never seen that. I've heard that you can ask to switch servers."
|
||||
"90153779508420608","90150657218199552","894911","","","2011-07-10 20:21:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Also awesome! Sounds like really good stuff."
|
||||
"90152108921331712","90151459290750976","894911","","","2011-07-10 20:15:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Nice! That'll be handy sometime."
|
||||
"90140408729960448","","5905672","","","2011-07-10 19:28:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@danbenjamin @gruber Love the Bond stuff! Can't wait for Kubrick (and Austin Powers) if you guys decide to do more :)"
|
||||
"90137808089530368","90134760545976320","15277447","","","2011-07-10 19:18:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@_honza lol, I won't worry about it then"
|
||||
"90132187915091969","","","","","2011-07-10 18:56:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Bad etiquette to add everyone you know to G+? If they can't get in yet I guess they cannot turn off notification emails either."
|
||||
"90130568754364416","90127568828768256","14358152","","","2011-07-10 18:49:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mentalguy Sent. After being invited I checked back the next morning and got in, ymmv."
|
||||
"90130130097274880","","","","","2011-07-10 18:47:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Twilight Zone material http://t.co/HCZMU7c","http://yfrog.com/kict0p"
|
||||
"90085196342362112","89921669258420224","894911","","","2011-07-10 15:49:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke As opposed to just using the main GCD queue? That's great! Re: the bug, did you just trace the relevant Deferreds?"
|
||||
"89848436274376704","","53921137","","","2011-07-10 00:08:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@goodbyebuddy Site has been telling me to try again later for a couple of days :("
|
||||
"89599575953903617","89582469082398720","22406953","","","2011-07-09 07:39:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm wtf, the Z12 has VGA out! rofl"
|
||||
"89597883833266176","89582469082398720","22406953","","","2011-07-09 07:32:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm If there's ever a Vaio-Z that osx86 runs well on it'd be pretty tempting. Z line is one of about 3 notebooks I would actually buy."
|
||||
"89573297087451136","","","","","2011-07-09 05:55:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","iOS devs should check out Prototypes http://t.co/FRXvj7L (25% off too)","http://prototypesapp.com/?ref=5by5"
|
||||
"89556098419408896","89554687950471170","14231571","","","2011-07-09 04:46:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@marcoarment And the difference is probably the smallest it's ever been since BD-R's release, disks were already cheap then."
|
||||
"89549668576538625","89548787739148288","136077128","","","2011-07-09 04:21:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov You didn't miss out ;-)"
|
||||
"89547925180514304","89547560263499776","136077128","","","2011-07-09 04:14:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov No worries :) I forgot about them too. I think they were collateral damage of suppressed memories of DOS's for loop syntax."
|
||||
"89547069743833088","89546786661871617","136077128","","","2011-07-09 04:10:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov Things like that are why I can't stand cygwin. Too bad coLinux is 32-bit only, luckily VMs are feasible on any machine now."
|
||||
"89546881679638529","89546532591898624","136077128","","","2011-07-09 04:10:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov Closest you can get is to use e.g. cd \Windows to get to a root dir in the current drive. You can mount drives in c:\ though."
|
||||
"89545911788773377","89545002585296896","4777951","","","2011-07-09 04:06:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@_sjs @kitgoncharov If you are curious as I was... http://t.co/QKPDdqB","http://blogs.msdn.com/b/larryosterman/archive/2005/06/24/432386.aspx"
|
||||
"89545002585296896","89544635021656065","136077128","","","2011-07-09 04:02:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov lol! They are just obeying Postel's law, nice. I guess it *could* have been a kind gesture to Unix greybeards."
|
||||
"89544369157308416","89544150797664256","136077128","","","2011-07-09 04:00:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov Pretty much just confirms everything you said, no surprises I can see."
|
||||
"89544227347906560","89543190339796992","136077128","","","2011-07-09 03:59:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov @tlrobinson Here are working links to the good stuff: http://t.co/Cee5km2
|
||||
http://t.co/5dmlRqs","http://bit.ly/pmQcCA","http://bit.ly/rmJ1Pd"
|
||||
"89543783150125056","89543190339796992","136077128","","","2011-07-09 03:57:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov @tlrobinson *sigh* @twitter mangled the link but I linked to the toURL() method."
|
||||
"89543557618212864","89543190339796992","136077128","","","2011-07-09 03:57:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitgoncharov @tlrobinson http://t.co/pR4ywVc()","http://www.mavenjava.com/sun/jdk/1.6.0/src/java/io/File.java.html#File.toURL"
|
||||
"89543103349932032","","","","","2011-07-09 03:55:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Windows didn't so much change from slash to backslash as add the backslash as an alternative and set a strong convention. What's the point?"
|
||||
"89539502170849280","89537139699761153","14206068","","","2011-07-09 03:40:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tlrobinson @kitgoncharov Backslashes become slashes and only one slash after the protocol: c:\rhino.bat -> file:/c:/rhino.bat"
|
||||
"89534809449299968","","","","","2011-07-09 03:22:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","If you have Google+ drag more than one person to a circle right now."
|
||||
"89497363021971457","","","89497134390460416","16031975","2011-07-09 00:53:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @b6n: For me, it's either false dichotomies or nothing at all."
|
||||
"89367275693555713","","","89367184001859584","12819682","2011-07-08 16:16:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @mitchellh: In the time it takes for the light from your monitor to reach your eyes, your computer can process about 6 instructions. ..."
|
||||
"89365888758841344","","","","","2011-07-08 16:11:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","So I just went to Google+ and saw the sign up form. Not sure if that's because I got an invite or not. If you're waiting take a quick look."
|
||||
"89364933501919232","89152288760930304","894911","","","2011-07-08 16:07:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke XD http://t.co/FRjFko7","http://yfrog.com/kgx81p"
|
||||
"89360527750467585","89359345514594304","22406953","","","2011-07-08 15:49:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm I was just jumping on the bandwagon, if I changed the hashtag I would have been starting my own tiny bandwagon of one :)"
|
||||
"89247243839868928","","","","","2011-07-08 08:19:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Cowboy hat, dog, buffalo: http://t.co/VPFFdQr","http://imgur.com/AJkT7"
|
||||
"89192005640523777","89186855165235201","14864447","","","2011-07-08 04:40:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Hate to say this but given the other names in that thread and that this was inevitable, Techtoria is not bad... ok now kill me."
|
||||
"89191538525077505","89186855165235201","14864447","","","2011-07-08 04:38:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle At first I was like *facepalm* but then I was all *lol*. My vote would have been for Advancement Archipelago. SanFran North? wtf"
|
||||
"89185400714829824","","","","","2011-07-08 04:13:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","You better start swimmin' or you?ll sink like a duck, for the times they are a-changin? #ReplaceAWordInAFamousQuoteWithDuck"
|
||||
"89182369059319808","","","","","2011-07-08 04:01:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","#ReplaceAWordInAFamousQuoteWithDuck #DamnThatHashTagWasTooLongToFitInTheSameTweetAsTheQuoteItself"
|
||||
"89182248477270016","","","","","2011-07-08 04:01:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Those who would give up Essential Liberty to purchase a little Temporary Duck, deserve neither Liberty nor Safety."
|
||||
"89182131724619777","","14217022","","","2011-07-08 04:00:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@DreamHost Love the newsletters. Infrequent and entertaining enough that I actually read them. A+++ GREAT NEWSLETTER WOULD READ AGAIN"
|
||||
"89154774519390208","89102475650539520","2735631","","","2011-07-08 02:12:09 +0000","web","@lonelysandwich Did you just tell me to go fuck myself?"
|
||||
"89154250571128832","","","","","2011-07-08 02:10:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","The effort to invite and show up is effectively nil for Google+ so the analogy falls down. They just shouldn't be called invites is all."
|
||||
"89153555214237696","","","","","2011-07-08 02:07:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","If you were the inviter do you invite anyone to the next party? If you were the invitee do you show up next time?"
|
||||
"89153093324914688","","","","","2011-07-08 02:05:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Imagine being invited to a party. You arrive and the bouncer politely says they're full and you have to wait until they extend the hall."
|
||||
"89152664478294016","89152288760930304","894911","","","2011-07-08 02:03:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke What can ya do? Seems like a weird idea for invites though, I mean they're not really invites are they? More like taunts ;-)"
|
||||
"89152206372208640","89151722567634946","894911","","","2011-07-08 02:01:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Yeah, I see ""Already invited? We've temporarily exceeded our capacity. Please try again soon."" They're not like gmail invites :("
|
||||
"89150384060383232","89140586937978881","894911","","","2011-07-08 01:54:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Thanks. Unfortunately no dice but maybe I get bumped up in the queue or something."
|
||||
"89141550986178560","89104910225915904","14864447","","","2011-07-08 01:19:36 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@bryan_kyle kill me now"
|
||||
"89140004793749504","89139020474490880","894911","","","2011-07-08 01:13:27 +0000","web","@JimRoepcke Do the invites do anything yet? I'd like one please :)"
|
||||
"89100727296851968","","","","","2011-07-07 22:37:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I write apps in Victoria but that doesn't make it Victoriapp, and even if I called it that it still has no meaning. /rant"
|
||||
"89100557247184896","","","","","2011-07-07 22:36:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I haven't heard anyone else say it yet so: Appsterdam is a meaningless name for something that already has a perfectly good name."
|
||||
"89085974109368320","","","","","2011-07-07 21:38:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Played around with a Windows Phone 7 device today and I'm impressed. If you want a phone, not pocket computer, seems good enough already."
|
||||
"89080422549565440","89079631285727233","33493","","","2011-07-07 21:16:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@peterc Oh that is odd! Probably just a coincidence I read too much into then."
|
||||
"89079523794104320","89077962581884929","33493","","","2011-07-07 21:13:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@peterc Gmail has been excellent at avoiding false positives for me until this mishap. I rarely even think to check my spam folder."
|
||||
"89078918795116544","89077962581884929","33493","","","2011-07-07 21:10:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@peterc Gmail may have changed their spam filtering. We recently had some cron mail suddenly start being marked spam."
|
||||
"89043060448702464","88995921605562368","22406953","","","2011-07-07 18:48:14 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@mahyarm you're probably right. I should stop worrying about it being anaemic for me, someone will want it"
|
||||
"89026187736780801","","","","","2011-07-07 17:41:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","In a nut: WP7 has a leg up on Android by having a *good* GUI to build UIs, but falls short of Xcode by exposing you to generated XML goop."
|
||||
"89023714410246144","89023421899481088","894911","","","2011-07-07 17:31:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke rofl! It is enterprise ready for sure. Their heart is in the right place though and it's better than their older VB stuff."
|
||||
"89023191372144640","89022367656984576","894911","","","2011-07-07 17:29:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke No kidding. This WP7 stuff looks ok but their XAML goop is far worse than Android's XML UI goop. Much more powerful, but worse."
|
||||
"89022310014656512","","","","","2011-07-07 17:25:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","It's Controller on top orchestrating the process. Controller knows about Models and Views and wires them together. That's it, bindings or no"
|
||||
"89022163352420353","","","","","2011-07-07 17:25:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","What's with the explanations stating that in MVC from top to bottom it's View-Controller-Model, each knowing about the thing below it? Wrong"
|
||||
"89021946758561793","","","","","2011-07-07 17:24:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Oh I see, MVVM is a Microsoftism that means ""MVC with bindings, and confusion"". In MVC views and models *do not* know about controllers!"
|
||||
"88797802318143488","88785906999369729","894911","","","2011-07-07 02:33:40 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@JimRoepcke lol! That would be awesome. Wonder if they have a big enough blender."
|
||||
"88776616049782784","","","","","2011-07-07 01:09:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Not sure if it'll be worth the time and effort, or if someone would even pay a price high enough to not lose $ on the deal."
|
||||
"88776471400820737","","","","","2011-07-07 01:08:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","2006 MacBook, 1st gen, Core Duo ""Yonah"". Should I max out RAM to 3 GB add an SSD and resell? Headphone jack & optical drive are broken."
|
||||
"88774309799137280","88773238548738048","9286842","","","2011-07-07 01:00:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@topgenorth Good idea I'll take a look. Google and MS would have a hard time lobbying manufacturers to make a device that would sell poorly."
|
||||
"88772874286006272","","","","","2011-07-07 00:54:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","#Android and #WP7 need an iPod touch-like device for devs. Expecting us to hunt down contract-free devices that cost $500+ is unreasonable."
|
||||
"88650811223187456","88649561177997312","39448955","","","2011-07-06 16:49:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@amanduh86 lol, nope but it was great! :)"
|
||||
"88490495948505088","","","","","2011-07-06 06:12:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","That's a nice little big detail http://t.co/Tfgvzgv","http://littlebigdetails.com/post/7267655518/nike-basketball-roster-on-the-new-section-as"
|
||||
"88413921106608128","88412710236196864","20079975","","","2011-07-06 01:08:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@polotek 1.3.2? Man, that's *new*: http://t.co/8U6nqLK (committed in Feb/2011)","https://github.com/jfhovinne/jFeed/blob/master/jquery/jquery.js"
|
||||
"88394159391653888","88391127912296448","14640131","","","2011-07-05 23:49:44 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@bradfordw sandforce 1200 SSDs are still great and a few hundred $ less than a year ago"
|
||||
"88126085656621057","88059233437876224","29255412","","","2011-07-05 06:04:30 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@tjholowaychuk http://twitpic.com/5lgngq"
|
||||
"88125192894820352","","","88055999612727296","29255412","2011-07-05 06:00:57 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @tjholowaychuk: kue - priority job queue backed by redis for #nodejs - site: http://t.co/Rm0tSsY, intro screencast: http://t.co/FIVydRD","http://bit.ly/k7E7Hg","http://bit.ly/mf9Qqi"
|
||||
"88004748694917120","","","87892849135337473","6120952","2011-07-04 22:02:21 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @saroy: Watching CNN special on shuttle program. ENTIRE 40-year shuttle program cost $115 billion. FY2010 military budget is 4x that."
|
||||
"88002042626445312","","","","","2011-07-04 21:51:36 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Well http://t.co/Rh3DH0W looks pretty good. (via @maraksquires) +@JimRoepcke","http://neyric.github.com/wireit/"
|
||||
"87977564160794624","","","87975933205688320","80139117","2011-07-04 20:14:20 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @vicpdcanada: Canada Day drunk books himself into cells. Here's to a bad idea. Don't #peeonourbuilding. #yyj notes forthcoming."
|
||||
"87961279645499392","87938368624799744","42242439","","","2011-07-04 19:09:37 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@okinsey @__DavidFlanagan @kuvos And you didn't actually answer David's question, I'm curious too. Why would you need var's crazy semantics?"
|
||||
"87960950916919296","87938368624799744","42242439","","","2011-07-04 19:08:19 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@okinsey @__DavidFlanagan @kuvos Isn't the goal to fix var by introducing let and then phase out var? (albeit reeeaaalllly slowly)"
|
||||
"87742642489786369","87740603537952769","668423","","","2011-07-04 04:40:50 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@mikeal @kriskowal Took me 10-14 days. I drew dvorak letters on my keyboard and by the time they wore off I knew it. Frustrating, worth it."
|
||||
"87617154370912256","","","","","2011-07-03 20:22:12 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","Complaint that @gmail themes are not dense enough withdrawn. Height is mostly lost to section headings and buttons, fixed by scrolling down."
|
||||
"87343558415233024","87332191276773376","29255412","","","2011-07-03 02:15:01 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@tjholowaychuk meaningless without context anyway. Better at being ruby? Certainly. Better at embedding? Obviously not."
|
||||
"87342773883248640","","","","","2011-07-03 02:11:54 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","Solid day of coffee shop hacking with @JimRoepcke ... HLDeferred + arborjs + nodejs + socket.io = ???"
|
||||
"87228685849079808","87225533116588032","15226527","","","2011-07-02 18:38:34 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@fastest963 :o"
|
||||
"87225363155005440","87216494047531008","15226527","","","2011-07-02 18:25:21 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@fastest963 Is that even possible? Google only does openID sign up if they recognize your email, e.g. @yahoo.com, so there's always an addy"
|
||||
"86892066013057024","","","86881134260129793","636923","2011-07-01 20:20:57 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @siracusa: My review of the new http://bit.ly/l1ibnI ""Preview (Dense)"" Gmail theme: not dense enough."
|
||||
"86869627572994048","86868812242227200","894911","","","2011-07-01 18:51:47 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@JimRoepcke Inbox 1000 is just how I operate ;)"
|
||||
"86869017343705088","86865935327170560","12712742","","","2011-07-01 18:49:22 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@zii I'm keeping my fingers crossed :) Other than that one complaint the themes are fantastic."
|
||||
"86868875085488128","","","","","2011-07-01 18:48:48 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","No other mail app wastes that much space listing messages. And for good reason, nobody needs that much space to scan the list. usability--"
|
||||
"86868605203001344","86865837373407232","894911","","","2011-07-01 18:47:44 +0000","<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>","@JimRoepcke yeah, still looks like 35% less of my inbox. I'm all for using lots of space but for me it's just too much."
|
||||
"86864729787731970","","","","","2011-07-01 18:32:20 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","I hope I can still use the current gmail theme after the switch. The new ones have way too much vertical padding in message lists. +@gmail"
|
||||
"86856073507639296","","","86854928760455169","14231571","2011-07-01 17:57:56 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @marcoarment: iOS devs: ever need this? http://t.co/uYo5AYU
|
||||
|
||||
I sure have. Damn good find.","https://github.com/0xced/UIKit-Artwork-Extractor"
|
||||
"86695590158798848","","","","","2011-07-01 07:20:14 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","western digital, y u no put usb symbol on the top side of the connector?!"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,222 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"109114872947675136","109106092386172929","14231571","","","2011-09-01 04:06:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@marcoarment Ditto what @JimRoepcke said. I would definitely try it out."
|
||||
"107163117187907584","107154361666375680","33423","","","2011-08-26 18:50:52 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@gruber is it live?"
|
||||
"106617627786477568","","","","","2011-08-25 06:43:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","If Chrome's ""it looks like you moved"" message pisses you off please star this Chromium issue http://t.co/Xlkamac","http://code.google.com/p/chromium/issues/detail?id=85671"
|
||||
"105893140023623680","105884880763764736","14864447","","","2011-08-23 06:44:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle I can't stand Safari anymore http://t.co/Yz4Z7tQ","http://twitpic.com/6aan7p"
|
||||
"105687841547362304","105686807097774080","5905672","","","2011-08-22 17:08:39 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@danbenjamin I like the Dr. Jekyll and Mr. Hyde one where Jerry makes a potion with everything under the kitchen sink and feeds it to Tom."
|
||||
"105522313868484608","105521924347658240","22406953","","","2011-08-22 06:10:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm From where? Can you send me one? I hear they make good SNES emulators."
|
||||
"105514296720629760","105512626875932672","14864447","","","2011-08-22 05:39:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Nice! Very tidy, makes me want to clean mine up. Do you write ObjC in Emacs?"
|
||||
"105511224917241856","105511052069969920","14864447","","","2011-08-22 05:26:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle You should open it up."
|
||||
"105511090204577793","","","105507349510369280","14864447","2011-08-22 05:26:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @bryan_kyle: I feel bad for macromates. Everyone dumps on their product, but at least people care."
|
||||
"105511021371863040","105510044732358656","14864447","","","2011-08-22 05:26:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle To get select enclosing pair right you have to recognize quoted strings, possibly from inside one. It's harder than I thought."
|
||||
"105510359439392768","105510044732358656","14864447","","","2011-08-22 05:23:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle May be time to split mine up, never really paid attention to the size."
|
||||
"105509261332848640","105505727434600448","14864447","","","2011-08-22 05:19:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Previous tweet + http://t.co/12yxyWX http://t.co/A2AxHMW is close, this is tricky though http://t.co/0JMKxk0 (it's a mess)","https://github.com/samsonjs/config/blob/master/emacs#L436-463","https://github.com/samsonjs/config/blob/master/emacs#L505-525","https://github.com/samsonjs/config/blob/master/emacs#L551-634"
|
||||
"105508532069203968","","","105505727434600448","14864447","2011-08-22 05:16:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @bryan_kyle: I always thought it would be great to take #emacs and Macify it. Then I realized that that's pretty much what #text mat ..."
|
||||
"105489330679721984","105487581889822721","636923","","","2011-08-22 03:59:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@siracusa @marcoarment I'm just going to TextMate-ify Emacs. emacs-nav, textmate.el, and PeepOpen get me halfway there and I like Lisp."
|
||||
"105484505917304832","105483661578743808","14231571","","","2011-08-22 03:40:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@marcoarment Same for me with the Text -> Move Selection commands and column selection with the keyboard. @siracusa talked about this on HC."
|
||||
"105346397125087233","","","105346239507349504","2367111","2011-08-21 18:31:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @assaf: Great Twitter account, or greatest Twitter account? http://t.co/UMKA34y","http://bit.ly/nPRcGS"
|
||||
"105114379019759618","","","","","2011-08-21 03:09:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Recovered some old blog posts thanks to the wayback machine. Now let's see what node + jsdom + jQuery can do to extract the post data."
|
||||
"105074492715442176","105066923301142528","39448955","","","2011-08-21 00:31:25 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@Amanduh__XO Ha ha, that's hilarious! Everybody gets their news from reddit eh. Nice racks too."
|
||||
"105024084777242624","105023270151143424","35954885","","","2011-08-20 21:11:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@joshsusser Unfortunately I don't think that's possible now that AppleScript support is gone."
|
||||
"105001631069896704","","","","","2011-08-20 19:41:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Sharpening my Emacs toolset. emacs-nav is great, if you like TextMate's project drawer check it out. nav > 10 * speedbar http://t.co/oaJ3RMh","http://code.google.com/p/emacs-nav/"
|
||||
"104793984764878848","104792990349918208","70596949","","","2011-08-20 05:56:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@creationix I haven't found one yet. There are plenty of them on eBay and craigslist for $200-300 :/"
|
||||
"104788568915972098","","","104786297389985792","125027291","2011-08-20 05:35:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @substack: you can now require('http') in the browser http://t.co/xLDZE46","https://github.com/substack/http-browserify"
|
||||
"104786723665485824","104777878125805568","14864447","","","2011-08-20 05:27:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Ha ha, I had honestly forgotten that I used to leave my computer while SD! was doing its thing."
|
||||
"104742270875607040","","","","","2011-08-20 02:31:18 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Hey #yyj are there any TouchPads left in town?"
|
||||
"104423857041047552","104408951793262592","894911","","","2011-08-19 05:26:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Seems like waiting until you have to make the call makes a less good last memory :( Can't really blame her though..."
|
||||
"104422881571782656","104421885021917184","894911","","","2011-08-19 05:22:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke @cocoageek Peaked first season, very sad. After the writer's strike it went absolutely crazy."
|
||||
"104063310646882304","104063227222163456","1199081","","","2011-08-18 05:33:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@ded @jeresig @ender http://t.co/Y6Xr5QD It's the 3rd one.","http://search.npmjs.org/#/_author/John%20Resig"
|
||||
"104002074798338049","","","","","2011-08-18 01:30:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Google is not down in Victoria."
|
||||
"103725377507172352","","","103721807806332928","91625528","2011-08-17 07:10:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @chpwn: I don't think people realize how cool iEmu can be. A full virtual iOS device /on your computer/.
|
||||
|
||||
Help @cmwdotme make it http ..."
|
||||
"103723214278111232","103719000730636288","14405464","","","2011-08-17 07:01:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@SubtleGradient Yes and no. text: http://t.co/UGWo2ZW graphical, X11: http://t.co/6Vrsr0b http://t.co/F6gTAtZ","http://emacs-w3m.namazu.org/","http://www.haxney.org/2009/08/its-alive.html","http://www.emacswiki.org/emacs/EmacsXembed"
|
||||
"103693930759073792","","","","","2011-08-17 05:05:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Array extras? Obect.{create,seal,freeze}? JSON? Property descriptors? Function.prototype.bind? A giant ""meh"" to them all next to Proxy."
|
||||
"103692786821378048","","","","","2011-08-17 05:01:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I don't think I have ever wanted anything to be ready for prime time JavaScript as much as I want Proxy. It opens up so many possibilities."
|
||||
"103675102327087104","103674044100001792","14231571","","","2011-08-17 03:50:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@marcoarment In some ways TextMate is a refined set of great Emacs features distilled into a form readily used by real humans, plus more."
|
||||
"103674668069814272","103674044100001792","14231571","","","2011-08-17 03:49:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@marcoarment I think the best editor to ""graduate"" to is Emacs. TextMate is actually pretty similar to Emacs as Allan used it prior to TM."
|
||||
"103671918045052929","","","","","2011-08-17 03:38:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","My other editor is Emacs and I love that I can - and do - add *anything* to Emacs that I miss from TextMate. If someone else hasn't already."
|
||||
"103671752491663361","","","","","2011-08-17 03:37:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Each a small thing and no single thing enough to keep me in TextMate forever, but things I am reliant on nonetheless."
|
||||
"103671601433804800","","","","","2011-08-17 03:36:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Those being Cmd-Ctrl-[??] to shuffle the selection around, subword movement behaviour, and some other things that escape me right now."
|
||||
"103671080941649920","","","","","2011-08-17 03:34:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","An update on $EDITOR, it's back to `mate -w` now. No real complaints about BBEdit, it just lacks some things I'm really used to using."
|
||||
"103538022791913472","103520524428247040","8675502","","","2011-08-16 18:46:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@me1000 They don't claim to be JS so I don't want to pick on them but I'd like more clarity about the canonical form. +@kitcambridge @getify"
|
||||
"103537749600108544","103520524428247040","8675502","","","2011-08-16 18:44:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@me1000 Now look at http://t.co/U0sE8eH (named before the CS switch). They don't really make it clear it's CS. +@kitcambridge @getify","http://riakjs.org"
|
||||
"103537546167984128","103537246652731393","8675502","","","2011-08-16 18:44:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@me1000 @kitcambridge @getify Agreed. To be clear, I've no problem with projects that are upfront about the language they read and write in."
|
||||
"103537261404106752","103536125167157248","136077128","","","2011-08-16 18:43:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitcambridge I agree, but surely you realize that you are in the other 1% of devs :) +@me1000 @getify"
|
||||
"103536217882243072","103520524428247040","8675502","","","2011-08-16 18:38:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@me1000 @kitcambridge @getify I'm not saying people shouldn't use compiles-to-JS langs or anything, just that they don't call it JS."
|
||||
"103519980246671361","103511608147443712","8675502","","","2011-08-16 17:34:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@me1000 @kitcambridge @getify Don't tell me it's a JS library if I have to write another language to modify it. Canonical form matters."
|
||||
"103519872704712704","103511608147443712","8675502","","","2011-08-16 17:33:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@me1000 @kitcambridge @getify Ideally sure but in real life you're gonna be working with that library, hunting down errors in the lib, etc."
|
||||
"103502089895952384","103501057480601601","14864447","","","2011-08-16 16:23:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Heh that means you waited long enough to upgrade. Those are the most fun."
|
||||
"103500741855027200","103500257958170625","14864447","","","2011-08-16 16:17:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Nice! So what's the verdict? Any regressions or is the upgrade all, er, up?"
|
||||
"103486548565180417","103458852204318720","136077128","","","2011-08-16 15:21:30 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitcambridge @devongovett I have no problem with projects in CS, I do take offence when they're sold as JS libs and not written in JS."
|
||||
"103486345372119042","103458852204318720","136077128","","","2011-08-16 15:20:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitcambridge @devongovett I only feel misled when people sell their CS project as a JS lib. It's all about the canonical form."
|
||||
"103353196952567809","","","","","2011-08-16 06:31:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","This guy definitely wins the thread ? er, bug report. Either way he deserves upvotes. http://t.co/MU7eAl4","https://bugzilla.mozilla.org/show_bug.cgi?id=678775#c60"
|
||||
"103352794412630016","103351458220617729","894911","","","2011-08-16 06:30:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Oh I was just looking at one of those books. Good stuff, thanks."
|
||||
"103325258999803904","","","","","2011-08-16 04:40:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Aha! Things are starting to click."
|
||||
"103314347111104514","","","103313061498204160","220909573","2011-08-16 03:57:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @_JamesNielsen: holy sunset batman! #yyj"
|
||||
"103314024527171584","","","","","2011-08-16 03:55:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Hey #yyj, if you have a view of the sunset, look."
|
||||
"103137869727662080","103119157993799680","288383647","","","2011-08-15 16:15:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@DavidAtGVC @jimroepcke Well then! Should be interesting."
|
||||
"102481870469595136","","","","","2011-08-13 20:49:16 +0000","<a href=""http://www.twocation.com/"" rel=""nofollow"">Twocation</a>","My followers live in the U.S. (29.5%), Canada (28%) & the U.K. (6.5%) [top 3]. Find yours at http://t.co/ORf9rjT","http://twocation.com/"
|
||||
"102434539862896640","","","","","2011-08-13 17:41:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I'm going to go with Picasa Web for now. At $5/year the price is right and if I upload more than 20 GB I'll think about SmugMug (unlimited)."
|
||||
"102433254208053249","102430057699618817","22406953","","","2011-08-13 17:36:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm And SmugMug has the best looking UI and unlimited photos while Picasa has reasonable but tiered pricing. I think Flickr is out."
|
||||
"102432120697405440","102430057699618817","22406953","","","2011-08-13 17:31:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mahyarm Yeah. Picasa has an advantage for me because most of my friends & family already have Google accounts. Still not clear though."
|
||||
"102405051934441473","102302273211875328","894911","","","2011-08-13 15:44:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Now that we know the capacity and price / GB it doesn't matter, I can't put all the photos I want in iCloud."
|
||||
"102257618340429824","","","","","2011-08-13 05:58:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","SmugMug, Flickr, or Picasa Web? I just want a one-click publish from iPhoto since MobileMe is going away."
|
||||
"102204007577174016","102203736079859712","29255412","","","2011-08-13 02:25:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk @wavded But did you inhale?"
|
||||
"102194990695972864","102194364394123264","15540222","","","2011-08-13 01:49:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@rauchg @shaver I agree it creates more work to even casually analyze perf implications but so does inheritance. Some things are worth it."
|
||||
"102192421173080064","102190135747158016","2319611","","","2011-08-13 01:39:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@shaver @rauchg I suppose if you were wrapping/swizzling a function you would have to detect if it was a property first and do extra work."
|
||||
"102191225511227392","102190135747158016","2319611","","","2011-08-13 01:34:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@shaver @rauchg I'm curious too. I've never heard this reason cited as a drawback of Python's properties, which behave similarly iirc."
|
||||
"102136720065183745","102136106174251009","140108433","","","2011-08-12 21:57:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@angusTweets @kitcambridge @cjno Oh, that is a shame. There are plenty of smart folks besides Crockford and they have good opinions too."
|
||||
"102135988373037057","102135117165768704","140108433","","","2011-08-12 21:54:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@angusTweets @kitcambridge @cjno I agree that's bad, but am unsure if that's happening where there previously was real discussion. Is it?"
|
||||
"102135580166586368","102135117165768704","140108433","","","2011-08-12 21:53:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@angusTweets @kitcambridge @cjno As in instead of discussing issues people use DC as a canonical source of truth?"
|
||||
"102134656442445825","102132428679806976","136077128","","","2011-08-12 21:49:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitcambridge @angustweets @cjno Devs that won't learn themselves are better off w/ Crock's practices than Learn JS in 24 Hours practices."
|
||||
"102134373058494464","102132428679806976","136077128","","","2011-08-12 21:48:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitcambridge @angustweets @cjno I agree 100% but appreciate Crock's role. As long as others balance his opinions it's a net win."
|
||||
"101919963165630464","","636923","","","2011-08-12 07:36:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@siracusa As you said TM is Emacs-like, down to Ctrl-s. But js2-mode keeps Emacs around, and of course I stole TM features so a win overall."
|
||||
"101919182752456704","","636923","","","2011-08-12 07:33:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@siracusa I mostly switched from Emacs to TextMate for projects, Emacs has no equal. Even w/ a good file tree all buffers are ""global""."
|
||||
"101897734533029888","101895963970502656","4777951","","","2011-08-12 06:08:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@_sjs @danwrong Ugh, s/old/new/ and sorry for the yfrog scaling :/ http://t.co/lwG7XwN","http://twitpic.com/64q9cn"
|
||||
"101897121896206338","","","","","2011-08-12 06:05:41 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","This 4-part The Oatmeal is hilarious :) http://t.co/b5KA2x1","http://theoatmeal.com/comics/minor_differences"
|
||||
"101895963970502656","101893339619667968","389153","","","2011-08-12 06:01:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@danwrong Weird, on twitter.com your avatar alternates. Most replies have the old but not the one to brianellin. http://t.co/2tIZHLX","http://yfrog.com/ki7xrp"
|
||||
"101864889827594240","","","101861014378786817","9144132","2011-08-12 03:57:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @flipsasser: Just re-watched the first episode of Heroes. Why did something so good have to go so bad?"
|
||||
"101802364536766464","101801590914158594","894911","","","2011-08-11 23:49:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Well the spam egg sausage and spam ain't got much spam in it. (Just kidding, on twitter there's a lot of @spam in everything)"
|
||||
"101795841148338176","101794937569423360","389153","","","2011-08-11 23:23:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@danwrong If you build a Riak map/reduce function using unescaped user input you deserve what you get and still not as bad as SQL injection."
|
||||
"101795493067243520","101794937569423360","389153","","","2011-08-11 23:21:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@danwrong Exactly. I'm not an expert on NoSQL injection, it's theoretically possible but if you follow good practices probably not a worry."
|
||||
"101794589047926784","101794116920283137","389153","","","2011-08-11 23:18:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@danwrong Nobody, it's a pretty bogus argument if you ask me. You could do something equally stupid in most languages."
|
||||
"101793882311892992","101792630538637314","389153","","","2011-08-11 23:15:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@danwrong http.createServer(function(req,res) {
|
||||
s=''
|
||||
req.on('data', function(d){s += d})
|
||||
req.on('end', function(){eval(s)})
|
||||
})
|
||||
ZOMG!!1"
|
||||
"101783580635693056","101782852223508480","14063149","","","2011-08-11 22:34:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@miksago Yeah sorry, I don't have any advice. It's a waiting game."
|
||||
"101782478892703744","101781693416996864","14063149","","","2011-08-11 22:30:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@miksago Sometimes bees get stunned and lie dormant for a while. Then hours later when you've forgotten about it ,it'll spring to life."
|
||||
"101782178697981952","101780262295322624","3655191","","","2011-08-11 22:28:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@isaiah @jimroepcke I got 6.5, stopped reading LOTR in the 2nd book. Sadly I have no good reasons for not reading books more often."
|
||||
"101710683028197376","101696136632471553","288383647","","","2011-08-11 17:44:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@DavidAtGVC Good to hear. They look really slick."
|
||||
"101694760863014913","","","101693979258650625","16182069","2011-08-11 16:41:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @timescolonist: Via Rail closing downtown Victoria station: http://cot.ag/o2PNmI #yyj"
|
||||
"101690437831622657","","","101689688192069632","14864447","2011-08-11 16:24:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @bryan_kyle: Text Editors in The Lord of the Rings - The title says it all. http://tumblr.com/xre4188hid"
|
||||
"101688645605539840","101687070791180288","14864447","","","2011-08-11 16:17:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle I'm a little wary of their proprietary tech inside it but right now I'm of the mind it's a worthwhile tradeoff."
|
||||
"101688434858524672","101687070791180288","14864447","","","2011-08-11 16:16:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Heh, convenience. If I build my own NAS it'll be bigger, louder, uglier, and require more maintenance."
|
||||
"101686714002710528","101685059123298304","14864447","","","2011-08-11 16:09:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle A Drobo FS is on my wish list. Especially now that I have a 4 TB RAID10 setup with *no* data integrity checks whatsoever."
|
||||
"101686374935183361","101686250293035009","4777951","","","2011-08-11 16:08:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@_sjs @bryan_kyle I just realized you didn't necessarily mean problems w/ the Windows side of things :)"
|
||||
"101686250293035009","101685059123298304","14864447","","","2011-08-11 16:07:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle It was definitely Lion this time. Old 10.6 MacBook connected w/o issue, and now w/ a clean Lion install it works."
|
||||
"101684276852043776","","","","","2011-08-11 15:59:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Except now Finder opens new windows in some ABMutableMultiValue_Class/History directory deep in /Library/Developer? yay"
|
||||
"101683673191026688","","","","","2011-08-11 15:57:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","And now I have a Lion install disk so it won't be so involved next time, no Snow Leopard involved."
|
||||
"101683509923561474","","","","","2011-08-11 15:56:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","YES! It was a long and arduous journey but my clean Lion install can now connect to my Windows 7 shared folder."
|
||||
"101541928444760064","101536073435455488","15687937","","","2011-08-11 06:34:16 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@devongovett I think you need to use a module to handle it which is why no one does it."
|
||||
"101485180891561985","101484952276836352","894911","","","2011-08-11 02:48:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke ha ha, alright then."
|
||||
"101484707992178691","101484098706612224","894911","","","2011-08-11 02:46:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I don't think so."
|
||||
"101483905663774721","101483085593460736","894911","","","2011-08-11 02:43:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I bet they look good on the iPad :) On that note, are you going to go for Shaw's 50 mbps thing? (or already have it?)"
|
||||
"101482968886947841","101481702932754432","894911","","","2011-08-11 02:39:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I hope you don't have Rage HD."
|
||||
"101479877450022912","101477915962777601","894911","","","2011-08-11 02:27:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Just tape an SSD to the back. You won't notice it."
|
||||
"101477279154180096","101476190614855680","894911","","","2011-08-11 02:17:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Woah! Nice collection. No wonder you need 32gb, 16gb would barely hold your apps ;-)"
|
||||
"101476038013485056","101475622508953600","894911","","","2011-08-11 02:12:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke How many apps do you have? Now that you can list purchased apps it might be time to clean house. I bet you don't use 100 of 'em."
|
||||
"101473080085450752","","","","","2011-08-11 02:00:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>",".@gruber really nailed the cmd-tab / auto terminate situation on The Talk Show. And he mentioned the solution I want. http://t.co/2HLZqy8","http://5by5.tv/talkshow/54"
|
||||
"101449545635999745","101447113694650370","40175013","","","2011-08-11 00:27:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@lukecoburn No luck for me. Thanks though, I hadn't seen that yet."
|
||||
"101175738404831233","101174156657303553","40593","","","2011-08-10 06:19:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@nevyn Heh, when he said it wasn't for a consumer's man cave I thought ""he doesn't understand geeks!"" I mean, a Mac Pro can be $10-20k."
|
||||
"101172257782640640","101170489451491328","40593","","","2011-08-10 06:05:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@nevyn Now all I need is $120k..."
|
||||
"101140428732108800","","","","","2011-08-10 03:58:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Don't vi users map caps lock to escape? Never heard anyone say they map caps lock to control for vi before. I guess ctrl-[ works as escape."
|
||||
"101139521772589057","","","","","2011-08-10 03:55:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","""This new car drives like a dream! ? Well, time to change the locks at the office now that I drive to work in a new car."" ? wait, what?"
|
||||
"101138978266292225","","","","","2011-08-10 03:53:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Are there any good reasons *not* to migrate your SSH key to a new machine? I can think of one big reason to keep it and none to start over."
|
||||
"101138592063176706","101137029844307968","136077128","","","2011-08-10 03:51:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitcambridge @wavded ""[JS] does I/O in a very particular way. And uh? that's the only reason it's exciting."" - @ryah in http://t.co/qAun8vy","http://www.yuiblog.com/blog/2010/05/20/video-dahl/"
|
||||
"101132495826853888","","","","","2011-08-10 03:27:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Win for mobile Flash? ""some of these sites do load [?] they take forever [?] and their finicky navigation makes them impossible to use."""
|
||||
"100968245477117955","","","","","2011-08-09 16:34:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","If web browsing is the measure of smartness, then Symbian is the smartest smartphone OS. http://t.co/MF6bmIt +@gruber","http://www.quirksmode.org/blog/archives/2011/08/platform_smartn.html"
|
||||
"100812574525890560","100811310773702657","38654173","","","2011-08-09 06:16:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@WebReflection @angustweets iPhone 4.2.1 is a 2nd gen iPod touch, 4.3.3 is a 1st gen iPad."
|
||||
"100805230454771712","100802194038734848","14864447","","","2011-08-09 05:46:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle @jimroepcke @twit_ryan 2001 took me a few tries, I kept dozing off. Most of Kubrick's movies seem to go over my head."
|
||||
"100797951865143296","100797131366989824","14864447","","","2011-08-09 05:17:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle @jimroepcke I first saw it around 2005, and wondered why my friend was showing me a black and white movie."
|
||||
"100796901347180544","100794986819371008","14864447","","","2011-08-09 05:13:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle @jimroepcke Back in the day you'd get slapped with a trout for that kind of shit."
|
||||
"100791197584470016","","","","","2011-08-09 04:51:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Lion doesn't connect to my network shared media library via smb/cifs anymore. Hooray."
|
||||
"100789226655842306","100788671397101569","894911","","","2011-08-09 04:43:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Yeah that's recent enough for KS movies. Looking through my DVDs I have surprisingly few *great* movies. Oh, add True Romance."
|
||||
"100788187085029377","100786365054189568","894911","","","2011-08-09 04:39:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Back to the Future, My Cousin Vinny, Jay and Silent Bob Strike Back. Wholesome family films. Except the first one."
|
||||
"100786261782040576","100783140888514560","894911","","","2011-08-09 04:31:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Dr. Strangelove better be on that list then :p"
|
||||
"100782967273684992","100782719797170177","894911","","","2011-08-09 04:18:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Watching all the classics this week eh."
|
||||
"100777945953599489","","","100773381242228736","6001592","2011-08-09 03:58:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @jorgeortiz85: It's <strike>turtles</strike> services hosted on EC2 all the way down http://t.co/8nTohj8","http://cl.ly/463e3h2C1z3R262L3f22/Screen_shot_2011-08-08_at_11.38.44_PM.png"
|
||||
"100770575047331840","100732167914663936","636923","","","2011-08-09 03:29:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@siracusa Good article. I think the goal is to prevent switchers or grandma from being confused by switching to an open app w/ no windows."
|
||||
"100765373355393024","100763373788078081","6827332","","","2011-08-09 03:08:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jtaby Some abstractions are bad and new ones should be approached with caution. That might look like fear I guess..."
|
||||
"100763870821482496","100763373788078081","6827332","","","2011-08-09 03:02:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jtaby It's at odds w/ the browser's layout engine and lacks fluid/dynamic layout which I apparently am quite accustomed to."
|
||||
"100763699211550720","100763373788078081","6827332","","","2011-08-09 03:01:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jtaby I'm speaking generally. You don't get closer to the metal in a browser. My main problem w/ Cappuccino was the view system."
|
||||
"100762564589395969","100761893278461952","6827332","","","2011-08-09 02:57:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jtaby JavaScript is the new C, C for the web. Remember that at one time it would be funny to say that C was close to the metal."
|
||||
"100761565803978752","","","100760690448543745","29255412","2011-08-09 02:53:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @tjholowaychuk: progressive API alternative for client-side ajax http://t.co/LVcNtWX","http://visionmedia.github.com/superagent/"
|
||||
"100600463635922944","","","","","2011-08-08 16:13:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I don't really care what's in my stream so I just follow *anyone* who follows me! I'm a social media guru! #StupidHashTag #EvenMoreStupider"
|
||||
"100446654901141504","100446550865616896","1178441","","","2011-08-08 06:02:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@aq You're some kind of evil genius. Nice looking bacon too."
|
||||
"100446443441102848","100432404128346112","14231571","","","2011-08-08 06:01:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@marcoarment Xcode 4 is usable with 1680x1050. The extra 150 px in height helps and 1680 just squeezes 2 files side by side. #wants15inchAir"
|
||||
"100423220032843776","100421001266995200","70596949","","","2011-08-08 04:28:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@creationix @tjholowaychuk Please don't take that the wrong way. I don't question the good intentions of individual members."
|
||||
"100422806398976000","100421001266995200","70596949","","","2011-08-08 04:27:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@creationix @tjholowaychuk I was born into a Mormon family and all I'll say is that the 10% tithing is pretty strongly encouraged."
|
||||
"100095071692668928","100092331298000897","29255412","","","2011-08-07 06:44:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk They're running out of doors to knock on."
|
||||
"99941328485498881","","","99940846681587712","35954885","2011-08-06 20:34:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @joshsusser: maybe i'll just make everyone donate $1 to charity to leave a comment"
|
||||
"99916327858348032","","","","","2011-08-06 18:54:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Just to be clear I'm not talking about joking around with hashtags and such, that's still funny. I mean people who are actually upset."
|
||||
"99915072431857664","99914830038831104","894911","","","2011-08-06 18:49:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke lol, yeah I must be a good mood or something :p This is what made me say that fwiw http://t.co/Xg8unpZ","http://dangerouslyawesome.com/2011/08/philadelphia-scooter-thefts/"
|
||||
"99914654972776448","99914120849141762","894911","","","2011-08-06 18:48:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Heh some people use it that way. I was thinking more of the people who seem ashamed to complain about anything less than dire."
|
||||
"99914453553913856","","","","","2011-08-06 18:47:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Your scooter getting stolen isn't the worst thing to happen to anyone, but it still makes you feel shitty. Someone else is always worse off."
|
||||
"99914160011358208","","","","","2011-08-06 18:46:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","There's also no shame in having problems whoever you are. Your problems affect you and your mood in a real way regardless of your situation."
|
||||
"99913630073626624","","","","","2011-08-06 18:44:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Time for the ""first world problem"" meme to die. If you live in the ""first world"" we know the context of your problems, no need to qualify."
|
||||
"99912612707450880","","","99911676282929152","645143","2011-08-06 18:39:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @tirsen: @thomasfuchs and of course, vise versa is equally true."
|
||||
"99912596861358080","","","99769913161416704","6927562","2011-08-06 18:39:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @thomasfuchs: If you think Apple is on the ""dark side"", and Google is on the ""light side"", then you're on the... dumb side."
|
||||
"99910080165720064","99901199393898496","14405464","","","2011-08-06 18:29:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bga_ @SubtleGradient If you generally mutate as little state as possible then your functions tend to return useful things."
|
||||
"99909625557680128","99901199393898496","14405464","","","2011-08-06 18:28:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bga_ @SubtleGradient Why is it bad? Maybe those folks just aren't used to the behaviour, I don't end up with stuff like that in Lisp code."
|
||||
"99711044628398080","99708555594174464","6827332","","","2011-08-06 05:19:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jtaby And with less donkey poop."
|
||||
"99602134990983168","99598756084850688","894911","","","2011-08-05 22:06:14 +0000","web","@JimRoepcke Yeah, or the devs who thinks it's acceptable to spew bullshit excuses instead of just saying ""Sorry we haven't got to that yet."""
|
||||
"99598472801554432","99597397709168640","894911","","","2011-08-05 21:51:41 +0000","web","@JimRoepcke I'm trying to think of what I'd blend. My fingers? Might be less painful."
|
||||
"99597017898172417","","","","","2011-08-05 21:45:54 +0000","web","""Oh yeah, and your control won't be hardware accelerated so if you're showing a scrolling list too bad."" ... I'll shut up now, but man..."
|
||||
"99596763656224768","","","","","2011-08-05 21:44:53 +0000","web","""Just package your page into a user control and manually transition it. It's flexible!"" Which roughly translates from MSFT as ""Fuck you."""
|
||||
"99596353419751424","99595268684656641","14231571","","","2011-08-05 21:43:15 +0000","web","@marcoarment Yup. I used LastPass for all of about 10 seconds before running for 1Password."
|
||||
"99596108690493440","","","","","2011-08-05 21:42:17 +0000","web","Sorry, transient screens are absolutely not ""advanced"" functionality. WP7 has a massive deficiency and they just don't want to admit it."
|
||||
"99595844013146112","","","","","2011-08-05 21:41:14 +0000","web","Cannot believe how half baked Windows Phone 7 is, and worse MS goes further and says things like transient login screens are ""advanced""."
|
||||
"99363677601406976","99360779106660352","894911","","","2011-08-05 06:18:41 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke True that."
|
||||
"99359473734397952","99359170402328576","894911","","","2011-08-05 06:01:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Yeah it is, hopefully they learned a lot for v2. There's a reason Apple iterates on these internally for years in advance."
|
||||
"99358444208930817","99348346967310336","894911","","","2011-08-05 05:57:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Loot at HP right now http://t.co/n6Mxuwb","http://h41112.www4.hp.com/promo/webos/us/en/shopping-touchpad.html"
|
||||
"99358313489235968","99352402272067584","91625528","","","2011-08-05 05:57:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@chpwn Take a look at this, $100 instant rebate from HP right now. http://t.co/n6Mxuwb When did that happen?","http://h41112.www4.hp.com/promo/webos/us/en/shopping-touchpad.html"
|
||||
"99357019580014594","99348346967310336","894911","","","2011-08-05 05:52:14 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@JimRoepcke :o that's hot. Wish that a tablet was on my list of things I need. I could play with it and sell it though. Hmmm"
|
||||
"99194814146412544","","","99194051072495616","12712742","2011-08-04 19:07:41 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @zii: @_sjs I suppose whichever one gets you closer to where you want to be"
|
||||
"99179775645597696","99172676366643200","894911","","","2011-08-04 18:07:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Heh I didn't notice if you did. But now you've been warned!"
|
||||
"99167228078981122","","","99165776782700545","14864447","2011-08-04 17:18:04 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @bryan_kyle: @_sjs I define success to be meeting your goals. Everyone's goals are different."
|
||||
"99165169938214912","","","","","2011-08-04 17:09:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","How do you measure success? # of customers? # of active users? # of actions performed with your product/service? Income? Profit?"
|
||||
"99157370629918720","","33423","","","2011-08-04 16:38:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@gruber You seem confused. For Android numbers != success, but for Instagram numbers == success? Make up your mind."
|
||||
"99154424613699585","","","99154301062103040","14864447","2011-08-04 16:27:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @bryan_kyle: If you're a person that touches a computer screen then you're obligated to disclose that when looking at a coworker's br ..."
|
||||
"99013796915445760","","","","","2011-08-04 07:08:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Last tweet is a quote from the @DreamHost newsletter. The only newsletter I actually read."
|
||||
"99012887993004032","","","","","2011-08-04 07:04:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","""Might be tech support. Might be a marketing guy. Might be neither! Who knows? Shared Twitter accounts are the gloryhole of social media."""
|
||||
"98911455797194752","98911227618672641","894911","","","2011-08-04 00:21:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Aw man. That sucks for everyone :("
|
||||
"98910892044992513","98907828709888000","894911","","","2011-08-04 00:19:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Poor girl. Somehow she must know eh."
|
||||
"98905771659628545","98904931775426560","894911","","","2011-08-03 23:59:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke :("
|
||||
"98894503636779008","","","98892163630366720","894911","2011-08-03 23:14:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @JimRoepcke: @_sjs IMHO, staging and committing is the most important interaction git users have, so I don't understand why the GUIs ..."
|
||||
"98888780093722624","","","98888005091196928","12819682","2011-08-03 22:51:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @mitchellh: @_sjs Non-developers, designers."
|
||||
"98888764163756032","","","98887837050617856","894911","2011-08-03 22:51:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @JimRoepcke: @_sjs I don't know either. The staging area for GitX, and the ability to drag and drop branches makes GitX the most appe ..."
|
||||
"98888603383508992","98887837050617856","894911","","","2011-08-03 22:50:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Yeah I thought other GUIs would at least have a good staging + commit story. Oh well, I'm happy where I am just curious."
|
||||
"98888514577498113","98888005091196928","12819682","","","2011-08-03 22:50:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mitchellh I get that but I see devs talking about Tower and GH for Mac and wonder if I'm missing something. Maybe they aide learning git."
|
||||
"98887603604045824","","","","","2011-08-03 22:46:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Tried Git Tower, Github for Mac, and some other Git GUI. Still haven't found anything more compelling than zsh and GitX. What's the draw?"
|
||||
"98857248121561090","98856981271543808","165975834","","","2011-08-03 20:46:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@PiCNiC_Coffee Picnic Coffee ain't nuttin to fuck wit!"
|
||||
"98632376070062080","98631641651609602","14864447","","","2011-08-03 05:52:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Probably for the best."
|
||||
"98631243247255552","98629854244782080","14864447","","","2011-08-03 05:48:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle You're gonna love the LED display."
|
||||
"98630929429446657","","18075241","","","2011-08-03 05:47:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@launchbar is there maybe a defaults command I can use to change it to the qwerty setting of hjkl?"
|
||||
"98630774487646209","","18075241","","","2011-08-03 05:46:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@LaunchBar I use the Dvorak locations of hjkl so forcing dhtn on me is kind of mean :) The OS X convention of Ctrl-[abefnp] would be better."
|
||||
"98626738275360768","98625411189194753","14864447","","","2011-08-03 05:30:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Nice one, yeah the CPU upgrade is really not worth it on this one. Can't wait to hear how you like it."
|
||||
"98624753568456705","98623365891358720","14864447","","","2011-08-03 05:22:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Sweet! Which one? I'll guess the best 13""."
|
||||
"98623749212995584","98620493065748480","15687937","","","2011-08-03 05:18:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@cowboy @devongovett If you can resurrect papply go for ""begging the question"" next please."
|
||||
"98620997850251264","","13753352","","","2011-08-03 05:07:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@crashplan I turned up CPU usage to 100% and my LAN backup over WiFi sped up tremendously :) How come? Compression? http://t.co/4dhsDVH","http://yfrog.com/gz71663885p"
|
||||
"98575204913131524","","","","","2011-08-03 02:05:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Woah. iCloud just crashed, sent a report to Apple, and then reloaded. There was a stack trace, build number, and mention of a dir ""cloudos""."
|
||||
"98511749447303169","98511113028775937","63803","","","2011-08-02 21:53:25 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@sh1mmer I think it's the one you first sign in with. If you're already signed in, sign out of all accounts then sign in with your primary."
|
||||
"98467464333115392","98466905794416640","15687937","","","2011-08-02 18:57:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@devongovett Hooray! Sometimes I think I'm being hyperbolic when I say the difference is night and day. What do you think?"
|
||||
"98281818641534976","98281518010609664","894911","","","2011-08-02 06:39:46 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke first half was about jumpcut."
|
||||
"98267729894715393","","","","","2011-08-02 05:43:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I'm really sad that Apple got rid of double-tap-and-hold to drag n drop in Lion. I use that all the time."
|
||||
"98265497962950657","98264729964904449","894911","","","2011-08-02 05:34:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke And amazingly it still works in Lion, 10.3.9 lol. Yeah I should probably just use Launchbar again."
|
||||
"98264973637206016","98264729964904449","894911","","","2011-08-02 05:32:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Sorry I meant Jumpcut. Awesome simple clipboard history. http://t.co/GLaxwkI","http://jumpcut.sourceforge.net/"
|
||||
"98264171510120448","98263388722966528","894911","","","2011-08-02 05:29:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Oh, that 14 doesn't include menu bar apps like Flux, Dropbox, Cinch, SizeUp, Divvy, CutJump, Display Rotate, Evernote, MacFusion"
|
||||
"98263857390292992","98263388722966528","894911","","","2011-08-02 05:28:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke But I have to say Lion feels sluggish in general for me. Maybe I should try a clean install & migrate."
|
||||
"98263075848851456","97153554476834816","894911","","","2011-08-02 05:25:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Turns out it still takes a minute or two to start apps on login. For some folks w/ HDDs resume will be a problem."
|
||||
"98227699570589696","98227129904410624","3655191","","","2011-08-02 03:04:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@isaiah Exactly. I don't think you'll really need to worry unless you're testing 32-bit, and Macs that can't run 64-bit are rare."
|
||||
"98226853944377344","98226556484325376","3655191","","","2011-08-02 03:01:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@isaiah Oh sorry. That's the platform to run on, 32 and 64-bit for Macs and more interestingly devices and simulators for iOS."
|
||||
"98226375479148544","98225794874212352","3655191","","","2011-08-02 02:59:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@isaiah That's the active target, configured with schemes. You can click on the Stacks part to manage schemes."
|
||||
"98209753607581696","98209309548232705","91625528","","","2011-08-02 01:53:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@chpwn In Firefox 5 on OS X I just fired up a new tab and `ps ax | wc -l` didn't change. When I do it in Chrome it increments."
|
||||
"98194093548634112","","","98193044821647360","14405464","2011-08-02 00:51:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @SubtleGradient: Node.js + TextMate?!
|
||||
Yes, we have that now.
|
||||
|
||||
http://t.co/35Mts9y
|
||||
|
||||
Still more to come!
|
||||
Also, JSHint and some stuff.","https://github.com/subtleGradient/javascript-tools.tmbundle/commits/master"
|
||||
"98166019117416449","98164975964651520","15687937","","","2011-08-01 22:59:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@devongovett The animation even lags in Chrome, it's like using an iPhone 3G. #authenticexperience"
|
||||
"98165863408091137","98164112529428480","31151313","","","2011-08-01 22:59:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kuvos It's standardized in 15.12.3. You'd still need to be able to identify the objects by inspection in the replacer fn."
|
||||
"98163304630992896","98161202240299008","166272705","","","2011-08-01 22:48:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@samjones5 It's ok, I hope you guys are enjoying the sunshine today. Good news about Hudson location! Right down the street from me too :)"
|
||||
"98160331855101953","","","","","2011-08-01 22:37:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Epic coffee bean fail. 2% Jazz (predictably) and Fantastico (surprisingly) are both closed. 2% Jazz: best coffee, *never* open :( @samjones5"
|
||||
"98157473852162048","98145734607646721","31151313","","","2011-08-01 22:25:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kuvos Can you do what you want using the replacer fn? http://t.co/yrHbpaf","https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/JSON/stringify"
|
||||
"98146360641073152","98146029249114112","31151313","","","2011-08-01 21:41:30 +0000","web","@kuvos Yeah for some reason I'm still running out. Have to check temp folder, IDEA leaves APKs there... ?_?"
|
||||
"98146038048759808","98145734607646721","31151313","","","2011-08-01 21:40:13 +0000","web","@kuvos It'll be nice to have Proxy, then you could make an object that really behaves like an Array too but stringifies like an object."
|
||||
"98145332197736448","98143665406484481","31151313","","","2011-08-01 21:37:25 +0000","web","@kuvos I think it's good that this is not supported, JSON transcends languages and mapping that onto other languages is not always easy."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,65 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"119639756878516225","","","","","2011-09-30 05:08:35 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","You can feel pain without suffering."
|
||||
"119598949773488129","119550983595503616","20079975","","","2011-09-30 02:26:26 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@polotek @kriskowal have a look at the deferred lib that @JimRoepcke and I ported from Twisted. You may like it. http://t.co/aKyROxIG","http://github.com/samsonjs/deferred-js"
|
||||
"118705958544347136","118701969488617472","12510462","","","2011-09-27 15:18:00 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@ischi Heh, sometimes I agree with people a little too aggressively. Sorry :)"
|
||||
"118701826823561216","118699126232858624","12510462","","","2011-09-27 15:01:35 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@ischi No service is perfect in every way. @Grooveshark is easily the best, available choice for many of us. To each his own though."
|
||||
"118701259762053121","118699126232858624","12510462","","","2011-09-27 14:59:20 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@ischi @Grooveshark isn't perfect but it's available in Canada and you find lots of rare live tracks and such. Plus, no audio ads."
|
||||
"118696908289097729","","","","","2011-09-27 14:42:02 +0000","web","By the time @Spotify et al make it to most countries, those who stream music the most will already be using something like @Grooveshark."
|
||||
"118695330379345920","118681182136303617","15687937","","","2011-09-27 14:35:46 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@devongovett But I'm also not one of the whiners so maybe I don't count ;-)"
|
||||
"118695257922748416","118681182136303617","15687937","","","2011-09-27 14:35:29 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@devongovett I'm happier here in my ""fake Canadian world"" with neither Spotify nor Facebook anywhere in sight. <3 @Grooveshark"
|
||||
"118555636073115648","","","118527973358972928","136077128","2011-09-27 05:20:40 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","RT @kitcambridge: Excellent Ars Technica tutorial for scripting OS X apps with MacRuby: http://t.co/aujdDwWc","http://goo.gl/ypBZ3"
|
||||
"118489911862104064","118489428812513280","39448955","","","2011-09-27 00:59:31 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@Amanduh86 a house full of sickees eh? :( if you're up bored give me a call."
|
||||
"118484469106749440","118478300749369344","39448955","","","2011-09-27 00:37:53 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@Amanduh86 a cry for help ;-) hope you feel better. Have some caffeinated tea, may help."
|
||||
"118483384472313857","","","118343347579535360","636923","2011-09-27 00:33:34 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @siracusa: Christmas comes early for TextMate fans: http://t.co/6oBSQ2Ay","http://blog.macromates.com/2011/whats-next/"
|
||||
"117980932299948032","117979592433737728","14231571","","","2011-09-25 15:17:00 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@marcoarment (sorry *last* tweet I promise) My family and I backup to each other with @Crashplan too, so I have backups in several places."
|
||||
"117980690733219840","117979592433737728","14231571","","","2011-09-25 15:16:03 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@marcoarment And @Crashplan has an iOS app to browse your backups, kind of a nice bonus."
|
||||
"117980527658676224","117979592433737728","14231571","","","2011-09-25 15:15:24 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@marcoarment I didn't switch but use @Crashplan extensively at home and work and have no complaints so far. It just works."
|
||||
"117980264445128704","117979592433737728","14231571","","","2011-09-25 15:14:21 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@marcoarment My bro-in-law recently switched from @Carbonite to @CrashPlan. It's more flexible, does a lot even if you don't pay them."
|
||||
"117618267127947267","117609302990131200","39448955","","","2011-09-24 15:15:54 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@Amanduh86 I don't think so. It's a lot cuter than later in the episode when he's licking Scott's tears after feeding him his parents."
|
||||
"117606147762040833","117604982789914624","39448955","","","2011-09-24 14:27:45 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@Amanduh86 I know. Does it ever get any less funny though? :) Maybe I like South Park too much."
|
||||
"117603356448526336","117580627724873728","39448955","","","2011-09-24 14:16:39 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@Amanduh86 http://t.co/EXbiaHDg","http://www.youtube.com/watch?v=Mo0WQ2L3OGo"
|
||||
"117603211556306944","117506345002995713","894911","","","2011-09-24 14:16:05 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@JimRoepcke Barely made the cut ;-) That would have been a good idea just to have a record, in case I wanted to follow any of them again."
|
||||
"117602905976090625","117469819959382017","14864447","","","2011-09-24 14:14:52 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle No way, I do the same as you. Half way is really bright for me too. I don't think I ever use it outside though."
|
||||
"117465979583336448","117459380345118720","14864447","","","2011-09-24 05:10:46 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@bryan_kyle Is it the only light source in the room? Same thing happens to me if I'm reading on an iPad in bed at night."
|
||||
"117297425563123712","117295392701423616","15687937","","","2011-09-23 18:01:00 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@devongovett I think that might be a bit long but at any rate I agree that it could work if reformed or revamped. We don't know w/o trying."
|
||||
"117295163155554304","117293985948635136","15687937","","","2011-09-23 17:52:00 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@devongovett I think it's worth trying. What kind of term though? 2 years? It has to be far shorter than 17 years or whatever it is now."
|
||||
"117257548909912064","117255240549531649","4777951","","","2011-09-23 15:22:32 +0000","web","@_sjs @cyrilmorales Stupid Lion spelling correction keeps changing rien to rein. Sorry."
|
||||
"117255240549531649","117151003937226754","23180048","","","2011-09-23 15:13:22 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@cyrilmorales De rein. I'm glad it's useful for you! :)"
|
||||
"116978556923416577","116961591089573888","39448955","","","2011-09-22 20:53:55 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@Amanduh86 You love that song eh. It is a good tune!"
|
||||
"116898728895451137","116870789151719425","14864447","","","2011-09-22 15:36:43 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@bryan_kyle it's just not suitable for web dev work (for me). I just use a Linux VM to work on Windows."
|
||||
"116898313814544385","116871054961553408","14864447","","","2011-09-22 15:35:04 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@bryan_kyle don't forget broken scroll wheel behaviour - see KatMouse - and the mess of a control panel."
|
||||
"116525225994223616","116520249196691456","39448955","","","2011-09-21 14:52:33 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@Amanduh86 lol you baaarely made it :p"
|
||||
"116510469132517376","116502261441630208","39448955","","","2011-09-21 13:53:55 +0000","web","@Amanduh86 Went to bed at 9pm so I got up around 4am. Took about 1/2 an hour, mostly just unfollowed those I don't know or converse with."
|
||||
"116499527606861824","","","","","2011-09-21 13:10:26 +0000","web","Following 95 folks now, that sounds better than 500. Thus ends The Great Twitter purge of 2011. No offence to the unfollowed, things change."
|
||||
"116277804932407296","","","","","2011-09-20 22:29:23 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","How rude! That hipster absconded with my poem. #yyj"
|
||||
"115292726479687680","115285346626977794","14315117","","","2011-09-18 05:15:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose Hell yeah, I'm in."
|
||||
"115274793099591680","115273460586004480","14315117","","","2011-09-18 04:03:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose Heh only in rock band, but I'm pretty awesome at it!"
|
||||
"115272340924928000","115271665558106112","14315117","","","2011-09-18 03:54:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose Need a drummer?! :p"
|
||||
"115258165699948544","115258015053131776","11573212","","","2011-09-18 02:57:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jcrossley3 So do I :)"
|
||||
"115168251935334401","","","","","2011-09-17 21:00:25 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Leveled up from peasant to plebeian. Or something."
|
||||
"114887222804750338","","","","","2011-09-17 02:23:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Oh yeah, earlier today I hit Inbox 0. Some resolved with phone calls and some just purged, but I'm at 0 nonetheless!"
|
||||
"114792813299900417","114791925881651201","894911","","","2011-09-16 20:08:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I can't think of a single console game I would be excited to buy."
|
||||
"114792655443066881","114791925881651201","894911","","","2011-09-16 20:07:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I'd get an iPad before a console for a gaming machine. Still expensive but I would use it way more."
|
||||
"114792516401905664","114791925881651201","894911","","","2011-09-16 20:07:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Maybe, I'm not much of a console gamer anyway though. I far prefer a computer for FPSs."
|
||||
"114791662403858432","114791305271455745","894911","","","2011-09-16 20:03:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Good deal! No tv yet though :( I'll probably wait for a next gen console at this point."
|
||||
"114790953063157760","114790588670427137","14864447","","","2011-09-16 20:01:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle @jimroepcke Agreed, I'm going back to Linux this weekend ;-)"
|
||||
"114790291483013120","114790073718947841","14864447","","","2011-09-16 19:58:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle @jimroepcke Yeah I understand that, but 1/2 the time I want to go full screen I want to do so on my non-primary display. blurgh!"
|
||||
"114789031245643776","114758404643356672","14315117","","","2011-09-16 19:53:32 +0000","web","@dainerose O hai! Are you still feeling bad?"
|
||||
"114786632657416193","114784234744463360","7549272","","","2011-09-16 19:44:00 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@boucher @tlrobinson I think it identifies you by weight and has some tricks to differentiate folks of similar weights."
|
||||
"114782135432384512","114781142544154624","894911","","","2011-09-16 19:26:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke It's double plus funny because people still want maximize. New complaint: ""It doesn't do X unless it's fullscreen, but FS sucks"""
|
||||
"114758597153533952","114757693016776704","14206068","","","2011-09-16 17:52:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tlrobinson And lastly, one-click google apps DNS hosting. That's just icing."
|
||||
"114758307213869056","114757693016776704","14206068","","","2011-09-16 17:51:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tlrobinson Dreamhost never tries to lock your domains in, transfer codes are plainly visible in the admin at all times. Great DNS uptime."
|
||||
"114757957551521793","114757693016776704","14206068","","","2011-09-16 17:50:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tlrobinson I looked at NameCheap but it's $20/domain/year or something, after about 5 domains it's cheaper to go unlimited w/ @Dreamhost."
|
||||
"114757799770193920","114757578407424001","14206068","","","2011-09-16 17:49:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tlrobinson If you have many domains get a cheap hosting account with @Dreamhost and host unlimited domains, cheap to register to boot."
|
||||
"114752125594107906","114751980970328064","29777587","","","2011-09-16 17:26:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@pharkmillups Great air flow under that too. Nice one!"
|
||||
"114751976218177536","","","","","2011-09-16 17:26:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","The new iPod nano seems terrible for exercising and random folks on the web back that up. Anyone selling a 5th gen?"
|
||||
"114750231006031872","114749905234427904","14864447","","","2011-09-16 17:19:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Sami create variable name foo, make equal ""bad"". Big rock is best rock! http://t.co/0JBu7ePg","http://www.youtube.com/watch?v=i_APoSfCYwU"
|
||||
"114749624287379457","114749380342460416","14864447","","","2011-09-16 17:16:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Yes, retweeted with my broken grammar in all its glory :)"
|
||||
"114749170463686657","114747656319930369","14864447","","","2011-09-16 17:15:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle Creates a function scope variable name foo, a global called bar, and assigns each of them the value ""baz"""
|
||||
"114520971293114368","114520389962567680","3655191","","","2011-09-16 02:08:21 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@isaiah ha ha, fair enough! And agreed. I forget how long it's been out since I only jumped in a couple months back."
|
||||
"114519863279632384","114518152221687808","3655191","","","2011-09-16 02:03:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@isaiah I'd use it if it also deleted derived data. I hope they sort this stuff out in a timely fashion, besides the bugs I like Xcode 4."
|
||||
"114519619364069377","","","","","2011-09-16 02:02:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Earlier today I got off to a false start, wasn't breathing properly and stopped because of chest pain. Probably another 1 - 2 km."
|
||||
"114519250965766144","","","","","2011-09-16 02:01:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Just went for a 7.5 km jog. I walked more than I'd like and it took 75 mins but that's still an achievement for me. I didn't even hate it!"
|
||||
"114068354167341056","114053923467313152","18137723","","","2011-09-14 20:09:49 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@raganwald wah?! Reminds me of Lisp's eq? eql? and equal? No excuse for that in a modern language."
|
||||
"113652761807175680","","","","","2011-09-13 16:38:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Since nobody seems to get this right, here's my take on a liberal email regex that won't piss off your users: [^@]+@[^.@]+(\.[^.@]+)+"
|
||||
"109368262315360256","109366488716165123","14231571","","","2011-09-01 20:53:20 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@marcoarment what's the weight of the SSD? Curious how doubler + SSD stacks up against optical."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,30 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"130372980390891520","130156240365043712","14231571","","","2011-10-29 19:58:35 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@marcoarment Thanks. That's really fitting because ads in paid content have pissed me off my entire life."
|
||||
"130066833922469888","","","130008837834031105","752673","2011-10-28 23:42:04 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @jeresig: Look at the SHA hashes on the right hand: http://t.co/4WGVhNuN *head explodes*","https://github.com/vog/beautify_git_hash/commits/master"
|
||||
"129244914377691136","","","","","2011-10-26 17:16:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","$ reddis-^H^H^H^His-cli"
|
||||
"128830811813330944","128829374765072385","14864447","","","2011-10-25 13:50:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle An inelegant workaround might be to monkey with the font size until the block is on a single page."
|
||||
"127562109671321602","127540482799710208","14315117","","","2011-10-22 01:49:11 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@dainerose Sweet! Now I'm gonna be thinking about food all weekend."
|
||||
"125385181455597568","","","125384155986006017","16144669","2011-10-16 01:38:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @rwaldron: History seems to indicate that real change follows epic violence."
|
||||
"125384478217601025","","","","","2011-10-16 01:36:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Now Citibank is illegally detaining customers for trying to close their accounts. Possibly arresting them. http://t.co/WwRudJzj #wtfusa","http://www.youtube.com/watch?v=TH3kiaJ1-c8"
|
||||
"125289932427247617","125286757171335168","894911","","","2011-10-15 19:20:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Tell me about it. That is an excellent video! Too bad it contains no kittens, nobody will watch it."
|
||||
"125285313680637952","125283167388184576","894911","","","2011-10-15 19:02:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@blogdiva @anonyops_ @JimRoepcke People often say it's hyperbole to call the US a police state. Where's the line? Is that how freedom looks?"
|
||||
"125280941873700864","","","","","2011-10-15 18:44:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Epic rant about my Nexus One: http://t.co/GedLt9CO I think I covered most of my biggest complaints.","http://www.reddit.com/r/canada/comments/ld4ws/siri_why_do_you_do_this_to_me/c2rqlc7"
|
||||
"125014478017409024","125012163545935872","894911","","","2011-10-15 01:05:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Looks easy enough. I wonder if Rogers charges for them. http://t.co/4pjKqDdV","http://www.techradar.com/news/mobile-computing/tablets/how-to-make-your-own-ipad-or-iphone-4-micro-sim-681020"
|
||||
"125011854652219392","125010439280140288","894911","","","2011-10-15 00:55:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Sweet! After all that I hope you have a micro SIM! (or a good pair of scissors :)"
|
||||
"124998185587449857","124997140090060800","894911","","","2011-10-15 00:01:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I have no idea but it should be illegal. I wanted my10 and had a contract till 2013 anyway. Never renewing again though."
|
||||
"124996980958167040","124995919090429952","894911","","","2011-10-14 23:56:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke It does kind of seem like they're giving you the runaround. I hope you can get your hands on it today."
|
||||
"124996675185033216","124995207904239616","894911","","","2011-10-14 23:55:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke No, But I changed my plan this year and that renewed my contract. Yay! ?_? North American telecom industry is an assfuckfest."
|
||||
"124995110306979840","124981173058408448","894911","","","2011-10-14 23:48:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Yep. Now I just have to not change my plan until my contract is up and I'll be free. That's not till 2014 though? #fuckrogers"
|
||||
"124994829020176384","124988192674942976","894911","","","2011-10-14 23:47:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke @bryan_kyle They upped that to 30 months sometime in the last couple of years. They're probably aiming for 3 years. Fuck Rogers."
|
||||
"124994063081549824","","","","","2011-10-14 23:44:41 +0000","<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>","Geeks on your computer on Friday evening, help me improve this logic to find the next available ID from a fixed list :) http://t.co/QK45Nc4l","http://stackoverflow.com/q/7774691/188752"
|
||||
"124926684087599105","124925522613510144","894911","","","2011-10-14 19:16:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke @ajordens Yup, he had his finger on the trigger at 12:30 or whenever it was available in Canada."
|
||||
"124925444159049728","124918055645097986","14315117","","","2011-10-14 19:12:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose Yeah no fair! That'll teach me to over think things."
|
||||
"124925270607134720","124919055063846912","894911","","","2011-10-14 19:11:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke @ajordens My friend at work here got his around 11. The UPS guy just waltzed in and cheerily said ""Joseph, your iPhone is here!"""
|
||||
"124907342776123393","","","","","2011-10-14 18:00:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Merry iPhone day! :)"
|
||||
"124696480677232640","124691764245303296","894911","","","2011-10-14 04:02:12 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@JimRoepcke 64g black. Which oneS did you get?!"
|
||||
"124690573448855552","124621465361457152","894911","","","2011-10-14 03:38:44 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@JimRoepcke I hummed and hawed so my delivery estimate is Oct 25 - Nov 1. Noooooooo! I don't think I can face you till then ;-)"
|
||||
"123262459367800832","","","123245922191818752","20079975","2011-10-10 05:03:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @polotek: Dont mistake skepticism for close-mindedness. Sometimes, even when you're right, you have to convince people."
|
||||
"122461328978882560","","","121724384338653184","14417477","2011-10-08 00:00:30 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @benjaminfox: If you're not eating at @PiCNiC_Coffee twice a day you need to reevaluate some life choices."
|
||||
"122107202529009665","","","122083143091105792","84351228","2011-10-07 00:33:20 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @timberners_lee: Steve Jobs and the actually usable computer http://t.co/qiLlTovW","http://www.w3.org/QA/2011/10/steve_jobs.html"
|
||||
"121317518118883331","121313931288526849","7198302","","","2011-10-04 20:15:24 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@jonathanstark I find it useful too, will probably miss it when I go back to an iPhone."
|
||||
"120929853414440961","","","120927738726068224","53010195","2011-10-03 18:34:58 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RT @mraleph: fibonacci server... rofl http://t.co/LUOrTJoj","https://github.com/glenjamin/node-fib"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,54 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"140582337091088384","140577908308717568","44287241","","","2011-11-27 00:06:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@BradFazner It's all downhill from here."
|
||||
"140582125517799426","140579210866601985","44287241","","","2011-11-27 00:06:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@BradFazner Heh, not Jobs, the guy asking the question. Or was that the old Reddit switcheroo? http://t.co/6QFb9G73","http://www.reddit.com/r/bestof/comments/m26na/ahhhthe_old_reddit_switcharoo/"
|
||||
"140537319626260481","","","","","2011-11-26 21:08:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Is it just me or does this sound a lot like @hotdogsladies' nerd impression? http://t.co/88dPfmFe","http://www.youtube.com/watch?v=TaX25rxOY8Q&t=25m04s"
|
||||
"140165759706992640","","","140163055567912960","197495418","2011-11-25 20:31:35 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @DalaiLamaInBed: Even more important than the warmth and affection we receive, is the warmth and affection we give in bed."
|
||||
"140138383799357441","","","140124301549510656","33493","2011-11-25 18:42:49 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @peterc: Just saw this quote: ""All code in any code-base should look like a single person typed it, no matter how many people contrib ..."
|
||||
"139016000761901057","139011893049303040","11573212","","","2011-11-22 16:22:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jcrossley3 lol, no worries that was understood 100% :)"
|
||||
"139006564815220736","138998894947336192","11573212","","","2011-11-22 15:45:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jcrossley3 That probably gets more laughs from folks outside North America. http://t.co/QJlqtKof","http://en.wikipedia.org/wiki/Fanny#In_slang"
|
||||
"139003541745438720","138949287764705280","24140909","","","2011-11-22 15:33:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tchoj Some pics from BC: http://t.co/lxUxRH6d http://t.co/P2VcVFQY http://t.co/Jaqkfm2P http://t.co/tT81k9Zm","https://picasaweb.google.com/113145150458563580631/SwanLakeNatureSanctuary#5661555649449944882","https://picasaweb.google.com/113145150458563580631/FirstSnowInShawnigan02#5661387435413773650","https://picasaweb.google.com/113145150458563580631/LakeSunrise#5661387129516806402","https://picasaweb.google.com/113145150458563580631/SongheesSunset#5676888537638410386"
|
||||
"139002757515448320","138949287764705280","24140909","","","2011-11-22 15:30:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tchoj Yeah, I just got a all my photos scanned. As soon as I upload them to Picasa web I'll let you know. (They won't all be public)"
|
||||
"138799575573078017","","24140909","","","2011-11-22 02:02:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tchoj Look what I found :) http://t.co/3p9bZTJB","http://twitpic.com/7hn1i0"
|
||||
"138288396870225921","138254284788744193","33493","","","2011-11-20 16:11:37 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@peterc ""First, you do a handstand ..."""
|
||||
"138013579570978816","138008405016190976","95938827","","","2011-11-19 21:59:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@hij1nx @dmitrysoshnikov jQuery's type function isn't too shabby. Property lookup seems really fast in JSC. http://t.co/vOEXoQyy","http://jsperf.com/totype/4"
|
||||
"138008065218838529","138006044172500992","59884976","","","2011-11-19 21:37:41 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@DmitrySoshnikov @hij1nx Definitely good to know, but I agree in most cases it probably doesn't matter."
|
||||
"137970989844795392","137966803002466304","95938827","","","2011-11-19 19:10:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@hij1nx @dmitrysoshnikov Hmmm. Only in Chrome though. Safari and Firefox don't like the closure."
|
||||
"137970445608697857","137966803002466304","95938827","","","2011-11-19 19:08:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@hij1nx @dmitrysoshnikov Caching toString is slightly faster. http://t.co/p9ORZje9","http://jsperf.com/totype/2"
|
||||
"137334467365834756","","","137327194912464896","894911","2011-11-18 01:01:03 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @JimRoepcke: ZOMG, Xcode finally has Balance Delimiter! (in Editor->Structure) I have bound it to Cmd-Shift-B as in TM and will no ..."
|
||||
"137268942593994753","137260595392159744","894911","","","2011-11-17 20:40:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke You really did do a fantastic job. Congrats!"
|
||||
"137206481815748608","137141796827435008","95938827","","","2011-11-17 16:32:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@hij1nx Holy uncanny valley. Straight out of a horror flick."
|
||||
"137204693947518976","","","137170634236100608","396238794","2011-11-17 16:25:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @CodeWisdom: ""A clever person solves a problem. A wise person avoids it."" - Einstein"
|
||||
"136898996831662081","136896158059606016","14315117","","","2011-11-16 20:10:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose Obviously you need more LSD. That site is amazing!"
|
||||
"136898465245573121","136894499732471808","14315117","","","2011-11-16 20:08:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose I didn't notice that! I would get one if it didn't mean supporting PETA."
|
||||
"136829810390478850","","","","","2011-11-16 15:35:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","PETA has a website that promotes *skinning kittens*. http://t.co/1ZDPwUBx Report them to PETA now! http://t.co/2fZrROH1","http://features.peta.org/PETASeaKittens/","http://www.peta.org/about/contact-peta/report-cruelty.aspx"
|
||||
"136627575257710592","136624131423744001","14231571","","","2011-11-16 02:12:07 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@marcoarment That said I'm glad to be back on the iPhone with Reeder."
|
||||
"136627381732511744","136624131423744001","14231571","","","2011-11-16 02:11:20 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@marcoarment Best I found for my Nexus One was newsrob. Good app, stand up developer as well."
|
||||
"136468596091133952","","","136319309298409472","14133001","2011-11-15 15:40:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @subdigital: Holy crap. CocoaPods looks amazing. http://t.co/uOu10PAY -- It's still early on, but this looks promising. #rubygems_f ...","https://github.com/CocoaPods/CocoaPods"
|
||||
"136163767951175680","","13753352","","","2011-11-14 19:29:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@crashplan Seems to be working again."
|
||||
"136152898693365763","136151298973253634","13753352","","","2011-11-14 18:45:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@crashplan Thanks :)"
|
||||
"136151324306849792","","13753352","","","2011-11-14 18:39:39 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@crashplan I should mention that 2 other computers in the office here are in the same boat. All using CrashPlan+."
|
||||
"136151189241860097","","13753352","","","2011-11-14 18:39:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@crashplan My computer hasn't backed up to CrashPlan Central for just over 4 hours now. Is there a server status page I can check?"
|
||||
"135862186194124800","135861676024135680","2319611","","","2011-11-13 23:30:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@shaver Fair enough. It is a constant struggle, and one I gave up if a proxy doesn't cut it. I spend my time & money elsewhere instead."
|
||||
"135860802203820033","135804940391161856","2319611","","","2011-11-13 23:25:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@shaver (and a fake US mailing address. 90210 seems popular, I use one in Seattle)"
|
||||
"135859620773240834","135804940391161856","2319611","","","2011-11-13 23:20:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@shaver All you need is a poor man's SOCKS proxy: ssh -ND <port> <host>"
|
||||
"135424754621489152","","","135424264387047425","15540222","2011-11-12 18:32:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @rauchg: Redis gets INCRBYFLOAT:
|
||||
http://t.co/j1SvwfbR","https://github.com/antirez/redis/commit/5574b53eae1743cca9eed5a9dd25bf418c974701"
|
||||
"135408972294402049","135285323767877632","894911","","","2011-11-12 17:29:49 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke It's definitely not easy but I've felt much better after ditching carbs & sugar (except Saturdays). Hope you feel better!"
|
||||
"135396267009392640","135311810696978432","5637652","","","2011-11-12 16:39:20 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@codinghorror Never done a 19 hour flight, but trips with 2-3 legs that are 30 hours door to door are also really draining."
|
||||
"134285361894535169","","","134172211882901504","33423","2011-11-09 15:04:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @gruber: We?re losing a great bozo filter. Anyone who endorsed Flash player for mobile was someone you knew, immediately, was stupid."
|
||||
"134083547391737856","","","133989653782077440","749863","2011-11-09 01:43:03 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @hotdogsladies: FWIW, iOS trick I learned from @seoulbrother that changed my game:
|
||||
|
||||
Type ""welll"" to get ""we'll,"" ""illl"" to get ""I'll, ..."
|
||||
"133925601181581312","133796375480639488","894911","","","2011-11-08 15:15:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke That would be so awesome!"
|
||||
"133923930837745664","","","133796375480639488","894911","2011-11-08 15:08:47 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @JimRoepcke: The iTunes library should become a system service, and the iTunes app should be a frontend to that service."
|
||||
"133772345440608257","","","","","2011-11-08 05:06:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","You don't need a book on emacs or vim. They both have excellent tutorials and docs built right into them. #oreilly #suckers #onetrueeditor"
|
||||
"133750262379708419","","","133617324073811968","91333167","2011-11-08 03:38:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @climagic: ssh-copy-id user@remotehost # Automatically installs your public key to the remote host (this actually is included in the ..."
|
||||
"133732648341344256","133725655308308480","14231571","","","2011-11-08 02:28:42 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@marcoarment I can't decide which is more annoying: whitelisting sites with NotScripts, or the web with JS on by default."
|
||||
"133732338197725184","133725655308308480","14231571","","","2011-11-08 02:27:28 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@marcoarment I try to do the same with boxes that appear right over the content asking to subscribe to something or take a survey."
|
||||
"133324381203070976","","","133243584144084992","14231571","2011-11-06 23:26:24 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @marcoarment: Just got my first spam-reply in a while. It made me realize that Twitter's been MUCH better at spam control for the las ..."
|
||||
"132945910853414913","132930349549359104","894911","","","2011-11-05 22:22:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke If you're playing music and want to browse around your library at the same time what does a hybrid Play/Pause/Select button do?"
|
||||
"132472104317763584","","","132453840506204161","85645271","2011-11-04 14:59:45 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @AaronHillegass: At the end of my MacTech talk, I shared the questions that keep me awake at night. TUAW found it worth writing about ..."
|
||||
"132234102509273089","132231716210360320","14315117","","","2011-11-03 23:14:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose Now your phone won't be burning hot all night."
|
||||
"132197068482686976","132196040785920002","894911","","","2011-11-03 20:46:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke If you use iCloud you also get an alert on your Mac. Of course then you have to be looking at your computer, may or may not help"
|
||||
"132162237963051008","132160149770088448","749863","","","2011-11-03 18:28:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@hotdogsladies Wrapping at 78-80 makes working on and comparing files side by side much nicer. Can even fit 3 files side by side at 1920xFoo"
|
||||
"131798571677790208","","","131710448545443840","69557228","2011-11-02 18:23:22 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @abozhilov: So you need arguments default value in JS? Possible approach: http://t.co/my92CDAN","https://gist.github.com/1333507"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,64 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"153015439734214656","","","153002963185577984","19575586","2011-12-31 07:31:38 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @hackernewsbot: Facebook no longer supports IE7... http://t.co/Fx5hIqhV","http://thenextweb.com/facebook/2011/12/30/not-a-fan-of-timeline-on-facebook-use-ie7-facebook-stopped-supporting-it/"
|
||||
"152975449104990208","","","","","2011-12-31 04:52:43 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","yyc -> yyj, last leg of yxu -> yyj trip home! ?"
|
||||
"152288923958251520","152286855675641857","39448955","","","2011-12-29 07:24:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@A_to_the_J_ i'm so sorry! don't breath."
|
||||
"152106527031955456","","","","","2011-12-28 19:19:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","OH: ""I'm just being logic."""
|
||||
"151782151803772928","","","151504628784185344","3621751","2011-12-27 21:50:59 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @abackstrom: How to Pronounce Hors d'oeuvres http://t.co/KeqlGTPz","http://www.youtube.com/watch?v=o1-ndsRPxbM&feature=share"
|
||||
"151448040052502528","","","151381620740472832","15687937","2011-12-26 23:43:21 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @devongovett: Node.js modules you should know about: JSONStream http://t.co/KIOUXZGQ","http://j.mp/vpNcKZ"
|
||||
"151362743239323648","","","151356590769963008","30923","2011-12-26 18:04:24 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @rands: Anytime? anytime? I'm sitting there waiting for my computer or phone to do something, I silently seethe with compounding inne ..."
|
||||
"151128504677842944","151109218387234816","894911","","","2011-12-26 02:33:38 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke I'll have to check that out. Just saw the movie and it was really good."
|
||||
"151035779425107969","","","151018831291219968","197495418","2011-12-25 20:25:10 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @DalaiLamaInBed: If developing qualities like love, compassion, generosity & patience is to be effective, we must practice them in ou ..."
|
||||
"151035711443836928","","","150992453636329473","749863","2011-12-25 20:24:54 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @hotdogsladies: ""A crummy commercial?!? Son?of a?*BITCH!*""
|
||||
|
||||
Perfect."
|
||||
"150756003670003712","150726551976165378","894911","","","2011-12-25 01:53:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I hear this is the form factor of the Nebula Nexus S III HD http://t.co/VEgnjVlH","http://www.youtube.com/watch?feature=player_detailpage&v=wZ9RNhJAgjE#t=30s"
|
||||
"150725435280474112","","","","","2011-12-24 23:51:58 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","I'm pretty sure Christmas is about world domination."
|
||||
"150707632448094208","","","150704879952859136","113713261","2011-12-24 22:41:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @ChromiumDev: A nice xmas gift, in Canary you can now enable ECMAScript Harmony features via about:flags https://t.co/mE8hC2B9","https://plus.google.com/113127438179392830442/posts/T615Md5JPQG"
|
||||
"150705598089007104","","","150680391328608257","26706944","2011-12-24 22:33:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @kevinpo: THIS is a christmas tree: http://t.co/2kNDeEI5","http://imgur.com/U1KoD"
|
||||
"150676908382756864","150674035192238080","894911","","","2011-12-24 20:39:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke But, but, ? it's open! And the background moves. You can't do that on a closed OS."
|
||||
"149612597514211328","","","149577765732093953","12811302","2011-12-21 22:09:57 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @chrisblizzard: We un-prefixed the WebSockets API in Firefox 11, coming to Aurora very soon. https://t.co/JN9trcVZ","https://bugzilla.mozilla.org/show_bug.cgi?id=695635"
|
||||
"149507013427204101","149469380265246721","39448955","","","2011-12-21 15:10:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@A_to_the_J_ Eerie fake smiles and poses."
|
||||
"149244053920288770","","","","","2011-12-20 21:45:29 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","(And not only because of the spurious apostrophe)"
|
||||
"149243862592921600","","","","","2011-12-20 21:44:45 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","I'm really creeped out by photos like this. http://t.co/4PV3JzWG","http://twitter.com/_sjs/status/149243862592921600/photo/1"
|
||||
"149133329063612416","","","","","2011-12-20 14:25:31 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Is it time to declare that memory now means storage? It jives with what people think of as memory anyway so maybe it's for the best."
|
||||
"149133055972491264","","","","","2011-12-20 14:24:25 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","I never know if people are talking about storage or actual memory (i.e. RAM) when they say memory. Anobit is about storage, not memory."
|
||||
"148870096113238016","","","","","2011-12-19 20:59:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","iTunes Match has arrived in Canada, along with purchased TV Shows. Hooray!"
|
||||
"148636030164152320","148612526865784833","39448955","","","2011-12-19 05:29:25 +0000","<a href=""http://www.tweetings.net/"" rel=""nofollow"">Tweetings for iPhone</a>","@A_to_the_J_ you just leveled up!"
|
||||
"148583588202430464","","","","","2011-12-19 02:01:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Arrived in YYZ."
|
||||
"148583532103614465","148494603375493121","14315117","","","2011-12-19 02:00:49 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose Will do :) I get to be tech support for my parents!"
|
||||
"148442622883672064","","","","","2011-12-18 16:40:53 +0000","<a href=""http://www.tweetings.net/"" rel=""nofollow"">Tweetings for iPhone</a>","Seeing a girl carrying a box that says ""ugg"" I just realized what ugg boots are. ""out of it"" doesn't begin to describe me. Good or bad?"
|
||||
"148438873222033410","148425217105068033","39448955","","","2011-12-18 16:25:59 +0000","<a href=""http://www.tweetings.net/"" rel=""nofollow"">Tweetings for iPhone</a>","@A_to_the_J_ lol, big O(n) ... Sorry, comp sci joke."
|
||||
"148414942758977536","","","","","2011-12-18 14:50:54 +0000","<a href=""http://www.tweetings.net/"" rel=""nofollow"">Tweetings for iPhone</a>","Cabbie: ""Have a good flight.""
|
||||
Me: ""You too!""
|
||||
Cabbie: ""Everyone always says that."""
|
||||
"148408938671517696","","","","","2011-12-18 14:27:02 +0000","<a href=""http://www.tweetings.net/"" rel=""nofollow"">Tweetings for iPhone</a>","YYJ ?YYC"
|
||||
"148070457940254721","","","147981135392157696","215455741","2011-12-17 16:02:02 +0000","<a href=""http://tweetli.st/"" rel=""nofollow"">TweetList Pro</a>","RT @macromates: Tip: You can click on an icon in the sidebar to open it instantly. /cc @gregorysean"
|
||||
"147814783796776962","147811248929648641","20693","","","2011-12-16 23:06:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tanepiper I think BBEdit does as well. But I'm kind of stuck on TextMate, with some Emacs. Last thing I need is another editor :)"
|
||||
"147811105903882240","","","147802484495220736","215455741","2011-12-16 22:51:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @macromates: Learn all about the new .tm_properties config files: http://t.co/338jaq39","http://blog.macromates.com/2011/git-style-configuration/"
|
||||
"147811090984747010","","","147765019948486657","215455741","2011-12-16 22:51:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @macromates: @_sjs ??T ? ?4 ? enter the shortcut (This isn't new in 2.0, works in 1.x as well, though without the ?4 shortcut.)"
|
||||
"147811003910991875","","","","","2011-12-16 22:51:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I love how TextMate 2 maintains the selection when you wrap it with quotes or parens."
|
||||
"147784108121128960","","","147466309960089600","22199970","2011-12-16 21:04:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @LeaVerou: Introducing dabblet: An interactive CSS playground (a.k.a. what I've been working on for the past 3 weeks) http://t.co/QOE ..."
|
||||
"147765334013784064","147765019948486657","215455741","","","2011-12-16 19:49:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@macromates Can't believe I didn't know about this. Thanks for the pointer!"
|
||||
"147756118972694528","","215455741","","","2011-12-16 19:12:58 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@macromates Any plans for selecting bundle items by shortcut? e.g. to find items that clobber basic native shortcuts: Ctrl-[abefknpy]"
|
||||
"147755521221472257","","","","","2011-12-16 19:10:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Something in TM2's Ruby bundle is clobbering Ctrl-f and I can't find offending the item. Don't clobber native shortcuts! ?_?"
|
||||
"147467517231775744","","","","","2011-12-16 00:06:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","rmate is slick (especially if you have a dyndns hostname), and tm_properties > tmproj"
|
||||
"147466520375721984","","","","","2011-12-16 00:02:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Decided to just jump into TextMate 2 and see what it's like. So far I like what I see, and think this can be my daily editor."
|
||||
"147460448856453120","","","147388803932372993","1671811","2011-12-15 23:38:05 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @paul_irish: Really like this HTML5 & CSS3 Advent Calendar: http://t.co/WQ7Q37qB Pro techniques inside.","http://html5advent2011.digitpaint.nl/"
|
||||
"147385969065197568","","","","","2011-12-15 18:42:07 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","http://t.co/JwF1zAYE","http://wastm2released.com/"
|
||||
"147369626941136897","","","","","2011-12-15 17:37:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Favourite song: http://t.co/t32XMtI9","http://youtu.be/-twF9VikjUA"
|
||||
"147343733006942208","147338586042277889","14231571","","","2011-12-15 15:54:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@marcoarment I like Menlo, closely followed by Consolas. Monaco is nice if you like something lighter."
|
||||
"147343411777769473","","","147300039264448512","14620179","2011-12-15 15:53:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @stoyanstefanov: Performance calendar day #14: Say hello to icy: an iOS app to inspect HTTP traffic http://t.co/I1T8Q5G8 + http://t.c ...","http://calendar.perfplanet.com/2011/i-see-http/"
|
||||
"147335020942606337","","","147213712888053760","668423","2011-12-15 15:19:41 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @mikeal: even better support in npm for checking node_modules in to git http://t.co/00xXDNI5","https://github.com/isaacs/npm/issues/1886#issuecomment-3157706"
|
||||
"147334856882397184","","","147316248542318593","14335498","2011-12-15 15:19:01 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @newsycombinator: Microsoft decides to automatically update Internet Explorer for everyone http://t.co/WC4oNQ5S","http://j.mp/tp0PwB"
|
||||
"147138979903442944","147138459495186432","14315117","","","2011-12-15 02:20:41 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@dainerose lol, that's just a part of constantly improving. It's a good thing!"
|
||||
"147113045519380480","147042932720025600","14315117","","","2011-12-15 00:37:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose Don't worry, in another week (or month, or year?) it will probably look ugly again."
|
||||
"147112201948372993","147050940497801216","15687937","","","2011-12-15 00:34:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@_romac @devongovett Sync w/ your computer, delete Twitter in iOS, update all, then sync again. Haven't tried it but it should work."
|
||||
"146335180460793857","","","","","2011-12-12 21:06:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","The TM2 build is now 404. Anyone have the tarball and willing to send it my way?"
|
||||
"146043512289366016","146042862306476033","39448955","","","2011-12-12 01:47:41 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@A_to_the_J_ oh, I didn't know identica updated my twitter. I just remembered identica and thought it was funny."
|
||||
"144902674977013760","144902511516590081","894911","","","2011-12-08 22:14:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Derp. Sure will. Leave it on your computer and then sync instead of reinstalling."
|
||||
"144902392385769473","144901307956858880","894911","","","2011-12-08 22:13:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Uninstall Twitter, update all, install Twitter."
|
||||
"144898667084648450","144895282251956224","894911","","","2011-12-08 21:58:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Doesn't look like you can add people to lists."
|
||||
"144852332222480384","144844283759964160","39448955","","","2011-12-08 18:54:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@A_to_the_J_ Must be the Ron Jeremy balls."
|
||||
"144851683263000578","","","","","2011-12-08 18:51:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I discovered autossh this week and it is great. It just works. If you use ssh for port forwarding and get disconnected you want autossh."
|
||||
"142427878812942336","","","142404567995387904","22199970","2011-12-02 02:20:27 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @LeaVerou: Inner border-radius = outer border-radius -padding -border-width. Don't use the same for both ever again, it's pig ugly ht ..."
|
||||
"142426343014010880","","","142348849950896129","894911","2011-12-02 02:14:20 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @JimRoepcke: ""Cool to be Clever"" for iPad is now on the App Store. The story of Edson Hendricks, who helped design the Internet. http ..."
|
||||
|
Can't render this file because it has a wrong number of fields in line 3.
|
|
|
@ -1,76 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"164550927754338304","","","164549141794521088","1671811","2012-02-01 03:29:33 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @paul_irish: Did a quick little jQuery.ajax() prefilter plugin adaptation to cache results in localStorage for better perf https://t. ..."
|
||||
"164525837914341376","","","","","2012-02-01 01:49:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Relevant to that retweet, a great movie called The Boat That Rocked (a.k.a. Pirate Radio, in North America) http://t.co/7k9IS0p4","http://en.wikipedia.org/wiki/The_Boat_That_Rocked"
|
||||
"164525598742552576","","","164519898947653632","267433199","2012-02-01 01:48:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @nddrylliog: Neil Young is right: piracy is the new radio. http://t.co/1Ok4EMNF","http://gigaom.com/2012/01/31/neil-young-is-right-piracy-is-the-new-radio/"
|
||||
"164525378646446080","","","","","2012-02-01 01:48:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Today's best headline: ""Teen Anal Nightmare P2P lawyer charged with felony"" http://t.co/MixCudFO","http://arstechnica.com/tech-policy/news/2012/01/p2p-porn-lawyer-charged-with-felony.ars"
|
||||
"164514285869993985","","894911","","","2012-02-01 01:03:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Have you seen StratifiedJS? http://t.co/WOP6oycC","http://onilabs.com/stratifiedjs"
|
||||
"164458332403400705","164454618967969793","136077128","","","2012-01-31 21:21:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitcambridge Too funny."
|
||||
"164457270065905664","","","","","2012-01-31 21:17:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Redis is fast. Mocking the subset of commands I use in Ruby only sped up tests by a second or two. Guess I can throw that mock away."
|
||||
"164192165243785217","164187687694245888","14864447","","","2012-01-31 03:43:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@bryan_kyle @ajordens When I lived in terminals on Linux I sometimes wanted to split horizontally. Nowadays screen+Divvy+SizeUp get me by."
|
||||
"164128922055872512","","","164025952492453888","1568","2012-01-30 23:32:39 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @adambrault: Ok, this is awesome: ShareJS is an operational transform library for Node.js & browsers written by an ex-Wave engineer. ..."
|
||||
"164126794407092224","","","","","2012-01-30 23:24:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Cool! @maccman and @mjackson used my strftime for JS library on twitter.github.com. For fun, see if you can find Larry on that page."
|
||||
"164025509112590336","","","163077529207439360","97933","2012-01-30 16:41:43 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @jzawodn: One of the best Quora answers ever: http://t.co/pg2LYoiK","http://www.quora.com/Why-are-software-development-task-estimations-regularly-off-by-a-factor-of-2-3/answer/Michael-Wolfe?srid=kw"
|
||||
"163746534570213376","163489914258862080","894911","","","2012-01-29 22:13:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Looks pretty nice. Same thing as Tame.js. I would use Tame.js or node-fibers over it because I prefer JavaScript."
|
||||
"163452395790151682","","","","","2012-01-29 02:44:22 +0000","<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>","""[...] require all movie moguls to use a special ?Hollywood Edition? of our products."" http://t.co/SgGRoUX4 via @AaronKlein","http://www.aaronklein.com/2012/01/hollywood-edition/?utm_source=twitter"
|
||||
"163342576890544128","","","","","2012-01-28 19:27:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","CoffeeScript looks likes a bunch of tokens were just splattered on a page, and I'm left to try and sort it out, make sense of it."
|
||||
"163341409171148801","","","163340840478056448","2006261","2012-01-28 19:23:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @maccman: You can remove HTML5 cache manifests in Chrome by going to: chrome://appcache-internals/"
|
||||
"163340784882548736","","","","","2012-01-28 19:20:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","CoffeeScript is *too* clean. It makes it difficult to parse and comprehend at a glance. 4 space indent and return would improve readability."
|
||||
"162941921810071552","","","162908971374620672","7955612","2012-01-27 16:55:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @ncb000gt: Awesome: http://t.co/nxkMnEN0","http://i.imgur.com/MuTMR.jpg"
|
||||
"162941782118764544","162932447162531840","39448955","","","2012-01-27 16:55:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@A_to_the_J_ lol. Which is apparently, more or less, like creeping on me anyway ;-)"
|
||||
"162777451951427584","162776323973066753","12819682","","","2012-01-27 06:02:23 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@mitchellh Me too. Everything from Cab Calloway to The Beatles to Daft Punk to NOFX to the Scissor Sisters. Fingers tapping in time."
|
||||
"162758273030819840","","","162753343893147649","20904050","2012-01-27 04:46:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @viticci: The Problem With The iOS Home Screen http://t.co/ETYQsQUP","http://mcstr.net/xpsE4G"
|
||||
"162757027238653953","162755285923012609","15687937","","","2012-01-27 04:41:13 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@viticci @devongovett It's funny that the HIG states people understand folders. Un-geeks neither like nor understand filesystem hierarchies."
|
||||
"162753519831629824","","","","","2012-01-27 04:27:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I have performed 47,739 searches w/ Google since January 15th, 2006. While I am signed in anyway. My first search was for Camino extensions."
|
||||
"162751085273026560","","","162711201434976257","15647796","2012-01-27 04:17:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @pfleidi: Hmm. Well ... /cc @marcoarment #buildandanalyze http://t.co/dzn9cgi4","http://twitter.com/pfleidi/status/162711201434976257/photo/1"
|
||||
"162643552524976128","","","162639322581966848","903351","2012-01-26 21:10:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @elliottkember: fork it clone it pull it tweak it fix it push it pull-request it"
|
||||
"162617531788558337","","","","","2012-01-26 19:26:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","SimpleCov is awesome. Add gem 'simplecov' to Gemfile, bundle install, require 'simplecov', SimpleCov.start, run tests. Too easy."
|
||||
"162598517871878144","","","162584400461168640","293718395","2012-01-26 18:11:22 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @NodeSummit: Talks from #NodeSummit will be available online (after a little R&R). Will announce here and to the email list - http:/ ..."
|
||||
"162425123129933824","","","162421044563546112","12819682","2012-01-26 06:42:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @mitchellh: Current status: rpm vagrant_0.9.3_i686.rpm. Also: I hate CentOS."
|
||||
"162329659701334016","162327929374781440","894911","","","2012-01-26 00:23:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Ha ha, yeah I'm not sure so I'm kind of wondering out loud."
|
||||
"162309044441321475","162306188359380992","14315117","","","2012-01-25 23:01:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose Because fuck you, that's why. That and $700."
|
||||
"162305605988663297","162303844485840897","894911","","","2012-01-25 22:47:26 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I think other stores have to be in on a scheme for it to be price fixing. Can a single entity fix prices w/o a monopoly?"
|
||||
"162279952849444864","162272842984067073","472215656","","","2012-01-25 21:05:30 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@applasso @picnic_coffee Ha ha. I guess I should get another Noodle Box for dinner to complete my epic plan."
|
||||
"162271778725560321","","","","","2012-01-25 20:33:01 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I'm getting all teary eyed eating lunch from @PiCNiC_Coffee today. It doesn't get any better than this."
|
||||
"162027120594395137","","","162021668410232832","197495418","2012-01-25 04:20:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @DalaiLamaInBed: So long as we are under the control of disturbing emotions, real happiness is hard to find in bed."
|
||||
"162005024388562945","","","161919010634596353","6827332","2012-01-25 02:53:02 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @jtaby: Ooooooh, well played, duckduckgo: http://t.co/WlPD2QuM (includes the MDN docs inline)","http://duckduckgo.com/?q=css+line-height"
|
||||
"161982295094476800","","","161976836321058816","7198302","2012-01-25 01:22:43 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @jonathanstark: ""Web Storage Support Test"" http://t.co/vbYHFOa3 /via @paul_irish","http://bit.ly/z3wmfU"
|
||||
"161945918244012033","","","161938066431422464","173630577","2012-01-24 22:58:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @bcantrill: Google is being annoyingly tight-lipped, while Microsoft is writing a Node program on stage -- on a Mac. #NodeSummit #Wor ..."
|
||||
"161909413605670912","161906996650573825","17088322","","","2012-01-24 20:33:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@HipwoodDigital @dainerose There are only 3 companies here so far. I think we have some cupboards and closets available."
|
||||
"161904979462991872","161898482871975937","14315117","","","2012-01-24 20:15:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose Luxury! Soon there'll be Noodle Box too? omg."
|
||||
"161901212101386240","161899273309519873","39448955","","","2012-01-24 20:00:31 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@A_to_the_J_ Well hoity toity aren't we grand ;-)"
|
||||
"161880264568602624","161879230781718528","39448955","","","2012-01-24 18:37:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@A_to_the_J_ I knew what it was, why would I actually read the words?"
|
||||
"161863859425116161","161712871624015872","39448955","","","2012-01-24 17:32:06 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@A_to_the_J_ yes, Starbucks. Is it Tim Horton's or Hortons? I think it's Horton's in which case I stand by Timmy's or Timmy Ho's."
|
||||
"161652083584532480","161650624721727488","166272705","","","2012-01-24 03:30:34 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@samjones5 For drip I'd hit Timmy's, espresso go for Starbuck's. Either way kind of a shame ;-)"
|
||||
"160556523431526401","160529346577178625","39448955","","","2012-01-21 02:57:12 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@A_to_the_J_ As am I!"
|
||||
"160293861195923456","","","160211441327144960","9533042","2012-01-20 09:33:29 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @BrendanEich: Flash: let a=[]; for(let i=0;i<4;i++) a.push(function(){return i}); for (let j in a) assert(a[j]() === j) is in ES6 ..."
|
||||
"160046022914097152","160021810681888768","39448955","","","2012-01-19 17:08:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@RealTaIk @A_to_the_J_ Lol. Just about your laugh then eh? ;-) Pretty sure that's not true at all."
|
||||
"160045883432505344","160033430787203073","39448955","","","2012-01-19 17:08:06 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@A_to_the_J_ How about ice cube trays? ?. What's that? That's not what you meant? :p"
|
||||
"160045765333499904","","","160037464193503232","14957252","2012-01-19 17:07:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @settern: Oh, Apple, that's just mean. iBooks Author publishes to .ibooks, .pdf, and .txt. .ibooks is wrapped ePub, cannot be opened ..."
|
||||
"159905549742379009","","","116372971509121025","6897142","2012-01-19 07:50:28 +0000","web","RT @bos31337: So glad you asked! The best ghc bug ever involved a dev version of the compiler deleting your source file if it contained ..."
|
||||
"159755063852666883","159713981085401088","165975834","","","2012-01-18 21:52:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@PiCNiC_Coffee That would be fucking awesome. You'd have to get a ghetto blaster on it playing majestic tunes like Wonderboy by Tenacious D."
|
||||
"159000282158743552","","","158993879981506561","14814762","2012-01-16 19:53:16 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @joemccann: 50% of 2011 computing device sales were mobile. Are u still building your business on the desk/laptop computing environme ..."
|
||||
"158988326576209921","","","158977253546528768","14272162","2012-01-16 19:05:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @jdalton: TIL many browsers treat method chaining like recursive calls & will hit call stack limits ? http://t.co/141jAPn3","http://bit.ly/xKAaUF"
|
||||
"158368755607539713","158220776703668225","39448955","","","2012-01-15 02:03:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@A_to_the_J_ every night?!"
|
||||
"157944348695199744","157943223753506816","39448955","","","2012-01-13 21:57:21 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@A_to_the_J_ Ohhh I see what you mean. Yeah I feel the same way. They're in a warm, dry, car getting where they're going quickly. Bastards."
|
||||
"157939439555985408","157934842368106497","39448955","","","2012-01-13 21:37:51 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@TheComedyJokes @A_to_the_J_ very appropriate XD"
|
||||
"157939361072168961","157934972479619072","39448955","","","2012-01-13 21:37:32 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@TheComedyJokes @A_to_the_J_ lol, that was pretty good."
|
||||
"157939244772507648","157919970993504256","39448955","","","2012-01-13 21:37:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@A_to_the_J_ Can't get snow on their car? ? I think you're mad with anger :p"
|
||||
"157920473148174336","157907882522836992","165975834","","","2012-01-13 20:22:29 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@PiCNiC_Coffee Pure torture ? you need a Picnic shuttle that goes to and from Gorge! ;-)"
|
||||
"157891123728228352","157889116812488704","894911","","","2012-01-13 18:25:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Heh, probably better for all of us :)"
|
||||
"157887305682665474","157886746560966656","894911","","","2012-01-13 18:10:41 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Good luck Jim! Hope that it all goes smoothly. We should get together again when you're up for it. Maybe get @djchrisrail too."
|
||||
"157886786746593280","157864160334589953","15687937","","","2012-01-13 18:08:38 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jeffrey_way @devongovett If you told me those were prison lunches I wouldn't have batted an eyelash."
|
||||
"157885559673597952","","","","","2012-01-13 18:03:45 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","If you're a fan of 5by5 shows, have an iPhone or iPad, and like to check out links in the show notes check this out: https://t.co/yZWY5fh8","https://github.com/samsonjs/5by5Browser"
|
||||
"157643735763652608","157636903246626816","39448955","","","2012-01-13 02:02:50 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@A_to_the_J_ Try and stop me."
|
||||
"156513642802712576","","","","","2012-01-09 23:12:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Well that was epiphanic. Wonder why I didn't see it before."
|
||||
"156454616320589825","","","156450422159187970","7198302","2012-01-09 19:17:41 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @jonathanstark: ""Worry is a misuse of imagination."" - Dan Zadra"
|
||||
"156409546850566144","156382683616919552","39448955","","","2012-01-09 16:18:36 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@A_to_the_J_ Yes I realize that. Seriously though who does that?!"
|
||||
"156260721955573760","156254102295285760","39448955","","","2012-01-09 06:27:13 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@RealTaIk @A_to_the_J_ What if I tell her that she has really stupid capitalization? I guess it's not very romantic but it *is* real talk :p"
|
||||
"156130880107200512","","","156128998659858432","815114","2012-01-08 21:51:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @jedschmidt: pretty sure the statute of limitations on hanlon's razor has expired for the twitter spam team."
|
||||
"156093345767235584","","","155807969991335936","16593246","2012-01-08 19:22:08 +0000","web","RT @applehockey: The origin of the ""DROID"" ringtone used by Verizon has been found.
|
||||
|
||||
Mac users: Open Terminal. say -v cellos droid (via ..."
|
||||
"155703962383822849","","","","","2012-01-07 17:34:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Ditto for not using idiomatic casing, word delimiters, etc. There's no good excuse for it."
|
||||
"155703509440929795","","","","","2012-01-07 17:33:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","When I read code that is not well spaced or indented I can't help thinking ill of the author. It's like bad hygiene. Shoddy craftsmanship."
|
||||
"154413816803885057","154374574467858433","894911","","","2012-01-04 04:08:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Holy shit, sorry to hear that Jim :( Glad that you are back at home. Hope you don't have to go through that again."
|
||||
"154012981787762688","","","","","2012-01-03 01:35:31 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Good thing I did not lose my luggage! http://t.co/w73DauuE","http://twitter.com/_sjs/status/154012981787762688/photo/1"
|
||||
"153636677078876160","","","","","2012-01-02 00:40:12 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","My tribute to @hotdogsladies http://t.co/Piav9HME","http://samsonjs.tumblr.com/post/15151798140/this-one-is-for-merlin-mann"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,72 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"174696686160060416","","39448955","","","2012-02-29 03:25:10 +0000","<a href=""http://www.osfoora.com/mac"" rel=""nofollow"">Osfoora for Mac</a>","@amanderpp http://t.co/S8ZPaUFZ","http://youtu.be/HuDUnKPyzww"
|
||||
"173156047391965184","173154724823048192","14315117","","","2012-02-24 21:23:13 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose Good to hear! I'll have to wait until tonight or this weekend before I get to code w/ music."
|
||||
"173087856414294017","","","","","2012-02-24 16:52:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Found some music to code to this weekend. Daft Punk meets old video games. If this were for sale I'd buy it. http://t.co/Lj91A6zS","http://www.dachip.com/download.html"
|
||||
"173085202166452225","","","173011286114836481","19019338","2012-02-24 16:41:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @DioVayne: LOL! Very Suspicious Quotation Marks :D
|
||||
http://t.co/ioXrPzdl","http://www.smosh.com/smosh-pit/photos/very-suspicious-quotation-marks"
|
||||
"172756377092100098","172753673930289152","14315117","","","2012-02-23 18:55:04 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose That's one reason why I stopped wearing a wrist watch. It is really annoying."
|
||||
"172403039435620355","","","","","2012-02-22 19:31:02 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","My data doubler has arrived! Time to perform surgery on this notebook. I guess it's not surgery if I shut it down, but whatever. MOAR GBS!!"
|
||||
"172060075802886145","172058331156975618","668863","","","2012-02-21 20:48:13 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@eishay @tomdale Is this linked from http://t.co/B8prqcHf? I'm getting started w/ Ember and this looks really useful.","http://emberjs.com"
|
||||
"171710635091046400","171703819720331264","894911","","","2012-02-20 21:39:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke I think I just heard 100 Lispers cry out in agony."
|
||||
"171107557157515264","171098566494928896","16988530","","","2012-02-19 05:43:15 +0000","web","@TannerStokes No worries. I made a mistake though, it should be p.ctx not li.c for feather mode."
|
||||
"171082757202653185","170280933897945088","16988530","","","2012-02-19 04:04:42 +0000","web","@TannerStokes Fun extension, thanks. You can also support YouTube's feather mode by using "".comment-text,li.c"" as your selector."
|
||||
"170703702900998144","","","","","2012-02-18 02:58:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I can't believe this works --> ""Siri, I command you to [blah blah blah]""
|
||||
|
||||
This is too fun."
|
||||
"170703299367026689","170698399392337920","894911","","","2012-02-18 02:56:52 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Success!"
|
||||
"170698324561756160","","","","","2012-02-18 02:37:06 +0000","<a href=""http://mobile.twitter.com"" rel=""nofollow"">Mobile Web</a>","""Absolutely"" is an acceptable confirmation for Siri. That's pretty cool. I get bored of ""yup"", ""okay"", and ""yes"". Next: ""sure"", ""please do""."
|
||||
"170690726009634816","170685901830242305","1671811","","","2012-02-18 02:06:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@paul_irish @polotek @visnup There are fewer reasons to use zsh today than there were several years ago. Bash has caught up in many ways."
|
||||
"170588439811592194","170584976016949249","136077128","","","2012-02-17 19:20:28 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@kitcambridge @webreflection Unfortunately in reality you have to do: var com = com || {}; com.github = com.github || {}; and so on..."
|
||||
"170398306877444097","","","","","2012-02-17 06:44:56 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Mountain Lion has some nice improvements for Launchpad and Dashboard."
|
||||
"170331858406617088","170331441719283713","14231571","","","2012-02-17 02:20:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@marcoarment Workaround for the 0x0 problem is to disable the ""Compress PNGs"" setting. You have my sympathy. Good luck."
|
||||
"170323529114460160","170322113520082944","39448955","","","2012-02-17 01:47:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@amanderpp Absolutely."
|
||||
"170278566804725760","170278065337925632","894911","","","2012-02-16 22:49:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Sadly I'll probably restore the IE 8 VM from a backup once my data doubler arrives. Hopefully this week."
|
||||
"170277107316953088","170275798010433537","894911","","","2012-02-16 22:43:20 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Yeah, 4.1.0. Taking its sweet time to install. Had to delete an IE 8 VM to make room. No more supporting IE 8 for me! ;-)"
|
||||
"170270541700268032","170269938878132225","894911","","","2012-02-16 22:17:15 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke VMWare Fusion. I'm following @mattgemmell's Lion instructions and so far so good."
|
||||
"170269303222960129","","","","","2012-02-16 22:12:19 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Current status: http://t.co/RLlCFU1R","http://yfrog.com/hswbzzkp"
|
||||
"170203694586007553","","","","","2012-02-16 17:51:37 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Who wants to make a long bet? When OS 11 is released people will call it ""oh ess ex eleven"". One hundred kabillion majillion dollars."
|
||||
"169886653303885824","","","169880530832195585","15687937","2012-02-15 20:51:49 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @devongovett: If you haven't noticed, I'm starting to write up some ideas for missing browser standards here. Join in the fun! https: ..."
|
||||
"169870315621584896","","","169731281167454208","15687937","2012-02-15 19:46:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @devongovett: Wrote up some thoughts on a potential JavaScript ""Choose File"" API here. I'd love your comments! https://t.co/of2wM5Z4","https://github.com/devongovett/standards/issues/1"
|
||||
"169870291449806849","169724566640406528","15687937","","","2012-02-15 19:46:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@devongovett What did you end up doing? Faced with the same problem a while back I resorted to uploadify for IE (Flash) :/"
|
||||
"169870033546252288","","","169700576815366144","15687937","2012-02-15 19:45:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @devongovett: Man all in the guise of ""security"". What a load of crap."
|
||||
"169870014546067456","","","169698812653346816","15687937","2012-02-15 19:45:42 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @devongovett: OMFG IE. Calling form.submit() causes Access denied if it contains a file input that you had previously triggered the c ..."
|
||||
"168075933528494080","","","","","2012-02-10 20:56:39 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","One of @peterc's Ruby tricks is quite handy w/ Redis: Hash[keys.zip(redis.hmget(key, *keys))]"
|
||||
"167116253192925184","","","","","2012-02-08 05:23:14 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I can't wait to see what Google does with Chrome on Android now. I have a feeling it will be good for everyone who makes web apps."
|
||||
"167041146822987780","","","167005043797667841","15687937","2012-02-08 00:24:47 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @devongovett: Why don't browsers preload background images used by :active and :hover states in the background after the page has loa ..."
|
||||
"167000106590142465","","","","","2012-02-07 21:41:43 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","iOS UI on other phones is the new Windows UI photoshopped onto a Mac. http://t.co/7hQAZJOw","http://twitter.com/_sjs/status/167000106590142465/photo/1"
|
||||
"166990969781227520","166990006974550017","749863","","","2012-02-07 21:05:24 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@hotdogsladies Look at those socks. Quite fetching."
|
||||
"166986793802141696","","","166975461988122624","20079975","2012-02-07 20:48:48 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @polotek: Wow. @github definitely thinks their hoodie is worth $55. As someone who was pretty excited and now is not, I ask you to re ..."
|
||||
"166986667054481408","166962376799830016","894911","","","2012-02-07 20:48:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke @ShitJimDoesntTweet strikes again!"
|
||||
"166961423728115713","166960325948735489","894911","","","2012-02-07 19:08:00 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@JimRoepcke I'd follow."
|
||||
"166729897216192512","166727020305317889","14499111","","","2012-02-07 03:47:59 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jgagan Ha ha. Good plan. You're asking for trouble."
|
||||
"166701111393267712","166698412719349762","14315117","","","2012-02-07 01:53:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@dainerose No kidding. I was all ""hey, IE 9 is pretty decent ?. oh, there it goes."" Reminds me of http://t.co/K4YbiIvl","http://www.youtube.com/watch?v=BzbOoJNC_TU"
|
||||
"166695782303531011","166695430971854849","14499111","","","2012-02-07 01:32:26 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@jgagan seriously? Sweet pocket tweet!"
|
||||
"166695439029125120","166694831320608768","14499111","","","2012-02-07 01:31:04 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","@jgagan I don't know, I didn't sleep much last night. ?"
|
||||
"166684172637839360","166679745151508480","14499111","","","2012-02-07 00:46:18 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jgagan I'll see you. http://t.co/RAqt4gYw","http://yfrog.com/odyukpgj"
|
||||
"166668892326993920","","","","","2012-02-06 23:45:35 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Hurrp dee durrr http://t.co/AqWRMheV http://t.co/yFxseShx","http://yfrog.com/h81k1zp","http://yfrog.com/mm1f4p"
|
||||
"166630688316071936","166629673525182464","29255412","","","2012-02-06 21:13:46 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk It'll be interesting to see how things perform too. Looks like I'll learn a lot over the next few months. Exciting stuff."
|
||||
"166628705018458112","166628385085325313","29255412","","","2012-02-06 21:05:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk Ok, kind of like a game loop where you update state and then render in one shot. Yeah not so bad at all then."
|
||||
"166628414680346624","166627692639305728","29255412","","","2012-02-06 21:04:44 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk $('#things').html(tmpl('foo', { bar: 42 })) isn't so bad, and you can always function tmplDom(id, template, data) { ? }"
|
||||
"166627957648011264","166626848489484288","29255412","","","2012-02-06 21:02:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk Hmmm. I'll have to see how it goes. Do you just update the DOM directly with jQuery or whatever? That gets tedious."
|
||||
"166627350623170561","166626722853289984","29255412","","","2012-02-06 21:00:30 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk That's interesting. Wouldn't it look pretty weird on page load though? tmpl.js seems like a decent compromise there."
|
||||
"166626523237982208","166625130670325760","29255412","","","2012-02-06 20:57:13 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk Accept DOM elements as a target for output?"
|
||||
"166624936805416960","166619999493029888","29255412","","","2012-02-06 20:50:55 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk http://t.co/eGQwjznn ? I haven't done much tempting client side before. Don't know if this will hold up or not.","http://ejohn.org/blog/javascript-micro-templating/"
|
||||
"166624740486811648","166619999493029888","29255412","","","2012-02-06 20:50:08 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@tjholowaychuk Oh, didn't realize Eco used CoffeeScript. Hadn't looked at it at all yet. I might just stick with @jeresig's trusty old tmpl."
|
||||
"166619585460703232","","","","","2012-02-06 20:29:39 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Now I need to find a good way to make single page web apps for mobile devices. Gonna look at Spine and Eco for that when I have a chance."
|
||||
"166612344615600128","","","","","2012-02-06 20:00:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","First time using a grid framework yesterday and I'm sold already. Now to really get my hands dirty with @TwBootstrap over the next while."
|
||||
"166471734369861632","","","","","2012-02-06 10:42:09 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Sometimes you just have to go to bed. Even if it really bugs you that something looks weird on small displays. At least it's still in dev."
|
||||
"165964535793074177","","","","","2012-02-05 01:06:43 +0000","<a href=""http://instagr.am"" rel=""nofollow"">Instagram</a>","Sunset at Ogden Point http://t.co/U9NWyT57","http://instagr.am/p/oFlxG/"
|
||||
"165661848375525378","","","","","2012-02-04 05:03:57 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","Well that'll have to do for now. http://t.co/v6AcGarK","http://yfrog.com/hskp4dp"
|
||||
"165616605009682432","","","164898031077031936","754978","2012-02-04 02:04:10 +0000","web","RT @dodeja: This is how you design a Credit Card form on the web. http://t.co/DV0r27JD by @stammy for @picplum #design #ux #interaction","http://dl.dropbox.com/u/113417/picplum-cc-ui-bau5y.m4v"
|
||||
"165601866087010304","","","165583566091190273","20079975","2012-02-04 01:05:36 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @polotek: Import testing tip: If you've never seen a test fail in a controlled way when it should, don't assume it's valid. Fail it, ..."
|
||||
"165541625798467585","","","165497489552707585","35383","2012-02-03 21:06:13 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @chartier: The new split keyboard that iOS 5 offers on iPad has phantom buttons for your typing convenience: http://t.co/FQODmZp4","http://j.mp/yuo1Kn"
|
||||
"165537765071663104","","","165535517616766977","11973362","2012-02-03 20:50:53 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @typeoneerror: Good deal for the Super Bowl tomorrow, New Yorkers. http://t.co/ENhrbSi9","http://newyork.craigslist.org/lgi/cas/2827419015.html"
|
||||
"165519535804391424","165511127474769920","15687937","","","2012-02-03 19:38:27 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>",".@mikeal @devongovett High or not he is still talking about things he has no fucking idea about. It'd be funny if it weren't so sad."
|
||||
"165490621233111040","","","165461206323310592","816954","2012-02-03 17:43:33 +0000","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RT @adamstac: Awesome --> ?@TheChangelog: UIKIt - new web UI library from @tjholowaychuk http://t.co/F0V5xsKe?","http://lg.gd/ee"
|
||||
"165305238327271425","165287300501221376","14499111","","","2012-02-03 05:26:54 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@jgagan Thanks but no dice for me. Things are fast, just not certain things. Shaw's YouTube cache is slow too."
|
||||
"165303920040751105","","","165289107159908352","95938827","2012-02-03 05:21:40 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @hij1nx: ~""10% is what actually happens and 90% how you react to it"""
|
||||
"165270202538397696","","","165269730935062529","642543","2012-02-03 03:07:41 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @MeltingIce: @devongovett file input elements are the bane of the web developers existence."
|
||||
"165269095938392064","","","","","2012-02-03 03:03:17 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","I'm pretty sure Shaw is throttling my iTunes traffic. Speed tests get 45-50 mbps as expected, but Apple's CDN can only push 200kB/s? Riiight"
|
||||
"165237496781877248","","","165132406456729600","110520327","2012-02-03 00:57:43 +0000","web","RT @asymco: @asymco @gruber @studuncan This is a 7 quarter view: http://t.co/fqfWgmh6","http://yfrog.com/mm1grp"
|
||||
"165232075325194240","165230817222737920","894911","","","2012-02-03 00:36:11 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","@JimRoepcke Haven't heard of Hugo, but Tintin was really good. Especially if you've read the books. Or seen the show I guess."
|
||||
"164829167995727872","","","164824892783607808","2006261","2012-02-01 21:55:10 +0000","<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>","RT @maccman: Just released a new open source Spine/MacGap app called Heads Up: https://t.co/VW9oRMh3","https://github.com/maccman/headsup"
|
||||
|
Can't render this file because it has a wrong number of fields in line 3.
|
|
|
@ -1,43 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"185896885335244800","185889614995783680","14315117","","","2012-03-31 01:10:45 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@dainerose I got that today as well. Forgot about it so it was like a surprise $5!"
|
||||
"185792302176944129","","","185768722705821696","372475592","2012-03-30 18:15:11 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @twbootstrap: 25,000. http://t.co/QKQqrY8C","http://blog.getbootstrap.com/2012/03/25000/"
|
||||
"185765608200224769","","","185763559064612867","8526432","2012-03-30 16:29:07 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @wycats: Want to thank @drbrain for his very commonsense thoughts on the kickstarter controversy: http://t.co/8xnHjWAF","http://blog.segment7.net/2012/03/29/on-community-funding-of-open-source"
|
||||
"185451285540126720","","","185441522391584769","8479062","2012-03-29 19:40:06 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @fromedome: ""Hulu Plus launches on seven Android tablets"". Very exciting day for those seven people."
|
||||
"185434146330517504","185427770300579840","14272162","","","2012-03-29 18:32:00 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@jdalton jsmin can't parse valid JS, so it's broken. The solution is to use a proper minifier."
|
||||
"185378679579353090","","","185253393466523649","9533042","2012-03-29 14:51:36 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","RT @BrendanEich: Yes, arrow functions (=> only, no ->; lexical |this|, standard body block rules for break/continue/return) have c ..."
|
||||
"185378663863300096","","","185252794939351041","9533042","2012-03-29 14:51:32 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","RT @BrendanEich: http://t.co/O08PzEBP - TC39 consensus achieved via stand-up comedy whiteboard operation by me + goodwill & acceptable c ...","http://wiki.ecmascript.org/doku.php?id=strawman:arrow_function_syntax"
|
||||
"185040886030274560","","","185040455359143937","28198173","2012-03-28 16:29:19 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @SeanToohey: Finally they admit it: A Twitter spokesperson acknowledges that the service has an unfollow bug. http://t.co/Dfc2gmE6 via","http://tinyurl.com/7pa9nq6"
|
||||
"185040729754714112","185038748109643778","166272705","","","2012-03-28 16:28:42 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@2percentjazz Slender, tender, and tall? http://t.co/emWVpXSq","http://grooveshark.com/s/The+Chicks+I+Pick+Are+Slender+Tender+and+Tall/2WvO7T?src=5"
|
||||
"184791119538814976","184752258918002688","14864447","","","2012-03-27 23:56:50 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@bryan_kyle If it lives to see next week please let me know which dollar store you found it at."
|
||||
"184744748211388416","184710304125558784","10138412","","","2012-03-27 20:52:35 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@oscargodson Might want to look at iTerm2, I think iTerm was abandoned. I have no problems with vim in iTerm2."
|
||||
"184325779654578176","","","184283640140800003","6578032","2012-03-26 17:07:45 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @ndw: Six stages of debugging: http://t.co/xu0OqAhD","http://plasmasturm.org/log/6debug/"
|
||||
"184155347500535808","","","164608764547301377","2529971","2012-03-26 05:50:30 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @cdixon: The worst app on my iPhone is this thing called ""Phone"" where you have to speak synchronously with other humans."
|
||||
"184063839774576640","","","","","2012-03-25 23:46:54 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">Camera on iOS</a>","Looks like Brinks has some serious competition. http://t.co/Qdt5PsD4","http://twitter.com/_sjs/status/184063839774576640/photo/1"
|
||||
"184012277563916288","","","183546692342255617","235145437","2012-03-25 20:22:00 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","RT @blindfumble: Quite brilliant http://t.co/CVNlhtey","http://twitter.com/blindfumble/status/183546692342255617/photo/1"
|
||||
"183763997315702784","","","183685451138338817","31377368","2012-03-25 03:55:25 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","RT @andy_casey: Borat's national anthem song accidentally played for Khazakhstan's shooting team instead of their national anthem. http ..."
|
||||
"183750218720882689","","","","","2012-03-25 03:00:41 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">Camera on iOS</a>","Makeshift stand-up workstation. It's coming together nicely enough. http://t.co/sK8KLpQO","http://twitter.com/_sjs/status/183750218720882689/photo/1"
|
||||
"183618691852804097","","","183598848277614592","749863","2012-03-24 18:18:02 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @hotdogsladies: I say: ""No, sorry. I'm not on Facebook at all.""
|
||||
|
||||
They hear: ""I live amongst hill people where The Goat we worship has ..."
|
||||
"183364517659541504","183343990660284416","668863","","","2012-03-24 01:28:02 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","@tomdale Dashes act as word separators when moving/selecting with Option-<arrow>. And subjectively, dashes look better."
|
||||
"183351729692213248","183341372198232064","95938827","","","2012-03-24 00:37:13 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","@hij1nx @paul_irish I'll take this opportunity to plug ThePusher. https://t.co/O8YZhFmc","https://github.com/samsonjs/ThePusher"
|
||||
"183334141155221504","183300757104246784","11973362","","","2012-03-23 23:27:20 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@typeoneerror localmind has a Google Play button on their website: http://t.co/gEpJIz0C","http://www.localmind.com/"
|
||||
"183297962993139713","","","183226816037793793","5774462","2012-03-23 21:03:34 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @grigs: Apple submitted a patch to webkit containing an initial implementation of -webkit-image-set http://t.co/AJ6jqNMi /via @dontca ...","http://bit.ly/GL47tr"
|
||||
"182878027083022336","182876359993982976","14864447","","","2012-03-22 17:14:54 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@bryan_kyle I saw that and may have to pilfer it. /etc/fstab seems to be ignored now."
|
||||
"182876514424078337","","","182829496716627969","15687937","2012-03-22 17:08:53 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @devongovett: Nice! Safari 5.2 seems to have the Web Audio API, meaning that alac.js and aac.js work! Also: FileReader and Blob URLs! ..."
|
||||
"182875976299061248","182822020826935296","14864447","","","2012-03-22 17:06:45 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@bryan_kyle It's really bad. I booted Mountain Lion and a bunch of apps in the store were marked ""installed"" because they were on Lion. Oy!"
|
||||
"182592321391566848","","","182541492265553920","894911","2012-03-21 22:19:36 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @JimRoepcke: Agio Studios has made ""Cool to be Clever: Edson Hendricks"" for the iPad free until the end of March. http://t.co/bM87T2e2","http://bit.ly/CoolToBeClever"
|
||||
"181928551409385472","","","","","2012-03-20 02:22:01 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","TextMate is great because it embraces Unix. Environment variables, standard input and output + anything with a shebang line is good to go."
|
||||
"181543407825596416","181542756441788417","17088322","","","2012-03-19 00:51:35 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@HipwoodDigital My concrete floor would be a good test of this gorilla glass. It took my 3GS, the bastard!"
|
||||
"181540971752853504","","","","","2012-03-19 00:41:55 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Trying my phone w/o a case for a while. Feels really nice so far. I give it 3 months, tops, before I drop it."
|
||||
"181153424568627202","181149941245284352","894911","","","2012-03-17 23:01:56 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke You should check out the iPhoto part of the keynote. I think I'll edit all of my photos with it. http://t.co/2iiMGKns","http://itunes.apple.com/us/podcast/apple-keynotes-hd/id470664050"
|
||||
"181149931900383234","181149316218494976","29255412","","","2012-03-17 22:48:04 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@tjholowaychuk Yeah. Take a look here https://t.co/5WPhreax ? I don't recognize it and they love rewriting these things, so it's likely new.","https://www.icloud.com/applications/journal/en-us/1C07/javascript-packed.js"
|
||||
"181147405935312896","","","","","2012-03-17 22:38:01 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Here's a glimpse. http://t.co/WYqKkzgc","http://img.ly/foce"
|
||||
"181147070730747904","","","","","2012-03-17 22:36:41 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Journals in iCloud seems to use a new proprietary JS framework. Complete, of course, with its own class system: Core.Object = function(){}"
|
||||
"180723792111345666","180713881260396544","14864447","","","2012-03-16 18:34:44 +0000","<a href=""http://hibariapp.com"" rel=""nofollow"">Hibari</a>","@bryan_kyle @tapfortap A true gentleman."
|
||||
"180713501944320003","180713275166699520","14864447","","","2012-03-16 17:53:51 +0000","<a href=""http://hibariapp.com"" rel=""nofollow"">Hibari</a>","@bryan_kyle @tapfortap Only if it?s a New Coke ;-) ? wait, don?t hold me to that."
|
||||
"180711844632207361","","","180711566012981248","494341960","2012-03-16 17:47:15 +0000","<a href=""http://hibariapp.com"" rel=""nofollow"">Hibari</a>","RT @tapfortap: @_sjs first ""new iPad"" in the office award goes to you. #jealousrage"
|
||||
"180470551188484097","180468436747567105","23256690","","","2012-03-16 01:48:27 +0000","<a href=""http://hibariapp.com"" rel=""nofollow"">Hibari</a>","@ndaversa @devongovett Agreed. I?m sure assets greatly outweigh - or at least rival - binaries in most iOS apps."
|
||||
"180462335335473152","180455082846994432","23256690","","","2012-03-16 01:15:48 +0000","<a href=""http://hibariapp.com"" rel=""nofollow"">Hibari</a>","@devongovett @ndaversa Universal app bundles on OS X contain fat binaries with code for multiple architectures. I wouldn?t hold your breath."
|
||||
"175293413468553216","","","175270007771631616","12069912","2012-03-01 18:56:21 +0000","<a href=""http://www.osfoora.com/mac"" rel=""nofollow"">Osfoora for Mac</a>","RT @hellogeri: Hey guys it's not working what am I doing wrong http://t.co/YOdQZwro","http://instagr.am/p/Ho1aREjpjU/"
|
||||
"175268304833871874","","","175259442093363200","2006261","2012-03-01 17:16:34 +0000","<a href=""http://www.osfoora.com/mac"" rel=""nofollow"">Osfoora for Mac</a>","RT @maccman: WebKit's auditor now tells you when you can remove vendor prefixes from CSS properties. Awesome."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,50 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"197147908364181504","","","197134998548119552","11768582","2012-05-01 02:18:18 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @garrytan: Better to have shipped and failed than to have never shipped at all."
|
||||
"197140935371530240","197023061042671616","13753352","","","2012-05-01 01:50:36 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@crashplan Time Machine & weekly bootable HDD mirrors on each box w/ SuperDuper!. Big stuff on a Drobo. Everything in CrashPlan for remote."
|
||||
"196709819799961600","196691684262805504","894911","","","2012-04-29 21:17:30 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Ha ha. One scoop of coffee, one scoop of cocaine. ""I thought it was coffee creamer!"""
|
||||
"196656435160031232","196654997793030146","14315117","","","2012-04-29 17:45:22 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@dainerose Eat more waffles. That should help!"
|
||||
"196650783448633346","","","","","2012-04-29 17:22:55 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","I just finished an 11.79 km run with a pace of 8m56s / km. #tc10k #yyjrun #yyjsexy"
|
||||
"196649655734517761","196649418936692736","894911","","","2012-04-29 17:18:26 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke thanks! I may or may not have taken a detour home to get headphones and coffee."
|
||||
"196378948416978946","","","","","2012-04-28 23:22:44 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","?Double Irish With a Dutch Sandwich"" http://t.co/cy5LJvu8","http://www.nytimes.com/2012/04/29/business/apples-tax-strategy-aims-at-low-tax-states-and-nations.html"
|
||||
"196378331858485248","","","196376372619386880","14231571","2012-04-28 23:20:17 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @marcoarment: I know ""Gigabit wireless"" is about to happen, but I'll believe that when I can transfer big files in my house with it f ..."
|
||||
"195984455347875840","195973950323433473","259415682","","","2012-04-27 21:15:10 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@yohan_teixeira @tapfortap No problem! Let us know how it goes."
|
||||
"195929947838234627","195875615478521857","259415682","","","2012-04-27 17:38:34 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@yohan_teixeira @tapfortap The delegate was added recently, please update your SDK at http://t.co/ZLzb3JiJ and you should be up & running!","http://developer.tapfortap.com/sdk#ios"
|
||||
"195881613580705792","","","195876138252369921","636923","2012-04-27 14:26:30 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @siracusa: Go Right. http://t.co/GFS0kDya (via @jchutchins)","http://www.youtube.com/watch?v=kiePaAHK3jE"
|
||||
"195880686710816768","195865749846360064","2262091","","","2012-04-27 14:22:49 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@ajordens Nice! I think mine is as well, 18.25 GB. Thanks Google."
|
||||
"195696791310704640","195691889880600577","2262091","","","2012-04-27 02:12:05 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@ajordens Pretty good stats too, my CTR is at 0.21% but rising now. The changes are working, got another as I type. http://t.co/BBj0J2fN","http://cl.ly/39092K1f3S3f2S0Z2Y04"
|
||||
"195688636153462784","195683211609784320","2262091","","","2012-04-27 01:39:41 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@ajordens Ugh. Had my CPC on auto and it was very high ($0.73). Thanks for the link, learned something about Adwords today."
|
||||
"195683028247392258","195682764975120385","2262091","","","2012-04-27 01:17:24 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@ajordens That's quite good. Clearly I suck at Adwords!"
|
||||
"195681967335944192","195316498456256512","2262091","","","2012-04-27 01:13:11 +0000","web","@ajordens How is your campaign going? I'm not doing as well as I hoped. I've had 4 completed after ~$70. Previously got around 8 for $100."
|
||||
"195179308334067712","195172903074004993","3260971","","","2012-04-25 15:55:48 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@niels_bom Yes, it is! I would love to take credit but I must tip my hat to @SteveStreza (iirc)"
|
||||
"195163023684534273","","","194509470561349632","637533","2012-04-25 14:51:05 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @coda: Some people, when confronted with a problem, think ""I know, I'll solve it."" But the Void is inescapable and our short lives ar ..."
|
||||
"195162828959789058","195124900992786432","11573212","","","2012-04-25 14:50:19 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@jcrossley3 Sounds like you needed them both then :)"
|
||||
"195003168944431104","194992514019758080","2262091","","","2012-04-25 04:15:53 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@ajordens Good publicity for their new Dropbox competitor."
|
||||
"195003060030935040","","","194992514019758080","2262091","2012-04-25 04:15:27 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @ajordens: @_sjs funny. I was going to do the exact same things with the $100 I just got."
|
||||
"194991988339253248","","","","","2012-04-25 03:31:27 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","AdWords gave me $100 for signing up. Dropbox campaign #2 begins. Should get the 16 GB easily and still have a balance on AdWords."
|
||||
"194934197754933249","194927679869419521","2006261","","","2012-04-24 23:41:49 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@maccman Do you disagree with the spirit of the post or the details? I disagree about the with statement but like the spirit. +@thomasfuchs"
|
||||
"194660453304111104","","","194657307735506944","39306627","2012-04-24 05:34:03 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @samvermette: What if adding pull to refresh was easy as doing:
|
||||
|
||||
[tableView addPullToRefreshWithActionHandler:block];
|
||||
|
||||
It now is: htt ..."
|
||||
"193534869094137859","","","193529715015954432","12819682","2012-04-21 03:01:23 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @mitchellh: I had to! RT @mannyanekal: You Can Take The Engineer To The W... And He Will Code @ W San Francisco http://t.co/jhSGls9L","http://instagr.am/p/JqkmufCfgT/"
|
||||
"193523944555413504","","33423","","","2012-04-21 02:17:58 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@gruber I think celebrities conversing w/ Siri is an attempt to make it seem more cool (or less geeky) to talk to your phone."
|
||||
"193469088733986816","","","193412514107764736","15212851","2012-04-20 22:39:59 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @aaronbazinet: I can no longer hear ?turns out? in a normal conversation without immediately hearing @hotdogsladies repeat it in my h ..."
|
||||
"192323653210357760","","","192051395250241537","68813509","2012-04-17 18:48:26 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @Teh_kLeV: LOL: http://t.co/jQ2lk2OY /via @tinkertim","http://i.stack.imgur.com/jMHoE.jpg"
|
||||
"192131203829211136","192129668974002177","14864447","","","2012-04-17 06:03:43 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@bryan_kyle I hear you. *glares at the Finder*"
|
||||
"192102294492418048","","","","","2012-04-17 04:08:50 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Every time I have to use Eclipse and remember that you install plugins by going Help -> Install New Software I die a little inside."
|
||||
"191990762005737472","191987893223428096","113713261","","","2012-04-16 20:45:39 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@ChromiumDev Is this a temporary step on the way to giving more storage to every site? Rubs me the wrong way that only Chrome apps get this."
|
||||
"191965426887036929","191944985841635328","18137723","","","2012-04-16 19:04:58 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@raganwald @amyhoy @BrendanEich It is valid and legal. JSMin only parses the subset of JS that JSLint accepts, but people use it for any JS."
|
||||
"190972461171474432","","","190970056878981122","3763061","2012-04-14 01:19:17 +0000","web","RT @carllerche: MongoDB is the Rebecca Black of databases."
|
||||
"190972338160930817","","","190943243511406592","5637652","2012-04-14 01:18:48 +0000","web","RT @codinghorror: PHP is the Nickelback of programming languages."
|
||||
"190972083621216256","","","190971177609609216","33493","2012-04-14 01:17:47 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @peterc: @_sjs I've been wrong, I've been down, been to the bottom of every bottle. These five words in my head scream ""Are we having ..."
|
||||
"190969289627545600","190943243511406592","5637652","","","2012-04-14 01:06:41 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@codinghorror Brilliant. Everyone claims to hate it. Yet it is, somehow, still amazingly popular."
|
||||
"189885628727566336","","","189751363700396032","6154602","2012-04-11 01:20:36 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","RT @samsoffes: Seriously impressed! Really, really amazing stuff. Watch the video: http://t.co/1xhJ6Oxs","http://dcovery.com/"
|
||||
"189420770034860032","","","","","2012-04-09 18:33:25 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Any ideas on why Xcode is archiving an iOS as a Mac app? http://t.co/oBc83IeS","http://stackoverflow.com/questions/9694038/xcode-archiving-ios-app-as-a-mac-app"
|
||||
"188739576502829056","188738205137387520","5637652","","","2012-04-07 21:26:36 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","@codinghorror Doppelp?xler, nat?rlich."
|
||||
"188129651686785025","","","","","2012-04-06 05:02:58 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","""The IQ of a crowd is the IQ of its most stupid member divided by the number of people in it."" -Terry Pratchett"
|
||||
"187405654888157185","","","187362989714841600","14063139","2012-04-04 05:06:04 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @TechWraith: Hey #jsconf'ers. The @yammer crew built a cool little mobile web app: http://t.co/4BicMbc7 - check into foursquare and f ...","http://geeksaround.me"
|
||||
"187404347007709185","","","","","2012-04-04 05:00:52 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","zhistory in Dropbox is a mixed blessing, but 90% good so far! It's *slightly* similar to having browser history synced across machines."
|
||||
"186689573760417793","","","172307505697918976","823036","2012-04-02 05:40:37 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","RT @petervandijck: WebOS, truly the Amiga of the 2010's. http://t.co/p8hbuthE","http://ignorethecode.net/blog/2012/02/21/steal_webos_features/"
|
||||
"186578746382356482","186569826016301056","31151313","","","2012-04-01 22:20:14 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","@kuvos Bonus points if it sorts numerically when both values satisfy !isNaN(+a[prop]), or something to that effect."
|
||||
"186576954936410112","","","186569826016301056","31151313","2012-04-01 22:13:07 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific</a>","RT @kuvos: Wouldn't it be nice to be able to have an Array#sort(prop) that desugars to .sort(function(a,b){ if (a[prop]<b[prop]) .., ..."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,107 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"208394719355604992","208388364418809858","894911","","","2012-06-01 03:09:07 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke They made the mistake of making it for the ?enterprise? instead of for people."
|
||||
"207494274785353728","","","","","2012-05-29 15:31:04 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","Don?t even joke about a <like> tag."
|
||||
"207492612859506689","","","207467977724014594","636923","2012-05-29 15:24:28 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @siracusa: Wow, there's a hell of a lot of ""TBA"" on the WWDC schedule. Soon I'll be expecting sessions like ""Adopting Core Levitation."""
|
||||
"207490853411897344","","","207402953378766848","20609518","2012-05-29 15:17:29 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @DalaiLama: The many factors which divide us are actually much more superficial than those we share."
|
||||
"207307473776943104","","","207249827652829184","14273142","2012-05-29 03:08:47 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @lunafiko: Need a website, custom web or mobile app, or design work done? We provide local expertise in UI/UX, cutting edge web and m ..."
|
||||
"207299014406840320","","","207196009498025984","894911","2012-05-29 02:35:11 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @JimRoepcke: Just built GitX from http://t.co/meo167JX - he's been merging in pull requests. Drag-and-drop of branch labels works aga ...","http://github.com/laullon/GitX"
|
||||
"207175537209262081","207175227011117056","894911","","","2012-05-28 18:24:31 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke I bet MS is experimenting with the Kinect on those things."
|
||||
"207174580203307009","207005852341764097","894911","","","2012-05-28 18:20:43 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Seems like you would shuffling back and forth to see the whole screen and then move in to touch. Whiteboards work so maybe?"
|
||||
"206971072883605504","206921806995660800","894911","","","2012-05-28 04:52:03 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Giant invisible slurpee! I wonder what the primary input device is for that beast."
|
||||
"206497879098015744","206484108581421057","15687937","","","2012-05-26 21:31:45 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@devongovett It?s a setting. If you don?t acknowledge a message it notifies again after some interval. I turn it off."
|
||||
"206271572317716482","","","206270404988375040","494341960","2012-05-26 06:32:29 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @tapfortap: We are pushing over 500k impressions / day on the @tapfortap network. Great week, thanks to all of you new devs!"
|
||||
"206197555288223744","","8248862","","","2012-05-26 01:38:22 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@thetalkshow Keep your chin up. Most are critical because they like your work even if they are dicks about it. Many fans out there still."
|
||||
"206196531865464832","","8248862","","","2012-05-26 01:34:18 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@thetalkshow Wow, very unfair iTunes reviews. It is better than a 2 star show! Left a good review, but in Canadia so it barely counts."
|
||||
"206173636573409281","","","206109094338232320","17177251","2012-05-26 00:03:20 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @brianloveswords: Guys, I just found out I can do `git checkout -` to switch back to my last used branch. This is fantastic."
|
||||
"205889494782722048","","","","","2012-05-25 05:14:15 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Well looky here. WebKit inside the Mac App Store: http://t.co/mdFUWWJa","http://cl.ly/2z1h3T433U3x0W3s3e3S"
|
||||
"205718510754738176","205717434336948224","894911","","","2012-05-24 17:54:49 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke Oh. That would be quite lame if it didn't include sync and the rest of it."
|
||||
"205717263452614658","205711692116664322","894911","","","2012-05-24 17:49:52 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke Apparently MobileMe has been extended to the fall. Forget where I heard that or the exact date. I think you'll be ok though."
|
||||
"205701172185677825","","","205697019266875392","494341960","2012-05-24 16:45:55 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @tapfortap: Tap for Tappers. Today is Free Credit Thursday! Tweet me or retweet this and I'll give you 1000 credits for free app prom ..."
|
||||
"205493857482317824","","","","","2012-05-24 03:02:08 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@ryah I just use Dreamhost. $100/year unlimited domains and hosting. No sketchy up sells or anything. Leave anytime."
|
||||
"205493197043011584","205465071273508864","668863","","","2012-05-24 02:59:30 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@tomdale Most likely."
|
||||
"205115245885259779","","","204620791193681921","162814758","2012-05-23 01:57:40 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @conradirwin: Introducing `&X`, a library we use at @rapportive to write more readable ruby: http://t.co/CGCtiftl","http://cirw.in/blog/ampex"
|
||||
"204966535675121665","","","204962525287157760","159946057","2012-05-22 16:06:44 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @awbjs: ECMAScript 5.1 Specification, now offically available in HTML: http://t.co/aSLjrnDc","http://ecma-international.org/ecma-262/5.1"
|
||||
"204798767042543616","","","204632411731005440","10984852","2012-05-22 05:00:05 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @Mona: # of employers seeking 'ninjas' increased 2,505% in six years. 'Rockstars' by 810%. 'Jedis' by 67%. Terrifying future: http:/ ..."
|
||||
"204711763520917505","204701916696031232","14231571","","","2012-05-21 23:14:22 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@marcoarment Zaray buzz: iced espresso, cream, vanilla syrup, soda. Delicious in the summer. It's not for everyone though."
|
||||
"204658202133020675","","5905672","","","2012-05-21 19:41:32 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@danbenjamin Thanks for the summary of what happened to @thetalkshow. Most of us didn't want details, that's all it took. Stay classy."
|
||||
"203779301890461696","203768353796521984","31151313","","","2012-05-19 09:29:06 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@kuvos Angry Birds Space"
|
||||
"203779117978624000","203777093870432256","16518060","","","2012-05-19 09:28:22 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@vesech Yup."
|
||||
"203763978369900544","203698906931015682","33423","","","2012-05-19 08:28:12 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@gruber All I'll say is it's not the same same show without @danbenjamin so don't pretend nothing happened. Address it and move on."
|
||||
"203763618527977472","","33423","","","2012-05-19 08:26:47 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@gruber I don't love the new talk show yet (you have to prove it, no free pass). I even think you should change the name. But life goes on."
|
||||
"203763001629749248","203719571188883458","33423","","","2012-05-19 08:24:19 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@gruber @blankbaby You might be missing out on a delicious dirty martini, but worse things have happened."
|
||||
"203760730732904448","203666524467232769","14231571","","","2012-05-19 08:15:18 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@marcoarment Oh dear. It wasn't even subtle."
|
||||
"203658791538003968","203655795605377024","20079975","","","2012-05-19 01:30:14 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@polotek Damn. Hasn't been updated for years too. Hopefully there's something better."
|
||||
"203653799393505280","203651801076080641","20079975","","","2012-05-19 01:10:24 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@polotek There are at least a few Mac apps for that. I tried SSH Tunnel, it wasn't bad. Others may be better."
|
||||
"203649125420498945","","","203628565927964672","636923","2012-05-19 00:51:49 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @siracusa: This is why I still pay attention to ""old man of the web"" @zeldman: boldness with purpose. http://t.co/x2w38heA","http://www.zeldman.com/2012/05/18/web-design-manifesto-2012/"
|
||||
"203648294340132864","203583359375523840","894911","","","2012-05-19 00:48:31 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke He better be or we'll all know you're slacking off."
|
||||
"203574884197089280","203563002857930752","894911","","","2012-05-18 19:56:49 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke That's bad ass. High five."
|
||||
"203554855984439296","203552122640404482","894911","","","2012-05-18 18:37:14 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke What have you done?!"
|
||||
"203302152884588545","","","202573686589497344","16592401","2012-05-18 01:53:05 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @RichAberman: I have a great idea for a novel, but i need an author to write it for me. I'm willing to give equity."
|
||||
"203290519550431233","","","203273374867267584","15687937","2012-05-18 01:06:51 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @devongovett: Oh shit... RT @hackernewsbot: Ruby 1.9 lands NaCl support, can run in Chrome... http://t.co/VZ0xubtM","http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?revision=35672&view=revision"
|
||||
"203218312493154304","","","","","2012-05-17 20:19:55 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","That's no moon. http://t.co/1EzJt06r","http://img.ly/imL0"
|
||||
"203188613461180416","","","","","2012-05-17 18:21:55 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","I alias `s` to `git status` and compulsively type it all the time. It's gotten out of hand. I use it outside of git repos for no reason. wtf"
|
||||
"203148240709890048","203121455934873601","3330","","","2012-05-17 15:41:29 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@3rdparty @raganwald Don't know if I should laugh or cry. Canadian telecom is rife for disruption but nobody can get their foot in the door."
|
||||
"202937781977235456","","","","","2012-05-17 01:45:12 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","I really love these aged espresso beans from @2percentjazz. The best coffee in town just got even better. #yyj"
|
||||
"202848158877892608","202841375539068928","894911","","","2012-05-16 19:49:04 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke Ignore. The download probably affects their ranking more than the 1 star review (I hope anyway, for legit apps)."
|
||||
"202426794396237825","","","","","2012-05-15 15:54:43 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","The recipe I tried is very good, but I won't be trying any others. I like about 3x the amount of beans they use for a single cup."
|
||||
"202425204427849728","","","","","2012-05-15 15:48:24 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","World champ recipes all seem very similar. I prefer making a strong shot or two and then topping it up in the cup after it's made."
|
||||
"202424594357960704","","","","","2012-05-15 15:45:58 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","Do most people use the AeroPress to make a drip coffee-like drink? I roughly follow the included instructions for an Americano style cup."
|
||||
"202173788308246530","202172280908955648","894911","","","2012-05-14 23:09:21 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke @summify Interesting. I wonder how slow this rollout will be. I haven't received any, but have the setting. http://t.co/S0GiK1w9","http://img.ly/ig2j"
|
||||
"202155878063935488","","","","","2012-05-14 21:58:11 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Our latest project is @tapfortap. If you need to promote your iOS or Android app have a look! Great reception so far. http://t.co/og8ujY7e","http://in.tapfortap.com/sjs/twitter"
|
||||
"202154853949112320","202113319832793090","894911","","","2012-05-14 21:54:07 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke @atomicbird Especially if you end up using CFString or another bridged type. ARC is easy until it's not, then it's a steep fall."
|
||||
"201912545974558721","201911072410710016","9533042","","","2012-05-14 05:51:16 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@BrendanEich @dalmaer Absolutely. Again, it may be possible now, or soon, but that's not it. What they have is nice though. Great flipping."
|
||||
"201910448981938178","201904429849509889","4216361","","","2012-05-14 05:42:57 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@dalmaer @BrendanEich It's not as smooth either. It might be possible but this is not that implementation. Flipboard reflows in real time."
|
||||
"201910058500636672","201904429849509889","4216361","","","2012-05-14 05:41:23 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@dalmaer @BrendanEich To be fair this barely replicates any of Flipboard's UI. No pinch zoom in/out, and the content disappears when tapped."
|
||||
"201869940255506433","201856965272543232","389153","","","2012-05-14 03:01:58 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@danwrong Ah, but you have no idea how many of us muted you for a day or so ;-)"
|
||||
"201731273054617601","","","","","2012-05-13 17:50:58 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","My happiness when discussing things on Reddit is inversely proportional to the depth of each conversation."
|
||||
"201730873006112769","","","","","2012-05-13 17:49:22 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","On an unrelated note, this is the funniest thing I have read so for today. And I have read some ridiculous stuff today. http://t.co/geJhikeJ","http://cl.ly/2u313p1j2g2G0I1J3C3d"
|
||||
"201729885356568576","","","","","2012-05-13 17:45:27 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","Man up and admit you were wrong, or don't say anything. People will respect you more if you show that you can learn from mistakes."
|
||||
"201729512604573696","","","","","2012-05-13 17:43:58 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","Nothing is worse than seeing people try to pedantically and semantically weasel their way into being correct in some insignificant way."
|
||||
"201509968753590272","","","","","2012-05-13 03:11:35 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","I get a surprising amount of joy from crafting a tweet that consists of exactly 140 characters."
|
||||
"201509653476159489","","","","","2012-05-13 03:10:19 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","TrueTwit eh? Well, at least the name is apt. Very apt. I feel like there are 2 different twitter worlds. Let's hope the streams never cross."
|
||||
"201336305282584577","201297620944175104","18137723","","","2012-05-12 15:41:30 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@raganwald It's pretty ridiculous. In theory the policy is sound and it prevents some shady behaviour. Enforcement is too strict though."
|
||||
"201017048531341312","","","","","2012-05-11 18:32:53 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Have I misunderstood NSConditionLock completely or should -[NSConditionLock lockWhenCondition:] really be called lockUntilCondition:?"
|
||||
"201013939226677248","201003548530589696","29255412","","","2012-05-11 18:20:32 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@tjholowaychuk An unfortunate right of passage I think. git clean is a motherfucking foot gun, especially -x."
|
||||
"200620249916248065","200470898447360002","549709310","","","2012-05-10 16:16:09 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@say_eye @2percentjazz Great video, and the place looks amazing! I'll have to stop by soon."
|
||||
"200601928890204160","200600849095999488","18137723","","","2012-05-10 15:03:21 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@raganwald I see! For a second I thought it might be a null operator used to confound job applicants or something. COMEFROM"
|
||||
"200600139503632385","200596788250550273","18137723","","","2012-05-10 14:56:14 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@raganwald I'm still trying to wrap my head around +-= ... Surely that is a syntax error in any language. It's nonsensical."
|
||||
"200450788215103489","200444992802656256","894911","","","2012-05-10 05:02:46 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke lol!"
|
||||
"200438553291927552","200412073648340993","33423","","","2012-05-10 04:14:09 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@gruber Read that as ""slave"" and was pretty confused for a few seconds."
|
||||
"200387258136801280","200367048952512514","45993","","","2012-05-10 00:50:20 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@clint @siracusa I'm all for change when it makes sense, but there's no need to throw out everything solely because it's perceived as ""old""."
|
||||
"200386842447716352","200367048952512514","45993","","","2012-05-10 00:48:40 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@clint @siracusa Is there anything wrong with icons of old items taking on new meanings? We need something to represent new abstract things."
|
||||
"200353143941378048","200295208070561792","894911","","","2012-05-09 22:34:46 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke Now that's an ambitious goal."
|
||||
"200243765707935745","","","","","2012-05-09 15:20:08 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","The problem with LTE data caps is that nobody cares how fast video streams if they can only watch one or two videos a month."
|
||||
"200236452737589249","80610181515448320","16484216","","","2012-05-09 14:51:05 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@old_sound @indutny Looks more like ""bre.ho"" to me. In the other direction you get ""lshdc;"". If it was just a joke I guess I don't get it :)"
|
||||
"200057208585728002","","","200037605633564672","571442131","2012-05-09 02:58:50 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @jsfixed: Deadlines for new issues is 6:00 PST Friday. Issues submitted after that will not be considered. https://t.co/KFdQDFP2","https://github.com/JSFixed/JSFixed/issues"
|
||||
"199902302742646784","","","","","2012-05-08 16:43:17 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","unfuckbootstrap thanks to @mikeash ? http://t.co/qSQk9kHf","http://www.mikeash.com/pyblog/solving-simulator-bootstrap-errors.html"
|
||||
"199736326529097729","","","199620997459087360","197263266","2012-05-08 05:43:45 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @rob_pike: The Go compiler isn't so fast; other compilers are just slow. Machines are bloody fast. Just don't piss the speed away."
|
||||
"199722671469105152","199618509192441859","33493","","","2012-05-08 04:49:30 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@peterc @raganwald Some were pretty questionable. Not sure if it's good or bad I got 20/20. Lucky guesses for COBOL and Fortran."
|
||||
"199716458278825985","","","","","2012-05-08 04:24:48 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@OHMYDAIMY_ @__SJS Hey, leave me out of this! :p Ik ben niet de sjs u zoekt."
|
||||
"199544969369882625","","","","","2012-05-07 17:03:22 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","Pronounce words however you like. Unless you pronounce niche as ""nitch"". Then we've got problems."
|
||||
"199515343692120066","","","199405059694542848","50850314","2012-05-07 15:05:39 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @kylepulver: Every single programming bug hunt seems to end with ""Wow, I'm an idiot."""
|
||||
"199184300200046593","199183452774481920","14231571","","","2012-05-06 17:10:12 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@marcoarment Make a great app. Guys effectively buys you lunch. Over 3 years later he wants half the lunch back. Must be the full moon."
|
||||
"198939898919653378","","","198939381724229632","33493","2012-05-06 00:59:02 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @peterc: @_sjs perl -pe ""s/\n/\n;\n/"" < script.js .. it cures all!"
|
||||
"198937102644297728","","","","","2012-05-06 00:47:56 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","If people actually listened to Canadians they would notice that we say ""aboat"", not ""aboot"". Closer to ""aboat"" anyway. +@jdalrymple @5by5"
|
||||
"198931798426783744","","","","","2012-05-06 00:26:51 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","I posit that those who omit semicolons in JS are more mindful of when they are necessary and therefore less likely to miss an important one."
|
||||
"198930855320752129","198897178612203521","123323498","","","2012-05-06 00:23:06 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@jashkenas @devongovett How can that be? Always using semicolons prevents such errors. I propose inserting bare semicolons every other line."
|
||||
"198815493392568320","","","198730402322583552","32591490","2012-05-05 16:44:42 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @MattBloomFilms: Sharks are much less scary when they have human teeth... http://t.co/c89GalNg","http://twitter.com/MattBloomFilms/status/198730402322583552/photo/1"
|
||||
"198641328492527616","","","","","2012-05-05 05:12:37 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","The thought is flattering, but one of these things is not like the others. https://t.co/TSySw9Fg (hint: it's me, I don't belong)","https://twitter.com/ByranZaugg/following"
|
||||
"198590359658442759","","","198507161687572480","14877600","2012-05-05 01:50:06 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @toshok: color diff viewers should flip red/green. red should be for lines added. green should be for lines removed."
|
||||
"198480590398431234","198479416957997056","22196723","","","2012-05-04 18:33:55 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@markkolich Fair enough. I'm no fan of Scala but I understand that perspective."
|
||||
"198478607125979139","198472368824385537","22196723","","","2012-05-04 18:26:02 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@markkolich Objective-C is a non-starter but Scala is cool? I want some of what you're smoking! ;-)"
|
||||
"198456924642095106","","","198456762851000322","15824992","2012-05-04 16:59:52 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @rupie: @tapfortap lead developer --> @_sjs crossing the TC 10k...coffee in hand! http://t.co/iJehtGGP","http://twitter.com/rupie/status/198456762851000322/photo/1"
|
||||
"198445128870924288","","","198394824368463873","636923","2012-05-04 16:13:00 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @siracusa: That last tweet probably means I am now officially my mother on the Internet."
|
||||
"198445105512849408","","","198394742642458624","636923","2012-05-04 16:12:54 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @siracusa: Never give up: http://t.co/ICeQgDGW","http://www.youtube.com/watch?v=qX9FSZJu448"
|
||||
"198443824199110661","","","198382736564699136","14335498","2012-05-04 16:07:49 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @newsycombinator: Learn to read a sentence of Chinese in 3 minutes http://t.co/ciVBp2Di","http://j.mp/vVybnI"
|
||||
"198269191277645826","","","","","2012-05-04 04:33:53 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Ok, take 2: `shasum ""#{filename.gsub(/([$!\(\)\[\]])/, '\\\\\\1')}""` ? down to 6 backslashes from 13."
|
||||
"198264297829302274","","","","","2012-05-04 04:14:26 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Maybe I just need to set SHELL=/bin/zsh in my crontab. Cron might be the $SHELL culprit here."
|
||||
"198264074335813635","","","","","2012-05-04 04:13:33 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Might be worth quoting more characters and skipping the extra level of shelling w/ zsh. Bash needs noglob and Ruby should respect $SHELL."
|
||||
"198263232442540032","","","","","2012-05-04 04:10:12 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","What am I doing wrong? Shell out from Ruby, quoting nightmare: `zsh -c ""noglob shasum \\\""#{filename.gsub(/([$!])/, '\\\\\\\\\\\\\1')}\\\""""`"
|
||||
"198170313316499459","","","198168312440557568","2262091","2012-05-03 22:00:59 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @ajordens: Wah wah wah. I'll jut stick to my free 18gb dropbox. RT @ericmash: Google Drive cannot sync shared folders. Going to unins ..."
|
||||
"197883018109661184","","","197824148431572992","10647712","2012-05-03 02:59:22 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @joshsmith: Whoa! `npm install ____ --save` is freaking amazing. How did I not know about this before?"
|
||||
"197781451670953987","197771391016251393","16468446","","","2012-05-02 20:15:47 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@ryanflorence @devongovett For every person arguing there are 1000 just using JS, with and without semis and comma-first style."
|
||||
"197556304443736065","","","","","2012-05-02 05:21:11 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","xkcd has itself an apple touch icon now. Much better! http://t.co/VKgFL2M1","http://twitter.com/_sjs/status/197556304443736065/photo/1"
|
||||
"197555626950406145","","","197552913952935936","636923","2012-05-02 05:18:26 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @siracusa: .txt, .tif, .tmp?just wait until the .xt, .if, and .mp compression algorithms are introduced."
|
||||
"197555614937923585","","","197550113382608897","636923","2012-05-02 05:18:23 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @siracusa: Looking at an app distributed as a .tbz2 file, I find myself marveling at how tar has assumed ownership of all extensions ..."
|
||||
"197554844997926912","197536312658624514","14864447","","","2012-05-02 05:15:20 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@bryan_kyle I'll have one of whatever you're having."
|
||||
"197335919437676544","197335344398602240","13753352","","","2012-05-01 14:45:24 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@crashplan No problem. Our office also has a backup server that most back up to with CrashPlan, along with CrashPlan Central. You guys rock!"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,78 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"219059371156574209","219039303458762753","5813712","","","2012-06-30 13:26:38 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@antirez Many more of us love your work. Thanks for doing it!"
|
||||
"218889087803858944","","","218813504008892416","159946057","2012-06-30 02:09:59 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @awbjs: This afternoon I took the first steps of incorporating proper tail calls into the ECMAScript 6 draft specification."
|
||||
"218575937183293440","218558453164150785","29255412","","","2012-06-29 05:25:39 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@tjholowaychuk Nice project there. I have some shell aliases get/post/put/delete but they?re not as flexible."
|
||||
"218575476938117120","","","218558453164150785","29255412","2012-06-29 05:23:49 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @tjholowaychuk: burl(1) http verbs are more expressive now https://t.co/EYVveBuF","https://github.com/visionmedia/burl/commit/6b5bbf6e11c278c7f68ad8228b0b4aa0fc284d78"
|
||||
"218537790361706496","218417016464351233","165975834","","","2012-06-29 02:54:04 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@PiCNiC_Coffee Brace yourself for the return of Beta Street. Moved back downtown to be closer to Picnic."
|
||||
"217499730123567104","217417152054042624","11222","","","2012-06-26 06:09:11 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@k @typeoneerror In typical ZDNet style the article is incorrect. Higher priced rooms are ranked higher. The same room doesn?t cost more."
|
||||
"216404237129760768","216384676456173569","894911","","","2012-06-23 05:36:05 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Arousing."
|
||||
"216196324561920001","","","216181560808968192","5813712","2012-06-22 15:49:55 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @antirez: It's not much but I want to share the first interaction I'm having with Sentinel: http://t.co/8npH2l9B","http://bit.ly/O03gqy"
|
||||
"215970658172153856","","","215827498716495872","140108433","2012-06-22 00:53:12 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @angustweets: Object.create might have enjoyed more success if the second arg was a simple key-value hash instead of all that defineP ..."
|
||||
"215546200491954176","215511255417503745","894911","","","2012-06-20 20:46:33 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke The new MBP can theoretically run 5 external displays using USB adapters. Someone please try this :) @macsales @marcoarment"
|
||||
"215286550689366017","215279802578509825","15540222","","","2012-06-20 03:34:48 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@rauchg Last fall I had to embark on The Great Unfollowing of 2011. Trimmed from 200-300 down to ~100. It?s much better now."
|
||||
"215232090927673345","","","215231024190337025","636923","2012-06-19 23:58:23 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @siracusa: WWDC session videos are up! https://t.co/HTcPB6bS (via @Jury, of course)","https://developer.apple.com/videos/wwdc/2012/"
|
||||
"215224632826015745","215190182356467712","165975834","","","2012-06-19 23:28:45 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@PiCNiC_Coffee I can't wait until we move back downtown in 2 weeks. I'm sitting here drooling on my keyboard over that salad."
|
||||
"214968297278550017","214933686242656256","22406953","","","2012-06-19 06:30:10 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@mahyarm I?d love to try it out. I also dig the kickstand, that was about the only thing I liked about my Nokia n810."
|
||||
"214827465456107520","214802580700803078","894911","","","2012-06-18 21:10:33 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke That doesn't sound good. Hope you feel better after a rest."
|
||||
"214752126965002240","214729748763516928","36823","","","2012-06-18 16:11:11 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@anildash It seems that nobody knows that Google Maps works very well in Safari either."
|
||||
"213805712869048321","213779618770063360","15687937","","","2012-06-16 01:30:28 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@devongovett GarageBand is collaborative. Still shouldn?t ask until you show intent to collaborate though."
|
||||
"213658172257345536","213655434450567170","18137723","","","2012-06-15 15:44:12 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@raganwald Anecdotally, I have only purchased one desktop (rather than building it myself) and I will take the thinner notebook every time."
|
||||
"213656946702684160","213655434450567170","18137723","","","2012-06-15 15:39:20 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@raganwald The same goes for TVs. Most people really could not care less about repairing their appliances themselves."
|
||||
"213521615823179778","213521275325382656","14315117","","","2012-06-15 06:41:34 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@dainerose They are all pretty cool. Haven?t used any enough to settle on one yet though. Let me know what you think of angular."
|
||||
"213521406170902528","213378429112946688","14231571","","","2012-06-15 06:40:44 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@marcoarment @Pogue ? and sends nicely packaged digests to my Kindle every week."
|
||||
"213521220837179392","213378429112946688","14231571","","","2012-06-15 06:40:00 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@marcoarment @Pogue Let me know as soon as Safari gets a nice reading UI and lets me save articles from RSS & twitter apps, Chrome, email, ?"
|
||||
"213519229004169216","213437128875577344","14315117","","","2012-06-15 06:32:05 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@dainerose You might also like ember.js and knockout.js. Ember has pretty awesome routing."
|
||||
"213293639537930241","213279207743176704","18137723","","","2012-06-14 15:35:41 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@raganwald Happy birthday! Looking forward to the next 8 years of essays and such."
|
||||
"213081365422424064","","","212981330538020864","22386062","2012-06-14 01:32:11 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @steveklabnik: I can not even describe how insane the text of this blog post is: http://t.co/lXIa0cQ1 Good thing I never use Skype an ...","http://blogs.skype.com/en/2012/06/skype_advertising_update.html"
|
||||
"213080977357017088","","","212974378755964929","207756340","2012-06-14 01:30:38 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @wwwtxt: I don't think anyone's going to release a laptop with a?or even a powered-portable?optical disk system (they're not small no ..."
|
||||
"212912602987245569","","","","","2012-06-13 14:21:34 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","VMware Fusion is $50. A response to the bundle with Parallel?s, or is version 5 eminent?"
|
||||
"212895503459942403","","","212740952887001089","15608761","2012-06-13 13:13:38 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @ariyahidayat: For those ""Please help me building my skyscraper, I'm clueless!"" questions, as much as I'd like to help everyone, I al ..."
|
||||
"212776761010814976","","","","","2012-06-13 05:21:47 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","Ok @github you win. Released gitter v0.2.0 today for GitHub API v3. Works in node.js and browsers. https://t.co/vs1ycVPc","https://github.com/samsonjs/gitter"
|
||||
"212361899088674819","","","212280755198509056","14864447","2012-06-12 01:53:16 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @bryan_kyle: Big news day today. Emacs 24.1 released!"
|
||||
"212361781866266625","212361165743988736","894911","","","2012-06-12 01:52:48 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke I happen to have a $300 cheque here I was going to blow on something. Maybe I should."
|
||||
"212360952933388288","212267980539703296","894911","","","2012-06-12 01:49:31 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke No fair! I don?t want to put iOS 6 on a main device. *shakes fist*"
|
||||
"212360732950540289","212359251128098816","894911","","","2012-06-12 01:48:38 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke I understand going from 17? to 15? is a loss in screen space regardless of pixels, but it may not be as bad as you expect."
|
||||
"212360353714147328","212357478069977088","7198302","","","2012-06-12 01:47:08 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@jonathanstark @davecreates If Apple really sees Mac as a truck and iOS as a car, they know that there will be fundamental differences."
|
||||
"212359366345621504","212357478069977088","7198302","","","2012-06-12 01:43:13 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@jonathanstark @davecreates The genie wasn?t out of the bottle yet so nothing was taken away from users by the 3rd party restriction."
|
||||
"212358422383951872","212356034914811904","894911","","","2012-06-12 01:39:27 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Like 1680x1050 on a 15? the added clarity makes smaller text more readable, so you can see more at once than on 1440x900."
|
||||
"212355482239778817","212262167209193473","894911","","","2012-06-12 01:27:46 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Why would you get 1440x900? At that point get the 13? Air w/ the same res. 1680x1050 and 2880x1800 are available on the 15?."
|
||||
"212267086909677569","212236758438518784","894911","","","2012-06-11 19:36:31 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Really nice on iPad too!"
|
||||
"212266835444379648","212236313611612160","7198302","","","2012-06-11 19:35:31 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@jonathanstark @davecreates How does disabling non-App Store installs altogether benefit their bottom line, or the UX?"
|
||||
"212034179322482688","","","","","2012-06-11 04:11:02 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Keynote Bingo from 2008. Interesting how many of these are relevant this year too, especially if you tweak them a bit. http://t.co/SUJ0sV4D","http://appletechblog.blogspot.ca/2008/01/macworld-keynote-bingo.html"
|
||||
"211945613380694016","211945467754459136","894911","","","2012-06-10 22:19:06 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Not until the human centipad is released."
|
||||
"211945271423275011","211929223156342784","894911","","","2012-06-10 22:17:45 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke My iPad screen scrambled and then it presumably kernel panicked and rebooted while watching YouTube. Authentic Flash experience!"
|
||||
"211926452894044161","211905368127836160","20079975","","","2012-06-10 21:02:58 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@polotek (low end Oakley?s. I have sat on them, etc. Lenses and arms pop off and pop right back in)"
|
||||
"211926153265561601","211905368127836160","20079975","","","2012-06-10 21:01:46 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@polotek I was the same with sunglasses until my friends talked me into a decent pair (for me about $100). They don?t break easily, worth it"
|
||||
"211327907031814145","","","","","2012-06-09 05:24:33 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@ryah heresy"
|
||||
"211307336491483137","211306607441743873","136077128","","","2012-06-09 04:02:49 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@kitcambridge @juddv Tried to console a coworker with that site earlier, it?s hilarious :)
|
||||
|
||||
But also sad because Xcode 4 is 2 years old?"
|
||||
"211281805964349440","","","211227166929719296","14112263","2012-06-09 02:21:22 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @juddv: OH (a lot): ""Oh fuck you, Xcode."""
|
||||
"211107974339502080","","","","","2012-06-08 14:50:37 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","I?ve been playing with HTML7 in the WebKit nightly and so far I?m quite impressed! LatteDartScript is pure bliss. http://t.co/JFjDuRrK","http://james.padolsey.com/general/html7-arrives/"
|
||||
"211106691348054016","","","211102628501921792","70596949","2012-06-08 14:45:32 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @creationix: NaN !== NaN and -0 === +0, except in ECMA6 Map keys where they are reversed!? JavaScript sure is entertaining."
|
||||
"210991031192264704","210988232425488384","894911","","","2012-06-08 07:05:56 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Just keep in mind he?s the guy who thinks Jobs was a tinkerer. He doesn?t seem to understand why Jobs was special at all."
|
||||
"210990431188692993","210988232425488384","894911","","","2012-06-08 07:03:33 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke But who knows. IBM has been forgotten by the masses and they were a big part of the PC revolution as well."
|
||||
"210989870229884930","210988232425488384","894911","","","2012-06-08 07:01:19 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Just because it?s controversial doesn?t mean it isn?t stupid. He may be right in the end but his reasoning seems off."
|
||||
"210988653063831552","210986927296487424","894911","","","2012-06-08 06:56:29 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke They never were household names either. Jobs and Gates are as their work has had a much more direct impact on millions of people"
|
||||
"210986176662872064","210980013665812480","894911","","","2012-06-08 06:46:39 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Not to mention that you can?t mention Gates or Jobs without the other coming up. If one is remembered so will be the other."
|
||||
"210985672205545473","210980013665812480","894911","","","2012-06-08 06:44:38 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Malcolm Gladwell is whoring for attention. Apple is truly legendary in the computing era and Jobs is almost synonymous w/ Apple."
|
||||
"210910853548081154","210908478288576513","894911","","","2012-06-08 01:47:20 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Apparently you can but GitX lacks the menu option for that. My build does anyway. Maybe it?s time to compile a new one."
|
||||
"210908301364432897","210879046765125633","894911","","","2012-06-08 01:37:12 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Apparently contacting new recruits is a thing now so there might actually be a correlation."
|
||||
"210907690346627072","210854974878527488","894911","","","2012-06-08 01:34:46 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke @bryan_kyle Autocorrect in GitX is my nemesis."
|
||||
"210775053288214529","","","","","2012-06-07 16:47:43 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","The fundamental problem with typing (a lot) on an iPad is that you want to type on a horizontal surface while looking at a vertical one."
|
||||
"210758173857026049","","","210753107053920256","14231571","2012-06-07 15:40:39 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @marcoarment: The Morning Of Weird Emails continues. http://t.co/0rbiBqPU","http://twitpic.com/9ts7m0"
|
||||
"210547570857082882","210532933390442496","894911","","","2012-06-07 01:43:47 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Hooray! Glad to hear that :)"
|
||||
"210529963626078208","","","","","2012-06-07 00:33:49 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","I'm just about sold on Sublime Text 2 and I haven't even tried it yet. Nice to see a TM2 alpha but is it ever shipping? #textmate #tm2"
|
||||
"210469472803364864","210467183380267008","7198302","","","2012-06-06 20:33:27 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@jonathanstark Only 9 for myself."
|
||||
"210166838385057794","","","210159439234342913","658643","2012-06-06 00:30:53 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @SteveStreza: @marcoarment THERE WERE NO INSTAPAPER COUPONS AT PHILZ COFFEE PLEASE ADVISE"
|
||||
"210142123687813121","","","","","2012-06-05 22:52:41 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","""What is Xcode? What is the app delicate?""
|
||||
|
||||
Some people are beyond help."
|
||||
"209518717216890880","209505353640058880","14231571","","","2012-06-04 05:35:29 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@marcoarment They seem to care a lot about that photo. Congrats on the release. I *almost* wish I had an Android device to use it on."
|
||||
"208793727911731201","","","208786403197333504","14231571","2012-06-02 05:34:38 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @marcoarment: Ah, late-night weekend server migrations. Reminds me of Tumblr's early days.
|
||||
|
||||
I waited far too long to ask for a sysadmin."
|
||||
"208725184037924865","","","","","2012-06-02 01:02:16 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","I just gained 14 GB of disk space by restarting my Hackintosh ? OS X issue or osx86? That's too much transient usage in an SSD world."
|
||||
"208722662246187008","","","208709983024590848","894911","2012-06-02 00:52:15 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @JimRoepcke: ? I'm currently available for iOS app development contracts and positions. I'm also available for 1-on-1 iOS mentoring v ..."
|
||||
"208616432852942848","","","208543475770204161","8710132","2012-06-01 17:50:08 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @bmf: In commodity trading news, futures on brilliant ideas continue to be depressed, as prices on talk remain at all time lows."
|
||||
"208549171106562049","","","207950038226317314","217829531","2012-06-01 13:22:51 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @DavidBruant: ""Completeness is an anti-goal for syntax."" @littlecalculist https://t.co/W2zYRNgw","https://mail.mozilla.org/pipermail/es-discuss/2012-May/023045.html"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,28 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"230452793373241345","230366010551709696","494341960","","","2012-08-01 00:00:02 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@tapfortap @mashable The thing is he has to buy thousands of custom pieces of his getup at a time. He can't just buy a single, custom cowl."
|
||||
"230452011584344064","","","230403390306385920","14273142","2012-07-31 23:56:55 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @lunafiko: Just launched Tell Your Boss Anything, anonymous way for employees to provide feedback to their managers https://t.co/YsFeC6yD","https://tellyourbossanything.com/"
|
||||
"229312810641924097","","","","","2012-07-28 20:30:09 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@ryah Yup, I do. 99.999% of code doesn?t need arguments.callee, leaked globals, with, eval, etc."
|
||||
"228319667960295424","","","","","2012-07-26 02:43:45 +0000","<a href=""http://tapbots.com/software/tweetbot/mac"" rel=""nofollow"">Tweetbot for Mac</a>","The new version of Apple?s Podcast app is snappy and doesn?t crash, but still doesn?t seem to use iCloud. Better, still a long way to go."
|
||||
"228309946507329536","","","228186629876105216","636923","2012-07-26 02:05:07 +0000","<a href=""http://tapbots.com/software/tweetbot/mac"" rel=""nofollow"">Tweetbot for Mac</a>","RT @siracusa: Nerds? http://t.co/aP38wtln","http://patdryburgh.com/blog/preparing-for-john-siracusas-review-of-mountain-lion/"
|
||||
"228150232339316737","","","","","2012-07-25 15:30:32 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","And so it begins. http://t.co/ZvurHzji","http://twitter.com/_sjs/status/228150232339316737/photo/1"
|
||||
"227590328264302594","","","","","2012-07-24 02:25:37 +0000","<a href=""http://tapbots.com/software/tweetbot/mac"" rel=""nofollow"">Tweetbot for Mac</a>","about.me for geeks: `curl http://t.co/FBPAPQP5` /tip o? the hat to @pengwynn","http://cui-about.me/sjs"
|
||||
"227229550977884160","","","","","2012-07-23 02:32:01 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","I just saw an American tourist with a Galaxy Note and did a double take."
|
||||
"226739166346633216","","","226739107378896896","5813712","2012-07-21 18:03:24 +0000","<a href=""http://tapbots.com/software/tweetbot/mac"" rel=""nofollow"">Tweetbot for Mac</a>","RT @antirez: p.s. The appointment of monday July 23th with the first public release of Redis Sentinel is confirmed!"
|
||||
"226520883584450561","226511843215151106","29255412","","","2012-07-21 03:36:01 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@tjholowaychuk Nice one! Love the second photo. Where did you spot that heron?"
|
||||
"224966774452527105","","","","","2012-07-16 20:40:33 +0000","<a href=""http://instagr.am"" rel=""nofollow"">Instagram</a>","Current status: redneck http://t.co/WAXAHJej","http://instagr.am/p/NJ84vSreu7/"
|
||||
"224947674925891584","224886642056503296","14231571","","","2012-07-16 19:24:39 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@marcoarment @siracusa?s worst nightmare."
|
||||
"224947464963227648","","","224875738241835009","169309199","2012-07-16 19:23:49 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @noVNC: JavaScript is now faster than Java at math: http://t.co/AAuhXWMi","http://www.redcode.nl/blog/2012/07/java-speed-of-math/"
|
||||
"224595246779088897","","","224588916043423744","33493","2012-07-15 20:04:14 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @peterc: A story about a useful *zero* byte program that sold for ?5 a go in the 80s: http://t.co/obmLPff3 (I loved the Tatung Einstein!)","http://peetm.com/blog/?p=55"
|
||||
"224163617682096128","","","223996324792635394","55486012","2012-07-14 15:29:05 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @ChrisBeckmann: The 1989 Game Boy has 0.23% the display resolution of an iPhone 4S. It sold 117.69 million units."
|
||||
"223978099648368642","","","223932856269938690","267433199","2012-07-14 03:11:54 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @nddrylliog: NY Supreme Court Upholds Grooveshark Legality http://t.co/tF9nzujm (via @KimDotcom)","http://blog.grooveshark.com/post/27150025910/ny-supreme-court-upholds-grooveshark-legality"
|
||||
"223132039967293440","","","223127533837762561","20079975","2012-07-11 19:09:58 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @polotek: This is pretty amazing. ""Paid, PAID Vacation"". Pay employees to take a real vacation and NOT work. http://t.co/RhC4ZSpL via ...","http://www.fullcontact.com/2012/07/10/paid-paid-vacation/"
|
||||
"223076848144355331","","","222829875109699584","125481462","2012-07-11 15:30:39 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @RealRonHoward: Arrested Development for Netflix. IT'S ALIVE. This is what the writer's room looks like http://t.co/yhSRZET4","http://twitter.com/RealRonHoward/status/222829875109699584/photo/1"
|
||||
"223076789461843969","","","222936727516491777","12819682","2012-07-11 15:30:25 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @mitchellh: Next up, let's get Vagrant booting up VMWare Fusion instances, shall we? Final touches on this boxes branch, then a merge ..."
|
||||
"222924618497916928","","","222779724567547904","7076492","2012-07-11 05:25:45 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @Glinner: ?I?d LOVE to download your app instead of going to the webpage I just tried to visit!?? No-one, ever. No-one in the future ..."
|
||||
"221285716448133121","","","221279965122015232","17263516","2012-07-06 16:53:20 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @bgifford: YYYYMMDD Let's just agree that's the best for organising dates. K, thanks."
|
||||
"220529221741715459","","","","","2012-07-04 14:47:18 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Episode 15, The Bridges of Siracusa County, is the original ""this will be a short show"" that ends up being long. @danbenjamin @siracusa"
|
||||
"220160115322527744","","","220135260799778816","5813712","2012-07-03 14:20:36 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @antirez: some more sentinel in action (agreement using two sentinels to mark a master objectively down): http://t.co/2PqpJtYc","http://bit.ly/N8f1K4"
|
||||
"220019224402341888","220018943572721664","894911","","","2012-07-03 05:00:45 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Ha ha. Fair enough."
|
||||
"220018831144390656","220018281027870721","894911","","","2012-07-03 04:59:11 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Just grab your ankles like a good Canadian."
|
||||
"220017909517398017","219999497911152640","894911","","","2012-07-03 04:55:32 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke Time to get off that old business account. The water's fine on residential plans :) http://t.co/mQvTBEgi http://t.co/zpern97F","http://cl.ly/2t2g0p2R29122U2q0e2b","http://cl.ly/2V0y2K160v2V1Z083d2Z"
|
||||
"219654929831301121","219649972709232640","894911","","","2012-07-02 04:53:10 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Dropbox keeps versions around for 30 days so if it goes awry you can restore from the web UI. Should be fine though."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,21 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"241337083975827456","241330184828096512","31442511","","","2012-08-31 00:50:19 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@RogersHelps I believe it's the 11th of each month and will try to forget about it till then. Except I've turned data off because of this :/"
|
||||
"241327652013748224","241306818574438400","31442511","","","2012-08-31 00:12:50 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@RogersHelps Not yet. 2 weeks into the cycle I was texted about a $50 overage fee for data usage so I started finding out what?s up."
|
||||
"241302138322575361","241299057908252673","31442511","","","2012-08-30 22:31:27 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@RogersHelps However I did change my plan last month so I suspect that is somehow related. I might have to wait for the bill and dispute it."
|
||||
"241301979727527936","241299057908252673","31442511","","","2012-08-30 22:30:49 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@RogersHelps I have been streaming podcasts more. At ~30MB/hour, 10 GB is 333 hours. I did not listen to 333 hours in 2 weeks (336 hours)."
|
||||
"241295730948587521","","31442511","","","2012-08-30 22:05:59 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@RogersHelps I have a bogus charge for 10+ GB data usage this month and trying to get an explanation is like pulling teeth."
|
||||
"241295254093967360","241241993605443584","31442511","","","2012-08-30 22:04:06 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@RogersHelps Exactly. She was trying to explain the excessive data usage and insisted that was true. Very frustrating trying to get help."
|
||||
"241206166124900352","","","","","2012-08-30 16:10:06 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","I'm so glad I decided to buy my phone instead of getting a subsidized one. The oligopoly of telcos in Canada continually disgusts me."
|
||||
"241205854374854656","","","","","2012-08-30 16:08:51 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Maybe they believe it themselves, but that is so misguided I don't know where to begin. If they actually try to bill me for this I'm gone."
|
||||
"241205643753697280","","","","","2012-08-30 16:08:01 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Someone at Rogers just told me that my phone used 10GB of data this month because when you turn on an iPhone it updates itself. @rogershelps"
|
||||
"240616679246278657","240563202138730496","33493","","","2012-08-29 01:07:41 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@peterc I search some of my reference ebooks all the time. Other reference books I want to flip through. They both have their place for me."
|
||||
"239194092863639552","239159133897629696","894911","","","2012-08-25 02:54:50 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke It was PHP this time. Don?t worry, it wasn?t my bug."
|
||||
"239132972060655617","","","","","2012-08-24 22:51:58 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","Yet another bug solved by renaming something to ?banana?. The magic cure-all. @JimRoepcke"
|
||||
"238057651219623936","238052249606189056","22196723","","","2012-08-21 23:39:01 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@markkolich The name says it all."
|
||||
"237929302027546624","237923321692438528","636923","","","2012-08-21 15:09:00 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@siracusa @marcoarment According to @anandshimpi you want 20% free space or performance suffers on SSDs. This seems true in my experience."
|
||||
"237928578749173760","","","","","2012-08-21 15:06:08 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","Coffee drinkers of #yyj, treat yourself the house blend of beans from @2percentjazz. Delicious! I?m sitting here grinning at my cup."
|
||||
"235921732240805890","","","","","2012-08-16 02:11:39 +0000","<a href=""http://tapbots.com/software/tweetbot/mac"" rel=""nofollow"">Tweetbot for Mac</a>","First time I?ve seen my 100mbps connection push close to that. Slightly reassuring. http://t.co/MgQeKRiC","http://twitter.com/_sjs/status/235921732240805890/photo/1"
|
||||
"235546156032200704","235475629657714688","9533042","","","2012-08-15 01:19:14 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@BrendanEich Yes. I?ve only wanted to use var to start a case block a few times but it seems like a reasonable thing to do."
|
||||
"234005167475924992","233895767381782528","39448955","","","2012-08-10 19:15:54 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@amanderpp You're welcome! It's friiiiday!"
|
||||
"231155055548567554","231133112556474368","22219015","","","2012-08-02 22:30:34 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@mobile17 YOLO!!!!"
|
||||
"231090743584911360","","","230953862952013824","5813712","2012-08-02 18:15:01 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @antirez: Redis 2.4.16 and Redis 2.6.0-rc6 are out. In 2.4.16 main change is Sentinel-compatibility. 2.6.0-rc6 has more: http://t.co/ ..."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,43 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"252072853661417472","251940398338019328","22406953","","","2012-09-29 15:50:26 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@mahyarm (process for the sake of it, that is)"
|
||||
"252072738867511296","251940398338019328","22406953","","","2012-09-29 15:49:58 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@mahyarm That?s probably a big part of it. I think deep management hierarchies can also indicate a poorly run company with too much process."
|
||||
"251834608629473280","251812894495350785","894911","","","2012-09-29 00:03:44 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke Isn't that in Rework by 37signals?"
|
||||
"251786804401950720","251779721438851072","894911","","","2012-09-28 20:53:46 +0000","web","@JimRoepcke lol, as well it should! Latency is amazing, often 30-50 ms. I was playing around with @JosephMartel's phone on LTE at lunch."
|
||||
"251780215783710720","","","","","2012-09-28 20:27:35 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Rogers has a ""bill explainer"" now. Someone somewhere thought that was a better idea than simplifying the bill. Canadian telcos have issues."
|
||||
"251776966091489280","251776730572935168","894911","","","2012-09-28 20:14:41 +0000","web","@JimRoepcke I'm considering the switch to Telus just because they have LTE here first. I'll let you be the guinea pig :)"
|
||||
"251775388051714048","251763329624838146","894911","","","2012-09-28 20:08:24 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke Their LTE is *very* new. They hadn't updated their coverage map when you got it, though it is now. Turning it off may help :/"
|
||||
"251475366290546689","251471388462948355","29255412","","","2012-09-28 00:16:14 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@tjholowaychuk Ha ha, I felt the same way after using a Nexus One for several months last year. I liked it at first and hated it by the end."
|
||||
"251475024215683072","","","","","2012-09-28 00:14:52 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Did Apple really drop HSPA+ from the iPhone 4S now? The price isn't that much lower. They must be milking it. http://t.co/BwWC17Fz","http://store.apple.com/ca/browse/home/shop_iphone/family/iphone/compare"
|
||||
"250981457001058305","250958480708599808","31151313","","","2012-09-26 15:33:37 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@kuvos That?s the price of any phone plan that includes data here in Canada. No discount if you bring your own phone either."
|
||||
"250619461479055360","250612197330415616","5813712","","","2012-09-25 15:35:10 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@antirez You should. 2.6 will be better than Christmas."
|
||||
"249396918663401473","249395055436124161","14864447","","","2012-09-22 06:37:13 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@bryan_kyle @JimRoepcke I went to one of the booths that has all carriers and apparently I can?t get a better deal so it seems like a wash."
|
||||
"249393365546856448","249391413853290497","14864447","","","2012-09-22 06:23:06 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@bryan_kyle @JimRoepcke I?m happy with Rogers? service, except for the lack of LTE in #yyj, but I won?t defend them. They all suck."
|
||||
"249381433251098624","249378672031711232","894911","","","2012-09-22 05:35:41 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Not that I know of. They have a country wide plan but my10 is close enough for a lot of people."
|
||||
"249377126455861248","249374598779518976","894911","","","2012-09-22 05:18:34 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke My sister is really happy with Koodo so I will definitely look at Telus/Koodo if I cave and sign a contract for a new iPhone :)"
|
||||
"249374203088871425","249367729453281280","894911","","","2012-09-22 05:06:57 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Telus has LTE here? I should switch to Bell or Telus."
|
||||
"249373157008482304","249362628319801344","894911","","","2012-09-22 05:02:48 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Feels goodman http://t.co/6JgpZjfS
|
||||
|
||||
I wanted to switch carriers but nobody had a better deal than 6GB for $60 plus minutes, etc.","http://i.imgur.com/TqQxS.jpg"
|
||||
"249358246664609792","249349311706587136","894911","","","2012-09-22 04:03:33 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke @RogersHelps @TELUS The upside of the oligopoly and price fixing is that the carriers are interchangeable."
|
||||
"249291902875226112","249254587863818241","49227164","","","2012-09-21 23:39:55 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@ColtonPhillips @tapfortap Naive? Ambitious? FUCK IT WE'LL DO IT LIVE! :)"
|
||||
"249174334755700738","249173890486652928","356943684","","","2012-09-21 15:52:45 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@edw519 @raganwald I saw some people on reddit bitching about HN the other day. We have come full circle."
|
||||
"248979407354617856","","","","","2012-09-21 02:58:11 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","(Numbers mostly pulled directly from thin air)"
|
||||
"248979221458845697","","","","","2012-09-21 02:57:26 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","How much does the iPhone 5 and iOS 6 release cost Apple in terms of bandwidth? Average 100 apps, 20 MB each, 300M devices is 550 PB."
|
||||
"248969948507013120","248944811418206208","18605897","","","2012-09-21 02:20:36 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@joe_hill @JimRoepcke Steve Jobs, the guy going ?thermonuclear? against Android, would have renewed a service contract with Google? Okay."
|
||||
"248276174562807808","248160047614529537","19725644","","","2012-09-19 04:23:47 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@neiltyson Vegas rolls off the tongue so nicely, and is also two syllables."
|
||||
"248237592842235904","248154932329459713","19725644","","","2012-09-19 01:50:28 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@neiltyson People love their two syllable names. All names tend towards two syllables over time."
|
||||
"247723073518854145","","","247659596079067136","5813712","2012-09-17 15:45:57 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @antirez: If you plan production deployment of Sentinel, expect my assistance if needed. Btw this week I'm going to put it in product ..."
|
||||
"246466597219336192","","","246445796814385153","894911","2012-09-14 04:33:10 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @JimRoepcke: Just ordered @jetcidr (JetBrains AppCode), it's 40% off until tomorrow."
|
||||
"246441766700601345","246343360615419904","14272162","","","2012-09-14 02:54:30 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@jdalton @ckindel I tried rebooting but the OS keeps restoring my session."
|
||||
"245906286468808704","","","","","2012-09-12 15:26:42 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","And linen. Of course the background is linen."
|
||||
"245906155535224833","","","","","2012-09-12 15:26:11 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","The end of an era. No more yellow sticky note, but now the message rotates through many languages. http://t.co/r2YbEHHg","http://twitter.com/_sjs/status/245906155535224833/photo/1"
|
||||
"244895665837199361","244861410964799488","14864447","","","2012-09-09 20:30:51 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@bryan_kyle Yes! I wanted to gift an iPad app while I was out the other day and I couldn?t."
|
||||
"244521936783282177","","","","","2012-09-08 19:45:47 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","I just tried to buy a new Kindle Paperwhite but @amazon wouldn't sell it to me because I'm in Canada. Maybe I'll buy a Nexus 7 instead."
|
||||
"244507951044374528","","","","","2012-09-08 18:50:12 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Received an email from a ""Talent Sourcer"". Yes, capitalized in the middle of a sentence. How do these people expect to be taken seriously?"
|
||||
"244286596105519104","","","244038956449140736","14325629","2012-09-08 04:10:37 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @jjustice: Objective C always reminds me of nursery rhymes. -(id)doYouKnowTheMuffinMan:(TheMuffinMan *)theMuffinMan;"
|
||||
"243538985924829185","","","","","2012-09-06 02:39:54 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","I cannot tell if it?s a parade or a protest. Everyone looks happy. http://t.co/1YKFB7Ow","http://twitter.com/_sjs/status/243538985924829185/photo/1"
|
||||
"243370611978690560","243358129327316992","14818939","","","2012-09-05 15:30:50 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@sjtrny @hypercritical @theincomparable Well, the important thing is that you let everyone who enjoys it know how much you do not."
|
||||
"243159421591625731","243129407877808128","77772032","","","2012-09-05 01:31:38 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@kylegreenlaw @tapfortap Glad to hear it!"
|
||||
"243043278105227264","243042877930868736","494341960","","","2012-09-04 17:50:07 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@tapfortap @oneglobalapps If you sent some code I missed it. Please mail it to support@tapfortap.com."
|
||||
"243041249173598208","242935359590256640","77772032","","","2012-09-04 17:42:03 +0000","web","@kylegreenlaw @tapfortap Hey Kyle, just remove the < and > around the app ID and you should be good to go!"
|
||||
"242841675070844928","242783247698894849","494341960","","","2012-09-04 04:29:01 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@tapfortap I don't think so. That doesn't look like something caused by our code."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,17 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"263836191126872064","","","263771862125928448","146248951","2012-11-01 02:53:44 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @AlTobey: Chaos Monkey is for sissies. We run Ruby in production."
|
||||
"261166204155211777","","","","","2012-10-24 18:04:09 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","So long http://t.co/bDZ41Dv0! It was fun while it lasted.","http://ajax.googleapis.com"
|
||||
"259031402446721024","","","","","2012-10-18 20:41:13 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","Hooray, @github is getting DDOSd and I imagine that thousands of devs are pushing and pulling like mad on top of that making it even worse."
|
||||
"258801181147664384","258787012331581441","8549992","","","2012-10-18 05:26:24 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@pdenya @paul_irish My limit is 200,000 and since about 2007 I have 98k commands in it. Is only 3.7 MB. I love it."
|
||||
"258709800920178688","","","258702456060538880","894911","2012-10-17 23:23:17 +0000","web","RT @JimRoepcke: Lightt has launched! I've been working hard on this with the rest of the @lightt team since June. Share the Lightt! http ..."
|
||||
"258648276277002240","","","","","2012-10-17 19:18:49 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","OH: ?If you want a traditional salad you won?t get that. You?ll get three leaves and an apple or something.?"
|
||||
"258327103680946177","","","258318014653550593","494341960","2012-10-16 22:02:35 +0000","web","RT @tapfortap: Mobile App Ad Exchange Network Tap For Tap Pivots To Engagement Swapping Model http://t.co/DUVkfJfo via @techcrunch","http://techcrunch.com/2012/10/16/mobile-app-ad-exchange-network-tap-for-tap-pivots-to-engagement-swapping-model/"
|
||||
"258124861652729857","","","256954058131267584","207536489","2012-10-16 08:38:57 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @the_webhamster: The 6 Stages of Debugging: That can't happen. That shouldn't happen. Hmmm, weird. Why does that happen? Oh, I see. H ..."
|
||||
"258093065233899520","","","257865497163476992","135727142","2012-10-16 06:32:36 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @ToddDunlop: BIG DAY at @tapfortap, BIG BIG DAY!"
|
||||
"256625059601469440","256466426020368384","29255412","","","2012-10-12 05:19:16 +0000","<a href=""http://kiwi-app.net"" rel=""nofollow"">Kiwi</a>","@tjholowaychuk Nice! Cleaned it up a bit, fixed a bug, and now it works in bash and zsh too. https://t.co/BlwSmmdd","https://gist.github.com/3877451"
|
||||
"256221333048934400","","","254166322815041537","197263266","2012-10-11 02:35:00 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @rob_pike: How to report a bug: 1) Say what happened. 2) Say what should have happened. 3) Give a self-contained reproducible example ..."
|
||||
"256220008026341377","","","256181800928411651","809685","2012-10-11 02:29:44 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @garybernhardt: >>> def method_missing(n, *a, &b); send(methods.min_by { |m| levenshtein(n.to_s, m.to_s) }, *a, &b); ..."
|
||||
"254241884136935424","254214287063666688","309194717","","","2012-10-05 15:29:23 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JFlavin @siracusa Works on my iPad."
|
||||
"253891282924077056","253887339720495104","9533042","","","2012-10-04 16:16:13 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@BrendanEich @gu3st @jlongster My mistake! If Object.prototype.toString.call(new Date) is unchanged I think breakage would be minimal."
|
||||
"253879666044203008","253737435454902272","18702069","","","2012-10-04 15:30:03 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@gu3st @jlongster @BrendanEich It would break a little project called jQuery. https://t.co/ldQrZd6L https://t.co/0OPtpfkr","https://github.com/jquery/jquery/blob/master/src/core.js#L23","https://github.com/jquery/jquery/blob/master/src/core.js#L419"
|
||||
"252893730447699969","","","252862916099964928","636923","2012-10-01 22:12:18 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @siracusa: That's it, I'm moving all my status updates to UUCP."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,10 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"272566608583589889","272532034361106432","534912521","","","2012-11-25 05:05:18 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@UVicGameDev alias u='cd ..'; alias uu='cd ../..'; alias uuu= etc."
|
||||
"272002368395161600","271992408424722433","636923","","","2012-11-23 15:43:12 +0000","<a href=""http://twicca.r246.jp/"" rel=""nofollow"">twicca</a>","@siracusa @CrashPlan I bought it and it automatically extended my exisiting, expired account."
|
||||
"268555259742412802","","","","","2012-11-14 03:25:38 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","It still bothers me that iOS?s app switching animation is misleading. Launch an app from another app and it animat ? https://t.co/gXriHv0k","https://posts.app.net/1529609"
|
||||
"268027346181840897","","","267826504807886848","637133","2012-11-12 16:27:53 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @jkprime: @marcoarment sometimes reading the replies to your tweets makes me glad I don?t have any followers."
|
||||
"265489666193629184","","11178592","","","2012-11-05 16:24:03 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@atebits Letterpress is so fun, but I?m with @marco and want to see the status bar while I play. Pretty please?"
|
||||
"264975272355442690","264894236388904961","8259712","","","2012-11-04 06:20:02 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@danfrakes @marcoarment No joke, somebody played ?naggers? against me today. It?s pretty awesome though so I don?t mind."
|
||||
"264538434859831296","264530619986501633","894911","","","2012-11-03 01:24:12 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Weak. I?m surprised that supply is so constrained. I thought LD would have at least a few."
|
||||
"264506229592846336","","","","","2012-11-02 23:16:14 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","OH:"" I didn't say a sausage shower."""
|
||||
"264506144280690688","264460190550749184","894911","","","2012-11-02 23:15:53 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@JimRoepcke Unfortunately I don't know if #yyj has any. None of the London Drugs received them. I haven't checked Future Shop or elsewhere."
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,29 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"283996829371228160","","","","","2012-12-26 18:04:55 +0000","<a href=""http://www.apple.com/"" rel=""nofollow"">OS X</a>","Hmm? catawampus isn't in the letterpress dictionary. @atebits"
|
||||
"283328780909563904","283127984410460161","894911","","","2012-12-24 21:50:20 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke Cute! She lucked out with her new home."
|
||||
"283013917792423936","","","","","2012-12-24 00:59:10 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","I wondered why this happens in Xcode. @bbum figured it out: http://t.co/gOLPvdfE","http://www.friday.com/bbum/2012/12/23/xcode-sometimes-a-return-is-not-a-return-emacs-brain-damage/"
|
||||
"282816543467905025","","","","","2012-12-23 11:54:53 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Status bar clutter. http://t.co/1zECl1hx","http://moby.to/hoa82p"
|
||||
"282796110152613888","","","","","2012-12-23 10:33:41 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Good morning Atlanta. I?m on Pacific time so for breakfast I?ll have some eggs with a whiskey sour."
|
||||
"282715350443909120","","","","","2012-12-23 05:12:46 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Ironically I can?t push this code until I get on a plane because T-mobile doesn?t let me tether w/ prepaid plans, ? https://t.co/DfEbUBke","https://posts.app.net/2154150"
|
||||
"282707981513138177","","","","","2012-12-23 04:43:29 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","And @github is back up! Now I can push that fix before my flight. Booyakasha! I?m too excited about that."
|
||||
"282703960027054081","","","","","2012-12-23 04:27:31 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Playing Letterpress? Let?s have it out. I?m samsonjs on Game Centre."
|
||||
"282680821905760256","","","","","2012-12-23 02:55:34 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Downtown Seattle seems to have a Starbucks for every 100 people, and there are 100 people in every Starbucks."
|
||||
"282674140014583813","","","","","2012-12-23 02:29:01 +0000","<a href=""http://www.apple.com/"" rel=""nofollow"">OS X</a>","Damn, I feel bad for the @GitHub ops team right now. Good luck guys!"
|
||||
"282659829179367424","","","","","2012-12-23 01:32:09 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Symmetric word. http://t.co/ZI7u1NpH","http://moby.to/w2fszm"
|
||||
"282589530106761217","282572460925276160","14231571","","","2012-12-22 20:52:48 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@marcoarment @danbenjamin @hotdogsladies and every sane dev who uses a Mac. That?s right @siracusa, you are insane. MAC address whitelister!"
|
||||
"282588830857588737","282564115392765952","4777951","","","2012-12-22 20:50:02 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@_sjs @UVicGameDev @siracusa @danbenjammin Not @danbenjammin, but @danbenjamin. They are the same person but one is a novelty account."
|
||||
"282574081147158528","","","","","2012-12-22 19:51:25 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","In downtown Seattle for the day. Any recommendations on where to get a good americano?"
|
||||
"282564115392765952","282300633921503233","534912521","","","2012-12-22 19:11:49 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@UVicGameDev I don't know what hyperterminal is, but it sounds cool! Hypercritical is a podcast with @siracusa and @danbenjammin"
|
||||
"282300204965834752","","","","","2012-12-22 01:43:08 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Don?t say ?learning the terminal.? ? Hypercritical, episode 99"
|
||||
"282236503386628097","","","","","2012-12-21 21:30:00 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Preparation is key.
|
||||
|
||||
? Clothes
|
||||
? Toothbrush
|
||||
? Ticket
|
||||
? Growler
|
||||
|
||||
|
||||
http://t.co/STKprVDV","http://moby.to/coih1b"
|
||||
"280750875792777217","280750071740497920","49227164","","","2012-12-17 19:06:39 +0000","web","@ColtonPhillips With some fava beans, a nice chianti."
|
||||
"280749518008483840","280746436965060608","49227164","","","2012-12-17 19:01:15 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@ColtonPhillips You're a superstar now. Next you'll have paparazzi after you."
|
||||
"280549887521742848","","","","","2012-12-17 05:48:00 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Lost hard, but I think I put up an okay fight. http://t.co/ByYW4BmO","http://moby.to/aaebux"
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -1,62 +0,0 @@
|
|||
"tweet_id","in_reply_to_status_id","in_reply_to_user_id","retweeted_status_id","retweeted_status_user_id","timestamp","source","text","expanded_urls"
|
||||
"291707958864277504","","","291612631511494658","1235521","2013-01-17 00:46:11 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","RT @timbray: MAC addresses and liberty; essential stuff: http://t.co/EdlVn3tW","http://goo.gl/O6M6L"
|
||||
"291340678984781824","291334101544345600","14231571","","","2013-01-16 00:26:45 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@marcoarment We're not as vocal, but some of us use both iOS and Android and appreciate having Instapaper on both platforms. Thanks."
|
||||
"291325053994409984","291318884294877184","14231571","","","2013-01-15 23:24:40 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@marcoarment It's pretty good. The last I tried it a few months ago I went back to Ruby+nokogiri because it was more robust, but I'd try it."
|
||||
"291309550194266113","","","","","2013-01-15 22:23:03 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","A little birdie says that @mobile17 is going ""super public live"" with their new site design today."
|
||||
"291274395664654336","","","","","2013-01-15 20:03:22 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","All the @instapaper login forms (incl 3rd party) say that I probably don't have a password? haven't passwords been required for a while now?"
|
||||
"291258751770558464","291256065159479296","18006104","","","2013-01-15 19:01:12 +0000","<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>","@EricAlanDyck In case you don't have it, take this: https://t.co/8BXy3KBA","https://www.dropbox.com/s/1f78j4j4c8wtuc2/Be%20Here%20Now.pdf"
|
||||
"290586655344185344","290556281792647168","74837444","","","2013-01-13 22:30:32 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@Badger32d @zebpalmer Apple doesn?t trail by much. All 3 are in the same ballpark unlike, say, Acer and Gateway."
|
||||
"289559487403151360","289532023964590081","894911","","","2013-01-11 02:28:56 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke I think so. They should anyway; it?s not very old."
|
||||
"289374954829524992","289228619195224064","20079975","","","2013-01-10 14:15:40 +0000","<a href=""https://play.google.com/store/apps/details?id=com.dwdesign.tweetings&hl=en"" rel=""nofollow"">Tweetings for Android</a>","@polotek Unless I'm *very* interested that usually makes me hit back or close the tab. Not the content I came to see, so I leave."
|
||||
"289070147493318657","289068930423742464","22196723","","","2013-01-09 18:04:28 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@markkolich @Badger32d That?s a good point. I think that I feel guilty for not keeping some of my projects up to date."
|
||||
"289063291949551616","289063048747053056","74837444","","","2013-01-09 17:37:13 +0000","web","@Badger32d @markkolich Augh! Don't look yet!"
|
||||
"289061210085793792","","","","","2013-01-09 17:28:57 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","My GitHub open source contributions are pretty sad. Need to do something about that. https://t.co/6ev3ZmVU","https://github.com/samsonjs"
|
||||
"288665956371279872","288551260884443138","894911","","","2013-01-08 15:18:21 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke @bryan_kyle could be brainfuck http://t.co/I1RBGwrS","http://tdwright.co.uk/phpplayground/BF/?s=Could+be+brainfuck&plainBF=on"
|
||||
"288516732484726785","","","288329838937391104","110520327","2013-01-08 05:25:24 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @asymco: Where the next dot falls is quite an interesting question. http://t.co/rxdVjLD4","http://twitpic.com/btbbi1"
|
||||
"288054516564246528","","","","","2013-01-06 22:48:43 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Calls dropped frequently too. Rogers rarely drops calls. Next time I?ll try AT&T."
|
||||
"288053872331743233","","","","","2013-01-06 22:46:09 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","On a boat in the middle of the Strait of Georgia and have a fast 3G signal on Rogers. Middle of cities on T-Mobile in the US had Edge or nil"
|
||||
"288051360132370432","287976215254536193","14864447","","","2013-01-06 22:36:10 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@bryan_kyle I?m a baller."
|
||||
"288051267425677312","287956180456833024","6562002","","","2013-01-06 22:35:48 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@debasishg @raganwald Just joking around. Look forward to the write-up."
|
||||
"287975234513018880","","","","","2013-01-06 17:33:40 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","I have an entire airplane to myself. No other passengers on this 9-seat Piper Chieftain PA-31. Luxurious!"
|
||||
"287954356727324672","287947175277760513","6562002","","","2013-01-06 16:10:43 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@debasishg @raganwald Is that a parody like http://t.co/nNqG34xn ?","http://html9responsiveboilerstrapjs.com"
|
||||
"287947600798310400","287927505887838209","815114","","","2013-01-06 15:43:52 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@jedschmidt yeah yeah yeah :)"
|
||||
"287779551977799680","","","","","2013-01-06 04:36:06 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Top game doesn?t bode well for me. I?ll get you, @jedschmidt! Next time?"
|
||||
"287775377269612544","","","","","2013-01-06 04:19:31 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","A Dr. Strangelove joke! Awesome."
|
||||
"287760676930338816","","","","","2013-01-06 03:21:06 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Women?s boots in Seattle appear to come in one style: brown, knee-high."
|
||||
"287756390209048576","287754694875549696","2262091","","","2013-01-06 03:04:04 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@ajordens @victoriaroyals Good seats."
|
||||
"287756265323651073","287755288780627969","15880928","","","2013-01-06 03:03:34 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@pbombach @siracusa You?re right, I did catch NBC. Uncultured and not paying attention. Shame on me."
|
||||
"287752132990472192","","","","","2013-01-06 02:47:09 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Almost used Passbook, but the Fandango app isn?t in the Canadian store and I?m visiting the USA. Some other time."
|
||||
"287751267210645505","287750664807931904","636923","","","2013-01-06 02:43:42 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@siracusa @pbombach I only recognized Sega. I may be too young, or uncultured. Born in 1982."
|
||||
"287749623118983168","287745268781305858","15880928","","","2013-01-06 02:37:10 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@pbombach @siracusa For better or for worse, it plays on my iPad. I?ll save you 3 mins: ?DVNO, four capital letters? with 80s-esque effects."
|
||||
"287748118055903232","287679904076660736","959352660","","","2013-01-06 02:31:12 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@CafeTorrefacto @TheMagazineApp @marcoarment I was uncertain when it started changing voice but so far so great. Good job guys. @GlennF"
|
||||
"287747705764200448","","","287747549106941955","14864447","2013-01-06 02:29:33 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @bryan_kyle: @_sjs @tapbot_paul @marcoarment but crust is full of antioxidants. Enjoy your lunch cancer."
|
||||
"287740306407972865","","","","","2013-01-06 02:00:09 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","What to do in Seattle this evening? http://t.co/2DtPmuPp","http://www.reddit.com/r/Seattle/comments/161cx7/arrived_2_hours_ago_leaving_early_tomorrow_what/"
|
||||
"287739875690688512","","","","","2013-01-06 01:58:26 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Epic Letterpress match against @fyrite (she won). Played words don?t fit on my phone so I have to screenshot on my ? https://t.co/O4zBfH9g","https://posts.app.net/2335842"
|
||||
"287733201366048768","","","","","2013-01-06 01:31:55 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","Haven?t had anything less than delicious at Local 360 in Seattle yet. Nice bar and great food."
|
||||
"287728090497548289","287715479823466496","894911","","","2013-01-06 01:11:37 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke That does help. I feel that it?s a bit like the old ?above the fold? problem though. Sometimes the first N rows fit perfectly."
|
||||
"287715561004216321","287626809435095041","14606202","","","2013-01-06 00:21:49 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@mattlanger @marcoarment Buy one of those silicone roller things. Or mash it like everyone else said. Both work well enough."
|
||||
"287714402805882880","287705011666956288","894911","","","2013-01-06 00:17:13 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke That?s right, and the same argument applies for your finger. Especially on tablets where views rarely occupy the full screen."
|
||||
"287632239251034112","287631117828370433","14864447","","","2013-01-05 18:50:44 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@bryan_kyle @atebits A grievous omission!"
|
||||
"287631624596774914","287608437062369282","18247541","","","2013-01-05 18:48:17 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@tapbot_paul @marcoarment Also, please clean my room and make me lunch. No crusts."
|
||||
"287589731003420672","","","","","2013-01-05 16:01:49 +0000","<a href=""http://www.apple.com/"" rel=""nofollow"">OS X</a>","Just released strftime v0.5 from 10k feet, added %U and %W. I'm sure there's a cloud joke here somewhere. https://... https://t.co/kN7UtjCA","https://alpha.app.net/sjs/post/2329872"
|
||||
"287580902190616578","","","","","2013-01-05 15:26:44 +0000","<a href=""http://www.apple.com/"" rel=""nofollow"">OS X</a>","One awesome thing about the USA is in-flight wifi. Reminds me of the first time I made a phone call from an airplane.
|
||||
|
||||
Location: in thy sky"
|
||||
"287552671706128384","287446419890130947","894911","","","2013-01-05 13:34:34 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke In general though, I agree with this thought. I?ve missed UI on touch devices because of the lack of scroll bars."
|
||||
"287551029761957891","287445540831100928","894911","","","2013-01-05 13:28:02 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@JimRoepcke You can just place the cursor over the view you want to scroll in. One thing OS X gets right an Windows gets wrong."
|
||||
"287548248514760704","","","","","2013-01-05 13:16:59 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","In some ways the USA is so foreign to me. Truly bizarre. I?ll be glad to be back in Canada."
|
||||
"287236160789569536","287227376209911809","74837444","","","2013-01-04 16:36:51 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@Badger32d nooo! Actually I liked Gentoo quite a bit back in the day."
|
||||
"287226803616104448","287224092141187072","74837444","","","2013-01-04 15:59:41 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@Badger32d I don?t mess with Fedora, but I wonder if it has something like build-essential. I do like dev being similar to prod."
|
||||
"287223127925219328","287222460053610496","74837444","","","2013-01-04 15:45:04 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@Badger32d Agreed. I prefer Debian or Ubuntu for dev."
|
||||
"287219984596340737","","","","","2013-01-04 15:32:35 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","LLVM.js: LLVM Itself Compiled to JavaScript via Emscripten http://t.co/qgr8G5rk","http://badassjs.com/post/39573969361"
|
||||
"287193278737158144","","","287043930107805696","894911","2013-01-04 13:46:28 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","RT @JimRoepcke: I'm going to be available for part time or full time iOS development projects in a couple of weeks. Please RT, thanks!"
|
||||
"287192246124675073","286962376547377152","74837444","","","2013-01-04 13:42:21 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@Badger32d After a year and a half of admining CentOS and RedHat I can tolerate it now, but it can still annoy me. It?s not all bad though."
|
||||
"287191563493314560","286919751857479680","636923","","","2013-01-04 13:39:39 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@siracusa How quickly rage turns to shame."
|
||||
"286489115610984448","","","","","2013-01-02 15:08:22 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","Lesson learned. Some places spam you based on the location of your tweets. This is why we can?t have nice things."
|
||||
"286467748148686848","286456326970826753","815114","","","2013-01-02 13:43:28 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@jedschmidt Nice one! I had a similar moment at an airport at 5am the other day. Sunrise cheered me up."
|
||||
"286235256128933889","286221252539056130","14864447","","","2013-01-01 22:19:37 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@bryan_kyle @5by5 I can understand that but for me it was never enough. I could easily listen to 2 hours of @siracusa every week."
|
||||
"286213440148762624","","","","","2013-01-01 20:52:56 +0000","<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>","My favourite @5by5 podcasts ended and moved in 2012. I was a little bit sad to unsubscribe from the After Dark feed."
|
||||
"286178778697306112","286163838632595457","14231571","","","2013-01-01 18:35:12 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@marcoarment Spot on. My Nexus 7 is neglected now that the novelty wore off. iPad 3rd gen is used for hours each day though. It?s the apps."
|
||||
"286167753520459776","286127431218257920","74837444","","","2013-01-01 17:51:23 +0000","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","@Badger32d @markkolich Thanks! :)"
|
||||
"286127107459907586","286126775292014592","74837444","","","2013-01-01 15:09:53 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@Badger32d @markkolich Touch?!"
|
||||
"286126634472448002","285103375647911937","74837444","","","2013-01-01 15:08:00 +0000","<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>","@Badger32d @markkolich In the time it took to tweet that you could have just installed wget instead."
|
||||
|
Can't render this file because it has a wrong number of fields in line 3.
|
|
|
@ -1,5 +1,5 @@
|
|||
var payload_details = {
|
||||
"tweets" : 3545,
|
||||
"created_at" : "Mon Mar 25 23:43:09 +0000 2013",
|
||||
"tweets" : 4702,
|
||||
"created_at" : "2014-03-27 01:21:11 +0000",
|
||||
"lang" : "en"
|
||||
}
|
||||
|
|
@ -1,287 +1,359 @@
|
|||
var tweet_index = [ {
|
||||
"file_name" : "data/js/tweets/2013_03.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_03",
|
||||
"tweet_count" : 87,
|
||||
"file_name" : "data\/js\/tweets\/2014_03.js",
|
||||
"year" : 2014,
|
||||
"var_name" : "tweets_2014_03",
|
||||
"tweet_count" : 162,
|
||||
"month" : 3
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2013_02.js",
|
||||
"file_name" : "data\/js\/tweets\/2014_02.js",
|
||||
"year" : 2014,
|
||||
"var_name" : "tweets_2014_02",
|
||||
"tweet_count" : 168,
|
||||
"month" : 2
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2014_01.js",
|
||||
"year" : 2014,
|
||||
"var_name" : "tweets_2014_01",
|
||||
"tweet_count" : 151,
|
||||
"month" : 1
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2013_12.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_12",
|
||||
"tweet_count" : 116,
|
||||
"month" : 12
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2013_11.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_11",
|
||||
"tweet_count" : 59,
|
||||
"month" : 11
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2013_10.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_10",
|
||||
"tweet_count" : 101,
|
||||
"month" : 10
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2013_09.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_09",
|
||||
"tweet_count" : 160,
|
||||
"month" : 9
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2013_08.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_08",
|
||||
"tweet_count" : 61,
|
||||
"month" : 8
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2013_07.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_07",
|
||||
"tweet_count" : 33,
|
||||
"month" : 7
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2013_06.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_06",
|
||||
"tweet_count" : 32,
|
||||
"month" : 6
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2013_05.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_05",
|
||||
"tweet_count" : 34,
|
||||
"month" : 5
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2013_04.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_04",
|
||||
"tweet_count" : 67,
|
||||
"month" : 4
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2013_03.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_03",
|
||||
"tweet_count" : 98,
|
||||
"month" : 3
|
||||
}, {
|
||||
"file_name" : "data\/js\/tweets\/2013_02.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_02",
|
||||
"tweet_count" : 80,
|
||||
"month" : 2
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2013_01.js",
|
||||
"file_name" : "data\/js\/tweets\/2013_01.js",
|
||||
"year" : 2013,
|
||||
"var_name" : "tweets_2013_01",
|
||||
"tweet_count" : 131,
|
||||
"month" : 1
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_12.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_12.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_12",
|
||||
"tweet_count" : 20,
|
||||
"month" : 12
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_11.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_11.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_11",
|
||||
"tweet_count" : 9,
|
||||
"month" : 11
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_10.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_10.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_10",
|
||||
"tweet_count" : 16,
|
||||
"month" : 10
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_09.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_09.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_09",
|
||||
"tweet_count" : 40,
|
||||
"month" : 9
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_08.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_08.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_08",
|
||||
"tweet_count" : 20,
|
||||
"month" : 8
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_07.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_07.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_07",
|
||||
"tweet_count" : 27,
|
||||
"month" : 7
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_06.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_06.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_06",
|
||||
"tweet_count" : 71,
|
||||
"month" : 6
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_05.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_05.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_05",
|
||||
"tweet_count" : 106,
|
||||
"tweet_count" : 105,
|
||||
"month" : 5
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_04.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_04.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_04",
|
||||
"tweet_count" : 45,
|
||||
"month" : 4
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_03.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_03.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_03",
|
||||
"tweet_count" : 40,
|
||||
"tweet_count" : 39,
|
||||
"month" : 3
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_02.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_02.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_02",
|
||||
"tweet_count" : 68,
|
||||
"month" : 2
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2012_01.js",
|
||||
"file_name" : "data\/js\/tweets\/2012_01.js",
|
||||
"year" : 2012,
|
||||
"var_name" : "tweets_2012_01",
|
||||
"tweet_count" : 73,
|
||||
"month" : 1
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_12.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_12.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_12",
|
||||
"tweet_count" : 59,
|
||||
"month" : 12
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_11.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_11.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_11",
|
||||
"tweet_count" : 50,
|
||||
"month" : 11
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_10.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_10.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_10",
|
||||
"tweet_count" : 29,
|
||||
"month" : 10
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_09.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_09.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_09",
|
||||
"tweet_count" : 64,
|
||||
"month" : 9
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_08.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_08.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_08",
|
||||
"tweet_count" : 208,
|
||||
"month" : 8
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_07.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_07.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_07",
|
||||
"tweet_count" : 271,
|
||||
"tweet_count" : 270,
|
||||
"month" : 7
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_06.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_06.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_06",
|
||||
"tweet_count" : 82,
|
||||
"month" : 6
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_05.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_05.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_05",
|
||||
"tweet_count" : 187,
|
||||
"month" : 5
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_04.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_04.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_04",
|
||||
"tweet_count" : 64,
|
||||
"month" : 4
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_03.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_03.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_03",
|
||||
"tweet_count" : 109,
|
||||
"tweet_count" : 108,
|
||||
"month" : 3
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_02.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_02.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_02",
|
||||
"tweet_count" : 139,
|
||||
"month" : 2
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2011_01.js",
|
||||
"file_name" : "data\/js\/tweets\/2011_01.js",
|
||||
"year" : 2011,
|
||||
"var_name" : "tweets_2011_01",
|
||||
"tweet_count" : 180,
|
||||
"tweet_count" : 179,
|
||||
"month" : 1
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_12.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_12.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_12",
|
||||
"tweet_count" : 155,
|
||||
"month" : 12
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_11.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_11.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_11",
|
||||
"tweet_count" : 221,
|
||||
"tweet_count" : 209,
|
||||
"month" : 11
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_10.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_10.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_10",
|
||||
"tweet_count" : 126,
|
||||
"tweet_count" : 138,
|
||||
"month" : 10
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_09.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_09.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_09",
|
||||
"tweet_count" : 88,
|
||||
"month" : 9
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_08.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_08.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_08",
|
||||
"tweet_count" : 47,
|
||||
"month" : 8
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_07.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_07.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_07",
|
||||
"tweet_count" : 42,
|
||||
"month" : 7
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_06.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_06.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_06",
|
||||
"tweet_count" : 85,
|
||||
"tweet_count" : 81,
|
||||
"month" : 6
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_05.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_05.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_05",
|
||||
"tweet_count" : 54,
|
||||
"tweet_count" : 58,
|
||||
"month" : 5
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_04.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_04.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_04",
|
||||
"tweet_count" : 58,
|
||||
"tweet_count" : 55,
|
||||
"month" : 4
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_03.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_03.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_03",
|
||||
"tweet_count" : 93,
|
||||
"tweet_count" : 96,
|
||||
"month" : 3
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_02.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_02.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_02",
|
||||
"tweet_count" : 56,
|
||||
"month" : 2
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2010_01.js",
|
||||
"file_name" : "data\/js\/tweets\/2010_01.js",
|
||||
"year" : 2010,
|
||||
"var_name" : "tweets_2010_01",
|
||||
"tweet_count" : 126,
|
||||
"tweet_count" : 123,
|
||||
"month" : 1
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2009_12.js",
|
||||
"file_name" : "data\/js\/tweets\/2009_12.js",
|
||||
"year" : 2009,
|
||||
"var_name" : "tweets_2009_12",
|
||||
"tweet_count" : 48,
|
||||
"tweet_count" : 51,
|
||||
"month" : 12
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2009_11.js",
|
||||
"file_name" : "data\/js\/tweets\/2009_11.js",
|
||||
"year" : 2009,
|
||||
"var_name" : "tweets_2009_11",
|
||||
"tweet_count" : 40,
|
||||
"tweet_count" : 39,
|
||||
"month" : 11
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2009_10.js",
|
||||
"file_name" : "data\/js\/tweets\/2009_10.js",
|
||||
"year" : 2009,
|
||||
"var_name" : "tweets_2009_10",
|
||||
"tweet_count" : 11,
|
||||
"tweet_count" : 12,
|
||||
"month" : 10
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2009_09.js",
|
||||
"file_name" : "data\/js\/tweets\/2009_09.js",
|
||||
"year" : 2009,
|
||||
"var_name" : "tweets_2009_09",
|
||||
"tweet_count" : 2,
|
||||
"month" : 9
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2008_01.js",
|
||||
"file_name" : "data\/js\/tweets\/2008_01.js",
|
||||
"year" : 2008,
|
||||
"var_name" : "tweets_2008_01",
|
||||
"tweet_count" : 1,
|
||||
"month" : 1
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2007_10.js",
|
||||
"file_name" : "data\/js\/tweets\/2007_10.js",
|
||||
"year" : 2007,
|
||||
"var_name" : "tweets_2007_10",
|
||||
"tweet_count" : 1,
|
||||
"month" : 10
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2007_09.js",
|
||||
"file_name" : "data\/js\/tweets\/2007_09.js",
|
||||
"year" : 2007,
|
||||
"var_name" : "tweets_2007_09",
|
||||
"tweet_count" : 1,
|
||||
"month" : 9
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2007_06.js",
|
||||
"file_name" : "data\/js\/tweets\/2007_06.js",
|
||||
"year" : 2007,
|
||||
"var_name" : "tweets_2007_06",
|
||||
"tweet_count" : 9,
|
||||
"month" : 6
|
||||
}, {
|
||||
"file_name" : "data/js/tweets/2007_04.js",
|
||||
"file_name" : "data\/js\/tweets\/2007_04.js",
|
||||
"year" : 2007,
|
||||
"var_name" : "tweets_2007_04",
|
||||
"tweet_count" : 1,
|
||||
|
|
|
|||
|
|
@ -7,18 +7,17 @@ Grailbird.data.tweets_2007_04 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "29608381",
|
||||
"text" : "About to go to sleep. Exciting first post no?!",
|
||||
"id" : 29608381,
|
||||
"created_at" : "Mon Apr 16 06:52:21 +0000 2007",
|
||||
"created_at" : "2007-04-16 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,18 +7,17 @@ Grailbird.data.tweets_2007_06 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "125568372",
|
||||
"text" : "Reading too much into http://tinyurl.com/yqnaom",
|
||||
"text" : "Reading too much into http:\/\/tinyurl.com\/yqnaom",
|
||||
"id" : 125568372,
|
||||
"created_at" : "Fri Jun 29 02:46:51 +0000 2007",
|
||||
"created_at" : "2007-06-29 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -30,18 +29,17 @@ Grailbird.data.tweets_2007_06 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "121900592",
|
||||
"text" : "grep searching in emacs, it's like compiling and then jumping to each error except you jump to each match output from grep.",
|
||||
"id" : 121900592,
|
||||
"created_at" : "Tue Jun 26 20:22:18 +0000 2007",
|
||||
"created_at" : "2007-06-26 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -53,18 +51,17 @@ Grailbird.data.tweets_2007_06 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "116443452",
|
||||
"text" : "Wishing I could define rules for rendering views in Rails!",
|
||||
"id" : 116443452,
|
||||
"created_at" : "Fri Jun 22 22:29:48 +0000 2007",
|
||||
"created_at" : "2007-06-22 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -76,18 +73,17 @@ Grailbird.data.tweets_2007_06 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "112606532",
|
||||
"text" : "Starting to like emacs quite a bit.",
|
||||
"id" : 112606532,
|
||||
"created_at" : "Wed Jun 20 07:48:09 +0000 2007",
|
||||
"created_at" : "2007-06-20 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -99,18 +95,17 @@ Grailbird.data.tweets_2007_06 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "106911972",
|
||||
"text" : "Understanding Haskell more every day. I added float support to my Scheme after hours of reading, trial & error, and help from allbery_b.",
|
||||
"id" : 106911972,
|
||||
"created_at" : "Sat Jun 16 07:52:55 +0000 2007",
|
||||
"created_at" : "2007-06-16 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -122,18 +117,17 @@ Grailbird.data.tweets_2007_06 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "103992812",
|
||||
"text" : "Late night hacking on my scheme interpreter in Haskell. Yummy!",
|
||||
"id" : 103992812,
|
||||
"created_at" : "Thu Jun 14 08:25:09 +0000 2007",
|
||||
"created_at" : "2007-06-14 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -145,64 +139,61 @@ Grailbird.data.tweets_2007_06 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"id_str" : "100078892",
|
||||
"text" : "Creeped out by the facts of Nina Reiser's murder. The trial starts today. http://tinyurl.com/2rnjqh",
|
||||
"id" : 100078892,
|
||||
"created_at" : "Mon Jun 11 17:04:50 +0000 2007",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "web",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "99026442",
|
||||
"text" : "enjoying test/spec on rails",
|
||||
"text" : "enjoying test\/spec on rails",
|
||||
"id" : 99026442,
|
||||
"created_at" : "Mon Jun 11 00:42:34 +0000 2007",
|
||||
"created_at" : "2007-06-11 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitter.com/devices\" rel=\"nofollow\">txt</a>",
|
||||
"source" : "web",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
"geo" : { },
|
||||
"id_str" : "100078892",
|
||||
"text" : "Creeped out by the facts of Nina Reiser's murder. The trial starts today. http:\/\/tinyurl.com\/2rnjqh",
|
||||
"id" : 100078892,
|
||||
"created_at" : "2007-06-11 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "\u003Ca href=\"http:\/\/twitter.com\/devices\" rel=\"nofollow\"\u003Etxt\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "88709672",
|
||||
"text" : "Just moved into my new place, watching hockey!",
|
||||
"id" : 88709672,
|
||||
"created_at" : "Sun Jun 03 01:47:52 +0000 2007",
|
||||
"created_at" : "2007-06-03 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Grailbird.data.tweets_2007_09 =
|
||||
[ {
|
||||
"source" : "<a href=\"http://echofon.com/\" rel=\"nofollow\">Echofon</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Jim Roepcke",
|
||||
|
|
@ -14,14 +14,13 @@ Grailbird.data.tweets_2007_09 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "280720262",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282196192",
|
||||
"in_reply_to_user_id" : 894911,
|
||||
"text" : "@JimRoepcke Once I used vi on my workstation at home from my PDA, via ssh, while on the ferry. The terse commands rule for small keyboa ...",
|
||||
"id" : 282196192,
|
||||
"in_reply_to_status_id" : 280720262,
|
||||
"created_at" : "Thu Sep 20 18:46:09 +0000 2007",
|
||||
"created_at" : "2007-09-20 00:00:00 +0000",
|
||||
"in_reply_to_screen_name" : "JimRoepcke",
|
||||
"in_reply_to_user_id_str" : "894911",
|
||||
"user" : {
|
||||
|
|
@ -29,7 +28,7 @@ Grailbird.data.tweets_2007_09 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,24 +1,23 @@
|
|||
Grailbird.data.tweets_2007_10 =
|
||||
[ {
|
||||
"source" : "<a href=\"http://echofon.com/\" rel=\"nofollow\">Echofon</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "308350462",
|
||||
"text" : "Pondering uses for JSONrequest. Doing some Rails stuff...",
|
||||
"id" : 308350462,
|
||||
"created_at" : "Wed Oct 03 01:23:23 +0000 2007",
|
||||
"created_at" : "2007-10-03 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,18 +7,17 @@ Grailbird.data.tweets_2008_01 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "566320412",
|
||||
"text" : "Sending out positive thoughts to our boys in the World Juniors! You've got this one!",
|
||||
"id" : 566320412,
|
||||
"created_at" : "Sat Jan 05 21:14:34 +0000 2008",
|
||||
"created_at" : "2008-01-05 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,47 +1,45 @@
|
|||
Grailbird.data.tweets_2009_09 =
|
||||
[ {
|
||||
"source" : "<a href=\"http://twitpic.com/\" rel=\"nofollow\">TwitPic</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitpic.com\/\" rel=\"nofollow\"\u003ETwitPic\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "4492249713",
|
||||
"text" : "http://twitpic.com/jp34x - That's a comfy puppy",
|
||||
"text" : "http:\/\/twitpic.com\/jp34x - That's a comfy puppy",
|
||||
"id" : 4492249713,
|
||||
"created_at" : "Wed Sep 30 07:32:02 +0000 2009",
|
||||
"created_at" : "2009-09-30 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitpic.com/\" rel=\"nofollow\">TwitPic</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitpic.com\/\" rel=\"nofollow\"\u003ETwitPic\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "4404520862",
|
||||
"text" : "http://twitpic.com/ja11r - Hatley Castle",
|
||||
"text" : "http:\/\/twitpic.com\/ja11r - Hatley Castle",
|
||||
"id" : 4404520862,
|
||||
"created_at" : "Sat Sep 26 23:26:07 +0000 2009",
|
||||
"created_at" : "2009-09-26 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,18 +7,17 @@ Grailbird.data.tweets_2009_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"id_str" : "5221873767",
|
||||
"text" : "Seashore is somewhat unstable though, puts a damper on things. We'll see how it goes. I heartily enjoy the 2 second startup.",
|
||||
"id" : 5221873767,
|
||||
"created_at" : "Wed Oct 28 04:02:47 +0000 2009",
|
||||
"geo" : { },
|
||||
"id_str" : "5343769815",
|
||||
"text" : "I just ditched Vista for Snow Leopard on my Core 2 Quad. First desktop Mac since my G4 Mini. Couldn't be happier! 2006 MacBook getting old.",
|
||||
"id" : 5343769815,
|
||||
"created_at" : "2009-11-01 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -30,23 +29,44 @@ Grailbird.data.tweets_2009_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "5220494863",
|
||||
"text" : "Seashore is the GIMP for OS X, sans X11, Glib, Gtk+. Beautiful! 8.8mb vs 270mb. http://seashore.sourceforge.net/index.php",
|
||||
"text" : "Seashore is the GIMP for OS X, sans X11, Glib, Gtk+. Beautiful! 8.8mb vs 270mb. http:\/\/seashore.sourceforge.net\/index.php",
|
||||
"id" : 5220494863,
|
||||
"created_at" : "Wed Oct 28 02:58:19 +0000 2009",
|
||||
"created_at" : "2009-10-28 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://itunes.apple.com/app/twitter/id333903271?mt=8\" rel=\"nofollow\">Twitter for iPhone</a>",
|
||||
"source" : "web",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "5221873767",
|
||||
"text" : "Seashore is somewhat unstable though, puts a damper on things. We'll see how it goes. I heartily enjoy the 2 second startup.",
|
||||
"id" : 5221873767,
|
||||
"created_at" : "2009-10-28 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/app\/twitter\/id333903271?mt=8\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
|
|
@ -56,41 +76,39 @@ Grailbird.data.tweets_2009_10 =
|
|||
} ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "5049167584",
|
||||
"text" : "PC I built last year is Core2Quad LGA775 => no upgrade path (I knew this). #AMD still pushing CPUs compatible w/ AM2. http://bit.ly/2CVihn",
|
||||
"text" : "PC I built last year is Core2Quad LGA775 => no upgrade path (I knew this). #AMD still pushing CPUs compatible w\/ AM2. http:\/\/bit.ly\/2CVihn",
|
||||
"id" : 5049167584,
|
||||
"created_at" : "Wed Oct 21 18:23:08 +0000 2009",
|
||||
"created_at" : "2009-10-21 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://itunes.apple.com/app/twitter/id333903271?mt=8\" rel=\"nofollow\">Twitter for iPhone</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/app\/twitter\/id333903271?mt=8\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "5004305660",
|
||||
"text" : "Fall colours. http://bit.ly/aq2nh http://yfrog.com/0b9g8fj",
|
||||
"text" : "Fall colours. http:\/\/bit.ly\/aq2nh http:\/\/yfrog.com\/0b9g8fj",
|
||||
"id" : 5004305660,
|
||||
"created_at" : "Mon Oct 19 23:50:55 +0000 2009",
|
||||
"created_at" : "2009-10-19 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -109,14 +127,13 @@ Grailbird.data.tweets_2009_10 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "4906986970",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "4919229991",
|
||||
"in_reply_to_user_id" : 894911,
|
||||
"text" : "@JimRoepcke No lists yet for me either. I don't twitter enough to really need them though.",
|
||||
"id" : 4919229991,
|
||||
"in_reply_to_status_id" : 4906986970,
|
||||
"created_at" : "Fri Oct 16 16:11:29 +0000 2009",
|
||||
"created_at" : "2009-10-16 00:00:00 +0000",
|
||||
"in_reply_to_screen_name" : "JimRoepcke",
|
||||
"in_reply_to_user_id_str" : "894911",
|
||||
"user" : {
|
||||
|
|
@ -124,69 +141,12 @@ Grailbird.data.tweets_2009_10 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://itunes.apple.com/app/twitter/id333903271?mt=8\" rel=\"nofollow\">Twitter for iPhone</a>",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"id_str" : "4880997373",
|
||||
"text" : "Found this little guy at witty beach in the forest. He's really skinny and ate a ton. Hope he's not claimed. :) http://yfrog.com/76kruj",
|
||||
"id" : 4880997373,
|
||||
"created_at" : "Thu Oct 15 04:12:02 +0000 2009",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://itunes.apple.com/app/twitter/id333903271?mt=8\" rel=\"nofollow\">Twitter for iPhone</a>",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Jim Roepcke",
|
||||
"screen_name" : "JimRoepcke",
|
||||
"indices" : [ 0, 11 ],
|
||||
"id_str" : "894911",
|
||||
"id" : 894911
|
||||
} ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "4877166818",
|
||||
"geo" : {
|
||||
},
|
||||
"id_str" : "4880878300",
|
||||
"in_reply_to_user_id" : 894911,
|
||||
"text" : "@JimRoepcke still in vic! Well colwood anyway, near Esquimalt lagoon.",
|
||||
"id" : 4880878300,
|
||||
"in_reply_to_status_id" : 4877166818,
|
||||
"created_at" : "Thu Oct 15 04:05:42 +0000 2009",
|
||||
"in_reply_to_screen_name" : "JimRoepcke",
|
||||
"in_reply_to_user_id_str" : "894911",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://itunes.apple.com/app/twitter/id333903271?mt=8\" rel=\"nofollow\">Twitter for iPhone</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/app\/twitter\/id333903271?mt=8\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Jim Roepcke",
|
||||
|
|
@ -200,14 +160,13 @@ Grailbird.data.tweets_2009_10 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "4876200327",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "4877094591",
|
||||
"in_reply_to_user_id" : 894911,
|
||||
"text" : "@JimRoepcke shame! Every solution seems like a hack.",
|
||||
"id" : 4877094591,
|
||||
"in_reply_to_status_id" : 4876200327,
|
||||
"created_at" : "Thu Oct 15 01:08:27 +0000 2009",
|
||||
"created_at" : "2009-10-15 00:00:00 +0000",
|
||||
"in_reply_to_screen_name" : "JimRoepcke",
|
||||
"in_reply_to_user_id_str" : "894911",
|
||||
"user" : {
|
||||
|
|
@ -215,7 +174,62 @@ Grailbird.data.tweets_2009_10 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/app\/twitter\/id333903271?mt=8\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Jim Roepcke",
|
||||
"screen_name" : "JimRoepcke",
|
||||
"indices" : [ 0, 11 ],
|
||||
"id_str" : "894911",
|
||||
"id" : 894911
|
||||
} ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "4877166818",
|
||||
"geo" : { },
|
||||
"id_str" : "4880878300",
|
||||
"in_reply_to_user_id" : 894911,
|
||||
"text" : "@JimRoepcke still in vic! Well colwood anyway, near Esquimalt lagoon.",
|
||||
"id" : 4880878300,
|
||||
"in_reply_to_status_id" : 4877166818,
|
||||
"created_at" : "2009-10-15 00:00:00 +0000",
|
||||
"in_reply_to_screen_name" : "JimRoepcke",
|
||||
"in_reply_to_user_id_str" : "894911",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/app\/twitter\/id333903271?mt=8\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "4880997373",
|
||||
"text" : "Found this little guy at witty beach in the forest. He's really skinny and ate a ton. Hope he's not claimed. :) http:\/\/yfrog.com\/76kruj",
|
||||
"id" : 4880997373,
|
||||
"created_at" : "2009-10-15 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -227,64 +241,61 @@ Grailbird.data.tweets_2009_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "4874316124",
|
||||
"text" : "Cocoa Touch and XCode 3.1 are quite nice, but why oh why can't I associate an NSNumberFormatter with a UITextField? Am I missing something?",
|
||||
"id" : 4874316124,
|
||||
"created_at" : "Wed Oct 14 23:05:50 +0000 2009",
|
||||
"created_at" : "2009-10-14 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://itunes.apple.com/app/twitter/id333903271?mt=8\" rel=\"nofollow\">Twitter for iPhone</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/app\/twitter\/id333903271?mt=8\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "4764457305",
|
||||
"text" : "1GHz x86 Device-on-Chip, AA battery option, 1024x600 8.9\", fully upgradeable from CPU and RAM to internal modules. WANT http://bit.ly/xe7qm",
|
||||
"text" : "1GHz x86 Device-on-Chip, AA battery option, 1024x600 8.9\", fully upgradeable from CPU and RAM to internal modules. WANT http:\/\/bit.ly\/xe7qm",
|
||||
"id" : 4764457305,
|
||||
"created_at" : "Sat Oct 10 17:16:51 +0000 2009",
|
||||
"created_at" : "2009-10-10 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://itunes.apple.com/app/twitter/id333903271?mt=8\" rel=\"nofollow\">Twitter for iPhone</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/app\/twitter\/id333903271?mt=8\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "4723710449",
|
||||
"text" : "Wrong road down to the beach! http://twitpic.com/ks8wz",
|
||||
"text" : "Wrong road down to the beach! http:\/\/twitpic.com\/ks8wz",
|
||||
"id" : 4723710449,
|
||||
"created_at" : "Fri Oct 09 01:58:48 +0000 2009",
|
||||
"created_at" : "2009-10-09 00:00:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
|||
Grailbird.data.tweets_2012_08 =
|
||||
[ {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "RogersHelps",
|
||||
|
|
@ -14,14 +14,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "241330184828096512",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "241337083975827456",
|
||||
"in_reply_to_user_id" : 31442511,
|
||||
"text" : "@RogersHelps I believe it's the 11th of each month and will try to forget about it till then. Except I've turned data off because of this :/",
|
||||
"text" : "@RogersHelps I believe it's the 11th of each month and will try to forget about it till then. Except I've turned data off because of this :\/",
|
||||
"id" : 241337083975827456,
|
||||
"in_reply_to_status_id" : 241330184828096512,
|
||||
"created_at" : "Fri Aug 31 00:50:19 +0000 2012",
|
||||
"created_at" : "2012-08-31 00:50:19 +0000",
|
||||
"in_reply_to_screen_name" : "RogersHelps",
|
||||
"in_reply_to_user_id_str" : "31442511",
|
||||
"user" : {
|
||||
|
|
@ -29,12 +28,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "RogersHelps",
|
||||
|
|
@ -48,14 +47,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "241306818574438400",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "241327652013748224",
|
||||
"in_reply_to_user_id" : 31442511,
|
||||
"text" : "@RogersHelps Not yet. 2 weeks into the cycle I was texted about a $50 overage fee for data usage so I started finding out what\u2019s up.",
|
||||
"id" : 241327652013748224,
|
||||
"in_reply_to_status_id" : 241306818574438400,
|
||||
"created_at" : "Fri Aug 31 00:12:50 +0000 2012",
|
||||
"created_at" : "2012-08-31 00:12:50 +0000",
|
||||
"in_reply_to_screen_name" : "RogersHelps",
|
||||
"in_reply_to_user_id_str" : "31442511",
|
||||
"user" : {
|
||||
|
|
@ -63,12 +61,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "RogersHelps",
|
||||
|
|
@ -82,14 +80,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "241299057908252673",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "241302138322575361",
|
||||
"in_reply_to_user_id" : 31442511,
|
||||
"text" : "@RogersHelps However I did change my plan last month so I suspect that is somehow related. I might have to wait for the bill and dispute it.",
|
||||
"id" : 241302138322575361,
|
||||
"in_reply_to_status_id" : 241299057908252673,
|
||||
"created_at" : "Thu Aug 30 22:31:27 +0000 2012",
|
||||
"created_at" : "2012-08-30 22:31:27 +0000",
|
||||
"in_reply_to_screen_name" : "RogersHelps",
|
||||
"in_reply_to_user_id_str" : "31442511",
|
||||
"user" : {
|
||||
|
|
@ -97,12 +94,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "RogersHelps",
|
||||
|
|
@ -116,14 +113,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "241299057908252673",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "241301979727527936",
|
||||
"in_reply_to_user_id" : 31442511,
|
||||
"text" : "@RogersHelps I have been streaming podcasts more. At ~30MB/hour, 10 GB is 333 hours. I did not listen to 333 hours in 2 weeks (336 hours).",
|
||||
"text" : "@RogersHelps I have been streaming podcasts more. At ~30MB\/hour, 10 GB is 333 hours. I did not listen to 333 hours in 2 weeks (336 hours).",
|
||||
"id" : 241301979727527936,
|
||||
"in_reply_to_status_id" : 241299057908252673,
|
||||
"created_at" : "Thu Aug 30 22:30:49 +0000 2012",
|
||||
"created_at" : "2012-08-30 22:30:49 +0000",
|
||||
"in_reply_to_screen_name" : "RogersHelps",
|
||||
"in_reply_to_user_id_str" : "31442511",
|
||||
"user" : {
|
||||
|
|
@ -131,12 +127,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "RogersHelps",
|
||||
|
|
@ -149,13 +145,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "241295730948587521",
|
||||
"in_reply_to_user_id" : 31442511,
|
||||
"text" : "@RogersHelps I have a bogus charge for 10+ GB data usage this month and trying to get an explanation is like pulling teeth.",
|
||||
"id" : 241295730948587521,
|
||||
"created_at" : "Thu Aug 30 22:05:59 +0000 2012",
|
||||
"created_at" : "2012-08-30 22:05:59 +0000",
|
||||
"in_reply_to_screen_name" : "RogersHelps",
|
||||
"in_reply_to_user_id_str" : "31442511",
|
||||
"user" : {
|
||||
|
|
@ -163,12 +158,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "RogersHelps",
|
||||
|
|
@ -182,14 +177,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "241241993605443584",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "241295254093967360",
|
||||
"in_reply_to_user_id" : 31442511,
|
||||
"text" : "@RogersHelps Exactly. She was trying to explain the excessive data usage and insisted that was true. Very frustrating trying to get help.",
|
||||
"id" : 241295254093967360,
|
||||
"in_reply_to_status_id" : 241241993605443584,
|
||||
"created_at" : "Thu Aug 30 22:04:06 +0000 2012",
|
||||
"created_at" : "2012-08-30 22:04:06 +0000",
|
||||
"in_reply_to_screen_name" : "RogersHelps",
|
||||
"in_reply_to_user_id_str" : "31442511",
|
||||
"user" : {
|
||||
|
|
@ -197,58 +191,56 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "241206166124900352",
|
||||
"text" : "I'm so glad I decided to buy my phone instead of getting a subsidized one. The oligopoly of telcos in Canada continually disgusts me.",
|
||||
"id" : 241206166124900352,
|
||||
"created_at" : "Thu Aug 30 16:10:06 +0000 2012",
|
||||
"created_at" : "2012-08-30 16:10:06 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "241205854374854656",
|
||||
"text" : "Maybe they believe it themselves, but that is so misguided I don't know where to begin. If they actually try to bill me for this I'm gone.",
|
||||
"id" : 241205854374854656,
|
||||
"created_at" : "Thu Aug 30 16:08:51 +0000 2012",
|
||||
"created_at" : "2012-08-30 16:08:51 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "RogersHelps",
|
||||
|
|
@ -261,23 +253,22 @@ Grailbird.data.tweets_2012_08 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "241205643753697280",
|
||||
"text" : "Someone at Rogers just told me that my phone used 10GB of data this month because when you turn on an iPhone it updates itself. @rogershelps",
|
||||
"id" : 241205643753697280,
|
||||
"created_at" : "Thu Aug 30 16:08:01 +0000 2012",
|
||||
"created_at" : "2012-08-30 16:08:01 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Peter Cooper",
|
||||
|
|
@ -291,14 +282,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "240563202138730496",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "240616679246278657",
|
||||
"in_reply_to_user_id" : 33493,
|
||||
"text" : "@peterc I search some of my reference ebooks all the time. Other reference books I want to flip through. They both have their place for me.",
|
||||
"id" : 240616679246278657,
|
||||
"in_reply_to_status_id" : 240563202138730496,
|
||||
"created_at" : "Wed Aug 29 01:07:41 +0000 2012",
|
||||
"created_at" : "2012-08-29 01:07:41 +0000",
|
||||
"in_reply_to_screen_name" : "peterc",
|
||||
"in_reply_to_user_id_str" : "33493",
|
||||
"user" : {
|
||||
|
|
@ -306,12 +296,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Jim Roepcke",
|
||||
|
|
@ -325,14 +315,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "239159133897629696",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "239194092863639552",
|
||||
"in_reply_to_user_id" : 894911,
|
||||
"text" : "@JimRoepcke It was PHP this time. Don\u2019t worry, it wasn\u2019t my bug.",
|
||||
"id" : 239194092863639552,
|
||||
"in_reply_to_status_id" : 239159133897629696,
|
||||
"created_at" : "Sat Aug 25 02:54:50 +0000 2012",
|
||||
"created_at" : "2012-08-25 02:54:50 +0000",
|
||||
"in_reply_to_screen_name" : "JimRoepcke",
|
||||
"in_reply_to_user_id_str" : "894911",
|
||||
"user" : {
|
||||
|
|
@ -340,12 +329,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Jim Roepcke",
|
||||
|
|
@ -358,23 +347,22 @@ Grailbird.data.tweets_2012_08 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "239132972060655617",
|
||||
"text" : "Yet another bug solved by renaming something to \u201Cbanana\u201D. The magic cure-all. @JimRoepcke",
|
||||
"id" : 239132972060655617,
|
||||
"created_at" : "Fri Aug 24 22:51:58 +0000 2012",
|
||||
"created_at" : "2012-08-24 22:51:58 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F",
|
||||
|
|
@ -388,14 +376,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "238052249606189056",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "238057651219623936",
|
||||
"in_reply_to_user_id" : 22196723,
|
||||
"text" : "@markkolich The name says it all.",
|
||||
"id" : 238057651219623936,
|
||||
"in_reply_to_status_id" : 238052249606189056,
|
||||
"created_at" : "Tue Aug 21 23:39:01 +0000 2012",
|
||||
"created_at" : "2012-08-21 23:39:01 +0000",
|
||||
"in_reply_to_screen_name" : "markkolich",
|
||||
"in_reply_to_user_id_str" : "22196723",
|
||||
"user" : {
|
||||
|
|
@ -403,12 +390,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "John Siracusa",
|
||||
|
|
@ -434,14 +421,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "237923321692438528",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "237929302027546624",
|
||||
"in_reply_to_user_id" : 636923,
|
||||
"text" : "@siracusa @marcoarment According to @anandshimpi you want 20% free space or performance suffers on SSDs. This seems true in my experience.",
|
||||
"id" : 237929302027546624,
|
||||
"in_reply_to_status_id" : 237923321692438528,
|
||||
"created_at" : "Tue Aug 21 15:09:00 +0000 2012",
|
||||
"created_at" : "2012-08-21 15:09:00 +0000",
|
||||
"in_reply_to_screen_name" : "siracusa",
|
||||
"in_reply_to_user_id_str" : "636923",
|
||||
"user" : {
|
||||
|
|
@ -449,12 +435,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "2%Jazz Coffee",
|
||||
|
|
@ -470,33 +456,32 @@ Grailbird.data.tweets_2012_08 =
|
|||
} ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "237928578749173760",
|
||||
"text" : "Coffee drinkers of #yyj, treat yourself the house blend of beans from @2percentjazz. Delicious! I\u2019m sitting here grinning at my cup.",
|
||||
"id" : 237928578749173760,
|
||||
"created_at" : "Tue Aug 21 15:06:08 +0000 2012",
|
||||
"created_at" : "2012-08-21 15:06:08 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/software/tweetbot/mac\" rel=\"nofollow\">Tweetbot for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ {
|
||||
"expanded_url" : "http://twitter.com/_sjs/status/235921732240805890/photo/1",
|
||||
"expanded_url" : "http:\/\/twitter.com\/_sjs\/status\/235921732240805890\/photo\/1",
|
||||
"indices" : [ 84, 104 ],
|
||||
"url" : "http://t.co/MgQeKRiC",
|
||||
"media_url" : "http://pbs.twimg.com/media/A0YpkMVCEAA-PYk.jpg",
|
||||
"url" : "http:\/\/t.co\/MgQeKRiC",
|
||||
"media_url" : "http:\/\/pbs.twimg.com\/media\/A0YpkMVCEAA-PYk.jpg",
|
||||
"id_str" : "235921732245000192",
|
||||
"id" : 235921732245000192,
|
||||
"media_url_https" : "https://pbs.twimg.com/media/A0YpkMVCEAA-PYk.jpg",
|
||||
"media_url_https" : "https:\/\/pbs.twimg.com\/media\/A0YpkMVCEAA-PYk.jpg",
|
||||
"sizes" : [ {
|
||||
"h" : 73,
|
||||
"resize" : "fit",
|
||||
|
|
@ -518,28 +503,27 @@ Grailbird.data.tweets_2012_08 =
|
|||
"resize" : "fit",
|
||||
"w" : 570
|
||||
} ],
|
||||
"display_url" : "pic.twitter.com/MgQeKRiC"
|
||||
"display_url" : "pic.twitter.com\/MgQeKRiC"
|
||||
} ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "235921732240805890",
|
||||
"text" : "First time I\u2019ve seen my 100mbps connection push close to that. Slightly reassuring. http://t.co/MgQeKRiC",
|
||||
"text" : "First time I\u2019ve seen my 100mbps connection push close to that. Slightly reassuring. http:\/\/t.co\/MgQeKRiC",
|
||||
"id" : 235921732240805890,
|
||||
"created_at" : "Thu Aug 16 02:11:39 +0000 2012",
|
||||
"created_at" : "2012-08-16 02:11:39 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "BrendanEich",
|
||||
|
|
@ -553,14 +537,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "235475629657714688",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "235546156032200704",
|
||||
"in_reply_to_user_id" : 9533042,
|
||||
"text" : "@BrendanEich Yes. I\u2019ve only wanted to use var to start a case block a few times but it seems like a reasonable thing to do.",
|
||||
"id" : 235546156032200704,
|
||||
"in_reply_to_status_id" : 235475629657714688,
|
||||
"created_at" : "Wed Aug 15 01:19:14 +0000 2012",
|
||||
"created_at" : "2012-08-15 01:19:14 +0000",
|
||||
"in_reply_to_screen_name" : "BrendanEich",
|
||||
"in_reply_to_user_id_str" : "9533042",
|
||||
"user" : {
|
||||
|
|
@ -568,12 +551,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "a man, duh",
|
||||
|
|
@ -587,14 +570,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "233895767381782528",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "234005167475924992",
|
||||
"in_reply_to_user_id" : 39448955,
|
||||
"text" : "@amanderpp You're welcome! It's friiiiday!",
|
||||
"id" : 234005167475924992,
|
||||
"in_reply_to_status_id" : 233895767381782528,
|
||||
"created_at" : "Fri Aug 10 19:15:54 +0000 2012",
|
||||
"created_at" : "2012-08-10 19:15:54 +0000",
|
||||
"in_reply_to_screen_name" : "Amanduh__XO",
|
||||
"in_reply_to_user_id_str" : "39448955",
|
||||
"user" : {
|
||||
|
|
@ -602,12 +584,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Mobile17",
|
||||
|
|
@ -621,14 +603,13 @@ Grailbird.data.tweets_2012_08 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "231133112556474368",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "231155055548567554",
|
||||
"in_reply_to_user_id" : 22219015,
|
||||
"text" : "@mobile17 YOLO!!!!",
|
||||
"id" : 231155055548567554,
|
||||
"in_reply_to_status_id" : 231133112556474368,
|
||||
"created_at" : "Thu Aug 02 22:30:34 +0000 2012",
|
||||
"created_at" : "2012-08-02 22:30:34 +0000",
|
||||
"in_reply_to_screen_name" : "mobile17",
|
||||
"in_reply_to_user_id_str" : "22219015",
|
||||
"user" : {
|
||||
|
|
@ -636,12 +617,12 @@ Grailbird.data.tweets_2012_08 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Salvatore Sanfilippo",
|
||||
|
|
@ -652,49 +633,52 @@ Grailbird.data.tweets_2012_08 =
|
|||
} ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
"urls" : [ {
|
||||
"indices" : [ 139, 140 ],
|
||||
"url" : "http:\/\/t.co\/rNBjlKQp",
|
||||
"expanded_url" : "http:\/\/bit.ly\/NVwZPG",
|
||||
"display_url" : "bit.ly\/NVwZPG"
|
||||
} ]
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "231090743584911360",
|
||||
"text" : "RT @antirez: Redis 2.4.16 and Redis 2.6.0-rc6 are out. In 2.4.16 main change is Sentinel-compatibility. 2.6.0-rc6 has more: http://t.co/ ...",
|
||||
"text" : "RT @antirez: Redis 2.4.16 and Redis 2.6.0-rc6 are out. In 2.4.16 main change is Sentinel-compatibility. 2.6.0-rc6 has more: http:\/\/t.co\/ ...",
|
||||
"retweeted_status" : {
|
||||
"source" : "<a href=\"http://sites.google.com/site/yorufukurou/\" rel=\"nofollow\">YoruFukurou</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 111, 131 ],
|
||||
"url" : "http://t.co/rNBjlKQp",
|
||||
"expanded_url" : "http://bit.ly/NVwZPG",
|
||||
"display_url" : "bit.ly/NVwZPG"
|
||||
"url" : "http:\/\/t.co\/rNBjlKQp",
|
||||
"expanded_url" : "http:\/\/bit.ly\/NVwZPG",
|
||||
"display_url" : "bit.ly\/NVwZPG"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "230953862952013824",
|
||||
"text" : "Redis 2.4.16 and Redis 2.6.0-rc6 are out. In 2.4.16 main change is Sentinel-compatibility. 2.6.0-rc6 has more: http://t.co/rNBjlKQp",
|
||||
"text" : "Redis 2.4.16 and Redis 2.6.0-rc6 are out. In 2.4.16 main change is Sentinel-compatibility. 2.6.0-rc6 has more: http:\/\/t.co\/rNBjlKQp",
|
||||
"id" : 230953862952013824,
|
||||
"created_at" : "Thu Aug 02 09:11:06 +0000 2012",
|
||||
"created_at" : "2012-08-02 09:11:06 +0000",
|
||||
"user" : {
|
||||
"name" : "Salvatore Sanfilippo",
|
||||
"screen_name" : "antirez",
|
||||
"protected" : false,
|
||||
"id_str" : "5813712",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1700896897/antirez_normal.png",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/447047867652272128\/MtilrTWI_normal.png",
|
||||
"id" : 5813712,
|
||||
"verified" : false
|
||||
}
|
||||
},
|
||||
"id" : 231090743584911360,
|
||||
"created_at" : "Thu Aug 02 18:15:01 +0000 2012",
|
||||
"created_at" : "2012-08-02 18:15:01 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,9 +1,9 @@
|
|||
Grailbird.data.tweets_2012_10 =
|
||||
[ {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Al Tobey",
|
||||
"name" : "\u30A2\u30EB\u30C8\u30D3\u30FC",
|
||||
"screen_name" : "AlTobey",
|
||||
"indices" : [ 3, 11 ],
|
||||
"id_str" : "146248951",
|
||||
|
|
@ -13,8 +13,7 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "263836191126872064",
|
||||
"text" : "RT @AlTobey: Chaos Monkey is for sissies. We run Ruby in production.",
|
||||
"retweeted_status" : {
|
||||
|
|
@ -25,63 +24,61 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "263771862125928448",
|
||||
"text" : "Chaos Monkey is for sissies. We run Ruby in production.",
|
||||
"id" : 263771862125928448,
|
||||
"created_at" : "Wed Oct 31 22:38:07 +0000 2012",
|
||||
"created_at" : "2012-10-31 22:38:07 +0000",
|
||||
"user" : {
|
||||
"name" : "Al Tobey",
|
||||
"name" : "\u30A2\u30EB\u30C8\u30D3\u30FC",
|
||||
"screen_name" : "AlTobey",
|
||||
"protected" : false,
|
||||
"id_str" : "146248951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/917076397/brakyell-50x50_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917076397\/brakyell-50x50_normal.jpg",
|
||||
"id" : 146248951,
|
||||
"verified" : false
|
||||
}
|
||||
},
|
||||
"id" : 263836191126872064,
|
||||
"created_at" : "Thu Nov 01 02:53:44 +0000 2012",
|
||||
"created_at" : "2012-11-01 02:53:44 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 8, 28 ],
|
||||
"url" : "http://t.co/bDZ41Dv0",
|
||||
"expanded_url" : "http://ajax.googleapis.com",
|
||||
"url" : "http:\/\/t.co\/bDZ41Dv0",
|
||||
"expanded_url" : "http:\/\/ajax.googleapis.com",
|
||||
"display_url" : "ajax.googleapis.com"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "261166204155211777",
|
||||
"text" : "So long http://t.co/bDZ41Dv0! It was fun while it lasted.",
|
||||
"text" : "So long http:\/\/t.co\/bDZ41Dv0! It was fun while it lasted.",
|
||||
"id" : 261166204155211777,
|
||||
"created_at" : "Wed Oct 24 18:04:09 +0000 2012",
|
||||
"created_at" : "2012-10-24 18:04:09 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "GitHub",
|
||||
|
|
@ -94,23 +91,22 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "259031402446721024",
|
||||
"text" : "Hooray, @github is getting DDOSd and I imagine that thousands of devs are pushing and pulling like mad on top of that making it even worse.",
|
||||
"id" : 259031402446721024,
|
||||
"created_at" : "Thu Oct 18 20:41:13 +0000 2012",
|
||||
"created_at" : "2012-10-18 20:41:13 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Paul Denya",
|
||||
|
|
@ -130,14 +126,13 @@ Grailbird.data.tweets_2012_10 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "258787012331581441",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "258801181147664384",
|
||||
"in_reply_to_user_id" : 8549992,
|
||||
"text" : "@pdenya @paul_irish My limit is 200,000 and since about 2007 I have 98k commands in it. Is only 3.7 MB. I love it.",
|
||||
"id" : 258801181147664384,
|
||||
"in_reply_to_status_id" : 258787012331581441,
|
||||
"created_at" : "Thu Oct 18 05:26:24 +0000 2012",
|
||||
"created_at" : "2012-10-18 05:26:24 +0000",
|
||||
"in_reply_to_screen_name" : "pdenya",
|
||||
"in_reply_to_user_id_str" : "8549992",
|
||||
"user" : {
|
||||
|
|
@ -145,7 +140,7 @@ Grailbird.data.tweets_2012_10 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -167,10 +162,14 @@ Grailbird.data.tweets_2012_10 =
|
|||
} ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
"urls" : [ {
|
||||
"indices" : [ 139, 140 ],
|
||||
"url" : "https:\/\/t.co\/6co7g0RK",
|
||||
"expanded_url" : "https:\/\/itunes.apple.com\/us\/app\/lightt\/id545803363",
|
||||
"display_url" : "itunes.apple.com\/us\/app\/lightt\/\u2026"
|
||||
} ]
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "258709800920178688",
|
||||
"text" : "RT @JimRoepcke: Lightt has launched! I've been working hard on this with the rest of the @lightt team since June. Share the Lightt! http ...",
|
||||
"retweeted_status" : {
|
||||
|
|
@ -187,58 +186,56 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 116, 137 ],
|
||||
"url" : "https://t.co/6co7g0RK",
|
||||
"expanded_url" : "https://itunes.apple.com/us/app/lightt/id545803363",
|
||||
"display_url" : "itunes.apple.com/us/app/lightt/\u2026"
|
||||
"url" : "https:\/\/t.co\/6co7g0RK",
|
||||
"expanded_url" : "https:\/\/itunes.apple.com\/us\/app\/lightt\/id545803363",
|
||||
"display_url" : "itunes.apple.com\/us\/app\/lightt\/\u2026"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "258702456060538880",
|
||||
"text" : "Lightt has launched! I've been working hard on this with the rest of the @lightt team since June. Share the Lightt! https://t.co/6co7g0RK",
|
||||
"text" : "Lightt has launched! I've been working hard on this with the rest of the @lightt team since June. Share the Lightt! https:\/\/t.co\/6co7g0RK",
|
||||
"id" : 258702456060538880,
|
||||
"created_at" : "Wed Oct 17 22:54:06 +0000 2012",
|
||||
"created_at" : "2012-10-17 22:54:06 +0000",
|
||||
"user" : {
|
||||
"name" : "Jim Roepcke",
|
||||
"screen_name" : "JimRoepcke",
|
||||
"protected" : false,
|
||||
"id_str" : "894911",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/3351988957/4cad7f658ee1a7f029aa5d283d6f4d87_normal.jpeg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/437064720906846208\/tAqM1Q5y_normal.jpeg",
|
||||
"id" : 894911,
|
||||
"verified" : false
|
||||
}
|
||||
},
|
||||
"id" : 258709800920178688,
|
||||
"created_at" : "Wed Oct 17 23:23:17 +0000 2012",
|
||||
"created_at" : "2012-10-17 23:23:17 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "258648276277002240",
|
||||
"text" : "OH: \u201CIf you want a traditional salad you won\u2019t get that. You\u2019ll get three leaves and an apple or something.\u201D",
|
||||
"id" : 258648276277002240,
|
||||
"created_at" : "Wed Oct 17 19:18:49 +0000 2012",
|
||||
"created_at" : "2012-10-17 19:18:49 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -262,17 +259,16 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 94, 114 ],
|
||||
"url" : "http://t.co/DUVkfJfo",
|
||||
"expanded_url" : "http://techcrunch.com/2012/10/16/mobile-app-ad-exchange-network-tap-for-tap-pivots-to-engagement-swapping-model/",
|
||||
"display_url" : "techcrunch.com/2012/10/16/mob\u2026"
|
||||
"url" : "http:\/\/t.co\/DUVkfJfo",
|
||||
"expanded_url" : "http:\/\/techcrunch.com\/2012\/10\/16\/mobile-app-ad-exchange-network-tap-for-tap-pivots-to-engagement-swapping-model\/",
|
||||
"display_url" : "techcrunch.com\/2012\/10\/16\/mob\u2026"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "258327103680946177",
|
||||
"text" : "RT @tapfortap: Mobile App Ad Exchange Network Tap For Tap Pivots To Engagement Swapping Model http://t.co/DUVkfJfo via @techcrunch",
|
||||
"text" : "RT @tapfortap: Mobile App Ad Exchange Network Tap For Tap Pivots To Engagement Swapping Model http:\/\/t.co\/DUVkfJfo via @techcrunch",
|
||||
"retweeted_status" : {
|
||||
"source" : "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "TechCrunch",
|
||||
|
|
@ -285,40 +281,39 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 79, 99 ],
|
||||
"url" : "http://t.co/DUVkfJfo",
|
||||
"expanded_url" : "http://techcrunch.com/2012/10/16/mobile-app-ad-exchange-network-tap-for-tap-pivots-to-engagement-swapping-model/",
|
||||
"display_url" : "techcrunch.com/2012/10/16/mob\u2026"
|
||||
"url" : "http:\/\/t.co\/DUVkfJfo",
|
||||
"expanded_url" : "http:\/\/techcrunch.com\/2012\/10\/16\/mobile-app-ad-exchange-network-tap-for-tap-pivots-to-engagement-swapping-model\/",
|
||||
"display_url" : "techcrunch.com\/2012\/10\/16\/mob\u2026"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "258318014653550593",
|
||||
"text" : "Mobile App Ad Exchange Network Tap For Tap Pivots To Engagement Swapping Model http://t.co/DUVkfJfo via @techcrunch",
|
||||
"text" : "Mobile App Ad Exchange Network Tap For Tap Pivots To Engagement Swapping Model http:\/\/t.co\/DUVkfJfo via @techcrunch",
|
||||
"id" : 258318014653550593,
|
||||
"created_at" : "Tue Oct 16 21:26:28 +0000 2012",
|
||||
"created_at" : "2012-10-16 21:26:28 +0000",
|
||||
"user" : {
|
||||
"name" : "Tap for Tap",
|
||||
"screen_name" : "tapfortap",
|
||||
"protected" : false,
|
||||
"id_str" : "494341960",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/3406493429/8a2c5e4354978310bec140e954d70d46_normal.png",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3406493429\/8a2c5e4354978310bec140e954d70d46_normal.png",
|
||||
"id" : 494341960,
|
||||
"verified" : true
|
||||
}
|
||||
},
|
||||
"id" : 258327103680946177,
|
||||
"created_at" : "Tue Oct 16 22:02:35 +0000 2012",
|
||||
"created_at" : "2012-10-16 22:02:35 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Shawn",
|
||||
|
|
@ -331,47 +326,45 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "258124861652729857",
|
||||
"text" : "RT @the_webhamster: The 6 Stages of Debugging: That can't happen. That shouldn't happen. Hmmm, weird. Why does that happen? Oh, I see. H ...",
|
||||
"retweeted_status" : {
|
||||
"source" : "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "256954058131267584",
|
||||
"text" : "The 6 Stages of Debugging: That can't happen. That shouldn't happen. Hmmm, weird. Why does that happen? Oh, I see. How did that ever work?",
|
||||
"id" : 256954058131267584,
|
||||
"created_at" : "Sat Oct 13 03:06:36 +0000 2012",
|
||||
"created_at" : "2012-10-13 03:06:36 +0000",
|
||||
"user" : {
|
||||
"name" : "Shawn",
|
||||
"screen_name" : "the_webhamster",
|
||||
"protected" : false,
|
||||
"id_str" : "207536489",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/3379738295/811e77c3a0a28e774e47da224bf5b20c_normal.jpeg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/439624633684611072\/7DIuo8ON_normal.jpeg",
|
||||
"id" : 207536489,
|
||||
"verified" : false
|
||||
}
|
||||
},
|
||||
"id" : 258124861652729857,
|
||||
"created_at" : "Tue Oct 16 08:38:57 +0000 2012",
|
||||
"created_at" : "2012-10-16 08:38:57 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Todd Dunlop ",
|
||||
|
|
@ -390,8 +383,7 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "258093065233899520",
|
||||
"text" : "RT @ToddDunlop: BIG DAY at @tapfortap, BIG BIG DAY!",
|
||||
"retweeted_status" : {
|
||||
|
|
@ -408,35 +400,34 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "257865497163476992",
|
||||
"text" : "BIG DAY at @tapfortap, BIG BIG DAY!",
|
||||
"id" : 257865497163476992,
|
||||
"created_at" : "Mon Oct 15 15:28:20 +0000 2012",
|
||||
"created_at" : "2012-10-15 15:28:20 +0000",
|
||||
"user" : {
|
||||
"name" : "Todd Dunlop ",
|
||||
"screen_name" : "ToddDunlop",
|
||||
"protected" : false,
|
||||
"id_str" : "135727142",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/2389268115/y4tatcc8vsn6mh7iibpo_normal.jpeg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2389268115\/y4tatcc8vsn6mh7iibpo_normal.jpeg",
|
||||
"id" : 135727142,
|
||||
"verified" : false
|
||||
}
|
||||
},
|
||||
"id" : 258093065233899520,
|
||||
"created_at" : "Tue Oct 16 06:32:36 +0000 2012",
|
||||
"created_at" : "2012-10-16 06:32:36 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://kiwi-app.net\" rel=\"nofollow\">Kiwi</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "TJ Holowaychuk",
|
||||
|
|
@ -449,20 +440,19 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 93, 114 ],
|
||||
"url" : "https://t.co/BlwSmmdd",
|
||||
"expanded_url" : "https://gist.github.com/3877451",
|
||||
"display_url" : "gist.github.com/3877451"
|
||||
"url" : "https:\/\/t.co\/BlwSmmdd",
|
||||
"expanded_url" : "https:\/\/gist.github.com\/3877451",
|
||||
"display_url" : "gist.github.com\/3877451"
|
||||
} ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "256466426020368384",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "256625059601469440",
|
||||
"in_reply_to_user_id" : 29255412,
|
||||
"text" : "@tjholowaychuk Nice! Cleaned it up a bit, fixed a bug, and now it works in bash and zsh too. https://t.co/BlwSmmdd",
|
||||
"text" : "@tjholowaychuk Nice! Cleaned it up a bit, fixed a bug, and now it works in bash and zsh too. https:\/\/t.co\/BlwSmmdd",
|
||||
"id" : 256625059601469440,
|
||||
"in_reply_to_status_id" : 256466426020368384,
|
||||
"created_at" : "Fri Oct 12 05:19:16 +0000 2012",
|
||||
"created_at" : "2012-10-12 05:19:16 +0000",
|
||||
"in_reply_to_screen_name" : "tjholowaychuk",
|
||||
"in_reply_to_user_id_str" : "29255412",
|
||||
"user" : {
|
||||
|
|
@ -470,12 +460,12 @@ Grailbird.data.tweets_2012_10 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Rob Pike",
|
||||
|
|
@ -488,8 +478,7 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "256221333048934400",
|
||||
"text" : "RT @rob_pike: How to report a bug: 1) Say what happened. 2) Say what should have happened. 3) Give a self-contained reproducible example ...",
|
||||
"retweeted_status" : {
|
||||
|
|
@ -500,35 +489,34 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "254166322815041537",
|
||||
"text" : "How to report a bug: 1) Say what happened. 2) Say what should have happened. 3) Give a self-contained reproducible example. 4) Be precise.",
|
||||
"id" : 254166322815041537,
|
||||
"created_at" : "Fri Oct 05 10:29:08 +0000 2012",
|
||||
"created_at" : "2012-10-05 10:29:08 +0000",
|
||||
"user" : {
|
||||
"name" : "Rob Pike",
|
||||
"screen_name" : "rob_pike",
|
||||
"protected" : false,
|
||||
"id_str" : "197263266",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1134816781/robicon1_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1134816781\/robicon1_normal.jpg",
|
||||
"id" : 197263266,
|
||||
"verified" : false
|
||||
}
|
||||
},
|
||||
"id" : 256221333048934400,
|
||||
"created_at" : "Thu Oct 11 02:35:00 +0000 2012",
|
||||
"created_at" : "2012-10-11 02:35:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Gary Bernhardt",
|
||||
|
|
@ -541,10 +529,9 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "256220008026341377",
|
||||
"text" : "RT @garybernhardt: >>> def method_missing(n, *a, &b); send(methods.min_by { |m| levenshtein(n.to_s, m.to_s) }, *a, &b); ...",
|
||||
"text" : "RT @garybernhardt: >>> def method_missing(n, *a, &b); send(methods.min_by \u007B |m| levenshtein(n.to_s, m.to_s) \u007D, *a, &b); ...",
|
||||
"retweeted_status" : {
|
||||
"source" : "web",
|
||||
"entities" : {
|
||||
|
|
@ -553,35 +540,34 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "256181800928411651",
|
||||
"text" : ">>> def method_missing(n, *a, &b); send(methods.min_by { |m| levenshtein(n.to_s, m.to_s) }, *a, &b); end\n>> p [1, 2, 3].elngth\n3\n\nIt's fine.",
|
||||
"text" : ">>> def method_missing(n, *a, &b); send(methods.min_by \u007B |m| levenshtein(n.to_s, m.to_s) \u007D, *a, &b); end\n>> p [1, 2, 3].elngth\n3\n\nIt's fine.",
|
||||
"id" : 256181800928411651,
|
||||
"created_at" : "Wed Oct 10 23:57:55 +0000 2012",
|
||||
"created_at" : "2012-10-10 23:57:55 +0000",
|
||||
"user" : {
|
||||
"name" : "Gary Bernhardt",
|
||||
"screen_name" : "garybernhardt",
|
||||
"protected" : false,
|
||||
"id_str" : "809685",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1170938305/twitter_headshot_normal.png",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1170938305\/twitter_headshot_normal.png",
|
||||
"id" : 809685,
|
||||
"verified" : false
|
||||
}
|
||||
},
|
||||
"id" : 256220008026341377,
|
||||
"created_at" : "Thu Oct 11 02:29:44 +0000 2012",
|
||||
"created_at" : "2012-10-11 02:29:44 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "John Flavin",
|
||||
|
|
@ -601,14 +587,13 @@ Grailbird.data.tweets_2012_10 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "254214287063666688",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "254241884136935424",
|
||||
"in_reply_to_user_id" : 309194717,
|
||||
"text" : "@JFlavin @siracusa Works on my iPad.",
|
||||
"id" : 254241884136935424,
|
||||
"in_reply_to_status_id" : 254214287063666688,
|
||||
"created_at" : "Fri Oct 05 15:29:23 +0000 2012",
|
||||
"created_at" : "2012-10-05 15:29:23 +0000",
|
||||
"in_reply_to_screen_name" : "JFlavin",
|
||||
"in_reply_to_user_id_str" : "309194717",
|
||||
"user" : {
|
||||
|
|
@ -616,12 +601,12 @@ Grailbird.data.tweets_2012_10 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "BrendanEich",
|
||||
|
|
@ -647,14 +632,13 @@ Grailbird.data.tweets_2012_10 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "253887339720495104",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "253891282924077056",
|
||||
"in_reply_to_user_id" : 9533042,
|
||||
"text" : "@BrendanEich @gu3st @jlongster My mistake! If Object.prototype.toString.call(new Date) is unchanged I think breakage would be minimal.",
|
||||
"id" : 253891282924077056,
|
||||
"in_reply_to_status_id" : 253887339720495104,
|
||||
"created_at" : "Thu Oct 04 16:16:13 +0000 2012",
|
||||
"created_at" : "2012-10-04 16:16:13 +0000",
|
||||
"in_reply_to_screen_name" : "BrendanEich",
|
||||
"in_reply_to_user_id_str" : "9533042",
|
||||
"user" : {
|
||||
|
|
@ -662,12 +646,12 @@ Grailbird.data.tweets_2012_10 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Dustin Dawes ",
|
||||
|
|
@ -692,25 +676,24 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 78, 99 ],
|
||||
"url" : "https://t.co/ldQrZd6L",
|
||||
"expanded_url" : "https://github.com/jquery/jquery/blob/master/src/core.js#L23",
|
||||
"display_url" : "github.com/jquery/jquery/\u2026"
|
||||
"url" : "https:\/\/t.co\/ldQrZd6L",
|
||||
"expanded_url" : "https:\/\/github.com\/jquery\/jquery\/blob\/master\/src\/core.js#L23",
|
||||
"display_url" : "github.com\/jquery\/jquery\/\u2026"
|
||||
}, {
|
||||
"indices" : [ 100, 121 ],
|
||||
"url" : "https://t.co/0OPtpfkr",
|
||||
"expanded_url" : "https://github.com/jquery/jquery/blob/master/src/core.js#L419",
|
||||
"display_url" : "github.com/jquery/jquery/\u2026"
|
||||
"url" : "https:\/\/t.co\/0OPtpfkr",
|
||||
"expanded_url" : "https:\/\/github.com\/jquery\/jquery\/blob\/master\/src\/core.js#L419",
|
||||
"display_url" : "github.com\/jquery\/jquery\/\u2026"
|
||||
} ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "253737435454902272",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "253879666044203008",
|
||||
"in_reply_to_user_id" : 18702069,
|
||||
"text" : "@gu3st @jlongster @BrendanEich It would break a little project called jQuery. https://t.co/ldQrZd6L https://t.co/0OPtpfkr",
|
||||
"text" : "@gu3st @jlongster @BrendanEich It would break a little project called jQuery. https:\/\/t.co\/ldQrZd6L https:\/\/t.co\/0OPtpfkr",
|
||||
"id" : 253879666044203008,
|
||||
"in_reply_to_status_id" : 253737435454902272,
|
||||
"created_at" : "Thu Oct 04 15:30:03 +0000 2012",
|
||||
"created_at" : "2012-10-04 15:30:03 +0000",
|
||||
"in_reply_to_screen_name" : "gu3st",
|
||||
"in_reply_to_user_id_str" : "18702069",
|
||||
"user" : {
|
||||
|
|
@ -718,12 +701,12 @@ Grailbird.data.tweets_2012_10 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "John Siracusa",
|
||||
|
|
@ -736,42 +719,40 @@ Grailbird.data.tweets_2012_10 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "252893730447699969",
|
||||
"text" : "RT @siracusa: That's it, I'm moving all my status updates to UUCP.",
|
||||
"retweeted_status" : {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "252862916099964928",
|
||||
"text" : "That's it, I'm moving all my status updates to UUCP.",
|
||||
"id" : 252862916099964928,
|
||||
"created_at" : "Mon Oct 01 20:09:51 +0000 2012",
|
||||
"created_at" : "2012-10-01 20:09:51 +0000",
|
||||
"user" : {
|
||||
"name" : "John Siracusa",
|
||||
"screen_name" : "siracusa",
|
||||
"protected" : false,
|
||||
"id_str" : "636923",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1501070030/John_2011_1_500x500_normal.png",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1501070030\/John_2011_1_500x500_normal.png",
|
||||
"id" : 636923,
|
||||
"verified" : false
|
||||
}
|
||||
},
|
||||
"id" : 252893730447699969,
|
||||
"created_at" : "Mon Oct 01 22:12:18 +0000 2012",
|
||||
"created_at" : "2012-10-01 22:12:18 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Grailbird.data.tweets_2012_11 =
|
||||
[ {
|
||||
"source" : "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "UVicGameDev",
|
||||
|
|
@ -14,14 +14,13 @@ Grailbird.data.tweets_2012_11 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "272532034361106432",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "272566608583589889",
|
||||
"in_reply_to_user_id" : 534912521,
|
||||
"text" : "@UVicGameDev alias u='cd ..'; alias uu='cd ../..'; alias uuu= etc.",
|
||||
"text" : "@UVicGameDev alias u='cd ..'; alias uu='cd ..\/..'; alias uuu= etc.",
|
||||
"id" : 272566608583589889,
|
||||
"in_reply_to_status_id" : 272532034361106432,
|
||||
"created_at" : "Sun Nov 25 05:05:18 +0000 2012",
|
||||
"created_at" : "2012-11-25 05:05:18 +0000",
|
||||
"in_reply_to_screen_name" : "UVicGameDev",
|
||||
"in_reply_to_user_id_str" : "534912521",
|
||||
"user" : {
|
||||
|
|
@ -29,12 +28,12 @@ Grailbird.data.tweets_2012_11 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twicca.r246.jp/\" rel=\"nofollow\">twicca</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003Etwicca\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "John Siracusa",
|
||||
|
|
@ -54,14 +53,13 @@ Grailbird.data.tweets_2012_11 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "271992408424722433",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "272002368395161600",
|
||||
"in_reply_to_user_id" : 636923,
|
||||
"text" : "@siracusa @CrashPlan I bought it and it automatically extended my exisiting, expired account.",
|
||||
"id" : 272002368395161600,
|
||||
"in_reply_to_status_id" : 271992408424722433,
|
||||
"created_at" : "Fri Nov 23 15:43:12 +0000 2012",
|
||||
"created_at" : "2012-11-23 15:43:12 +0000",
|
||||
"in_reply_to_screen_name" : "siracusa",
|
||||
"in_reply_to_user_id_str" : "636923",
|
||||
"user" : {
|
||||
|
|
@ -69,40 +67,39 @@ Grailbird.data.tweets_2012_11 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 117, 138 ],
|
||||
"url" : "https://t.co/gXriHv0k",
|
||||
"expanded_url" : "https://posts.app.net/1529609",
|
||||
"display_url" : "posts.app.net/1529609"
|
||||
"url" : "https:\/\/t.co\/gXriHv0k",
|
||||
"expanded_url" : "https:\/\/posts.app.net\/1529609",
|
||||
"display_url" : "posts.app.net\/1529609"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "268555259742412802",
|
||||
"text" : "It still bothers me that iOS\u2019s app switching animation is misleading. Launch an app from another app and it animat \u2014 https://t.co/gXriHv0k",
|
||||
"text" : "It still bothers me that iOS\u2019s app switching animation is misleading. Launch an app from another app and it animat \u2014 https:\/\/t.co\/gXriHv0k",
|
||||
"id" : 268555259742412802,
|
||||
"created_at" : "Wed Nov 14 03:25:38 +0000 2012",
|
||||
"created_at" : "2012-11-14 03:25:38 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "James Kellerman",
|
||||
|
|
@ -121,12 +118,11 @@ Grailbird.data.tweets_2012_11 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "268027346181840897",
|
||||
"text" : "RT @jkprime: @marcoarment sometimes reading the replies to your tweets makes me glad I don\u2019t have any followers.",
|
||||
"retweeted_status" : {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Marco Arment",
|
||||
|
|
@ -140,14 +136,13 @@ Grailbird.data.tweets_2012_11 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "267813253101518848",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "267826504807886848",
|
||||
"in_reply_to_user_id" : 14231571,
|
||||
"text" : "@marcoarment sometimes reading the replies to your tweets makes me glad I don\u2019t have any followers.",
|
||||
"id" : 267826504807886848,
|
||||
"in_reply_to_status_id" : 267813253101518848,
|
||||
"created_at" : "Mon Nov 12 03:09:49 +0000 2012",
|
||||
"created_at" : "2012-11-12 03:09:49 +0000",
|
||||
"in_reply_to_screen_name" : "marcoarment",
|
||||
"in_reply_to_user_id_str" : "14231571",
|
||||
"user" : {
|
||||
|
|
@ -155,24 +150,24 @@ Grailbird.data.tweets_2012_11 =
|
|||
"screen_name" : "jkprime",
|
||||
"protected" : false,
|
||||
"id_str" : "637133",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1056337898/headshot_square_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1056337898\/headshot_square_normal.jpg",
|
||||
"id" : 637133,
|
||||
"verified" : false
|
||||
}
|
||||
},
|
||||
"id" : 268027346181840897,
|
||||
"created_at" : "Mon Nov 12 16:27:53 +0000 2012",
|
||||
"created_at" : "2012-11-12 16:27:53 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "atebits",
|
||||
|
|
@ -191,13 +186,12 @@ Grailbird.data.tweets_2012_11 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "265489666193629184",
|
||||
"in_reply_to_user_id" : 11178592,
|
||||
"text" : "@atebits Letterpress is so fun, but I\u2019m with @marco and want to see the status bar while I play. Pretty please?",
|
||||
"id" : 265489666193629184,
|
||||
"created_at" : "Mon Nov 05 16:24:03 +0000 2012",
|
||||
"created_at" : "2012-11-05 16:24:03 +0000",
|
||||
"in_reply_to_screen_name" : "atebits",
|
||||
"in_reply_to_user_id_str" : "11178592",
|
||||
"user" : {
|
||||
|
|
@ -205,16 +199,16 @@ Grailbird.data.tweets_2012_11 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Dan Frakes",
|
||||
"screen_name" : "danfrakes",
|
||||
"screen_name" : "DanFrakes",
|
||||
"indices" : [ 0, 10 ],
|
||||
"id_str" : "8259712",
|
||||
"id" : 8259712
|
||||
|
|
@ -230,27 +224,26 @@ Grailbird.data.tweets_2012_11 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "264894236388904961",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "264975272355442690",
|
||||
"in_reply_to_user_id" : 8259712,
|
||||
"text" : "@danfrakes @marcoarment No joke, somebody played \u201Cnaggers\u201D against me today. It\u2019s pretty awesome though so I don\u2019t mind.",
|
||||
"id" : 264975272355442690,
|
||||
"in_reply_to_status_id" : 264894236388904961,
|
||||
"created_at" : "Sun Nov 04 06:20:02 +0000 2012",
|
||||
"in_reply_to_screen_name" : "danfrakes",
|
||||
"created_at" : "2012-11-04 06:20:02 +0000",
|
||||
"in_reply_to_screen_name" : "DanFrakes",
|
||||
"in_reply_to_user_id_str" : "8259712",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Jim Roepcke",
|
||||
|
|
@ -264,14 +257,13 @@ Grailbird.data.tweets_2012_11 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "264530619986501633",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "264538434859831296",
|
||||
"in_reply_to_user_id" : 894911,
|
||||
"text" : "@JimRoepcke Weak. I\u2019m surprised that supply is so constrained. I thought LD would have at least a few.",
|
||||
"id" : 264538434859831296,
|
||||
"in_reply_to_status_id" : 264530619986501633,
|
||||
"created_at" : "Sat Nov 03 01:24:12 +0000 2012",
|
||||
"created_at" : "2012-11-03 01:24:12 +0000",
|
||||
"in_reply_to_screen_name" : "JimRoepcke",
|
||||
"in_reply_to_user_id_str" : "894911",
|
||||
"user" : {
|
||||
|
|
@ -279,35 +271,34 @@ Grailbird.data.tweets_2012_11 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "264506229592846336",
|
||||
"text" : "OH:\" I didn't say a sausage shower.\"",
|
||||
"id" : 264506229592846336,
|
||||
"created_at" : "Fri Nov 02 23:16:14 +0000 2012",
|
||||
"created_at" : "2012-11-02 23:16:14 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Jim Roepcke",
|
||||
|
|
@ -324,14 +315,13 @@ Grailbird.data.tweets_2012_11 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "264460190550749184",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "264506144280690688",
|
||||
"in_reply_to_user_id" : 894911,
|
||||
"text" : "@JimRoepcke Unfortunately I don't know if #yyj has any. None of the London Drugs received them. I haven't checked Future Shop or elsewhere.",
|
||||
"id" : 264506144280690688,
|
||||
"in_reply_to_status_id" : 264460190550749184,
|
||||
"created_at" : "Fri Nov 02 23:15:53 +0000 2012",
|
||||
"created_at" : "2012-11-02 23:15:53 +0000",
|
||||
"in_reply_to_screen_name" : "JimRoepcke",
|
||||
"in_reply_to_user_id_str" : "894911",
|
||||
"user" : {
|
||||
|
|
@ -339,7 +329,7 @@ Grailbird.data.tweets_2012_11 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Grailbird.data.tweets_2012_12 =
|
||||
[ {
|
||||
"source" : "<a href=\"http://www.apple.com/\" rel=\"nofollow\">OS X</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\/\" rel=\"nofollow\"\u003EOS X\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "atebits",
|
||||
|
|
@ -13,23 +13,22 @@ Grailbird.data.tweets_2012_12 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "283996829371228160",
|
||||
"text" : "Hmm\u2026 catawampus isn't in the letterpress dictionary. @atebits",
|
||||
"id" : 283996829371228160,
|
||||
"created_at" : "Wed Dec 26 18:04:55 +0000 2012",
|
||||
"created_at" : "2012-12-26 18:04:55 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Jim Roepcke",
|
||||
|
|
@ -43,14 +42,13 @@ Grailbird.data.tweets_2012_12 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "283127984410460161",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "283328780909563904",
|
||||
"in_reply_to_user_id" : 894911,
|
||||
"text" : "@JimRoepcke Cute! She lucked out with her new home.",
|
||||
"id" : 283328780909563904,
|
||||
"in_reply_to_status_id" : 283127984410460161,
|
||||
"created_at" : "Mon Dec 24 21:50:20 +0000 2012",
|
||||
"created_at" : "2012-12-24 21:50:20 +0000",
|
||||
"in_reply_to_screen_name" : "JimRoepcke",
|
||||
"in_reply_to_user_id_str" : "894911",
|
||||
"user" : {
|
||||
|
|
@ -58,12 +56,12 @@ Grailbird.data.tweets_2012_12 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Bill Bumgarner",
|
||||
|
|
@ -76,107 +74,103 @@ Grailbird.data.tweets_2012_12 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 60, 80 ],
|
||||
"url" : "http://t.co/gOLPvdfE",
|
||||
"expanded_url" : "http://www.friday.com/bbum/2012/12/23/xcode-sometimes-a-return-is-not-a-return-emacs-brain-damage/",
|
||||
"display_url" : "friday.com/bbum/2012/12/2\u2026"
|
||||
"url" : "http:\/\/t.co\/gOLPvdfE",
|
||||
"expanded_url" : "http:\/\/www.friday.com\/bbum\/2012\/12\/23\/xcode-sometimes-a-return-is-not-a-return-emacs-brain-damage\/",
|
||||
"display_url" : "friday.com\/bbum\/2012\/12\/2\u2026"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "283013917792423936",
|
||||
"text" : "I wondered why this happens in Xcode. @bbum figured it out: http://t.co/gOLPvdfE",
|
||||
"text" : "I wondered why this happens in Xcode. @bbum figured it out: http:\/\/t.co\/gOLPvdfE",
|
||||
"id" : 283013917792423936,
|
||||
"created_at" : "Mon Dec 24 00:59:10 +0000 2012",
|
||||
"created_at" : "2012-12-24 00:59:10 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 20, 40 ],
|
||||
"url" : "http://t.co/1zECl1hx",
|
||||
"expanded_url" : "http://moby.to/hoa82p",
|
||||
"display_url" : "moby.to/hoa82p"
|
||||
"url" : "http:\/\/t.co\/1zECl1hx",
|
||||
"expanded_url" : "http:\/\/moby.to\/hoa82p",
|
||||
"display_url" : "moby.to\/hoa82p"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282816543467905025",
|
||||
"text" : "Status bar clutter. http://t.co/1zECl1hx",
|
||||
"text" : "Status bar clutter. http:\/\/t.co\/1zECl1hx",
|
||||
"id" : 282816543467905025,
|
||||
"created_at" : "Sun Dec 23 11:54:53 +0000 2012",
|
||||
"created_at" : "2012-12-23 11:54:53 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282796110152613888",
|
||||
"text" : "Good morning Atlanta. I\u2019m on Pacific time so for breakfast I\u2019ll have some eggs with a whiskey sour.",
|
||||
"id" : 282796110152613888,
|
||||
"created_at" : "Sun Dec 23 10:33:41 +0000 2012",
|
||||
"created_at" : "2012-12-23 10:33:41 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 116, 137 ],
|
||||
"url" : "https://t.co/DfEbUBke",
|
||||
"expanded_url" : "https://posts.app.net/2154150",
|
||||
"display_url" : "posts.app.net/2154150"
|
||||
"url" : "https:\/\/t.co\/DfEbUBke",
|
||||
"expanded_url" : "https:\/\/posts.app.net\/2154150",
|
||||
"display_url" : "posts.app.net\/2154150"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282715350443909120",
|
||||
"text" : "Ironically I can\u2019t push this code until I get on a plane because T-mobile doesn\u2019t let me tether w/ prepaid plans, \u2014 https://t.co/DfEbUBke",
|
||||
"text" : "Ironically I can\u2019t push this code until I get on a plane because T-mobile doesn\u2019t let me tether w\/ prepaid plans, \u2014 https:\/\/t.co\/DfEbUBke",
|
||||
"id" : 282715350443909120,
|
||||
"created_at" : "Sun Dec 23 05:12:46 +0000 2012",
|
||||
"created_at" : "2012-12-23 05:12:46 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "GitHub",
|
||||
|
|
@ -189,69 +183,66 @@ Grailbird.data.tweets_2012_12 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282707981513138177",
|
||||
"text" : "And @github is back up! Now I can push that fix before my flight. Booyakasha! I\u2019m too excited about that.",
|
||||
"id" : 282707981513138177,
|
||||
"created_at" : "Sun Dec 23 04:43:29 +0000 2012",
|
||||
"created_at" : "2012-12-23 04:43:29 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282703960027054081",
|
||||
"text" : "Playing Letterpress? Let\u2019s have it out. I\u2019m samsonjs on Game Centre.",
|
||||
"id" : 282703960027054081,
|
||||
"created_at" : "Sun Dec 23 04:27:31 +0000 2012",
|
||||
"created_at" : "2012-12-23 04:27:31 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282680821905760256",
|
||||
"text" : "Downtown Seattle seems to have a Starbucks for every 100 people, and there are 100 people in every Starbucks.",
|
||||
"id" : 282680821905760256,
|
||||
"created_at" : "Sun Dec 23 02:55:34 +0000 2012",
|
||||
"created_at" : "2012-12-23 02:55:34 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com/\" rel=\"nofollow\">OS X</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\/\" rel=\"nofollow\"\u003EOS X\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "GitHub",
|
||||
|
|
@ -264,51 +255,49 @@ Grailbird.data.tweets_2012_12 =
|
|||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282674140014583813",
|
||||
"text" : "Damn, I feel bad for the @GitHub ops team right now. Good luck guys!",
|
||||
"id" : 282674140014583813,
|
||||
"created_at" : "Sun Dec 23 02:29:01 +0000 2012",
|
||||
"created_at" : "2012-12-23 02:29:01 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 16, 36 ],
|
||||
"url" : "http://t.co/ZI7u1NpH",
|
||||
"expanded_url" : "http://moby.to/w2fszm",
|
||||
"display_url" : "moby.to/w2fszm"
|
||||
"url" : "http:\/\/t.co\/ZI7u1NpH",
|
||||
"expanded_url" : "http:\/\/moby.to\/w2fszm",
|
||||
"display_url" : "moby.to\/w2fszm"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282659829179367424",
|
||||
"text" : "Symmetric word. http://t.co/ZI7u1NpH",
|
||||
"text" : "Symmetric word. http:\/\/t.co\/ZI7u1NpH",
|
||||
"id" : 282659829179367424,
|
||||
"created_at" : "Sun Dec 23 01:32:09 +0000 2012",
|
||||
"created_at" : "2012-12-23 01:32:09 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Marco Arment",
|
||||
|
|
@ -340,14 +329,13 @@ Grailbird.data.tweets_2012_12 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "282572460925276160",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282589530106761217",
|
||||
"in_reply_to_user_id" : 14231571,
|
||||
"text" : "@marcoarment @danbenjamin @hotdogsladies and every sane dev who uses a Mac. That\u2019s right @siracusa, you are insane. MAC address whitelister!",
|
||||
"id" : 282589530106761217,
|
||||
"in_reply_to_status_id" : 282572460925276160,
|
||||
"created_at" : "Sat Dec 22 20:52:48 +0000 2012",
|
||||
"created_at" : "2012-12-22 20:52:48 +0000",
|
||||
"in_reply_to_screen_name" : "marcoarment",
|
||||
"in_reply_to_user_id_str" : "14231571",
|
||||
"user" : {
|
||||
|
|
@ -355,12 +343,12 @@ Grailbird.data.tweets_2012_12 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Sami Samhuri",
|
||||
|
|
@ -404,14 +392,13 @@ Grailbird.data.tweets_2012_12 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "282564115392765952",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282588830857588737",
|
||||
"in_reply_to_user_id" : 4777951,
|
||||
"text" : "@_sjs @UVicGameDev @siracusa @danbenjammin Not @danbenjammin, but @danbenjamin. They are the same person but one is a novelty account.",
|
||||
"id" : 282588830857588737,
|
||||
"in_reply_to_status_id" : 282564115392765952,
|
||||
"created_at" : "Sat Dec 22 20:50:02 +0000 2012",
|
||||
"created_at" : "2012-12-22 20:50:02 +0000",
|
||||
"in_reply_to_screen_name" : "_sjs",
|
||||
"in_reply_to_user_id_str" : "4777951",
|
||||
"user" : {
|
||||
|
|
@ -419,35 +406,34 @@ Grailbird.data.tweets_2012_12 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282574081147158528",
|
||||
"text" : "In downtown Seattle for the day. Any recommendations on where to get a good americano?",
|
||||
"id" : 282574081147158528,
|
||||
"created_at" : "Sat Dec 22 19:51:25 +0000 2012",
|
||||
"created_at" : "2012-12-22 19:51:25 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "UVicGameDev",
|
||||
|
|
@ -473,14 +459,13 @@ Grailbird.data.tweets_2012_12 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "282300633921503233",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282564115392765952",
|
||||
"in_reply_to_user_id" : 534912521,
|
||||
"text" : "@UVicGameDev I don't know what hyperterminal is, but it sounds cool! Hypercritical is a podcast with @siracusa and @danbenjammin",
|
||||
"id" : 282564115392765952,
|
||||
"in_reply_to_status_id" : 282300633921503233,
|
||||
"created_at" : "Sat Dec 22 19:11:49 +0000 2012",
|
||||
"created_at" : "2012-12-22 19:11:49 +0000",
|
||||
"in_reply_to_screen_name" : "UVicGameDev",
|
||||
"in_reply_to_user_id_str" : "534912521",
|
||||
"user" : {
|
||||
|
|
@ -488,58 +473,56 @@ Grailbird.data.tweets_2012_12 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282300204965834752",
|
||||
"text" : "Don\u2019t say \u201Clearning the terminal.\u201D \u2014 Hypercritical, episode 99",
|
||||
"id" : 282300204965834752,
|
||||
"created_at" : "Sat Dec 22 01:43:08 +0000 2012",
|
||||
"created_at" : "2012-12-22 01:43:08 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 64, 84 ],
|
||||
"url" : "http://t.co/STKprVDV",
|
||||
"expanded_url" : "http://moby.to/coih1b",
|
||||
"display_url" : "moby.to/coih1b"
|
||||
"url" : "http:\/\/t.co\/STKprVDV",
|
||||
"expanded_url" : "http:\/\/moby.to\/coih1b",
|
||||
"display_url" : "moby.to\/coih1b"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "282236503386628097",
|
||||
"text" : "Preparation is key.\n\n\u2611 Clothes\n\u2611 Toothbrush\n\u2611 Ticket\n\u2611 Growler\n\nhttp://t.co/STKprVDV",
|
||||
"text" : "Preparation is key.\n\n\u2611 Clothes\n\u2611 Toothbrush\n\u2611 Ticket\n\u2611 Growler\n\nhttp:\/\/t.co\/STKprVDV",
|
||||
"id" : 282236503386628097,
|
||||
"created_at" : "Fri Dec 21 21:30:00 +0000 2012",
|
||||
"created_at" : "2012-12-21 21:30:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
@ -547,7 +530,7 @@ Grailbird.data.tweets_2012_12 =
|
|||
"source" : "web",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Colton",
|
||||
"name" : "mean meaning machine",
|
||||
"screen_name" : "ColtonPhillips",
|
||||
"indices" : [ 0, 15 ],
|
||||
"id_str" : "49227164",
|
||||
|
|
@ -558,14 +541,13 @@ Grailbird.data.tweets_2012_12 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "280750071740497920",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "280750875792777217",
|
||||
"in_reply_to_user_id" : 49227164,
|
||||
"text" : "@ColtonPhillips With some fava beans, a nice chianti.",
|
||||
"id" : 280750875792777217,
|
||||
"in_reply_to_status_id" : 280750071740497920,
|
||||
"created_at" : "Mon Dec 17 19:06:39 +0000 2012",
|
||||
"created_at" : "2012-12-17 19:06:39 +0000",
|
||||
"in_reply_to_screen_name" : "ColtonPhillips",
|
||||
"in_reply_to_user_id_str" : "49227164",
|
||||
"user" : {
|
||||
|
|
@ -573,15 +555,15 @@ Grailbird.data.tweets_2012_12 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://twitterrific.com\" rel=\"nofollow\">Twitterrific for Mac</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ {
|
||||
"name" : "Colton",
|
||||
"name" : "mean meaning machine",
|
||||
"screen_name" : "ColtonPhillips",
|
||||
"indices" : [ 0, 15 ],
|
||||
"id_str" : "49227164",
|
||||
|
|
@ -592,14 +574,13 @@ Grailbird.data.tweets_2012_12 =
|
|||
"urls" : [ ]
|
||||
},
|
||||
"in_reply_to_status_id_str" : "280746436965060608",
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "280749518008483840",
|
||||
"in_reply_to_user_id" : 49227164,
|
||||
"text" : "@ColtonPhillips You're a superstar now. Next you'll have paparazzi after you.",
|
||||
"id" : 280749518008483840,
|
||||
"in_reply_to_status_id" : 280746436965060608,
|
||||
"created_at" : "Mon Dec 17 19:01:15 +0000 2012",
|
||||
"created_at" : "2012-12-17 19:01:15 +0000",
|
||||
"in_reply_to_screen_name" : "ColtonPhillips",
|
||||
"in_reply_to_user_id_str" : "49227164",
|
||||
"user" : {
|
||||
|
|
@ -607,35 +588,34 @@ Grailbird.data.tweets_2012_12 =
|
|||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
}, {
|
||||
"source" : "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",
|
||||
"source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E",
|
||||
"entities" : {
|
||||
"user_mentions" : [ ],
|
||||
"media" : [ ],
|
||||
"hashtags" : [ ],
|
||||
"urls" : [ {
|
||||
"indices" : [ 47, 67 ],
|
||||
"url" : "http://t.co/ByYW4BmO",
|
||||
"expanded_url" : "http://moby.to/aaebux",
|
||||
"display_url" : "moby.to/aaebux"
|
||||
"url" : "http:\/\/t.co\/ByYW4BmO",
|
||||
"expanded_url" : "http:\/\/moby.to\/aaebux",
|
||||
"display_url" : "moby.to\/aaebux"
|
||||
} ]
|
||||
},
|
||||
"geo" : {
|
||||
},
|
||||
"geo" : { },
|
||||
"id_str" : "280549887521742848",
|
||||
"text" : "Lost hard, but I think I put up an okay fight. http://t.co/ByYW4BmO",
|
||||
"text" : "Lost hard, but I think I put up an okay fight. http:\/\/t.co\/ByYW4BmO",
|
||||
"id" : 280549887521742848,
|
||||
"created_at" : "Mon Dec 17 05:48:00 +0000 2012",
|
||||
"created_at" : "2012-12-17 05:48:00 +0000",
|
||||
"user" : {
|
||||
"name" : "Sami Samhuri",
|
||||
"screen_name" : "_sjs",
|
||||
"protected" : false,
|
||||
"id_str" : "4777951",
|
||||
"profile_image_url_https" : "https://si0.twimg.com/profile_images/1307563055/me_normal.jpg",
|
||||
"profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1307563055\/me_normal.jpg",
|
||||
"id" : 4777951,
|
||||
"verified" : false
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
2588
public/tweets/data/js/tweets/2013_04.js
Executable file
2588
public/tweets/data/js/tweets/2013_04.js
Executable file
File diff suppressed because it is too large
Load diff
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue