From b213a04010accd40abaac8fbc33c667c09e9a0cc Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Fri, 6 Oct 2017 14:31:59 -0700 Subject: [PATCH 01/33] add post about Optional.or(_:) --- public/_data.json | 22 +++++++++--------- public/posts/2017/10/_data.json | 15 ++++++++++++ public/posts/2017/10/index.ejs | 1 + public/posts/2017/10/swift-optional-or.md | 28 +++++++++++++++++++++++ public/posts/2017/index.ejs | 1 + 5 files changed, 56 insertions(+), 11 deletions(-) create mode 100644 public/posts/2017/10/_data.json create mode 100644 public/posts/2017/10/index.ejs create mode 100644 public/posts/2017/10/swift-optional-or.md create mode 100644 public/posts/2017/index.ejs diff --git a/public/_data.json b/public/_data.json index c28ea10..8b036f8 100644 --- a/public/_data.json +++ b/public/_data.json @@ -19,6 +19,17 @@ "title": "Curriculum vitae" }, "posts": [ + { + "title": "A nil-coalescing alternative for Swift", + "date": "6th October, 2017", + "timestamp": 1507324813, + "tags": [ + "ios", + "swift" + ], + "author": "Sami J. Samhuri", + "url": "/posts/2017/10/swift-optional-or" + }, { "title": "Easy Optimization Wins", "date": "10th August, 2016", @@ -116,17 +127,6 @@ "author": "Sami J. Samhuri", "url": "/posts/2015/07/scripts-to-rule-them-all", "link": "http://githubengineering.com/scripts-to-rule-them-all/" - }, - { - "title": "→ Debugging Layouts with Recursive View Descriptions in Xcode", - "date": "2nd June, 2015", - "timestamp": 1433288135, - "tags": [ - - ], - "author": "Sami J. Samhuri", - "url": "/posts/2015/06/debugging-layouts-with-recursive-view-descriptions-in-xcode", - "link": "http://jeffreysambells.com/2013/01/24/debugging-layouts-with-recursive-view-descriptions-in-xcode" } ] } \ No newline at end of file diff --git a/public/posts/2017/10/_data.json b/public/posts/2017/10/_data.json new file mode 100644 index 0000000..510abce --- /dev/null +++ b/public/posts/2017/10/_data.json @@ -0,0 +1,15 @@ +{ + "swift-optional-or": { + "id": "swift-optional-or", + "author": "Sami J. Samhuri", + "title": "A nil-coalescing alternative for Swift", + "date": "6th October, 2017", + "timestamp": 1507324813, + "link": null, + "url": "/posts/2017/10/swift-optional-or", + "tags": [ + "ios", + "swift" + ] + } +} diff --git a/public/posts/2017/10/index.ejs b/public/posts/2017/10/index.ejs new file mode 100644 index 0000000..72c8d6b --- /dev/null +++ b/public/posts/2017/10/index.ejs @@ -0,0 +1 @@ +<%- partial('../../_month') %> diff --git a/public/posts/2017/10/swift-optional-or.md b/public/posts/2017/10/swift-optional-or.md new file mode 100644 index 0000000..5f0471f --- /dev/null +++ b/public/posts/2017/10/swift-optional-or.md @@ -0,0 +1,28 @@ +Swift compile times leave something to be desired and a common culprit is the affectionately-named [nil-coalescing operator][nilop]. A small extension to `Optional` can improve this without sacrificing a lot of readability. + +```Swift +extension Optional { + func or(_ defaultValue: Wrapped) -> Wrapped { + switch self { + case .none: return defaultValue + case let .some(value): return value + } + } +} +``` + +And you use it like so: + +```Swift +let dict: [String : String] = [:] +let maybeString = dict["not here"] +print("the string is: \(maybeString.or("default"))") +let otherString = dict["not here"].or("something else") +``` + +I'm sure someone else has come up with this already but I haven't seen it yet. + +_([gist available here][gist])_ + +[nilop]: https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/BasicOperators.html#//apple_ref/doc/uid/TP40014097-CH6-ID72 +[gist]: https://gist.github.com/samsonjs/c8933c07ad985b74aba994f2fdab8b47 diff --git a/public/posts/2017/index.ejs b/public/posts/2017/index.ejs new file mode 100644 index 0000000..74a1f27 --- /dev/null +++ b/public/posts/2017/index.ejs @@ -0,0 +1 @@ +<%- partial('../_year') %> From 75b737b6515b540ab5b6b2a376f72349126c7066 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Fri, 6 Oct 2017 14:35:36 -0700 Subject: [PATCH 02/33] remove snyk --- package-lock.json | 1040 +-------------------------------------------- package.json | 9 +- 2 files changed, 18 insertions(+), 1031 deletions(-) diff --git a/package-lock.json b/package-lock.json index d3c9c17..d9a866e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -56,10 +56,6 @@ "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" }, - "ansi-escapes": { - "version": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", - "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=" - }, "ansi-regex": { "version": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" @@ -68,19 +64,11 @@ "version": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, - "ansicolors": { - "version": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", - "integrity": "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=" - }, "aproba": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" }, - "archy": { - "version": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=" - }, "are-we-there-yet": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz", @@ -124,13 +112,6 @@ } } }, - "argparse": { - "version": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", - "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=", - "requires": { - "sprintf-js": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" - } - }, "array-find-index": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", @@ -138,7 +119,8 @@ }, "asap": { "version": "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz", - "integrity": "sha1-sqRdpf36ILBJb8N2jMJ8EvqRan0=" + "integrity": "sha1-sqRdpf36ILBJb8N2jMJ8EvqRan0=", + "optional": true }, "asn1": { "version": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", @@ -183,10 +165,6 @@ "version": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" }, - "balanced-match": { - "version": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", - "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=" - }, "base64-url": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/base64-url/-/base64-url-1.2.1.tgz", @@ -247,32 +225,6 @@ "hoek": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz" } }, - "boxen": { - "version": "https://registry.npmjs.org/boxen/-/boxen-0.3.1.tgz", - "integrity": "sha1-p9iYJDrmIvertrtgTXQKdsalRhs=", - "requires": { - "chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "filled-array": "https://registry.npmjs.org/filled-array/-/filled-array-1.1.0.tgz", - "object-assign": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "repeating": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "widest-line": "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz" - }, - "dependencies": { - "object-assign": { - "version": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - } - } - }, - "brace-expansion": { - "version": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz", - "integrity": "sha1-cZfX6qm4fmSDkOph/GbIRCdCDfk=", - "requires": { - "balanced-match": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", - "concat-map": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" - } - }, "browserslist": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.0.1.tgz", @@ -281,10 +233,6 @@ "caniuse-db": "1.0.30000733" } }, - "buffer-shims": { - "version": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", - "integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E=" - }, "builtin-modules": { "version": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" @@ -328,10 +276,6 @@ "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000733.tgz", "integrity": "sha1-OmJbxBx6n5nVnWRVKFfdGvDt2dQ=" }, - "capture-stack-trace": { - "version": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz", - "integrity": "sha1-Sm+gc5nCa7pH8LJJa00PtAjFVQ0=" - }, "caseless": { "version": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=" @@ -428,113 +372,6 @@ "glob": "7.1.2" } }, - "cli-cursor": { - "version": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", - "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", - "requires": { - "restore-cursor": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz" - } - }, - "cli-width": { - "version": "https://registry.npmjs.org/cli-width/-/cli-width-2.1.0.tgz", - "integrity": "sha1-sjTKIJsp72b8UY2bmNWEewDt8Ao=" - }, - "clite": { - "version": "https://registry.npmjs.org/clite/-/clite-0.3.0.tgz", - "integrity": "sha1-5/y8jMW9Pn+LhO1I2xLpR0zHNEE=", - "requires": { - "abbrev": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz", - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "es6-promise": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", - "lodash.defaults": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "lodash.defaultsdeep": "https://registry.npmjs.org/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.0.tgz", - "lodash.mergewith": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz", - "then-fs": "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz", - "update-notifier": "https://registry.npmjs.org/update-notifier/-/update-notifier-0.6.3.tgz", - "yargs": "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz" - }, - "dependencies": { - "cliui": { - "version": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "requires": { - "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "wrap-ansi": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz" - } - }, - "configstore": { - "version": "https://registry.npmjs.org/configstore/-/configstore-2.1.0.tgz", - "integrity": "sha1-c3o6cDbpiGECqmCZ5HuzOrGroaE=", - "requires": { - "dot-prop": "https://registry.npmjs.org/dot-prop/-/dot-prop-3.0.0.tgz", - "graceful-fs": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "object-assign": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "os-tmpdir": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "osenv": "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz", - "uuid": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz", - "write-file-atomic": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz", - "xdg-basedir": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz" - } - }, - "graceful-fs": { - "version": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - }, - "mkdirp": { - "version": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" - } - }, - "object-assign": { - "version": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "update-notifier": { - "version": "https://registry.npmjs.org/update-notifier/-/update-notifier-0.6.3.tgz", - "integrity": "sha1-d23sjaoT6WKjQeih2YNUMGtnrgg=", - "requires": { - "boxen": "https://registry.npmjs.org/boxen/-/boxen-0.3.1.tgz", - "chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "configstore": "https://registry.npmjs.org/configstore/-/configstore-2.1.0.tgz", - "is-npm": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", - "latest-version": "https://registry.npmjs.org/latest-version/-/latest-version-2.0.0.tgz", - "semver-diff": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz" - } - }, - "uuid": { - "version": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz", - "integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho=" - }, - "window-size": { - "version": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", - "integrity": "sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU=" - }, - "yargs": { - "version": "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz", - "integrity": "sha1-wMQpJMpKqmsObaFznfshZDn53cA=", - "requires": { - "cliui": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "decamelize": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "get-caller-file": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", - "lodash.assign": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "os-locale": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "read-pkg-up": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "require-directory": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "require-main-filename": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "set-blocking": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "which-module": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "window-size": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", - "y18n": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "yargs-parser": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz" - } - } - } - }, "cliui": { "version": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", @@ -627,41 +464,6 @@ } } }, - "configstore": { - "version": "https://registry.npmjs.org/configstore/-/configstore-1.4.0.tgz", - "integrity": "sha1-w1eB0FAdJowlxUuLF/YkDopPsCE=", - "requires": { - "graceful-fs": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "object-assign": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "os-tmpdir": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "osenv": "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz", - "uuid": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz", - "write-file-atomic": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz", - "xdg-basedir": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz" - }, - "dependencies": { - "graceful-fs": { - "version": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - }, - "mkdirp": { - "version": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" - } - }, - "object-assign": { - "version": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "uuid": { - "version": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz", - "integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho=" - } - } - }, "connect": { "version": "2.30.2", "resolved": "https://registry.npmjs.org/connect/-/connect-2.30.2.tgz", @@ -767,13 +569,6 @@ "resolved": "https://registry.npmjs.org/crc/-/crc-3.3.0.tgz", "integrity": "sha1-+mIuG8OIvyVzCQgta2UgDOZwkLo=" }, - "create-error-class": { - "version": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", - "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", - "requires": { - "capture-stack-trace": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz" - } - }, "cross-spawn": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", @@ -880,10 +675,6 @@ "tempfile": "0.1.3" } }, - "deep-extend": { - "version": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz", - "integrity": "sha1-SLaZwn4zS/ifEIkr5DL25MfTSn8=" - }, "delayed-stream": { "version": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" @@ -911,13 +702,6 @@ "sentence-case": "1.1.3" } }, - "dot-prop": { - "version": "https://registry.npmjs.org/dot-prop/-/dot-prop-3.0.0.tgz", - "integrity": "sha1-G3CK8JSknJoOfbyteQq6U52sEXc=", - "requires": { - "is-obj": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz" - } - }, "double-ended-queue": { "version": "2.1.0-0", "resolved": "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz", @@ -951,75 +735,6 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=" }, - "duplexer2": { - "version": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", - "requires": { - "readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.9.tgz" - }, - "dependencies": { - "isarray": { - "version": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.9.tgz", - "integrity": "sha1-z3jsb0ptHrQ9JkiMrJfwQudLf8g=", - "requires": { - "buffer-shims": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", - "core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "isarray": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "process-nextick-args": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "string_decoder": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", - "util-deprecate": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" - } - }, - "string_decoder": { - "version": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", - "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", - "requires": { - "safe-buffer": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz" - } - } - } - }, - "duplexify": { - "version": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.0.tgz", - "integrity": "sha1-GqdzAC4VeEV+nZ1KULDMquvL1gQ=", - "requires": { - "end-of-stream": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.9.tgz", - "stream-shift": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz" - }, - "dependencies": { - "isarray": { - "version": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.9.tgz", - "integrity": "sha1-z3jsb0ptHrQ9JkiMrJfwQudLf8g=", - "requires": { - "buffer-shims": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", - "core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "isarray": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "process-nextick-args": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "string_decoder": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", - "util-deprecate": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" - } - }, - "string_decoder": { - "version": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", - "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", - "requires": { - "safe-buffer": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz" - } - } - } - }, "each-async": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/each-async/-/each-async-0.1.3.tgz", @@ -1043,22 +758,6 @@ "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.3.4.tgz", "integrity": "sha1-PHbKoJZks1g7ADevncE2557Gi5g=" }, - "end-of-stream": { - "version": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz", - "integrity": "sha1-1FlucCc0qT5A6a+GQxnqvZn/Lw4=", - "requires": { - "once": "https://registry.npmjs.org/once/-/once-1.3.3.tgz" - }, - "dependencies": { - "once": { - "version": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", - "integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=", - "requires": { - "wrappy": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" - } - } - } - }, "envy-json": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/envy-json/-/envy-json-0.2.1.tgz", @@ -1118,10 +817,6 @@ } } }, - "es6-promise": { - "version": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", - "integrity": "sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM=" - }, "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", @@ -1131,10 +826,6 @@ "version": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" }, - "esprima": { - "version": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", - "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" - }, "etag": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz", @@ -1145,10 +836,6 @@ "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" }, - "exit-hook": { - "version": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", - "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=" - }, "express-session": { "version": "1.11.3", "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.11.3.tgz", @@ -1200,24 +887,6 @@ "version": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz", "integrity": "sha1-4QgOBljjALBilJkMxw4VAiNf1VA=" }, - "figures": { - "version": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", - "requires": { - "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "object-assign": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" - }, - "dependencies": { - "object-assign": { - "version": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - } - } - }, - "filled-array": { - "version": "https://registry.npmjs.org/filled-array/-/filled-array-1.1.0.tgz", - "integrity": "sha1-w8T2xmO5I0WamqKZEtLQMfFQf4Q=" - }, "finalhandler": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz", @@ -1511,19 +1180,6 @@ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" }, - "hasbin": { - "version": "https://registry.npmjs.org/hasbin/-/hasbin-1.2.3.tgz", - "integrity": "sha1-eMWSaJPIAhXCtWiuH9P8q3omlrA=", - "requires": { - "async": "https://registry.npmjs.org/async/-/async-1.5.2.tgz" - }, - "dependencies": { - "async": { - "version": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" - } - } - }, "hawk": { "version": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", @@ -1597,10 +1253,6 @@ "integrity": "sha1-gyQOqy+1sAsEqrjHSwRx6cunrYw=", "optional": true }, - "imurmurhash": { - "version": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" - }, "in-publish": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", @@ -1614,10 +1266,6 @@ "repeating": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz" } }, - "infinity-agent": { - "version": "https://registry.npmjs.org/infinity-agent/-/infinity-agent-2.0.3.tgz", - "integrity": "sha1-ReDi/3qesDCyfWK3SzdEt6esQhY=" - }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -1631,35 +1279,6 @@ "version": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" }, - "ini": { - "version": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz", - "integrity": "sha1-BTfLedr1m1mhpRff9wbIbsA5Fi4=" - }, - "inquirer": { - "version": "https://registry.npmjs.org/inquirer/-/inquirer-1.0.3.tgz", - "integrity": "sha1-6+OglIVxvMRszMvi+bzsJR6YS9A=", - "requires": { - "ansi-escapes": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", - "chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "cli-cursor": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", - "cli-width": "https://registry.npmjs.org/cli-width/-/cli-width-2.1.0.tgz", - "figures": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "mute-stream": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.6.tgz", - "pinkie-promise": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "run-async": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", - "rx": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz", - "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "through": "https://registry.npmjs.org/through/-/through-2.3.8.tgz" - }, - "dependencies": { - "lodash": { - "version": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=" - } - } - }, "invert-kv": { "version": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" @@ -1727,14 +1346,6 @@ "xtend": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" } }, - "is-npm": { - "version": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", - "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=" - }, - "is-obj": { - "version": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" - }, "is-promise": { "version": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" @@ -1743,18 +1354,6 @@ "version": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=" }, - "is-redirect": { - "version": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", - "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=" - }, - "is-retry-allowed": { - "version": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", - "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=" - }, - "is-stream": { - "version": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" - }, "is-typedarray": { "version": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" @@ -1843,14 +1442,6 @@ "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.3.2.tgz", "integrity": "sha512-Y2/+DnfJJXT1/FCwUebUhLWb3QihxiSC42+ctHLGogmW2jPY6LCapMdFZXRvVP2z6qyKW7s6qncE/9gSqZiArw==" }, - "js-yaml": { - "version": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.4.tgz", - "integrity": "sha1-UgtFZPhlc7qWZir4Woyvp7S1pvY=", - "requires": { - "argparse": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", - "esprima": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz" - } - }, "jsbn": { "version": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", @@ -1940,13 +1531,6 @@ "classifier": "0.1.0" } }, - "latest-version": { - "version": "https://registry.npmjs.org/latest-version/-/latest-version-2.0.0.tgz", - "integrity": "sha1-VvjWE5YghHuAF/jx9NeOIRMkFos=", - "requires": { - "package-json": "https://registry.npmjs.org/package-json/-/package-json-2.4.0.tgz" - } - }, "lazy-cache": { "version": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" @@ -2023,14 +1607,6 @@ "version": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" }, - "lodash.defaults": { - "version": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=" - }, - "lodash.defaultsdeep": { - "version": "https://registry.npmjs.org/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.0.tgz", - "integrity": "sha1-vsECT4WxvZbL6kBbI8FK1kQ6b4E=" - }, "lodash.mergewith": { "version": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz", "integrity": "sha1-FQzwoWeR9ZA7iJHqsVRgknS96lU=" @@ -2061,10 +1637,6 @@ "lower-case": "1.1.4" } }, - "lowercase-keys": { - "version": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", - "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=" - }, "lru-cache": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.0.tgz", @@ -2251,10 +1823,6 @@ "stream-counter": "0.2.0" } }, - "mute-stream": { - "version": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.6.tgz", - "integrity": "sha1-SJYrGeFp/R38JAs/HnMXYnu8R9s=" - }, "nan": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/nan/-/nan-2.7.0.tgz", @@ -2265,47 +1833,11 @@ "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.0.tgz", "integrity": "sha1-6f+EFBimsux6SV6TmYT3jxY+bjE=" }, - "nconf": { - "version": "https://registry.npmjs.org/nconf/-/nconf-0.7.2.tgz", - "integrity": "sha1-oF/fItwBw3jdXE3yfy3JC5qouwA=", - "requires": { - "async": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", - "ini": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz", - "yargs": "https://registry.npmjs.org/yargs/-/yargs-3.15.0.tgz" - }, - "dependencies": { - "async": { - "version": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", - "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" - }, - "window-size": { - "version": "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz", - "integrity": "sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY=" - }, - "yargs": { - "version": "https://registry.npmjs.org/yargs/-/yargs-3.15.0.tgz", - "integrity": "sha1-PZRG7yH7N5GzmFaQZi5LloPH8YE=", - "requires": { - "camelcase": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "cliui": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "decamelize": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "window-size": "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz" - } - } - } - }, "negotiator": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.5.3.tgz", "integrity": "sha1-Jp1cR2gQ7JLtvntsLygxY4T5p+g=" }, - "nested-error-stacks": { - "version": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz", - "integrity": "sha1-GfYZWRUZ8JZ2mlupqG5u7sgjw88=", - "requires": { - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" - } - }, "node-gyp": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz", @@ -2402,10 +1934,6 @@ } } }, - "node-status-codes": { - "version": "https://registry.npmjs.org/node-status-codes/-/node-status-codes-1.0.0.tgz", - "integrity": "sha1-WuVUHQJGRdMqWPzdyc7s6nrjrC8=" - }, "nopt": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/nopt/-/nopt-2.2.1.tgz", @@ -2484,14 +2012,6 @@ "wrappy": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" } }, - "onetime": { - "version": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", - "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=" - }, - "open": { - "version": "https://registry.npmjs.org/open/-/open-0.0.5.tgz", - "integrity": "sha1-QsPhjslUZra/DcQvOilFw/DK2Pw=" - }, "os-homedir": { "version": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" @@ -2503,14 +2023,6 @@ "lcid": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz" } }, - "os-name": { - "version": "https://registry.npmjs.org/os-name/-/os-name-1.0.3.tgz", - "integrity": "sha1-GzefZINa98Wn9JizV8uVIVwVnt8=", - "requires": { - "osx-release": "https://registry.npmjs.org/osx-release/-/osx-release-1.1.0.tgz", - "win-release": "https://registry.npmjs.org/win-release/-/win-release-1.1.1.tgz" - } - }, "os-tmpdir": { "version": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" @@ -2523,80 +2035,6 @@ "os-tmpdir": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" } }, - "osx-release": { - "version": "https://registry.npmjs.org/osx-release/-/osx-release-1.1.0.tgz", - "integrity": "sha1-8heRGigTaUmvG/kwiyQeJzfTzWw=", - "requires": { - "minimist": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz" - }, - "dependencies": { - "minimist": { - "version": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } - } - }, - "package-json": { - "version": "https://registry.npmjs.org/package-json/-/package-json-2.4.0.tgz", - "integrity": "sha1-DRW9Z9HLvduyyiIv8u24a8sxqLs=", - "requires": { - "got": "https://registry.npmjs.org/got/-/got-5.7.1.tgz", - "registry-auth-token": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.1.tgz", - "registry-url": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", - "semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz" - }, - "dependencies": { - "got": { - "version": "https://registry.npmjs.org/got/-/got-5.7.1.tgz", - "integrity": "sha1-X4FjWmHkplifGAVp6k44FoClHzU=", - "requires": { - "create-error-class": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", - "duplexer2": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "is-redirect": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", - "is-retry-allowed": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", - "is-stream": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "lowercase-keys": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", - "node-status-codes": "https://registry.npmjs.org/node-status-codes/-/node-status-codes-1.0.0.tgz", - "object-assign": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "parse-json": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "pinkie-promise": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "read-all-stream": "https://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz", - "readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.9.tgz", - "timed-out": "https://registry.npmjs.org/timed-out/-/timed-out-3.1.3.tgz", - "unzip-response": "https://registry.npmjs.org/unzip-response/-/unzip-response-1.0.2.tgz", - "url-parse-lax": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz" - } - }, - "isarray": { - "version": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "object-assign": { - "version": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "readable-stream": { - "version": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.9.tgz", - "integrity": "sha1-z3jsb0ptHrQ9JkiMrJfwQudLf8g=", - "requires": { - "buffer-shims": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", - "core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "isarray": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "process-nextick-args": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "string_decoder": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", - "util-deprecate": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" - } - }, - "string_decoder": { - "version": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", - "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", - "requires": { - "safe-buffer": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz" - } - } - } - }, "param-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/param-case/-/param-case-1.1.2.tgz", @@ -2705,10 +2143,6 @@ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=" }, - "prepend-http": { - "version": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" - }, "process-nextick-args": { "version": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" @@ -2716,6 +2150,7 @@ "promise": { "version": "https://registry.npmjs.org/promise/-/promise-6.1.0.tgz", "integrity": "sha1-LOcp9rlLRcJoka0GAsXJDgTG7vY=", + "optional": true, "requires": { "asap": "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz" } @@ -2739,10 +2174,6 @@ "resolved": "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz", "integrity": "sha1-wx2bdOwn33XlQ6hseHKO2NRiNgc=" }, - "querystring": { - "version": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" - }, "random-bytes": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", @@ -2775,56 +2206,6 @@ } } }, - "rc": { - "version": "https://registry.npmjs.org/rc/-/rc-1.2.1.tgz", - "integrity": "sha1-LgPo5C7kULjLPc5lvhv4l04d/ZU=", - "requires": { - "deep-extend": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz", - "ini": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz", - "minimist": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "strip-json-comments": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" - }, - "dependencies": { - "minimist": { - "version": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } - } - }, - "read-all-stream": { - "version": "https://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz", - "integrity": "sha1-NcPhd/IHjveJ7kv6+kNzB06u9Po=", - "requires": { - "pinkie-promise": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "readable-stream": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.9.tgz" - }, - "dependencies": { - "isarray": { - "version": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.9.tgz", - "integrity": "sha1-z3jsb0ptHrQ9JkiMrJfwQudLf8g=", - "requires": { - "buffer-shims": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", - "core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "isarray": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "process-nextick-args": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "string_decoder": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", - "util-deprecate": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" - } - }, - "string_decoder": { - "version": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", - "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", - "requires": { - "safe-buffer": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz" - } - } - } - }, "read-file-stdin": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/read-file-stdin/-/read-file-stdin-0.2.0.tgz", @@ -2890,21 +2271,6 @@ "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz", "integrity": "sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs=" }, - "registry-auth-token": { - "version": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.1.tgz", - "integrity": "sha1-+w0yie4Nmtosu1KvXf5mywcNMAY=", - "requires": { - "rc": "https://registry.npmjs.org/rc/-/rc-1.2.1.tgz", - "safe-buffer": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz" - } - }, - "registry-url": { - "version": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", - "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", - "requires": { - "rc": "https://registry.npmjs.org/rc/-/rc-1.2.1.tgz" - } - }, "relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", @@ -2981,14 +2347,6 @@ } } }, - "restore-cursor": { - "version": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", - "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", - "requires": { - "exit-hook": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", - "onetime": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz" - } - }, "right-align": { "version": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", @@ -3009,21 +2367,6 @@ "resolved": "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz", "integrity": "sha1-8z/pz7Urv9UgqhgyO8ZdsRCht2w=" }, - "run-async": { - "version": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", - "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", - "requires": { - "is-promise": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz" - } - }, - "rx": { - "version": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz", - "integrity": "sha1-pfE/957zt0D+MKqAP7CfmIBdR4I=" - }, - "safe-buffer": { - "version": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz", - "integrity": "sha1-0mPKVGls2KMGtcplUekt5XkY++c=" - }, "sass-graph": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", @@ -3113,13 +2456,6 @@ "version": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=" }, - "semver-diff": { - "version": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", - "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", - "requires": { - "semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz" - } - }, "send": { "version": "0.13.0", "resolved": "https://registry.npmjs.org/send/-/send-0.13.0.tgz", @@ -3273,10 +2609,6 @@ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" }, - "slide": { - "version": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz", - "integrity": "sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=" - }, "snake-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-1.1.2.tgz", @@ -3292,180 +2624,6 @@ "hoek": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz" } }, - "snyk": { - "version": "https://registry.npmjs.org/snyk/-/snyk-1.30.1.tgz", - "integrity": "sha1-DPFMHXPHtvY8pOJ1rIwqCQ7CrVI=", - "requires": { - "abbrev": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz", - "ansi-escapes": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", - "chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "configstore": "https://registry.npmjs.org/configstore/-/configstore-1.4.0.tgz", - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "es6-promise": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", - "hasbin": "https://registry.npmjs.org/hasbin/-/hasbin-1.2.3.tgz", - "inquirer": "https://registry.npmjs.org/inquirer/-/inquirer-1.0.3.tgz", - "open": "https://registry.npmjs.org/open/-/open-0.0.5.tgz", - "os-name": "https://registry.npmjs.org/os-name/-/os-name-1.0.3.tgz", - "request": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", - "semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "snyk-config": "https://registry.npmjs.org/snyk-config/-/snyk-config-1.0.1.tgz", - "snyk-module": "https://registry.npmjs.org/snyk-module/-/snyk-module-1.8.1.tgz", - "snyk-policy": "https://registry.npmjs.org/snyk-policy/-/snyk-policy-1.7.1.tgz", - "snyk-recursive-readdir": "https://registry.npmjs.org/snyk-recursive-readdir/-/snyk-recursive-readdir-2.0.0.tgz", - "snyk-resolve": "https://registry.npmjs.org/snyk-resolve/-/snyk-resolve-1.0.0.tgz", - "snyk-resolve-deps": "https://registry.npmjs.org/snyk-resolve-deps/-/snyk-resolve-deps-1.7.0.tgz", - "snyk-tree": "https://registry.npmjs.org/snyk-tree/-/snyk-tree-1.0.0.tgz", - "snyk-try-require": "https://registry.npmjs.org/snyk-try-require/-/snyk-try-require-1.2.0.tgz", - "tempfile": "https://registry.npmjs.org/tempfile/-/tempfile-1.1.1.tgz", - "then-fs": "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz", - "undefsafe": "https://registry.npmjs.org/undefsafe/-/undefsafe-0.0.3.tgz", - "update-notifier": "https://registry.npmjs.org/update-notifier/-/update-notifier-0.5.0.tgz", - "url": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "uuid": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz" - }, - "dependencies": { - "tempfile": { - "version": "https://registry.npmjs.org/tempfile/-/tempfile-1.1.1.tgz", - "integrity": "sha1-W8xOrsxKsscH2LwR2ZzMmiyyh/I=", - "requires": { - "os-tmpdir": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "uuid": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz" - }, - "dependencies": { - "uuid": { - "version": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz", - "integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho=" - } - } - }, - "uuid": { - "version": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz", - "integrity": "sha1-ZUS7ot/ajBzxfmKaOjBeK7H+5sE=" - } - } - }, - "snyk-config": { - "version": "https://registry.npmjs.org/snyk-config/-/snyk-config-1.0.1.tgz", - "integrity": "sha1-8nrsJJiyQCescZIUAmUhWRERUI8=", - "requires": { - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "nconf": "https://registry.npmjs.org/nconf/-/nconf-0.7.2.tgz", - "path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" - } - }, - "snyk-module": { - "version": "https://registry.npmjs.org/snyk-module/-/snyk-module-1.8.1.tgz", - "integrity": "sha1-MdUID7HA39b6hWfdNKUj/QK/H8o=", - "requires": { - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "hosted-git-info": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.2.0.tgz" - } - }, - "snyk-policy": { - "version": "https://registry.npmjs.org/snyk-policy/-/snyk-policy-1.7.1.tgz", - "integrity": "sha1-5BO2vUr2BQxeX0RSh5CeTpigmyI=", - "requires": { - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "es6-promise": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", - "js-yaml": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.4.tgz", - "lodash.clonedeep": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "snyk-module": "https://registry.npmjs.org/snyk-module/-/snyk-module-1.8.1.tgz", - "snyk-resolve": "https://registry.npmjs.org/snyk-resolve/-/snyk-resolve-1.0.0.tgz", - "snyk-try-require": "https://registry.npmjs.org/snyk-try-require/-/snyk-try-require-1.2.0.tgz", - "then-fs": "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz" - } - }, - "snyk-recursive-readdir": { - "version": "https://registry.npmjs.org/snyk-recursive-readdir/-/snyk-recursive-readdir-2.0.0.tgz", - "integrity": "sha1-XLWelGmBaeAgWmDn1qUG0LTVL/M=", - "requires": { - "minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.2.tgz" - }, - "dependencies": { - "minimatch": { - "version": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.2.tgz", - "integrity": "sha1-DzmKcwDqRB6cNIyD2Yq4ydv5xAo=", - "requires": { - "brace-expansion": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz" - } - } - } - }, - "snyk-resolve": { - "version": "https://registry.npmjs.org/snyk-resolve/-/snyk-resolve-1.0.0.tgz", - "integrity": "sha1-u+kZbTf1fDklHmvnXM3Vsgl+maI=", - "requires": { - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "then-fs": "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz" - } - }, - "snyk-resolve-deps": { - "version": "https://registry.npmjs.org/snyk-resolve-deps/-/snyk-resolve-deps-1.7.0.tgz", - "integrity": "sha1-E3Q6BYQ33/iQuq9DfDM8lmp0PLY=", - "requires": { - "abbrev": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz", - "ansicolors": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", - "clite": "https://registry.npmjs.org/clite/-/clite-0.3.0.tgz", - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "es6-promise": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", - "lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "lru-cache": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.2.tgz", - "minimist": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "snyk-module": "https://registry.npmjs.org/snyk-module/-/snyk-module-1.8.1.tgz", - "snyk-resolve": "https://registry.npmjs.org/snyk-resolve/-/snyk-resolve-1.0.0.tgz", - "snyk-tree": "https://registry.npmjs.org/snyk-tree/-/snyk-tree-1.0.0.tgz", - "snyk-try-require": "https://registry.npmjs.org/snyk-try-require/-/snyk-try-require-1.2.0.tgz", - "then-fs": "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz" - }, - "dependencies": { - "lodash": { - "version": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=" - }, - "lru-cache": { - "version": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.2.tgz", - "integrity": "sha1-HRdnnAac2l0ECZGgnbwsDbN35V4=", - "requires": { - "pseudomap": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "yallist": "https://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz" - } - }, - "minimist": { - "version": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } - } - }, - "snyk-tree": { - "version": "https://registry.npmjs.org/snyk-tree/-/snyk-tree-1.0.0.tgz", - "integrity": "sha1-D7cxdtvzLngvGRAClBYESPkRHMg=", - "requires": { - "archy": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz" - } - }, - "snyk-try-require": { - "version": "https://registry.npmjs.org/snyk-try-require/-/snyk-try-require-1.2.0.tgz", - "integrity": "sha1-MPwrEcBwZFke41eAyCa+kTEvIUQ=", - "requires": { - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "es6-promise": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", - "lodash.clonedeep": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "lru-cache": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.2.tgz", - "then-fs": "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz" - }, - "dependencies": { - "lru-cache": { - "version": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.2.tgz", - "integrity": "sha1-HRdnnAac2l0ECZGgnbwsDbN35V4=", - "requires": { - "pseudomap": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "yallist": "https://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz" - } - } - } - }, "source-map": { "version": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=" @@ -3485,10 +2643,6 @@ "version": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=" }, - "sprintf-js": { - "version": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, "sqwish": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/sqwish/-/sqwish-0.2.2.tgz", @@ -3578,22 +2732,11 @@ "readable-stream": "1.1.14" } }, - "stream-shift": { - "version": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", - "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=" - }, "string_decoder": { "version": "0.10.31", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" }, - "string-length": { - "version": "https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz", - "integrity": "sha1-VpcPscOFWOnnC3KL894mmsRa36w=", - "requires": { - "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" - } - }, "string-width": { "version": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", @@ -3636,10 +2779,6 @@ } } }, - "strip-json-comments": { - "version": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" - }, "stylus": { "version": "0.54.5", "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.54.5.tgz", @@ -3735,13 +2874,6 @@ "through": "https://registry.npmjs.org/through/-/through-2.3.8.tgz" } }, - "then-fs": { - "version": "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz", - "integrity": "sha1-cveS3Z0xcFqRrhnr/Piz+WjIHaI=", - "requires": { - "promise": "https://registry.npmjs.org/promise/-/promise-6.1.0.tgz" - } - }, "thepusher": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/thepusher/-/thepusher-0.1.4.tgz", @@ -3817,10 +2949,6 @@ } } }, - "timed-out": { - "version": "https://registry.npmjs.org/timed-out/-/timed-out-3.1.3.tgz", - "integrity": "sha1-lYYL/MXHbCd/j4Mm/Q9bLiDrohc=" - }, "title-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/title-case/-/title-case-1.1.2.tgz", @@ -3886,19 +3014,23 @@ "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" }, "uglify-js": { - "version": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.0.10.tgz", - "integrity": "sha1-4iDn28Bc4fm7CCaLIhqgzxUvtOI=", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.1.3.tgz", + "integrity": "sha512-5ZUOgufCHjN2mBBLfz63UtWTP6va2sSzBpNCM+/iqI6RnPzEhANmB0EKiKBYdQbc3v7KeomXJ2DJx0Xq9gvUvA==", "requires": { - "commander": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", - "source-map": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz" + "commander": "2.11.0", + "source-map": "0.5.7" }, "dependencies": { "commander": { - "version": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", - "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", - "requires": { - "graceful-readlink": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" - } + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", + "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" } } }, @@ -3915,10 +3047,6 @@ "random-bytes": "1.0.0" } }, - "undefsafe": { - "version": "https://registry.npmjs.org/undefsafe/-/undefsafe-0.0.3.tgz", - "integrity": "sha1-7Mo6A+VrmvFzhbqsgSrIO5lKli8=" - }, "underscore": { "version": "1.8.3", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz", @@ -3934,71 +3062,6 @@ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" }, - "unzip-response": { - "version": "https://registry.npmjs.org/unzip-response/-/unzip-response-1.0.2.tgz", - "integrity": "sha1-uYTwh3/AqJwsdzzB73tbIytbBv4=" - }, - "update-notifier": { - "version": "https://registry.npmjs.org/update-notifier/-/update-notifier-0.5.0.tgz", - "integrity": "sha1-B7XcIGazYnqztPUwEw9+3doHpMw=", - "requires": { - "chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "configstore": "https://registry.npmjs.org/configstore/-/configstore-1.4.0.tgz", - "is-npm": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", - "latest-version": "https://registry.npmjs.org/latest-version/-/latest-version-1.0.1.tgz", - "repeating": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz", - "semver-diff": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", - "string-length": "https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz" - }, - "dependencies": { - "got": { - "version": "https://registry.npmjs.org/got/-/got-3.3.1.tgz", - "integrity": "sha1-5dDtSvVfw+701WAHdp2YGSvLLso=", - "requires": { - "duplexify": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.0.tgz", - "infinity-agent": "https://registry.npmjs.org/infinity-agent/-/infinity-agent-2.0.3.tgz", - "is-redirect": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", - "is-stream": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "lowercase-keys": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", - "nested-error-stacks": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz", - "object-assign": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", - "prepend-http": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "read-all-stream": "https://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz", - "timed-out": "https://registry.npmjs.org/timed-out/-/timed-out-2.0.0.tgz" - } - }, - "latest-version": { - "version": "https://registry.npmjs.org/latest-version/-/latest-version-1.0.1.tgz", - "integrity": "sha1-cs/Ebj6NG+ZR4eu1Tqn26pbzdLs=", - "requires": { - "package-json": "https://registry.npmjs.org/package-json/-/package-json-1.2.0.tgz" - } - }, - "object-assign": { - "version": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", - "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=" - }, - "package-json": { - "version": "https://registry.npmjs.org/package-json/-/package-json-1.2.0.tgz", - "integrity": "sha1-yOysCUInzfdqMWh07QXifMk5oOA=", - "requires": { - "got": "https://registry.npmjs.org/got/-/got-3.3.1.tgz", - "registry-url": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz" - } - }, - "repeating": { - "version": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz", - "integrity": "sha1-PUEUIYh3U3SU+X93+Xhfq4EPpKw=", - "requires": { - "is-finite": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz" - } - }, - "timed-out": { - "version": "https://registry.npmjs.org/timed-out/-/timed-out-2.0.0.tgz", - "integrity": "sha1-84sK6B03R9YoAB9B2vxlKs5nHAo=" - } - } - }, "upper-case": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", @@ -4012,27 +3075,6 @@ "upper-case": "1.1.3" } }, - "url": { - "version": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "requires": { - "punycode": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "querystring": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz" - }, - "dependencies": { - "punycode": { - "version": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" - } - } - }, - "url-parse-lax": { - "version": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", - "requires": { - "prepend-http": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz" - } - }, "util-deprecate": { "version": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" @@ -4097,20 +3139,6 @@ "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz" } }, - "widest-line": { - "version": "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz", - "integrity": "sha1-DAnIXCqUaD0Nfq+O4JfVZL8OEFw=", - "requires": { - "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz" - } - }, - "win-release": { - "version": "https://registry.npmjs.org/win-release/-/win-release-1.1.1.tgz", - "integrity": "sha1-X6VeAr58qTTt/BJmVjLoSbcuUgk=", - "requires": { - "semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz" - } - }, "window-size": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", @@ -4141,33 +3169,11 @@ "version": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, - "write-file-atomic": { - "version": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz", - "integrity": "sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8=", - "requires": { - "graceful-fs": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "imurmurhash": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "slide": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz" - }, - "dependencies": { - "graceful-fs": { - "version": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - } - } - }, "write-file-stdout": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/write-file-stdout/-/write-file-stdout-0.0.2.tgz", "integrity": "sha1-wlLXx8WxtAKJdjDjRTx7/mkNnKE=" }, - "xdg-basedir": { - "version": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz", - "integrity": "sha1-7byQPMOF/ARSPZZqM1UEtVBNG9I=", - "requires": { - "os-homedir": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz" - } - }, "xtend": { "version": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" @@ -4190,20 +3196,6 @@ "decamelize": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", "window-size": "0.1.0" } - }, - "yargs-parser": { - "version": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz", - "integrity": "sha1-hVaN488VD/SfpRgl8DqMiA3cxcQ=", - "requires": { - "camelcase": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "lodash.assign": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz" - }, - "dependencies": { - "camelcase": { - "version": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" - } - } } } } diff --git a/package.json b/package.json index 79e7e1f..ec45fd2 100644 --- a/package.json +++ b/package.json @@ -5,12 +5,7 @@ "dependencies": { "harp": "^0.24.0", "thepusher": "^0.1.4", - "uglify-js": "^3.0.9", - "snyk": "^1.30.1" + "uglify-js": "^3.0.9" }, - "scripts": { - "snyk-protect": "snyk protect", - "prepublish": "npm run snyk-protect" - }, - "snyk": true + "scripts": {} } From b652b249b71e66c152ee3746f0f7127470c2f76e Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Wed, 18 Oct 2017 09:56:14 -0700 Subject: [PATCH 03/33] update tweet archive --- public/tweets/data/js/payload_details.js | 4 +- public/tweets/data/js/tweet_index.js | 58 +- public/tweets/data/js/tweets/2009_11.js | 4 +- public/tweets/data/js/tweets/2009_12.js | 4 +- public/tweets/data/js/tweets/2010_01.js | 6 +- public/tweets/data/js/tweets/2010_02.js | 2 +- public/tweets/data/js/tweets/2010_03.js | 28 +- public/tweets/data/js/tweets/2010_04.js | 2 +- public/tweets/data/js/tweets/2010_05.js | 65 +- public/tweets/data/js/tweets/2010_06.js | 4 +- public/tweets/data/js/tweets/2010_07.js | 10 +- public/tweets/data/js/tweets/2010_08.js | 8 +- public/tweets/data/js/tweets/2010_09.js | 16 +- public/tweets/data/js/tweets/2010_10.js | 16 +- public/tweets/data/js/tweets/2010_11.js | 30 +- public/tweets/data/js/tweets/2010_12.js | 44 +- public/tweets/data/js/tweets/2011_01.js | 110 +-- public/tweets/data/js/tweets/2011_02.js | 119 +-- public/tweets/data/js/tweets/2011_03.js | 6 +- public/tweets/data/js/tweets/2011_04.js | 14 +- public/tweets/data/js/tweets/2011_05.js | 71 +- public/tweets/data/js/tweets/2011_06.js | 22 +- public/tweets/data/js/tweets/2011_07.js | 73 +- public/tweets/data/js/tweets/2011_08.js | 87 ++- public/tweets/data/js/tweets/2011_09.js | 6 +- public/tweets/data/js/tweets/2011_11.js | 8 +- public/tweets/data/js/tweets/2011_12.js | 26 +- public/tweets/data/js/tweets/2012_01.js | 46 +- public/tweets/data/js/tweets/2012_02.js | 30 +- public/tweets/data/js/tweets/2012_03.js | 24 +- public/tweets/data/js/tweets/2012_04.js | 12 +- public/tweets/data/js/tweets/2012_05.js | 68 +- public/tweets/data/js/tweets/2012_06.js | 30 +- public/tweets/data/js/tweets/2012_07.js | 101 +-- public/tweets/data/js/tweets/2012_08.js | 6 +- public/tweets/data/js/tweets/2012_09.js | 22 +- public/tweets/data/js/tweets/2012_10.js | 8 +- public/tweets/data/js/tweets/2012_12.js | 4 +- public/tweets/data/js/tweets/2013_01.js | 56 +- public/tweets/data/js/tweets/2013_02.js | 48 +- public/tweets/data/js/tweets/2013_03.js | 64 +- public/tweets/data/js/tweets/2013_04.js | 22 +- public/tweets/data/js/tweets/2013_05.js | 24 +- public/tweets/data/js/tweets/2013_06.js | 38 +- public/tweets/data/js/tweets/2013_07.js | 16 +- public/tweets/data/js/tweets/2013_08.js | 76 +- public/tweets/data/js/tweets/2013_09.js | 120 +-- public/tweets/data/js/tweets/2013_10.js | 136 ++-- public/tweets/data/js/tweets/2013_11.js | 107 +-- public/tweets/data/js/tweets/2013_12.js | 312 ++++---- public/tweets/data/js/tweets/2014_01.js | 194 ++--- public/tweets/data/js/tweets/2014_02.js | 238 +++--- public/tweets/data/js/tweets/2014_03.js | 188 ++--- public/tweets/data/js/tweets/2014_04.js | 445 ++++++----- public/tweets/data/js/tweets/2014_05.js | 274 +++---- public/tweets/data/js/tweets/2014_06.js | 204 ++--- public/tweets/data/js/tweets/2014_07.js | 256 +++---- public/tweets/data/js/tweets/2014_08.js | 222 +++--- public/tweets/data/js/tweets/2014_09.js | 270 +++---- public/tweets/data/js/tweets/2014_10.js | 256 +++---- public/tweets/data/js/tweets/2014_11.js | 180 ++--- public/tweets/data/js/tweets/2014_12.js | 90 +-- public/tweets/data/js/tweets/2015_01.js | 162 ++-- public/tweets/data/js/tweets/2015_02.js | 150 ++-- public/tweets/data/js/tweets/2015_03.js | 119 +-- public/tweets/data/js/tweets/2015_04.js | 278 +++---- public/tweets/data/js/tweets/2015_05.js | 290 +++---- public/tweets/data/js/tweets/2015_06.js | 96 +-- public/tweets/data/js/tweets/2015_07.js | 126 ++-- public/tweets/data/js/tweets/2015_08.js | 90 +-- public/tweets/data/js/tweets/2015_09.js | 344 ++++----- public/tweets/data/js/tweets/2015_10.js | 370 ++++----- public/tweets/data/js/tweets/2015_11.js | 180 ++--- public/tweets/data/js/tweets/2015_12.js | 156 ++-- public/tweets/data/js/tweets/2016_01.js | 70 +- public/tweets/data/js/tweets/2016_02.js | 44 +- public/tweets/data/js/tweets/2016_03.js | 38 +- public/tweets/data/js/tweets/2016_04.js | 16 +- public/tweets/data/js/tweets/2016_05.js | 2 +- public/tweets/data/js/tweets/2016_06.js | 89 ++- public/tweets/data/js/tweets/2016_07.js | 52 +- public/tweets/data/js/tweets/2016_08.js | 10 +- public/tweets/data/js/tweets/2016_09.js | 22 +- public/tweets/data/js/tweets/2016_10.js | 101 ++- public/tweets/data/js/tweets/2016_11.js | 32 +- public/tweets/data/js/tweets/2016_12.js | 24 +- public/tweets/data/js/tweets/2017_01.js | 83 +- public/tweets/data/js/tweets/2017_04.js | 16 +- public/tweets/data/js/tweets/2017_05.js | 107 +++ public/tweets/data/js/tweets/2017_06.js | 916 +++++++++++++++++++++++ public/tweets/data/js/tweets/2017_07.js | 606 +++++++++++++++ public/tweets/data/js/tweets/2017_08.js | 619 +++++++++++++++ public/tweets/data/js/tweets/2017_09.js | 296 ++++++++ public/tweets/data/js/tweets/2017_10.js | 150 ++++ public/tweets/tweets.csv | 101 ++- 95 files changed, 6651 insertions(+), 4134 deletions(-) create mode 100755 public/tweets/data/js/tweets/2017_05.js create mode 100755 public/tweets/data/js/tweets/2017_06.js create mode 100755 public/tweets/data/js/tweets/2017_07.js create mode 100755 public/tweets/data/js/tweets/2017_08.js create mode 100755 public/tweets/data/js/tweets/2017_09.js create mode 100755 public/tweets/data/js/tweets/2017_10.js diff --git a/public/tweets/data/js/payload_details.js b/public/tweets/data/js/payload_details.js index d5ca160..35d8e1a 100755 --- a/public/tweets/data/js/payload_details.js +++ b/public/tweets/data/js/payload_details.js @@ -1,5 +1,5 @@ var payload_details = { - "tweets" : 7902, - "created_at" : "2017-04-24 18:12:01 +0000", + "tweets" : 7965, + "created_at" : "2017-10-16 17:43:55 +0000", "lang" : "en" } \ No newline at end of file diff --git a/public/tweets/data/js/tweet_index.js b/public/tweets/data/js/tweet_index.js index a3f0b72..2752b0b 100755 --- a/public/tweets/data/js/tweet_index.js +++ b/public/tweets/data/js/tweet_index.js @@ -1,4 +1,40 @@ var tweet_index = [ { + "file_name" : "data\/js\/tweets\/2017_10.js", + "year" : 2017, + "var_name" : "tweets_2017_10", + "tweet_count" : 4, + "month" : 10 +}, { + "file_name" : "data\/js\/tweets\/2017_09.js", + "year" : 2017, + "var_name" : "tweets_2017_09", + "tweet_count" : 8, + "month" : 9 +}, { + "file_name" : "data\/js\/tweets\/2017_08.js", + "year" : 2017, + "var_name" : "tweets_2017_08", + "tweet_count" : 15, + "month" : 8 +}, { + "file_name" : "data\/js\/tweets\/2017_07.js", + "year" : 2017, + "var_name" : "tweets_2017_07", + "tweet_count" : 15, + "month" : 7 +}, { + "file_name" : "data\/js\/tweets\/2017_06.js", + "year" : 2017, + "var_name" : "tweets_2017_06", + "tweet_count" : 20, + "month" : 6 +}, { + "file_name" : "data\/js\/tweets\/2017_05.js", + "year" : 2017, + "var_name" : "tweets_2017_05", + "tweet_count" : 3, + "month" : 5 +}, { "file_name" : "data\/js\/tweets\/2017_04.js", "year" : 2017, "var_name" : "tweets_2017_04", @@ -20,7 +56,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2017_01.js", "year" : 2017, "var_name" : "tweets_2017_01", - "tweet_count" : 59, + "tweet_count" : 58, "month" : 1 }, { "file_name" : "data\/js\/tweets\/2016_12.js", @@ -38,7 +74,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2016_10.js", "year" : 2016, "var_name" : "tweets_2016_10", - "tweet_count" : 122, + "tweet_count" : 123, "month" : 10 }, { "file_name" : "data\/js\/tweets\/2016_09.js", @@ -62,7 +98,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2016_06.js", "year" : 2016, "var_name" : "tweets_2016_06", - "tweet_count" : 124, + "tweet_count" : 125, "month" : 6 }, { "file_name" : "data\/js\/tweets\/2016_05.js", @@ -248,7 +284,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2013_11.js", "year" : 2013, "var_name" : "tweets_2013_11", - "tweet_count" : 56, + "tweet_count" : 55, "month" : 11 }, { "file_name" : "data\/js\/tweets\/2013_10.js", @@ -344,7 +380,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2012_07.js", "year" : 2012, "var_name" : "tweets_2012_07", - "tweet_count" : 25, + "tweet_count" : 24, "month" : 7 }, { "file_name" : "data\/js\/tweets\/2012_06.js", @@ -410,13 +446,13 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2011_08.js", "year" : 2011, "var_name" : "tweets_2011_08", - "tweet_count" : 206, + "tweet_count" : 207, "month" : 8 }, { "file_name" : "data\/js\/tweets\/2011_07.js", "year" : 2011, "var_name" : "tweets_2011_07", - "tweet_count" : 269, + "tweet_count" : 268, "month" : 7 }, { "file_name" : "data\/js\/tweets\/2011_06.js", @@ -428,7 +464,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2011_05.js", "year" : 2011, "var_name" : "tweets_2011_05", - "tweet_count" : 184, + "tweet_count" : 183, "month" : 5 }, { "file_name" : "data\/js\/tweets\/2011_04.js", @@ -446,13 +482,13 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2011_02.js", "year" : 2011, "var_name" : "tweets_2011_02", - "tweet_count" : 138, + "tweet_count" : 137, "month" : 2 }, { "file_name" : "data\/js\/tweets\/2011_01.js", "year" : 2011, "var_name" : "tweets_2011_01", - "tweet_count" : 178, + "tweet_count" : 177, "month" : 1 }, { "file_name" : "data\/js\/tweets\/2010_12.js", @@ -500,7 +536,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2010_05.js", "year" : 2010, "var_name" : "tweets_2010_05", - "tweet_count" : 56, + "tweet_count" : 55, "month" : 5 }, { "file_name" : "data\/js\/tweets\/2010_04.js", diff --git a/public/tweets/data/js/tweets/2009_11.js b/public/tweets/data/js/tweets/2009_11.js index ac104f5..178d754 100755 --- a/public/tweets/data/js/tweets/2009_11.js +++ b/public/tweets/data/js/tweets/2009_11.js @@ -470,7 +470,7 @@ Grailbird.data.tweets_2009_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jonnay, born on 3rd", + "name" : "\uD83D\uDC30bunwitch dorror\uD83D\uDC7B", "screen_name" : "jonnay", "indices" : [ 3, 10 ], "id_str" : "817328", @@ -503,7 +503,7 @@ Grailbird.data.tweets_2009_11 = "id" : 5907000124, "created_at" : "2009-11-21 01:38:49 +0000", "user" : { - "name" : "jonnay, but \uD83D\uDC07\uD83D\uDC6F\u200D\u2642\uD83D\uDC07", + "name" : "\uD83D\uDC30bunwitch dorror\uD83D\uDC7B", "screen_name" : "jonnay", "protected" : false, "id_str" : "817328", diff --git a/public/tweets/data/js/tweets/2009_12.js b/public/tweets/data/js/tweets/2009_12.js index a20f60f..986e640 100755 --- a/public/tweets/data/js/tweets/2009_12.js +++ b/public/tweets/data/js/tweets/2009_12.js @@ -1145,7 +1145,7 @@ Grailbird.data.tweets_2009_12 = "id_str" : "54403950", "id" : 54403950 }, { - "name" : "David Strack", + "name" : "Strackula \uD83E\uDD87", "screen_name" : "rmxdave", "indices" : [ 15, 23 ], "id_str" : "9027732", @@ -1174,7 +1174,7 @@ Grailbird.data.tweets_2009_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "David Strack", + "name" : "Strackula \uD83E\uDD87", "screen_name" : "rmxdave", "indices" : [ 3, 11 ], "id_str" : "9027732", diff --git a/public/tweets/data/js/tweets/2010_01.js b/public/tweets/data/js/tweets/2010_01.js index 0fec0b3..f50077d 100755 --- a/public/tweets/data/js/tweets/2010_01.js +++ b/public/tweets/data/js/tweets/2010_01.js @@ -1433,7 +1433,7 @@ Grailbird.data.tweets_2010_01 = "screen_name" : "chuq", "protected" : false, "id_str" : "13217612", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/758031386066333696\/vSq-AvJq_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/878288211339902976\/dDvof4nb_normal.jpg", "id" : 13217612, "verified" : false } @@ -1487,7 +1487,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Lori Todd \uD83D\uDD2E", + "name" : "Lori Todd \uD83D\uDDA4", "screen_name" : "loritodd", "indices" : [ 0, 9 ], "id_str" : "9511932", @@ -3443,7 +3443,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 36, 40 ], "id_str" : "12712742", diff --git a/public/tweets/data/js/tweets/2010_02.js b/public/tweets/data/js/tweets/2010_02.js index da620fb..1da44a3 100755 --- a/public/tweets/data/js/tweets/2010_02.js +++ b/public/tweets/data/js/tweets/2010_02.js @@ -219,7 +219,7 @@ Grailbird.data.tweets_2010_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "David R. MacIver", + "name" : "DRMacIver's Monster", "screen_name" : "DRMacIver", "indices" : [ 0, 10 ], "id_str" : "14368342", diff --git a/public/tweets/data/js/tweets/2010_03.js b/public/tweets/data/js/tweets/2010_03.js index 37fe21d..b26cc90 100755 --- a/public/tweets/data/js/tweets/2010_03.js +++ b/public/tweets/data/js/tweets/2010_03.js @@ -85,7 +85,7 @@ Grailbird.data.tweets_2010_03 = "screen_name" : "wycats", "protected" : false, "id_str" : "8526432", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3250074047\/46d910af94e25187832cb4a3bc84b2b5_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/861010112852262912\/nbPZKMyR_normal.jpg", "id" : 8526432, "verified" : true } @@ -422,7 +422,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", @@ -461,11 +461,11 @@ Grailbird.data.tweets_2010_03 = "id" : 11203590289, "created_at" : "2010-03-28 17:16:42 +0000", "user" : { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/776951694986846209\/WHpx6lma_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914679151784873984\/KxWCgXo8_normal.jpg", "id" : 14939200, "verified" : false } @@ -1329,7 +1329,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", @@ -1380,11 +1380,11 @@ Grailbird.data.tweets_2010_03 = "id" : 10729730792, "created_at" : "2010-03-19 16:18:05 +0000", "user" : { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/776951694986846209\/WHpx6lma_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914679151784873984\/KxWCgXo8_normal.jpg", "id" : 14939200, "verified" : false } @@ -1794,12 +1794,6 @@ Grailbird.data.tweets_2010_03 = "indices" : [ 3, 13 ], "id_str" : "9980812", "id" : 9980812 - }, { - "name" : "Tim Anglade", - "screen_name" : "timanglade", - "indices" : [ 44, 55 ], - "id_str" : "922821", - "id" : 922821 } ], "media" : [ ], "hashtags" : [ { @@ -1814,13 +1808,7 @@ Grailbird.data.tweets_2010_03 = "retweeted_status" : { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Tim Anglade", - "screen_name" : "timanglade", - "indices" : [ 29, 40 ], - "id_str" : "922821", - "id" : 922821 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ { "text" : "nosqllive", diff --git a/public/tweets/data/js/tweets/2010_04.js b/public/tweets/data/js/tweets/2010_04.js index 5de2a63..7ba28c3 100755 --- a/public/tweets/data/js/tweets/2010_04.js +++ b/public/tweets/data/js/tweets/2010_04.js @@ -1373,7 +1373,7 @@ Grailbird.data.tweets_2010_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 86, 90 ], "id_str" : "12712742", diff --git a/public/tweets/data/js/tweets/2010_05.js b/public/tweets/data/js/tweets/2010_05.js index fbeb0e9..651307e 100755 --- a/public/tweets/data/js/tweets/2010_05.js +++ b/public/tweets/data/js/tweets/2010_05.js @@ -591,7 +591,7 @@ Grailbird.data.tweets_2010_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 3, 7 ], "id_str" : "12712742", @@ -630,11 +630,11 @@ Grailbird.data.tweets_2010_05 = "id" : 14652351912, "created_at" : "2010-05-24 22:48:17 +0000", "user" : { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "protected" : false, "id_str" : "12712742", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/850471004262383616\/4bWS5-E7_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/880992273101578240\/ib3GlMDp_normal.jpg", "id" : 12712742, "verified" : false } @@ -720,7 +720,7 @@ Grailbird.data.tweets_2010_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -747,11 +747,11 @@ Grailbird.data.tweets_2010_05 = "id" : 14646836334, "created_at" : "2010-05-24 20:57:44 +0000", "user" : { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/765345750427414529\/hxSFDEmc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917536371085950976\/MIuNwAAR_normal.png", "id" : 8038312, "verified" : true } @@ -820,57 +820,6 @@ Grailbird.data.tweets_2010_05 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Andy G\uD83C\uDDFA\uD83C\uDDF8 V. USA\uD83D\uDC37", - "screen_name" : "argv0", - "indices" : [ 3, 9 ], - "id_str" : "6509982", - "id" : 6509982 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "14521573978", - "text" : "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 ...", - "retweeted_status" : { - "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "14521160441", - "text" : "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 Basho Riak.", - "id" : 14521160441, - "created_at" : "2010-05-22 23:04:37 +0000", - "user" : { - "name" : "A. Robinson Gross", - "screen_name" : "argv0", - "protected" : false, - "id_str" : "6509982", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853303726118916097\/zaoLLw9n_normal.jpg", - "id" : 6509982, - "verified" : false - } - }, - "id" : 14521573978, - "created_at" : "2010-05-22 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -1712,7 +1661,7 @@ Grailbird.data.tweets_2010_05 = "id_str" : "12497", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000261649705\/be9cc55e64014e6d7663c50d7cb9fc75_normal.jpeg", "id" : 12497, - "verified" : false + "verified" : true } }, "id" : 13556062187, diff --git a/public/tweets/data/js/tweets/2010_06.js b/public/tweets/data/js/tweets/2010_06.js index 518613f..54842d7 100755 --- a/public/tweets/data/js/tweets/2010_06.js +++ b/public/tweets/data/js/tweets/2010_06.js @@ -193,7 +193,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2058,7 +2058,7 @@ Grailbird.data.tweets_2010_06 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } diff --git a/public/tweets/data/js/tweets/2010_07.js b/public/tweets/data/js/tweets/2010_07.js index 5945c35..f3cce52 100755 --- a/public/tweets/data/js/tweets/2010_07.js +++ b/public/tweets/data/js/tweets/2010_07.js @@ -188,7 +188,7 @@ Grailbird.data.tweets_2010_07 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/850626294702252032\/cXCQ0vVd_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865667126408773632\/QX5O6RhU_normal.jpg", "id" : 14273142, "verified" : false } @@ -281,7 +281,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 0, 4 ], "id_str" : "12712742", @@ -598,7 +598,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 0, 4 ], "id_str" : "12712742", @@ -769,7 +769,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -796,7 +796,7 @@ Grailbird.data.tweets_2010_07 = "id" : 18171089437, "created_at" : "2010-07-10 04:02:35 +0000", "user" : { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", diff --git a/public/tweets/data/js/tweets/2010_08.js b/public/tweets/data/js/tweets/2010_08.js index e5f429c..3717077 100755 --- a/public/tweets/data/js/tweets/2010_08.js +++ b/public/tweets/data/js/tweets/2010_08.js @@ -311,7 +311,7 @@ Grailbird.data.tweets_2010_08 = "id" : 21270897515, "created_at" : "2010-08-16 00:13:43 +0000", "user" : { - "name" : "Nick Swizzle Small", + "name" : "Nick Small", "screen_name" : "nickjsiii", "protected" : false, "id_str" : "11768402", @@ -787,7 +787,7 @@ Grailbird.data.tweets_2010_08 = "screen_name" : "chuq", "protected" : false, "id_str" : "13217612", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/758031386066333696\/vSq-AvJq_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/878288211339902976\/dDvof4nb_normal.jpg", "id" : 13217612, "verified" : false } @@ -807,7 +807,7 @@ Grailbird.data.tweets_2010_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 0, 4 ], "id_str" : "12712742", @@ -840,7 +840,7 @@ Grailbird.data.tweets_2010_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 1, 5 ], "id_str" : "12712742", diff --git a/public/tweets/data/js/tweets/2010_09.js b/public/tweets/data/js/tweets/2010_09.js index df816ca..47982cf 100755 --- a/public/tweets/data/js/tweets/2010_09.js +++ b/public/tweets/data/js/tweets/2010_09.js @@ -1082,7 +1082,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u200Brem", + "name" : "@rem ~ offline \uD83D\uDDA4", "screen_name" : "rem", "indices" : [ 3, 7 ], "id_str" : "648873", @@ -1121,7 +1121,7 @@ Grailbird.data.tweets_2010_09 = "id" : 25605392653, "created_at" : "2010-09-26 16:41:36 +0000", "user" : { - "name" : "\u200Brem", + "name" : "@rem ~ offline \uD83D\uDDA4", "screen_name" : "rem", "protected" : false, "id_str" : "648873", @@ -1176,7 +1176,7 @@ Grailbird.data.tweets_2010_09 = "screen_name" : "wycats", "protected" : false, "id_str" : "8526432", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3250074047\/46d910af94e25187832cb4a3bc84b2b5_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/861010112852262912\/nbPZKMyR_normal.jpg", "id" : 8526432, "verified" : true } @@ -1542,7 +1542,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "indices" : [ 0, 11 ], "id_str" : "14939200", @@ -1578,7 +1578,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "indices" : [ 0, 11 ], "id_str" : "14939200", @@ -1614,7 +1614,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", @@ -1641,11 +1641,11 @@ Grailbird.data.tweets_2010_09 = "id" : 25317257681, "created_at" : "2010-09-23 15:31:23 +0000", "user" : { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/776951694986846209\/WHpx6lma_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914679151784873984\/KxWCgXo8_normal.jpg", "id" : 14939200, "verified" : false } diff --git a/public/tweets/data/js/tweets/2010_10.js b/public/tweets/data/js/tweets/2010_10.js index 7869ea4..6420020 100755 --- a/public/tweets/data/js/tweets/2010_10.js +++ b/public/tweets/data/js/tweets/2010_10.js @@ -686,7 +686,7 @@ Grailbird.data.tweets_2010_10 = "screen_name" : "ThisIsMissEm", "protected" : false, "id_str" : "14063149", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/854123256110084096\/XDLIik8R_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919075940495495169\/tXWpM0Fa_normal.jpg", "id" : 14063149, "verified" : false } @@ -859,7 +859,7 @@ Grailbird.data.tweets_2010_10 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/721536199681318912\/rflwVOZ8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", "id" : 15540222, "verified" : true } @@ -969,7 +969,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -1928,7 +1928,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -1955,7 +1955,7 @@ Grailbird.data.tweets_2010_10 = "id" : 28541909390, "created_at" : "2010-10-23 23:08:44 +0000", "user" : { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", @@ -3017,7 +3017,7 @@ Grailbird.data.tweets_2010_10 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -3184,11 +3184,11 @@ Grailbird.data.tweets_2010_10 = "id" : 27361842996, "created_at" : "2010-10-14 17:35:41 +0000", "user" : { - "name" : "bobby", + "name" : "bobby \uD83D\uDEBD", "screen_name" : "bobby", "protected" : false, "id_str" : "17983820", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/630250931452542976\/qZ9l6cSw_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/908438483395645440\/lsp6GN2S_normal.jpg", "id" : 17983820, "verified" : false } diff --git a/public/tweets/data/js/tweets/2010_11.js b/public/tweets/data/js/tweets/2010_11.js index 692a73c..1240ba3 100755 --- a/public/tweets/data/js/tweets/2010_11.js +++ b/public/tweets/data/js/tweets/2010_11.js @@ -707,7 +707,7 @@ Grailbird.data.tweets_2010_11 = "in_reply_to_screen_name" : "BCTransit", "in_reply_to_user_id_str" : "67042447", "user" : { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "protected" : false, "id_str" : "22406953", @@ -1672,7 +1672,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Marine Todd Le Pen", + "name" : "patch -p1 punkin.dif", "screen_name" : "moonpolysoft", "indices" : [ 36, 49 ], "id_str" : "14204623", @@ -1928,7 +1928,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "isntitvacant", "protected" : false, "id_str" : "15394440", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/668015451243327489\/6G04zB-4_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914324901011480576\/uOiPyzDc_normal.jpg", "id" : 15394440, "verified" : false } @@ -3848,7 +3848,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3903,7 +3903,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3942,7 +3942,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -4263,7 +4263,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -4930,7 +4930,7 @@ Grailbird.data.tweets_2010_11 = "id_str" : "1341781", "id" : 1341781 }, { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 40, 55 ], "id_str" : "27302287", @@ -4953,7 +4953,7 @@ Grailbird.data.tweets_2010_11 = "id_str" : "1341781", "id" : 1341781 }, { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 26, 41 ], "id_str" : "27302287", @@ -5080,7 +5080,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1282173124\/untitled-158-2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", "id" : 14231571, "verified" : true } @@ -5235,7 +5235,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -5262,7 +5262,7 @@ Grailbird.data.tweets_2010_11 = "id" : 2157046266863616, "created_at" : "2010-11-10 00:34:14 +0000", "user" : { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", @@ -5469,7 +5469,7 @@ Grailbird.data.tweets_2010_11 = "id" : 2023394778292224, "created_at" : "2010-11-09 15:43:09 +0000", "user" : { - "name" : "Changelog", + "name" : "The Changelog", "screen_name" : "changelog", "protected" : false, "id_str" : "90286855", @@ -6093,7 +6093,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -6595,7 +6595,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/823672050640416768\/T3Va_rMy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919096611019489280\/eF9MvfqL_normal.jpg", "id" : 658643, "verified" : true } diff --git a/public/tweets/data/js/tweets/2010_12.js b/public/tweets/data/js/tweets/2010_12.js index 40d2983..61e7a45 100755 --- a/public/tweets/data/js/tweets/2010_12.js +++ b/public/tweets/data/js/tweets/2010_12.js @@ -410,7 +410,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/850626294702252032\/cXCQ0vVd_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865667126408773632\/QX5O6RhU_normal.jpg", "id" : 14273142, "verified" : false } @@ -514,7 +514,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -1083,7 +1083,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "virtual peripatetic", + "name" : "initial con offering", "screen_name" : "tilgovi", "indices" : [ 0, 8 ], "id_str" : "15258949", @@ -1356,7 +1356,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "chef", "protected" : false, "id_str" : "16333852", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793319926668730368\/HslzNjrg_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881901479623180289\/AGSth7Zv_normal.jpg", "id" : 16333852, "verified" : true } @@ -1460,7 +1460,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -1493,7 +1493,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -1887,13 +1887,7 @@ Grailbird.data.tweets_2010_12 = }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Scott Roemermann", - "screen_name" : "KlikkiScott", - "indices" : [ 0, 12 ], - "id_str" : "145216969", - "id" : 145216969 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -1904,7 +1898,7 @@ Grailbird.data.tweets_2010_12 = "text" : "@KlikkiScott You've followed and unfollowed me 3 times now. Stop it. Next time you get reported for spam.", "id" : 15059781643411456, "created_at" : "2010-12-15 15:05:06 +0000", - "in_reply_to_screen_name" : "KlikkiScott", + "in_reply_to_screen_name" : "scottroemermann", "in_reply_to_user_id_str" : "145216969", "user" : { "name" : "Sami Samhuri", @@ -3076,7 +3070,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Phil", + "name" : "Philipp Fehre", "screen_name" : "ischi", "indices" : [ 0, 6 ], "id_str" : "12510462", @@ -3772,7 +3766,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "mjackson", "protected" : false, "id_str" : "734903", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849637243748720640\/3zQXUfuY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902276500107362304\/vju-WV1i_normal.jpg", "id" : 734903, "verified" : false } @@ -4337,7 +4331,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Amy Hoy", + "name" : "Ghost Ships A Hoy \uD83D\uDC7B", "screen_name" : "amyhoy", "indices" : [ 0, 7 ], "id_str" : "627213", @@ -4370,7 +4364,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Amy Hoy", + "name" : "Ghost Ships A Hoy \uD83D\uDC7B", "screen_name" : "amyhoy", "indices" : [ 0, 7 ], "id_str" : "627213", @@ -4403,7 +4397,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Amy Hoy", + "name" : "Ghost Ships A Hoy \uD83D\uDC7B", "screen_name" : "amyhoy", "indices" : [ 0, 7 ], "id_str" : "627213", @@ -4489,7 +4483,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -5069,7 +5063,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000226613002\/36623ae09f553713c575c97c77544b49_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", "id" : 29255412, "verified" : false } @@ -5089,7 +5083,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", @@ -5133,11 +5127,11 @@ Grailbird.data.tweets_2010_12 = "in_reply_to_screen_name" : "roidrage", "in_reply_to_user_id_str" : "14658472", "user" : { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/776951694986846209\/WHpx6lma_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914679151784873984\/KxWCgXo8_normal.jpg", "id" : 14939200, "verified" : false } @@ -5435,7 +5429,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Amy Hoy", + "name" : "Ghost Ships A Hoy \uD83D\uDC7B", "screen_name" : "amyhoy", "indices" : [ 0, 7 ], "id_str" : "627213", diff --git a/public/tweets/data/js/tweets/2011_01.js b/public/tweets/data/js/tweets/2011_01.js index c27fc3c..59b80e2 100755 --- a/public/tweets/data/js/tweets/2011_01.js +++ b/public/tweets/data/js/tweets/2011_01.js @@ -766,7 +766,7 @@ Grailbird.data.tweets_2011_01 = "screen_name" : "headius", "protected" : false, "id_str" : "9989362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/852783837499146242\/Tkr1sdJ-_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/910043868791398400\/Y0DqLATy_normal.jpg", "id" : 9989362, "verified" : false } @@ -1595,7 +1595,7 @@ Grailbird.data.tweets_2011_01 = "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/767372427026464768\/5Prq7opQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918433182906830848\/NwsKygmV_normal.jpg", "id" : 6927562, "verified" : true } @@ -2197,7 +2197,7 @@ Grailbird.data.tweets_2011_01 = "screen_name" : "rainnwilson", "protected" : false, "id_str" : "19637934", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/733665476140630016\/BiosDs6z_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/897899380941836288\/Gy_lgf7a_normal.jpg", "id" : 19637934, "verified" : true } @@ -2217,7 +2217,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2752,23 +2752,11 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", "id" : 27302287 - }, { - "name" : "Sir Funk", - "screen_name" : "sophistifunk", - "indices" : [ 20, 33 ], - "id_str" : "14113080", - "id" : 14113080 - }, { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "indices" : [ 34, 39 ], - "id_str" : "4777951", - "id" : 4777951 } ], "media" : [ ], "hashtags" : [ ], @@ -2781,12 +2769,6 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sir Funk", - "screen_name" : "sophistifunk", - "indices" : [ 0, 13 ], - "id_str" : "14113080", - "id" : 14113080 - }, { "name" : "Sami Samhuri", "screen_name" : "_sjs", "indices" : [ 14, 19 ], @@ -2797,18 +2779,13 @@ Grailbird.data.tweets_2011_01 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "27502699058565120", "geo" : { }, "id_str" : "27516621731930112", - "in_reply_to_user_id" : 14113080, "text" : "@sophistifunk @_sjs http:\/\/www.snopes.com\/photos\/military\/brutus.asp", "id" : 27516621731930112, - "in_reply_to_status_id" : 27502699058565120, "created_at" : "2011-01-19 00:04:08 +0000", - "in_reply_to_screen_name" : "sophistifunk", - "in_reply_to_user_id_str" : "14113080", "user" : { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", @@ -2832,7 +2809,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3335,7 +3312,7 @@ Grailbird.data.tweets_2011_01 = "screen_name" : "mxweas", "protected" : false, "id_str" : "9767742", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/820065047674134531\/GNXlclm7_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/901913116648370177\/oE0NxynA_normal.jpg", "id" : 9767742, "verified" : true } @@ -3501,7 +3478,7 @@ Grailbird.data.tweets_2011_01 = "screen_name" : "tloh", "protected" : false, "id_str" : "15181839", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/856369033930711040\/ZfNZBRzL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/901925700327825408\/QM7i0gFI_normal.jpg", "id" : 15181839, "verified" : false } @@ -4016,7 +3993,7 @@ Grailbird.data.tweets_2011_01 = "id_str" : "717313", "id" : 717313 }, { - "name" : "\uD83D\uDE37 \uD83C\uDF55", + "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 106, 114 ], "id_str" : "11375732", @@ -4038,7 +4015,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDE37 \uD83C\uDF55", + "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 89, 97 ], "id_str" : "11375732", @@ -4344,7 +4321,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 3, 15 ], "id_str" : "5905672", @@ -4393,11 +4370,11 @@ Grailbird.data.tweets_2011_01 = "id" : 24919228675002370, "created_at" : "2011-01-11 20:03:01 +0000", "user" : { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "protected" : false, "id_str" : "5905672", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/840236085993074688\/PKcAI7aw_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/910617333080637441\/IzIDqu_O_normal.jpg", "id" : 5905672, "verified" : true } @@ -4779,63 +4756,6 @@ Grailbird.data.tweets_2011_01 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "A. Robinson Gross", - "screen_name" : "argv0", - "indices" : [ 3, 9 ], - "id_str" : "6509982", - "id" : 6509982 - } ], - "media" : [ ], - "hashtags" : [ { - "text" : "nosql", - "indices" : [ 33, 39 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "24642759025491968", - "text" : "RT @argv0: Riak supports kill-9. #nosql", - "retweeted_status" : { - "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ { - "text" : "nosql", - "indices" : [ 22, 28 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "24570925143818240", - "text" : "Riak supports kill-9. #nosql", - "id" : 24570925143818240, - "created_at" : "2011-01-10 20:58:59 +0000", - "user" : { - "name" : "A. Robinson Gross", - "screen_name" : "argv0", - "protected" : false, - "id_str" : "6509982", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853303726118916097\/zaoLLw9n_normal.jpg", - "id" : 6509982, - "verified" : false - } - }, - "id" : 24642759025491968, - "created_at" : "2011-01-11 01:44:26 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { @@ -5072,7 +4992,7 @@ Grailbird.data.tweets_2011_01 = "id" : 23134561001021441, "created_at" : "2011-01-06 21:51:23 +0000", "user" : { - "name" : "Sebastiaan de With", + "name" : "Webastiaan the Sith", "screen_name" : "sdw", "protected" : false, "id_str" : "6503412", diff --git a/public/tweets/data/js/tweets/2011_02.js b/public/tweets/data/js/tweets/2011_02.js index 6f6b10c..4212a9a 100755 --- a/public/tweets/data/js/tweets/2011_02.js +++ b/public/tweets/data/js/tweets/2011_02.js @@ -60,7 +60,7 @@ Grailbird.data.tweets_2011_02 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 41, 52 ], "id_str" : "2911221", @@ -99,7 +99,7 @@ Grailbird.data.tweets_2011_02 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 10, 21 ], "id_str" : "2911221", @@ -451,7 +451,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "CL\u00A1NT", + "name" : "#CapreseBoyz", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -837,7 +837,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000226613002\/36623ae09f553713c575c97c77544b49_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", "id" : 29255412, "verified" : false } @@ -938,7 +938,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "TonyclementCPC", "protected" : false, "id_str" : "121483664", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853034159828291584\/xhpm84O2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917704967900876800\/eh1C4lHu_normal.jpg", "id" : 121483664, "verified" : true } @@ -1394,7 +1394,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 0, 11 ], "id_str" : "2911221", @@ -1745,7 +1745,7 @@ Grailbird.data.tweets_2011_02 = "id" : 36360340325269504, "created_at" : "2011-02-12 09:45:55 +0000", "user" : { - "name" : "Changelog", + "name" : "The Changelog", "screen_name" : "changelog", "protected" : false, "id_str" : "90286855", @@ -1820,7 +1820,7 @@ Grailbird.data.tweets_2011_02 = "id" : 36193656763322368, "created_at" : "2011-02-11 22:43:34 +0000", "user" : { - "name" : "Changelog", + "name" : "The Changelog", "screen_name" : "changelog", "protected" : false, "id_str" : "90286855", @@ -1977,7 +1977,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/823672050640416768\/T3Va_rMy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919096611019489280\/eF9MvfqL_normal.jpg", "id" : 658643, "verified" : true } @@ -2241,7 +2241,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -2305,7 +2305,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "CL\u00A1NT", + "name" : "#CapreseBoyz", "screen_name" : "CLINT", "indices" : [ 3, 9 ], "id_str" : "45993", @@ -2332,11 +2332,11 @@ Grailbird.data.tweets_2011_02 = "id" : 36117736358678528, "created_at" : "2011-02-11 17:41:54 +0000", "user" : { - "name" : "CL\u00A1NT", + "name" : "#CapreseBoyz", "screen_name" : "CLINT", "protected" : false, "id_str" : "45993", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845785658153160705\/slJqdSz9_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902292500412542979\/M2naV2vI_normal.jpg", "id" : 45993, "verified" : false } @@ -2773,7 +2773,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bryan Haggerty \uD83E\uDD37\u200D\u2642\uFE0F", + "name" : "Bryan Haggerty \uD83C\uDF2B", "screen_name" : "bhaggs", "indices" : [ 0, 7 ], "id_str" : "1692881", @@ -2863,7 +2863,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "robey", "protected" : false, "id_str" : "9213742", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/594908567712333824\/f74QfNF5_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917063061705416704\/Lqy9t-QS_normal.jpg", "id" : 9213742, "verified" : false } @@ -2977,7 +2977,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "virtual peripatetic", + "name" : "initial con offering", "screen_name" : "tilgovi", "indices" : [ 0, 8 ], "id_str" : "15258949", @@ -3038,7 +3038,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bryan Haggerty \uD83E\uDD37\u200D\u2642\uFE0F", + "name" : "Bryan Haggerty \uD83C\uDF2B", "screen_name" : "bhaggs", "indices" : [ 0, 7 ], "id_str" : "1692881", @@ -3071,7 +3071,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bryan Haggerty \uD83E\uDD37\u200D\u2642\uFE0F", + "name" : "Bryan Haggerty \uD83C\uDF2B", "screen_name" : "bhaggs", "indices" : [ 3, 10 ], "id_str" : "1692881", @@ -3115,11 +3115,11 @@ Grailbird.data.tweets_2011_02 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Bryan Haggerty \uD83E\uDD37\u200D\u2642\uFE0F", + "name" : "Bryan Haggerty \uD83C\uDF2B", "screen_name" : "bhaggs", "protected" : false, "id_str" : "1692881", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/676650169299931136\/gQrpCyjT_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/860006466450735105\/BRSd8p69_normal.jpg", "id" : 1692881, "verified" : false } @@ -3139,7 +3139,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "virtual peripatetic", + "name" : "initial con offering", "screen_name" : "tilgovi", "indices" : [ 1, 9 ], "id_str" : "15258949", @@ -3172,7 +3172,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "virtual peripatetic", + "name" : "initial con offering", "screen_name" : "tilgovi", "indices" : [ 3, 11 ], "id_str" : "15258949", @@ -3214,7 +3214,7 @@ Grailbird.data.tweets_2011_02 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "virtual peripatetic", + "name" : "initial con offering", "screen_name" : "tilgovi", "protected" : false, "id_str" : "15258949", @@ -3342,7 +3342,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "CL\u00A1NT", + "name" : "#CapreseBoyz", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -3371,69 +3371,6 @@ Grailbird.data.tweets_2011_02 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Alex Payne \uD83C\uDF39", - "screen_name" : "al3x", - "indices" : [ 3, 8 ], - "id_str" : "18713", - "id" : 18713 - }, { - "name" : "Basho Technologies", - "screen_name" : "basho", - "indices" : [ 31, 37 ], - "id_str" : "2440841", - "id" : 2440841 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "35134878131568640", - "text" : "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.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Basho Technologies", - "screen_name" : "basho", - "indices" : [ 21, 27 ], - "id_str" : "2440841", - "id" : 2440841 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "35116545873022976", - "text" : "Congrats to peeps at @basho on their round: http:\/\/bit.ly\/f5nwgK. Riak is about to be everyone's not-so-secret weapon.", - "id" : 35116545873022976, - "created_at" : "2011-02-08 23:23:31 +0000", - "user" : { - "name" : "Alex Payne \uD83C\uDF39", - "screen_name" : "al3x", - "protected" : false, - "id_str" : "18713", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/697959498711830528\/glceGyFI_normal.png", - "id" : 18713, - "verified" : false - } - }, - "id" : 35134878131568640, - "created_at" : "2011-02-09 00:36:22 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { @@ -3749,7 +3686,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "technomancy", "protected" : false, "id_str" : "6264792", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/529686521691918336\/06ejt2nQ_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/875758167778402304\/75JO4d_B_normal.png", "id" : 6264792, "verified" : false } @@ -4679,7 +4616,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "typeoneerror", "protected" : false, "id_str" : "11973362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/810629507728044032\/KC9N72d__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/872004130826362881\/9RRxQHYL_normal.jpg", "id" : 11973362, "verified" : false } @@ -4842,7 +4779,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 3, 14 ], "id_str" : "2911221", @@ -4869,7 +4806,7 @@ Grailbird.data.tweets_2011_02 = "id" : 32954689918074880, "created_at" : "2011-02-03 00:13:05 +0000", "user" : { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", diff --git a/public/tweets/data/js/tweets/2011_03.js b/public/tweets/data/js/tweets/2011_03.js index a25b8ab..9a20936 100755 --- a/public/tweets/data/js/tweets/2011_03.js +++ b/public/tweets/data/js/tweets/2011_03.js @@ -219,7 +219,7 @@ Grailbird.data.tweets_2011_03 = "screen_name" : "kpdecker", "protected" : false, "id_str" : "17259752", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/493401149907546112\/6lRSA1GQ_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/891289470141693956\/2GFSMKw1_normal.jpg", "id" : 17259752, "verified" : false } @@ -321,7 +321,7 @@ Grailbird.data.tweets_2011_03 = "screen_name" : "jonathanstark", "protected" : false, "id_str" : "7198302", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/848008404379553792\/tB8RS5r3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900181993299857408\/2tWkb4b8_normal.jpg", "id" : 7198302, "verified" : false } @@ -1694,7 +1694,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Shaun Ruigrok", + "name" : "Shaun \uD83C\uDD85\uD83C\uDD7E\uD83C\uDD83\uD83C\uDD74 \uD83C\uDD88\uD83C\uDD74\uD83C\uDD82 \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "Shaun_R", "indices" : [ 0, 8 ], "id_str" : "14365611", diff --git a/public/tweets/data/js/tweets/2011_04.js b/public/tweets/data/js/tweets/2011_04.js index df6777b..4ee0229 100755 --- a/public/tweets/data/js/tweets/2011_04.js +++ b/public/tweets/data/js/tweets/2011_04.js @@ -263,7 +263,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -300,11 +300,11 @@ Grailbird.data.tweets_2011_04 = "id" : 64425378097266688, "created_at" : "2011-04-30 20:26:21 +0000", "user" : { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/765345750427414529\/hxSFDEmc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917536371085950976\/MIuNwAAR_normal.png", "id" : 8038312, "verified" : true } @@ -976,7 +976,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "indices" : [ 0, 11 ], "id_str" : "14939200", @@ -1015,7 +1015,7 @@ Grailbird.data.tweets_2011_04 = "id_str" : "780561", "id" : 780561 }, { - "name" : "Sean Cribbs", + "name" : "Tales From the Cribb", "screen_name" : "seancribbs", "indices" : [ 14, 25 ], "id_str" : "14939200", @@ -2081,7 +2081,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Firefox \uD83E\uDD8A\uD83C\uDF0D", + "name" : "Firefox \uD83D\uDD25", "screen_name" : "firefox", "indices" : [ 3, 11 ], "id_str" : "2142731", @@ -2108,7 +2108,7 @@ Grailbird.data.tweets_2011_04 = "id" : 53853038066147329, "created_at" : "2011-04-01 16:15:39 +0000", "user" : { - "name" : "Firefox \uD83E\uDD8A\uD83C\uDF0D", + "name" : "Firefox \uD83D\uDD25", "screen_name" : "firefox", "protected" : false, "id_str" : "2142731", diff --git a/public/tweets/data/js/tweets/2011_05.js b/public/tweets/data/js/tweets/2011_05.js index 5aed53b..ad66235 100755 --- a/public/tweets/data/js/tweets/2011_05.js +++ b/public/tweets/data/js/tweets/2011_05.js @@ -671,7 +671,7 @@ Grailbird.data.tweets_2011_05 = "id_str" : "12599412", "id" : 12599412 }, { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 84, 96 ], "id_str" : "5905672", @@ -964,7 +964,7 @@ Grailbird.data.tweets_2011_05 = "screen_name" : "elliottkember", "protected" : false, "id_str" : "903351", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833789605405003778\/VdwaRcg1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/859955508760920064\/K69yZap8_normal.jpg", "id" : 903351, "verified" : true } @@ -1048,7 +1048,7 @@ Grailbird.data.tweets_2011_05 = "screen_name" : "bryanl", "protected" : false, "id_str" : "659933", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/842712305603395584\/RFLhcc2R_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915933811468390400\/e9ddfd-7_normal.jpg", "id" : 659933, "verified" : false } @@ -1591,57 +1591,6 @@ Grailbird.data.tweets_2011_05 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Benjamin Black Swan", - "screen_name" : "b6n", - "indices" : [ 3, 7 ], - "id_str" : "16031975", - "id" : 16031975 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "73107434562007041", - "text" : "RT @b6n: Early customers are as important as early hires. Recruit both carefully!", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "73107211563433984", - "text" : "Early customers are as important as early hires. Recruit both carefully!", - "id" : 73107211563433984, - "created_at" : "2011-05-24 19:24:52 +0000", - "user" : { - "name" : "Benjamin Black Swan", - "screen_name" : "b6n", - "protected" : false, - "id_str" : "16031975", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/743197627718635520\/3wBAwvyC_normal.jpg", - "id" : 16031975, - "verified" : false - } - }, - "id" : 73107434562007041, - "created_at" : "2011-05-24 19:25:45 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { @@ -2470,7 +2419,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -3736,7 +3685,7 @@ Grailbird.data.tweets_2011_05 = "id_str" : "143883", "id" : 143883 }, { - "name" : "Jeff Waugh", + "name" : "Jeff Waugh \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08\u270A\uD83C\uDFFB", "screen_name" : "jdub", "indices" : [ 69, 74 ], "id_str" : "4690301", @@ -3759,7 +3708,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeff Waugh", + "name" : "Jeff Waugh \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08\u270A\uD83C\uDFFB", "screen_name" : "jdub", "indices" : [ 56, 61 ], "id_str" : "4690301", @@ -3836,7 +3785,7 @@ Grailbird.data.tweets_2011_05 = "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/767372427026464768\/5Prq7opQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918433182906830848\/NwsKygmV_normal.jpg", "id" : 6927562, "verified" : true } @@ -4520,7 +4469,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 3, 14 ], "id_str" : "2911221", @@ -4547,7 +4496,7 @@ Grailbird.data.tweets_2011_05 = "id" : 67020587352064000, "created_at" : "2011-05-08 00:18:47 +0000", "user" : { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", @@ -5912,7 +5861,7 @@ Grailbird.data.tweets_2011_05 = "screen_name" : "vivsharma", "protected" : false, "id_str" : "14148574", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/846077313489895424\/s8ZbUo5L_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/868463877108924421\/5XzyfOO8_normal.jpg", "id" : 14148574, "verified" : false } diff --git a/public/tweets/data/js/tweets/2011_06.js b/public/tweets/data/js/tweets/2011_06.js index 280da24..b72980c 100755 --- a/public/tweets/data/js/tweets/2011_06.js +++ b/public/tweets/data/js/tweets/2011_06.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Phil", + "name" : "Philipp Fehre", "screen_name" : "ischi", "indices" : [ 0, 6 ], "id_str" : "12510462", @@ -36,7 +36,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Phil", + "name" : "Philipp Fehre", "screen_name" : "ischi", "indices" : [ 0, 6 ], "id_str" : "12510462", @@ -496,7 +496,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -982,7 +982,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -1867,7 +1867,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Francis \uD83D\uDC08 Gulotta", + "name" : "fix(wpa): lol", "screen_name" : "reconbot", "indices" : [ 4, 13 ], "id_str" : "14082200", @@ -2170,7 +2170,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -2197,11 +2197,11 @@ Grailbird.data.tweets_2011_06 = "id" : 77806627964723200, "created_at" : "2011-06-06 18:38:40 +0000", "user" : { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/765345750427414529\/hxSFDEmc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917536371085950976\/MIuNwAAR_normal.png", "id" : 8038312, "verified" : true } @@ -2486,7 +2486,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Appcelerator", + "name" : "Axway Appcelerator", "screen_name" : "appcelerator", "indices" : [ 0, 13 ], "id_str" : "9662352", @@ -2519,7 +2519,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Appcelerator", + "name" : "Axway Appcelerator", "screen_name" : "appcelerator", "indices" : [ 0, 13 ], "id_str" : "9662352", @@ -2558,7 +2558,7 @@ Grailbird.data.tweets_2011_06 = "id_str" : "25891747", "id" : 25891747 }, { - "name" : "Appcelerator", + "name" : "Axway Appcelerator", "screen_name" : "appcelerator", "indices" : [ 36, 49 ], "id_str" : "9662352", diff --git a/public/tweets/data/js/tweets/2011_07.js b/public/tweets/data/js/tweets/2011_07.js index bbca3f5..fb9dcfc 100755 --- a/public/tweets/data/js/tweets/2011_07.js +++ b/public/tweets/data/js/tweets/2011_07.js @@ -2473,7 +2473,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Firefox \uD83E\uDD8A\uD83C\uDF0D", + "name" : "Firefox \uD83D\uDD25", "screen_name" : "firefox", "indices" : [ 0, 8 ], "id_str" : "2142731", @@ -4293,7 +4293,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "123323498", "id" : 123323498 }, { - "name" : "Mike Sherov", + "name" : "Mi-ghoul Were-ov", "screen_name" : "mikesherov", "indices" : [ 25, 36 ], "id_str" : "4241651", @@ -4327,7 +4327,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "123323498", "id" : 123323498 }, { - "name" : "Mike Sherov", + "name" : "Mi-ghoul Were-ov", "screen_name" : "mikesherov", "indices" : [ 25, 36 ], "id_str" : "4241651", @@ -4388,7 +4388,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dustin Diaz", + "name" : "No I Diaz", "screen_name" : "ded", "indices" : [ 0, 4 ], "id_str" : "1199081", @@ -4829,7 +4829,7 @@ Grailbird.data.tweets_2011_07 = "screen_name" : "mislav", "protected" : false, "id_str" : "7516242", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/500395960648749056\/A6trldA8_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/860184226632802307\/GjiGS87W_normal.jpg", "id" : 7516242, "verified" : false } @@ -5702,7 +5702,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u26A1\uFE0F", + "name" : "\uD83C\uDF08", "screen_name" : "t", "indices" : [ 0, 2 ], "id_str" : "11628", @@ -5900,7 +5900,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -5937,7 +5937,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Honza Pokorn\u00FD", + "name" : "Honza Pokorn\u00FD \uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "_honza", "indices" : [ 0, 7 ], "id_str" : "15277447", @@ -6590,57 +6590,6 @@ Grailbird.data.tweets_2011_07 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Benjamin Black Swan", - "screen_name" : "b6n", - "indices" : [ 3, 7 ], - "id_str" : "16031975", - "id" : 16031975 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "89497363021971457", - "text" : "RT @b6n: For me, it's either false dichotomies or nothing at all.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "89497134390460416", - "text" : "For me, it's either false dichotomies or nothing at all.", - "id" : 89497134390460416, - "created_at" : "2011-07-09 00:52:34 +0000", - "user" : { - "name" : "Benjamin Black Swan", - "screen_name" : "b6n", - "protected" : false, - "id_str" : "16031975", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/743197627718635520\/3wBAwvyC_normal.jpg", - "id" : 16031975, - "verified" : false - } - }, - "id" : 89497363021971457, - "created_at" : "2011-07-09 00:53:28 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { @@ -7963,7 +7912,7 @@ Grailbird.data.tweets_2011_07 = "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000226613002\/36623ae09f553713c575c97c77544b49_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", "id" : 29255412, "verified" : false } @@ -8510,7 +8459,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 0, 4 ], "id_str" : "12712742", @@ -8667,7 +8616,7 @@ Grailbird.data.tweets_2011_07 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1282173124\/untitled-158-2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", "id" : 14231571, "verified" : true } diff --git a/public/tweets/data/js/tweets/2011_08.js b/public/tweets/data/js/tweets/2011_08.js index ecdedab..06369c7 100755 --- a/public/tweets/data/js/tweets/2011_08.js +++ b/public/tweets/data/js/tweets/2011_08.js @@ -140,7 +140,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -978,7 +978,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dustin Diaz", + "name" : "No I Diaz", "screen_name" : "ded", "indices" : [ 0, 4 ], "id_str" : "1199081", @@ -2288,7 +2288,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "angus\u2728", + "name" : "angus \u725B", "screen_name" : "angustweets", "indices" : [ 0, 12 ], "id_str" : "140108433", @@ -2327,7 +2327,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "angus\u2728", + "name" : "angus \u725B", "screen_name" : "angustweets", "indices" : [ 0, 12 ], "id_str" : "140108433", @@ -2366,7 +2366,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "angus\u2728", + "name" : "angus \u725B", "screen_name" : "angustweets", "indices" : [ 0, 12 ], "id_str" : "140108433", @@ -2405,7 +2405,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "angus\u2728", + "name" : "angus \u725B", "screen_name" : "angustweets", "indices" : [ 14, 26 ], "id_str" : "140108433", @@ -2439,7 +2439,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "angus\u2728", + "name" : "angus \u725B", "screen_name" : "angustweets", "indices" : [ 14, 26 ], "id_str" : "140108433", @@ -3860,7 +3860,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "38654173", "id" : 38654173 }, { - "name" : "angus\u2728", + "name" : "angus \u725B", "screen_name" : "angustweets", "indices" : [ 15, 27 ], "id_str" : "140108433", @@ -4166,6 +4166,67 @@ Grailbird.data.tweets_2011_08 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Jorge Ortiz", + "screen_name" : "jorgeortiz85", + "indices" : [ 3, 16 ], + "id_str" : "377457203", + "id" : 377457203 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 100, 119 ], + "url" : "http:\/\/t.co\/8nTohj8", + "expanded_url" : "http:\/\/cl.ly\/463e3h2C1z3R262L3f22\/Screen_shot_2011-08-08_at_11.38.44_PM.png", + "display_url" : "cl.ly\/463e3h2C1z3R26\u2026" + } ] + }, + "geo" : { }, + "id_str" : "100777945953599489", + "text" : "RT @jorgeortiz85: It's <strike>turtles<\/strike> services hosted on EC2 all the way down http:\/\/t.co\/8nTohj8", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 82, 101 ], + "url" : "http:\/\/t.co\/8nTohj8", + "expanded_url" : "http:\/\/cl.ly\/463e3h2C1z3R262L3f22\/Screen_shot_2011-08-08_at_11.38.44_PM.png", + "display_url" : "cl.ly\/463e3h2C1z3R26\u2026" + } ] + }, + "geo" : { }, + "id_str" : "100773381242228736", + "text" : "It's <strike>turtles<\/strike> services hosted on EC2 all the way down http:\/\/t.co\/8nTohj8", + "id" : 100773381242228736, + "created_at" : "2011-08-09 03:40:21 +0000", + "user" : { + "name" : "Jorge Ortiz", + "screen_name" : "JorgeO", + "protected" : false, + "id_str" : "6001592", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/424299959702134784\/omwnQaUp_normal.jpeg", + "id" : 6001592, + "verified" : false + } + }, + "id" : 100777945953599489, + "created_at" : "2011-08-09 03:58:29 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { @@ -4376,7 +4437,7 @@ Grailbird.data.tweets_2011_08 = "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000226613002\/36623ae09f553713c575c97c77544b49_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", "id" : 29255412, "verified" : false } @@ -4913,7 +4974,7 @@ Grailbird.data.tweets_2011_08 = "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/767372427026464768\/5Prq7opQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918433182906830848\/NwsKygmV_normal.jpg", "id" : 6927562, "verified" : true } @@ -5406,7 +5467,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 3, 7 ], "id_str" : "12712742", @@ -5450,11 +5511,11 @@ Grailbird.data.tweets_2011_08 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "protected" : false, "id_str" : "12712742", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/850471004262383616\/4bWS5-E7_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/880992273101578240\/ib3GlMDp_normal.jpg", "id" : 12712742, "verified" : false } diff --git a/public/tweets/data/js/tweets/2011_09.js b/public/tweets/data/js/tweets/2011_09.js index 40ee32f..c2db18f 100755 --- a/public/tweets/data/js/tweets/2011_09.js +++ b/public/tweets/data/js/tweets/2011_09.js @@ -75,7 +75,7 @@ Grailbird.data.tweets_2011_09 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Phil", + "name" : "Philipp Fehre", "screen_name" : "ischi", "indices" : [ 0, 6 ], "id_str" : "12510462", @@ -108,7 +108,7 @@ Grailbird.data.tweets_2011_09 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Phil", + "name" : "Philipp Fehre", "screen_name" : "ischi", "indices" : [ 0, 6 ], "id_str" : "12510462", @@ -147,7 +147,7 @@ Grailbird.data.tweets_2011_09 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Phil", + "name" : "Philipp Fehre", "screen_name" : "ischi", "indices" : [ 0, 6 ], "id_str" : "12510462", diff --git a/public/tweets/data/js/tweets/2011_11.js b/public/tweets/data/js/tweets/2011_11.js index cd34b48..817e58d 100755 --- a/public/tweets/data/js/tweets/2011_11.js +++ b/public/tweets/data/js/tweets/2011_11.js @@ -189,7 +189,7 @@ Grailbird.data.tweets_2011_11 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -977,7 +977,7 @@ Grailbird.data.tweets_2011_11 = "screen_name" : "subdigital", "protected" : false, "id_str" : "14133001", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/742366452292820992\/FAxQ8oKo_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/894993172899794946\/xN3x53MV_normal.jpg", "id" : 14133001, "verified" : false } @@ -1263,7 +1263,7 @@ Grailbird.data.tweets_2011_11 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/721536199681318912\/rflwVOZ8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", "id" : 15540222, "verified" : true } @@ -1726,7 +1726,7 @@ Grailbird.data.tweets_2011_11 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1282173124\/untitled-158-2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", "id" : 14231571, "verified" : true } diff --git a/public/tweets/data/js/tweets/2011_12.js b/public/tweets/data/js/tweets/2011_12.js index 923afb4..887c61b 100755 --- a/public/tweets/data/js/tweets/2011_12.js +++ b/public/tweets/data/js/tweets/2011_12.js @@ -135,7 +135,7 @@ Grailbird.data.tweets_2011_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ghost prison", + "name" : "annika backstrom", "screen_name" : "abackstrom", "indices" : [ 3, 14 ], "id_str" : "3621751", @@ -172,11 +172,11 @@ Grailbird.data.tweets_2011_12 = "id" : 151504628784185344, "created_at" : "2011-12-27 03:28:12 +0000", "user" : { - "name" : "ghost prison", + "name" : "annika backstrom", "screen_name" : "abackstrom", "protected" : false, "id_str" : "3621751", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/616532569056784384\/wn2ggTfA_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918671102427193344\/fEBI8wyY_normal.jpg", "id" : 3621751, "verified" : false } @@ -288,7 +288,7 @@ Grailbird.data.tweets_2011_12 = "screen_name" : "rands", "protected" : false, "id_str" : "30923", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/823630828995346432\/OsEvhRyK_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/879352807228399621\/qtcNEE0n_normal.jpg", "id" : 30923, "verified" : true } @@ -780,14 +780,6 @@ Grailbird.data.tweets_2011_12 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 - }, { - "h" : 800, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", @@ -796,6 +788,14 @@ Grailbird.data.tweets_2011_12 = "h" : 1024, "resize" : "fit", "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 } ], "display_url" : "pic.twitter.com\/4PV3JzWG" } ], @@ -1127,7 +1127,7 @@ Grailbird.data.tweets_2011_12 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Se\u00F1or Yak Shaver\uD83C\uDDF3\uD83C\uDDF1", + "name" : "Tane Piper", "screen_name" : "tanepiper", "indices" : [ 0, 10 ], "id_str" : "20693", diff --git a/public/tweets/data/js/tweets/2012_01.js b/public/tweets/data/js/tweets/2012_01.js index a723ec3..d9579b0 100755 --- a/public/tweets/data/js/tweets/2012_01.js +++ b/public/tweets/data/js/tweets/2012_01.js @@ -502,7 +502,7 @@ Grailbird.data.tweets_2012_01 = "screen_name" : "maccaw", "protected" : false, "id_str" : "2006261", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/658880981017882629\/nlXSOJnc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918603761861328896\/MSXrAULz_normal.jpg", "id" : 2006261, "verified" : true } @@ -585,7 +585,7 @@ Grailbird.data.tweets_2012_01 = "screen_name" : "ncb000gt", "protected" : false, "id_str" : "7955612", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/643100379786399744\/E9fpajCW_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/901171578121199617\/zb2V4iuS_normal.jpg", "id" : 7955612, "verified" : false } @@ -808,9 +808,9 @@ Grailbird.data.tweets_2012_01 = "id" : 162711201439170560, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AkIQ-cLCQAAeClF.jpg", "sizes" : [ { - "h" : 900, + "h" : 960, "resize" : "fit", - "w" : 600 + "w" : 640 }, { "h" : 150, "resize" : "crop", @@ -820,9 +820,9 @@ Grailbird.data.tweets_2012_01 = "resize" : "fit", "w" : 640 }, { - "h" : 510, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 453 }, { "h" : 960, "resize" : "fit", @@ -858,9 +858,9 @@ Grailbird.data.tweets_2012_01 = "id" : 162711201439170560, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AkIQ-cLCQAAeClF.jpg", "sizes" : [ { - "h" : 900, + "h" : 960, "resize" : "fit", - "w" : 600 + "w" : 640 }, { "h" : 150, "resize" : "crop", @@ -870,9 +870,9 @@ Grailbird.data.tweets_2012_01 = "resize" : "fit", "w" : 640 }, { - "h" : 510, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 453 }, { "h" : 960, "resize" : "fit", @@ -947,7 +947,7 @@ Grailbird.data.tweets_2012_01 = "screen_name" : "elliottkember", "protected" : false, "id_str" : "903351", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833789605405003778\/VdwaRcg1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/859955508760920064\/K69yZap8_normal.jpg", "id" : 903351, "verified" : true } @@ -1360,7 +1360,7 @@ Grailbird.data.tweets_2012_01 = "screen_name" : "jtaby", "protected" : false, "id_str" : "6827332", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/742155652475195393\/GQbfg9kw_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/907411980025159680\/svWX9ihx_normal.jpg", "id" : 6827332, "verified" : false } @@ -1433,7 +1433,7 @@ Grailbird.data.tweets_2012_01 = "screen_name" : "jonathanstark", "protected" : false, "id_str" : "7198302", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/848008404379553792\/tB8RS5r3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900181993299857408\/2tWkb4b8_normal.jpg", "id" : 7198302, "verified" : false } @@ -2487,7 +2487,7 @@ Grailbird.data.tweets_2012_01 = "screen_name" : "jonathanstark", "protected" : false, "id_str" : "7198302", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/848008404379553792\/tB8RS5r3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900181993299857408\/2tWkb4b8_normal.jpg", "id" : 7198302, "verified" : false } @@ -2621,8 +2621,8 @@ Grailbird.data.tweets_2012_01 = "name" : "Scott Wasserman", "screen_name" : "applehockey", "indices" : [ 3, 15 ], - "id_str" : "16593246", - "id" : 16593246 + "id_str" : "872635814580244482", + "id" : 872635814580244482 } ], "media" : [ ], "hashtags" : [ ], @@ -2652,7 +2652,7 @@ Grailbird.data.tweets_2012_01 = "created_at" : "2012-01-08 00:28:09 +0000", "user" : { "name" : "Scott Wasserman", - "screen_name" : "applehockey", + "screen_name" : "scottwass", "protected" : false, "id_str" : "16593246", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/558175337251491841\/P0CevFY1_normal.jpeg", @@ -2761,13 +2761,9 @@ Grailbird.data.tweets_2012_01 = "id" : 154012981791956994, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AiMp_a6CIAIpr15.jpg", "sizes" : [ { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 + "w" : 1024 }, { "h" : 768, "resize" : "fit", @@ -2780,6 +2776,10 @@ Grailbird.data.tweets_2012_01 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/w73DauuE" } ], diff --git a/public/tweets/data/js/tweets/2012_02.js b/public/tweets/data/js/tweets/2012_02.js index e27e2bf..430b467 100755 --- a/public/tweets/data/js/tweets/2012_02.js +++ b/public/tweets/data/js/tweets/2012_02.js @@ -1106,14 +1106,6 @@ Grailbird.data.tweets_2012_02 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 - }, { - "h" : 800, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", @@ -1122,6 +1114,14 @@ Grailbird.data.tweets_2012_02 = "h" : 1024, "resize" : "fit", "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 } ], "display_url" : "pic.twitter.com\/7hQAZJOw" } ], @@ -2053,7 +2053,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83E\uDD43 David Chartier \uD83E\uDD43", + "name" : "David Chartier \uD83E\uDD43", "screen_name" : "chartier", "indices" : [ 3, 12 ], "id_str" : "35383", @@ -2090,11 +2090,11 @@ Grailbird.data.tweets_2012_02 = "id" : 165497489552707585, "created_at" : "2012-02-03 18:10:50 +0000", "user" : { - "name" : "\uD83E\uDD43 David Chartier \uD83E\uDD43", + "name" : "David Chartier \uD83E\uDD43", "screen_name" : "chartier", "protected" : false, "id_str" : "35383", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849983799437910016\/jDoDAZzg_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918141338088083456\/YvQvZSKt_normal.jpg", "id" : 35383, "verified" : true } @@ -2155,7 +2155,7 @@ Grailbird.data.tweets_2012_02 = "screen_name" : "typeoneerror", "protected" : false, "id_str" : "11973362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/810629507728044032\/KC9N72d__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/872004130826362881\/9RRxQHYL_normal.jpg", "id" : 11973362, "verified" : false } @@ -2279,7 +2279,7 @@ Grailbird.data.tweets_2012_02 = "screen_name" : "adamstac", "protected" : false, "id_str" : "816954", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2691433309\/c6b807d4c05e097931a482358fc10dfd_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/863265661203697664\/3pwwJO2e_normal.jpg", "id" : 816954, "verified" : false } @@ -2358,7 +2358,7 @@ Grailbird.data.tweets_2012_02 = "screen_name" : "0x00A", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/843963093864603648\/zTr2gD8t_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/895001508349128704\/gFxzeC4L_normal.jpg", "id" : 95938827, "verified" : false } @@ -2644,7 +2644,7 @@ Grailbird.data.tweets_2012_02 = "screen_name" : "maccaw", "protected" : false, "id_str" : "2006261", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/658880981017882629\/nlXSOJnc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918603761861328896\/MSXrAULz_normal.jpg", "id" : 2006261, "verified" : true } diff --git a/public/tweets/data/js/tweets/2012_03.js b/public/tweets/data/js/tweets/2012_03.js index 60582e4..5600091 100755 --- a/public/tweets/data/js/tweets/2012_03.js +++ b/public/tweets/data/js/tweets/2012_03.js @@ -150,7 +150,7 @@ Grailbird.data.tweets_2012_03 = "screen_name" : "wycats", "protected" : false, "id_str" : "8526432", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3250074047\/46d910af94e25187832cb4a3bc84b2b5_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/861010112852262912\/nbPZKMyR_normal.jpg", "id" : 8526432, "verified" : true } @@ -601,14 +601,6 @@ Grailbird.data.tweets_2012_03 = "id" : 184063839778770944, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Ao3tFkoCEAAIspk.jpg", "sizes" : [ { - "h" : 255, - "resize" : "fit", - "w" : 340 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -620,6 +612,14 @@ Grailbird.data.tweets_2012_03 = "h" : 612, "resize" : "fit", "w" : 816 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 612, + "resize" : "fit", + "w" : 816 } ], "display_url" : "pic.twitter.com\/Qdt5PsD4" } ], @@ -717,9 +717,9 @@ Grailbird.data.tweets_2012_03 = "resize" : "fit", "w" : 484 }, { - "h" : 455, + "h" : 648, "resize" : "fit", - "w" : 340 + "w" : 484 }, { "h" : 150, "resize" : "crop", @@ -1685,7 +1685,7 @@ Grailbird.data.tweets_2012_03 = "screen_name" : "maccaw", "protected" : false, "id_str" : "2006261", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/658880981017882629\/nlXSOJnc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918603761861328896\/MSXrAULz_normal.jpg", "id" : 2006261, "verified" : true } diff --git a/public/tweets/data/js/tweets/2012_04.js b/public/tweets/data/js/tweets/2012_04.js index b103ddd..5fb7ce6 100755 --- a/public/tweets/data/js/tweets/2012_04.js +++ b/public/tweets/data/js/tweets/2012_04.js @@ -34,7 +34,7 @@ Grailbird.data.tweets_2012_04 = "screen_name" : "garrytan", "protected" : false, "id_str" : "11768582", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/787866091884310528\/DESXuJnX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/882725533817110528\/IPUzEKdT_normal.jpg", "id" : 11768582, "verified" : false } @@ -275,7 +275,7 @@ Grailbird.data.tweets_2012_04 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1282173124\/untitled-158-2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", "id" : 14231571, "verified" : true } @@ -660,7 +660,7 @@ Grailbird.data.tweets_2012_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Coda Hale", + "name" : "Coda Hell", "screen_name" : "coda", "indices" : [ 3, 8 ], "id_str" : "637533", @@ -687,7 +687,7 @@ Grailbird.data.tweets_2012_04 = "id" : 194509470561349632, "created_at" : "2012-04-23 19:34:06 +0000", "user" : { - "name" : "Coda Hale", + "name" : "Coda Hell", "screen_name" : "coda", "protected" : false, "id_str" : "637533", @@ -1299,7 +1299,7 @@ Grailbird.data.tweets_2012_04 = "id_str" : "18137723", "id" : 18137723 }, { - "name" : "Amy Hoy", + "name" : "Ghost Ships A Hoy \uD83D\uDC7B", "screen_name" : "amyhoy", "indices" : [ 11, 18 ], "id_str" : "627213", @@ -1488,7 +1488,7 @@ Grailbird.data.tweets_2012_04 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } diff --git a/public/tweets/data/js/tweets/2012_05.js b/public/tweets/data/js/tweets/2012_05.js index 7035e7e..c48655d 100755 --- a/public/tweets/data/js/tweets/2012_05.js +++ b/public/tweets/data/js/tweets/2012_05.js @@ -194,7 +194,7 @@ Grailbird.data.tweets_2012_05 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/850626294702252032\/cXCQ0vVd_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865667126408773632\/QX5O6RhU_normal.jpg", "id" : 14273142, "verified" : false } @@ -958,7 +958,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -1067,7 +1067,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "33423", "id" : 33423 }, { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 60, 72 ], "id_str" : "5905672", @@ -1275,7 +1275,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Zeldman", + "name" : "Zeldmonster", "screen_name" : "zeldman", "indices" : [ 72, 80 ], "id_str" : "61133", @@ -1297,7 +1297,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zeldman", + "name" : "Zeldmonster", "screen_name" : "zeldman", "indices" : [ 58, 66 ], "id_str" : "61133", @@ -2445,7 +2445,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "CL\u00A1NT", + "name" : "#CapreseBoyz", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -2484,7 +2484,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "CL\u00A1NT", + "name" : "#CapreseBoyz", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -2578,7 +2578,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u00D8lvaro Videla", + "name" : "Alvaro Videla", "screen_name" : "old_sound", "indices" : [ 0, 10 ], "id_str" : "16484216", @@ -2851,7 +2851,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "kyle pulver", + "name" : "kyle pulver \u2605", "screen_name" : "kylepulver", "indices" : [ 3, 14 ], "id_str" : "50850314", @@ -2878,11 +2878,11 @@ Grailbird.data.tweets_2012_05 = "id" : 199405059694542848, "created_at" : "2012-05-07 07:47:25 +0000", "user" : { - "name" : "kyle pulver", + "name" : "kyle pulver \u2605", "screen_name" : "kylepulver", "protected" : false, "id_str" : "50850314", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/835625796978917376\/nP79gFOj_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/868579335749328896\/ZXa2TKGN_normal.jpg", "id" : 50850314, "verified" : false } @@ -2983,7 +2983,7 @@ Grailbird.data.tweets_2012_05 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -3132,9 +3132,9 @@ Grailbird.data.tweets_2012_05 = "resize" : "crop", "w" : 150 }, { - "h" : 278, + "h" : 376, "resize" : "fit", - "w" : 340 + "w" : 460 } ], "display_url" : "pic.twitter.com\/c89GalNg" } ], @@ -3173,9 +3173,9 @@ Grailbird.data.tweets_2012_05 = "resize" : "crop", "w" : 150 }, { - "h" : 278, + "h" : 376, "resize" : "fit", - "w" : 340 + "w" : 460 } ], "display_url" : "pic.twitter.com\/c89GalNg" } ], @@ -3192,7 +3192,7 @@ Grailbird.data.tweets_2012_05 = "screen_name" : "MattBloomFilms", "protected" : false, "id_str" : "32591490", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/851718678278275072\/VAdZ3PAK_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/891364268809039872\/MyOuPVVh_normal.jpg", "id" : 32591490, "verified" : false } @@ -3290,7 +3290,7 @@ Grailbird.data.tweets_2012_05 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -3323,7 +3323,7 @@ Grailbird.data.tweets_2012_05 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -3383,9 +3383,9 @@ Grailbird.data.tweets_2012_05 = "id" : 198456762859388928, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AsEPX9WCAAAV3Sc.jpg", "sizes" : [ { - "h" : 194, + "h" : 272, "resize" : "fit", - "w" : 340 + "w" : 477 }, { "h" : 272, "resize" : "fit", @@ -3436,9 +3436,9 @@ Grailbird.data.tweets_2012_05 = "id" : 198456762859388928, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AsEPX9WCAAAV3Sc.jpg", "sizes" : [ { - "h" : 194, + "h" : 272, "resize" : "fit", - "w" : 340 + "w" : 477 }, { "h" : 272, "resize" : "fit", @@ -3869,7 +3869,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ryan Florence \uD83D\uDC4D\uD83C\uDFFC", + "name" : "Ryan Florence", "screen_name" : "ryanflorence", "indices" : [ 0, 13 ], "id_str" : "16468446", @@ -3917,25 +3917,25 @@ Grailbird.data.tweets_2012_05 = "id" : 197556304447930369, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Ar3caYXCAAEhaYY.png", "sizes" : [ { - "h" : 768, + "h" : 1536, "resize" : "fit", - "w" : 1024 + "w" : 2048 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 1536, "resize" : "fit", "w" : 2048 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/VKgFL2M1" } ], diff --git a/public/tweets/data/js/tweets/2012_06.js b/public/tweets/data/js/tweets/2012_06.js index a8cc1bb..98ac4a9 100755 --- a/public/tweets/data/js/tweets/2012_06.js +++ b/public/tweets/data/js/tweets/2012_06.js @@ -161,7 +161,7 @@ Grailbird.data.tweets_2012_06 = "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000226613002\/36623ae09f553713c575c97c77544b49_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", "id" : 29255412, "verified" : false } @@ -214,7 +214,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kevin Cheng", + "name" : "\uD835\uDDAA\uD835\uDDA4\uD835\uDDB5\/\uD835\uDDAD\uD835\uDDB4\uD835\uDDAB\uD835\uDDAB", "screen_name" : "k", "indices" : [ 0, 2 ], "id_str" : "11222", @@ -347,7 +347,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "angus\u2728", + "name" : "angus \u725B", "screen_name" : "angustweets", "indices" : [ 3, 15 ], "id_str" : "140108433", @@ -374,7 +374,7 @@ Grailbird.data.tweets_2012_06 = "id" : 215827498716495872, "created_at" : "2012-06-21 15:24:20 +0000", "user" : { - "name" : "angus\u2728", + "name" : "angus \u725B", "screen_name" : "angustweets", "protected" : false, "id_str" : "140108433", @@ -648,7 +648,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Anil Dash", + "name" : "Spooky Anil Dash \uD83C\uDF83", "screen_name" : "anildash", "indices" : [ 0, 9 ], "id_str" : "36823", @@ -957,7 +957,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "iter::repeat(\uD83C\uDF55)", + "name" : "shitpost muse", "screen_name" : "steveklabnik", "indices" : [ 3, 16 ], "id_str" : "22386062", @@ -1000,11 +1000,11 @@ Grailbird.data.tweets_2012_06 = "id" : 212981330538020864, "created_at" : "2012-06-13 18:54:40 +0000", "user" : { - "name" : "iter::repeat(\uD83C\uDF55)", + "name" : "shitpost muse", "screen_name" : "steveklabnik", "protected" : false, "id_str" : "22386062", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/823250945572159488\/a3Zj5KjL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/906224108547002368\/31Zsh018_normal.jpg", "id" : 22386062, "verified" : false } @@ -1024,7 +1024,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -1051,11 +1051,11 @@ Grailbird.data.tweets_2012_06 = "id" : 212974378755964929, "created_at" : "2012-06-13 18:27:03 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -1130,7 +1130,7 @@ Grailbird.data.tweets_2012_06 = "id_str" : "15608761", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/688389064865648640\/ruegJvlb_normal.jpg", "id" : 15608761, - "verified" : false + "verified" : true } }, "id" : 212895503459942403, @@ -2257,7 +2257,7 @@ Grailbird.data.tweets_2012_06 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1282173124\/untitled-158-2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", "id" : 14231571, "verified" : true } @@ -2419,7 +2419,7 @@ Grailbird.data.tweets_2012_06 = "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/823672050640416768\/T3Va_rMy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919096611019489280\/eF9MvfqL_normal.jpg", "id" : 658643, "verified" : true } @@ -2525,7 +2525,7 @@ Grailbird.data.tweets_2012_06 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1282173124\/untitled-158-2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", "id" : 14231571, "verified" : true } diff --git a/public/tweets/data/js/tweets/2012_07.js b/public/tweets/data/js/tweets/2012_07.js index 4bd4f44..fc6740b 100755 --- a/public/tweets/data/js/tweets/2012_07.js +++ b/public/tweets/data/js/tweets/2012_07.js @@ -83,7 +83,7 @@ Grailbird.data.tweets_2012_07 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/850626294702252032\/cXCQ0vVd_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865667126408773632\/QX5O6RhU_normal.jpg", "id" : 14273142, "verified" : false } @@ -223,9 +223,9 @@ Grailbird.data.tweets_2012_07 = "id" : 228150232372871168, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AyqNbXQCAAAq8SA.png", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 900 }, { "h" : 2048, "resize" : "fit", @@ -235,13 +235,13 @@ Grailbird.data.tweets_2012_07 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 510 }, { - "h" : 453, + "h" : 2048, "resize" : "fit", - "w" : 340 + "w" : 1536 } ], "display_url" : "pic.twitter.com\/ZvurHzji" } ], @@ -573,7 +573,7 @@ Grailbird.data.tweets_2012_07 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -726,14 +726,6 @@ Grailbird.data.tweets_2012_07 = "id" : 222829875113893888, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Axemlz-CIAADJdl.jpg", "sizes" : [ { - "h" : 255, - "resize" : "fit", - "w" : 340 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -745,6 +737,14 @@ Grailbird.data.tweets_2012_07 = "h" : 612, "resize" : "fit", "w" : 816 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 612, + "resize" : "fit", + "w" : 816 } ], "display_url" : "pic.twitter.com\/yhSRZET4" } ], @@ -767,14 +767,6 @@ Grailbird.data.tweets_2012_07 = "id" : 222829875113893888, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Axemlz-CIAADJdl.jpg", "sizes" : [ { - "h" : 255, - "resize" : "fit", - "w" : 340 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -786,6 +778,14 @@ Grailbird.data.tweets_2012_07 = "h" : 612, "resize" : "fit", "w" : 816 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 612, + "resize" : "fit", + "w" : 816 } ], "display_url" : "pic.twitter.com\/yhSRZET4" } ], @@ -869,62 +869,11 @@ Grailbird.data.tweets_2012_07 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Graham Linehan", - "screen_name" : "Glinner", - "indices" : [ 3, 11 ], - "id_str" : "7076492", - "id" : 7076492 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "222924618497916928", - "text" : "RT @Glinner: \u201CI\u2019d LOVE to download your app instead of going to the webpage I just tried to visit!\u201D\u2014 No-one, ever. No-one in the future ...", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "222779724567547904", - "text" : "\u201CI\u2019d LOVE to download your app instead of going to the webpage I just tried to visit!\u201D\u2014 No-one, ever. No-one in the future either.", - "id" : 222779724567547904, - "created_at" : "2012-07-10 19:50:00 +0000", - "user" : { - "name" : "Graham Linehan", - "screen_name" : "Glinner", - "protected" : false, - "id_str" : "7076492", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/433543395974205440\/e1vZ6x9u_normal.jpeg", - "id" : 7076492, - "verified" : true - } - }, - "id" : 222924618497916928, - "created_at" : "2012-07-11 05:25:45 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 113, 125 ], "id_str" : "5905672", diff --git a/public/tweets/data/js/tweets/2012_08.js b/public/tweets/data/js/tweets/2012_08.js index 51f93eb..9a33bdb 100755 --- a/public/tweets/data/js/tweets/2012_08.js +++ b/public/tweets/data/js/tweets/2012_08.js @@ -365,7 +365,7 @@ Grailbird.data.tweets_2012_08 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -487,9 +487,9 @@ Grailbird.data.tweets_2012_08 = "resize" : "fit", "w" : 570 }, { - "h" : 44, + "h" : 73, "resize" : "fit", - "w" : 340 + "w" : 570 }, { "h" : 73, "resize" : "fit", diff --git a/public/tweets/data/js/tweets/2012_09.js b/public/tweets/data/js/tweets/2012_09.js index ca53170..0f5b939 100755 --- a/public/tweets/data/js/tweets/2012_09.js +++ b/public/tweets/data/js/tweets/2012_09.js @@ -1024,9 +1024,9 @@ Grailbird.data.tweets_2012_09 = "id" : 245906155539419136, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/A2miWHkCUAAa25m.jpg", "sizes" : [ { - "h" : 900, + "h" : 960, "resize" : "fit", - "w" : 600 + "w" : 640 }, { "h" : 150, "resize" : "crop", @@ -1036,9 +1036,9 @@ Grailbird.data.tweets_2012_09 = "resize" : "fit", "w" : 640 }, { - "h" : 510, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 453 }, { "h" : 960, "resize" : "fit", @@ -1100,7 +1100,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Amazon", + "name" : "Amazon.com", "screen_name" : "amazon", "indices" : [ 48, 55 ], "id_str" : "20793816", @@ -1210,13 +1210,9 @@ Grailbird.data.tweets_2012_09 = "id" : 243538985933217792, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/A2E5atmCIAAi5t6.jpg", "sizes" : [ { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 + "w" : 1024 }, { "h" : 768, "resize" : "fit", @@ -1229,6 +1225,10 @@ Grailbird.data.tweets_2012_09 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/1YKFB7Ow" } ], diff --git a/public/tweets/data/js/tweets/2012_10.js b/public/tweets/data/js/tweets/2012_10.js index d3e6ca4..76a1251 100755 --- a/public/tweets/data/js/tweets/2012_10.js +++ b/public/tweets/data/js/tweets/2012_10.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2012_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "THE VOID", + "name" : "hostname amy.tobey", "screen_name" : "AlTobey", "indices" : [ 3, 11 ], "id_str" : "146248951", @@ -30,11 +30,11 @@ Grailbird.data.tweets_2012_10 = "id" : 263771862125928448, "created_at" : "2012-10-31 22:38:07 +0000", "user" : { - "name" : "THE VOID", + "name" : "hostname amy.tobey", "screen_name" : "AlTobey", "protected" : false, "id_str" : "146248951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/773337188171780096\/caFkUAIq_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/891367683022663680\/-lIUG_Yp_normal.jpg", "id" : 146248951, "verified" : false } @@ -342,7 +342,7 @@ Grailbird.data.tweets_2012_10 = "screen_name" : "the_webhamster", "protected" : false, "id_str" : "207536489", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/837475358060457984\/CCrtsL11_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/899693781896835074\/_QwFQfN-_normal.jpg", "id" : 207536489, "verified" : false } diff --git a/public/tweets/data/js/tweets/2012_12.js b/public/tweets/data/js/tweets/2012_12.js index aef1bac..30e5ee0 100755 --- a/public/tweets/data/js/tweets/2012_12.js +++ b/public/tweets/data/js/tweets/2012_12.js @@ -306,7 +306,7 @@ Grailbird.data.tweets_2012_12 = "id_str" : "14231571", "id" : 14231571 }, { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 13, 25 ], "id_str" : "5905672", @@ -381,7 +381,7 @@ Grailbird.data.tweets_2012_12 = "id_str" : "372982253", "id" : 372982253 }, { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 66, 78 ], "id_str" : "5905672", diff --git a/public/tweets/data/js/tweets/2013_01.js b/public/tweets/data/js/tweets/2013_01.js index 8837a63..8b4b5be 100755 --- a/public/tweets/data/js/tweets/2013_01.js +++ b/public/tweets/data/js/tweets/2013_01.js @@ -149,7 +149,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kent Fenwick", + "name" : "Kent Fenwick \uD83D\uDCC8", "screen_name" : "kentf", "indices" : [ 0, 6 ], "id_str" : "14356633", @@ -1359,7 +1359,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "834501828620537856", "id" : 834501828620537856 }, { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 68, 72 ], "id_str" : "8038312", @@ -1376,7 +1376,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 52, 56 ], "id_str" : "8038312", @@ -1392,11 +1392,11 @@ Grailbird.data.tweets_2013_01 = "id" : 294851428722282496, "created_at" : "2013-01-25 16:57:13 +0000", "user" : { - "name" : "\u2728computer whisperer\u2728", + "name" : "the spectre of bread", "screen_name" : "edefic", "protected" : false, "id_str" : "15734539", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/798567998982275072\/OZjWI4p6_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865238387707584512\/wEcqxL5i_normal.jpg", "id" : 15734539, "verified" : false } @@ -2111,7 +2111,7 @@ Grailbird.data.tweets_2013_01 = "screen_name" : "littlecalculist", "protected" : false, "id_str" : "104245499", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1229650863\/twitter-profile_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917612132002283520\/6DxhJzV6_normal.jpg", "id" : 104245499, "verified" : false } @@ -2179,9 +2179,13 @@ Grailbird.data.tweets_2013_01 = "id" : 293041571732008960, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BBEXwcOCMAAI4yp.jpg", "sizes" : [ { - "h" : 214, + "h" : 243, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 307, + "resize" : "fit", + "w" : 860 }, { "h" : 307, "resize" : "fit", @@ -2190,10 +2194,6 @@ Grailbird.data.tweets_2013_01 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 121, - "resize" : "fit", - "w" : 340 }, { "h" : 307, "resize" : "fit", @@ -2326,7 +2326,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "125027291", "id" : 125027291 }, { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 10, 14 ], "id_str" : "8038312", @@ -2392,7 +2392,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tewha", + "name" : "Tewha \uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "tewha", "indices" : [ 0, 6 ], "id_str" : "14058316", @@ -2437,7 +2437,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Tewha", + "name" : "Tewha \uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "tewha", "indices" : [ 12, 18 ], "id_str" : "14058316", @@ -2474,7 +2474,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Tewha", + "name" : "Tewha \uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "tewha", "indices" : [ 12, 18 ], "id_str" : "14058316", @@ -2568,7 +2568,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tewha", + "name" : "Tewha \uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "tewha", "indices" : [ 0, 6 ], "id_str" : "14058316", @@ -2607,7 +2607,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/www.apple.com\/\" rel=\"nofollow\"\u003EOS X\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 11, 26 ], "id_str" : "27302287", @@ -2935,7 +2935,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Android\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Android Holo\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -2971,7 +2971,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -3016,7 +3016,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "2833665322", "id" : 2833665322 }, { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 11, 22 ], "id_str" : "22196723", @@ -3646,6 +3646,12 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { + "name" : "Sr.Torrefacto", + "screen_name" : "Cafetorrefacto", + "indices" : [ 0, 15 ], + "id_str" : "897151369156722690", + "id" : 897151369156722690 + }, { "name" : "The Magazine", "screen_name" : "TheMagazineApp", "indices" : [ 16, 31 ], @@ -3658,7 +3664,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "14231571", "id" : 14231571 }, { - "name" : "Glenn Fleishman", + "name" : "Glenn Fleishman \uD83D\uDC4B\uD83D\uDEA8\uD83D\uDE91", "screen_name" : "GlennF", "indices" : [ 128, 135 ], "id_str" : "8315692", @@ -4590,7 +4596,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "2833665322", "id" : 2833665322 }, { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 11, 22 ], "id_str" : "22196723", @@ -4629,7 +4635,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "2833665322", "id" : 2833665322 }, { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 11, 22 ], "id_str" : "22196723", @@ -4668,7 +4674,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "2833665322", "id" : 2833665322 }, { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 11, 22 ], "id_str" : "22196723", diff --git a/public/tweets/data/js/tweets/2013_02.js b/public/tweets/data/js/tweets/2013_02.js index a438321..4aaed1b 100755 --- a/public/tweets/data/js/tweets/2013_02.js +++ b/public/tweets/data/js/tweets/2013_02.js @@ -288,7 +288,7 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -315,11 +315,11 @@ Grailbird.data.tweets_2013_02 = "id" : 306503189941858305, "created_at" : "2013-02-26 20:37:09 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -462,7 +462,7 @@ Grailbird.data.tweets_2013_02 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -1340,21 +1340,21 @@ Grailbird.data.tweets_2013_02 = "id" : 300112384733876225, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BCo2n7TCEAEZ4mF.jpg", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 - }, { - "h" : 800, - "resize" : "fit", - "w" : 600 + "w" : 900 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1536 }, { "h" : 2048, "resize" : "fit", @@ -1449,7 +1449,7 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -1476,11 +1476,11 @@ Grailbird.data.tweets_2013_02 = "id" : 294501215033761793, "created_at" : "2013-01-24 17:45:35 +0000", "user" : { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/765345750427414529\/hxSFDEmc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917536371085950976\/MIuNwAAR_normal.png", "id" : 8038312, "verified" : true } @@ -2001,7 +2001,7 @@ Grailbird.data.tweets_2013_02 = "id_str" : "14519526", "id" : 14519526 }, { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 14, 25 ], "id_str" : "22196723", @@ -2018,7 +2018,7 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -2588,7 +2588,7 @@ Grailbird.data.tweets_2013_02 = "screen_name" : "elagerway", "protected" : false, "id_str" : "3436771", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/769363144267268097\/VGgEAio__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915690607925903360\/2QoQP1DV_normal.jpg", "id" : 3436771, "verified" : false } @@ -2689,7 +2689,7 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kent Fenwick", + "name" : "Kent Fenwick \uD83D\uDCC8", "screen_name" : "kentf", "indices" : [ 0, 6 ], "id_str" : "14356633", @@ -2843,7 +2843,7 @@ Grailbird.data.tweets_2013_02 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -2876,7 +2876,7 @@ Grailbird.data.tweets_2013_02 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -2985,7 +2985,7 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kent Fenwick", + "name" : "Kent Fenwick \uD83D\uDCC8", "screen_name" : "kentf", "indices" : [ 0, 6 ], "id_str" : "14356633", diff --git a/public/tweets/data/js/tweets/2013_03.js b/public/tweets/data/js/tweets/2013_03.js index 1acb8b4..7af3ac7 100755 --- a/public/tweets/data/js/tweets/2013_03.js +++ b/public/tweets/data/js/tweets/2013_03.js @@ -160,7 +160,7 @@ Grailbird.data.tweets_2013_03 = "screen_name" : "pengwynn", "protected" : false, "id_str" : "14100886", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/777978284810178561\/9YbsHNla_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/911273801203122176\/gr4f9jpv_normal.jpg", "id" : 14100886, "verified" : false } @@ -777,25 +777,25 @@ Grailbird.data.tweets_2013_03 = "id" : 314547501606768640, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BF1_SUJCEAAqI0A.jpg", "sizes" : [ { - "h" : 579, + "h" : 1158, "resize" : "fit", - "w" : 1024 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 385, + "resize" : "fit", + "w" : 680 }, { "h" : 1520, "resize" : "fit", "w" : 2688 }, { - "h" : 339, + "h" : 679, "resize" : "fit", - "w" : 600 - }, { - "h" : 192, - "resize" : "fit", - "w" : 340 + "w" : 1200 } ], "display_url" : "pic.twitter.com\/6XmuuemO6X" } ], @@ -818,25 +818,25 @@ Grailbird.data.tweets_2013_03 = "id" : 314547501606768640, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BF1_SUJCEAAqI0A.jpg", "sizes" : [ { - "h" : 579, + "h" : 1158, "resize" : "fit", - "w" : 1024 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 385, + "resize" : "fit", + "w" : 680 }, { "h" : 1520, "resize" : "fit", "w" : 2688 }, { - "h" : 339, + "h" : 679, "resize" : "fit", - "w" : 600 - }, { - "h" : 192, - "resize" : "fit", - "w" : 340 + "w" : 1200 } ], "display_url" : "pic.twitter.com\/6XmuuemO6X" } ], @@ -924,7 +924,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -951,11 +951,11 @@ Grailbird.data.tweets_2013_03 = "id" : 314388544087019520, "created_at" : "2013-03-20 14:50:44 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -1313,9 +1313,9 @@ Grailbird.data.tweets_2013_03 = "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 373, "resize" : "fit", - "w" : 340 + "w" : 498 }, { "h" : 373, "resize" : "fit", @@ -1354,9 +1354,9 @@ Grailbird.data.tweets_2013_03 = "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 373, "resize" : "fit", - "w" : 340 + "w" : 498 }, { "h" : 373, "resize" : "fit", @@ -1470,7 +1470,7 @@ Grailbird.data.tweets_2013_03 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1282173124\/untitled-158-2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", "id" : 14231571, "verified" : true } @@ -1653,7 +1653,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -1880,7 +1880,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 3, 15 ], "id_str" : "5905672", @@ -1931,11 +1931,11 @@ Grailbird.data.tweets_2013_03 = "id" : 311334268016148480, "created_at" : "2013-03-12 04:34:08 +0000", "user" : { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "protected" : false, "id_str" : "5905672", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/840236085993074688\/PKcAI7aw_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/910617333080637441\/IzIDqu_O_normal.jpg", "id" : 5905672, "verified" : true } @@ -2109,7 +2109,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "iter::repeat(\uD83C\uDF55)", + "name" : "shitpost muse", "screen_name" : "steveklabnik", "indices" : [ 3, 16 ], "id_str" : "22386062", @@ -2146,11 +2146,11 @@ Grailbird.data.tweets_2013_03 = "id" : 311186820950020099, "created_at" : "2013-03-11 18:48:14 +0000", "user" : { - "name" : "iter::repeat(\uD83C\uDF55)", + "name" : "shitpost muse", "screen_name" : "steveklabnik", "protected" : false, "id_str" : "22386062", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/823250945572159488\/a3Zj5KjL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/906224108547002368\/31Zsh018_normal.jpg", "id" : 22386062, "verified" : false } diff --git a/public/tweets/data/js/tweets/2013_04.js b/public/tweets/data/js/tweets/2013_04.js index 3291e9e..e24c8cd 100755 --- a/public/tweets/data/js/tweets/2013_04.js +++ b/public/tweets/data/js/tweets/2013_04.js @@ -529,7 +529,7 @@ Grailbird.data.tweets_2013_04 = "screen_name" : "oscargodson", "protected" : false, "id_str" : "10138412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/780284413330411520\/HipMU7Kd_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/880597431561355264\/IquRR8rB_normal.jpg", "id" : 10138412, "verified" : false } @@ -823,7 +823,7 @@ Grailbird.data.tweets_2013_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -856,7 +856,7 @@ Grailbird.data.tweets_2013_04 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -889,7 +889,7 @@ Grailbird.data.tweets_2013_04 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -922,7 +922,7 @@ Grailbird.data.tweets_2013_04 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -1089,7 +1089,7 @@ Grailbird.data.tweets_2013_04 = "id_str" : "2649472424", "id" : 2649472424 }, { - "name" : "knut", + "name" : "knutaf", "screen_name" : "_knutaf", "indices" : [ 16, 24 ], "id_str" : "190796565", @@ -1585,7 +1585,7 @@ Grailbird.data.tweets_2013_04 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -1651,7 +1651,7 @@ Grailbird.data.tweets_2013_04 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -1767,7 +1767,7 @@ Grailbird.data.tweets_2013_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -1794,11 +1794,11 @@ Grailbird.data.tweets_2013_04 = "id" : 320130475224080384, "created_at" : "2013-04-05 11:07:07 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } diff --git a/public/tweets/data/js/tweets/2013_05.js b/public/tweets/data/js/tweets/2013_05.js index 1e41abe..6e9dbf1 100755 --- a/public/tweets/data/js/tweets/2013_05.js +++ b/public/tweets/data/js/tweets/2013_05.js @@ -37,7 +37,7 @@ Grailbird.data.tweets_2013_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jamie Forrest", + "name" : "Jamie Forrest \uD83C\uDDFA\uD83C\uDDF8", "screen_name" : "jamieforrest", "indices" : [ 3, 16 ], "id_str" : "14069034", @@ -64,11 +64,11 @@ Grailbird.data.tweets_2013_05 = "id" : 334279984321544192, "created_at" : "2013-05-14 12:12:13 +0000", "user" : { - "name" : "Jamie Forrest", + "name" : "Jamie Forrest \uD83C\uDDFA\uD83C\uDDF8", "screen_name" : "jamieforrest", "protected" : false, "id_str" : "14069034", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/831318562765684738\/vVfdCynI_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/896701895468883968\/Xwpse17g_normal.jpg", "id" : 14069034, "verified" : false } @@ -303,7 +303,7 @@ Grailbird.data.tweets_2013_05 = "screen_name" : "JeremiahLee", "protected" : false, "id_str" : "14538587", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/798798468496003072\/rFjHf66P_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/885777206206754817\/o-nwipOQ_normal.jpg", "id" : 14538587, "verified" : false } @@ -879,14 +879,6 @@ Grailbird.data.tweets_2013_05 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 - }, { - "h" : 800, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", @@ -895,6 +887,14 @@ Grailbird.data.tweets_2013_05 = "h" : 1024, "resize" : "fit", "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 } ], "display_url" : "pic.twitter.com\/RJ9P4OFHeN" } ], diff --git a/public/tweets/data/js/tweets/2013_06.js b/public/tweets/data/js/tweets/2013_06.js index 3cd1ad3..c4c91fd 100755 --- a/public/tweets/data/js/tweets/2013_06.js +++ b/public/tweets/data/js/tweets/2013_06.js @@ -63,7 +63,7 @@ Grailbird.data.tweets_2013_06 = "id" : 345749874563751936, "created_at" : "2013-06-15 03:49:28 +0000", "user" : { - "name" : "Play On! Canada", + "name" : "Play On!", "screen_name" : "HNICPlayOn", "protected" : false, "id_str" : "226701299", @@ -272,25 +272,25 @@ Grailbird.data.tweets_2013_06 = "id" : 348194634918424577, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BNUJLPcCcAEcCrE.jpg", "sizes" : [ { - "h" : 388, - "resize" : "fit", - "w" : 600 - }, { "h" : 802, "resize" : "fit", "w" : 1240 + }, { + "h" : 440, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 220, + "h" : 802, "resize" : "fit", - "w" : 340 + "w" : 1240 }, { - "h" : 662, + "h" : 776, "resize" : "fit", - "w" : 1024 + "w" : 1200 } ], "display_url" : "pic.twitter.com\/XhizylDrHA" } ], @@ -1120,25 +1120,25 @@ Grailbird.data.tweets_2013_06 = "id" : 342672384479883264, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BMFqt9dCcAA9MmR.jpg", "sizes" : [ { - "h" : 255, - "resize" : "fit", - "w" : 340 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 768, + "h" : 1536, "resize" : "fit", - "w" : 1024 + "w" : 2048 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 1536, "resize" : "fit", "w" : 2048 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/hjdmQMpvJp" } ], diff --git a/public/tweets/data/js/tweets/2013_07.js b/public/tweets/data/js/tweets/2013_07.js index 3f92746..7efb987 100755 --- a/public/tweets/data/js/tweets/2013_07.js +++ b/public/tweets/data/js/tweets/2013_07.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2013_07 = [ { - "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Android\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Android Holo\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -9,7 +9,7 @@ Grailbird.data.tweets_2013_07 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 10, 22 ], "id_str" : "5905672", @@ -396,7 +396,7 @@ Grailbird.data.tweets_2013_07 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/721536199681318912\/rflwVOZ8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", "id" : 15540222, "verified" : true } @@ -447,7 +447,7 @@ Grailbird.data.tweets_2013_07 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/721536199681318912\/rflwVOZ8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", "id" : 15540222, "verified" : true } @@ -520,7 +520,7 @@ Grailbird.data.tweets_2013_07 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/721536199681318912\/rflwVOZ8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", "id" : 15540222, "verified" : true } @@ -682,7 +682,7 @@ Grailbird.data.tweets_2013_07 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793501897030152192\/aMAAYCvY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", "id" : 36183, "verified" : false } @@ -812,7 +812,7 @@ Grailbird.data.tweets_2013_07 = "id_str" : "9156692", "id" : 9156692 }, { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 15, 26 ], "id_str" : "22196723", @@ -1217,7 +1217,7 @@ Grailbird.data.tweets_2013_07 = "screen_name" : "0x00A", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/843963093864603648\/zTr2gD8t_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/895001508349128704\/gFxzeC4L_normal.jpg", "id" : 95938827, "verified" : false } diff --git a/public/tweets/data/js/tweets/2013_08.js b/public/tweets/data/js/tweets/2013_08.js index 2c08466..391b5de 100755 --- a/public/tweets/data/js/tweets/2013_08.js +++ b/public/tweets/data/js/tweets/2013_08.js @@ -216,7 +216,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sebastiaan de With", + "name" : "Webastiaan the Sith", "screen_name" : "sdw", "indices" : [ 3, 7 ], "id_str" : "6503412", @@ -248,7 +248,7 @@ Grailbird.data.tweets_2013_08 = "id" : 373504285436166144, "created_at" : "2013-08-30 17:55:35 +0000", "user" : { - "name" : "Sebastiaan de With", + "name" : "Webastiaan the Sith", "screen_name" : "sdw", "protected" : false, "id_str" : "6503412", @@ -370,7 +370,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "6596872", "id" : 6596872 }, { - "name" : "Peter Cohen", + "name" : "Supeternatural Cohen", "screen_name" : "flargh", "indices" : [ 36, 43 ], "id_str" : "2960721", @@ -491,7 +491,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -518,11 +518,11 @@ Grailbird.data.tweets_2013_08 = "id" : 372063452388683776, "created_at" : "2013-08-26 18:30:14 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -542,7 +542,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -569,11 +569,11 @@ Grailbird.data.tweets_2013_08 = "id" : 372062674085236736, "created_at" : "2013-08-26 18:27:08 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -739,7 +739,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -772,7 +772,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -805,7 +805,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Neven Mrgan", + "name" : "mrgan!", "screen_name" : "mrgan", "indices" : [ 3, 9 ], "id_str" : "35293", @@ -838,11 +838,11 @@ Grailbird.data.tweets_2013_08 = "id" : 371478284736790529, "created_at" : "2013-08-25 03:44:59 +0000", "user" : { - "name" : "Neven Mrgan", + "name" : "mrgan!", "screen_name" : "mrgan", "protected" : false, "id_str" : "35293", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839856305015676929\/Cbf5FntI_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914585912507428864\/-s_wTdcj_normal.jpg", "id" : 35293, "verified" : true } @@ -911,7 +911,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "14802451", "id" : 14802451 }, { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 12, 23 ], "id_str" : "22196723", @@ -956,7 +956,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "14802451", "id" : 14802451 }, { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 12, 23 ], "id_str" : "22196723", @@ -1001,7 +1001,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "14802451", "id" : 14802451 }, { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 12, 23 ], "id_str" : "22196723", @@ -1117,7 +1117,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "14165170", "id" : 14165170 }, { - "name" : "\uD83D\uDE37 \uD83C\uDF55", + "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 12, 20 ], "id_str" : "11375732", @@ -1150,7 +1150,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -1177,11 +1177,11 @@ Grailbird.data.tweets_2013_08 = "id" : 370941278458236928, "created_at" : "2013-08-23 16:11:07 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -1201,7 +1201,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -1228,11 +1228,11 @@ Grailbird.data.tweets_2013_08 = "id" : 370940257422032896, "created_at" : "2013-08-23 16:07:03 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -1285,6 +1285,12 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { + "name" : "Michael Griffin", + "screen_name" : "MikeGriffin_", + "indices" : [ 0, 13 ], + "id_str" : "857747654448644101", + "id" : 857747654448644101 + }, { "name" : "The Loop", "screen_name" : "theloop", "indices" : [ 14, 22 ], @@ -1325,7 +1331,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -1364,7 +1370,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "14802451", "id" : 14802451 }, { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 12, 23 ], "id_str" : "22196723", @@ -1403,7 +1409,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "?B|", + "name" : "notb", "screen_name" : "brycebot", "indices" : [ 3, 12 ], "id_str" : "28501846", @@ -1447,11 +1453,11 @@ Grailbird.data.tweets_2013_08 = "in_reply_to_screen_name" : "TooTallNate", "in_reply_to_user_id_str" : "277724842", "user" : { - "name" : "?B|", + "name" : "notb", "screen_name" : "brycebot", "protected" : false, "id_str" : "28501846", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000762550370\/c7a0e609f8be80f27fd2c9a328280459_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/905899227695300608\/F0Gjg7VL_normal.jpg", "id" : 28501846, "verified" : false } @@ -1528,7 +1534,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "29255412", "id" : 29255412 }, { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 15, 19 ], "id_str" : "8038312", @@ -1632,7 +1638,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Neven Mrgan", + "name" : "mrgan!", "screen_name" : "mrgan", "indices" : [ 0, 6 ], "id_str" : "35293", @@ -1876,17 +1882,17 @@ Grailbird.data.tweets_2013_08 = "resize" : "fit", "w" : 768 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/aHgPaY9GHP" } ], diff --git a/public/tweets/data/js/tweets/2013_09.js b/public/tweets/data/js/tweets/2013_09.js index 837772d..49e656c 100755 --- a/public/tweets/data/js/tweets/2013_09.js +++ b/public/tweets/data/js/tweets/2013_09.js @@ -555,7 +555,7 @@ Grailbird.data.tweets_2013_09 = "screen_name" : "CTVNewsVI", "protected" : false, "id_str" : "56503668", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/436943147264774144\/yjdO1Pif_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877581334851588097\/CSJl0j-E_normal.jpg", "id" : 56503668, "verified" : true } @@ -853,14 +853,6 @@ Grailbird.data.tweets_2013_09 = "id" : 383450296342441985, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BVJKA06CcAEurYd.png", "sizes" : [ { - "h" : 800, - "resize" : "fit", - "w" : 600 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 - }, { "h" : 1024, "resize" : "fit", "w" : 768 @@ -872,6 +864,14 @@ Grailbird.data.tweets_2013_09 = "h" : 1024, "resize" : "fit", "w" : 768 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], "display_url" : "pic.twitter.com\/FSJJZlU2up" } ], @@ -907,7 +907,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "110233945", "id" : 110233945 }, { - "name" : "Matt Drance", + "name" : "U bum", "screen_name" : "drance", "indices" : [ 20, 27 ], "id_str" : "7440462", @@ -924,7 +924,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Matt Drance", + "name" : "U bum", "screen_name" : "drance", "indices" : [ 0, 7 ], "id_str" : "7440462", @@ -1180,17 +1180,17 @@ Grailbird.data.tweets_2013_09 = "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 1024, "resize" : "fit", - "w" : 340 + "w" : 768 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 510 }, { "h" : 1024, "resize" : "fit", @@ -1310,17 +1310,17 @@ Grailbird.data.tweets_2013_09 = "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 1024, "resize" : "fit", - "w" : 340 + "w" : 768 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 510 }, { "h" : 1024, "resize" : "fit", @@ -1471,10 +1471,6 @@ Grailbird.data.tweets_2013_09 = "h" : 259, "resize" : "fit", "w" : 500 - }, { - "h" : 176, - "resize" : "fit", - "w" : 340 }, { "h" : 259, "resize" : "fit", @@ -1487,6 +1483,10 @@ Grailbird.data.tweets_2013_09 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 259, + "resize" : "fit", + "w" : 500 } ], "display_url" : "pic.twitter.com\/ZB8iZhwqmD" } ], @@ -1536,18 +1536,18 @@ Grailbird.data.tweets_2013_09 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 800, - "resize" : "fit", - "w" : 600 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], "display_url" : "pic.twitter.com\/vXE4LUEhGn" } ], @@ -3103,7 +3103,7 @@ Grailbird.data.tweets_2013_09 = "screen_name" : "KKrzcuik", "protected" : false, "id_str" : "588435038", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/830859394493583360\/PAXkI4cX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/913077448492929025\/qoB-SC_F_normal.jpg", "id" : 588435038, "verified" : false } @@ -3659,7 +3659,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -3686,11 +3686,11 @@ Grailbird.data.tweets_2013_09 = "id" : 379414851946549248, "created_at" : "2013-09-16 01:22:04 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -3710,7 +3710,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -3737,11 +3737,11 @@ Grailbird.data.tweets_2013_09 = "id" : 379414147311890433, "created_at" : "2013-09-16 01:19:16 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -3761,7 +3761,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -3788,11 +3788,11 @@ Grailbird.data.tweets_2013_09 = "id" : 379413680653598720, "created_at" : "2013-09-16 01:17:25 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -4540,7 +4540,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Maira Sutton", + "name" : "Mai Sutton", "screen_name" : "maira", "indices" : [ 3, 9 ], "id_str" : "397570506", @@ -4561,17 +4561,17 @@ Grailbird.data.tweets_2013_09 = "id" : 377234645177606144, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BTw06T7IIAAhLSY.jpg", "sizes" : [ { - "h" : 340, - "resize" : "fit", - "w" : 340 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 600, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 1024 + }, { + "h" : 680, + "resize" : "fit", + "w" : 680 }, { "h" : 1024, "resize" : "fit", @@ -4608,17 +4608,17 @@ Grailbird.data.tweets_2013_09 = "id" : 377234645177606144, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BTw06T7IIAAhLSY.jpg", "sizes" : [ { - "h" : 340, - "resize" : "fit", - "w" : 340 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 600, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 1024 + }, { + "h" : 680, + "resize" : "fit", + "w" : 680 }, { "h" : 1024, "resize" : "fit", @@ -4639,11 +4639,11 @@ Grailbird.data.tweets_2013_09 = "id" : 377234645471219713, "created_at" : "2013-09-10 00:58:42 +0000", "user" : { - "name" : "Maira Sutton", + "name" : "Mai Sutton", "screen_name" : "maira", "protected" : false, "id_str" : "397570506", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855291304464457728\/edSlms-n_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/887762589102592000\/LXI5g5NR_normal.jpg", "id" : 397570506, "verified" : false } @@ -4663,7 +4663,7 @@ Grailbird.data.tweets_2013_09 = "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", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -4956,7 +4956,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 0, 14 ], "id_str" : "16472748", @@ -5395,7 +5395,7 @@ Grailbird.data.tweets_2013_09 = "screen_name" : "mgsiegler", "protected" : false, "id_str" : "652193", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/818658430638522369\/7BDfFGWm_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/904842400169828352\/GtbMz7M6_normal.jpg", "id" : 652193, "verified" : true } @@ -5537,7 +5537,7 @@ Grailbird.data.tweets_2013_09 = "screen_name" : "dsandler", "protected" : false, "id_str" : "656863", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/846898217283334145\/bB5fAhSn_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915032530113396736\/vsK2xRZ0_normal.jpg", "id" : 656863, "verified" : false } @@ -5941,7 +5941,7 @@ Grailbird.data.tweets_2013_09 = "screen_name" : "Jury", "protected" : false, "id_str" : "10754282", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/831016614367596544\/qtZ4hf1J_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/860250636650033153\/Uk3h2vm7_normal.jpg", "id" : 10754282, "verified" : false } @@ -6082,7 +6082,7 @@ Grailbird.data.tweets_2013_09 = "screen_name" : "pengwynn", "protected" : false, "id_str" : "14100886", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/777978284810178561\/9YbsHNla_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/911273801203122176\/gr4f9jpv_normal.jpg", "id" : 14100886, "verified" : false } diff --git a/public/tweets/data/js/tweets/2013_10.js b/public/tweets/data/js/tweets/2013_10.js index 0b328cf..62474d6 100755 --- a/public/tweets/data/js/tweets/2013_10.js +++ b/public/tweets/data/js/tweets/2013_10.js @@ -582,7 +582,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -661,6 +661,10 @@ Grailbird.data.tweets_2013_10 = "id" : 394271934298337281, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BXi8PDzCMAEtB4H.png", "sizes" : [ { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -668,18 +672,14 @@ Grailbird.data.tweets_2013_10 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 450, + "h" : 510, "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/orApsEh7F1" } ], @@ -815,7 +815,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -1091,18 +1091,18 @@ Grailbird.data.tweets_2013_10 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 604, - "resize" : "fit", - "w" : 340 }, { "h" : 1136, "resize" : "fit", "w" : 640 }, { - "h" : 1065, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 383 + }, { + "h" : 1136, + "resize" : "fit", + "w" : 640 } ], "display_url" : "pic.twitter.com\/QDpwIPadbt" } ], @@ -1278,6 +1278,12 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { + "name" : "file transporter", + "screen_name" : "FileTransporter", + "indices" : [ 3, 19 ], + "id_str" : "870575483708219393", + "id" : 870575483708219393 + }, { "name" : "Joseph Martel", "screen_name" : "JosephMartel", "indices" : [ 40, 53 ], @@ -1360,7 +1366,7 @@ Grailbird.data.tweets_2013_10 = "screen_name" : "bergmayer", "protected" : false, "id_str" : "18322285", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/741799009833082880\/sXR0Bc6q_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/897876657385746434\/zdA5CQD8_normal.jpg", "id" : 18322285, "verified" : true } @@ -1380,7 +1386,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -1648,7 +1654,7 @@ Grailbird.data.tweets_2013_10 = "screen_name" : "rands", "protected" : false, "id_str" : "30923", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/823630828995346432\/OsEvhRyK_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/879352807228399621\/qtcNEE0n_normal.jpg", "id" : 30923, "verified" : true } @@ -1906,7 +1912,7 @@ Grailbird.data.tweets_2013_10 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793501897030152192\/aMAAYCvY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", "id" : 36183, "verified" : false } @@ -2302,7 +2308,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -2329,11 +2335,11 @@ Grailbird.data.tweets_2013_10 = "id" : 391235159808569345, "created_at" : "2013-10-18 16:11:45 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -2353,7 +2359,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -2380,11 +2386,11 @@ Grailbird.data.tweets_2013_10 = "id" : 391234495820877824, "created_at" : "2013-10-18 16:09:07 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -2960,7 +2966,7 @@ Grailbird.data.tweets_2013_10 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/721536199681318912\/rflwVOZ8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", "id" : 15540222, "verified" : true } @@ -3033,7 +3039,7 @@ Grailbird.data.tweets_2013_10 = "screen_name" : "feedbin", "protected" : false, "id_str" : "1170518132", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3548592823\/74e01c864c70f25b5efad42a1c324c69_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/897897663223406593\/ozNDxpG5_normal.jpg", "id" : 1170518132, "verified" : true } @@ -3123,7 +3129,7 @@ Grailbird.data.tweets_2013_10 = "screen_name" : "fraserspeirs", "protected" : false, "id_str" : "644603", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2514482031\/Headshot-Square-Twitter_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918781223677259776\/BNUM1rhT_normal.jpg", "id" : 644603, "verified" : false } @@ -3651,7 +3657,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -3678,11 +3684,11 @@ Grailbird.data.tweets_2013_10 = "id" : 387300607427878912, "created_at" : "2013-10-07 19:37:15 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -3804,22 +3810,22 @@ Grailbird.data.tweets_2013_10 = "h" : 698, "resize" : "fit", "w" : 829 - }, { - "h" : 505, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 286, + "h" : 698, "resize" : "fit", - "w" : 340 + "w" : 829 }, { "h" : 698, "resize" : "fit", "w" : 829 + }, { + "h" : 573, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/kIYX7LMyGA" } ], @@ -3882,7 +3888,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3924,6 +3930,10 @@ Grailbird.data.tweets_2013_10 = "id" : 386639144375435264, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BV2eQNjCQAAq810.png", "sizes" : [ { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3931,18 +3941,14 @@ Grailbird.data.tweets_2013_10 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 450, + "h" : 510, "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/IUF1vmf9G1" } ], @@ -4015,6 +4021,10 @@ Grailbird.data.tweets_2013_10 = "id" : 385967654051147777, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BVs7iVKCcAEGRcx.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 474 + }, { "h" : 702, "resize" : "fit", "w" : 489 @@ -4030,10 +4040,6 @@ Grailbird.data.tweets_2013_10 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 488, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/1IkwAkvCZ4" } ], @@ -4059,6 +4065,10 @@ Grailbird.data.tweets_2013_10 = "id" : 385967654051147777, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BVs7iVKCcAEGRcx.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 474 + }, { "h" : 702, "resize" : "fit", "w" : 489 @@ -4074,10 +4084,6 @@ Grailbird.data.tweets_2013_10 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 488, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/1IkwAkvCZ4" } ], @@ -4151,13 +4157,13 @@ Grailbird.data.tweets_2013_10 = "id" : 385967448840601600, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BVs7WYsCAAAYqtk.png", "sizes" : [ { - "h" : 217, + "h" : 636, "resize" : "fit", - "w" : 340 + "w" : 997 }, { - "h" : 383, + "h" : 636, "resize" : "fit", - "w" : 600 + "w" : 997 }, { "h" : 150, "resize" : "crop", @@ -4167,9 +4173,9 @@ Grailbird.data.tweets_2013_10 = "resize" : "fit", "w" : 997 }, { - "h" : 636, + "h" : 434, "resize" : "fit", - "w" : 997 + "w" : 680 } ], "display_url" : "pic.twitter.com\/VKqI4vdF5Z" } ], @@ -4260,17 +4266,17 @@ Grailbird.data.tweets_2013_10 = "id" : 385614140481355776, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BVn6BIfCQAAsROJ.jpg", "sizes" : [ { - "h" : 347, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 665 }, { "h" : 1024, "resize" : "fit", "w" : 1002 }, { - "h" : 613, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 1002 }, { "h" : 1024, "resize" : "fit", @@ -4301,17 +4307,17 @@ Grailbird.data.tweets_2013_10 = "id" : 385614140481355776, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BVn6BIfCQAAsROJ.jpg", "sizes" : [ { - "h" : 347, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 665 }, { "h" : 1024, "resize" : "fit", "w" : 1002 }, { - "h" : 613, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 1002 }, { "h" : 1024, "resize" : "fit", diff --git a/public/tweets/data/js/tweets/2013_11.js b/public/tweets/data/js/tweets/2013_11.js index aa38ec2..7b1deb9 100755 --- a/public/tweets/data/js/tweets/2013_11.js +++ b/public/tweets/data/js/tweets/2013_11.js @@ -60,57 +60,6 @@ Grailbird.data.tweets_2013_11 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "\u041F\u0435\u043F\u0435\u043B\u0435\u0432a \u0415\u043B\u0435\u043D\u0430", - "screen_name" : "angelinamagnum", - "indices" : [ 3, 18 ], - "id_str" : "2833368891", - "id" : 2833368891 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "405548460596015104", - "text" : "RT @angelinamagnum: If you are a dev writing code that you expect other devs to use you may be surprised to find that you are working on us\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "405450793605533697", - "text" : "If you are a dev writing code that you expect other devs to use you may be surprised to find that you are working on user experience design.", - "id" : 405450793605533697, - "created_at" : "2013-11-26 21:39:36 +0000", - "user" : { - "name" : "Ghost in the Machine", - "screen_name" : "hopefulcyborg", - "protected" : false, - "id_str" : "58708498", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/847187490997796865\/W1YQWwWi_normal.jpg", - "id" : 58708498, - "verified" : false - } - }, - "id" : 405548460596015104, - "created_at" : "2013-11-27 04:07:42 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { @@ -127,18 +76,18 @@ Grailbird.data.tweets_2013_11 = "h" : 257, "resize" : "fit", "w" : 908 - }, { - "h" : 96, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 170, + "h" : 257, "resize" : "fit", - "w" : 600 + "w" : 908 + }, { + "h" : 192, + "resize" : "fit", + "w" : 680 }, { "h" : 257, "resize" : "fit", @@ -167,7 +116,7 @@ Grailbird.data.tweets_2013_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "David Hicks", + "name" : "Dave Ghost Dicks", "screen_name" : "ALL_CAPS", "indices" : [ 0, 9 ], "id_str" : "35745942", @@ -662,9 +611,9 @@ Grailbird.data.tweets_2013_11 = "resize" : "fit", "w" : 518 }, { - "h" : 261, + "h" : 398, "resize" : "fit", - "w" : 340 + "w" : 518 } ], "display_url" : "pic.twitter.com\/uOMDLqTjKc" } ], @@ -703,9 +652,9 @@ Grailbird.data.tweets_2013_11 = "resize" : "fit", "w" : 518 }, { - "h" : 261, + "h" : 398, "resize" : "fit", - "w" : 340 + "w" : 518 } ], "display_url" : "pic.twitter.com\/uOMDLqTjKc" } ], @@ -764,14 +713,14 @@ Grailbird.data.tweets_2013_11 = "h" : 598, "resize" : "fit", "w" : 448 + }, { + "h" : 598, + "resize" : "fit", + "w" : 448 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 454, - "resize" : "fit", - "w" : 340 }, { "h" : 598, "resize" : "fit", @@ -805,14 +754,14 @@ Grailbird.data.tweets_2013_11 = "h" : 598, "resize" : "fit", "w" : 448 + }, { + "h" : 598, + "resize" : "fit", + "w" : 448 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 454, - "resize" : "fit", - "w" : 340 }, { "h" : 598, "resize" : "fit", @@ -944,7 +893,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Android\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Android Holo\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jake Archibald", @@ -1199,14 +1148,14 @@ Grailbird.data.tweets_2013_11 = "h" : 1024, "resize" : "fit", "w" : 577 - }, { - "h" : 603, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 }, { "h" : 1024, "resize" : "fit", @@ -1593,7 +1542,7 @@ Grailbird.data.tweets_2013_11 = "id_str" : "668863", "id" : 668863 }, { - "name" : "Alex's Matchneer", + "name" : "Alex Matchneer", "screen_name" : "machty", "indices" : [ 24, 31 ], "id_str" : "18740111", @@ -1610,7 +1559,7 @@ Grailbird.data.tweets_2013_11 = "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Alex's Matchneer", + "name" : "Alex Matchneer", "screen_name" : "machty", "indices" : [ 11, 18 ], "id_str" : "18740111", @@ -1776,7 +1725,7 @@ Grailbird.data.tweets_2013_11 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -2511,7 +2460,7 @@ Grailbird.data.tweets_2013_11 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1282173124\/untitled-158-2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", "id" : 14231571, "verified" : true } diff --git a/public/tweets/data/js/tweets/2013_12.js b/public/tweets/data/js/tweets/2013_12.js index 9646f1e..6409887 100755 --- a/public/tweets/data/js/tweets/2013_12.js +++ b/public/tweets/data/js/tweets/2013_12.js @@ -86,13 +86,13 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Joel Spolsky", + "name" : "Joel Spooky", "screen_name" : "spolsky", "indices" : [ 3, 11 ], "id_str" : "15948437", "id" : 15948437 }, { - "name" : "ari v. \uD83C\uDF2F", + "name" : "ari v. \uD83C\uDF39\uD83C\uDF2F", "screen_name" : "roxaloxa", "indices" : [ 13, 22 ], "id_str" : "14467421", @@ -115,7 +115,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ari v. \uD83C\uDF2F", + "name" : "ari v. \uD83C\uDF39\uD83C\uDF2F", "screen_name" : "roxaloxa", "indices" : [ 0, 9 ], "id_str" : "14467421", @@ -142,7 +142,7 @@ Grailbird.data.tweets_2013_12 = "in_reply_to_screen_name" : "roxaloxa", "in_reply_to_user_id_str" : "14467421", "user" : { - "name" : "Joel Spolsky", + "name" : "Joel Spooky", "screen_name" : "spolsky", "protected" : false, "id_str" : "15948437", @@ -166,7 +166,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ari v. \uD83C\uDF2F", + "name" : "ari v. \uD83C\uDF39\uD83C\uDF2F", "screen_name" : "roxaloxa", "indices" : [ 0, 9 ], "id_str" : "14467421", @@ -430,7 +430,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ben Prunty", + "name" : "\uD83D\uDC80Ben Haunty\uD83D\uDC80", "screen_name" : "benprunty", "indices" : [ 11, 21 ], "id_str" : "15810488", @@ -598,17 +598,13 @@ Grailbird.data.tweets_2013_12 = "id" : 417100417647280128, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcnWnrWIgAAlSbt.jpg", "sizes" : [ { - "h" : 453, + "h" : 483, "resize" : "fit", - "w" : 600 + "w" : 640 }, { "h" : 483, "resize" : "fit", "w" : 640 - }, { - "h" : 257, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -617,6 +613,10 @@ Grailbird.data.tweets_2013_12 = "h" : 483, "resize" : "fit", "w" : 640 + }, { + "h" : 483, + "resize" : "fit", + "w" : 640 } ], "display_url" : "pic.twitter.com\/XvgWgPcjJu" } ], @@ -639,17 +639,13 @@ Grailbird.data.tweets_2013_12 = "id" : 417100417647280128, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcnWnrWIgAAlSbt.jpg", "sizes" : [ { - "h" : 453, + "h" : 483, "resize" : "fit", - "w" : 600 + "w" : 640 }, { "h" : 483, "resize" : "fit", "w" : 640 - }, { - "h" : 257, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -658,6 +654,10 @@ Grailbird.data.tweets_2013_12 = "h" : 483, "resize" : "fit", "w" : 640 + }, { + "h" : 483, + "resize" : "fit", + "w" : 640 } ], "display_url" : "pic.twitter.com\/XvgWgPcjJu" } ], @@ -742,13 +742,9 @@ Grailbird.data.tweets_2013_12 = "id" : 416925199800745984, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bck3QqAIQAAWDUO.jpg", "sizes" : [ { - "h" : 321, + "h" : 605, "resize" : "fit", - "w" : 340 - }, { - "h" : 567, - "resize" : "fit", - "w" : 600 + "w" : 640 }, { "h" : 150, "resize" : "crop", @@ -761,6 +757,10 @@ Grailbird.data.tweets_2013_12 = "h" : 605, "resize" : "fit", "w" : 640 + }, { + "h" : 605, + "resize" : "fit", + "w" : 640 } ], "display_url" : "pic.twitter.com\/nhIi2jJCHZ" } ], @@ -783,13 +783,9 @@ Grailbird.data.tweets_2013_12 = "id" : 416925199800745984, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bck3QqAIQAAWDUO.jpg", "sizes" : [ { - "h" : 321, + "h" : 605, "resize" : "fit", - "w" : 340 - }, { - "h" : 567, - "resize" : "fit", - "w" : 600 + "w" : 640 }, { "h" : 150, "resize" : "crop", @@ -802,6 +798,10 @@ Grailbird.data.tweets_2013_12 = "h" : 605, "resize" : "fit", "w" : 640 + }, { + "h" : 605, + "resize" : "fit", + "w" : 640 } ], "display_url" : "pic.twitter.com\/nhIi2jJCHZ" } ], @@ -922,7 +922,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 3, 17 ], "id_str" : "16472748", @@ -937,17 +937,17 @@ Grailbird.data.tweets_2013_12 = "id" : 416339242575335424, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcciVdPCEAAAaMt.png", "sizes" : [ { - "h" : 215, - "resize" : "fit", - "w" : 340 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 379, + "h" : 430, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 455, + "resize" : "fit", + "w" : 720 }, { "h" : 455, "resize" : "fit", @@ -978,17 +978,17 @@ Grailbird.data.tweets_2013_12 = "id" : 416339242575335424, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcciVdPCEAAAaMt.png", "sizes" : [ { - "h" : 215, - "resize" : "fit", - "w" : 340 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 379, + "h" : 430, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 455, + "resize" : "fit", + "w" : 720 }, { "h" : 455, "resize" : "fit", @@ -1009,7 +1009,7 @@ Grailbird.data.tweets_2013_12 = "id" : 416339242705367040, "created_at" : "2013-12-26 22:46:25 +0000", "user" : { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "protected" : false, "id_str" : "16472748", @@ -1054,25 +1054,25 @@ Grailbird.data.tweets_2013_12 = "id" : 416287777228341249, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bcbzhx4IQAEG6_W.jpg", "sizes" : [ { - "h" : 600, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 2048 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 1024, + "h" : 680, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 2048, "resize" : "fit", "w" : 2048 - }, { - "h" : 340, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/m7aOOMACCe" } ], @@ -1101,25 +1101,25 @@ Grailbird.data.tweets_2013_12 = "id" : 416287777228341249, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bcbzhx4IQAEG6_W.jpg", "sizes" : [ { - "h" : 600, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 2048 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 1024, + "h" : 680, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 2048, "resize" : "fit", "w" : 2048 - }, { - "h" : 340, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/m7aOOMACCe" } ], @@ -1382,7 +1382,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Luke O'Neil", + "name" : "luke oneil \uD83D\uDEBD", "screen_name" : "lukeoneil47", "indices" : [ 3, 15 ], "id_str" : "108338399", @@ -1409,11 +1409,11 @@ Grailbird.data.tweets_2013_12 = "id" : 415347426795343872, "created_at" : "2013-12-24 05:05:17 +0000", "user" : { - "name" : "Luke O'Neil", + "name" : "luke oneil \uD83D\uDEBD", "screen_name" : "lukeoneil47", "protected" : false, "id_str" : "108338399", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/852515246094901249\/hSrgOYms_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918951647241539587\/L9YVFdtG_normal.jpg", "id" : 108338399, "verified" : true } @@ -1599,17 +1599,9 @@ Grailbird.data.tweets_2013_12 = "id" : 415182150997000192, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcMF93NCQAAXKhW.jpg", "sizes" : [ { - "h" : 150, + "h" : 300, "resize" : "fit", - "w" : 340 - }, { - "h" : 264, - "resize" : "fit", - "w" : 600 - }, { - "h" : 451, - "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -1618,6 +1610,14 @@ Grailbird.data.tweets_2013_12 = "h" : 469, "resize" : "fit", "w" : 1064 + }, { + "h" : 469, + "resize" : "fit", + "w" : 1064 + }, { + "h" : 469, + "resize" : "fit", + "w" : 1064 } ], "display_url" : "pic.twitter.com\/xxdLHfxl9H" } ], @@ -1640,17 +1640,9 @@ Grailbird.data.tweets_2013_12 = "id" : 415182150997000192, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcMF93NCQAAXKhW.jpg", "sizes" : [ { - "h" : 150, + "h" : 300, "resize" : "fit", - "w" : 340 - }, { - "h" : 264, - "resize" : "fit", - "w" : 600 - }, { - "h" : 451, - "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -1659,6 +1651,14 @@ Grailbird.data.tweets_2013_12 = "h" : 469, "resize" : "fit", "w" : 1064 + }, { + "h" : 469, + "resize" : "fit", + "w" : 1064 + }, { + "h" : 469, + "resize" : "fit", + "w" : 1064 } ], "display_url" : "pic.twitter.com\/xxdLHfxl9H" } ], @@ -1801,9 +1801,9 @@ Grailbird.data.tweets_2013_12 = "resize" : "crop", "w" : 150 }, { - "h" : 454, + "h" : 667, "resize" : "fit", - "w" : 340 + "w" : 500 }, { "h" : 667, "resize" : "fit", @@ -1845,9 +1845,9 @@ Grailbird.data.tweets_2013_12 = "resize" : "crop", "w" : 150 }, { - "h" : 454, + "h" : 667, "resize" : "fit", - "w" : 340 + "w" : 500 }, { "h" : 667, "resize" : "fit", @@ -2012,22 +2012,22 @@ Grailbird.data.tweets_2013_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/sihU1ralRm" } ], @@ -2053,22 +2053,22 @@ Grailbird.data.tweets_2013_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/sihU1ralRm" } ], @@ -2338,10 +2338,6 @@ Grailbird.data.tweets_2013_12 = "id" : 414091191064731648, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bb8lvowIIAACMck.jpg", "sizes" : [ { - "h" : 604, - "resize" : "fit", - "w" : 340 - }, { "h" : 1024, "resize" : "fit", "w" : 576 @@ -2357,6 +2353,10 @@ Grailbird.data.tweets_2013_12 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 } ], "display_url" : "pic.twitter.com\/wFAIMQUKQS" } ], @@ -2379,10 +2379,6 @@ Grailbird.data.tweets_2013_12 = "id" : 414091191064731648, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bb8lvowIIAACMck.jpg", "sizes" : [ { - "h" : 604, - "resize" : "fit", - "w" : 340 - }, { "h" : 1024, "resize" : "fit", "w" : 576 @@ -2398,6 +2394,10 @@ Grailbird.data.tweets_2013_12 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 } ], "display_url" : "pic.twitter.com\/wFAIMQUKQS" } ], @@ -2417,7 +2417,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/767372427026464768\/5Prq7opQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918433182906830848\/NwsKygmV_normal.jpg", "id" : 6927562, "verified" : true } @@ -2437,7 +2437,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Taras Mankovski", + "name" : "Ember Sherpa", "screen_name" : "embersherpa", "indices" : [ 0, 12 ], "id_str" : "14427389", @@ -2625,25 +2625,25 @@ Grailbird.data.tweets_2013_12 = "id" : 413656619386671104, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bb2agPGIEAAos_Z.png", "sizes" : [ { - "h" : 453, + "h" : 2048, "resize" : "fit", - "w" : 340 + "w" : 1536 }, { "h" : 2048, "resize" : "fit", "w" : 1536 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 900 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 1365, + "h" : 680, "resize" : "fit", - "w" : 1024 - }, { - "h" : 800, - "resize" : "fit", - "w" : 600 + "w" : 510 } ], "display_url" : "pic.twitter.com\/h8lDrkI8Lk" } ], @@ -3000,7 +3000,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "tarikh", "protected" : false, "id_str" : "7535272", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/773895067438313472\/aKuvh4uv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/892199137831247872\/11Jrlq8S_normal.jpg", "id" : 7535272, "verified" : false } @@ -3419,7 +3419,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter Gasston", + "name" : "Peter Ga\u00DFton", "screen_name" : "stopsatgreen", "indices" : [ 3, 16 ], "id_str" : "13407012", @@ -3459,17 +3459,17 @@ Grailbird.data.tweets_2013_12 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/OKcD5N5sK2" } ], @@ -3482,7 +3482,7 @@ Grailbird.data.tweets_2013_12 = "id" : 412522788633587712, "created_at" : "2013-12-16 10:01:11 +0000", "user" : { - "name" : "Peter Gasston", + "name" : "Peter Ga\u00DFton", "screen_name" : "stopsatgreen", "protected" : false, "id_str" : "13407012", @@ -3826,13 +3826,9 @@ Grailbird.data.tweets_2013_12 = "id" : 412095418374168576, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BbgOmYHCIAAtfBm.png", "sizes" : [ { - "h" : 375, + "h" : 425, "resize" : "fit", - "w" : 600 - }, { - "h" : 213, - "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -3845,6 +3841,10 @@ Grailbird.data.tweets_2013_12 = "h" : 640, "resize" : "fit", "w" : 1024 + }, { + "h" : 640, + "resize" : "fit", + "w" : 1024 } ], "display_url" : "pic.twitter.com\/FKGo0JzXSB" } ], @@ -4221,7 +4221,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ryan Florence \uD83D\uDC4D\uD83C\uDFFC", + "name" : "Ryan Florence", "screen_name" : "ryanflorence", "indices" : [ 3, 16 ], "id_str" : "16468446", @@ -4266,11 +4266,11 @@ Grailbird.data.tweets_2013_12 = "id" : 411192296038608896, "created_at" : "2013-12-12 17:54:17 +0000", "user" : { - "name" : "Ryan Florence \uD83D\uDC4D\uD83C\uDFFC", + "name" : "Ryan Florence", "screen_name" : "ryanflorence", "protected" : false, "id_str" : "16468446", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833804425822998529\/Ng6B18iX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/864681873984835585\/4eV1BACS_normal.jpg", "id" : 16468446, "verified" : false } @@ -4342,9 +4342,9 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 520 }, { - "h" : 339, + "h" : 518, "resize" : "fit", - "w" : 340 + "w" : 520 }, { "h" : 518, "resize" : "fit", @@ -4383,9 +4383,9 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 520 }, { - "h" : 339, + "h" : 518, "resize" : "fit", - "w" : 340 + "w" : 520 }, { "h" : 518, "resize" : "fit", @@ -4414,7 +4414,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "Gotham3", "protected" : false, "id_str" : "126903716", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849946550058995712\/znRw-_ML_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919246471861374976\/xPM4LZL8_normal.jpg", "id" : 126903716, "verified" : false } @@ -4521,17 +4521,13 @@ Grailbird.data.tweets_2013_12 = "id" : 410201956129316864, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BbFUgXlCIAAvW71.jpg", "sizes" : [ { - "h" : 231, - "resize" : "fit", - "w" : 340 - }, { "h" : 482, "resize" : "fit", "w" : 709 }, { - "h" : 408, + "h" : 462, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -4540,6 +4536,10 @@ Grailbird.data.tweets_2013_12 = "h" : 482, "resize" : "fit", "w" : 709 + }, { + "h" : 482, + "resize" : "fit", + "w" : 709 } ], "display_url" : "pic.twitter.com\/KNeWlDXboz" } ], @@ -4582,13 +4582,13 @@ Grailbird.data.tweets_2013_12 = "id_str" : "1919231", "id" : 1919231 }, { - "name" : "Louie Mantia", - "screen_name" : "mantia", + "name" : "Hallouieen", + "screen_name" : "Mantia", "indices" : [ 7, 14 ], "id_str" : "41783", "id" : 41783 }, { - "name" : "Alex Pasco", + "name" : "Alex Says Boo to YOU", "screen_name" : "alexpalex", "indices" : [ 15, 25 ], "id_str" : "787158", @@ -5179,7 +5179,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "matt_pardee", "protected" : false, "id_str" : "16225162", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/840239041261924352\/PGBTdTgI_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/858833093041442816\/kxkcr4R__normal.jpg", "id" : 16225162, "verified" : false } @@ -5357,9 +5357,9 @@ Grailbird.data.tweets_2013_12 = "id" : 407439281805078528, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BaeD3juIMAAF4Ek.jpg", "sizes" : [ { - "h" : 799, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 769 }, { "h" : 1024, "resize" : "fit", @@ -5373,9 +5373,9 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 769 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 511 } ], "display_url" : "pic.twitter.com\/neJxYANj6p" } ], @@ -5398,9 +5398,9 @@ Grailbird.data.tweets_2013_12 = "id" : 407439281805078528, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BaeD3juIMAAF4Ek.jpg", "sizes" : [ { - "h" : 799, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 769 }, { "h" : 1024, "resize" : "fit", @@ -5414,9 +5414,9 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 769 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 511 } ], "display_url" : "pic.twitter.com\/neJxYANj6p" } ], diff --git a/public/tweets/data/js/tweets/2014_01.js b/public/tweets/data/js/tweets/2014_01.js index 68f6455..c794ed4 100755 --- a/public/tweets/data/js/tweets/2014_01.js +++ b/public/tweets/data/js/tweets/2014_01.js @@ -126,7 +126,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Alex's Matchneer", + "name" : "Alex Matchneer", "screen_name" : "machty", "indices" : [ 0, 7 ], "id_str" : "18740111", @@ -220,14 +220,14 @@ Grailbird.data.tweets_2014_01 = "h" : 156, "resize" : "fit", "w" : 409 + }, { + "h" : 156, + "resize" : "fit", + "w" : 409 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 130, - "resize" : "fit", - "w" : 340 }, { "h" : 156, "resize" : "fit", @@ -261,14 +261,14 @@ Grailbird.data.tweets_2014_01 = "h" : 156, "resize" : "fit", "w" : 409 + }, { + "h" : 156, + "resize" : "fit", + "w" : 409 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 130, - "resize" : "fit", - "w" : 340 }, { "h" : 156, "resize" : "fit", @@ -451,7 +451,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "oscargodson", "protected" : false, "id_str" : "10138412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/780284413330411520\/HipMU7Kd_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/880597431561355264\/IquRR8rB_normal.jpg", "id" : 10138412, "verified" : false } @@ -578,7 +578,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "818728921", "id" : 818728921 }, { - "name" : "Taras Mankovski", + "name" : "Ember Sherpa", "screen_name" : "embersherpa", "indices" : [ 10, 22 ], "id_str" : "14427389", @@ -644,7 +644,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -677,7 +677,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -704,11 +704,11 @@ Grailbird.data.tweets_2014_01 = "id" : 427102826591178752, "created_at" : "2014-01-25 15:37:03 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -1468,7 +1468,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "K*L*A*N*G", + "name" : "\uA66E", "screen_name" : "viktorklang", "indices" : [ 3, 15 ], "id_str" : "52061552", @@ -1512,7 +1512,7 @@ Grailbird.data.tweets_2014_01 = "in_reply_to_screen_name" : "prasinous", "in_reply_to_user_id_str" : "90640376", "user" : { - "name" : "K*L*A*N*G", + "name" : "\uA66E", "screen_name" : "viktorklang", "protected" : false, "id_str" : "52061552", @@ -1685,7 +1685,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -1927,11 +1927,11 @@ Grailbird.data.tweets_2014_01 = "id_str" : "668863", "id" : 668863 }, { - "name" : "Peter Jihoon Kim", + "name" : "Pete Kim", "screen_name" : "raingrove", "indices" : [ 86, 96 ], - "id_str" : "6174752", - "id" : 6174752 + "id_str" : "892982303369998337", + "id" : 892982303369998337 } ], "media" : [ ], "hashtags" : [ ], @@ -1961,11 +1961,11 @@ Grailbird.data.tweets_2014_01 = "id_str" : "668863", "id" : 668863 }, { - "name" : "Peter Jihoon Kim", + "name" : "Pete Kim", "screen_name" : "raingrove", "indices" : [ 71, 81 ], - "id_str" : "6174752", - "id" : 6174752 + "id_str" : "892982303369998337", + "id" : 892982303369998337 } ], "media" : [ ], "hashtags" : [ ], @@ -2012,7 +2012,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "156361232", "id" : 156361232 }, { - "name" : "Alex's Matchneer", + "name" : "Alex Matchneer", "screen_name" : "machty", "indices" : [ 9, 16 ], "id_str" : "18740111", @@ -2395,7 +2395,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Alex's Matchneer", + "name" : "Alex Matchneer", "screen_name" : "machty", "indices" : [ 0, 7 ], "id_str" : "18740111", @@ -2407,7 +2407,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "156361232", "id" : 156361232 }, { - "name" : "loathsome gay", + "name" : "we are in hell", "screen_name" : "fivetanley", "indices" : [ 17, 28 ], "id_str" : "306497372", @@ -2465,9 +2465,9 @@ Grailbird.data.tweets_2014_01 = "resize" : "crop", "w" : 150 }, { - "h" : 254, + "h" : 373, "resize" : "fit", - "w" : 340 + "w" : 500 }, { "h" : 373, "resize" : "fit", @@ -2506,9 +2506,9 @@ Grailbird.data.tweets_2014_01 = "resize" : "crop", "w" : 150 }, { - "h" : 254, + "h" : 373, "resize" : "fit", - "w" : 340 + "w" : 500 }, { "h" : 373, "resize" : "fit", @@ -2590,7 +2590,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2691,7 +2691,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2729,7 +2729,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2762,7 +2762,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2795,7 +2795,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3242,7 +3242,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "newrelic", "protected" : false, "id_str" : "15527007", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/777980658421424128\/P-Tcwmlq_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/879380193017643008\/LX9KWqdb_normal.jpg", "id" : 15527007, "verified" : true } @@ -3366,25 +3366,25 @@ Grailbird.data.tweets_2014_01 = "id" : 423571625439547392, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BeDUJi9CUAAXAxm.jpg", "sizes" : [ { - "h" : 620, + "h" : 625, "resize" : "fit", - "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 206, - "resize" : "fit", - "w" : 340 + "w" : 1032 }, { "h" : 625, "resize" : "fit", "w" : 1032 }, { - "h" : 363, + "h" : 412, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 625, + "resize" : "fit", + "w" : 1032 } ], "display_url" : "pic.twitter.com\/ERKV4MaY3j" } ], @@ -3407,25 +3407,25 @@ Grailbird.data.tweets_2014_01 = "id" : 423571625439547392, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BeDUJi9CUAAXAxm.jpg", "sizes" : [ { - "h" : 620, + "h" : 625, "resize" : "fit", - "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 206, - "resize" : "fit", - "w" : 340 + "w" : 1032 }, { "h" : 625, "resize" : "fit", "w" : 1032 }, { - "h" : 363, + "h" : 412, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 625, + "resize" : "fit", + "w" : 1032 } ], "display_url" : "pic.twitter.com\/ERKV4MaY3j" } ], @@ -3587,7 +3587,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793501897030152192\/aMAAYCvY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", "id" : 36183, "verified" : false } @@ -4769,25 +4769,25 @@ Grailbird.data.tweets_2014_01 = "id" : 422016469694558208, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BdtNvkWCMAALutH.jpg", "sizes" : [ { - "h" : 388, + "h" : 1200, "resize" : "fit", - "w" : 340 - }, { - "h" : 1168, - "resize" : "fit", - "w" : 1024 + "w" : 1052 }, { "h" : 3072, "resize" : "fit", "w" : 2694 - }, { - "h" : 684, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 596 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1796 } ], "display_url" : "pic.twitter.com\/RxfknHjBv8" } ], @@ -4810,25 +4810,25 @@ Grailbird.data.tweets_2014_01 = "id" : 422016469694558208, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BdtNvkWCMAALutH.jpg", "sizes" : [ { - "h" : 388, + "h" : 1200, "resize" : "fit", - "w" : 340 - }, { - "h" : 1168, - "resize" : "fit", - "w" : 1024 + "w" : 1052 }, { "h" : 3072, "resize" : "fit", "w" : 2694 - }, { - "h" : 684, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 596 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1796 } ], "display_url" : "pic.twitter.com\/RxfknHjBv8" } ], @@ -4898,7 +4898,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Se\u00F1or Yak Shaver\uD83C\uDDF3\uD83C\uDDF1", + "name" : "Tane Piper", "screen_name" : "tanepiper", "indices" : [ 0, 10 ], "id_str" : "20693", @@ -4910,7 +4910,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "815114", "id" : 815114 }, { - "name" : "jEnNIAC", + "name" : "daddy long legs", "screen_name" : "jennschiffer", "indices" : [ 23, 36 ], "id_str" : "12524622", @@ -4949,7 +4949,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "815114", "id" : 815114 }, { - "name" : "jEnNIAC", + "name" : "daddy long legs", "screen_name" : "jennschiffer", "indices" : [ 53, 66 ], "id_str" : "12524622", @@ -4969,7 +4969,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jEnNIAC", + "name" : "daddy long legs", "screen_name" : "jennschiffer", "indices" : [ 37, 50 ], "id_str" : "12524622", @@ -5529,7 +5529,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "wycats", "protected" : false, "id_str" : "8526432", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3250074047\/46d910af94e25187832cb4a3bc84b2b5_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/861010112852262912\/nbPZKMyR_normal.jpg", "id" : 8526432, "verified" : true } @@ -5680,7 +5680,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "Jury", "protected" : false, "id_str" : "10754282", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/831016614367596544\/qtZ4hf1J_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/860250636650033153\/Uk3h2vm7_normal.jpg", "id" : 10754282, "verified" : false } @@ -6086,7 +6086,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 0, 11 ], "id_str" : "2911221", @@ -6125,7 +6125,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 3, 14 ], "id_str" : "2911221", @@ -6164,7 +6164,7 @@ Grailbird.data.tweets_2014_01 = "id" : 420013592436436992, "created_at" : "2014-01-06 02:06:58 +0000", "user" : { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", @@ -6373,7 +6373,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "5637652", "id" : 5637652 }, { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 14, 25 ], "id_str" : "2911221", @@ -6526,7 +6526,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -6553,7 +6553,7 @@ Grailbird.data.tweets_2014_01 = "id" : 418838732528029696, "created_at" : "2014-01-02 20:18:30 +0000", "user" : { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", @@ -6610,7 +6610,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -6637,11 +6637,11 @@ Grailbird.data.tweets_2014_01 = "id" : 418279119533932545, "created_at" : "2014-01-01 07:14:48 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } diff --git a/public/tweets/data/js/tweets/2014_02.js b/public/tweets/data/js/tweets/2014_02.js index bd6fe0a..7e3729f 100755 --- a/public/tweets/data/js/tweets/2014_02.js +++ b/public/tweets/data/js/tweets/2014_02.js @@ -281,10 +281,6 @@ Grailbird.data.tweets_2014_02 = "id" : 439319862863618049, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BhjHFnDCYAERS1q.png", "sizes" : [ { - "h" : 221, - "resize" : "fit", - "w" : 340 - }, { "h" : 352, "resize" : "fit", "w" : 541 @@ -300,6 +296,10 @@ Grailbird.data.tweets_2014_02 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 352, + "resize" : "fit", + "w" : 541 } ], "display_url" : "pic.twitter.com\/8AMBJxl20t" } ], @@ -380,7 +380,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Changed name again", + "name" : "|\\_Juha_\/|", "screen_name" : "juhasaarinen", "indices" : [ 3, 16 ], "id_str" : "15829574", @@ -395,6 +395,14 @@ Grailbird.data.tweets_2014_02 = "id" : 439176400524681217, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BhhEnAMCIAE_z3J.png", "sizes" : [ { + "h" : 199, + "resize" : "fit", + "w" : 640 + }, { + "h" : 199, + "resize" : "fit", + "w" : 640 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -402,14 +410,6 @@ Grailbird.data.tweets_2014_02 = "h" : 199, "resize" : "fit", "w" : 640 - }, { - "h" : 106, - "resize" : "fit", - "w" : 340 - }, { - "h" : 187, - "resize" : "fit", - "w" : 600 }, { "h" : 199, "resize" : "fit", @@ -436,6 +436,14 @@ Grailbird.data.tweets_2014_02 = "id" : 439176400524681217, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BhhEnAMCIAE_z3J.png", "sizes" : [ { + "h" : 199, + "resize" : "fit", + "w" : 640 + }, { + "h" : 199, + "resize" : "fit", + "w" : 640 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -443,14 +451,6 @@ Grailbird.data.tweets_2014_02 = "h" : 199, "resize" : "fit", "w" : 640 - }, { - "h" : 106, - "resize" : "fit", - "w" : 340 - }, { - "h" : 187, - "resize" : "fit", - "w" : 600 }, { "h" : 199, "resize" : "fit", @@ -467,11 +467,11 @@ Grailbird.data.tweets_2014_02 = "id" : 439176400696659969, "created_at" : "2014-02-27 23:13:08 +0000", "user" : { - "name" : "Changed name again", + "name" : "|\\_Juha_\/|", "screen_name" : "juhasaarinen", "protected" : false, "id_str" : "15829574", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/837399941710426112\/BadfXhJp_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918299092547018752\/dpB7TOLK_normal.jpg", "id" : 15829574, "verified" : true } @@ -708,7 +708,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Michelle Tilley", + "name" : "0x3373706f6f7079", "screen_name" : "BinaryMuse", "indices" : [ 0, 11 ], "id_str" : "5511322", @@ -1067,7 +1067,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -1085,7 +1085,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "14350255", "id" : 14350255 }, { - "name" : "npmbot", + "name" : "npm, Inc.", "screen_name" : "npmjs", "indices" : [ 27, 33 ], "id_str" : "309528017", @@ -1114,7 +1114,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "14350255", "id" : 14350255 }, { - "name" : "npmbot", + "name" : "npm, Inc.", "screen_name" : "npmjs", "indices" : [ 18, 24 ], "id_str" : "309528017", @@ -1135,11 +1135,11 @@ Grailbird.data.tweets_2014_02 = "in_reply_to_screen_name" : "indutny", "in_reply_to_user_id_str" : "92915570", "user" : { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/765345750427414529\/hxSFDEmc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917536371085950976\/MIuNwAAR_normal.png", "id" : 8038312, "verified" : true } @@ -1398,9 +1398,9 @@ Grailbird.data.tweets_2014_02 = "resize" : "fit", "w" : 600 }, { - "h" : 188, + "h" : 331, "resize" : "fit", - "w" : 340 + "w" : 600 }, { "h" : 331, "resize" : "fit", @@ -1439,9 +1439,9 @@ Grailbird.data.tweets_2014_02 = "resize" : "fit", "w" : 600 }, { - "h" : 188, + "h" : 331, "resize" : "fit", - "w" : 340 + "w" : 600 }, { "h" : 331, "resize" : "fit", @@ -1462,7 +1462,7 @@ Grailbird.data.tweets_2014_02 = "screen_name" : "appcode", "protected" : false, "id_str" : "256494877", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/674917260360716288\/NnF53gvw_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877581182870966273\/i8Xhoshk_normal.jpg", "id" : 256494877, "verified" : false } @@ -1923,14 +1923,14 @@ Grailbird.data.tweets_2014_02 = "h" : 668, "resize" : "fit", "w" : 500 + }, { + "h" : 668, + "resize" : "fit", + "w" : 500 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 454, - "resize" : "fit", - "w" : 340 }, { "h" : 668, "resize" : "fit", @@ -1964,14 +1964,14 @@ Grailbird.data.tweets_2014_02 = "h" : 668, "resize" : "fit", "w" : 500 + }, { + "h" : 668, + "resize" : "fit", + "w" : 500 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 454, - "resize" : "fit", - "w" : 340 }, { "h" : 668, "resize" : "fit", @@ -2351,7 +2351,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -2734,7 +2734,7 @@ Grailbird.data.tweets_2014_02 = "screen_name" : "benschwarz", "protected" : false, "id_str" : "14431882", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/720362620650266624\/CgJH0nOi_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/890548072509358082\/1UgNSB6W_normal.jpg", "id" : 14431882, "verified" : false } @@ -3057,7 +3057,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Anil Dash", + "name" : "Spooky Anil Dash \uD83C\uDF83", "screen_name" : "anildash", "indices" : [ 3, 12 ], "id_str" : "36823", @@ -3084,11 +3084,11 @@ Grailbird.data.tweets_2014_02 = "id" : 435547057408212993, "created_at" : "2014-02-17 22:51:25 +0000", "user" : { - "name" : "Anil Dash", + "name" : "Spooky Anil Dash \uD83C\uDF83", "screen_name" : "anildash", "protected" : false, "id_str" : "36823", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/786179830266167296\/AmZpJJLv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915191237338177536\/cZoGK6nh_normal.jpg", "id" : 36823, "verified" : true } @@ -3242,6 +3242,10 @@ Grailbird.data.tweets_2014_02 = "h" : 504, "resize" : "fit", "w" : 500 + }, { + "h" : 504, + "resize" : "fit", + "w" : 500 }, { "h" : 150, "resize" : "crop", @@ -3254,10 +3258,6 @@ Grailbird.data.tweets_2014_02 = "h" : 504, "resize" : "fit", "w" : 500 - }, { - "h" : 343, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/ylFLR107Pk" } ], @@ -3283,6 +3283,10 @@ Grailbird.data.tweets_2014_02 = "h" : 504, "resize" : "fit", "w" : 500 + }, { + "h" : 504, + "resize" : "fit", + "w" : 500 }, { "h" : 150, "resize" : "crop", @@ -3295,10 +3299,6 @@ Grailbird.data.tweets_2014_02 = "h" : 504, "resize" : "fit", "w" : 500 - }, { - "h" : 343, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/ylFLR107Pk" } ], @@ -3667,7 +3667,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 0, 14 ], "id_str" : "16472748", @@ -3766,7 +3766,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 0, 14 ], "id_str" : "16472748", @@ -4184,6 +4184,10 @@ Grailbird.data.tweets_2014_02 = "h" : 407, "resize" : "fit", "w" : 443 + }, { + "h" : 407, + "resize" : "fit", + "w" : 443 }, { "h" : 150, "resize" : "crop", @@ -4192,10 +4196,6 @@ Grailbird.data.tweets_2014_02 = "h" : 407, "resize" : "fit", "w" : 443 - }, { - "h" : 312, - "resize" : "fit", - "w" : 340 }, { "h" : 407, "resize" : "fit", @@ -4225,6 +4225,10 @@ Grailbird.data.tweets_2014_02 = "h" : 407, "resize" : "fit", "w" : 443 + }, { + "h" : 407, + "resize" : "fit", + "w" : 443 }, { "h" : 150, "resize" : "crop", @@ -4233,10 +4237,6 @@ Grailbird.data.tweets_2014_02 = "h" : 407, "resize" : "fit", "w" : 443 - }, { - "h" : 312, - "resize" : "fit", - "w" : 340 }, { "h" : 407, "resize" : "fit", @@ -4298,17 +4298,17 @@ Grailbird.data.tweets_2014_02 = "id" : 434249935140446208, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BgbEA-fIYAAL7ao.jpg", "sizes" : [ { - "h" : 768, + "h" : 972, "resize" : "fit", - "w" : 1024 + "w" : 1296 }, { - "h" : 450, + "h" : 510, "resize" : "fit", - "w" : 600 + "w" : 680 }, { - "h" : 255, + "h" : 900, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { "h" : 972, "resize" : "fit", @@ -4345,17 +4345,17 @@ Grailbird.data.tweets_2014_02 = "id" : 434249935140446208, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BgbEA-fIYAAL7ao.jpg", "sizes" : [ { - "h" : 768, + "h" : 972, "resize" : "fit", - "w" : 1024 + "w" : 1296 }, { - "h" : 450, + "h" : 510, "resize" : "fit", - "w" : 600 + "w" : 680 }, { - "h" : 255, + "h" : 900, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { "h" : 972, "resize" : "fit", @@ -4676,9 +4676,13 @@ Grailbird.data.tweets_2014_02 = "id" : 434112678269693952, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BgZHLkzCMAAXfDA.png", "sizes" : [ { - "h" : 232, + "h" : 504, "resize" : "fit", - "w" : 340 + "w" : 740 + }, { + "h" : 463, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -4687,10 +4691,6 @@ Grailbird.data.tweets_2014_02 = "h" : 504, "resize" : "fit", "w" : 740 - }, { - "h" : 409, - "resize" : "fit", - "w" : 600 }, { "h" : 504, "resize" : "fit", @@ -4717,9 +4717,13 @@ Grailbird.data.tweets_2014_02 = "id" : 434112678269693952, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BgZHLkzCMAAXfDA.png", "sizes" : [ { - "h" : 232, + "h" : 504, "resize" : "fit", - "w" : 340 + "w" : 740 + }, { + "h" : 463, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -4728,10 +4732,6 @@ Grailbird.data.tweets_2014_02 = "h" : 504, "resize" : "fit", "w" : 740 - }, { - "h" : 409, - "resize" : "fit", - "w" : 600 }, { "h" : 504, "resize" : "fit", @@ -4772,7 +4772,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Alex's Matchneer", + "name" : "Alex Matchneer", "screen_name" : "machty", "indices" : [ 0, 7 ], "id_str" : "18740111", @@ -5329,21 +5329,21 @@ Grailbird.data.tweets_2014_02 = "resize" : "crop", "w" : 150 }, { - "h" : 307, + "h" : 614, "resize" : "fit", - "w" : 340 - }, { - "h" : 542, - "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 930, "resize" : "fit", "w" : 1030 }, { - "h" : 925, + "h" : 930, "resize" : "fit", - "w" : 1024 + "w" : 1030 + }, { + "h" : 930, + "resize" : "fit", + "w" : 1030 } ], "display_url" : "pic.twitter.com\/DiqYFKSal6" } ], @@ -5370,21 +5370,21 @@ Grailbird.data.tweets_2014_02 = "resize" : "crop", "w" : 150 }, { - "h" : 307, + "h" : 614, "resize" : "fit", - "w" : 340 - }, { - "h" : 542, - "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 930, "resize" : "fit", "w" : 1030 }, { - "h" : 925, + "h" : 930, "resize" : "fit", - "w" : 1024 + "w" : 1030 + }, { + "h" : 930, + "resize" : "fit", + "w" : 1030 } ], "display_url" : "pic.twitter.com\/DiqYFKSal6" } ], @@ -5723,7 +5723,7 @@ Grailbird.data.tweets_2014_02 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1282173124\/untitled-158-2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", "id" : 14231571, "verified" : true } @@ -5877,7 +5877,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -6108,7 +6108,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -6135,11 +6135,11 @@ Grailbird.data.tweets_2014_02 = "id" : 431889370959069184, "created_at" : "2014-02-07 20:37:04 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -6662,7 +6662,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Taras Mankovski", + "name" : "Ember Sherpa", "screen_name" : "embersherpa", "indices" : [ 0, 12 ], "id_str" : "14427389", @@ -6766,7 +6766,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Taras Mankovski", + "name" : "Ember Sherpa", "screen_name" : "embersherpa", "indices" : [ 3, 15 ], "id_str" : "14427389", @@ -6834,7 +6834,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Taras Mankovski", + "name" : "Ember Sherpa", "screen_name" : "embersherpa", "indices" : [ 3, 15 ], "id_str" : "14427389", @@ -6986,7 +6986,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "432971072", "id" : 432971072 }, { - "name" : "Taras Mankovski", + "name" : "Ember Sherpa", "screen_name" : "embersherpa", "indices" : [ 112, 124 ], "id_str" : "14427389", @@ -7115,14 +7115,14 @@ Grailbird.data.tweets_2014_02 = "h" : 1024, "resize" : "fit", "w" : 577 - }, { - "h" : 603, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 }, { "h" : 1024, "resize" : "fit", diff --git a/public/tweets/data/js/tweets/2014_03.js b/public/tweets/data/js/tweets/2014_03.js index df98525..a9232f7 100755 --- a/public/tweets/data/js/tweets/2014_03.js +++ b/public/tweets/data/js/tweets/2014_03.js @@ -471,10 +471,6 @@ Grailbird.data.tweets_2014_03 = "h" : 319, "resize" : "fit", "w" : 730 - }, { - "h" : 262, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", @@ -484,9 +480,13 @@ Grailbird.data.tweets_2014_03 = "resize" : "fit", "w" : 730 }, { - "h" : 149, + "h" : 319, "resize" : "fit", - "w" : 340 + "w" : 730 + }, { + "h" : 297, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/5ApJmuAcJT" } ], @@ -522,10 +522,6 @@ Grailbird.data.tweets_2014_03 = "h" : 319, "resize" : "fit", "w" : 730 - }, { - "h" : 262, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", @@ -535,9 +531,13 @@ Grailbird.data.tweets_2014_03 = "resize" : "fit", "w" : 730 }, { - "h" : 149, + "h" : 319, "resize" : "fit", - "w" : 340 + "w" : 730 + }, { + "h" : 297, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/5ApJmuAcJT" } ], @@ -584,7 +584,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "DAMN.", + "name" : "fitzgenerational gc", "screen_name" : "fitzgen", "indices" : [ 3, 11 ], "id_str" : "182855710", @@ -627,7 +627,7 @@ Grailbird.data.tweets_2014_03 = "id" : 449641605461331968, "created_at" : "2014-03-28 20:18:07 +0000", "user" : { - "name" : "DAMN.", + "name" : "fitzgenerational gc", "screen_name" : "fitzgen", "protected" : false, "id_str" : "182855710", @@ -730,7 +730,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "108814849", "id" : 108814849 }, { - "name" : "tef", + "name" : "systemicd", "screen_name" : "tef", "indices" : [ 12, 16 ], "id_str" : "16681276", @@ -763,7 +763,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "tef", + "name" : "systemicd", "screen_name" : "tef", "indices" : [ 0, 4 ], "id_str" : "16681276", @@ -1626,7 +1626,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 0, 4 ], "id_str" : "12712742", @@ -3324,7 +3324,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 14, 25 ], "id_str" : "2911221", @@ -3341,7 +3341,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 0, 11 ], "id_str" : "2911221", @@ -3868,7 +3868,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "3140856846", "id" : 3140856846 }, { - "name" : "Matt Drance", + "name" : "U bum", "screen_name" : "drance", "indices" : [ 10, 17 ], "id_str" : "7440462", @@ -3907,7 +3907,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "3140856846", "id" : 3140856846 }, { - "name" : "Matt Drance", + "name" : "U bum", "screen_name" : "drance", "indices" : [ 10, 17 ], "id_str" : "7440462", @@ -3988,9 +3988,13 @@ Grailbird.data.tweets_2014_03 = "id" : 444409258843451392, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Birb3chCMAAl8-T.png", "sizes" : [ { - "h" : 316, + "h" : 344, "resize" : "fit", - "w" : 600 + "w" : 654 + }, { + "h" : 344, + "resize" : "fit", + "w" : 654 }, { "h" : 150, "resize" : "crop", @@ -4003,10 +4007,6 @@ Grailbird.data.tweets_2014_03 = "h" : 344, "resize" : "fit", "w" : 654 - }, { - "h" : 179, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/MqGLd7AhoE" } ], @@ -4034,9 +4034,13 @@ Grailbird.data.tweets_2014_03 = "id" : 444409258843451392, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Birb3chCMAAl8-T.png", "sizes" : [ { - "h" : 316, + "h" : 344, "resize" : "fit", - "w" : 600 + "w" : 654 + }, { + "h" : 344, + "resize" : "fit", + "w" : 654 }, { "h" : 150, "resize" : "crop", @@ -4049,10 +4053,6 @@ Grailbird.data.tweets_2014_03 = "h" : 344, "resize" : "fit", "w" : 654 - }, { - "h" : 179, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/MqGLd7AhoE" } ], @@ -4146,7 +4146,7 @@ Grailbird.data.tweets_2014_03 = "entities" : { "user_mentions" : [ { "name" : "Josh Helfferich", - "screen_name" : "joshhelfferich", + "screen_name" : "JoshHelfferich", "indices" : [ 3, 18 ], "id_str" : "563200400", "id" : 563200400 @@ -4183,7 +4183,7 @@ Grailbird.data.tweets_2014_03 = "created_at" : "2014-03-14 23:13:45 +0000", "user" : { "name" : "Josh Helfferich", - "screen_name" : "joshhelfferich", + "screen_name" : "JoshHelfferich", "protected" : false, "id_str" : "563200400", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/501786728563093504\/H7lzbmtW_normal.jpeg", @@ -4650,9 +4650,9 @@ Grailbird.data.tweets_2014_03 = "resize" : "fit", "w" : 400 }, { - "h" : 224, + "h" : 264, "resize" : "fit", - "w" : 340 + "w" : 400 } ], "display_url" : "pic.twitter.com\/Av0Sv27af7" } ], @@ -4691,9 +4691,9 @@ Grailbird.data.tweets_2014_03 = "resize" : "fit", "w" : 400 }, { - "h" : 224, + "h" : 264, "resize" : "fit", - "w" : 340 + "w" : 400 } ], "display_url" : "pic.twitter.com\/Av0Sv27af7" } ], @@ -5332,7 +5332,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Taras Mankovski", + "name" : "Ember Sherpa", "screen_name" : "embersherpa", "indices" : [ 0, 12 ], "id_str" : "14427389", @@ -5549,7 +5549,7 @@ Grailbird.data.tweets_2014_03 = "screen_name" : "feedbin", "protected" : false, "id_str" : "1170518132", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3548592823\/74e01c864c70f25b5efad42a1c324c69_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/897897663223406593\/ozNDxpG5_normal.jpg", "id" : 1170518132, "verified" : true } @@ -5652,13 +5652,13 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Glenn Fleishman", + "name" : "Glenn Fleishman \uD83D\uDC4B\uD83D\uDEA8\uD83D\uDE91", "screen_name" : "GlennF", "indices" : [ 0, 7 ], "id_str" : "8315692", "id" : 8315692 }, { - "name" : "Jenni Leder \uD83D\uDC69\uD83C\uDFFB\u200D\uD83C\uDFA4", + "name" : "The Jennilator\uD83C\uDF83", "screen_name" : "thoughtbrain", "indices" : [ 8, 21 ], "id_str" : "14303235", @@ -5670,7 +5670,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "717313", "id" : 717313 }, { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 35, 49 ], "id_str" : "16472748", @@ -5703,13 +5703,13 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Glenn Fleishman", + "name" : "Glenn Fleishman \uD83D\uDC4B\uD83D\uDEA8\uD83D\uDE91", "screen_name" : "GlennF", "indices" : [ 0, 7 ], "id_str" : "8315692", "id" : 8315692 }, { - "name" : "Jenni Leder \uD83D\uDC69\uD83C\uDFFB\u200D\uD83C\uDFA4", + "name" : "The Jennilator\uD83C\uDF83", "screen_name" : "thoughtbrain", "indices" : [ 8, 21 ], "id_str" : "14303235", @@ -5721,7 +5721,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "717313", "id" : 717313 }, { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 35, 49 ], "id_str" : "16472748", @@ -6041,14 +6041,14 @@ Grailbird.data.tweets_2014_03 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 - }, { - "h" : 603, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/YpV9EEd18i" } ], @@ -6110,14 +6110,14 @@ Grailbird.data.tweets_2014_03 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 - }, { - "h" : 603, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/GCdL72YSKO" } ], @@ -6665,25 +6665,25 @@ Grailbird.data.tweets_2014_03 = "id" : 441758366939881472, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BiFw5OoCIAANTvS.png", "sizes" : [ { - "h" : 404, + "h" : 1052, "resize" : "fit", - "w" : 600 + "w" : 1564 + }, { + "h" : 807, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 229, + "h" : 457, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 1052, "resize" : "fit", "w" : 1564 - }, { - "h" : 689, - "resize" : "fit", - "w" : 1024 } ], "display_url" : "pic.twitter.com\/GjKYJZBYZi" } ], @@ -6712,25 +6712,25 @@ Grailbird.data.tweets_2014_03 = "id" : 441758366939881472, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BiFw5OoCIAANTvS.png", "sizes" : [ { - "h" : 404, + "h" : 1052, "resize" : "fit", - "w" : 600 + "w" : 1564 + }, { + "h" : 807, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 229, + "h" : 457, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 1052, "resize" : "fit", "w" : 1564 - }, { - "h" : 689, - "resize" : "fit", - "w" : 1024 } ], "display_url" : "pic.twitter.com\/GjKYJZBYZi" } ], @@ -6750,7 +6750,7 @@ Grailbird.data.tweets_2014_03 = "screen_name" : "KhaosT", "protected" : false, "id_str" : "16167171", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/667222477618081792\/J6pmwL0R_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/898696554273423360\/SucCPkMT_normal.jpg", "id" : 16167171, "verified" : false } @@ -7286,13 +7286,13 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Michael Brown \uD83D\uDCCE", + "name" : "Spooky Mathie \uD83D\uDCCE", "screen_name" : "Supermathie", "indices" : [ 3, 15 ], "id_str" : "17052596", "id" : 17052596 }, { - "name" : "Melissa \uD83D\uDD6F", + "name" : "Melissa \uD83D\uDD14\uD83D\uDCD6\uD83D\uDD6F", "screen_name" : "0xabad1dea", "indices" : [ 18, 29 ], "id_str" : "126030998", @@ -7309,7 +7309,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/backtoblaq.com\" rel=\"nofollow\"\u003EBlaq for BlackBerry\u00AE 10\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Melissa \uD83D\uDD6F", + "name" : "Melissa \uD83D\uDD14\uD83D\uDCD6\uD83D\uDD6F", "screen_name" : "0xabad1dea", "indices" : [ 1, 12 ], "id_str" : "126030998", @@ -7330,7 +7330,7 @@ Grailbird.data.tweets_2014_03 = "in_reply_to_screen_name" : "0xabad1dea", "in_reply_to_user_id_str" : "126030998", "user" : { - "name" : "Michael Brown \uD83D\uDCCE", + "name" : "Spooky Mathie \uD83D\uDCCE", "screen_name" : "Supermathie", "protected" : false, "id_str" : "17052596", @@ -7764,7 +7764,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeremy Daer \u274E", + "name" : "J\u1D07\u0280\u1D07\u1D0Dy D\u1D00\u1D07\u0280", "screen_name" : "bitsweat", "indices" : [ 0, 9 ], "id_str" : "9462972", @@ -7803,7 +7803,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeremy Daer \u274E", + "name" : "J\u1D07\u0280\u1D07\u1D0Dy D\u1D00\u1D07\u0280", "screen_name" : "bitsweat", "indices" : [ 3, 12 ], "id_str" : "9462972", @@ -7840,7 +7840,7 @@ Grailbird.data.tweets_2014_03 = "id" : 440647299165745152, "created_at" : "2014-03-04 00:37:57 +0000", "user" : { - "name" : "Jeremy Daer \u274E", + "name" : "J\u1D07\u0280\u1D07\u1D0Dy D\u1D00\u1D07\u0280", "screen_name" : "bitsweat", "protected" : false, "id_str" : "9462972", @@ -7992,7 +7992,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "15816595", "id" : 15816595 }, { - "name" : "Matt Drance", + "name" : "U bum", "screen_name" : "drance", "indices" : [ 13, 20 ], "id_str" : "7440462", @@ -8056,7 +8056,7 @@ Grailbird.data.tweets_2014_03 = "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/767372427026464768\/5Prq7opQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918433182906830848\/NwsKygmV_normal.jpg", "id" : 6927562, "verified" : true } @@ -8082,7 +8082,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "968881477", "id" : 968881477 }, { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 8, 12 ], "id_str" : "12712742", @@ -8127,7 +8127,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "636923", "id" : 636923 }, { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 14, 28 ], "id_str" : "16472748", @@ -8144,7 +8144,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 0, 14 ], "id_str" : "16472748", @@ -8354,13 +8354,13 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", "id" : 8038312 }, { - "name" : "npmbot", + "name" : "npm, Inc.", "screen_name" : "npmjs", "indices" : [ 5, 11 ], "id_str" : "309528017", @@ -8399,13 +8399,13 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", "id" : 8038312 }, { - "name" : "npmbot", + "name" : "npm, Inc.", "screen_name" : "npmjs", "indices" : [ 5, 11 ], "id_str" : "309528017", @@ -8444,13 +8444,13 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", "id" : 8038312 }, { - "name" : "npmbot", + "name" : "npm, Inc.", "screen_name" : "npmjs", "indices" : [ 5, 11 ], "id_str" : "309528017", @@ -8489,13 +8489,13 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", "id" : 8038312 }, { - "name" : "npmbot", + "name" : "npm, Inc.", "screen_name" : "npmjs", "indices" : [ 5, 11 ], "id_str" : "309528017", @@ -8539,13 +8539,13 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs", + "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", "id" : 8038312 }, { - "name" : "npmbot", + "name" : "npm, Inc.", "screen_name" : "npmjs", "indices" : [ 5, 11 ], "id_str" : "309528017", diff --git a/public/tweets/data/js/tweets/2014_04.js b/public/tweets/data/js/tweets/2014_04.js index 59ae734..6c4c243 100755 --- a/public/tweets/data/js/tweets/2014_04.js +++ b/public/tweets/data/js/tweets/2014_04.js @@ -193,11 +193,11 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cloak", + "name" : "GetCloak.com", "screen_name" : "getcloak", "indices" : [ 1, 10 ], - "id_str" : "271545671", - "id" : 271545671 + "id_str" : "1255560680", + "id" : 1255560680 } ], "media" : [ ], "hashtags" : [ ], @@ -211,7 +211,7 @@ Grailbird.data.tweets_2014_04 = "id" : 461565299263680512, "in_reply_to_status_id" : 461563830196129792, "created_at" : "2014-04-30 17:58:37 +0000", - "in_reply_to_screen_name" : "getcloak", + "in_reply_to_screen_name" : "encryptme", "in_reply_to_user_id_str" : "271545671", "user" : { "name" : "Sami Samhuri", @@ -334,6 +334,10 @@ Grailbird.data.tweets_2014_04 = "id" : 461367329784201216, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmcbJFrCAAAFdVp.png", "sizes" : [ { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -341,18 +345,14 @@ Grailbird.data.tweets_2014_04 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 450, + "h" : 510, "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/6yz4y5uiJ6" } ], @@ -419,14 +419,6 @@ Grailbird.data.tweets_2014_04 = "id" : 461332658794942464, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bmb7m-LCUAAW6hV.jpg", "sizes" : [ { - "h" : 435, - "resize" : "fit", - "w" : 340 - }, { - "h" : 767, - "resize" : "fit", - "w" : 600 - }, { "h" : 1840, "resize" : "fit", "w" : 1439 @@ -435,9 +427,17 @@ Grailbird.data.tweets_2014_04 = "resize" : "crop", "w" : 150 }, { - "h" : 1309, + "h" : 680, "resize" : "fit", - "w" : 1024 + "w" : 532 + }, { + "h" : 1840, + "resize" : "fit", + "w" : 1439 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 938 } ], "display_url" : "pic.twitter.com\/Sh0xYcTXIx" } ], @@ -463,14 +463,6 @@ Grailbird.data.tweets_2014_04 = "id" : 461332658794942464, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bmb7m-LCUAAW6hV.jpg", "sizes" : [ { - "h" : 435, - "resize" : "fit", - "w" : 340 - }, { - "h" : 767, - "resize" : "fit", - "w" : 600 - }, { "h" : 1840, "resize" : "fit", "w" : 1439 @@ -479,9 +471,17 @@ Grailbird.data.tweets_2014_04 = "resize" : "crop", "w" : 150 }, { - "h" : 1309, + "h" : 680, "resize" : "fit", - "w" : 1024 + "w" : 532 + }, { + "h" : 1840, + "resize" : "fit", + "w" : 1439 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 938 } ], "display_url" : "pic.twitter.com\/Sh0xYcTXIx" } ], @@ -501,7 +501,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "KarynStepien", "protected" : false, "id_str" : "15954961", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855080645998985216\/YTY37uWA_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903641453246779393\/e2nvAeoR_normal.jpg", "id" : 15954961, "verified" : false } @@ -609,17 +609,13 @@ Grailbird.data.tweets_2014_04 = "id" : 461331186627780608, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bmb6RR7CIAAicFF.jpg", "sizes" : [ { - "h" : 227, + "h" : 800, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { - "h" : 683, + "h" : 453, "resize" : "fit", - "w" : 1024 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 1365, "resize" : "fit", @@ -628,6 +624,10 @@ Grailbird.data.tweets_2014_04 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1365, + "resize" : "fit", + "w" : 2048 } ], "display_url" : "pic.twitter.com\/tG5THAbTLt" } ], @@ -656,17 +656,13 @@ Grailbird.data.tweets_2014_04 = "id" : 461331186627780608, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bmb6RR7CIAAicFF.jpg", "sizes" : [ { - "h" : 227, + "h" : 800, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { - "h" : 683, + "h" : 453, "resize" : "fit", - "w" : 1024 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 1365, "resize" : "fit", @@ -675,6 +671,10 @@ Grailbird.data.tweets_2014_04 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1365, + "resize" : "fit", + "w" : 2048 } ], "display_url" : "pic.twitter.com\/tG5THAbTLt" } ], @@ -697,7 +697,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "KarynStepien", "protected" : false, "id_str" : "15954961", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855080645998985216\/YTY37uWA_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903641453246779393\/e2nvAeoR_normal.jpg", "id" : 15954961, "verified" : false } @@ -751,6 +751,10 @@ Grailbird.data.tweets_2014_04 = "id" : 461327263288422400, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bmb2s6WCcAASgZf.png", "sizes" : [ { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -758,18 +762,14 @@ Grailbird.data.tweets_2014_04 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 450, + "h" : 510, "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/Hc6jJAWUWm" } ], @@ -1011,21 +1011,21 @@ Grailbird.data.tweets_2014_04 = "id" : 460929898563915777, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmWNTPZCUAEVhvg.png", "sizes" : [ { - "h" : 464, + "h" : 927, "resize" : "fit", - "w" : 600 + "w" : 1200 + }, { + "h" : 525, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 791, + "h" : 1583, "resize" : "fit", - "w" : 1024 - }, { - "h" : 263, - "resize" : "fit", - "w" : 340 + "w" : 2048 }, { "h" : 2550, "resize" : "fit", @@ -1064,21 +1064,21 @@ Grailbird.data.tweets_2014_04 = "id" : 460929898563915777, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmWNTPZCUAEVhvg.png", "sizes" : [ { - "h" : 464, + "h" : 927, "resize" : "fit", - "w" : 600 + "w" : 1200 + }, { + "h" : 525, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 791, + "h" : 1583, "resize" : "fit", - "w" : 1024 - }, { - "h" : 263, - "resize" : "fit", - "w" : 340 + "w" : 2048 }, { "h" : 2550, "resize" : "fit", @@ -1218,14 +1218,14 @@ Grailbird.data.tweets_2014_04 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 - }, { - "h" : 603, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/mgHf9wUXw4" } ], @@ -1338,9 +1338,9 @@ Grailbird.data.tweets_2014_04 = "id" : 460812301386649600, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmUiWLxIEAAwE6j.jpg", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 900 }, { "h" : 2048, "resize" : "fit", @@ -1350,13 +1350,13 @@ Grailbird.data.tweets_2014_04 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1536 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/JXVOiU8Ghm" } ], @@ -1662,6 +1662,10 @@ Grailbird.data.tweets_2014_04 = "id" : 460067558708621312, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmJ9AdGCMAAN2c7.png", "sizes" : [ { + "h" : 219, + "resize" : "fit", + "w" : 680 + }, { "h" : 244, "resize" : "fit", "w" : 756 @@ -1674,13 +1678,9 @@ Grailbird.data.tweets_2014_04 = "resize" : "fit", "w" : 756 }, { - "h" : 194, + "h" : 244, "resize" : "fit", - "w" : 600 - }, { - "h" : 110, - "resize" : "fit", - "w" : 340 + "w" : 756 } ], "display_url" : "pic.twitter.com\/xHjZYWKbG5" } ], @@ -1703,6 +1703,10 @@ Grailbird.data.tweets_2014_04 = "id" : 460067558708621312, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmJ9AdGCMAAN2c7.png", "sizes" : [ { + "h" : 219, + "resize" : "fit", + "w" : 680 + }, { "h" : 244, "resize" : "fit", "w" : 756 @@ -1715,13 +1719,9 @@ Grailbird.data.tweets_2014_04 = "resize" : "fit", "w" : 756 }, { - "h" : 194, + "h" : 244, "resize" : "fit", - "w" : 600 - }, { - "h" : 110, - "resize" : "fit", - "w" : 340 + "w" : 756 } ], "display_url" : "pic.twitter.com\/xHjZYWKbG5" } ], @@ -2398,17 +2398,9 @@ Grailbird.data.tweets_2014_04 = "id" : 459735665744162816, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmFPJvdCMAAyqCj.jpg", "sizes" : [ { - "h" : 591, + "h" : 392, "resize" : "fit", - "w" : 1024 - }, { - "h" : 346, - "resize" : "fit", - "w" : 600 - }, { - "h" : 196, - "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -2417,6 +2409,14 @@ Grailbird.data.tweets_2014_04 = "h" : 646, "resize" : "fit", "w" : 1120 + }, { + "h" : 646, + "resize" : "fit", + "w" : 1120 + }, { + "h" : 646, + "resize" : "fit", + "w" : 1120 } ], "display_url" : "pic.twitter.com\/KSYCjVXOlA" } ], @@ -2438,7 +2438,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "NewsWhip", "protected" : false, "id_str" : "132573995", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000408847351\/c5cc1faee8dda9002c278787f3efb358_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/875726528654565377\/7-YG8dYM_normal.jpg", "id" : 132573995, "verified" : false } @@ -2537,9 +2537,13 @@ Grailbird.data.tweets_2014_04 = "id" : 459443634866094081, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmBFjTqCAAE_Ytz.png", "sizes" : [ { - "h" : 426, + "h" : 864, "resize" : "fit", - "w" : 600 + "w" : 1218 + }, { + "h" : 851, + "resize" : "fit", + "w" : 1200 }, { "h" : 864, "resize" : "fit", @@ -2549,13 +2553,9 @@ Grailbird.data.tweets_2014_04 = "resize" : "crop", "w" : 150 }, { - "h" : 241, + "h" : 482, "resize" : "fit", - "w" : 340 - }, { - "h" : 726, - "resize" : "fit", - "w" : 1024 + "w" : 680 } ], "display_url" : "pic.twitter.com\/wds6zL0ulx" } ], @@ -2716,7 +2716,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 3, 14 ], "id_str" : "2911221", @@ -2750,17 +2750,17 @@ Grailbird.data.tweets_2014_04 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/LmxQ8je8iX" } ], @@ -2776,7 +2776,7 @@ Grailbird.data.tweets_2014_04 = "id" : 459132347313430529, "created_at" : "2014-04-24 00:50:56 +0000", "user" : { - "name" : "Wil Shipley", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", @@ -2800,7 +2800,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 0, 14 ], "id_str" : "16472748", @@ -2833,7 +2833,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 0, 14 ], "id_str" : "16472748", @@ -2864,7 +2864,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 3, 17 ], "id_str" : "16472748", @@ -2879,21 +2879,21 @@ Grailbird.data.tweets_2014_04 = "id" : 457974093917077504, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BlsNAxBCQAA1C8d.jpg", "sizes" : [ { - "h" : 450, + "h" : 900, "resize" : "fit", - "w" : 600 + "w" : 1200 }, { - "h" : 768, + "h" : 1536, "resize" : "fit", - "w" : 1024 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 510, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 2448, "resize" : "fit", @@ -2925,21 +2925,21 @@ Grailbird.data.tweets_2014_04 = "id" : 457974093917077504, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BlsNAxBCQAA1C8d.jpg", "sizes" : [ { - "h" : 450, + "h" : 900, "resize" : "fit", - "w" : 600 + "w" : 1200 }, { - "h" : 768, + "h" : 1536, "resize" : "fit", - "w" : 1024 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 510, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 2448, "resize" : "fit", @@ -2961,7 +2961,7 @@ Grailbird.data.tweets_2014_04 = "id" : 458581588016893952, "created_at" : "2014-04-22 12:22:25 +0000", "user" : { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "protected" : false, "id_str" : "16472748", @@ -3295,6 +3295,10 @@ Grailbird.data.tweets_2014_04 = "id" : 456932266577375233, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BldZebvCMAEqgTo.png", "sizes" : [ { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3302,18 +3306,14 @@ Grailbird.data.tweets_2014_04 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 450, + "h" : 510, "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/Z9AFKnuXDB" } ], @@ -3360,7 +3360,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "hot nodes in yr area", + "name" : "diffie-hellscape \uD83C\uDF5E", "screen_name" : "dijkstracula", "indices" : [ 126, 139 ], "id_str" : "14216743", @@ -3453,9 +3453,9 @@ Grailbird.data.tweets_2014_04 = "id" : 456792570233118720, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BlbabCTIYAA2F1t.jpg", "sizes" : [ { - "h" : 313, + "h" : 528, "resize" : "fit", - "w" : 340 + "w" : 573 }, { "h" : 150, "resize" : "crop", @@ -3499,9 +3499,9 @@ Grailbird.data.tweets_2014_04 = "id" : 456792570233118720, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BlbabCTIYAA2F1t.jpg", "sizes" : [ { - "h" : 313, + "h" : 528, "resize" : "fit", - "w" : 340 + "w" : 573 }, { "h" : 150, "resize" : "crop", @@ -3887,7 +3887,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -3914,11 +3914,11 @@ Grailbird.data.tweets_2014_04 = "id" : 455984070615662592, "created_at" : "2014-04-15 08:20:48 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -4373,7 +4373,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "108814849", "id" : 108814849 }, { - "name" : "Gabe", + "name" : "\uD83C\uDF83Grave\uD83D\uDC80", "screen_name" : "cwgabriel", "indices" : [ 65, 75 ], "id_str" : "14464369", @@ -4390,7 +4390,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/www.myplume.com\/\" rel=\"nofollow\"\u003EPlume\u00A0for\u00A0Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Gabe", + "name" : "\uD83C\uDF83Grave\uD83D\uDC80", "screen_name" : "cwgabriel", "indices" : [ 49, 59 ], "id_str" : "14464369", @@ -4440,12 +4440,6 @@ Grailbird.data.tweets_2014_04 = "indices" : [ 0, 12 ], "id_str" : "21505836", "id" : 21505836 - }, { - "name" : "Beats2", - "screen_name" : "nacran", - "indices" : [ 13, 20 ], - "id_str" : "192514202", - "id" : 192514202 }, { "name" : "Guy English", "screen_name" : "gte", @@ -4486,12 +4480,6 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Beats2", - "screen_name" : "nacran", - "indices" : [ 0, 7 ], - "id_str" : "192514202", - "id" : 192514202 - }, { "name" : "Guy English", "screen_name" : "gte", "indices" : [ 8, 12 ], @@ -4508,16 +4496,11 @@ Grailbird.data.tweets_2014_04 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "454926938151190529", "geo" : { }, "id_str" : "455012289490333696", - "in_reply_to_user_id" : 192514202, "text" : "@nacran @gte @siracusa Nothing, I was referencing the recent Debug episode on which they had a good discussion about this stuff.", "id" : 455012289490333696, - "in_reply_to_status_id" : 454926938151190529, "created_at" : "2014-04-12 15:59:18 +0000", - "in_reply_to_screen_name" : "nacran", - "in_reply_to_user_id_str" : "192514202", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -4655,12 +4638,6 @@ Grailbird.data.tweets_2014_04 = "indices" : [ 0, 12 ], "id_str" : "21505836", "id" : 21505836 - }, { - "name" : "Beats2", - "screen_name" : "nacran", - "indices" : [ 13, 20 ], - "id_str" : "192514202", - "id" : 192514202 }, { "name" : "Guy English", "screen_name" : "gte", @@ -4848,7 +4825,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "tonyarnold", "protected" : false, "id_str" : "640903", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/717164422888759296\/EM9Ly12g_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903269681821130754\/aXVGZb3t_normal.jpg", "id" : 640903, "verified" : false } @@ -5178,10 +5155,6 @@ Grailbird.data.tweets_2014_04 = "id" : 454686842302898176, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bk9fRieCIAA0VT8.png", "sizes" : [ { - "h" : 227, - "resize" : "fit", - "w" : 340 - }, { "h" : 682, "resize" : "fit", "w" : 1023 @@ -5194,9 +5167,13 @@ Grailbird.data.tweets_2014_04 = "resize" : "crop", "w" : 150 }, { - "h" : 400, + "h" : 453, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 682, + "resize" : "fit", + "w" : 1023 } ], "display_url" : "pic.twitter.com\/3rIpwgyXlF" } ], @@ -5225,10 +5202,6 @@ Grailbird.data.tweets_2014_04 = "id" : 454686842302898176, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bk9fRieCIAA0VT8.png", "sizes" : [ { - "h" : 227, - "resize" : "fit", - "w" : 340 - }, { "h" : 682, "resize" : "fit", "w" : 1023 @@ -5241,9 +5214,13 @@ Grailbird.data.tweets_2014_04 = "resize" : "crop", "w" : 150 }, { - "h" : 400, + "h" : 453, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 682, + "resize" : "fit", + "w" : 1023 } ], "display_url" : "pic.twitter.com\/3rIpwgyXlF" } ], @@ -5519,7 +5496,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "mashable", "protected" : false, "id_str" : "972651", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/816703429095538688\/kAo5jTCy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/884451753940451333\/XjbzDyYL_normal.jpg", "id" : 972651, "verified" : true } @@ -6030,25 +6007,25 @@ Grailbird.data.tweets_2014_04 = "id" : 453481816070950912, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BksXTx8CEAAPsSJ.jpg", "sizes" : [ { - "h" : 742, + "h" : 784, "resize" : "fit", - "w" : 1024 + "w" : 1082 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 493, + "resize" : "fit", + "w" : 680 }, { "h" : 784, "resize" : "fit", "w" : 1082 }, { - "h" : 246, + "h" : 784, "resize" : "fit", - "w" : 340 - }, { - "h" : 435, - "resize" : "fit", - "w" : 600 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "w" : 1082 } ], "display_url" : "pic.twitter.com\/0pO8fPEarm" } ], @@ -6083,25 +6060,25 @@ Grailbird.data.tweets_2014_04 = "id" : 453481816070950912, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BksXTx8CEAAPsSJ.jpg", "sizes" : [ { - "h" : 742, + "h" : 784, "resize" : "fit", - "w" : 1024 + "w" : 1082 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 493, + "resize" : "fit", + "w" : 680 }, { "h" : 784, "resize" : "fit", "w" : 1082 }, { - "h" : 246, + "h" : 784, "resize" : "fit", - "w" : 340 - }, { - "h" : 435, - "resize" : "fit", - "w" : 600 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "w" : 1082 } ], "display_url" : "pic.twitter.com\/0pO8fPEarm" } ], @@ -6430,7 +6407,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "KyleHughes", "protected" : false, "id_str" : "10572372", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/774071034165071872\/D5s8QnN8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865582774136127490\/CT9b0fMQ_normal.jpg", "id" : 10572372, "verified" : false } @@ -6491,7 +6468,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -6597,14 +6574,14 @@ Grailbird.data.tweets_2014_04 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 - }, { - "h" : 603, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/RKOAZfPM2X" } ], @@ -6734,7 +6711,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "611823", "id" : 611823 }, { - "name" : "rstevens\u2122", + "name" : "rstevens the porg", "screen_name" : "rstevens", "indices" : [ 120, 129 ], "id_str" : "643653", @@ -6751,7 +6728,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "rstevens\u2122", + "name" : "rstevens the porg", "screen_name" : "rstevens", "indices" : [ 106, 115 ], "id_str" : "643653", @@ -6838,6 +6815,10 @@ Grailbird.data.tweets_2014_04 = "id" : 452156140218875904, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BkZhnSjCAAA7mSZ.png", "sizes" : [ { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -6845,18 +6826,14 @@ Grailbird.data.tweets_2014_04 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 450, + "h" : 510, "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/mazJkIWHzG" } ], @@ -7466,10 +7443,6 @@ Grailbird.data.tweets_2014_04 = "id" : 451592686043033600, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BkRhJ8LCcAAcZFx.png", "sizes" : [ { - "h" : 212, - "resize" : "fit", - "w" : 340 - }, { "h" : 333, "resize" : "fit", "w" : 535 @@ -7485,6 +7458,10 @@ Grailbird.data.tweets_2014_04 = "h" : 333, "resize" : "fit", "w" : 535 + }, { + "h" : 333, + "resize" : "fit", + "w" : 535 } ], "display_url" : "pic.twitter.com\/g8xojSUlsq" } ], @@ -7512,10 +7489,6 @@ Grailbird.data.tweets_2014_04 = "id" : 451592686043033600, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BkRhJ8LCcAAcZFx.png", "sizes" : [ { - "h" : 212, - "resize" : "fit", - "w" : 340 - }, { "h" : 333, "resize" : "fit", "w" : 535 @@ -7531,6 +7504,10 @@ Grailbird.data.tweets_2014_04 = "h" : 333, "resize" : "fit", "w" : 535 + }, { + "h" : 333, + "resize" : "fit", + "w" : 535 } ], "display_url" : "pic.twitter.com\/g8xojSUlsq" } ], @@ -7552,7 +7529,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "simbeckhampson", "protected" : false, "id_str" : "39944598", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/810856962262962178\/8uj82ltU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/874628932246667264\/kxtnt8_A_normal.jpg", "id" : 39944598, "verified" : false } @@ -7809,7 +7786,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "717313", "id" : 717313 }, { - "name" : "select bitch", + "name" : "Casey Johnston", "screen_name" : "caseyjohnston", "indices" : [ 13, 27 ], "id_str" : "16472748", diff --git a/public/tweets/data/js/tweets/2014_05.js b/public/tweets/data/js/tweets/2014_05.js index 4f76729..fab9f3f 100755 --- a/public/tweets/data/js/tweets/2014_05.js +++ b/public/tweets/data/js/tweets/2014_05.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mike Falzone", + "name" : "Christmas-Time Jones", "screen_name" : "MikeFalzone", "indices" : [ 0, 12 ], "id_str" : "15500308", @@ -119,22 +119,22 @@ Grailbird.data.tweets_2014_05 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/J2ZxpJOiSx" } ], @@ -1146,7 +1146,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -1304,25 +1304,25 @@ Grailbird.data.tweets_2014_05 = "id" : 471325184494796800, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bop7whOCAAAlvHg.jpg", "sizes" : [ { - "h" : 1024, + "h" : 1224, "resize" : "fit", - "w" : 1024 + "w" : 1224 }, { "h" : 1224, "resize" : "fit", "w" : 1224 }, { - "h" : 340, + "h" : 1200, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 600, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/xtmth7aZ34" } ], @@ -1345,25 +1345,25 @@ Grailbird.data.tweets_2014_05 = "id" : 471325184494796800, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bop7whOCAAAlvHg.jpg", "sizes" : [ { - "h" : 1024, + "h" : 1224, "resize" : "fit", - "w" : 1024 + "w" : 1224 }, { "h" : 1224, "resize" : "fit", "w" : 1224 }, { - "h" : 340, + "h" : 1200, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 600, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/xtmth7aZ34" } ], @@ -1445,22 +1445,22 @@ Grailbird.data.tweets_2014_05 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/nVbJ3jbkvq" } ], @@ -1627,25 +1627,25 @@ Grailbird.data.tweets_2014_05 = "id" : 470752421132922881, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bohy1TbIcAE6Xu1.jpg", "sizes" : [ { - "h" : 768, + "h" : 510, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 1536, "resize" : "fit", "w" : 2048 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/CaX6V1OYRA" } ], @@ -1769,13 +1769,13 @@ Grailbird.data.tweets_2014_05 = "resize" : "fit", "w" : 788 }, { - "h" : 390, + "h" : 442, "resize" : "fit", - "w" : 600 + "w" : 680 }, { - "h" : 221, + "h" : 512, "resize" : "fit", - "w" : 340 + "w" : 788 } ], "display_url" : "pic.twitter.com\/ocJDcffZSX" } ], @@ -1810,13 +1810,13 @@ Grailbird.data.tweets_2014_05 = "resize" : "fit", "w" : 788 }, { - "h" : 390, + "h" : 442, "resize" : "fit", - "w" : 600 + "w" : 680 }, { - "h" : 221, + "h" : 512, "resize" : "fit", - "w" : 340 + "w" : 788 } ], "display_url" : "pic.twitter.com\/ocJDcffZSX" } ], @@ -2048,11 +2048,11 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Daniel Lin", - "screen_name" : "DLin71", + "name" : "dlin71", + "screen_name" : "dlin71", "indices" : [ 3, 10 ], - "id_str" : "144408677", - "id" : 144408677 + "id_str" : "874627272979996672", + "id" : 874627272979996672 } ], "media" : [ { "expanded_url" : "https:\/\/twitter.com\/DLin71\/status\/469470090052636674\/photo\/1", @@ -2066,6 +2066,10 @@ Grailbird.data.tweets_2014_05 = "h" : 296, "resize" : "fit", "w" : 465 + }, { + "h" : 296, + "resize" : "fit", + "w" : 465 }, { "h" : 150, "resize" : "crop", @@ -2074,10 +2078,6 @@ Grailbird.data.tweets_2014_05 = "h" : 296, "resize" : "fit", "w" : 465 - }, { - "h" : 216, - "resize" : "fit", - "w" : 340 }, { "h" : 296, "resize" : "fit", @@ -2107,6 +2107,10 @@ Grailbird.data.tweets_2014_05 = "h" : 296, "resize" : "fit", "w" : 465 + }, { + "h" : 296, + "resize" : "fit", + "w" : 465 }, { "h" : 150, "resize" : "crop", @@ -2115,10 +2119,6 @@ Grailbird.data.tweets_2014_05 = "h" : 296, "resize" : "fit", "w" : 465 - }, { - "h" : 216, - "resize" : "fit", - "w" : 340 }, { "h" : 296, "resize" : "fit", @@ -2136,7 +2136,7 @@ Grailbird.data.tweets_2014_05 = "created_at" : "2014-05-22 13:29:26 +0000", "user" : { "name" : "Daniel Lin", - "screen_name" : "DLin71", + "screen_name" : "danwlin", "protected" : false, "id_str" : "144408677", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/795435685184409600\/-zrffrTa_normal.jpg", @@ -2208,7 +2208,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3240,13 +3240,13 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", "id" : 27302287 }, { - "name" : "Sam Livingston-Gray", + "name" : "Gory Galvanism Tins", "screen_name" : "geeksam", "indices" : [ 21, 29 ], "id_str" : "38699900", @@ -3263,7 +3263,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Livingston-Gray", + "name" : "Gory Galvanism Tins", "screen_name" : "geeksam", "indices" : [ 1, 9 ], "id_str" : "38699900", @@ -3284,7 +3284,7 @@ Grailbird.data.tweets_2014_05 = "in_reply_to_screen_name" : "geeksam", "in_reply_to_user_id_str" : "38699900", "user" : { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", @@ -3314,7 +3314,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "19567770", "id" : 19567770 }, { - "name" : "Sam Livingston-Gray", + "name" : "Gory Galvanism Tins", "screen_name" : "geeksam", "indices" : [ 16, 24 ], "id_str" : "38699900", @@ -3331,7 +3331,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003Etwicca\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Livingston-Gray", + "name" : "Gory Galvanism Tins", "screen_name" : "geeksam", "indices" : [ 0, 8 ], "id_str" : "38699900", @@ -3376,7 +3376,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Livingston-Gray", + "name" : "Gory Galvanism Tins", "screen_name" : "geeksam", "indices" : [ 3, 11 ], "id_str" : "38699900", @@ -3403,7 +3403,7 @@ Grailbird.data.tweets_2014_05 = "id" : 467393114395918336, "created_at" : "2014-05-16 19:56:16 +0000", "user" : { - "name" : "Sam Livingston-Gray", + "name" : "Gory Galvanism Tins", "screen_name" : "geeksam", "protected" : false, "id_str" : "38699900", @@ -3427,13 +3427,13 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Livingston-Gray", + "name" : "Gory Galvanism Tins", "screen_name" : "geeksam", "indices" : [ 0, 8 ], "id_str" : "38699900", "id" : 38699900 }, { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 9, 24 ], "id_str" : "27302287", @@ -3715,14 +3715,6 @@ Grailbird.data.tweets_2014_05 = "id" : 467113671299444737, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BnuFaL-IMAE9xhy.png", "sizes" : [ { - "h" : 255, - "resize" : "fit", - "w" : 340 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 - }, { "h" : 768, "resize" : "fit", "w" : 1024 @@ -3734,6 +3726,14 @@ Grailbird.data.tweets_2014_05 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/OmY0qFHrQK" } ], @@ -4006,7 +4006,7 @@ Grailbird.data.tweets_2014_05 = "screen_name" : "myell0w", "protected" : false, "id_str" : "16004268", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/561653738503675906\/asNnc-2v_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919286934555512832\/yC2o08yo_normal.jpg", "id" : 16004268, "verified" : false } @@ -4097,14 +4097,14 @@ Grailbird.data.tweets_2014_05 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 - }, { - "h" : 603, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/kOX3AnmEol" } ], @@ -4302,7 +4302,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Justin Miller \uD83C\uDDFA\uD83C\uDDF8\uD83C\uDDE8\uD83C\uDDE6\uD83C\uDDE9\uD83C\uDDEA", + "name" : "Justin Miller", "screen_name" : "incanus77", "indices" : [ 3, 13 ], "id_str" : "4765141", @@ -4326,22 +4326,22 @@ Grailbird.data.tweets_2014_05 = "h" : 1536, "resize" : "fit", "w" : 2048 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 510, "resize" : "fit", - "w" : 600 + "w" : 680 }, { - "h" : 255, + "h" : 1536, "resize" : "fit", - "w" : 340 + "w" : 2048 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 } ], "display_url" : "pic.twitter.com\/ueclEVD61g" } ], @@ -4376,22 +4376,22 @@ Grailbird.data.tweets_2014_05 = "h" : 1536, "resize" : "fit", "w" : 2048 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 510, "resize" : "fit", - "w" : 600 + "w" : 680 }, { - "h" : 255, + "h" : 1536, "resize" : "fit", - "w" : 340 + "w" : 2048 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 } ], "display_url" : "pic.twitter.com\/ueclEVD61g" } ], @@ -4407,7 +4407,7 @@ Grailbird.data.tweets_2014_05 = "id" : 464584151417749504, "created_at" : "2014-05-09 01:54:27 +0000", "user" : { - "name" : "Justin Miller \uD83C\uDDFA\uD83C\uDDF8\uD83C\uDDE8\uD83C\uDDE6\uD83C\uDDE9\uD83C\uDDEA", + "name" : "Justin Miller", "screen_name" : "incanus77", "protected" : false, "id_str" : "4765141", @@ -4626,7 +4626,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "108814849", "id" : 108814849 }, { - "name" : "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDCBB", + "name" : "\uD83D\uDDFD", "screen_name" : "ATXChristina", "indices" : [ 12, 25 ], "id_str" : "20890239", @@ -4657,7 +4657,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Atlassian HipChat", + "name" : "Atlassian Hipchat", "screen_name" : "HipChat", "indices" : [ 0, 8 ], "id_str" : "17810599", @@ -4793,9 +4793,17 @@ Grailbird.data.tweets_2014_05 = "id" : 465668380964687872, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BnZi7N6IEAAKGc8.jpg", "sizes" : [ { - "h" : 576, + "h" : 675, "resize" : "fit", - "w" : 1024 + "w" : 1200 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { + "h" : 675, + "resize" : "fit", + "w" : 1200 }, { "h" : 675, "resize" : "fit", @@ -4804,14 +4812,6 @@ Grailbird.data.tweets_2014_05 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 338, - "resize" : "fit", - "w" : 600 - }, { - "h" : 191, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/OEXkPLCvUq" } ], @@ -5349,13 +5349,9 @@ Grailbird.data.tweets_2014_05 = "resize" : "fit", "w" : 1024 }, { - "h" : 227, + "h" : 455, "resize" : "fit", - "w" : 340 - }, { - "h" : 401, - "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -5364,6 +5360,10 @@ Grailbird.data.tweets_2014_05 = "h" : 685, "resize" : "fit", "w" : 1024 + }, { + "h" : 685, + "resize" : "fit", + "w" : 1024 } ], "display_url" : "pic.twitter.com\/mLlC2clqgW" } ], @@ -5508,17 +5508,17 @@ Grailbird.data.tweets_2014_05 = "id" : 450958872715739136, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BkIgtJiIQAAzQ3Q.jpg", "sizes" : [ { - "h" : 453, + "h" : 604, "resize" : "fit", - "w" : 600 - }, { - "h" : 257, - "resize" : "fit", - "w" : 340 + "w" : 800 }, { "h" : 604, "resize" : "fit", "w" : 800 + }, { + "h" : 513, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -5549,17 +5549,17 @@ Grailbird.data.tweets_2014_05 = "id" : 450958872715739136, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BkIgtJiIQAAzQ3Q.jpg", "sizes" : [ { - "h" : 453, + "h" : 604, "resize" : "fit", - "w" : 600 - }, { - "h" : 257, - "resize" : "fit", - "w" : 340 + "w" : 800 }, { "h" : 604, "resize" : "fit", "w" : 800 + }, { + "h" : 513, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -5802,7 +5802,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Alexandria Neonakis", + "name" : "Alexandria Ne\uD83C\uDF83nakis", "screen_name" : "Beavs", "indices" : [ 3, 9 ], "id_str" : "19007577", @@ -5834,11 +5834,11 @@ Grailbird.data.tweets_2014_05 = "id" : 462236896886673408, "created_at" : "2014-05-02 14:27:18 +0000", "user" : { - "name" : "Alexandria Neonakis", + "name" : "Alexandria Ne\uD83C\uDF83nakis", "screen_name" : "Beavs", "protected" : false, "id_str" : "19007577", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/528577664056307712\/-Gjibg3f_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/911389299605594112\/7V6wcVjR_normal.jpg", "id" : 19007577, "verified" : false } @@ -5889,7 +5889,7 @@ Grailbird.data.tweets_2014_05 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793501897030152192\/aMAAYCvY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", "id" : 36183, "verified" : false } @@ -5957,10 +5957,6 @@ Grailbird.data.tweets_2014_05 = "id" : 462062536729165826, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmmTbdXCAAI4nd_.png", "sizes" : [ { - "h" : 340, - "resize" : "fit", - "w" : 340 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -5976,6 +5972,10 @@ Grailbird.data.tweets_2014_05 = "h" : 512, "resize" : "fit", "w" : 512 + }, { + "h" : 512, + "resize" : "fit", + "w" : 512 } ], "display_url" : "pic.twitter.com\/jlBaDVtpPj" } ], @@ -6044,7 +6044,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "717313", "id" : 717313 }, { - "name" : "P\u1D1C\u1D0D\u1D18\u1D0B\u026A\u0274 F\u0280\u026A\u0262\u029C\u1D1B", + "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 97, 105 ], "id_str" : "11375732", @@ -6066,7 +6066,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/arstechnica.com\" rel=\"nofollow\"\u003EArs tweetbot\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "P\u1D1C\u1D0D\u1D18\u1D0B\u026A\u0274 F\u0280\u026A\u0262\u029C\u1D1B", + "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 80, 88 ], "id_str" : "11375732", diff --git a/public/tweets/data/js/tweets/2014_06.js b/public/tweets/data/js/tweets/2014_06.js index 99faa07..f6a0c68 100755 --- a/public/tweets/data/js/tweets/2014_06.js +++ b/public/tweets/data/js/tweets/2014_06.js @@ -1130,9 +1130,9 @@ Grailbird.data.tweets_2014_06 = "id" : 481956094919462913, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BrBAg8sCUAE9cjA.png", "sizes" : [ { - "h" : 48, + "h" : 70, "resize" : "fit", - "w" : 600 + "w" : 874 }, { "h" : 70, "resize" : "fit", @@ -1146,9 +1146,9 @@ Grailbird.data.tweets_2014_06 = "resize" : "fit", "w" : 874 }, { - "h" : 27, + "h" : 54, "resize" : "fit", - "w" : 340 + "w" : 680 } ], "display_url" : "pic.twitter.com\/xiWiity7Ud" } ], @@ -1191,18 +1191,18 @@ Grailbird.data.tweets_2014_06 = "h" : 525, "resize" : "fit", "w" : 933 - }, { - "h" : 191, - "resize" : "fit", - "w" : 340 - }, { - "h" : 338, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { + "h" : 525, + "resize" : "fit", + "w" : 933 }, { "h" : 525, "resize" : "fit", @@ -1232,18 +1232,18 @@ Grailbird.data.tweets_2014_06 = "h" : 525, "resize" : "fit", "w" : 933 - }, { - "h" : 191, - "resize" : "fit", - "w" : 340 - }, { - "h" : 338, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { + "h" : 525, + "resize" : "fit", + "w" : 933 }, { "h" : 525, "resize" : "fit", @@ -1452,7 +1452,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "mvenetucci", "protected" : false, "id_str" : "155125025", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/529103119691444224\/Ikof9CjQ_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/901858227419176961\/hsSoP3dU_normal.jpg", "id" : 155125025, "verified" : false } @@ -1604,7 +1604,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "Catfish_Man", "protected" : false, "id_str" : "15444008", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/779581705292165120\/QOHPKKZv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877087638389379072\/nAnRi8MZ_normal.jpg", "id" : 15444008, "verified" : false } @@ -1877,18 +1877,18 @@ Grailbird.data.tweets_2014_06 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 604, - "resize" : "fit", - "w" : 340 }, { "h" : 1136, "resize" : "fit", "w" : 640 }, { - "h" : 1065, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 383 + }, { + "h" : 1136, + "resize" : "fit", + "w" : 640 } ], "display_url" : "pic.twitter.com\/SBtLciYn4B" } ], @@ -2260,10 +2260,6 @@ Grailbird.data.tweets_2014_06 = "id" : 480063276378628097, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BqmHAaJCIAEgFik.jpg", "sizes" : [ { - "h" : 173, - "resize" : "fit", - "w" : 340 - }, { "h" : 280, "resize" : "fit", "w" : 550 @@ -2279,6 +2275,10 @@ Grailbird.data.tweets_2014_06 = "h" : 280, "resize" : "fit", "w" : 550 + }, { + "h" : 280, + "resize" : "fit", + "w" : 550 } ], "display_url" : "pic.twitter.com\/cgC3K6vXz8" } ], @@ -2529,9 +2529,9 @@ Grailbird.data.tweets_2014_06 = "id" : 479886202405810176, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bqjl9WMCcAAMu0Z.jpg", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 900 }, { "h" : 2048, "resize" : "fit", @@ -2541,13 +2541,13 @@ Grailbird.data.tweets_2014_06 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1536 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/FvZFEClui1" } ], @@ -2636,9 +2636,9 @@ Grailbird.data.tweets_2014_06 = "id" : 479867255413428224, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BqjUufJCUAAkQSd.jpg", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 900 }, { "h" : 2048, "resize" : "fit", @@ -2648,13 +2648,13 @@ Grailbird.data.tweets_2014_06 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1536 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/a3U6j2Lh5P" } ], @@ -2707,7 +2707,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "108814849", "id" : 108814849 }, { - "name" : "Ryan Stenhouse", + "name" : "\u30E9\u30A4", "screen_name" : "ryanstenhouse", "indices" : [ 12, 26 ], "id_str" : "9427822", @@ -3094,7 +3094,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Neven Mrgan", + "name" : "mrgan!", "screen_name" : "mrgan", "indices" : [ 3, 9 ], "id_str" : "35293", @@ -3121,11 +3121,11 @@ Grailbird.data.tweets_2014_06 = "id" : 478978311041736706, "created_at" : "2014-06-17 19:11:43 +0000", "user" : { - "name" : "Neven Mrgan", + "name" : "mrgan!", "screen_name" : "mrgan", "protected" : false, "id_str" : "35293", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839856305015676929\/Cbf5FntI_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914585912507428864\/-s_wTdcj_normal.jpg", "id" : 35293, "verified" : true } @@ -3321,25 +3321,25 @@ Grailbird.data.tweets_2014_06 = "id" : 478412070925258752, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BqOpPmfCUAAaMqM.jpg", "sizes" : [ { - "h" : 768, + "h" : 510, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 1536, "resize" : "fit", "w" : 2048 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/pIKwGcqKMs" } ], @@ -3554,7 +3554,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "GHCi Mane", + "name" : "patrick-or-treat", "screen_name" : "importantshock", "indices" : [ 3, 18 ], "id_str" : "7611992", @@ -3584,11 +3584,11 @@ Grailbird.data.tweets_2014_06 = "id" : 477548720477585408, "created_at" : "2014-06-13 20:31:02 +0000", "user" : { - "name" : "GHCi Mane", + "name" : "patrick-or-treat", "screen_name" : "importantshock", "protected" : false, "id_str" : "7611992", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/832418876264689664\/uHW--77R_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/913524488066695168\/_vAF9Hd9_normal.jpg", "id" : 7611992, "verified" : false } @@ -3955,7 +3955,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "Twitterrific", "protected" : false, "id_str" : "643443", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000443340244\/1a0ae1d1c6b96137cd299237ee470e21_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917470499919118337\/ndUMnUTG_normal.jpg", "id" : 643443, "verified" : false } @@ -4112,7 +4112,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "ishra", "protected" : false, "id_str" : "5537792", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/714379997318946816\/IkZFgq8U_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/906658866443767808\/9Rqr0XHZ_normal.jpg", "id" : 5537792, "verified" : false } @@ -4191,7 +4191,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "typeoneerror", "protected" : false, "id_str" : "11973362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/810629507728044032\/KC9N72d__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/872004130826362881\/9RRxQHYL_normal.jpg", "id" : 11973362, "verified" : false } @@ -4831,7 +4831,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839220483350487040\/1JNTuxrF_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", "id" : 15267898, "verified" : true } @@ -4995,10 +4995,6 @@ Grailbird.data.tweets_2014_06 = "id" : 472945648925691904, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BpA9j9pIUAACBP6.jpg", "sizes" : [ { - "h" : 258, - "resize" : "fit", - "w" : 600 - }, { "h" : 422, "resize" : "fit", "w" : 980 @@ -5011,9 +5007,13 @@ Grailbird.data.tweets_2014_06 = "resize" : "fit", "w" : 980 }, { - "h" : 146, + "h" : 293, "resize" : "fit", - "w" : 340 + "w" : 680 + }, { + "h" : 422, + "resize" : "fit", + "w" : 980 } ], "display_url" : "pic.twitter.com\/Kjq3QmPiGx" } ], @@ -5042,10 +5042,6 @@ Grailbird.data.tweets_2014_06 = "id" : 472945648925691904, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BpA9j9pIUAACBP6.jpg", "sizes" : [ { - "h" : 258, - "resize" : "fit", - "w" : 600 - }, { "h" : 422, "resize" : "fit", "w" : 980 @@ -5058,9 +5054,13 @@ Grailbird.data.tweets_2014_06 = "resize" : "fit", "w" : 980 }, { - "h" : 146, + "h" : 293, "resize" : "fit", - "w" : 340 + "w" : 680 + }, { + "h" : 422, + "resize" : "fit", + "w" : 980 } ], "display_url" : "pic.twitter.com\/Kjq3QmPiGx" } ], @@ -5133,7 +5133,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "mattgemmell", "protected" : false, "id_str" : "755859", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/783031452313190400\/2PVMtjcG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916300119947071488\/bcbVcNbO_normal.jpg", "id" : 755859, "verified" : true } @@ -5188,17 +5188,17 @@ Grailbird.data.tweets_2014_06 = "resize" : "fit", "w" : 412 }, { - "h" : 215, + "h" : 260, "resize" : "fit", - "w" : 340 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "w" : 412 }, { "h" : 260, "resize" : "fit", "w" : 412 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 260, "resize" : "fit", @@ -5719,7 +5719,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "clattner_llvm", "protected" : false, "id_str" : "2543588034", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/785316272825249792\/jX78g-6c_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916821795008688128\/yONBAVaZ_normal.jpg", "id" : 2543588034, "verified" : false } @@ -6124,7 +6124,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793501897030152192\/aMAAYCvY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", "id" : 36183, "verified" : false } @@ -6550,7 +6550,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "hot nodes in yr area", + "name" : "diffie-hellscape \uD83C\uDF5E", "screen_name" : "dijkstracula", "indices" : [ 3, 16 ], "id_str" : "14216743", @@ -6577,11 +6577,11 @@ Grailbird.data.tweets_2014_06 = "id" : 473588378131132416, "created_at" : "2014-06-02 22:14:02 +0000", "user" : { - "name" : "hot nodes in yr area", + "name" : "diffie-hellscape \uD83C\uDF5E", "screen_name" : "dijkstracula", "protected" : false, "id_str" : "14216743", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/539903105534394368\/D5PuhGv__normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/892558761654497280\/pKlttZP8_normal.jpg", "id" : 14216743, "verified" : false } @@ -6601,7 +6601,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "hot nodes in yr area", + "name" : "diffie-hellscape \uD83C\uDF5E", "screen_name" : "dijkstracula", "indices" : [ 0, 13 ], "id_str" : "14216743", @@ -6936,17 +6936,17 @@ Grailbird.data.tweets_2014_06 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1136, "resize" : "fit", - "w" : 600 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 + "w" : 852 }, { "h" : 1136, "resize" : "fit", "w" : 852 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 } ], "display_url" : "pic.twitter.com\/WgcJMVRbO1" } ], @@ -6977,17 +6977,17 @@ Grailbird.data.tweets_2014_06 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1136, "resize" : "fit", - "w" : 600 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 + "w" : 852 }, { "h" : 1136, "resize" : "fit", "w" : 852 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 } ], "display_url" : "pic.twitter.com\/WgcJMVRbO1" } ], @@ -7532,7 +7532,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Zeldman", + "name" : "Zeldmonster", "screen_name" : "zeldman", "indices" : [ 32, 40 ], "id_str" : "61133", @@ -7651,7 +7651,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1282173124\/untitled-158-2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", "id" : 14231571, "verified" : true } diff --git a/public/tweets/data/js/tweets/2014_07.js b/public/tweets/data/js/tweets/2014_07.js index 5f841b5..27774a6 100755 --- a/public/tweets/data/js/tweets/2014_07.js +++ b/public/tweets/data/js/tweets/2014_07.js @@ -159,7 +159,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "1Password", "protected" : false, "id_str" : "793926", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833086808732876802\/4vfAVaH3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/904715544414351360\/6XdEq2Mq_normal.jpg", "id" : 793926, "verified" : true } @@ -369,7 +369,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "cheerskevin", "protected" : false, "id_str" : "14308739", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/633125665353650176\/olg7kEI1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/873979568515825664\/no1Wh9Fd_normal.jpg", "id" : 14308739, "verified" : false } @@ -790,7 +790,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Faruk Ate\u015F \u270C\uD83C\uDFFC\uD83C\uDF08\u270A\uD83C\uDFFC", + "name" : "This Universe Faruk", "screen_name" : "KuraFire", "indices" : [ 3, 12 ], "id_str" : "22253", @@ -827,11 +827,11 @@ Grailbird.data.tweets_2014_07 = "id" : 494186099838050304, "created_at" : "2014-07-29 18:22:02 +0000", "user" : { - "name" : "Faruk Ate\u015F \u270C\uD83C\uDFFC\uD83C\uDF08\u270A\uD83C\uDFFC", + "name" : "This Universe Faruk", "screen_name" : "KuraFire", "protected" : false, "id_str" : "22253", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/847955611371290624\/U1aL1zKO_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/907477396831404032\/IppwAcNp_normal.jpg", "id" : 22253, "verified" : false } @@ -982,7 +982,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "mislav", "protected" : false, "id_str" : "7516242", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/500395960648749056\/A6trldA8_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/860184226632802307\/GjiGS87W_normal.jpg", "id" : 7516242, "verified" : false } @@ -1033,7 +1033,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "typeoneerror", "protected" : false, "id_str" : "11973362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/810629507728044032\/KC9N72d__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/872004130826362881\/9RRxQHYL_normal.jpg", "id" : 11973362, "verified" : false } @@ -1989,17 +1989,17 @@ Grailbird.data.tweets_2014_07 = "resize" : "fit", "w" : 681 }, { - "h" : 269, + "h" : 305, "resize" : "fit", - "w" : 600 + "w" : 681 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 152, + "h" : 305, "resize" : "fit", - "w" : 340 + "w" : 680 } ], "display_url" : "pic.twitter.com\/PgTyoGr9uZ" } ], @@ -2041,17 +2041,17 @@ Grailbird.data.tweets_2014_07 = "resize" : "fit", "w" : 681 }, { - "h" : 269, + "h" : 305, "resize" : "fit", - "w" : 600 + "w" : 681 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 152, + "h" : 305, "resize" : "fit", - "w" : 340 + "w" : 680 } ], "display_url" : "pic.twitter.com\/PgTyoGr9uZ" } ], @@ -2180,21 +2180,21 @@ Grailbird.data.tweets_2014_07 = "id" : 492701276229353472, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BtZtM0YIQAAAGDm.jpg", "sizes" : [ { - "h" : 532, + "h" : 1817, "resize" : "fit", - "w" : 600 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 302, + "h" : 603, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 909, + "h" : 1065, "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { "h" : 2726, "resize" : "fit", @@ -2227,21 +2227,21 @@ Grailbird.data.tweets_2014_07 = "id" : 492701276229353472, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BtZtM0YIQAAAGDm.jpg", "sizes" : [ { - "h" : 532, + "h" : 1817, "resize" : "fit", - "w" : 600 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 302, + "h" : 603, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 909, + "h" : 1065, "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { "h" : 2726, "resize" : "fit", @@ -2282,7 +2282,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "israeledits", + "name" : "israel edits", "screen_name" : "israeledits", "indices" : [ 0, 12 ], "id_str" : "2646180810", @@ -2565,7 +2565,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDF20Thom\uD83C\uDF20", + "name" : "Thom\uD83C\uDDF3\uD83C\uDDF1\uD83C\uDDEA\uD83C\uDDFA\uD83C\uDF37\uD83C\uDF0A", "screen_name" : "thomholwerda", "indices" : [ 0, 13 ], "id_str" : "286715690", @@ -2678,10 +2678,6 @@ Grailbird.data.tweets_2014_07 = "h" : 361, "resize" : "fit", "w" : 565 - }, { - "h" : 217, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -2694,6 +2690,10 @@ Grailbird.data.tweets_2014_07 = "h" : 361, "resize" : "fit", "w" : 565 + }, { + "h" : 361, + "resize" : "fit", + "w" : 565 } ], "display_url" : "pic.twitter.com\/Rvya8w9U2d" } ], @@ -2735,7 +2735,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "InstructionsBelow", + "name" : "Bahnhof Below", "screen_name" : "avbelow", "indices" : [ 0, 8 ], "id_str" : "18763491", @@ -2980,7 +2980,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "StuFF mc", + "name" : "Manu Carrasco Molina", "screen_name" : "StuFFmc", "indices" : [ 0, 8 ], "id_str" : "3803101", @@ -3001,25 +3001,25 @@ Grailbird.data.tweets_2014_07 = "id" : 491600079740891137, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BtKDqvyCcAE20tS.png", "sizes" : [ { + "h" : 1618, + "resize" : "fit", + "w" : 2048 + }, { + "h" : 537, + "resize" : "fit", + "w" : 680 + }, { "h" : 2472, "resize" : "fit", "w" : 3128 - }, { - "h" : 474, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 269, + "h" : 948, "resize" : "fit", - "w" : 340 - }, { - "h" : 809, - "resize" : "fit", - "w" : 1024 + "w" : 1200 } ], "display_url" : "pic.twitter.com\/mYzKl26njN" } ], @@ -3459,7 +3459,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "phillipsbeer", "protected" : false, "id_str" : "65141250", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/359254799\/square_logo_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/888070528841302017\/-94mWGXa_normal.jpg", "id" : 65141250, "verified" : false } @@ -4183,7 +4183,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Christopher Mims", + "name" : "Christopher Mims\uD83E\uDD33", "screen_name" : "mims", "indices" : [ 26, 31 ], "id_str" : "1769191", @@ -4291,7 +4291,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "drwave", "protected" : false, "id_str" : "14092590", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/843337955586457601\/2CvqL6p6_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/898396368128978944\/B6spP3Jv_normal.jpg", "id" : 14092590, "verified" : false } @@ -4350,11 +4350,11 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cloak", + "name" : "GetCloak.com", "screen_name" : "getcloak", "indices" : [ 0, 9 ], - "id_str" : "271545671", - "id" : 271545671 + "id_str" : "1255560680", + "id" : 1255560680 } ], "media" : [ ], "hashtags" : [ ], @@ -4368,7 +4368,7 @@ Grailbird.data.tweets_2014_07 = "id" : 489266358878601219, "in_reply_to_status_id" : 489266221473607682, "created_at" : "2014-07-16 04:32:44 +0000", - "in_reply_to_screen_name" : "getcloak", + "in_reply_to_screen_name" : "encryptme", "in_reply_to_user_id_str" : "271545671", "user" : { "name" : "Sami Samhuri", @@ -4383,11 +4383,11 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cloak", + "name" : "GetCloak.com", "screen_name" : "getcloak", "indices" : [ 0, 9 ], - "id_str" : "271545671", - "id" : 271545671 + "id_str" : "1255560680", + "id" : 1255560680 } ], "media" : [ ], "hashtags" : [ ], @@ -4401,7 +4401,7 @@ Grailbird.data.tweets_2014_07 = "id" : 489263935653048320, "in_reply_to_status_id" : 489263628810719232, "created_at" : "2014-07-16 04:23:07 +0000", - "in_reply_to_screen_name" : "getcloak", + "in_reply_to_screen_name" : "encryptme", "in_reply_to_user_id_str" : "271545671", "user" : { "name" : "Sami Samhuri", @@ -5521,9 +5521,9 @@ Grailbird.data.tweets_2014_07 = "resize" : "fit", "w" : 1024 }, { - "h" : 226, + "h" : 452, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 681, "resize" : "fit", @@ -5533,9 +5533,9 @@ Grailbird.data.tweets_2014_07 = "resize" : "crop", "w" : 150 }, { - "h" : 399, + "h" : 681, "resize" : "fit", - "w" : 600 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/3W4jgPSpdr" } ], @@ -5855,7 +5855,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "dwiskus", "protected" : false, "id_str" : "2897431", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/819396011638525952\/3On4F5Jj_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/857799622785413120\/xvbyAI3Z_normal.jpg", "id" : 2897431, "verified" : true } @@ -6009,11 +6009,11 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cloak", + "name" : "GetCloak.com", "screen_name" : "getcloak", "indices" : [ 0, 9 ], - "id_str" : "271545671", - "id" : 271545671 + "id_str" : "1255560680", + "id" : 1255560680 } ], "media" : [ { "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/487761873035853824\/photo\/1", @@ -6031,18 +6031,18 @@ Grailbird.data.tweets_2014_07 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 604, - "resize" : "fit", - "w" : 340 }, { "h" : 1136, "resize" : "fit", "w" : 640 }, { - "h" : 1065, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 383 + }, { + "h" : 1136, + "resize" : "fit", + "w" : 640 } ], "display_url" : "pic.twitter.com\/UZr2nWAPwX" } ], @@ -6055,7 +6055,7 @@ Grailbird.data.tweets_2014_07 = "text" : "@Getcloak I see this a lot when I\u2019m using Cloak \uD83D\uDE14 http:\/\/t.co\/UZr2nWAPwX", "id" : 487761873035853824, "created_at" : "2014-07-12 00:54:27 +0000", - "in_reply_to_screen_name" : "getcloak", + "in_reply_to_screen_name" : "encryptme", "in_reply_to_user_id_str" : "271545671", "user" : { "name" : "Sami Samhuri", @@ -6282,21 +6282,21 @@ Grailbird.data.tweets_2014_07 = "id" : 487671449553862656, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BsSOmX3CAAAaVTq.png", "sizes" : [ { - "h" : 63, + "h" : 127, "resize" : "fit", - "w" : 340 + "w" : 680 + }, { + "h" : 244, + "resize" : "fit", + "w" : 1308 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 191, + "h" : 224, "resize" : "fit", - "w" : 1024 - }, { - "h" : 112, - "resize" : "fit", - "w" : 600 + "w" : 1200 }, { "h" : 244, "resize" : "fit", @@ -6823,25 +6823,25 @@ Grailbird.data.tweets_2014_07 = "id" : 487239153592303616, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BsMFbb6IAAAFyqt.png", "sizes" : [ { - "h" : 131, + "h" : 262, "resize" : "fit", - "w" : 600 + "w" : 1198 }, { "h" : 262, "resize" : "fit", "w" : 1198 - }, { - "h" : 224, - "resize" : "fit", - "w" : 1024 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 74, + "h" : 262, "resize" : "fit", - "w" : 340 + "w" : 1198 + }, { + "h" : 149, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/beMv9XDU6E" } ], @@ -6917,7 +6917,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -7088,9 +7088,9 @@ Grailbird.data.tweets_2014_07 = "resize" : "fit", "w" : 410 }, { - "h" : 233, + "h" : 281, "resize" : "fit", - "w" : 340 + "w" : 410 }, { "h" : 281, "resize" : "fit", @@ -7129,9 +7129,9 @@ Grailbird.data.tweets_2014_07 = "resize" : "fit", "w" : 410 }, { - "h" : 233, + "h" : 281, "resize" : "fit", - "w" : 340 + "w" : 410 }, { "h" : 281, "resize" : "fit", @@ -7195,17 +7195,17 @@ Grailbird.data.tweets_2014_07 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/0ENKFD7f5L" } ], @@ -7230,7 +7230,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -7263,7 +7263,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -7284,25 +7284,25 @@ Grailbird.data.tweets_2014_07 = "id" : 486258983485722624, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Br-J-BuCUAAwySC.png", "sizes" : [ { - "h" : 281, + "h" : 186, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 284, "resize" : "fit", "w" : 1036 }, { - "h" : 164, + "h" : 284, "resize" : "fit", - "w" : 600 + "w" : 1036 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 93, + "h" : 284, "resize" : "fit", - "w" : 340 + "w" : 1036 } ], "display_url" : "pic.twitter.com\/fuHG3QVGtY" } ], @@ -7331,25 +7331,25 @@ Grailbird.data.tweets_2014_07 = "id" : 486258983485722624, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Br-J-BuCUAAwySC.png", "sizes" : [ { - "h" : 281, + "h" : 186, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 284, "resize" : "fit", "w" : 1036 }, { - "h" : 164, + "h" : 284, "resize" : "fit", - "w" : 600 + "w" : 1036 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 93, + "h" : 284, "resize" : "fit", - "w" : 340 + "w" : 1036 } ], "display_url" : "pic.twitter.com\/fuHG3QVGtY" } ], @@ -7367,7 +7367,7 @@ Grailbird.data.tweets_2014_07 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", @@ -7541,18 +7541,18 @@ Grailbird.data.tweets_2014_07 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 604, - "resize" : "fit", - "w" : 340 }, { "h" : 1136, "resize" : "fit", "w" : 640 }, { - "h" : 1065, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 383 + }, { + "h" : 1136, + "resize" : "fit", + "w" : 640 } ], "display_url" : "pic.twitter.com\/NA6tsd3ZJx" } ], @@ -7610,10 +7610,6 @@ Grailbird.data.tweets_2014_07 = "h" : 400, "resize" : "fit", "w" : 400 - }, { - "h" : 340, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -7622,6 +7618,10 @@ Grailbird.data.tweets_2014_07 = "h" : 400, "resize" : "fit", "w" : 400 + }, { + "h" : 400, + "resize" : "fit", + "w" : 400 } ], "display_url" : "pic.twitter.com\/rGTkdJmWCS" } ], @@ -7657,10 +7657,6 @@ Grailbird.data.tweets_2014_07 = "h" : 400, "resize" : "fit", "w" : 400 - }, { - "h" : 340, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -7669,6 +7665,10 @@ Grailbird.data.tweets_2014_07 = "h" : 400, "resize" : "fit", "w" : 400 + }, { + "h" : 400, + "resize" : "fit", + "w" : 400 } ], "display_url" : "pic.twitter.com\/rGTkdJmWCS" } ], @@ -7960,7 +7960,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -7987,11 +7987,11 @@ Grailbird.data.tweets_2014_07 = "id" : 486180164108558336, "created_at" : "2014-07-07 16:09:18 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } diff --git a/public/tweets/data/js/tweets/2014_08.js b/public/tweets/data/js/tweets/2014_08.js index c504903..a1a70fd 100755 --- a/public/tweets/data/js/tweets/2014_08.js +++ b/public/tweets/data/js/tweets/2014_08.js @@ -471,25 +471,25 @@ Grailbird.data.tweets_2014_08 = "id" : 505791257491550208, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BwTueAlIMAAw2sS.jpg", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 680 + }, { "h" : 2048, "resize" : "fit", "w" : 2048 - }, { - "h" : 600, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 340, + "h" : 1200, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { - "h" : 1024, + "h" : 2048, "resize" : "fit", - "w" : 1024 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/sMysoTmlaZ" } ], @@ -523,21 +523,21 @@ Grailbird.data.tweets_2014_08 = "id" : 505757790745264129, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BwTQB_PCAAE34Fs.jpg", "sizes" : [ { + "h" : 1200, + "resize" : "fit", + "w" : 1200 + }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 1024, + "h" : 680, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { - "h" : 600, + "h" : 2048, "resize" : "fit", - "w" : 600 - }, { - "h" : 340, - "resize" : "fit", - "w" : 340 + "w" : 2047 }, { "h" : 2449, "resize" : "fit", @@ -694,7 +694,7 @@ Grailbird.data.tweets_2014_08 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/799257118020947969\/cMmlpktU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", "id" : 14169916, "verified" : false } @@ -818,17 +818,17 @@ Grailbird.data.tweets_2014_08 = "id" : 504769889077194752, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BwFNiivCcAA9c2i.png", "sizes" : [ { - "h" : 57, - "resize" : "fit", - "w" : 600 - }, { "h" : 73, "resize" : "crop", "w" : 73 }, { - "h" : 32, + "h" : 73, "resize" : "fit", - "w" : 340 + "w" : 769 + }, { + "h" : 65, + "resize" : "fit", + "w" : 680 }, { "h" : 73, "resize" : "fit", @@ -985,13 +985,13 @@ Grailbird.data.tweets_2014_08 = "id" : 504410497039749120, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BwAGrLEIUAApwuC.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 537 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 430, - "resize" : "fit", - "w" : 340 }, { "h" : 734, "resize" : "fit", @@ -1219,25 +1219,25 @@ Grailbird.data.tweets_2014_08 = "id" : 504009465990221825, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bv6Z8F_IEAEkWIL.jpg", "sizes" : [ { - "h" : 600, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 340, + "h" : 1200, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { "h" : 1380, "resize" : "fit", "w" : 1380 }, { - "h" : 1024, + "h" : 1380, "resize" : "fit", - "w" : 1024 + "w" : 1380 } ], "display_url" : "pic.twitter.com\/9PnyfsOBfs" } ], @@ -1376,17 +1376,17 @@ Grailbird.data.tweets_2014_08 = "resize" : "crop", "w" : 150 }, { - "h" : 151, + "h" : 257, "resize" : "fit", - "w" : 600 - }, { - "h" : 85, - "resize" : "fit", - "w" : 340 + "w" : 1024 }, { "h" : 257, "resize" : "fit", "w" : 1024 + }, { + "h" : 171, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/RqCUjPb1jD" } ], @@ -1457,17 +1457,17 @@ Grailbird.data.tweets_2014_08 = "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 1024, "resize" : "fit", - "w" : 340 + "w" : 768 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 510 }, { "h" : 1024, "resize" : "fit", @@ -1793,7 +1793,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "lee", + "name" : "Just Lee", "screen_name" : "leed0", "indices" : [ 3, 9 ], "id_str" : "20949743", @@ -1832,7 +1832,7 @@ Grailbird.data.tweets_2014_08 = "id" : 501808584632827905, "created_at" : "2014-08-19 19:11:04 +0000", "user" : { - "name" : "lee", + "name" : "Just Lee", "screen_name" : "leed0", "protected" : false, "id_str" : "20949743", @@ -2547,9 +2547,9 @@ Grailbird.data.tweets_2014_08 = "resize" : "fit", "w" : 534 }, { - "h" : 174, + "h" : 273, "resize" : "fit", - "w" : 340 + "w" : 534 } ], "display_url" : "pic.twitter.com\/M4GHB2f5RS" } ], @@ -2588,9 +2588,9 @@ Grailbird.data.tweets_2014_08 = "resize" : "fit", "w" : 534 }, { - "h" : 174, + "h" : 273, "resize" : "fit", - "w" : 340 + "w" : 534 } ], "display_url" : "pic.twitter.com\/M4GHB2f5RS" } ], @@ -2725,13 +2725,13 @@ Grailbird.data.tweets_2014_08 = "resize" : "crop", "w" : 150 }, { - "h" : 455, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 508 }, { - "h" : 803, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 765 } ], "display_url" : "pic.twitter.com\/tU54oMqVHk" } ], @@ -2940,25 +2940,25 @@ Grailbird.data.tweets_2014_08 = "id" : 500757087207444480, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BvML6u3CUAAItYI.jpg", "sizes" : [ { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 768, + "h" : 900, "resize" : "fit", - "w" : 1024 + "w" : 1200 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 1536, "resize" : "fit", "w" : 2048 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/zkAEjyPCxI" }, { @@ -2970,13 +2970,13 @@ Grailbird.data.tweets_2014_08 = "id" : 500757168656621569, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BvML_eSCIAEnOrJ.jpg", "sizes" : [ { - "h" : 800, + "h" : 1200, "resize" : "fit", - "w" : 600 + "w" : 900 }, { - "h" : 1365, + "h" : 2048, "resize" : "fit", - "w" : 1024 + "w" : 1536 }, { "h" : 150, "resize" : "crop", @@ -2986,9 +2986,9 @@ Grailbird.data.tweets_2014_08 = "resize" : "fit", "w" : 1536 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/zkAEjyPCxI" } ], @@ -3055,25 +3055,25 @@ Grailbird.data.tweets_2014_08 = "id" : 500708892268318720, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BvLgFauIUAA2qnj.jpg", "sizes" : [ { - "h" : 768, + "h" : 510, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 1536, "resize" : "fit", "w" : 2048 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/KEoN28mlJw" } ], @@ -3104,7 +3104,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "717313", "id" : 717313 }, { - "name" : "P\u1D1C\u1D0D\u1D18\u1D0B\u026A\u0274 F\u0280\u026A\u0262\u029C\u1D1B", + "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 115, 123 ], "id_str" : "11375732", @@ -3126,7 +3126,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/arstechnica.com\" rel=\"nofollow\"\u003EArs tweetbot\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "P\u1D1C\u1D0D\u1D18\u1D0B\u026A\u0274 F\u0280\u026A\u0262\u029C\u1D1B", + "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 98, 106 ], "id_str" : "11375732", @@ -3202,9 +3202,9 @@ Grailbird.data.tweets_2014_08 = "id" : 500525133652434944, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BvI49QiCIAAdwPU.jpg", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 900 }, { "h" : 2048, "resize" : "fit", @@ -3214,13 +3214,13 @@ Grailbird.data.tweets_2014_08 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1536 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/JzpYFJEgDD" } ], @@ -3391,7 +3391,7 @@ Grailbird.data.tweets_2014_08 = "screen_name" : "cheerskevin", "protected" : false, "id_str" : "14308739", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/633125665353650176\/olg7kEI1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/873979568515825664\/no1Wh9Fd_normal.jpg", "id" : 14308739, "verified" : false } @@ -3704,7 +3704,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tom", + "name" : "\u062A\u0648\u0645", "screen_name" : "Inferis", "indices" : [ 3, 11 ], "id_str" : "66573", @@ -3731,11 +3731,11 @@ Grailbird.data.tweets_2014_08 = "id" : 491866917784002560, "created_at" : "2014-07-23 08:46:26 +0000", "user" : { - "name" : "Tom", + "name" : "\u062A\u0648\u0645", "screen_name" : "Inferis", "protected" : false, "id_str" : "66573", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855908787193917440\/Rl0OQ7wZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/889381054426996736\/GmCNuVJZ_normal.jpg", "id" : 66573, "verified" : false } @@ -4127,17 +4127,13 @@ Grailbird.data.tweets_2014_08 = "id" : 498867072081100800, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BuxU9X2IgAAz7wa.jpg", "sizes" : [ { - "h" : 300, + "h" : 512, "resize" : "fit", - "w" : 600 + "w" : 1024 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 170, - "resize" : "fit", - "w" : 340 }, { "h" : 512, "resize" : "fit", @@ -4146,6 +4142,10 @@ Grailbird.data.tweets_2014_08 = "h" : 512, "resize" : "fit", "w" : 1024 + }, { + "h" : 340, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/LRkdoCGDpl" } ], @@ -4174,17 +4174,13 @@ Grailbird.data.tweets_2014_08 = "id" : 498867072081100800, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BuxU9X2IgAAz7wa.jpg", "sizes" : [ { - "h" : 300, + "h" : 512, "resize" : "fit", - "w" : 600 + "w" : 1024 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 170, - "resize" : "fit", - "w" : 340 }, { "h" : 512, "resize" : "fit", @@ -4193,6 +4189,10 @@ Grailbird.data.tweets_2014_08 = "h" : 512, "resize" : "fit", "w" : 1024 + }, { + "h" : 340, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/LRkdoCGDpl" } ], @@ -4268,7 +4268,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "2550058153", "id" : 2550058153 }, { - "name" : "Tweek Tweak", + "name" : "Zachary Ogre", "screen_name" : "ZacharyOrr", "indices" : [ 38, 49 ], "id_str" : "100290468", @@ -4290,7 +4290,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tweek Tweak", + "name" : "Zachary Ogre", "screen_name" : "ZacharyOrr", "indices" : [ 19, 30 ], "id_str" : "100290468", @@ -4371,7 +4371,7 @@ Grailbird.data.tweets_2014_08 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -4452,17 +4452,17 @@ Grailbird.data.tweets_2014_08 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/kBy33itzxe" } ], @@ -4968,7 +4968,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TAke a look y'all:", + "name" : "The Walking Ed", "screen_name" : "edzitron", "indices" : [ 3, 12 ], "id_str" : "18359716", @@ -5005,11 +5005,11 @@ Grailbird.data.tweets_2014_08 = "id" : 495239173922492416, "created_at" : "2014-08-01 16:06:34 +0000", "user" : { - "name" : "TAke a look y'all:", + "name" : "The Walking Ed", "screen_name" : "edzitron", "protected" : false, "id_str" : "18359716", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/763984494319640576\/87TMWlpP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/887196011633926144\/qIGa-HGg_normal.jpg", "id" : 18359716, "verified" : true } @@ -5029,13 +5029,13 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TAke a look y'all:", + "name" : "The Walking Ed", "screen_name" : "edzitron", "indices" : [ 0, 9 ], "id_str" : "18359716", "id" : 18359716 }, { - "name" : "Christina Warren", + "name" : "Chriscreama Warren", "screen_name" : "film_girl", "indices" : [ 10, 20 ], "id_str" : "9866582", diff --git a/public/tweets/data/js/tweets/2014_09.js b/public/tweets/data/js/tweets/2014_09.js index 7e45280..66a4c72 100755 --- a/public/tweets/data/js/tweets/2014_09.js +++ b/public/tweets/data/js/tweets/2014_09.js @@ -192,17 +192,17 @@ Grailbird.data.tweets_2014_09 = "id" : 516981975287332864, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/ByywXhBIAAAuYSa.png", "sizes" : [ { - "h" : 125, + "h" : 275, "resize" : "fit", - "w" : 340 + "w" : 750 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 220, + "h" : 249, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 275, "resize" : "fit", @@ -362,14 +362,14 @@ Grailbird.data.tweets_2014_09 = "h" : 149, "resize" : "fit", "w" : 500 + }, { + "h" : 149, + "resize" : "fit", + "w" : 500 }, { "h" : 149, "resize" : "crop", "w" : 149 - }, { - "h" : 101, - "resize" : "fit", - "w" : 340 }, { "h" : 149, "resize" : "fit", @@ -416,25 +416,25 @@ Grailbird.data.tweets_2014_09 = "id" : 515887087791259648, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/ByjMkrQCQAA2t-k.png", "sizes" : [ { - "h" : 303, + "h" : 607, "resize" : "fit", - "w" : 340 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 913, - "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 1090, "resize" : "fit", "w" : 1222 }, { - "h" : 535, + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1090, "resize" : "fit", - "w" : 600 + "w" : 1222 + }, { + "h" : 1070, + "resize" : "fit", + "w" : 1200 } ], "display_url" : "pic.twitter.com\/uVTkmp9KDa" } ], @@ -486,7 +486,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -513,11 +513,11 @@ Grailbird.data.tweets_2014_09 = "id" : 515855158316916736, "created_at" : "2014-09-27 13:27:08 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -1738,22 +1738,22 @@ Grailbird.data.tweets_2014_09 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/ImriTiQHEH" } ], @@ -1983,25 +1983,25 @@ Grailbird.data.tweets_2014_09 = "id" : 513730474703720448, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/ByEjJRcCEAA4SXO.jpg", "sizes" : [ { - "h" : 768, + "h" : 510, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 1536, "resize" : "fit", "w" : 2048 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/2RpdY3N9Mf" } ], @@ -2039,21 +2039,21 @@ Grailbird.data.tweets_2014_09 = "resize" : "fit", "w" : 618 }, { - "h" : 994, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 618 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 410 }, { "h" : 1024, "resize" : "fit", "w" : 618 - }, { - "h" : 563, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/1syxUFEbjt" } ], @@ -2489,21 +2489,21 @@ Grailbird.data.tweets_2014_09 = "id" : 513083608610127873, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bx7W0tdIQAEvBQ1.jpg", "sizes" : [ { + "h" : 1536, + "resize" : "fit", + "w" : 2048 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 }, { "h" : 1536, "resize" : "fit", @@ -2585,7 +2585,7 @@ Grailbird.data.tweets_2014_09 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793501897030152192\/aMAAYCvY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", "id" : 36183, "verified" : false } @@ -2941,17 +2941,17 @@ Grailbird.data.tweets_2014_09 = "id" : 512717029728481280, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bx2JbAtCcAAvVjh.png", "sizes" : [ { - "h" : 510, + "h" : 512, "resize" : "fit", - "w" : 600 + "w" : 602 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 289, + "h" : 512, "resize" : "fit", - "w" : 340 + "w" : 602 }, { "h" : 512, "resize" : "fit", @@ -3033,9 +3033,9 @@ Grailbird.data.tweets_2014_09 = "id" : 512667298071842816, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bx1cMP2IEAA9XNr.jpg", "sizes" : [ { - "h" : 226, + "h" : 333, "resize" : "fit", - "w" : 340 + "w" : 500 }, { "h" : 333, "resize" : "fit", @@ -3161,9 +3161,9 @@ Grailbird.data.tweets_2014_09 = "resize" : "crop", "w" : 150 }, { - "h" : 208, + "h" : 328, "resize" : "fit", - "w" : 340 + "w" : 536 }, { "h" : 328, "resize" : "fit", @@ -3563,7 +3563,7 @@ Grailbird.data.tweets_2014_09 = "screen_name" : "1Password", "protected" : false, "id_str" : "793926", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833086808732876802\/4vfAVaH3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/904715544414351360\/6XdEq2Mq_normal.jpg", "id" : 793926, "verified" : true } @@ -3681,14 +3681,14 @@ Grailbird.data.tweets_2014_09 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 - }, { - "h" : 603, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/aEEeKNYgA1" } ], @@ -3725,14 +3725,14 @@ Grailbird.data.tweets_2014_09 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 - }, { - "h" : 603, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/aEEeKNYgA1" } ], @@ -3860,7 +3860,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Nick Gauthier", + "name" : "nick gauthier", "screen_name" : "ngauthier", "indices" : [ 3, 13 ], "id_str" : "15243796", @@ -3897,11 +3897,11 @@ Grailbird.data.tweets_2014_09 = "id" : 511900906422808576, "created_at" : "2014-09-16 15:34:21 +0000", "user" : { - "name" : "Nick Gauthier", + "name" : "nick gauthier", "screen_name" : "ngauthier", "protected" : false, "id_str" : "15243796", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/725487771603759105\/ywrvw_pl_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916309660667330560\/mXLHWOtB_normal.jpg", "id" : 15243796, "verified" : false } @@ -4185,9 +4185,9 @@ Grailbird.data.tweets_2014_09 = "resize" : "fit", "w" : 475 }, { - "h" : 313, + "h" : 437, "resize" : "fit", - "w" : 340 + "w" : 475 } ], "display_url" : "pic.twitter.com\/QjVCevnbHC" } ], @@ -4226,9 +4226,9 @@ Grailbird.data.tweets_2014_09 = "resize" : "fit", "w" : 475 }, { - "h" : 313, + "h" : 437, "resize" : "fit", - "w" : 340 + "w" : 475 } ], "display_url" : "pic.twitter.com\/QjVCevnbHC" } ], @@ -4301,9 +4301,9 @@ Grailbird.data.tweets_2014_09 = "id" : 511332038754856962, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bxidx7RCcAIBUx7.jpg", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 900 }, { "h" : 2048, "resize" : "fit", @@ -4313,13 +4313,13 @@ Grailbird.data.tweets_2014_09 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1536 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/7Lzna1fIxK" } ], @@ -4488,10 +4488,6 @@ Grailbird.data.tweets_2014_09 = "h" : 400, "resize" : "fit", "w" : 600 - }, { - "h" : 227, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -4504,6 +4500,10 @@ Grailbird.data.tweets_2014_09 = "h" : 400, "resize" : "fit", "w" : 600 + }, { + "h" : 400, + "resize" : "fit", + "w" : 600 } ], "display_url" : "pic.twitter.com\/Wbphz7EjFC" } ], @@ -4727,18 +4727,18 @@ Grailbird.data.tweets_2014_09 = "h" : 1136, "resize" : "fit", "w" : 640 + }, { + "h" : 1136, + "resize" : "fit", + "w" : 640 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 604, + "h" : 680, "resize" : "fit", - "w" : 340 - }, { - "h" : 1065, - "resize" : "fit", - "w" : 600 + "w" : 383 }, { "h" : 1136, "resize" : "fit", @@ -5072,13 +5072,13 @@ Grailbird.data.tweets_2014_09 = "resize" : "fit", "w" : 610 }, { - "h" : 200, + "h" : 203, "resize" : "fit", - "w" : 600 + "w" : 610 }, { - "h" : 113, + "h" : 203, "resize" : "fit", - "w" : 340 + "w" : 610 }, { "h" : 150, "resize" : "crop", @@ -5116,7 +5116,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Pascal Hartig", + "name" : "Pascal Haunted \uD83D\uDC80", "screen_name" : "passy", "indices" : [ 3, 9 ], "id_str" : "14383077", @@ -5131,25 +5131,25 @@ Grailbird.data.tweets_2014_09 = "id" : 509711662342221824, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BxLcDmvIMAAm-ET.png", "sizes" : [ { - "h" : 891, + "h" : 1496, "resize" : "fit", - "w" : 1024 + "w" : 1720 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 296, + "h" : 591, "resize" : "fit", - "w" : 340 + "w" : 680 + }, { + "h" : 1044, + "resize" : "fit", + "w" : 1200 }, { "h" : 1496, "resize" : "fit", "w" : 1720 - }, { - "h" : 522, - "resize" : "fit", - "w" : 600 } ], "display_url" : "pic.twitter.com\/unVOWlNd7p" }, { @@ -5161,6 +5161,10 @@ Grailbird.data.tweets_2014_09 = "id" : 509711633082753024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BxLcB5vIIAAXyYH.png", "sizes" : [ { + "h" : 580, + "resize" : "fit", + "w" : 680 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -5169,17 +5173,13 @@ Grailbird.data.tweets_2014_09 = "resize" : "fit", "w" : 1718 }, { - "h" : 512, + "h" : 1466, "resize" : "fit", - "w" : 600 + "w" : 1718 }, { - "h" : 874, + "h" : 1024, "resize" : "fit", - "w" : 1024 - }, { - "h" : 290, - "resize" : "fit", - "w" : 340 + "w" : 1200 } ], "display_url" : "pic.twitter.com\/unVOWlNd7p" } ], @@ -5202,25 +5202,25 @@ Grailbird.data.tweets_2014_09 = "id" : 509711662342221824, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BxLcDmvIMAAm-ET.png", "sizes" : [ { - "h" : 891, + "h" : 1496, "resize" : "fit", - "w" : 1024 + "w" : 1720 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 296, + "h" : 591, "resize" : "fit", - "w" : 340 + "w" : 680 + }, { + "h" : 1044, + "resize" : "fit", + "w" : 1200 }, { "h" : 1496, "resize" : "fit", "w" : 1720 - }, { - "h" : 522, - "resize" : "fit", - "w" : 600 } ], "display_url" : "pic.twitter.com\/unVOWlNd7p" }, { @@ -5232,6 +5232,10 @@ Grailbird.data.tweets_2014_09 = "id" : 509711633082753024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BxLcB5vIIAAXyYH.png", "sizes" : [ { + "h" : 580, + "resize" : "fit", + "w" : 680 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -5240,17 +5244,13 @@ Grailbird.data.tweets_2014_09 = "resize" : "fit", "w" : 1718 }, { - "h" : 512, + "h" : 1466, "resize" : "fit", - "w" : 600 + "w" : 1718 }, { - "h" : 874, + "h" : 1024, "resize" : "fit", - "w" : 1024 - }, { - "h" : 290, - "resize" : "fit", - "w" : 340 + "w" : 1200 } ], "display_url" : "pic.twitter.com\/unVOWlNd7p" } ], @@ -5263,7 +5263,7 @@ Grailbird.data.tweets_2014_09 = "id" : 509711664543838209, "created_at" : "2014-09-10 14:35:05 +0000", "user" : { - "name" : "Pascal Hartig", + "name" : "Pascal Haunted \uD83D\uDC80", "screen_name" : "passy", "protected" : false, "id_str" : "14383077", @@ -5955,7 +5955,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", diff --git a/public/tweets/data/js/tweets/2014_10.js b/public/tweets/data/js/tweets/2014_10.js index e244f6e..78a92b0 100755 --- a/public/tweets/data/js/tweets/2014_10.js +++ b/public/tweets/data/js/tweets/2014_10.js @@ -45,6 +45,14 @@ Grailbird.data.tweets_2014_10 = "id" : 528266408191225856, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B1THf9cCcAA71r0.jpg", "sizes" : [ { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -53,17 +61,9 @@ Grailbird.data.tweets_2014_10 = "resize" : "fit", "w" : 3264 }, { - "h" : 255, + "h" : 900, "resize" : "fit", - "w" : 340 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 + "w" : 1200 } ], "display_url" : "pic.twitter.com\/YEvwMbUc0N" } ], @@ -106,14 +106,14 @@ Grailbird.data.tweets_2014_10 = "h" : 775, "resize" : "fit", "w" : 585 - }, { - "h" : 450, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 513 }, { "h" : 775, "resize" : "fit", @@ -147,14 +147,14 @@ Grailbird.data.tweets_2014_10 = "h" : 775, "resize" : "fit", "w" : 585 - }, { - "h" : 450, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 513 }, { "h" : 775, "resize" : "fit", @@ -253,9 +253,9 @@ Grailbird.data.tweets_2014_10 = "resize" : "crop", "w" : 150 }, { - "h" : 203, + "h" : 341, "resize" : "fit", - "w" : 340 + "w" : 572 }, { "h" : 341, "resize" : "fit", @@ -331,17 +331,17 @@ Grailbird.data.tweets_2014_10 = "resize" : "fit", "w" : 761 }, { - "h" : 129, + "h" : 147, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 73, + "h" : 164, "resize" : "fit", - "w" : 340 + "w" : 761 }, { "h" : 164, "resize" : "fit", @@ -718,9 +718,9 @@ Grailbird.data.tweets_2014_10 = "id" : 527610699762003969, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B1JzItMCcAEOrCg.jpg", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 900 }, { "h" : 3264, "resize" : "fit", @@ -730,13 +730,13 @@ Grailbird.data.tweets_2014_10 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1536 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/ESDQ7azWIj" } ], @@ -770,13 +770,13 @@ Grailbird.data.tweets_2014_10 = "id" : 527587940788998145, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B1Jeb9aCEAEZ1u2.jpg", "sizes" : [ { - "h" : 255, + "h" : 510, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 450, + "h" : 768, "resize" : "fit", - "w" : 600 + "w" : 1024 }, { "h" : 150, "resize" : "crop", @@ -971,7 +971,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/799257118020947969\/cMmlpktU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", "id" : 14169916, "verified" : false } @@ -1022,7 +1022,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/799257118020947969\/cMmlpktU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", "id" : 14169916, "verified" : false } @@ -1180,7 +1180,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "andyngo", "protected" : false, "id_str" : "11009532", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855751919322636288\/cwMYv8u8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/884588774159548417\/IqPaneGc_normal.jpg", "id" : 11009532, "verified" : false } @@ -1392,9 +1392,13 @@ Grailbird.data.tweets_2014_10 = "id" : 525807175051259905, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B0wK1wFIMAEyZ-d.jpg", "sizes" : [ { - "h" : 340, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 680 + }, { + "h" : 960, + "resize" : "fit", + "w" : 960 }, { "h" : 150, "resize" : "crop", @@ -1403,10 +1407,6 @@ Grailbird.data.tweets_2014_10 = "h" : 960, "resize" : "fit", "w" : 960 - }, { - "h" : 600, - "resize" : "fit", - "w" : 600 }, { "h" : 960, "resize" : "fit", @@ -1427,7 +1427,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "DaliaEzzat_", "protected" : false, "id_str" : "113474316", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/789478721178759168\/6prjXg_2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/869210001562193920\/_Iy2ViRY_normal.jpg", "id" : 113474316, "verified" : false } @@ -1634,6 +1634,10 @@ Grailbird.data.tweets_2014_10 = "id" : 525767464529821696, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B0vmuS3CAAAEu2A.jpg", "sizes" : [ { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { "h" : 768, "resize" : "fit", "w" : 1024 @@ -1641,18 +1645,14 @@ Grailbird.data.tweets_2014_10 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/JzJn9caylQ" } ], @@ -2928,9 +2928,17 @@ Grailbird.data.tweets_2014_10 = "id" : 523322788799852544, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B0M3TcFIMAAPE8o.jpg", "sizes" : [ { + "h" : 1200, + "resize" : "fit", + "w" : 900 + }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 }, { "h" : 1280, "resize" : "fit", @@ -2939,14 +2947,6 @@ Grailbird.data.tweets_2014_10 = "h" : 1280, "resize" : "fit", "w" : 960 - }, { - "h" : 800, - "resize" : "fit", - "w" : 600 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/o0RHJcjWol" } ], @@ -3007,7 +3007,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "drugmonkeyblog", "protected" : false, "id_str" : "26589498", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855297180956897280\/GcrZH4R3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/911960280610910208\/F0ay9ioS_normal.jpg", "id" : 26589498, "verified" : false } @@ -3048,25 +3048,25 @@ Grailbird.data.tweets_2014_10 = "id" : 523125881112231936, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B0KEN5yCAAAq3-J.jpg", "sizes" : [ { - "h" : 226, + "h" : 1361, "resize" : "fit", - "w" : 340 - }, { - "h" : 399, - "resize" : "fit", - "w" : 600 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 452, + "resize" : "fit", + "w" : 680 + }, { + "h" : 797, + "resize" : "fit", + "w" : 1200 }, { "h" : 1361, "resize" : "fit", "w" : 2048 - }, { - "h" : 681, - "resize" : "fit", - "w" : 1024 } ], "display_url" : "pic.twitter.com\/TU4dFSzot1" } ], @@ -3098,25 +3098,25 @@ Grailbird.data.tweets_2014_10 = "id" : 523125881112231936, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B0KEN5yCAAAq3-J.jpg", "sizes" : [ { - "h" : 226, + "h" : 1361, "resize" : "fit", - "w" : 340 - }, { - "h" : 399, - "resize" : "fit", - "w" : 600 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 452, + "resize" : "fit", + "w" : 680 + }, { + "h" : 797, + "resize" : "fit", + "w" : 1200 }, { "h" : 1361, "resize" : "fit", "w" : 2048 - }, { - "h" : 681, - "resize" : "fit", - "w" : 1024 } ], "display_url" : "pic.twitter.com\/TU4dFSzot1" } ], @@ -3358,7 +3358,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "Catfish_Man", "protected" : false, "id_str" : "15444008", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/779581705292165120\/QOHPKKZv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877087638389379072\/nAnRi8MZ_normal.jpg", "id" : 15444008, "verified" : false } @@ -3378,7 +3378,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"https:\/\/dev.twitter.com\/docs\/tfw\" rel=\"nofollow\"\u003ETwitter for Websites\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD20", + "name" : "Dan Benjamin \uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 15, 27 ], "id_str" : "5905672", @@ -3818,25 +3818,25 @@ Grailbird.data.tweets_2014_10 = "id" : 522560398277357568, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B0CB6eECMAAxF-m.png", "sizes" : [ { - "h" : 1067, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 382 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 604, + "h" : 2048, "resize" : "fit", - "w" : 340 - }, { - "h" : 1820, - "resize" : "fit", - "w" : 1024 + "w" : 1152 }, { "h" : 2208, "resize" : "fit", "w" : 1242 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 675 } ], "display_url" : "pic.twitter.com\/nd4gSBOd6C" } ], @@ -4079,7 +4079,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Neven Mrgan", + "name" : "mrgan!", "screen_name" : "mrgan", "indices" : [ 3, 9 ], "id_str" : "35293", @@ -4111,11 +4111,11 @@ Grailbird.data.tweets_2014_10 = "id" : 521751633823555584, "created_at" : "2014-10-13 19:57:37 +0000", "user" : { - "name" : "Neven Mrgan", + "name" : "mrgan!", "screen_name" : "mrgan", "protected" : false, "id_str" : "35293", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839856305015676929\/Cbf5FntI_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914585912507428864\/-s_wTdcj_normal.jpg", "id" : 35293, "verified" : true } @@ -4224,9 +4224,9 @@ Grailbird.data.tweets_2014_10 = "resize" : "crop", "w" : 150 }, { - "h" : 264, + "h" : 466, "resize" : "fit", - "w" : 340 + "w" : 600 }, { "h" : 466, "resize" : "fit", @@ -4265,9 +4265,9 @@ Grailbird.data.tweets_2014_10 = "resize" : "crop", "w" : 150 }, { - "h" : 264, + "h" : 466, "resize" : "fit", - "w" : 340 + "w" : 600 }, { "h" : 466, "resize" : "fit", @@ -4292,7 +4292,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "GeorgeTakei", "protected" : false, "id_str" : "237845487", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/822432996791898112\/ZsnKNKwU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/885170691846414339\/-08XzXKy_normal.jpg", "id" : 237845487, "verified" : true } @@ -4353,7 +4353,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "curtclifton", "protected" : false, "id_str" : "14355211", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/797458100391284736\/BcjUCt5f_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918964762356072448\/KfnHbpfj_normal.jpg", "id" : 14355211, "verified" : false } @@ -4432,25 +4432,25 @@ Grailbird.data.tweets_2014_10 = "id" : 520367335811469313, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bzi3VbvCUAEy7vF.jpg", "sizes" : [ { - "h" : 800, + "h" : 1200, "resize" : "fit", - "w" : 600 + "w" : 900 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 }, { "h" : 2048, "resize" : "fit", "w" : 1536 }, { - "h" : 1365, + "h" : 2048, "resize" : "fit", - "w" : 1024 + "w" : 1536 } ], "display_url" : "pic.twitter.com\/v8iVq6Hjar" } ], @@ -4605,17 +4605,17 @@ Grailbird.data.tweets_2014_10 = "resize" : "crop", "w" : 150 }, { - "h" : 776, + "h" : 878, "resize" : "fit", - "w" : 1024 + "w" : 1158 }, { - "h" : 258, + "h" : 878, "resize" : "fit", - "w" : 340 + "w" : 1158 }, { - "h" : 455, + "h" : 516, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 878, "resize" : "fit", @@ -4652,17 +4652,17 @@ Grailbird.data.tweets_2014_10 = "resize" : "crop", "w" : 150 }, { - "h" : 776, + "h" : 878, "resize" : "fit", - "w" : 1024 + "w" : 1158 }, { - "h" : 258, + "h" : 878, "resize" : "fit", - "w" : 340 + "w" : 1158 }, { - "h" : 455, + "h" : 516, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 878, "resize" : "fit", @@ -4871,7 +4871,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeff Kelley", + "name" : "\uD83D\uDC7B SpooooookyMan \uD83D\uDC7B", "screen_name" : "SlaunchaMan", "indices" : [ 0, 12 ], "id_str" : "14868897", @@ -5565,25 +5565,25 @@ Grailbird.data.tweets_2014_10 = "id" : 517779430064672768, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/By-FpfkCUAAqlgH.jpg", "sizes" : [ { - "h" : 768, + "h" : 510, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 1536, "resize" : "fit", "w" : 2048 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/3pxo9J6UMH" } ], @@ -5605,7 +5605,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "phillipsbeer", "protected" : false, "id_str" : "65141250", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/359254799\/square_logo_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/888070528841302017\/-94mWGXa_normal.jpg", "id" : 65141250, "verified" : false } diff --git a/public/tweets/data/js/tweets/2014_11.js b/public/tweets/data/js/tweets/2014_11.js index 276ac15..11b5f0f 100755 --- a/public/tweets/data/js/tweets/2014_11.js +++ b/public/tweets/data/js/tweets/2014_11.js @@ -77,7 +77,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -143,21 +143,21 @@ Grailbird.data.tweets_2014_11 = "resize" : "fit", "w" : 3264 }, { - "h" : 768, + "h" : 510, "resize" : "fit", - "w" : 1024 + "w" : 680 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/pjOaF2PNgJ" } ], @@ -335,9 +335,9 @@ Grailbird.data.tweets_2014_11 = "id" : 538274409333547008, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B3hVuTACYAAAPxX.jpg", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 900 }, { "h" : 3264, "resize" : "fit", @@ -347,13 +347,13 @@ Grailbird.data.tweets_2014_11 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1536 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/UPZTpHt82x" } ], @@ -376,9 +376,9 @@ Grailbird.data.tweets_2014_11 = "id" : 538274409333547008, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B3hVuTACYAAAPxX.jpg", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 900 }, { "h" : 3264, "resize" : "fit", @@ -388,13 +388,13 @@ Grailbird.data.tweets_2014_11 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1536 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/UPZTpHt82x" } ], @@ -414,7 +414,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "Catfish_Man", "protected" : false, "id_str" : "15444008", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/779581705292165120\/QOHPKKZv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877087638389379072\/nAnRi8MZ_normal.jpg", "id" : 15444008, "verified" : false } @@ -696,6 +696,10 @@ Grailbird.data.tweets_2014_11 = "id" : 537064412402561024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B3QJPNLCMAAW6EC.jpg", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 876, "resize" : "fit", "w" : 493 @@ -707,10 +711,6 @@ Grailbird.data.tweets_2014_11 = "h" : 876, "resize" : "fit", "w" : 493 - }, { - "h" : 604, - "resize" : "fit", - "w" : 340 }, { "h" : 876, "resize" : "fit", @@ -756,13 +756,9 @@ Grailbird.data.tweets_2014_11 = "id" : 537042041176195072, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B3P05B3CAAAiBvF.jpg", "sizes" : [ { - "h" : 134, + "h" : 229, "resize" : "fit", - "w" : 600 - }, { - "h" : 76, - "resize" : "fit", - "w" : 340 + "w" : 1024 }, { "h" : 150, "resize" : "crop", @@ -775,6 +771,10 @@ Grailbird.data.tweets_2014_11 = "h" : 229, "resize" : "fit", "w" : 1024 + }, { + "h" : 152, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/ziJuBgsOgc" } ], @@ -973,9 +973,9 @@ Grailbird.data.tweets_2014_11 = "id" : 536349797746102272, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B3F_TKICUAAGV8z.jpg", "sizes" : [ { - "h" : 600, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -985,13 +985,13 @@ Grailbird.data.tweets_2014_11 = "resize" : "fit", "w" : 2448 }, { - "h" : 340, + "h" : 1200, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { - "h" : 1024, + "h" : 2048, "resize" : "fit", - "w" : 1024 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/ROIUfz2x61" } ], @@ -1047,7 +1047,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "Conorpope", "protected" : false, "id_str" : "19507934", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/758008050850664448\/Sok2Vx2F_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/895206629611892736\/C7430r0l_normal.jpg", "id" : 19507934, "verified" : false } @@ -1886,7 +1886,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "drwave", "protected" : false, "id_str" : "14092590", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/843337955586457601\/2CvqL6p6_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/898396368128978944\/B6spP3Jv_normal.jpg", "id" : 14092590, "verified" : false } @@ -2104,25 +2104,25 @@ Grailbird.data.tweets_2014_11 = "id" : 533696826268860417, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B2gSb5OCQAEI2eH.jpg", "sizes" : [ { - "h" : 1365, + "h" : 680, "resize" : "fit", - "w" : 1024 - }, { - "h" : 800, - "resize" : "fit", - "w" : 600 + "w" : 510 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 900 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1536 }, { "h" : 3264, "resize" : "fit", "w" : 2448 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/HmoXmeP0II" } ], @@ -2253,7 +2253,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateDelegate", + "name" : "Slightly Spooky Nate", "screen_name" : "thenatekirby", "indices" : [ 0, 13 ], "id_str" : "1628814223", @@ -2691,7 +2691,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "ustwogames", "protected" : false, "id_str" : "899902687", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/778575030091382785\/T5AfEZzx_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/908747492963049474\/FJWKjSJI_normal.jpg", "id" : 899902687, "verified" : true } @@ -2792,9 +2792,13 @@ Grailbird.data.tweets_2014_11 = "id" : 532397512758685696, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B2N0t5NIcAA2_Dm.jpg", "sizes" : [ { - "h" : 345, + "h" : 391, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 690, + "resize" : "fit", + "w" : 1200 }, { "h" : 883, "resize" : "fit", @@ -2804,13 +2808,9 @@ Grailbird.data.tweets_2014_11 = "resize" : "crop", "w" : 150 }, { - "h" : 195, + "h" : 883, "resize" : "fit", - "w" : 340 - }, { - "h" : 589, - "resize" : "fit", - "w" : 1024 + "w" : 1536 } ], "display_url" : "pic.twitter.com\/duYVBQzmPS" } ], @@ -2998,25 +2998,25 @@ Grailbird.data.tweets_2014_11 = "id" : 531926794505437184, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B2HImfECQAAipLR.jpg", "sizes" : [ { - "h" : 696, + "h" : 462, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 816, + "resize" : "fit", + "w" : 1200 }, { "h" : 1275, "resize" : "fit", "w" : 1875 }, { - "h" : 231, + "h" : 1275, "resize" : "fit", - "w" : 340 - }, { - "h" : 408, - "resize" : "fit", - "w" : 600 + "w" : 1875 } ], "display_url" : "pic.twitter.com\/STXAEwA1Zp" } ], @@ -3038,7 +3038,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "phillipsbeer", "protected" : false, "id_str" : "65141250", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/359254799\/square_logo_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/888070528841302017\/-94mWGXa_normal.jpg", "id" : 65141250, "verified" : false } @@ -3427,9 +3427,9 @@ Grailbird.data.tweets_2014_11 = "id" : 531030800377335808, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B16Zsw1IUAA4lPx.jpg", "sizes" : [ { - "h" : 167, + "h" : 254, "resize" : "fit", - "w" : 340 + "w" : 517 }, { "h" : 254, "resize" : "fit", @@ -3474,9 +3474,9 @@ Grailbird.data.tweets_2014_11 = "id" : 531030800377335808, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B16Zsw1IUAA4lPx.jpg", "sizes" : [ { - "h" : 167, + "h" : 254, "resize" : "fit", - "w" : 340 + "w" : 517 }, { "h" : 254, "resize" : "fit", @@ -3511,7 +3511,7 @@ Grailbird.data.tweets_2014_11 = "id_str" : "56364530", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/844791443600289792\/Ym4xk0q3_normal.jpg", "id" : 56364530, - "verified" : false + "verified" : true } }, "id" : 531113687478980608, @@ -3844,7 +3844,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Anil Dash", + "name" : "Spooky Anil Dash \uD83C\uDF83", "screen_name" : "anildash", "indices" : [ 3, 12 ], "id_str" : "36823", @@ -3888,11 +3888,11 @@ Grailbird.data.tweets_2014_11 = "in_reply_to_screen_name" : "gruber", "in_reply_to_user_id_str" : "33423", "user" : { - "name" : "Anil Dash", + "name" : "Spooky Anil Dash \uD83C\uDF83", "screen_name" : "anildash", "protected" : false, "id_str" : "36823", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/786179830266167296\/AmZpJJLv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915191237338177536\/cZoGK6nh_normal.jpg", "id" : 36823, "verified" : true } @@ -3978,7 +3978,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateDelegate", + "name" : "Slightly Spooky Nate", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -4005,7 +4005,7 @@ Grailbird.data.tweets_2014_11 = "id" : 530464423341985792, "created_at" : "2014-11-06 20:59:08 +0000", "user" : { - "name" : "NSNateDelegate", + "name" : "Slightly Spooky Nate", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -4029,7 +4029,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateDelegate", + "name" : "Slightly Spooky Nate", "screen_name" : "thenatekirby", "indices" : [ 0, 13 ], "id_str" : "1628814223", @@ -4062,7 +4062,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateDelegate", + "name" : "Slightly Spooky Nate", "screen_name" : "thenatekirby", "indices" : [ 0, 13 ], "id_str" : "1628814223", @@ -4095,7 +4095,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "CGP Grey", + "name" : "CGP Grey \uD83D\uDC1D", "screen_name" : "cgpgrey", "indices" : [ 0, 8 ], "id_str" : "176774540", @@ -4168,21 +4168,21 @@ Grailbird.data.tweets_2014_11 = "resize" : "fit", "w" : 3264 }, { - "h" : 768, + "h" : 510, "resize" : "fit", - "w" : 1024 + "w" : 680 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/ZqwqodKDiE" } ], diff --git a/public/tweets/data/js/tweets/2014_12.js b/public/tweets/data/js/tweets/2014_12.js index 85f0458..c2a5d0e 100755 --- a/public/tweets/data/js/tweets/2014_12.js +++ b/public/tweets/data/js/tweets/2014_12.js @@ -587,9 +587,9 @@ Grailbird.data.tweets_2014_12 = "resize" : "fit", "w" : 575 }, { - "h" : 605, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 382 } ], "display_url" : "pic.twitter.com\/23h3Cqh8jS" } ], @@ -640,9 +640,9 @@ Grailbird.data.tweets_2014_12 = "resize" : "crop", "w" : 150 }, { - "h" : 145, + "h" : 246, "resize" : "fit", - "w" : 340 + "w" : 576 }, { "h" : 246, "resize" : "fit", @@ -689,22 +689,22 @@ Grailbird.data.tweets_2014_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/OtTknhq5m5" } ], @@ -1062,22 +1062,22 @@ Grailbird.data.tweets_2014_12 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 800, - "resize" : "fit", - "w" : 600 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], "display_url" : "pic.twitter.com\/jBGYkRPRsv" } ], @@ -1123,9 +1123,9 @@ Grailbird.data.tweets_2014_12 = "resize" : "fit", "w" : 600 }, { - "h" : 255, + "h" : 450, "resize" : "fit", - "w" : 340 + "w" : 600 }, { "h" : 450, "resize" : "fit", @@ -1258,21 +1258,21 @@ Grailbird.data.tweets_2014_12 = "id" : 547085360648318976, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B5ejPKdCcAAbxgM.png", "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { "h" : 243, "resize" : "fit", "w" : 723 }, { - "h" : 114, - "resize" : "fit", - "w" : 340 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { - "h" : 202, + "h" : 229, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 243, + "resize" : "fit", + "w" : 723 }, { "h" : 243, "resize" : "fit", @@ -2350,22 +2350,22 @@ Grailbird.data.tweets_2014_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/9ZUAsV1zHn" } ], @@ -2391,22 +2391,22 @@ Grailbird.data.tweets_2014_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/9ZUAsV1zHn" } ], @@ -2499,9 +2499,9 @@ Grailbird.data.tweets_2014_12 = "resize" : "crop", "w" : 150 }, { - "h" : 135, + "h" : 214, "resize" : "fit", - "w" : 340 + "w" : 540 }, { "h" : 214, "resize" : "fit", diff --git a/public/tweets/data/js/tweets/2015_01.js b/public/tweets/data/js/tweets/2015_01.js index 400c3ec..bdd40ff 100755 --- a/public/tweets/data/js/tweets/2015_01.js +++ b/public/tweets/data/js/tweets/2015_01.js @@ -410,18 +410,18 @@ Grailbird.data.tweets_2015_01 = "h" : 994, "resize" : "fit", "w" : 1024 + }, { + "h" : 660, + "resize" : "fit", + "w" : 680 + }, { + "h" : 994, + "resize" : "fit", + "w" : 1024 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 330, - "resize" : "fit", - "w" : 340 - }, { - "h" : 582, - "resize" : "fit", - "w" : 600 }, { "h" : 994, "resize" : "fit", @@ -450,7 +450,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Christina Warren", + "name" : "Chriscreama Warren", "screen_name" : "film_girl", "indices" : [ 0, 10 ], "id_str" : "9866582", @@ -483,14 +483,6 @@ Grailbird.data.tweets_2015_01 = "id" : 559930658336686080, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B8VF95UCQAACxfg.png", "sizes" : [ { - "h" : 381, - "resize" : "fit", - "w" : 340 - }, { - "h" : 1147, - "resize" : "fit", - "w" : 1024 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -499,9 +491,17 @@ Grailbird.data.tweets_2015_01 = "resize" : "fit", "w" : 1928 }, { - "h" : 672, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 607 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1828 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 1071 } ], "display_url" : "pic.twitter.com\/orFz8F1Qc5" } ], @@ -542,9 +542,9 @@ Grailbird.data.tweets_2015_01 = "resize" : "fit", "w" : 1024 }, { - "h" : 450, + "h" : 768, "resize" : "fit", - "w" : 600 + "w" : 1024 }, { "h" : 768, "resize" : "fit", @@ -554,9 +554,9 @@ Grailbird.data.tweets_2015_01 = "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 510, "resize" : "fit", - "w" : 340 + "w" : 680 } ], "display_url" : "pic.twitter.com\/X4NrWxSxPm" } ], @@ -984,17 +984,17 @@ Grailbird.data.tweets_2015_01 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/PcdeaQgBfQ" } ], @@ -1031,22 +1031,22 @@ Grailbird.data.tweets_2015_01 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/70kW4gaa39" }, { @@ -1061,22 +1061,22 @@ Grailbird.data.tweets_2015_01 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/70kW4gaa39" }, { @@ -1088,17 +1088,13 @@ Grailbird.data.tweets_2015_01 = "id" : 556167353105256449, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B7fnQs2CEAEs8SM.jpg", "sizes" : [ { + "h" : 1024, + "resize" : "fit", + "w" : 767 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 801, - "resize" : "fit", - "w" : 600 - }, { - "h" : 454, - "resize" : "fit", - "w" : 340 }, { "h" : 1024, "resize" : "fit", @@ -1107,6 +1103,10 @@ Grailbird.data.tweets_2015_01 = "h" : 1024, "resize" : "fit", "w" : 767 + }, { + "h" : 680, + "resize" : "fit", + "w" : 509 } ], "display_url" : "pic.twitter.com\/70kW4gaa39" } ], @@ -1211,7 +1211,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Twin Peaks \uD83E\uDD89", + "name" : "Twin Peaks : - ( ALL", "screen_name" : "ThatsOurWaldo", "indices" : [ 3, 17 ], "id_str" : "237944041", @@ -1226,13 +1226,9 @@ Grailbird.data.tweets_2015_01 = "id" : 556110636787068930, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B7ezrYGCcAIfBqa.jpg", "sizes" : [ { - "h" : 191, + "h" : 674, "resize" : "fit", - "w" : 340 - }, { - "h" : 337, - "resize" : "fit", - "w" : 600 + "w" : 1200 }, { "h" : 674, "resize" : "fit", @@ -1242,9 +1238,13 @@ Grailbird.data.tweets_2015_01 = "resize" : "crop", "w" : 150 }, { - "h" : 575, + "h" : 674, "resize" : "fit", - "w" : 1024 + "w" : 1200 + }, { + "h" : 382, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/BKUoqzhIzZ" } ], @@ -1273,13 +1273,9 @@ Grailbird.data.tweets_2015_01 = "id" : 556110636787068930, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B7ezrYGCcAIfBqa.jpg", "sizes" : [ { - "h" : 191, + "h" : 674, "resize" : "fit", - "w" : 340 - }, { - "h" : 337, - "resize" : "fit", - "w" : 600 + "w" : 1200 }, { "h" : 674, "resize" : "fit", @@ -1289,9 +1285,13 @@ Grailbird.data.tweets_2015_01 = "resize" : "crop", "w" : 150 }, { - "h" : 575, + "h" : 674, "resize" : "fit", - "w" : 1024 + "w" : 1200 + }, { + "h" : 382, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/BKUoqzhIzZ" } ], @@ -1310,11 +1310,11 @@ Grailbird.data.tweets_2015_01 = "id" : 556110638028955648, "created_at" : "2015-01-16 15:28:02 +0000", "user" : { - "name" : "Twin Peaks \uD83E\uDD89", + "name" : "Twin Peaks : - ( ALL", "screen_name" : "ThatsOurWaldo", "protected" : false, "id_str" : "237944041", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845335072257589248\/1FBgp2Me_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/905074364726595584\/iZSzIn7i_normal.jpg", "id" : 237944041, "verified" : false } @@ -1748,7 +1748,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "iter::repeat(\uD83C\uDF55)", + "name" : "shitpost muse", "screen_name" : "steveklabnik", "indices" : [ 0, 13 ], "id_str" : "22386062", @@ -1923,7 +1923,7 @@ Grailbird.data.tweets_2015_01 = "id_str" : "12591", "id" : 12591 }, { - "name" : "\u200Brem", + "name" : "@rem ~ offline \uD83D\uDDA4", "screen_name" : "rem", "indices" : [ 9, 13 ], "id_str" : "648873", @@ -1956,7 +1956,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u200Brem", + "name" : "@rem ~ offline \uD83D\uDDA4", "screen_name" : "rem", "indices" : [ 0, 4 ], "id_str" : "648873", @@ -2138,7 +2138,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter Cohen", + "name" : "Supeternatural Cohen", "screen_name" : "flargh", "indices" : [ 0, 7 ], "id_str" : "2960721", @@ -2210,7 +2210,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter Cohen", + "name" : "Supeternatural Cohen", "screen_name" : "flargh", "indices" : [ 0, 7 ], "id_str" : "2960721", @@ -3174,17 +3174,17 @@ Grailbird.data.tweets_2015_01 = "id" : 551144553357406209, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B6YPDRrCcAEH55z.png", "sizes" : [ { - "h" : 685, + "h" : 455, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { - "h" : 227, + "h" : 802, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { - "h" : 401, + "h" : 888, "resize" : "fit", - "w" : 600 + "w" : 1328 }, { "h" : 150, "resize" : "crop", @@ -3255,7 +3255,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mink ette", + "name" : "Minkbot", "screen_name" : "mink_ette", "indices" : [ 3, 13 ], "id_str" : "24217237", @@ -3285,11 +3285,11 @@ Grailbird.data.tweets_2015_01 = "id" : 550573723317968896, "created_at" : "2015-01-01 08:46:19 +0000", "user" : { - "name" : "Mink ette", + "name" : "Minkbot", "screen_name" : "mink_ette", "protected" : false, "id_str" : "24217237", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793381223787823105\/kUUnZ1kQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916783444138618881\/Qxo-1XiF_normal.jpg", "id" : 24217237, "verified" : false } @@ -3340,7 +3340,7 @@ Grailbird.data.tweets_2015_01 = "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/823672050640416768\/T3Va_rMy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919096611019489280\/eF9MvfqL_normal.jpg", "id" : 658643, "verified" : true } diff --git a/public/tweets/data/js/tweets/2015_02.js b/public/tweets/data/js/tweets/2015_02.js index fab8354..56a7bf8 100755 --- a/public/tweets/data/js/tweets/2015_02.js +++ b/public/tweets/data/js/tweets/2015_02.js @@ -48,17 +48,17 @@ Grailbird.data.tweets_2015_02 = "resize" : "fit", "w" : 968 }, { - "h" : 317, + "h" : 359, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 179, + "h" : 511, "resize" : "fit", - "w" : 340 + "w" : 968 } ], "display_url" : "pic.twitter.com\/EhzL1ymfqs" } ], @@ -95,9 +95,13 @@ Grailbird.data.tweets_2015_02 = "id" : 571377221492801536, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B-3wjj_UAAA7Fs4.jpg", "sizes" : [ { - "h" : 333, + "h" : 377, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 568, + "resize" : "fit", + "w" : 1024 }, { "h" : 150, "resize" : "crop", @@ -106,10 +110,6 @@ Grailbird.data.tweets_2015_02 = "h" : 568, "resize" : "fit", "w" : 1024 - }, { - "h" : 189, - "resize" : "fit", - "w" : 340 }, { "h" : 568, "resize" : "fit", @@ -174,7 +174,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -207,7 +207,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "indices" : [ 3, 14 ], "id_str" : "18553922", @@ -251,11 +251,11 @@ Grailbird.data.tweets_2015_02 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "protected" : false, "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/835519152492273664\/kd9wqo1s_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900845150158630913\/vYNWfyIR_normal.jpg", "id" : 18553922, "verified" : false } @@ -484,22 +484,22 @@ Grailbird.data.tweets_2015_02 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/o2E3cdoUL3" } ], @@ -1046,6 +1046,10 @@ Grailbird.data.tweets_2015_02 = "h" : 1024, "resize" : "fit", "w" : 576 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 }, { "h" : 150, "resize" : "crop", @@ -1054,10 +1058,6 @@ Grailbird.data.tweets_2015_02 = "h" : 1024, "resize" : "fit", "w" : 576 - }, { - "h" : 604, - "resize" : "fit", - "w" : 340 }, { "h" : 1024, "resize" : "fit", @@ -1073,6 +1073,14 @@ Grailbird.data.tweets_2015_02 = "id" : 568258224713781249, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B-Lb2DjCUAEsGMT.jpg", "sizes" : [ { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1080,14 +1088,6 @@ Grailbird.data.tweets_2015_02 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 - }, { - "h" : 800, - "resize" : "fit", - "w" : 600 }, { "h" : 1024, "resize" : "fit", @@ -1299,17 +1299,17 @@ Grailbird.data.tweets_2015_02 = "id" : 567520104997335040, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B-A8h1VCMAAmhbg.jpg", "sizes" : [ { - "h" : 340, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 600, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 1024 }, { "h" : 1024, "resize" : "fit", @@ -1402,7 +1402,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Moren", + "name" : "2017, but forever", "screen_name" : "dmoren", "indices" : [ 0, 7 ], "id_str" : "668243", @@ -1476,10 +1476,6 @@ Grailbird.data.tweets_2015_02 = "h" : 724, "resize" : "fit", "w" : 1024 - }, { - "h" : 240, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -1489,9 +1485,13 @@ Grailbird.data.tweets_2015_02 = "resize" : "fit", "w" : 1024 }, { - "h" : 424, + "h" : 481, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 724, + "resize" : "fit", + "w" : 1024 } ], "display_url" : "pic.twitter.com\/KJ81UTserg" } ], @@ -1517,10 +1517,6 @@ Grailbird.data.tweets_2015_02 = "h" : 724, "resize" : "fit", "w" : 1024 - }, { - "h" : 240, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -1530,9 +1526,13 @@ Grailbird.data.tweets_2015_02 = "resize" : "fit", "w" : 1024 }, { - "h" : 424, + "h" : 481, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 724, + "resize" : "fit", + "w" : 1024 } ], "display_url" : "pic.twitter.com\/KJ81UTserg" } ], @@ -2012,17 +2012,17 @@ Grailbird.data.tweets_2015_02 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/cYDOJxusNf" } ], @@ -2101,21 +2101,21 @@ Grailbird.data.tweets_2015_02 = "resize" : "fit", "w" : 3264 }, { - "h" : 768, + "h" : 510, "resize" : "fit", - "w" : 1024 + "w" : 680 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/0C10cUPMlH" } ], @@ -2197,13 +2197,13 @@ Grailbird.data.tweets_2015_02 = "id_str" : "14977224", "id" : 14977224 }, { - "name" : "so-called snipe \uD83E\uDD19\uD83C\uDFFB", + "name" : "mother of assets \uD83D\uDC3E", "screen_name" : "snipeyhead", "indices" : [ 26, 37 ], "id_str" : "14246782", "id" : 14246782 }, { - "name" : "(\u256F\u00B0\u25A1\u00B0\uFF09\u256F\uFE35 \u253B\u2501\u253B sdo\u0279\u01DD\u01DDq", + "name" : "(\u256F\u00B0\u25A1\u00B0\uFF09\u256F\uFE35\u253B\u2501\u253B u\u028E\u0279 )", "screen_name" : "beerops", "indices" : [ 38, 46 ], "id_str" : "260044118", @@ -2572,7 +2572,7 @@ Grailbird.data.tweets_2015_02 = "screen_name" : "ttscoff", "protected" : false, "id_str" : "777908", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/823369257476046850\/6HuW6Kh8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/876857829017178112\/_0ZjhLmZ_normal.jpg", "id" : 777908, "verified" : true } @@ -2623,7 +2623,7 @@ Grailbird.data.tweets_2015_02 = "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839220483350487040\/1JNTuxrF_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", "id" : 15267898, "verified" : true } @@ -2677,17 +2677,17 @@ Grailbird.data.tweets_2015_02 = "resize" : "fit", "w" : 728 }, { - "h" : 183, + "h" : 222, "resize" : "fit", - "w" : 600 + "w" : 728 }, { "h" : 222, "resize" : "fit", "w" : 728 }, { - "h" : 104, + "h" : 207, "resize" : "fit", - "w" : 340 + "w" : 680 } ], "display_url" : "pic.twitter.com\/ALWhOAilh6" } ], @@ -2704,7 +2704,7 @@ Grailbird.data.tweets_2015_02 = "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839220483350487040\/1JNTuxrF_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", "id" : 15267898, "verified" : true } @@ -2779,7 +2779,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Christina Warren", + "name" : "Chriscreama Warren", "screen_name" : "film_girl", "indices" : [ 62, 72 ], "id_str" : "9866582", @@ -2932,9 +2932,9 @@ Grailbird.data.tweets_2015_02 = "resize" : "fit", "w" : 518 }, { - "h" : 454, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 509 } ], "display_url" : "pic.twitter.com\/0dbCgQNXc1" } ], @@ -2973,9 +2973,9 @@ Grailbird.data.tweets_2015_02 = "resize" : "fit", "w" : 518 }, { - "h" : 454, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 509 } ], "display_url" : "pic.twitter.com\/0dbCgQNXc1" } ], diff --git a/public/tweets/data/js/tweets/2015_03.js b/public/tweets/data/js/tweets/2015_03.js index 71979b5..98685e2 100755 --- a/public/tweets/data/js/tweets/2015_03.js +++ b/public/tweets/data/js/tweets/2015_03.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 3, 19 ], "id_str" : "2436389418", @@ -47,11 +47,11 @@ Grailbird.data.tweets_2015_03 = "in_reply_to_screen_name" : "notch", "in_reply_to_user_id_str" : "63485337", "user" : { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "protected" : false, "id_str" : "2436389418", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855853739747545090\/TQA5rVCn_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919340959514607616\/-7DZSc_y_normal.jpg", "id" : 2436389418, "verified" : false } @@ -77,7 +77,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "63485337", "id" : 63485337 }, { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 11, 27 ], "id_str" : "2436389418", @@ -94,7 +94,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 0, 16 ], "id_str" : "2436389418", @@ -139,7 +139,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 3, 19 ], "id_str" : "2436389418", @@ -178,11 +178,11 @@ Grailbird.data.tweets_2015_03 = "id" : 583000596006903809, "created_at" : "2015-03-31 20:19:08 +0000", "user" : { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "protected" : false, "id_str" : "2436389418", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855853739747545090\/TQA5rVCn_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919340959514607616\/-7DZSc_y_normal.jpg", "id" : 2436389418, "verified" : false } @@ -202,7 +202,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Moren", + "name" : "2017, but forever", "screen_name" : "dmoren", "indices" : [ 3, 10 ], "id_str" : "668243", @@ -229,7 +229,7 @@ Grailbird.data.tweets_2015_03 = "id" : 583004098347339776, "created_at" : "2015-03-31 20:33:03 +0000", "user" : { - "name" : "Dan Moren", + "name" : "2017, but forever", "screen_name" : "dmoren", "protected" : false, "id_str" : "668243", @@ -453,21 +453,21 @@ Grailbird.data.tweets_2015_03 = "id" : 581871235946012672, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CBM4zmOUYAA3aG1.png", "sizes" : [ { - "h" : 397, + "h" : 414, "resize" : "fit", - "w" : 1024 + "w" : 1068 + }, { + "h" : 264, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 132, + "h" : 414, "resize" : "fit", - "w" : 340 - }, { - "h" : 233, - "resize" : "fit", - "w" : 600 + "w" : 1068 }, { "h" : 414, "resize" : "fit", @@ -644,7 +644,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "potch", "protected" : false, "id_str" : "15334840", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/816028902669873153\/xUF21_aO_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919024849132986369\/lFPxE7Hj_normal.jpg", "id" : 15334840, "verified" : false } @@ -1204,7 +1204,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u200Brem", + "name" : "@rem ~ offline \uD83D\uDDA4", "screen_name" : "rem", "indices" : [ 0, 4 ], "id_str" : "648873", @@ -1498,7 +1498,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u200Brem", + "name" : "@rem ~ offline \uD83D\uDDA4", "screen_name" : "rem", "indices" : [ 0, 4 ], "id_str" : "648873", @@ -1664,7 +1664,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Farhad Manjoo \uD83D\uDC23", + "name" : "Farhad Manjoo \uD83C\uDF6D", "screen_name" : "fmanjoo", "indices" : [ 0, 8 ], "id_str" : "2195241", @@ -1930,7 +1930,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "717313", "id" : 717313 }, { - "name" : "Andrew Cunningham", + "name" : "Andrew Pumpkingham \uD83C\uDF83", "screen_name" : "AndrewWrites", "indices" : [ 120, 133 ], "id_str" : "181395652", @@ -2449,7 +2449,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "9660102", "id" : 9660102 }, { - "name" : "Federated Furrow", + "name" : "Ash Furr\uD83C\uDF83w", "screen_name" : "ashfurrow", "indices" : [ 14, 24 ], "id_str" : "15536268", @@ -2531,7 +2531,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "2480079168", "id" : 2480079168 }, { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 44, 60 ], "id_str" : "2436389418", @@ -2630,7 +2630,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/getfalcon.pro\" rel=\"nofollow\"\u003EFalcon Pro 2015\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 36, 52 ], "id_str" : "2436389418", @@ -2746,12 +2746,6 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonas Hejde", - "screen_name" : "JonaHejd", - "indices" : [ 0, 9 ], - "id_str" : "628754911", - "id" : 628754911 - }, { "name" : "Casey Liss", "screen_name" : "caseyliss", "indices" : [ 10, 20 ], @@ -2776,7 +2770,7 @@ Grailbird.data.tweets_2015_03 = "id" : 576493513677758464, "in_reply_to_status_id" : 576480112796925952, "created_at" : "2015-03-13 21:22:19 +0000", - "in_reply_to_screen_name" : "JonaHejd", + "in_reply_to_screen_name" : "jonas_hemgren", "in_reply_to_user_id_str" : "628754911", "user" : { "name" : "Sami Samhuri", @@ -2829,16 +2823,27 @@ Grailbird.data.tweets_2015_03 = }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ ], + "user_mentions" : [ { + "name" : "John Wright", + "screen_name" : "mrjjwright", + "indices" : [ 0, 11 ], + "id_str" : "8408512", + "id" : 8408512 + } ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] }, + "in_reply_to_status_id_str" : "576440417660469249", "geo" : { }, "id_str" : "576440863951204352", + "in_reply_to_user_id" : 8408512, "text" : "@mrjjwright Or even something like the plist editor in Xcode. Or a better text format. Lots of better alternatives.", "id" : 576440863951204352, + "in_reply_to_status_id" : 576440417660469249, "created_at" : "2015-03-13 17:53:06 +0000", + "in_reply_to_screen_name" : "mrjjwright", + "in_reply_to_user_id_str" : "8408512", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -3093,7 +3098,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "mashable", "protected" : false, "id_str" : "972651", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/816703429095538688\/kAo5jTCy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/884451753940451333\/XjbzDyYL_normal.jpg", "id" : 972651, "verified" : true } @@ -3526,9 +3531,9 @@ Grailbird.data.tweets_2015_03 = "resize" : "fit", "w" : 575 }, { - "h" : 605, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 382 } ], "display_url" : "pic.twitter.com\/hiygEE49oR" } ], @@ -3576,9 +3581,9 @@ Grailbird.data.tweets_2015_03 = "resize" : "fit", "w" : 575 }, { - "h" : 605, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 382 } ], "display_url" : "pic.twitter.com\/hiygEE49oR" } ], @@ -4022,7 +4027,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "not Jony Ive", + "name" : "\u1DB0\u1D52\u1D57 Jony Ive", "screen_name" : "JonyIveParody", "indices" : [ 3, 17 ], "id_str" : "1197619002", @@ -4052,11 +4057,11 @@ Grailbird.data.tweets_2015_03 = "id" : 574981932993282051, "created_at" : "2015-03-09 17:15:50 +0000", "user" : { - "name" : "not Jony Ive", + "name" : "\u1DB0\u1D52\u1D57 Jony Ive", "screen_name" : "JonyIveParody", "protected" : false, "id_str" : "1197619002", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853246872936435712\/bZ4FQATN_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/907682304818139139\/vOOsM0Mf_normal.jpg", "id" : 1197619002, "verified" : false } @@ -4206,7 +4211,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -4338,6 +4343,10 @@ Grailbird.data.tweets_2015_03 = "h" : 181, "resize" : "fit", "w" : 457 + }, { + "h" : 181, + "resize" : "fit", + "w" : 457 }, { "h" : 150, "resize" : "crop", @@ -4350,10 +4359,6 @@ Grailbird.data.tweets_2015_03 = "h" : 181, "resize" : "fit", "w" : 457 - }, { - "h" : 135, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/45wtmAtVO5" } ], @@ -4379,6 +4384,10 @@ Grailbird.data.tweets_2015_03 = "h" : 181, "resize" : "fit", "w" : 457 + }, { + "h" : 181, + "resize" : "fit", + "w" : 457 }, { "h" : 150, "resize" : "crop", @@ -4391,10 +4400,6 @@ Grailbird.data.tweets_2015_03 = "h" : 181, "resize" : "fit", "w" : 457 - }, { - "h" : 135, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/45wtmAtVO5" } ], @@ -4562,9 +4567,9 @@ Grailbird.data.tweets_2015_03 = "id" : 573329845523857409, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B_TgdPWUQAEBcEq.png", "sizes" : [ { - "h" : 580, + "h" : 385, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 618, "resize" : "fit", @@ -4574,13 +4579,13 @@ Grailbird.data.tweets_2015_03 = "resize" : "crop", "w" : 150 }, { - "h" : 340, + "h" : 618, "resize" : "fit", - "w" : 600 + "w" : 1092 }, { - "h" : 192, + "h" : 618, "resize" : "fit", - "w" : 340 + "w" : 1092 } ], "display_url" : "pic.twitter.com\/0oC2itOyHN" } ], diff --git a/public/tweets/data/js/tweets/2015_04.js b/public/tweets/data/js/tweets/2015_04.js index 6c4f90c..10aaf9b 100755 --- a/public/tweets/data/js/tweets/2015_04.js +++ b/public/tweets/data/js/tweets/2015_04.js @@ -46,17 +46,13 @@ Grailbird.data.tweets_2015_04 = "id" : 593788779246129152, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CD2Pv6qUEAAJyQA.jpg", "sizes" : [ { - "h" : 317, + "h" : 633, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 652, "resize" : "fit", "w" : 700 - }, { - "h" : 559, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", @@ -65,6 +61,10 @@ Grailbird.data.tweets_2015_04 = "h" : 652, "resize" : "fit", "w" : 700 + }, { + "h" : 652, + "resize" : "fit", + "w" : 700 } ], "display_url" : "pic.twitter.com\/Uc9bDHvDEW" } ], @@ -157,7 +157,7 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "CGP Grey", + "name" : "CGP Grey \uD83D\uDC1D", "screen_name" : "cgpgrey", "indices" : [ 3, 11 ], "id_str" : "176774540", @@ -184,7 +184,7 @@ Grailbird.data.tweets_2015_04 = "id" : 593693675777040384, "created_at" : "2015-04-30 08:29:37 +0000", "user" : { - "name" : "CGP Grey", + "name" : "CGP Grey \uD83D\uDC1D", "screen_name" : "cgpgrey", "protected" : false, "id_str" : "176774540", @@ -269,7 +269,7 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Daniel Farrelly", + "name" : "Jelly", "screen_name" : "jellybeansoup", "indices" : [ 3, 17 ], "id_str" : "17606949", @@ -301,11 +301,11 @@ Grailbird.data.tweets_2015_04 = "in_reply_to_screen_name" : "jellybeansoup", "in_reply_to_user_id_str" : "17606949", "user" : { - "name" : "Daniel Farrelly", + "name" : "Jelly", "screen_name" : "jellybeansoup", "protected" : false, "id_str" : "17606949", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/735056426205249536\/qyYgZSIy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/874091581078355968\/2op5vGjQ_normal.jpg", "id" : 17606949, "verified" : false } @@ -325,7 +325,7 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Daniel Farrelly", + "name" : "Jelly", "screen_name" : "jellybeansoup", "indices" : [ 3, 17 ], "id_str" : "17606949", @@ -364,11 +364,11 @@ Grailbird.data.tweets_2015_04 = "id" : 593539509263859712, "created_at" : "2015-04-29 22:17:01 +0000", "user" : { - "name" : "Daniel Farrelly", + "name" : "Jelly", "screen_name" : "jellybeansoup", "protected" : false, "id_str" : "17606949", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/735056426205249536\/qyYgZSIy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/874091581078355968\/2op5vGjQ_normal.jpg", "id" : 17606949, "verified" : false } @@ -574,8 +574,8 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Louie Mantia", - "screen_name" : "mantia", + "name" : "Hallouieen", + "screen_name" : "Mantia", "indices" : [ 0, 7 ], "id_str" : "41783", "id" : 41783 @@ -592,7 +592,7 @@ Grailbird.data.tweets_2015_04 = "id" : 592341729228955649, "in_reply_to_status_id" : 592340706930266112, "created_at" : "2015-04-26 14:57:28 +0000", - "in_reply_to_screen_name" : "mantia", + "in_reply_to_screen_name" : "Mantia", "in_reply_to_user_id_str" : "41783", "user" : { "name" : "Sami Samhuri", @@ -655,17 +655,13 @@ Grailbird.data.tweets_2015_04 = "id" : 591774301847588865, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CDZnl5jUkAEnmXi.jpg", "sizes" : [ { - "h" : 227, + "h" : 800, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { - "h" : 683, + "h" : 453, "resize" : "fit", - "w" : 1024 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 1365, "resize" : "fit", @@ -674,6 +670,10 @@ Grailbird.data.tweets_2015_04 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1365, + "resize" : "fit", + "w" : 2048 } ], "display_url" : "pic.twitter.com\/P4Cp1OwKD6" } ], @@ -696,17 +696,13 @@ Grailbird.data.tweets_2015_04 = "id" : 591774301847588865, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CDZnl5jUkAEnmXi.jpg", "sizes" : [ { - "h" : 227, + "h" : 800, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { - "h" : 683, + "h" : 453, "resize" : "fit", - "w" : 1024 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 1365, "resize" : "fit", @@ -715,6 +711,10 @@ Grailbird.data.tweets_2015_04 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1365, + "resize" : "fit", + "w" : 2048 } ], "display_url" : "pic.twitter.com\/P4Cp1OwKD6" } ], @@ -751,8 +751,8 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Louie Mantia", - "screen_name" : "mantia", + "name" : "Hallouieen", + "screen_name" : "Mantia", "indices" : [ 0, 7 ], "id_str" : "41783", "id" : 41783 @@ -774,7 +774,7 @@ Grailbird.data.tweets_2015_04 = "id" : 591731495791824896, "in_reply_to_status_id" : 591710268415029248, "created_at" : "2015-04-24 22:32:37 +0000", - "in_reply_to_screen_name" : "mantia", + "in_reply_to_screen_name" : "Mantia", "in_reply_to_user_id_str" : "41783", "user" : { "name" : "Sami Samhuri", @@ -842,7 +842,7 @@ Grailbird.data.tweets_2015_04 = "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839220483350487040\/1JNTuxrF_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", "id" : 15267898, "verified" : true } @@ -863,7 +863,7 @@ Grailbird.data.tweets_2015_04 = "entities" : { "user_mentions" : [ { "name" : "Charlotte Jackson", - "screen_name" : "Lottejackson", + "screen_name" : "lottejackson", "indices" : [ 0, 13 ], "id_str" : "50288691", "id" : 50288691 @@ -886,7 +886,7 @@ Grailbird.data.tweets_2015_04 = "id" : 591301562825322498, "in_reply_to_status_id" : 591211215046713344, "created_at" : "2015-04-23 18:04:13 +0000", - "in_reply_to_screen_name" : "Lottejackson", + "in_reply_to_screen_name" : "lottejackson", "in_reply_to_user_id_str" : "50288691", "user" : { "name" : "Sami Samhuri", @@ -922,14 +922,6 @@ Grailbird.data.tweets_2015_04 = "id" : 591076499534536704, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CDPs8dXWYAAMsjT.jpg", "sizes" : [ { - "h" : 201, - "resize" : "fit", - "w" : 340 - }, { - "h" : 355, - "resize" : "fit", - "w" : 600 - }, { "h" : 556, "resize" : "fit", "w" : 940 @@ -941,6 +933,14 @@ Grailbird.data.tweets_2015_04 = "h" : 556, "resize" : "fit", "w" : 940 + }, { + "h" : 556, + "resize" : "fit", + "w" : 940 + }, { + "h" : 402, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/OwWzLztRjS" } ], @@ -969,14 +969,6 @@ Grailbird.data.tweets_2015_04 = "id" : 591076499534536704, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CDPs8dXWYAAMsjT.jpg", "sizes" : [ { - "h" : 201, - "resize" : "fit", - "w" : 340 - }, { - "h" : 355, - "resize" : "fit", - "w" : 600 - }, { "h" : 556, "resize" : "fit", "w" : 940 @@ -988,6 +980,14 @@ Grailbird.data.tweets_2015_04 = "h" : 556, "resize" : "fit", "w" : 940 + }, { + "h" : 556, + "resize" : "fit", + "w" : 940 + }, { + "h" : 402, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/OwWzLztRjS" } ], @@ -1039,9 +1039,13 @@ Grailbird.data.tweets_2015_04 = "id" : 590955126216478720, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CDN-jmhUUAAkYBw.jpg", "sizes" : [ { - "h" : 675, + "h" : 791, "resize" : "fit", - "w" : 1024 + "w" : 1200 + }, { + "h" : 819, + "resize" : "fit", + "w" : 1242 }, { "h" : 150, "resize" : "crop", @@ -1051,13 +1055,9 @@ Grailbird.data.tweets_2015_04 = "resize" : "fit", "w" : 1242 }, { - "h" : 224, + "h" : 448, "resize" : "fit", - "w" : 340 - }, { - "h" : 396, - "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/7nBoj8bXqI" } ], @@ -1268,9 +1268,9 @@ Grailbird.data.tweets_2015_04 = "id" : 506975849107578880, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bwkj2UPCYAACNwL.png", "sizes" : [ { - "h" : 64, + "h" : 95, "resize" : "fit", - "w" : 340 + "w" : 503 }, { "h" : 95, "resize" : "fit", @@ -1309,9 +1309,9 @@ Grailbird.data.tweets_2015_04 = "id" : 506975849107578880, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bwkj2UPCYAACNwL.png", "sizes" : [ { - "h" : 64, + "h" : 95, "resize" : "fit", - "w" : 340 + "w" : 503 }, { "h" : 95, "resize" : "fit", @@ -1522,9 +1522,9 @@ Grailbird.data.tweets_2015_04 = "resize" : "fit", "w" : 600 }, { - "h" : 170, + "h" : 300, "resize" : "fit", - "w" : 340 + "w" : 600 } ], "display_url" : "pic.twitter.com\/eEz6bCgSEX" } ], @@ -1568,9 +1568,9 @@ Grailbird.data.tweets_2015_04 = "resize" : "fit", "w" : 600 }, { - "h" : 170, + "h" : 300, "resize" : "fit", - "w" : 340 + "w" : 600 } ], "display_url" : "pic.twitter.com\/eEz6bCgSEX" } ], @@ -1660,7 +1660,7 @@ Grailbird.data.tweets_2015_04 = "screen_name" : "cheerskevin", "protected" : false, "id_str" : "14308739", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/633125665353650176\/olg7kEI1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/873979568515825664\/no1Wh9Fd_normal.jpg", "id" : 14308739, "verified" : false } @@ -1689,17 +1689,17 @@ Grailbird.data.tweets_2015_04 = "id" : 588943690514608128, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCxZKonUsAAte1R.jpg", "sizes" : [ { - "h" : 576, + "h" : 675, "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { - "h" : 191, + "h" : 383, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 338, + "h" : 1152, "resize" : "fit", - "w" : 600 + "w" : 2048 }, { "h" : 150, "resize" : "crop", @@ -1793,22 +1793,22 @@ Grailbird.data.tweets_2015_04 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/aFvRuDvXdf" } ], @@ -1921,6 +1921,10 @@ Grailbird.data.tweets_2015_04 = "id" : 588393168544006146, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCpkeCdVAAICT8g.jpg", "sizes" : [ { + "h" : 465, + "resize" : "fit", + "w" : 680 + }, { "h" : 850, "resize" : "fit", "w" : 1242 @@ -1929,17 +1933,13 @@ Grailbird.data.tweets_2015_04 = "resize" : "crop", "w" : 150 }, { - "h" : 701, + "h" : 821, "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { - "h" : 411, + "h" : 850, "resize" : "fit", - "w" : 600 - }, { - "h" : 233, - "resize" : "fit", - "w" : 340 + "w" : 1242 } ], "display_url" : "pic.twitter.com\/rAFLIZ1XOH" } ], @@ -2063,7 +2063,7 @@ Grailbird.data.tweets_2015_04 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/799257118020947969\/cMmlpktU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", "id" : 14169916, "verified" : false } @@ -2114,7 +2114,7 @@ Grailbird.data.tweets_2015_04 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/799257118020947969\/cMmlpktU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", "id" : 14169916, "verified" : false } @@ -2334,10 +2334,6 @@ Grailbird.data.tweets_2015_04 = "id" : 587936966110486528, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCjFjj9WIAAfqPS.png", "sizes" : [ { - "h" : 437, - "resize" : "fit", - "w" : 340 - }, { "h" : 730, "resize" : "fit", "w" : 568 @@ -2349,6 +2345,10 @@ Grailbird.data.tweets_2015_04 = "h" : 730, "resize" : "fit", "w" : 568 + }, { + "h" : 680, + "resize" : "fit", + "w" : 529 }, { "h" : 730, "resize" : "fit", @@ -2420,17 +2420,17 @@ Grailbird.data.tweets_2015_04 = "id" : 587881294098538496, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCiS7BjXIAArYFN.png", "sizes" : [ { - "h" : 59, + "h" : 119, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 128, "resize" : "crop", "w" : 128 }, { - "h" : 105, + "h" : 128, "resize" : "fit", - "w" : 600 + "w" : 734 }, { "h" : 128, "resize" : "fit", @@ -2511,17 +2511,13 @@ Grailbird.data.tweets_2015_04 = "id" : 587728220377710592, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCgHs9gWAAA5pUK.jpg", "sizes" : [ { - "h" : 227, + "h" : 800, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { - "h" : 683, + "h" : 453, "resize" : "fit", - "w" : 1024 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -2530,6 +2526,10 @@ Grailbird.data.tweets_2015_04 = "h" : 1200, "resize" : "fit", "w" : 1800 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 1800 } ], "display_url" : "pic.twitter.com\/nWkK3MevtK" } ], @@ -2571,8 +2571,8 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Louie Mantia", - "screen_name" : "mantia", + "name" : "Hallouieen", + "screen_name" : "Mantia", "indices" : [ 0, 7 ], "id_str" : "41783", "id" : 41783 @@ -2589,7 +2589,7 @@ Grailbird.data.tweets_2015_04 = "id" : 587832757276938240, "in_reply_to_status_id" : 587752035275014144, "created_at" : "2015-04-14 04:20:25 +0000", - "in_reply_to_screen_name" : "mantia", + "in_reply_to_screen_name" : "Mantia", "in_reply_to_user_id_str" : "41783", "user" : { "name" : "Sami Samhuri", @@ -2613,9 +2613,9 @@ Grailbird.data.tweets_2015_04 = "id" : 587281767461076992, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCZxp-yUwAACTqu.jpg", "sizes" : [ { - "h" : 534, + "h" : 901, "resize" : "fit", - "w" : 600 + "w" : 1012 }, { "h" : 901, "resize" : "fit", @@ -2624,14 +2624,14 @@ Grailbird.data.tweets_2015_04 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 605, + "resize" : "fit", + "w" : 680 }, { "h" : 901, "resize" : "fit", "w" : 1012 - }, { - "h" : 303, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/pgz4ObAFp3" } ], @@ -2670,17 +2670,17 @@ Grailbird.data.tweets_2015_04 = "id" : 587117560513961985, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCXcT4PUIAE6E65.jpg", "sizes" : [ { - "h" : 576, + "h" : 675, "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { - "h" : 191, + "h" : 383, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 338, + "h" : 1152, "resize" : "fit", - "w" : 600 + "w" : 2048 }, { "h" : 150, "resize" : "crop", @@ -2749,9 +2749,9 @@ Grailbird.data.tweets_2015_04 = "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 350, "resize" : "fit", - "w" : 340 + "w" : 466 } ], "display_url" : "pic.twitter.com\/M62SLWw057" } ], @@ -2793,9 +2793,9 @@ Grailbird.data.tweets_2015_04 = "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 350, "resize" : "fit", - "w" : 340 + "w" : 466 } ], "display_url" : "pic.twitter.com\/M62SLWw057" } ], @@ -2817,7 +2817,7 @@ Grailbird.data.tweets_2015_04 = "id_str" : "103920270", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853068030657519616\/_kUL8qw9_normal.jpg", "id" : 103920270, - "verified" : false + "verified" : true } }, "id" : 586942882713481216, @@ -3094,21 +3094,21 @@ Grailbird.data.tweets_2015_04 = "id" : 586217623219601408, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCKp0okUAAAj7UN.jpg", "sizes" : [ { - "h" : 245, + "h" : 864, "resize" : "fit", - "w" : 340 - }, { - "h" : 432, - "resize" : "fit", - "w" : 600 + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 737, + "h" : 489, "resize" : "fit", - "w" : 1024 + "w" : 680 + }, { + "h" : 1130, + "resize" : "fit", + "w" : 1570 }, { "h" : 1130, "resize" : "fit", @@ -3422,7 +3422,7 @@ Grailbird.data.tweets_2015_04 = "screen_name" : "levie", "protected" : false, "id_str" : "914061", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1626898956\/twitter_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/885529357904510976\/tM0vLiYS_normal.jpg", "id" : 914061, "verified" : true } diff --git a/public/tweets/data/js/tweets/2015_05.js b/public/tweets/data/js/tweets/2015_05.js index 9605493..feb54ff 100755 --- a/public/tweets/data/js/tweets/2015_05.js +++ b/public/tweets/data/js/tweets/2015_05.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Fight nazis or GTFO", + "name" : "\uD83D\uDC7B Phlegm Parrot", "screen_name" : "gembarrett", "indices" : [ 3, 14 ], "id_str" : "43727347", @@ -35,7 +35,7 @@ Grailbird.data.tweets_2015_05 = "in_reply_to_screen_name" : "gembarrett", "in_reply_to_user_id_str" : "43727347", "user" : { - "name" : "Fight nazis or GTFO", + "name" : "\uD83D\uDC7B Phlegm Parrot", "screen_name" : "gembarrett", "protected" : false, "id_str" : "43727347", @@ -507,13 +507,13 @@ Grailbird.data.tweets_2015_05 = "id" : 603610087945469952, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CGB0LUrVAAAQF_j.jpg", "sizes" : [ { - "h" : 568, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 407 }, { - "h" : 1003, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1225 }, { "h" : 150, "resize" : "crop", @@ -523,9 +523,9 @@ Grailbird.data.tweets_2015_05 = "resize" : "fit", "w" : 1500 }, { - "h" : 1712, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 718 } ], "display_url" : "pic.twitter.com\/793aFmqtr5" } ], @@ -548,13 +548,13 @@ Grailbird.data.tweets_2015_05 = "id" : 603610087945469952, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CGB0LUrVAAAQF_j.jpg", "sizes" : [ { - "h" : 568, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 407 }, { - "h" : 1003, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1225 }, { "h" : 150, "resize" : "crop", @@ -564,9 +564,9 @@ Grailbird.data.tweets_2015_05 = "resize" : "fit", "w" : 1500 }, { - "h" : 1712, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 718 } ], "display_url" : "pic.twitter.com\/793aFmqtr5" } ], @@ -720,25 +720,25 @@ Grailbird.data.tweets_2015_05 = "id" : 603280027585744897, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CF9H_SBWEAEYnHK.png", "sizes" : [ { - "h" : 437, + "h" : 1491, "resize" : "fit", - "w" : 600 + "w" : 2048 + }, { + "h" : 873, + "resize" : "fit", + "w" : 1200 }, { "h" : 1936, "resize" : "fit", "w" : 2660 }, { - "h" : 247, + "h" : 495, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 745, - "resize" : "fit", - "w" : 1024 } ], "display_url" : "pic.twitter.com\/u9MpucaegI" } ], @@ -761,25 +761,25 @@ Grailbird.data.tweets_2015_05 = "id" : 603280027585744897, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CF9H_SBWEAEYnHK.png", "sizes" : [ { - "h" : 437, + "h" : 1491, "resize" : "fit", - "w" : 600 + "w" : 2048 + }, { + "h" : 873, + "resize" : "fit", + "w" : 1200 }, { "h" : 1936, "resize" : "fit", "w" : 2660 }, { - "h" : 247, + "h" : 495, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 745, - "resize" : "fit", - "w" : 1024 } ], "display_url" : "pic.twitter.com\/u9MpucaegI" } ], @@ -1349,10 +1349,6 @@ Grailbird.data.tweets_2015_05 = "h" : 603, "resize" : "fit", "w" : 411 - }, { - "h" : 499, - "resize" : "fit", - "w" : 340 }, { "h" : 603, "resize" : "fit", @@ -1361,6 +1357,10 @@ Grailbird.data.tweets_2015_05 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 603, + "resize" : "fit", + "w" : 411 } ], "display_url" : "pic.twitter.com\/ugflPGfaAL" } ], @@ -1438,25 +1438,25 @@ Grailbird.data.tweets_2015_05 = "id" : 601737235625480193, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CFnM0-GVEAE_67Q.jpg", "sizes" : [ { - "h" : 1067, + "h" : 1200, "resize" : "fit", - "w" : 600 + "w" : 675 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 604, + "h" : 2048, "resize" : "fit", - "w" : 340 - }, { - "h" : 1820, - "resize" : "fit", - "w" : 1024 + "w" : 1152 }, { "h" : 2208, "resize" : "fit", "w" : 1242 + }, { + "h" : 680, + "resize" : "fit", + "w" : 382 } ], "display_url" : "pic.twitter.com\/MVPxwGm448" } ], @@ -1545,7 +1545,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "cocoalabs", "protected" : false, "id_str" : "689183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855292003759734784\/d3317_B3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903131024883818496\/h1dkH1bj_normal.jpg", "id" : 689183, "verified" : false } @@ -1725,25 +1725,25 @@ Grailbird.data.tweets_2015_05 = "id" : 600645885375094784, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CFXsQBmVIAAQJ6i.png", "sizes" : [ { - "h" : 192, - "resize" : "fit", - "w" : 340 - }, { - "h" : 338, - "resize" : "fit", - "w" : 600 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { + "h" : 676, + "resize" : "fit", + "w" : 1200 }, { "h" : 692, "resize" : "fit", "w" : 1228 }, { - "h" : 577, + "h" : 692, "resize" : "fit", - "w" : 1024 + "w" : 1228 } ], "display_url" : "pic.twitter.com\/B3bZbf6dc6" } ], @@ -1962,22 +1962,22 @@ Grailbird.data.tweets_2015_05 = "h" : 492, "resize" : "fit", "w" : 750 + }, { + "h" : 492, + "resize" : "fit", + "w" : 750 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 223, - "resize" : "fit", - "w" : 340 - }, { - "h" : 394, - "resize" : "fit", - "w" : 600 }, { "h" : 492, "resize" : "fit", "w" : 750 + }, { + "h" : 446, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/g8xqWm7QPQ" } ], @@ -2003,22 +2003,22 @@ Grailbird.data.tweets_2015_05 = "h" : 492, "resize" : "fit", "w" : 750 + }, { + "h" : 492, + "resize" : "fit", + "w" : 750 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 223, - "resize" : "fit", - "w" : 340 - }, { - "h" : 394, - "resize" : "fit", - "w" : 600 }, { "h" : 492, "resize" : "fit", "w" : 750 + }, { + "h" : 446, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/g8xqWm7QPQ" } ], @@ -2210,7 +2210,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "jviereck", "protected" : false, "id_str" : "90029379", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000160543052\/043964b59ea190ca4265a518e392598f_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916144810439860226\/vPDyhPPB_normal.jpg", "id" : 90029379, "verified" : false } @@ -2278,7 +2278,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "ericclemmons", "protected" : false, "id_str" : "14457722", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/617160371216842752\/TQ_Bfpkz_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/889655892026806272\/_5zPFLI-_normal.jpg", "id" : 14457722, "verified" : false } @@ -2346,7 +2346,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "AaronKalair", "protected" : false, "id_str" : "10909152", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2514166961\/776e58g41szi60ej52pt_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/896490611590680577\/OvDeL_Um_normal.jpg", "id" : 10909152, "verified" : false } @@ -2672,13 +2672,9 @@ Grailbird.data.tweets_2015_05 = "id" : 599714012612419584, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CFKct5CWYAAddOg.jpg", "sizes" : [ { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 + "w" : 2048 }, { "h" : 2448, "resize" : "fit", @@ -2688,9 +2684,13 @@ Grailbird.data.tweets_2015_05 = "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 510, "resize" : "fit", - "w" : 340 + "w" : 680 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 } ], "display_url" : "pic.twitter.com\/DSEN9BE6vK" } ], @@ -2757,13 +2757,9 @@ Grailbird.data.tweets_2015_05 = "id" : 599439118167248896, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CFGis7bVEAAkjkn.png", "sizes" : [ { - "h" : 223, + "h" : 462, "resize" : "fit", - "w" : 600 - }, { - "h" : 381, - "resize" : "fit", - "w" : 1024 + "w" : 1242 }, { "h" : 150, "resize" : "crop", @@ -2773,9 +2769,13 @@ Grailbird.data.tweets_2015_05 = "resize" : "fit", "w" : 1242 }, { - "h" : 126, + "h" : 253, "resize" : "fit", - "w" : 340 + "w" : 680 + }, { + "h" : 446, + "resize" : "fit", + "w" : 1200 } ], "display_url" : "pic.twitter.com\/wMLkI0yG0D" } ], @@ -3240,25 +3240,25 @@ Grailbird.data.tweets_2015_05 = "id" : 597014482360078339, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CEkFgjLWEAM8hDj.png", "sizes" : [ { - "h" : 357, - "resize" : "fit", - "w" : 340 - }, { - "h" : 1075, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 630, - "resize" : "fit", - "w" : 600 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 1143 }, { "h" : 2776, "resize" : "fit", "w" : 2644 + }, { + "h" : 680, + "resize" : "fit", + "w" : 648 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1951 } ], "display_url" : "pic.twitter.com\/dk9coxDOi5" } ], @@ -3488,25 +3488,25 @@ Grailbird.data.tweets_2015_05 = "id" : 597312544135581697, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CEoUmB0WEAEpL6U.jpg", "sizes" : [ { - "h" : 227, - "resize" : "fit", - "w" : 340 - }, { "h" : 683, "resize" : "fit", "w" : 1024 + }, { + "h" : 454, + "resize" : "fit", + "w" : 680 }, { "h" : 683, "resize" : "fit", "w" : 1024 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 683, + "resize" : "fit", + "w" : 1024 } ], "display_url" : "pic.twitter.com\/3yczXTgXJc" } ], @@ -3529,25 +3529,25 @@ Grailbird.data.tweets_2015_05 = "id" : 597312544135581697, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CEoUmB0WEAEpL6U.jpg", "sizes" : [ { - "h" : 227, - "resize" : "fit", - "w" : 340 - }, { "h" : 683, "resize" : "fit", "w" : 1024 + }, { + "h" : 454, + "resize" : "fit", + "w" : 680 }, { "h" : 683, "resize" : "fit", "w" : 1024 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 683, + "resize" : "fit", + "w" : 1024 } ], "display_url" : "pic.twitter.com\/3yczXTgXJc" } ], @@ -3826,7 +3826,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateDelegate", + "name" : "Slightly Spooky Nate", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -3870,7 +3870,7 @@ Grailbird.data.tweets_2015_05 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "NSNateDelegate", + "name" : "Slightly Spooky Nate", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -3977,7 +3977,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "633308082", "id" : 633308082 }, { - "name" : "P\u00E1draig", + "name" : "Clawed Drake", "screen_name" : "Padraig", "indices" : [ 19, 27 ], "id_str" : "7312992", @@ -3994,7 +3994,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "P\u00E1draig", + "name" : "Clawed Drake", "screen_name" : "Padraig", "indices" : [ 0, 8 ], "id_str" : "7312992", @@ -4180,21 +4180,21 @@ Grailbird.data.tweets_2015_05 = "id" : 595499184012177408, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CEOjWk8UsAAoX99.jpg", "sizes" : [ { - "h" : 576, + "h" : 675, "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { - "h" : 191, + "h" : 1152, "resize" : "fit", - "w" : 340 - }, { - "h" : 337, - "resize" : "fit", - "w" : 600 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 382, + "resize" : "fit", + "w" : 680 }, { "h" : 1455, "resize" : "fit", @@ -4331,7 +4331,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "cheerskevin", "protected" : false, "id_str" : "14308739", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/633125665353650176\/olg7kEI1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/873979568515825664\/no1Wh9Fd_normal.jpg", "id" : 14308739, "verified" : false } @@ -4392,7 +4392,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "cheerskevin", "protected" : false, "id_str" : "14308739", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/633125665353650176\/olg7kEI1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/873979568515825664\/no1Wh9Fd_normal.jpg", "id" : 14308739, "verified" : false } @@ -4412,7 +4412,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sabrina", + "name" : "Sabrina but Spooky\uD83D\uDC7B", "screen_name" : "NerdyAndQuirky", "indices" : [ 3, 18 ], "id_str" : "295418725", @@ -4456,11 +4456,11 @@ Grailbird.data.tweets_2015_05 = "id" : 595046432295546880, "created_at" : "2015-05-04 02:04:59 +0000", "user" : { - "name" : "Sabrina", + "name" : "Sabrina but Spooky\uD83D\uDC7B", "screen_name" : "NerdyAndQuirky", "protected" : false, "id_str" : "295418725", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/817866195328188416\/2arRNip8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903617970320048128\/NiRBOuw__normal.jpg", "id" : 295418725, "verified" : false } @@ -4689,10 +4689,6 @@ Grailbird.data.tweets_2015_05 = "id" : 594485854493495296, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CEAJvCUUUAAUo_A.png", "sizes" : [ { - "h" : 94, - "resize" : "fit", - "w" : 340 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4701,9 +4697,13 @@ Grailbird.data.tweets_2015_05 = "resize" : "fit", "w" : 986 }, { - "h" : 166, + "h" : 272, "resize" : "fit", - "w" : 600 + "w" : 986 + }, { + "h" : 188, + "resize" : "fit", + "w" : 680 }, { "h" : 272, "resize" : "fit", @@ -4738,7 +4738,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "193929442", "id" : 193929442 }, { - "name" : "\uD83D\uDE37 \uD83C\uDF55", + "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 16, 24 ], "id_str" : "11375732", @@ -4788,17 +4788,17 @@ Grailbird.data.tweets_2015_05 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/oPkMk9xQeX" } ], @@ -4860,7 +4860,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } diff --git a/public/tweets/data/js/tweets/2015_06.js b/public/tweets/data/js/tweets/2015_06.js index ad5dbd7..cfebe35 100755 --- a/public/tweets/data/js/tweets/2015_06.js +++ b/public/tweets/data/js/tweets/2015_06.js @@ -34,7 +34,7 @@ Grailbird.data.tweets_2015_06 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793501897030152192\/aMAAYCvY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", "id" : 36183, "verified" : false } @@ -96,17 +96,9 @@ Grailbird.data.tweets_2015_06 = "id" : 615009667354234880, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CIj0CLQUkAAJ4Hk.jpg", "sizes" : [ { - "h" : 383, + "h" : 765, "resize" : "fit", - "w" : 600 - }, { - "h" : 217, - "resize" : "fit", - "w" : 340 - }, { - "h" : 653, - "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { "h" : 150, "resize" : "crop", @@ -115,6 +107,14 @@ Grailbird.data.tweets_2015_06 = "h" : 1147, "resize" : "fit", "w" : 1799 + }, { + "h" : 1147, + "resize" : "fit", + "w" : 1799 + }, { + "h" : 434, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/lCOUE2Qbnn" } ], @@ -175,25 +175,25 @@ Grailbird.data.tweets_2015_06 = "id" : 614726186179006464, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CIfyNZlUkAAtxH9.png", "sizes" : [ { - "h" : 142, + "h" : 594, "resize" : "fit", - "w" : 340 + "w" : 1424 + }, { + "h" : 501, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 250, + "h" : 284, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 594, "resize" : "fit", "w" : 1424 - }, { - "h" : 427, - "resize" : "fit", - "w" : 1024 } ], "display_url" : "pic.twitter.com\/kNDiZNikU4" } ], @@ -505,6 +505,10 @@ Grailbird.data.tweets_2015_06 = "id" : 611789886908051456, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CH2DqSZUsAA370U.png", "sizes" : [ { + "h" : 466, + "resize" : "fit", + "w" : 606 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -513,13 +517,9 @@ Grailbird.data.tweets_2015_06 = "resize" : "fit", "w" : 606 }, { - "h" : 261, + "h" : 466, "resize" : "fit", - "w" : 340 - }, { - "h" : 461, - "resize" : "fit", - "w" : 600 + "w" : 606 }, { "h" : 466, "resize" : "fit", @@ -548,7 +548,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chris Bailey", + "name" : "CTB", "screen_name" : "ctbails", "indices" : [ 0, 8 ], "id_str" : "122277911", @@ -624,7 +624,7 @@ Grailbird.data.tweets_2015_06 = "screen_name" : "toddthomas", "protected" : false, "id_str" : "14650563", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/606493647337422848\/YPKyai09_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915236176415485952\/IY4ox7mK_normal.jpg", "id" : 14650563, "verified" : false } @@ -753,7 +753,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "CGP Grey", + "name" : "CGP Grey \uD83D\uDC1D", "screen_name" : "cgpgrey", "indices" : [ 3, 11 ], "id_str" : "176774540", @@ -797,7 +797,7 @@ Grailbird.data.tweets_2015_06 = "in_reply_to_screen_name" : "royalaid", "in_reply_to_user_id_str" : "21265205", "user" : { - "name" : "CGP Grey", + "name" : "CGP Grey \uD83D\uDC1D", "screen_name" : "cgpgrey", "protected" : false, "id_str" : "176774540", @@ -830,9 +830,9 @@ Grailbird.data.tweets_2015_06 = "id" : 610643302778474498, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CHlw2TqVEAIH1vh.png", "sizes" : [ { - "h" : 107, + "h" : 214, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -846,9 +846,9 @@ Grailbird.data.tweets_2015_06 = "resize" : "fit", "w" : 996 }, { - "h" : 189, + "h" : 314, "resize" : "fit", - "w" : 600 + "w" : 996 } ], "display_url" : "pic.twitter.com\/TZ4Ao4wNxK" } ], @@ -1259,7 +1259,7 @@ Grailbird.data.tweets_2015_06 = "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839220483350487040\/1JNTuxrF_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", "id" : 15267898, "verified" : true } @@ -1410,7 +1410,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "donut @ me", + "name" : "spooking my best", "screen_name" : "dcseifert", "indices" : [ 0, 10 ], "id_str" : "63025801", @@ -1482,7 +1482,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Pascal Hartig", + "name" : "Pascal Haunted \uD83D\uDC80", "screen_name" : "passy", "indices" : [ 0, 6 ], "id_str" : "14383077", @@ -1746,7 +1746,7 @@ Grailbird.data.tweets_2015_06 = "screen_name" : "clattner_llvm", "protected" : false, "id_str" : "2543588034", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/785316272825249792\/jX78g-6c_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916821795008688128\/yONBAVaZ_normal.jpg", "id" : 2543588034, "verified" : false } @@ -1810,7 +1810,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Nate Cook \uD83D\uDE05", + "name" : "Nate Cook \uD83C\uDF42", "screen_name" : "nnnnnnnn", "indices" : [ 3, 12 ], "id_str" : "4365311", @@ -1837,11 +1837,11 @@ Grailbird.data.tweets_2015_06 = "id" : 607986574391934977, "created_at" : "2015-06-08 19:04:29 +0000", "user" : { - "name" : "Nate Cook \uD83D\uDE05", + "name" : "Nate Cook \uD83C\uDF42", "screen_name" : "nnnnnnnn", "protected" : false, "id_str" : "4365311", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/852186142787211264\/L86wrLUH_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/875563148496879616\/8tIboYsW_normal.jpg", "id" : 4365311, "verified" : false } @@ -1883,7 +1883,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Patrick McCarron", + "name" : "PaTrick-or-Treat \uD83C\uDF83", "screen_name" : "McCarron", "indices" : [ 3, 12 ], "id_str" : "770391", @@ -1910,11 +1910,11 @@ Grailbird.data.tweets_2015_06 = "id" : 607969625880424448, "created_at" : "2015-06-08 17:57:08 +0000", "user" : { - "name" : "Patrick McCarron", + "name" : "PaTrick-or-Treat \uD83C\uDF83", "screen_name" : "McCarron", "protected" : false, "id_str" : "770391", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/830904347085021184\/_EBlj6Ic_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903007055266664448\/r3OelSF9_normal.jpg", "id" : 770391, "verified" : false } @@ -1983,9 +1983,9 @@ Grailbird.data.tweets_2015_06 = "resize" : "fit", "w" : 599 }, { - "h" : 160, + "h" : 282, "resize" : "fit", - "w" : 340 + "w" : 599 }, { "h" : 282, "resize" : "fit", @@ -2024,9 +2024,9 @@ Grailbird.data.tweets_2015_06 = "resize" : "fit", "w" : 599 }, { - "h" : 160, + "h" : 282, "resize" : "fit", - "w" : 340 + "w" : 599 }, { "h" : 282, "resize" : "fit", @@ -2250,7 +2250,7 @@ Grailbird.data.tweets_2015_06 = "screen_name" : "JohnPaczkowski", "protected" : false, "id_str" : "13475802", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/810316312673157120\/b_dI6TYv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/911080600089509888\/C_pyYpKp_normal.jpg", "id" : 13475802, "verified" : true } diff --git a/public/tweets/data/js/tweets/2015_07.js b/public/tweets/data/js/tweets/2015_07.js index 3bd6cfd..00f59ee 100755 --- a/public/tweets/data/js/tweets/2015_07.js +++ b/public/tweets/data/js/tweets/2015_07.js @@ -54,7 +54,7 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Stephan Seidt", + "name" : "Stephan Seidt \uD83E\uDD68\uD83E\uDDD0", "screen_name" : "evilhackerdude", "indices" : [ 0, 15 ], "id_str" : "15150116", @@ -81,25 +81,25 @@ Grailbird.data.tweets_2015_07 = "id" : 626907381209759744, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CLM48RQUAAABlFO.png", "sizes" : [ { - "h" : 453, + "h" : 2048, "resize" : "fit", - "w" : 340 + "w" : 1536 }, { "h" : 2048, "resize" : "fit", "w" : 1536 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 900 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 1365, + "h" : 680, "resize" : "fit", - "w" : 1024 - }, { - "h" : 800, - "resize" : "fit", - "w" : 600 + "w" : 510 } ], "display_url" : "pic.twitter.com\/ypy06FK0SH" } ], @@ -189,25 +189,25 @@ Grailbird.data.tweets_2015_07 = "id" : 626904853109870592, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CLM2pHWVEAAqGC8.jpg", "sizes" : [ { + "h" : 329, + "resize" : "fit", + "w" : 1088 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 310, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 103, - "resize" : "fit", - "w" : 340 }, { "h" : 329, "resize" : "fit", "w" : 1088 }, { - "h" : 181, + "h" : 329, "resize" : "fit", - "w" : 600 + "w" : 1088 + }, { + "h" : 206, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/oubFlVJEiZ" } ], @@ -415,25 +415,25 @@ Grailbird.data.tweets_2015_07 = "id" : 625392865447809024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CK3Xf2YUkAA9PQX.jpg", "sizes" : [ { - "h" : 455, + "h" : 909, "resize" : "fit", - "w" : 600 + "w" : 1200 }, { "h" : 2388, "resize" : "fit", "w" : 3151 }, { - "h" : 776, + "h" : 1552, "resize" : "fit", - "w" : 1024 - }, { - "h" : 258, - "resize" : "fit", - "w" : 340 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 515, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/ntZlf6CccX" } ], @@ -610,7 +610,7 @@ Grailbird.data.tweets_2015_07 = "id_str" : "717313", "id" : 717313 }, { - "name" : "Andrew Cunningham", + "name" : "Andrew Pumpkingham \uD83C\uDF83", "screen_name" : "AndrewWrites", "indices" : [ 109, 122 ], "id_str" : "181395652", @@ -632,7 +632,7 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/arstechnica.com\" rel=\"nofollow\"\u003EArs tweetbot\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Andrew Cunningham", + "name" : "Andrew Pumpkingham \uD83C\uDF83", "screen_name" : "AndrewWrites", "indices" : [ 92, 105 ], "id_str" : "181395652", @@ -863,9 +863,9 @@ Grailbird.data.tweets_2015_07 = "id" : 621697557102661632, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CKC2omDVEAAE_hP.jpg", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 900 }, { "h" : 3264, "resize" : "fit", @@ -875,13 +875,13 @@ Grailbird.data.tweets_2015_07 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1536 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/I78fodjehh" } ], @@ -932,25 +932,25 @@ Grailbird.data.tweets_2015_07 = "id" : 621506433264160769, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CKAIzuRUkAE67_I.jpg", "sizes" : [ { - "h" : 1365, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 900 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 2048, "resize" : "fit", - "w" : 600 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 + "w" : 1536 }, { "h" : 4096, "resize" : "fit", "w" : 3072 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 } ], "display_url" : "pic.twitter.com\/vhx2LzHqEh" } ], @@ -1294,7 +1294,7 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateDelegate", + "name" : "Slightly Spooky Nate", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -1338,7 +1338,7 @@ Grailbird.data.tweets_2015_07 = "in_reply_to_screen_name" : "bthdonohue", "in_reply_to_user_id_str" : "337167459", "user" : { - "name" : "NSNateDelegate", + "name" : "Slightly Spooky Nate", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -1362,7 +1362,7 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateDelegate", + "name" : "Slightly Spooky Nate", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -1389,7 +1389,7 @@ Grailbird.data.tweets_2015_07 = "id" : 618581390213316608, "created_at" : "2015-07-08 00:44:30 +0000", "user" : { - "name" : "NSNateDelegate", + "name" : "Slightly Spooky Nate", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -1422,17 +1422,9 @@ Grailbird.data.tweets_2015_07 = "id" : 617833889055137792, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CJL8pg9UYAAaCFQ.png", "sizes" : [ { - "h" : 328, + "h" : 590, "resize" : "fit", - "w" : 600 - }, { - "h" : 186, - "resize" : "fit", - "w" : 340 - }, { - "h" : 559, - "resize" : "fit", - "w" : 1024 + "w" : 1080 }, { "h" : 590, "resize" : "fit", @@ -1441,6 +1433,14 @@ Grailbird.data.tweets_2015_07 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 590, + "resize" : "fit", + "w" : 1080 + }, { + "h" : 371, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/STDLeZC2YV" } ], @@ -1492,9 +1492,9 @@ Grailbird.data.tweets_2015_07 = "resize" : "crop", "w" : 150 }, { - "h" : 236, + "h" : 242, "resize" : "fit", - "w" : 340 + "w" : 348 }, { "h" : 242, "resize" : "fit", @@ -1533,9 +1533,9 @@ Grailbird.data.tweets_2015_07 = "resize" : "crop", "w" : 150 }, { - "h" : 236, + "h" : 242, "resize" : "fit", - "w" : 340 + "w" : 348 }, { "h" : 242, "resize" : "fit", @@ -1920,7 +1920,7 @@ Grailbird.data.tweets_2015_07 = "screen_name" : "cheerskevin", "protected" : false, "id_str" : "14308739", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/633125665353650176\/olg7kEI1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/873979568515825664\/no1Wh9Fd_normal.jpg", "id" : 14308739, "verified" : false } @@ -1971,7 +1971,7 @@ Grailbird.data.tweets_2015_07 = "screen_name" : "1Password", "protected" : false, "id_str" : "793926", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833086808732876802\/4vfAVaH3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/904715544414351360\/6XdEq2Mq_normal.jpg", "id" : 793926, "verified" : true } diff --git a/public/tweets/data/js/tweets/2015_08.js b/public/tweets/data/js/tweets/2015_08.js index c03e077..0b4e9f3 100755 --- a/public/tweets/data/js/tweets/2015_08.js +++ b/public/tweets/data/js/tweets/2015_08.js @@ -18,25 +18,25 @@ Grailbird.data.tweets_2015_08 = "id" : 638222359652990976, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CNtr2srUAAAN4S2.jpg", "sizes" : [ { + "h" : 900, + "resize" : "fit", + "w" : 1200 + }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 + "w" : 2048 }, { "h" : 2448, "resize" : "fit", "w" : 3264 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/9qGqoREyDc" } ], @@ -103,17 +103,13 @@ Grailbird.data.tweets_2015_08 = "id" : 637490234947584000, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CNjR_bnUwAACx9j.jpg", "sizes" : [ { - "h" : 576, + "h" : 675, "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { - "h" : 191, + "h" : 1092, "resize" : "fit", - "w" : 340 - }, { - "h" : 337, - "resize" : "fit", - "w" : 600 + "w" : 1942 }, { "h" : 150, "resize" : "crop", @@ -122,6 +118,10 @@ Grailbird.data.tweets_2015_08 = "h" : 1092, "resize" : "fit", "w" : 1942 + }, { + "h" : 382, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/Gk8Akt5Kif" } ], @@ -309,25 +309,25 @@ Grailbird.data.tweets_2015_08 = "id" : 633411771299008512, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CMpUpmjUEAA6Zri.png", "sizes" : [ { - "h" : 813, + "h" : 540, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 270, + "h" : 953, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { "h" : 1808, "resize" : "fit", "w" : 2276 }, { - "h" : 477, + "h" : 1627, "resize" : "fit", - "w" : 600 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/5E34Ww9c4b" } ], @@ -350,25 +350,25 @@ Grailbird.data.tweets_2015_08 = "id" : 633411771299008512, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CMpUpmjUEAA6Zri.png", "sizes" : [ { - "h" : 813, + "h" : 540, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 270, + "h" : 953, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { "h" : 1808, "resize" : "fit", "w" : 2276 }, { - "h" : 477, + "h" : 1627, "resize" : "fit", - "w" : 600 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/5E34Ww9c4b" } ], @@ -798,7 +798,7 @@ Grailbird.data.tweets_2015_08 = "id_str" : "1305940272", "id" : 1305940272 }, { - "name" : "Atlassian HipChat", + "name" : "Atlassian Hipchat", "screen_name" : "HipChat", "indices" : [ 67, 75 ], "id_str" : "17810599", @@ -821,7 +821,7 @@ Grailbird.data.tweets_2015_08 = "id_str" : "1305940272", "id" : 1305940272 }, { - "name" : "Atlassian HipChat", + "name" : "Atlassian Hipchat", "screen_name" : "HipChat", "indices" : [ 53, 61 ], "id_str" : "17810599", @@ -968,7 +968,7 @@ Grailbird.data.tweets_2015_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Scott Owen", + "name" : "Count Scottula", "screen_name" : "scottmowen", "indices" : [ 3, 14 ], "id_str" : "15009581", @@ -1022,11 +1022,11 @@ Grailbird.data.tweets_2015_08 = "in_reply_to_screen_name" : "dejager", "in_reply_to_user_id_str" : "805062", "user" : { - "name" : "Scott Owen", + "name" : "Count Scottula", "screen_name" : "scottmowen", "protected" : false, "id_str" : "15009581", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/797261089570517001\/8nETtMpC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919940420238417921\/UcPql8gV_normal.jpg", "id" : 15009581, "verified" : false } @@ -1045,7 +1045,13 @@ Grailbird.data.tweets_2015_08 = }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { - "user_mentions" : [ ], + "user_mentions" : [ { + "name" : "Travis Tilley", + "screen_name" : "YourTravis", + "indices" : [ 0, 11 ], + "id_str" : "856674460623142912", + "id" : 856674460623142912 + } ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -1370,17 +1376,17 @@ Grailbird.data.tweets_2015_08 = "id" : 627565690937982976, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CLWPq8GUwAALZ-x.jpg", "sizes" : [ { - "h" : 576, + "h" : 675, "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { - "h" : 191, + "h" : 383, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 338, + "h" : 1152, "resize" : "fit", - "w" : 600 + "w" : 2048 }, { "h" : 150, "resize" : "crop", diff --git a/public/tweets/data/js/tweets/2015_09.js b/public/tweets/data/js/tweets/2015_09.js index 26fd05c..cb6eef8 100755 --- a/public/tweets/data/js/tweets/2015_09.js +++ b/public/tweets/data/js/tweets/2015_09.js @@ -175,7 +175,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "14761655", "id" : 14761655 }, { - "name" : "Amy Hoy", + "name" : "Ghost Ships A Hoy \uD83D\uDC7B", "screen_name" : "amyhoy", "indices" : [ 12, 19 ], "id_str" : "627213", @@ -247,7 +247,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ryan Florence \uD83D\uDC4D\uD83C\uDFFC", + "name" : "Ryan Florence", "screen_name" : "ryanflorence", "indices" : [ 0, 13 ], "id_str" : "16468446", @@ -295,21 +295,21 @@ Grailbird.data.tweets_2015_09 = "id" : 649195806092828676, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQJoJWPWIAQpb5I.png", "sizes" : [ { + "h" : 165, + "resize" : "fit", + "w" : 641 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 154, - "resize" : "fit", - "w" : 600 }, { "h" : 165, "resize" : "fit", "w" : 641 }, { - "h" : 88, + "h" : 165, "resize" : "fit", - "w" : 340 + "w" : 641 }, { "h" : 165, "resize" : "fit", @@ -339,21 +339,21 @@ Grailbird.data.tweets_2015_09 = "id" : 649195806092828676, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQJoJWPWIAQpb5I.png", "sizes" : [ { + "h" : 165, + "resize" : "fit", + "w" : 641 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 154, - "resize" : "fit", - "w" : 600 }, { "h" : 165, "resize" : "fit", "w" : 641 }, { - "h" : 88, + "h" : 165, "resize" : "fit", - "w" : 340 + "w" : 641 }, { "h" : 165, "resize" : "fit", @@ -377,7 +377,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "drewm", "protected" : false, "id_str" : "12158", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/804623515412467712\/LdCos4gc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/906460152143990785\/xBrKM3Vg_normal.jpg", "id" : 12158, "verified" : false } @@ -406,25 +406,25 @@ Grailbird.data.tweets_2015_09 = "id" : 649181085763416064, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQJawgvUsAAiO53.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { "h" : 3024, "resize" : "fit", "w" : 4032 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/sBApYqi0Pj" } ], @@ -571,6 +571,10 @@ Grailbird.data.tweets_2015_09 = "h" : 579, "resize" : "fit", "w" : 780 + }, { + "h" : 505, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -580,13 +584,9 @@ Grailbird.data.tweets_2015_09 = "resize" : "fit", "w" : 780 }, { - "h" : 252, + "h" : 579, "resize" : "fit", - "w" : 340 - }, { - "h" : 445, - "resize" : "fit", - "w" : 600 + "w" : 780 } ], "display_url" : "pic.twitter.com\/cTIFgogMNZ" } ], @@ -656,7 +656,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "require('Mark');", + "name" : "Mark", "screen_name" : "mdhughes", "indices" : [ 0, 9 ], "id_str" : "14200945", @@ -771,13 +771,13 @@ Grailbird.data.tweets_2015_09 = "resize" : "crop", "w" : 137 }, { - "h" : 73, + "h" : 137, "resize" : "fit", - "w" : 340 + "w" : 642 }, { - "h" : 128, + "h" : 137, "resize" : "fit", - "w" : 600 + "w" : 642 } ], "display_url" : "pic.twitter.com\/el01pYpVmH" } ], @@ -799,7 +799,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838548323585961988\/TnvST4XM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", "id" : 33493, "verified" : false } @@ -819,7 +819,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jared Sinclair", + "name" : "Scared Sinclair", "screen_name" : "jaredsinclair", "indices" : [ 3, 17 ], "id_str" : "15004156", @@ -851,11 +851,11 @@ Grailbird.data.tweets_2015_09 = "id" : 627636964985016320, "created_at" : "2015-08-02 00:28:08 +0000", "user" : { - "name" : "Jared Sinclair", + "name" : "Scared Sinclair", "screen_name" : "jaredsinclair", "protected" : false, "id_str" : "15004156", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/846485064292683776\/V-CChkcq_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919321301495328768\/3AMDhT5s_normal.jpg", "id" : 15004156, "verified" : false } @@ -919,7 +919,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -931,7 +931,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "43915380", "id" : 43915380 }, { - "name" : "\uD83C\uDF2F", + "name" : "Nightmare Nacho \uD83C\uDF19\uD83E\uDDC0", "screen_name" : "NeoNacho", "indices" : [ 23, 32 ], "id_str" : "10341052", @@ -1219,7 +1219,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kyle Van Essen \uD83D\uDC40\uD83D\uDC4C\uD83C\uDFFC", + "name" : "Kyle \uD83C\uDF7B\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08\uD83C\uDFC3\uD83C\uDFFB\uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "kyleve", "indices" : [ 0, 7 ], "id_str" : "14680556", @@ -1271,21 +1271,21 @@ Grailbird.data.tweets_2015_09 = "resize" : "fit", "w" : 1244 }, { - "h" : 395, + "h" : 447, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 673, + "h" : 789, "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { - "h" : 224, + "h" : 818, "resize" : "fit", - "w" : 340 + "w" : 1244 } ], "display_url" : "pic.twitter.com\/xN9hl70JQB" } ], @@ -1312,21 +1312,21 @@ Grailbird.data.tweets_2015_09 = "resize" : "fit", "w" : 1244 }, { - "h" : 395, + "h" : 447, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 673, + "h" : 789, "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { - "h" : 224, + "h" : 818, "resize" : "fit", - "w" : 340 + "w" : 1244 } ], "display_url" : "pic.twitter.com\/xN9hl70JQB" } ], @@ -1652,25 +1652,25 @@ Grailbird.data.tweets_2015_09 = "id" : 646836058290716672, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPoF98pVAAA6WkV.png", "sizes" : [ { - "h" : 69, - "resize" : "fit", - "w" : 340 - }, { "h" : 350, "resize" : "fit", "w" : 1726 - }, { - "h" : 122, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 208, + "h" : 350, "resize" : "fit", - "w" : 1024 + "w" : 1726 + }, { + "h" : 243, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 138, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/6vvwtS5l5f" } ], @@ -1692,7 +1692,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "KrauseFx", "protected" : false, "id_str" : "50055757", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/856216380064108544\/0XNMVL9s_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/890668765922439170\/UsBXn6HD_normal.jpg", "id" : 50055757, "verified" : false } @@ -1748,7 +1748,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "clattner_llvm", "protected" : false, "id_str" : "2543588034", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/785316272825249792\/jX78g-6c_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916821795008688128\/yONBAVaZ_normal.jpg", "id" : 2543588034, "verified" : false } @@ -2040,25 +2040,25 @@ Grailbird.data.tweets_2015_09 = "id" : 645780223175335936, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPZFsQVWoAABn3u.jpg", "sizes" : [ { - "h" : 1332, + "h" : 680, "resize" : "fit", - "w" : 1024 - }, { - "h" : 442, - "resize" : "fit", - "w" : 340 + "w" : 523 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 781, + "h" : 1200, "resize" : "fit", - "w" : 600 + "w" : 922 }, { "h" : 2649, "resize" : "fit", "w" : 2036 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1574 } ], "display_url" : "pic.twitter.com\/kjzaRQpN46" } ], @@ -2087,25 +2087,25 @@ Grailbird.data.tweets_2015_09 = "id" : 645780223175335936, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPZFsQVWoAABn3u.jpg", "sizes" : [ { - "h" : 1332, + "h" : 680, "resize" : "fit", - "w" : 1024 - }, { - "h" : 442, - "resize" : "fit", - "w" : 340 + "w" : 523 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 781, + "h" : 1200, "resize" : "fit", - "w" : 600 + "w" : 922 }, { "h" : 2649, "resize" : "fit", "w" : 2036 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1574 } ], "display_url" : "pic.twitter.com\/kjzaRQpN46" } ], @@ -2127,7 +2127,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "AnneHummert", "protected" : false, "id_str" : "125085076", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/520794520816857089\/ROTH3Dgt_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877927303178833920\/lTYTJOSl_normal.jpg", "id" : 125085076, "verified" : false } @@ -2170,17 +2170,17 @@ Grailbird.data.tweets_2015_09 = "resize" : "crop", "w" : 150 }, { - "h" : 340, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 600, + "h" : 1128, "resize" : "fit", - "w" : 600 + "w" : 1128 }, { - "h" : 1024, + "h" : 1128, "resize" : "fit", - "w" : 1024 + "w" : 1128 } ], "display_url" : "pic.twitter.com\/k9J41Fyhdq" } ], @@ -2211,17 +2211,17 @@ Grailbird.data.tweets_2015_09 = "resize" : "crop", "w" : 150 }, { - "h" : 340, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 600, + "h" : 1128, "resize" : "fit", - "w" : 600 + "w" : 1128 }, { - "h" : 1024, + "h" : 1128, "resize" : "fit", - "w" : 1024 + "w" : 1128 } ], "display_url" : "pic.twitter.com\/k9J41Fyhdq" } ], @@ -2283,9 +2283,9 @@ Grailbird.data.tweets_2015_09 = "resize" : "crop", "w" : 150 }, { - "h" : 270, + "h" : 416, "resize" : "fit", - "w" : 340 + "w" : 523 }, { "h" : 416, "resize" : "fit", @@ -2330,9 +2330,9 @@ Grailbird.data.tweets_2015_09 = "resize" : "crop", "w" : 150 }, { - "h" : 270, + "h" : 416, "resize" : "fit", - "w" : 340 + "w" : 523 }, { "h" : 416, "resize" : "fit", @@ -2396,9 +2396,13 @@ Grailbird.data.tweets_2015_09 = "id" : 645647442914885632, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPXM7bUUwAARzJC.jpg", "sizes" : [ { - "h" : 1493, + "h" : 1200, "resize" : "fit", - "w" : 1024 + "w" : 823 + }, { + "h" : 680, + "resize" : "fit", + "w" : 466 }, { "h" : 1594, "resize" : "fit", @@ -2408,13 +2412,9 @@ Grailbird.data.tweets_2015_09 = "resize" : "crop", "w" : 150 }, { - "h" : 875, + "h" : 1594, "resize" : "fit", - "w" : 600 - }, { - "h" : 496, - "resize" : "fit", - "w" : 340 + "w" : 1093 } ], "display_url" : "pic.twitter.com\/oqETQPoELW" } ], @@ -2492,9 +2492,13 @@ Grailbird.data.tweets_2015_09 = "id" : 645434269444145152, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPULDGQVAAAa5zx.jpg", "sizes" : [ { - "h" : 351, + "h" : 1024, "resize" : "fit", - "w" : 340 + "w" : 992 + }, { + "h" : 680, + "resize" : "fit", + "w" : 659 }, { "h" : 150, "resize" : "crop", @@ -2503,10 +2507,6 @@ Grailbird.data.tweets_2015_09 = "h" : 1024, "resize" : "fit", "w" : 992 - }, { - "h" : 619, - "resize" : "fit", - "w" : 600 }, { "h" : 1024, "resize" : "fit", @@ -2533,9 +2533,13 @@ Grailbird.data.tweets_2015_09 = "id" : 645434269444145152, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPULDGQVAAAa5zx.jpg", "sizes" : [ { - "h" : 351, + "h" : 1024, "resize" : "fit", - "w" : 340 + "w" : 992 + }, { + "h" : 680, + "resize" : "fit", + "w" : 659 }, { "h" : 150, "resize" : "crop", @@ -2544,10 +2548,6 @@ Grailbird.data.tweets_2015_09 = "h" : 1024, "resize" : "fit", "w" : 992 - }, { - "h" : 619, - "resize" : "fit", - "w" : 600 }, { "h" : 1024, "resize" : "fit", @@ -2568,7 +2568,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "garrytan", "protected" : false, "id_str" : "11768582", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/787866091884310528\/DESXuJnX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/882725533817110528\/IPUzEKdT_normal.jpg", "id" : 11768582, "verified" : false } @@ -2709,7 +2709,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793501897030152192\/aMAAYCvY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", "id" : 36183, "verified" : false } @@ -2789,11 +2789,11 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003ETwitter Lite\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cloak", + "name" : "GetCloak.com", "screen_name" : "getcloak", "indices" : [ 103, 112 ], - "id_str" : "271545671", - "id" : 271545671 + "id_str" : "1255560680", + "id" : 1255560680 } ], "media" : [ ], "hashtags" : [ ], @@ -2949,7 +2949,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Marc Edwards \uD83D\uDCCE", + "name" : "Marc Edwards", "screen_name" : "marcedwards", "indices" : [ 3, 15 ], "id_str" : "18865450", @@ -2986,7 +2986,7 @@ Grailbird.data.tweets_2015_09 = "id" : 644300149469016064, "created_at" : "2015-09-17 00:01:40 +0000", "user" : { - "name" : "Marc Edwards \uD83D\uDCCE", + "name" : "Marc Edwards", "screen_name" : "marcedwards", "protected" : false, "id_str" : "18865450", @@ -3046,7 +3046,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "saniul", "protected" : false, "id_str" : "14259737", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/821467598781116416\/k2Jf_ZjS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/858952015539576832\/R29bAxa7_normal.jpg", "id" : 14259737, "verified" : false } @@ -3162,7 +3162,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000226613002\/36623ae09f553713c575c97c77544b49_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", "id" : 29255412, "verified" : false } @@ -3233,22 +3233,22 @@ Grailbird.data.tweets_2015_09 = "h" : 488, "resize" : "fit", "w" : 1294 - }, { - "h" : 226, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 128, + "h" : 256, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 386, + "h" : 453, "resize" : "fit", - "w" : 1024 + "w" : 1200 + }, { + "h" : 488, + "resize" : "fit", + "w" : 1294 } ], "display_url" : "pic.twitter.com\/xs0qA6uaYy" } ], @@ -3388,7 +3388,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -3430,17 +3430,17 @@ Grailbird.data.tweets_2015_09 = "id" : 642572926340861953, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/COrgrAjUkAEzVyd.png", "sizes" : [ { + "h" : 211, + "resize" : "fit", + "w" : 680 + }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 106, + "h" : 233, "resize" : "fit", - "w" : 340 - }, { - "h" : 186, - "resize" : "fit", - "w" : 600 + "w" : 750 }, { "h" : 233, "resize" : "fit", @@ -3488,13 +3488,13 @@ Grailbird.data.tweets_2015_09 = "id" : 641979459785084928, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/COjE6tWWUAAp6-n.jpg", "sizes" : [ { + "h" : 88, + "resize" : "fit", + "w" : 476 + }, { "h" : 88, "resize" : "crop", "w" : 88 - }, { - "h" : 63, - "resize" : "fit", - "w" : 340 }, { "h" : 88, "resize" : "fit", @@ -3529,13 +3529,13 @@ Grailbird.data.tweets_2015_09 = "id" : 641979459785084928, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/COjE6tWWUAAp6-n.jpg", "sizes" : [ { + "h" : 88, + "resize" : "fit", + "w" : 476 + }, { "h" : 88, "resize" : "crop", "w" : 88 - }, { - "h" : 63, - "resize" : "fit", - "w" : 340 }, { "h" : 88, "resize" : "fit", @@ -3735,21 +3735,21 @@ Grailbird.data.tweets_2015_09 = "resize" : "fit", "w" : 1600 }, { - "h" : 191, + "h" : 675, "resize" : "fit", - "w" : 340 - }, { - "h" : 338, - "resize" : "fit", - "w" : 600 - }, { - "h" : 576, - "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1600 } ], "display_url" : "pic.twitter.com\/FazZKdKxCF" } ], @@ -3776,21 +3776,21 @@ Grailbird.data.tweets_2015_09 = "resize" : "fit", "w" : 1600 }, { - "h" : 191, + "h" : 675, "resize" : "fit", - "w" : 340 - }, { - "h" : 338, - "resize" : "fit", - "w" : 600 - }, { - "h" : 576, - "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1600 } ], "display_url" : "pic.twitter.com\/FazZKdKxCF" } ], diff --git a/public/tweets/data/js/tweets/2015_10.js b/public/tweets/data/js/tweets/2015_10.js index 77ab69d..ff4965c 100755 --- a/public/tweets/data/js/tweets/2015_10.js +++ b/public/tweets/data/js/tweets/2015_10.js @@ -216,7 +216,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "Catfish_Man", "protected" : false, "id_str" : "15444008", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/779581705292165120\/QOHPKKZv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877087638389379072\/nAnRi8MZ_normal.jpg", "id" : 15444008, "verified" : false } @@ -308,7 +308,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "18022416", "id" : 18022416 }, { - "name" : "Ryan Florence \uD83D\uDC4D\uD83C\uDFFC", + "name" : "Ryan Florence", "screen_name" : "ryanflorence", "indices" : [ 13, 26 ], "id_str" : "16468446", @@ -519,25 +519,25 @@ Grailbird.data.tweets_2015_10 = "id" : 657019085612449792, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CR4zYJiVAAAY4Cg.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { "h" : 3024, "resize" : "fit", "w" : 4032 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 450, + "h" : 1536, "resize" : "fit", - "w" : 600 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 + "w" : 2048 } ], "display_url" : "pic.twitter.com\/tHF3uQgVpZ" } ], @@ -736,7 +736,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeff Nadeau", + "name" : "Jeff Nadeau \uD83D\uDC7B", "screen_name" : "jnadeau", "indices" : [ 3, 11 ], "id_str" : "2741981", @@ -763,11 +763,11 @@ Grailbird.data.tweets_2015_10 = "id" : 656632360830537730, "created_at" : "2015-10-21 00:45:29 +0000", "user" : { - "name" : "Jeff Nadeau", + "name" : "Jeff Nadeau \uD83D\uDC7B", "screen_name" : "jnadeau", "protected" : false, "id_str" : "2741981", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/687736342260748288\/cu2Fig_B_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/867891485915664384\/IXsBQxbF_normal.jpg", "id" : 2741981, "verified" : false } @@ -1509,6 +1509,10 @@ Grailbird.data.tweets_2015_10 = "h" : 1024, "resize" : "fit", "w" : 576 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 }, { "h" : 150, "resize" : "crop", @@ -1517,10 +1521,6 @@ Grailbird.data.tweets_2015_10 = "h" : 1024, "resize" : "fit", "w" : 576 - }, { - "h" : 604, - "resize" : "fit", - "w" : 340 }, { "h" : 1024, "resize" : "fit", @@ -1616,17 +1616,17 @@ Grailbird.data.tweets_2015_10 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/OawqNWGCft" } ], @@ -1657,17 +1657,17 @@ Grailbird.data.tweets_2015_10 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/OawqNWGCft" } ], @@ -1704,7 +1704,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 0, 16 ], "id_str" : "2436389418", @@ -1719,9 +1719,9 @@ Grailbird.data.tweets_2015_10 = "id" : 654769466216091648, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRY1XEOVEAA6CGm.png", "sizes" : [ { - "h" : 178, + "h" : 356, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -1735,9 +1735,9 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 702 }, { - "h" : 315, + "h" : 368, "resize" : "fit", - "w" : 600 + "w" : 702 } ], "display_url" : "pic.twitter.com\/IG3e2QRrrQ" } ], @@ -1826,25 +1826,25 @@ Grailbird.data.tweets_2015_10 = "id" : 654698759989821440, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRX1DbAVAAAaS29.png", "sizes" : [ { + "h" : 651, + "resize" : "fit", + "w" : 1200 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 555, - "resize" : "fit", - "w" : 1024 }, { "h" : 1112, "resize" : "fit", "w" : 2050 }, { - "h" : 184, + "h" : 1111, "resize" : "fit", - "w" : 340 + "w" : 2048 }, { - "h" : 325, + "h" : 369, "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/7k5RQJF6D1" } ], @@ -1872,25 +1872,25 @@ Grailbird.data.tweets_2015_10 = "id" : 654698759989821440, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRX1DbAVAAAaS29.png", "sizes" : [ { + "h" : 651, + "resize" : "fit", + "w" : 1200 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 555, - "resize" : "fit", - "w" : 1024 }, { "h" : 1112, "resize" : "fit", "w" : 2050 }, { - "h" : 184, + "h" : 1111, "resize" : "fit", - "w" : 340 + "w" : 2048 }, { - "h" : 325, + "h" : 369, "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/7k5RQJF6D1" } ], @@ -2014,25 +2014,25 @@ Grailbird.data.tweets_2015_10 = "id" : 654471220117696513, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRUmG27U8AE2LJ4.png", "sizes" : [ { - "h" : 337, + "h" : 382, "resize" : "fit", - "w" : 600 - }, { - "h" : 191, - "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 650, "resize" : "fit", "w" : 1156 - }, { - "h" : 576, - "resize" : "fit", - "w" : 1024 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 650, + "resize" : "fit", + "w" : 1156 + }, { + "h" : 650, + "resize" : "fit", + "w" : 1156 } ], "display_url" : "pic.twitter.com\/awiF7nwRH6" } ], @@ -2152,11 +2152,11 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cloak", + "name" : "GetCloak.com", "screen_name" : "getcloak", "indices" : [ 0, 9 ], - "id_str" : "271545671", - "id" : 271545671 + "id_str" : "1255560680", + "id" : 1255560680 } ], "media" : [ ], "hashtags" : [ ], @@ -2170,7 +2170,7 @@ Grailbird.data.tweets_2015_10 = "id" : 654372320438452225, "in_reply_to_status_id" : 654357656233074688, "created_at" : "2015-10-14 19:04:53 +0000", - "in_reply_to_screen_name" : "getcloak", + "in_reply_to_screen_name" : "encryptme", "in_reply_to_user_id_str" : "271545671", "user" : { "name" : "Sami Samhuri", @@ -2236,17 +2236,17 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 750 }, { - "h" : 1067, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 382 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 605, + "h" : 1200, "resize" : "fit", - "w" : 340 + "w" : 675 } ], "display_url" : "pic.twitter.com\/LUy4qzwiSE" } ], @@ -2292,9 +2292,9 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 392 }, { - "h" : 132, + "h" : 152, "resize" : "fit", - "w" : 340 + "w" : 392 }, { "h" : 152, "resize" : "fit", @@ -2356,7 +2356,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Fight nazis or GTFO", + "name" : "\uD83D\uDC7B Phlegm Parrot", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -2663,17 +2663,17 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 644 }, { - "h" : 245, + "h" : 465, "resize" : "fit", - "w" : 340 + "w" : 644 }, { "h" : 465, "resize" : "fit", "w" : 644 }, { - "h" : 433, + "h" : 465, "resize" : "fit", - "w" : 600 + "w" : 644 } ], "display_url" : "pic.twitter.com\/WqAsubbgkD" } ], @@ -2704,17 +2704,17 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 644 }, { - "h" : 245, + "h" : 465, "resize" : "fit", - "w" : 340 + "w" : 644 }, { "h" : 465, "resize" : "fit", "w" : 644 }, { - "h" : 433, + "h" : 465, "resize" : "fit", - "w" : 600 + "w" : 644 } ], "display_url" : "pic.twitter.com\/WqAsubbgkD" } ], @@ -2850,7 +2850,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 0, 16 ], "id_str" : "2436389418", @@ -3034,17 +3034,17 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 750 }, { - "h" : 108, + "h" : 122, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 135, "resize" : "fit", "w" : 750 }, { - "h" : 61, + "h" : 135, "resize" : "fit", - "w" : 340 + "w" : 750 }, { "h" : 135, "resize" : "crop", @@ -3436,7 +3436,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "cheerskevin", "protected" : false, "id_str" : "14308739", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/633125665353650176\/olg7kEI1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/873979568515825664\/no1Wh9Fd_normal.jpg", "id" : 14308739, "verified" : false } @@ -3570,7 +3570,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "cheerskevin", "protected" : false, "id_str" : "14308739", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/633125665353650176\/olg7kEI1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/873979568515825664\/no1Wh9Fd_normal.jpg", "id" : 14308739, "verified" : false } @@ -3599,9 +3599,9 @@ Grailbird.data.tweets_2015_10 = "id" : 652866938473811968, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQ9zBYFUEAAphab.jpg", "sizes" : [ { - "h" : 450, + "h" : 510, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 1124, "resize" : "fit", @@ -3611,13 +3611,13 @@ Grailbird.data.tweets_2015_10 = "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 900, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { - "h" : 768, + "h" : 1124, "resize" : "fit", - "w" : 1024 + "w" : 1498 } ], "display_url" : "pic.twitter.com\/vTE3wymUUD" } ], @@ -4490,18 +4490,18 @@ Grailbird.data.tweets_2015_10 = "h" : 505, "resize" : "fit", "w" : 650 + }, { + "h" : 505, + "resize" : "fit", + "w" : 650 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 264, + "h" : 505, "resize" : "fit", - "w" : 340 - }, { - "h" : 466, - "resize" : "fit", - "w" : 600 + "w" : 650 } ], "display_url" : "pic.twitter.com\/qBmLTzMt1d" } ], @@ -4807,7 +4807,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "Catfish_Man", "protected" : false, "id_str" : "15444008", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/779581705292165120\/QOHPKKZv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877087638389379072\/nAnRi8MZ_normal.jpg", "id" : 15444008, "verified" : false } @@ -4932,7 +4932,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC8Drta Therox", + "name" : "let \u007Borta\u007D = therox", "screen_name" : "orta", "indices" : [ 0, 5 ], "id_str" : "2569881", @@ -4977,7 +4977,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC8Drta Therox", + "name" : "let \u007Borta\u007D = therox", "screen_name" : "orta", "indices" : [ 0, 5 ], "id_str" : "2569881", @@ -5233,7 +5233,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "12199652", "id" : 12199652 }, { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 8, 24 ], "id_str" : "2436389418", @@ -5662,21 +5662,21 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 1200 }, { - "h" : 227, + "h" : 800, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { - "h" : 683, + "h" : 453, "resize" : "fit", - "w" : 1024 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 800, + "resize" : "fit", + "w" : 1200 } ], "display_url" : "pic.twitter.com\/jSpCQaYNew" } ], @@ -5714,21 +5714,21 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 1200 }, { - "h" : 227, + "h" : 800, "resize" : "fit", - "w" : 340 + "w" : 1200 }, { - "h" : 683, + "h" : 453, "resize" : "fit", - "w" : 1024 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 800, + "resize" : "fit", + "w" : 1200 } ], "display_url" : "pic.twitter.com\/jSpCQaYNew" } ], @@ -5811,7 +5811,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "cocoalabs", "protected" : false, "id_str" : "689183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855292003759734784\/d3317_B3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903131024883818496\/h1dkH1bj_normal.jpg", "id" : 689183, "verified" : false } @@ -5930,7 +5930,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "43915380", "id" : 43915380 }, { - "name" : "Joe Groff", + "name" : "[joe groff];", "screen_name" : "jckarter", "indices" : [ 11, 20 ], "id_str" : "18559099", @@ -6299,7 +6299,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kevin Fox \uD83E\uDD8A", + "name" : "Kevin Freaky Fox \uD83E\uDD8A", "screen_name" : "kfury", "indices" : [ 3, 9 ], "id_str" : "785", @@ -6322,17 +6322,17 @@ Grailbird.data.tweets_2015_10 = "resize" : "crop", "w" : 150 }, { - "h" : 254, + "h" : 636, "resize" : "fit", - "w" : 340 - }, { - "h" : 448, - "resize" : "fit", - "w" : 600 + "w" : 852 }, { "h" : 636, "resize" : "fit", "w" : 852 + }, { + "h" : 508, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/DzfNMixYrF" } ], @@ -6363,17 +6363,17 @@ Grailbird.data.tweets_2015_10 = "resize" : "crop", "w" : 150 }, { - "h" : 254, + "h" : 636, "resize" : "fit", - "w" : 340 - }, { - "h" : 448, - "resize" : "fit", - "w" : 600 + "w" : 852 }, { "h" : 636, "resize" : "fit", "w" : 852 + }, { + "h" : 508, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/DzfNMixYrF" } ], @@ -6386,7 +6386,7 @@ Grailbird.data.tweets_2015_10 = "id" : 531873740200484864, "created_at" : "2014-11-10 18:19:16 +0000", "user" : { - "name" : "Kevin Fox \uD83E\uDD8A", + "name" : "Kevin Freaky Fox \uD83E\uDD8A", "screen_name" : "kfury", "protected" : false, "id_str" : "785", @@ -6521,14 +6521,6 @@ Grailbird.data.tweets_2015_10 = "h" : 245, "resize" : "fit", "w" : 750 - }, { - "h" : 196, - "resize" : "fit", - "w" : 600 - }, { - "h" : 111, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -6537,6 +6529,14 @@ Grailbird.data.tweets_2015_10 = "h" : 245, "resize" : "fit", "w" : 750 + }, { + "h" : 245, + "resize" : "fit", + "w" : 750 + }, { + "h" : 222, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/m9QPImRx3G" } ], @@ -6562,14 +6562,6 @@ Grailbird.data.tweets_2015_10 = "h" : 245, "resize" : "fit", "w" : 750 - }, { - "h" : 196, - "resize" : "fit", - "w" : 600 - }, { - "h" : 111, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -6578,6 +6570,14 @@ Grailbird.data.tweets_2015_10 = "h" : 245, "resize" : "fit", "w" : 750 + }, { + "h" : 245, + "resize" : "fit", + "w" : 750 + }, { + "h" : 222, + "resize" : "fit", + "w" : 680 } ], "display_url" : "pic.twitter.com\/m9QPImRx3G" } ], @@ -6762,21 +6762,21 @@ Grailbird.data.tweets_2015_10 = "id" : 651062731362070529, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQkKGs1U8AECFkG.png", "sizes" : [ { - "h" : 196, + "h" : 974, "resize" : "fit", - "w" : 340 - }, { - "h" : 346, - "resize" : "fit", - "w" : 600 - }, { - "h" : 591, - "resize" : "fit", - "w" : 1024 + "w" : 1688 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 392, + "resize" : "fit", + "w" : 680 + }, { + "h" : 692, + "resize" : "fit", + "w" : 1200 }, { "h" : 974, "resize" : "fit", @@ -6882,7 +6882,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mark Agee", + "name" : "Spooky Student Debt", "screen_name" : "MarkAgee", "indices" : [ 3, 12 ], "id_str" : "70775995", @@ -6909,9 +6909,9 @@ Grailbird.data.tweets_2015_10 = "resize" : "crop", "w" : 150 }, { - "h" : 340, + "h" : 390, "resize" : "fit", - "w" : 340 + "w" : 390 }, { "h" : 390, "resize" : "fit", @@ -6927,13 +6927,17 @@ Grailbird.data.tweets_2015_10 = "id" : 648235952385626112, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CP7_KgiVEAAWn1F.jpg", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 680 + }, { "h" : 682, "resize" : "fit", "w" : 682 }, { - "h" : 600, + "h" : 682, "resize" : "fit", - "w" : 600 + "w" : 682 }, { "h" : 150, "resize" : "crop", @@ -6942,10 +6946,6 @@ Grailbird.data.tweets_2015_10 = "h" : 682, "resize" : "fit", "w" : 682 - }, { - "h" : 340, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/OV7GCloNBv" } ], @@ -6980,9 +6980,9 @@ Grailbird.data.tweets_2015_10 = "resize" : "crop", "w" : 150 }, { - "h" : 340, + "h" : 390, "resize" : "fit", - "w" : 340 + "w" : 390 }, { "h" : 390, "resize" : "fit", @@ -6998,13 +6998,17 @@ Grailbird.data.tweets_2015_10 = "id" : 648235952385626112, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CP7_KgiVEAAWn1F.jpg", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 680 + }, { "h" : 682, "resize" : "fit", "w" : 682 }, { - "h" : 600, + "h" : 682, "resize" : "fit", - "w" : 600 + "w" : 682 }, { "h" : 150, "resize" : "crop", @@ -7013,10 +7017,6 @@ Grailbird.data.tweets_2015_10 = "h" : 682, "resize" : "fit", "w" : 682 - }, { - "h" : 340, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/OV7GCloNBv" } ], @@ -7029,7 +7029,7 @@ Grailbird.data.tweets_2015_10 = "id" : 648235967434719232, "created_at" : "2015-09-27 20:41:12 +0000", "user" : { - "name" : "Mark Agee", + "name" : "Spooky Student Debt", "screen_name" : "MarkAgee", "protected" : false, "id_str" : "70775995", @@ -7849,21 +7849,21 @@ Grailbird.data.tweets_2015_10 = "id" : 650051781829918720, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQVypsWVAAAry65.jpg", "sizes" : [ { + "h" : 600, + "resize" : "fit", + "w" : 1200 + }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 512, + "h" : 340, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { - "h" : 300, + "h" : 1024, "resize" : "fit", - "w" : 600 - }, { - "h" : 170, - "resize" : "fit", - "w" : 340 + "w" : 2048 }, { "h" : 1200, "resize" : "fit", @@ -7994,7 +7994,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mike Rundle", + "name" : "Spike \u26CF Rundle", "screen_name" : "flyosity", "indices" : [ 0, 9 ], "id_str" : "10545", diff --git a/public/tweets/data/js/tweets/2015_11.js b/public/tweets/data/js/tweets/2015_11.js index 7579a19..bb7d5d6 100755 --- a/public/tweets/data/js/tweets/2015_11.js +++ b/public/tweets/data/js/tweets/2015_11.js @@ -183,9 +183,9 @@ Grailbird.data.tweets_2015_11 = "id" : 667979633556504576, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CUUj8AdUwAA5BKS.jpg", "sizes" : [ { - "h" : 409, + "h" : 436, "resize" : "fit", - "w" : 600 + "w" : 640 }, { "h" : 150, "resize" : "crop", @@ -199,9 +199,9 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 640 }, { - "h" : 232, + "h" : 436, "resize" : "fit", - "w" : 340 + "w" : 640 } ], "display_url" : "pic.twitter.com\/uWhqZ3ngWI" } ], @@ -229,9 +229,9 @@ Grailbird.data.tweets_2015_11 = "id" : 667979633556504576, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CUUj8AdUwAA5BKS.jpg", "sizes" : [ { - "h" : 409, + "h" : 436, "resize" : "fit", - "w" : 600 + "w" : 640 }, { "h" : 150, "resize" : "crop", @@ -245,9 +245,9 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 640 }, { - "h" : 232, + "h" : 436, "resize" : "fit", - "w" : 340 + "w" : 640 } ], "display_url" : "pic.twitter.com\/uWhqZ3ngWI" } ], @@ -387,17 +387,17 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 768 }, { - "h" : 348, + "h" : 446, "resize" : "fit", - "w" : 600 + "w" : 768 + }, { + "h" : 395, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 197, - "resize" : "fit", - "w" : 340 }, { "h" : 446, "resize" : "fit", @@ -441,13 +441,13 @@ Grailbird.data.tweets_2015_11 = "id" : 667582869624086528, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CUO7FToUYAAW-Fo.jpg", "sizes" : [ { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 255, - "resize" : "fit", - "w" : 340 }, { "h" : 768, "resize" : "fit", @@ -457,9 +457,9 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 1024 }, { - "h" : 450, + "h" : 768, "resize" : "fit", - "w" : 600 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/ru5qq3QUZ3" } ], @@ -555,13 +555,13 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 1024 }, { - "h" : 191, + "h" : 576, "resize" : "fit", - "w" : 340 + "w" : 1024 }, { - "h" : 338, + "h" : 383, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -611,22 +611,22 @@ Grailbird.data.tweets_2015_11 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/p9DRUbfyhi" } ], @@ -777,7 +777,7 @@ Grailbird.data.tweets_2015_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Aaron", + "name" : "Aaron Stephenson", "screen_name" : "iosaaron", "indices" : [ 3, 12 ], "id_str" : "1968340063", @@ -814,11 +814,11 @@ Grailbird.data.tweets_2015_11 = "id" : 666503355859009536, "created_at" : "2015-11-17 06:29:17 +0000", "user" : { - "name" : "Aaron", + "name" : "Aaron Stephenson", "screen_name" : "iosaaron", "protected" : false, "id_str" : "1968340063", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/577415576005443584\/JUenr6sn_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865573130349060096\/uPr3m_RE_normal.jpg", "id" : 1968340063, "verified" : false } @@ -872,17 +872,17 @@ Grailbird.data.tweets_2015_11 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/38Usiwswmz" } ], @@ -1255,7 +1255,7 @@ Grailbird.data.tweets_2015_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 3, 19 ], "id_str" : "2436389418", @@ -1277,18 +1277,18 @@ Grailbird.data.tweets_2015_11 = "h" : 547, "resize" : "fit", "w" : 839 + }, { + "h" : 547, + "resize" : "fit", + "w" : 839 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 222, + "h" : 443, "resize" : "fit", - "w" : 340 - }, { - "h" : 391, - "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/m5E0sYw8Nk" } ], @@ -1323,18 +1323,18 @@ Grailbird.data.tweets_2015_11 = "h" : 547, "resize" : "fit", "w" : 839 + }, { + "h" : 547, + "resize" : "fit", + "w" : 839 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 222, + "h" : 443, "resize" : "fit", - "w" : 340 - }, { - "h" : 391, - "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/m5E0sYw8Nk" } ], @@ -1352,11 +1352,11 @@ Grailbird.data.tweets_2015_11 = "id" : 663403012916776960, "created_at" : "2015-11-08 17:09:38 +0000", "user" : { - "name" : "SwiftOnSecurity", + "name" : "SpookyTayOnSecurity", "screen_name" : "SwiftOnSecurity", "protected" : false, "id_str" : "2436389418", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855853739747545090\/TQA5rVCn_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919340959514607616\/-7DZSc_y_normal.jpg", "id" : 2436389418, "verified" : false } @@ -1511,25 +1511,25 @@ Grailbird.data.tweets_2015_11 = "id" : 662769458000318464, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CTKhT4AWUAALQJJ.png", "sizes" : [ { - "h" : 78, + "h" : 155, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 137, + "h" : 240, "resize" : "fit", - "w" : 600 + "w" : 1052 }, { "h" : 240, "resize" : "fit", "w" : 1052 }, { - "h" : 234, + "h" : 240, "resize" : "fit", - "w" : 1024 + "w" : 1052 } ], "display_url" : "pic.twitter.com\/RmoL1yRUZg" } ], @@ -1552,25 +1552,25 @@ Grailbird.data.tweets_2015_11 = "id" : 662769458000318464, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CTKhT4AWUAALQJJ.png", "sizes" : [ { - "h" : 78, + "h" : 155, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 137, + "h" : 240, "resize" : "fit", - "w" : 600 + "w" : 1052 }, { "h" : 240, "resize" : "fit", "w" : 1052 }, { - "h" : 234, + "h" : 240, "resize" : "fit", - "w" : 1024 + "w" : 1052 } ], "display_url" : "pic.twitter.com\/RmoL1yRUZg" } ], @@ -1653,13 +1653,9 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 615 }, { - "h" : 114, + "h" : 207, "resize" : "fit", - "w" : 340 - }, { - "h" : 202, - "resize" : "fit", - "w" : 600 + "w" : 615 }, { "h" : 207, "resize" : "fit", @@ -1668,6 +1664,10 @@ Grailbird.data.tweets_2015_11 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 207, + "resize" : "fit", + "w" : 615 } ], "display_url" : "pic.twitter.com\/yPogPcHeFg" } ], @@ -1730,9 +1730,13 @@ Grailbird.data.tweets_2015_11 = "id" : 662309721861283840, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CTD_LtbUYAA2xrG.png", "sizes" : [ { - "h" : 338, + "h" : 383, "resize" : "fit", - "w" : 600 + "w" : 680 + }, { + "h" : 576, + "resize" : "fit", + "w" : 1024 }, { "h" : 576, "resize" : "fit", @@ -1745,10 +1749,6 @@ Grailbird.data.tweets_2015_11 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 191, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/Q8SapjwIaX" } ], @@ -1821,7 +1821,7 @@ Grailbird.data.tweets_2015_11 = "screen_name" : "Catfish_Man", "protected" : false, "id_str" : "15444008", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/779581705292165120\/QOHPKKZv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877087638389379072\/nAnRi8MZ_normal.jpg", "id" : 15444008, "verified" : false } @@ -1882,7 +1882,7 @@ Grailbird.data.tweets_2015_11 = "screen_name" : "Catfish_Man", "protected" : false, "id_str" : "15444008", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/779581705292165120\/QOHPKKZv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877087638389379072\/nAnRi8MZ_normal.jpg", "id" : 15444008, "verified" : false } @@ -2061,9 +2061,9 @@ Grailbird.data.tweets_2015_11 = "id" : 661628605605085184, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CS6TthpUAAAD5Dd.png", "sizes" : [ { - "h" : 254, + "h" : 509, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -2077,9 +2077,9 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 714 }, { - "h" : 449, + "h" : 534, "resize" : "fit", - "w" : 600 + "w" : 714 } ], "display_url" : "pic.twitter.com\/xybuqQG2jU" } ], @@ -2102,9 +2102,9 @@ Grailbird.data.tweets_2015_11 = "id" : 661628605605085184, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CS6TthpUAAAD5Dd.png", "sizes" : [ { - "h" : 254, + "h" : 509, "resize" : "fit", - "w" : 340 + "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -2118,9 +2118,9 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 714 }, { - "h" : 449, + "h" : 534, "resize" : "fit", - "w" : 600 + "w" : 714 } ], "display_url" : "pic.twitter.com\/xybuqQG2jU" } ], @@ -2556,6 +2556,10 @@ Grailbird.data.tweets_2015_11 = "h" : 734, "resize" : "fit", "w" : 528 + }, { + "h" : 680, + "resize" : "fit", + "w" : 489 }, { "h" : 150, "resize" : "crop", @@ -2564,10 +2568,6 @@ Grailbird.data.tweets_2015_11 = "h" : 734, "resize" : "fit", "w" : 528 - }, { - "h" : 473, - "resize" : "fit", - "w" : 340 }, { "h" : 734, "resize" : "fit", diff --git a/public/tweets/data/js/tweets/2015_12.js b/public/tweets/data/js/tweets/2015_12.js index f9a54fc..e82f3a0 100755 --- a/public/tweets/data/js/tweets/2015_12.js +++ b/public/tweets/data/js/tweets/2015_12.js @@ -291,9 +291,9 @@ Grailbird.data.tweets_2015_12 = "resize" : "fit", "w" : 750 }, { - "h" : 1067, + "h" : 680, "resize" : "fit", - "w" : 600 + "w" : 382 }, { "h" : 150, "resize" : "crop", @@ -303,9 +303,9 @@ Grailbird.data.tweets_2015_12 = "resize" : "fit", "w" : 750 }, { - "h" : 605, + "h" : 1200, "resize" : "fit", - "w" : 340 + "w" : 675 } ], "display_url" : "pic.twitter.com\/2ttuGVgL8r" } ], @@ -552,7 +552,7 @@ Grailbird.data.tweets_2015_12 = "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839220483350487040\/1JNTuxrF_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", "id" : 15267898, "verified" : true } @@ -590,22 +590,22 @@ Grailbird.data.tweets_2015_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/mlJNklvUnE" } ], @@ -680,22 +680,22 @@ Grailbird.data.tweets_2015_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 450, - "resize" : "fit", - "w" : 600 }, { "h" : 768, "resize" : "fit", "w" : 1024 }, { - "h" : 255, + "h" : 768, "resize" : "fit", - "w" : 340 + "w" : 1024 } ], "display_url" : "pic.twitter.com\/CZFBAl0xBv" }, { @@ -715,17 +715,17 @@ Grailbird.data.tweets_2015_12 = "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 1024, "resize" : "fit", - "w" : 600 + "w" : 768 }, { "h" : 1024, "resize" : "fit", "w" : 768 }, { - "h" : 453, + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 510 } ], "display_url" : "pic.twitter.com\/CZFBAl0xBv" } ], @@ -803,21 +803,21 @@ Grailbird.data.tweets_2015_12 = "id" : 680781482760122369, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CXKfJtGUsAEylmo.jpg", "sizes" : [ { - "h" : 1365, + "h" : 680, "resize" : "fit", - "w" : 1024 - }, { - "h" : 453, - "resize" : "fit", - "w" : 340 + "w" : 510 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 800, + "h" : 2048, "resize" : "fit", - "w" : 600 + "w" : 1537 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 901 }, { "h" : 3326, "resize" : "fit", @@ -861,7 +861,7 @@ Grailbird.data.tweets_2015_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", @@ -1069,7 +1069,7 @@ Grailbird.data.tweets_2015_12 = "screen_name" : "evadne", "protected" : false, "id_str" : "15614100", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2246294748\/6603BCF2-2CDC-45B8-981C-FFA56AEB7329_normal", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903029224965058561\/81mhqDTL_normal.jpg", "id" : 15614100, "verified" : false } @@ -1356,9 +1356,13 @@ Grailbird.data.tweets_2015_12 = "id" : 675314381266280448, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CV8y2g8W4AAtqlw.jpg", "sizes" : [ { - "h" : 226, + "h" : 453, "resize" : "fit", - "w" : 340 + "w" : 680 + }, { + "h" : 682, + "resize" : "fit", + "w" : 1024 }, { "h" : 682, "resize" : "fit", @@ -1367,10 +1371,6 @@ Grailbird.data.tweets_2015_12 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 }, { "h" : 682, "resize" : "fit", @@ -1386,17 +1386,13 @@ Grailbird.data.tweets_2015_12 = "id" : 675314381543092224, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CV8y2h-WsAABDXY.jpg", "sizes" : [ { - "h" : 400, + "h" : 453, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 682, "resize" : "fit", "w" : 1024 - }, { - "h" : 226, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -1405,6 +1401,10 @@ Grailbird.data.tweets_2015_12 = "h" : 682, "resize" : "fit", "w" : 1024 + }, { + "h" : 682, + "resize" : "fit", + "w" : 1024 } ], "display_url" : "pic.twitter.com\/xEOn44GjJF" }, { @@ -1416,21 +1416,21 @@ Grailbird.data.tweets_2015_12 = "id" : 675314381836705792, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CV8y2jEW4AA5qnT.jpg", "sizes" : [ { - "h" : 226, + "h" : 682, "resize" : "fit", - "w" : 340 + "w" : 1024 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 }, { "h" : 682, "resize" : "fit", "w" : 1024 + }, { + "h" : 453, + "resize" : "fit", + "w" : 680 }, { "h" : 682, "resize" : "fit", @@ -1457,9 +1457,13 @@ Grailbird.data.tweets_2015_12 = "id" : 675314381266280448, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CV8y2g8W4AAtqlw.jpg", "sizes" : [ { - "h" : 226, + "h" : 453, "resize" : "fit", - "w" : 340 + "w" : 680 + }, { + "h" : 682, + "resize" : "fit", + "w" : 1024 }, { "h" : 682, "resize" : "fit", @@ -1468,10 +1472,6 @@ Grailbird.data.tweets_2015_12 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 }, { "h" : 682, "resize" : "fit", @@ -1487,17 +1487,13 @@ Grailbird.data.tweets_2015_12 = "id" : 675314381543092224, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CV8y2h-WsAABDXY.jpg", "sizes" : [ { - "h" : 400, + "h" : 453, "resize" : "fit", - "w" : 600 + "w" : 680 }, { "h" : 682, "resize" : "fit", "w" : 1024 - }, { - "h" : 226, - "resize" : "fit", - "w" : 340 }, { "h" : 150, "resize" : "crop", @@ -1506,6 +1502,10 @@ Grailbird.data.tweets_2015_12 = "h" : 682, "resize" : "fit", "w" : 1024 + }, { + "h" : 682, + "resize" : "fit", + "w" : 1024 } ], "display_url" : "pic.twitter.com\/xEOn44GjJF" }, { @@ -1517,21 +1517,21 @@ Grailbird.data.tweets_2015_12 = "id" : 675314381836705792, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CV8y2jEW4AA5qnT.jpg", "sizes" : [ { - "h" : 226, + "h" : 682, "resize" : "fit", - "w" : 340 + "w" : 1024 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 400, - "resize" : "fit", - "w" : 600 }, { "h" : 682, "resize" : "fit", "w" : 1024 + }, { + "h" : 453, + "resize" : "fit", + "w" : 680 }, { "h" : 682, "resize" : "fit", @@ -1930,7 +1930,7 @@ Grailbird.data.tweets_2015_12 = "screen_name" : "clattner_llvm", "protected" : false, "id_str" : "2543588034", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/785316272825249792\/jX78g-6c_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916821795008688128\/yONBAVaZ_normal.jpg", "id" : 2543588034, "verified" : false } @@ -1950,7 +1950,7 @@ Grailbird.data.tweets_2015_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "David Keck \uD83D\uDCCE \uD83D\uDC36 \u2615\uFE0F \uD83D\uDD25", + "name" : "David Keck", "screen_name" : "davidskeck", "indices" : [ 0, 11 ], "id_str" : "18638258", @@ -2436,9 +2436,9 @@ Grailbird.data.tweets_2015_12 = "id" : 671893799111528453, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CVML2bbUkAUFlan.jpg", "sizes" : [ { - "h" : 191, + "h" : 378, "resize" : "fit", - "w" : 340 + "w" : 672 }, { "h" : 378, "resize" : "fit", @@ -2448,9 +2448,9 @@ Grailbird.data.tweets_2015_12 = "resize" : "crop", "w" : 150 }, { - "h" : 338, + "h" : 378, "resize" : "fit", - "w" : 600 + "w" : 672 }, { "h" : 378, "resize" : "fit", @@ -2480,9 +2480,9 @@ Grailbird.data.tweets_2015_12 = "id" : 671893799111528453, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CVML2bbUkAUFlan.jpg", "sizes" : [ { - "h" : 191, + "h" : 378, "resize" : "fit", - "w" : 340 + "w" : 672 }, { "h" : 378, "resize" : "fit", @@ -2492,9 +2492,9 @@ Grailbird.data.tweets_2015_12 = "resize" : "crop", "w" : 150 }, { - "h" : 338, + "h" : 378, "resize" : "fit", - "w" : 600 + "w" : 672 }, { "h" : 378, "resize" : "fit", @@ -2622,7 +2622,7 @@ Grailbird.data.tweets_2015_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u0265\u0254\u0131\u026Do\u029E \u029E\u0279\u0250\u026F", + "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 0, 11 ], "id_str" : "22196723", diff --git a/public/tweets/data/js/tweets/2016_01.js b/public/tweets/data/js/tweets/2016_01.js index 9fd6545..8575b62 100755 --- a/public/tweets/data/js/tweets/2016_01.js +++ b/public/tweets/data/js/tweets/2016_01.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2016_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC8Drta Therox", + "name" : "let \u007Borta\u007D = therox", "screen_name" : "orta", "indices" : [ 0, 5 ], "id_str" : "2569881", @@ -816,7 +816,7 @@ Grailbird.data.tweets_2016_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ryan Florence \uD83D\uDC4D\uD83C\uDFFC", + "name" : "Ryan Florence", "screen_name" : "ryanflorence", "indices" : [ 0, 13 ], "id_str" : "16468446", @@ -876,7 +876,7 @@ Grailbird.data.tweets_2016_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ryan Florence \uD83D\uDC4D\uD83C\uDFFC", + "name" : "Ryan Florence", "screen_name" : "ryanflorence", "indices" : [ 3, 16 ], "id_str" : "16468446", @@ -908,11 +908,11 @@ Grailbird.data.tweets_2016_01 = "in_reply_to_screen_name" : "ryanflorence", "in_reply_to_user_id_str" : "16468446", "user" : { - "name" : "Ryan Florence \uD83D\uDC4D\uD83C\uDFFC", + "name" : "Ryan Florence", "screen_name" : "ryanflorence", "protected" : false, "id_str" : "16468446", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833804425822998529\/Ng6B18iX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/864681873984835585\/4eV1BACS_normal.jpg", "id" : 16468446, "verified" : false } @@ -932,7 +932,7 @@ Grailbird.data.tweets_2016_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ryan Florence \uD83D\uDC4D\uD83C\uDFFC", + "name" : "Ryan Florence", "screen_name" : "ryanflorence", "indices" : [ 3, 16 ], "id_str" : "16468446", @@ -964,11 +964,11 @@ Grailbird.data.tweets_2016_01 = "id" : 686690836390649856, "created_at" : "2016-01-11 23:27:08 +0000", "user" : { - "name" : "Ryan Florence \uD83D\uDC4D\uD83C\uDFFC", + "name" : "Ryan Florence", "screen_name" : "ryanflorence", "protected" : false, "id_str" : "16468446", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833804425822998529\/Ng6B18iX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/864681873984835585\/4eV1BACS_normal.jpg", "id" : 16468446, "verified" : false } @@ -1006,6 +1006,10 @@ Grailbird.data.tweets_2016_01 = "h" : 529, "resize" : "fit", "w" : 600 + }, { + "h" : 529, + "resize" : "fit", + "w" : 600 }, { "h" : 150, "resize" : "crop", @@ -1018,10 +1022,6 @@ Grailbird.data.tweets_2016_01 = "h" : 529, "resize" : "fit", "w" : 600 - }, { - "h" : 300, - "resize" : "fit", - "w" : 340 } ], "display_url" : "pic.twitter.com\/iiYbprkWb0" } ], @@ -1355,18 +1355,18 @@ Grailbird.data.tweets_2016_01 = "h" : 534, "resize" : "fit", "w" : 950 + }, { + "h" : 534, + "resize" : "fit", + "w" : 950 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 191, + "h" : 382, "resize" : "fit", - "w" : 340 - }, { - "h" : 337, - "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/P4MFgUbJ0B" } ], @@ -1401,18 +1401,18 @@ Grailbird.data.tweets_2016_01 = "h" : 534, "resize" : "fit", "w" : 950 + }, { + "h" : 534, + "resize" : "fit", + "w" : 950 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 191, + "h" : 382, "resize" : "fit", - "w" : 340 - }, { - "h" : 337, - "resize" : "fit", - "w" : 600 + "w" : 680 } ], "display_url" : "pic.twitter.com\/P4MFgUbJ0B" } ], @@ -1597,21 +1597,21 @@ Grailbird.data.tweets_2016_01 = "resize" : "fit", "w" : 1270 }, { - "h" : 125, + "h" : 466, "resize" : "fit", - "w" : 340 + "w" : 1270 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 220, + "h" : 250, "resize" : "fit", - "w" : 600 + "w" : 680 }, { - "h" : 376, + "h" : 440, "resize" : "fit", - "w" : 1024 + "w" : 1200 } ], "display_url" : "pic.twitter.com\/aVv6d0s7OY" } ], @@ -1708,13 +1708,13 @@ Grailbird.data.tweets_2016_01 = "resize" : "fit", "w" : 677 }, { - "h" : 104, + "h" : 117, "resize" : "fit", - "w" : 600 + "w" : 677 }, { - "h" : 59, + "h" : 117, "resize" : "fit", - "w" : 340 + "w" : 677 }, { "h" : 117, "resize" : "crop", @@ -1784,7 +1784,7 @@ Grailbird.data.tweets_2016_01 = "screen_name" : "vaughanbell", "protected" : false, "id_str" : "20542737", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/86835447\/10947_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/882339486641803264\/SHqUUNbc_normal.jpg", "id" : 20542737, "verified" : false } diff --git a/public/tweets/data/js/tweets/2016_02.js b/public/tweets/data/js/tweets/2016_02.js index e421024..0d294da 100755 --- a/public/tweets/data/js/tweets/2016_02.js +++ b/public/tweets/data/js/tweets/2016_02.js @@ -34,7 +34,7 @@ Grailbird.data.tweets_2016_02 = "screen_name" : "amar47shah", "protected" : false, "id_str" : "426783122", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/851360355490164736\/gUnTvs0M_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/868581215716114432\/q_2FuBvJ_normal.jpg", "id" : 426783122, "verified" : false } @@ -828,7 +828,7 @@ Grailbird.data.tweets_2016_02 = "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839220483350487040\/1JNTuxrF_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", "id" : 15267898, "verified" : true } @@ -879,7 +879,7 @@ Grailbird.data.tweets_2016_02 = "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839220483350487040\/1JNTuxrF_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", "id" : 15267898, "verified" : true } @@ -930,7 +930,7 @@ Grailbird.data.tweets_2016_02 = "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/839220483350487040\/1JNTuxrF_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", "id" : 15267898, "verified" : true } @@ -1695,10 +1695,6 @@ Grailbird.data.tweets_2016_02 = "id" : 696531629838209024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CaqT07NUkAA1svs.jpg", "sizes" : [ { - "h" : 450, - "resize" : "fit", - "w" : 600 - }, { "h" : 1080, "resize" : "fit", "w" : 1440 @@ -1707,13 +1703,17 @@ Grailbird.data.tweets_2016_02 = "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 510, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 768, + "h" : 900, "resize" : "fit", - "w" : 1024 + "w" : 1200 + }, { + "h" : 1080, + "resize" : "fit", + "w" : 1440 } ], "display_url" : "pic.twitter.com\/pJhHWiRdqA" } ], @@ -1739,10 +1739,6 @@ Grailbird.data.tweets_2016_02 = "id" : 696531629838209024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CaqT07NUkAA1svs.jpg", "sizes" : [ { - "h" : 450, - "resize" : "fit", - "w" : 600 - }, { "h" : 1080, "resize" : "fit", "w" : 1440 @@ -1751,13 +1747,17 @@ Grailbird.data.tweets_2016_02 = "resize" : "crop", "w" : 150 }, { - "h" : 255, + "h" : 510, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 768, + "h" : 900, "resize" : "fit", - "w" : 1024 + "w" : 1200 + }, { + "h" : 1080, + "resize" : "fit", + "w" : 1440 } ], "display_url" : "pic.twitter.com\/pJhHWiRdqA" } ], @@ -1973,7 +1973,7 @@ Grailbird.data.tweets_2016_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Nate Cook \uD83D\uDE05", + "name" : "Nate Cook \uD83C\uDF42", "screen_name" : "nnnnnnnn", "indices" : [ 0, 9 ], "id_str" : "4365311", @@ -2080,7 +2080,7 @@ Grailbird.data.tweets_2016_02 = "screen_name" : "malgorithms", "protected" : false, "id_str" : "12229772", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/722409518081130496\/Q13k-rT6_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916052872952995840\/Z3AvozIu_normal.jpg", "id" : 12229772, "verified" : false } diff --git a/public/tweets/data/js/tweets/2016_03.js b/public/tweets/data/js/tweets/2016_03.js index f3259ad..a11ccac 100755 --- a/public/tweets/data/js/tweets/2016_03.js +++ b/public/tweets/data/js/tweets/2016_03.js @@ -450,7 +450,7 @@ Grailbird.data.tweets_2016_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Joe Fabisevich \uD83D\uDC36\uD83D\uDC33\u2122", + "name" : "Joe Fabisevich \uD83D\uDC36\uD83C\uDDF5\uD83C\uDDF7\uD83D\uDC33\u2122", "screen_name" : "mergesort", "indices" : [ 0, 10 ], "id_str" : "26178841", @@ -495,7 +495,7 @@ Grailbird.data.tweets_2016_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Fight nazis or GTFO", + "name" : "\uD83D\uDC7B Phlegm Parrot", "screen_name" : "gembarrett", "indices" : [ 3, 14 ], "id_str" : "43727347", @@ -522,7 +522,7 @@ Grailbird.data.tweets_2016_03 = "id" : 712392149178961920, "created_at" : "2016-03-22 21:34:58 +0000", "user" : { - "name" : "Fight nazis or GTFO", + "name" : "\uD83D\uDC7B Phlegm Parrot", "screen_name" : "gembarrett", "protected" : false, "id_str" : "43727347", @@ -843,21 +843,21 @@ Grailbird.data.tweets_2016_03 = "id" : 707695130854031360, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CdI8-NPUAAAWBpq.jpg", "sizes" : [ { - "h" : 579, + "h" : 385, "resize" : "fit", - "w" : 1024 + "w" : 680 + }, { + "h" : 679, + "resize" : "fit", + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 192, + "h" : 784, "resize" : "fit", - "w" : 340 - }, { - "h" : 339, - "resize" : "fit", - "w" : 600 + "w" : 1386 }, { "h" : 784, "resize" : "fit", @@ -895,14 +895,6 @@ Grailbird.data.tweets_2016_03 = "id" : 707694282627375104, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CdI8M1WUYAACmoY.jpg", "sizes" : [ { - "h" : 51, - "resize" : "fit", - "w" : 340 - }, { - "h" : 90, - "resize" : "fit", - "w" : 600 - }, { "h" : 132, "resize" : "crop", "w" : 132 @@ -914,6 +906,14 @@ Grailbird.data.tweets_2016_03 = "h" : 132, "resize" : "fit", "w" : 880 + }, { + "h" : 102, + "resize" : "fit", + "w" : 680 + }, { + "h" : 132, + "resize" : "fit", + "w" : 880 } ], "display_url" : "pic.twitter.com\/sEjkW7uojG" } ], diff --git a/public/tweets/data/js/tweets/2016_04.js b/public/tweets/data/js/tweets/2016_04.js index dffab2f..2346537 100755 --- a/public/tweets/data/js/tweets/2016_04.js +++ b/public/tweets/data/js/tweets/2016_04.js @@ -114,7 +114,7 @@ Grailbird.data.tweets_2016_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "josh avant", + "name" : "super josh avant x", "screen_name" : "joshavant", "indices" : [ 0, 10 ], "id_str" : "123978606", @@ -245,9 +245,9 @@ Grailbird.data.tweets_2016_04 = "id" : 720944262309941248, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CgFO_KHXEAAWQz_.jpg", "sizes" : [ { - "h" : 395, + "h" : 920, "resize" : "fit", - "w" : 600 + "w" : 1397 }, { "h" : 920, "resize" : "fit", @@ -257,13 +257,13 @@ Grailbird.data.tweets_2016_04 = "resize" : "crop", "w" : 150 }, { - "h" : 674, + "h" : 790, "resize" : "fit", - "w" : 1024 + "w" : 1200 }, { - "h" : 224, + "h" : 448, "resize" : "fit", - "w" : 340 + "w" : 680 } ], "display_url" : "pic.twitter.com\/1l6X31hv3Y" } ], @@ -280,7 +280,7 @@ Grailbird.data.tweets_2016_04 = "screen_name" : "tdierks", "protected" : false, "id_str" : "15845390", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/58209917\/s561589873_98909_9565_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/867170721423908865\/ReXcZP2R_normal.jpg", "id" : 15845390, "verified" : false } diff --git a/public/tweets/data/js/tweets/2016_05.js b/public/tweets/data/js/tweets/2016_05.js index 7c115e5..a4cac14 100755 --- a/public/tweets/data/js/tweets/2016_05.js +++ b/public/tweets/data/js/tweets/2016_05.js @@ -283,7 +283,7 @@ Grailbird.data.tweets_2016_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", diff --git a/public/tweets/data/js/tweets/2016_06.js b/public/tweets/data/js/tweets/2016_06.js index 0681a1c..abf191a 100755 --- a/public/tweets/data/js/tweets/2016_06.js +++ b/public/tweets/data/js/tweets/2016_06.js @@ -530,7 +530,7 @@ Grailbird.data.tweets_2016_06 = "screen_name" : "feministy", "protected" : false, "id_str" : "7039892", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/831506570685001728\/xo5clzzg_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/876925277787443200\/8nmwdmMC_normal.jpg", "id" : 7039892, "verified" : false } @@ -852,7 +852,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -879,11 +879,11 @@ Grailbird.data.tweets_2016_06 = "id" : 515933157242470400, "created_at" : "2014-09-27 18:37:04 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } @@ -1531,7 +1531,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ivan Andriollo", + "name" : "Ivan Andriollo \uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "ivanandriollo", "indices" : [ 0, 14 ], "id_str" : "22913041", @@ -1991,7 +1991,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brian Gesiak", + "name" : "a sexy brian costume", "screen_name" : "modocache", "indices" : [ 0, 10 ], "id_str" : "192478064", @@ -3055,7 +3055,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Joe Groff", + "name" : "[joe groff];", "screen_name" : "jckarter", "indices" : [ 3, 12 ], "id_str" : "18559099", @@ -3099,11 +3099,11 @@ Grailbird.data.tweets_2016_06 = "in_reply_to_screen_name" : "fzwob", "in_reply_to_user_id_str" : "383365996", "user" : { - "name" : "Joe Groff", + "name" : "[joe groff];", "screen_name" : "jckarter", "protected" : false, "id_str" : "18559099", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853476093969309696\/UvkXdC-l_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914907528294686721\/nbK0AVfv_normal.jpg", "id" : 18559099, "verified" : false } @@ -3211,6 +3211,67 @@ Grailbird.data.tweets_2016_06 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Anna Shtengelova", + "screen_name" : "ashtengelova", + "indices" : [ 3, 16 ], + "id_str" : "2792599332", + "id" : 2792599332 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 39, 62 ], + "url" : "https:\/\/t.co\/jKKdVEjYvX", + "expanded_url" : "https:\/\/developer.apple.com\/ios\/human-interface-guidelines\/", + "display_url" : "developer.apple.com\/ios\/human-inte\u2026" + } ] + }, + "geo" : { }, + "id_str" : "742445881387929600", + "text" : "RT @ashtengelova: Shiny new iOS HIG! \uD83C\uDF1F https:\/\/t.co\/jKKdVEjYvX", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 21, 44 ], + "url" : "https:\/\/t.co\/jKKdVEjYvX", + "expanded_url" : "https:\/\/developer.apple.com\/ios\/human-interface-guidelines\/", + "display_url" : "developer.apple.com\/ios\/human-inte\u2026" + } ] + }, + "geo" : { }, + "id_str" : "742445532593823744", + "text" : "Shiny new iOS HIG! \uD83C\uDF1F https:\/\/t.co\/jKKdVEjYvX", + "id" : 742445532593823744, + "created_at" : "2016-06-13 19:56:23 +0000", + "user" : { + "name" : "Anna Shtengelova", + "screen_name" : "ashtengelova", + "protected" : false, + "id_str" : "2792599332", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/608702116509540352\/dHRr4_oo_normal.jpg", + "id" : 2792599332, + "verified" : false + } + }, + "id" : 742445881387929600, + "created_at" : "2016-06-13 19:57:46 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { @@ -3641,7 +3702,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tanya X. Short", + "name" : "Tanya's Skeleton", "screen_name" : "tanyaxshort", "indices" : [ 3, 15 ], "id_str" : "477205806", @@ -3668,11 +3729,11 @@ Grailbird.data.tweets_2016_06 = "id" : 741752072257691648, "created_at" : "2016-06-11 22:00:49 +0000", "user" : { - "name" : "Tanya X. Short", + "name" : "Tanya's Skeleton", "screen_name" : "tanyaxshort", "protected" : false, "id_str" : "477205806", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/850099255364775938\/yUjBA0rC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916848421469868032\/UYw4IiZ6_normal.jpg", "id" : 477205806, "verified" : true } @@ -4078,7 +4139,7 @@ Grailbird.data.tweets_2016_06 = "id_str" : "921389774", "id" : 921389774 }, { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 25, 35 ], "id_str" : "22406953", @@ -4280,7 +4341,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Fight nazis or GTFO", + "name" : "\uD83D\uDC7B Phlegm Parrot", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", diff --git a/public/tweets/data/js/tweets/2016_07.js b/public/tweets/data/js/tweets/2016_07.js index a10efc1..45dbe7d 100755 --- a/public/tweets/data/js/tweets/2016_07.js +++ b/public/tweets/data/js/tweets/2016_07.js @@ -924,7 +924,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "18137723", "id" : 18137723 }, { - "name" : "Incident Commander", + "name" : "Pager Dave", "screen_name" : "Cliffehangers", "indices" : [ 16, 30 ], "id_str" : "2343043428", @@ -941,7 +941,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Incident Commander", + "name" : "Pager Dave", "screen_name" : "Cliffehangers", "indices" : [ 1, 15 ], "id_str" : "2343043428", @@ -992,7 +992,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "18137723", "id" : 18137723 }, { - "name" : "Incident Commander", + "name" : "Pager Dave", "screen_name" : "Cliffehangers", "indices" : [ 16, 30 ], "id_str" : "2343043428", @@ -1009,7 +1009,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Incident Commander", + "name" : "Pager Dave", "screen_name" : "Cliffehangers", "indices" : [ 1, 15 ], "id_str" : "2343043428", @@ -1093,7 +1093,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1337,7 +1337,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/799257118020947969\/cMmlpktU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", "id" : 14169916, "verified" : false } @@ -1388,7 +1388,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/799257118020947969\/cMmlpktU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", "id" : 14169916, "verified" : false } @@ -1439,7 +1439,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/799257118020947969\/cMmlpktU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", "id" : 14169916, "verified" : false } @@ -1520,7 +1520,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/799257118020947969\/cMmlpktU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", "id" : 14169916, "verified" : false } @@ -1595,7 +1595,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1628,7 +1628,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1781,7 +1781,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 3, 13 ], "id_str" : "22406953", @@ -1825,7 +1825,7 @@ Grailbird.data.tweets_2016_07 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "protected" : false, "id_str" : "22406953", @@ -1849,7 +1849,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1917,7 +1917,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ThinkGeek", + "name" : "Think\uD83D\uDC7BEEK!", "screen_name" : "thinkgeek", "indices" : [ 3, 13 ], "id_str" : "12611642", @@ -2004,11 +2004,11 @@ Grailbird.data.tweets_2016_07 = "id" : 753804541703827456, "created_at" : "2016-07-15 04:13:02 +0000", "user" : { - "name" : "ThinkGeek", + "name" : "Think\uD83D\uDC7BEEK!", "screen_name" : "thinkgeek", "protected" : false, "id_str" : "12611642", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849732935444049925\/jhcx9sr5_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914961266510372864\/T3sx-1lG_normal.jpg", "id" : 12611642, "verified" : true } @@ -2214,7 +2214,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "0x00A", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/843963093864603648\/zTr2gD8t_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/895001508349128704\/gFxzeC4L_normal.jpg", "id" : 95938827, "verified" : false } @@ -2283,7 +2283,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "indices" : [ 3, 7 ], "id_str" : "12712742", @@ -2320,11 +2320,11 @@ Grailbird.data.tweets_2016_07 = "id" : 753851945014538240, "created_at" : "2016-07-15 07:21:24 +0000", "user" : { - "name" : "zach is ill", + "name" : "Zach Carter", "screen_name" : "zii", "protected" : false, "id_str" : "12712742", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/850471004262383616\/4bWS5-E7_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/880992273101578240\/ib3GlMDp_normal.jpg", "id" : 12712742, "verified" : false } @@ -2493,7 +2493,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "typeoneerror", "protected" : false, "id_str" : "11973362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/810629507728044032\/KC9N72d__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/872004130826362881\/9RRxQHYL_normal.jpg", "id" : 11973362, "verified" : false } @@ -2790,7 +2790,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "0x00A", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/843963093864603648\/zTr2gD8t_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/895001508349128704\/gFxzeC4L_normal.jpg", "id" : 95938827, "verified" : false } @@ -3509,7 +3509,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "indices" : [ 3, 10 ], "id_str" : "207756340", @@ -3536,11 +3536,11 @@ Grailbird.data.tweets_2016_07 = "id" : 484731425854611456, "created_at" : "2014-07-03 16:12:32 +0000", "user" : { - "name" : "wwwtxt (1980-94)", + "name" : "WWWTXT (1980-94)", "screen_name" : "wwwtxt", "protected" : false, "id_str" : "207756340", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000328039060\/306deca90d2cf629aec0b51423f11a02_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914078053776494592\/QGsViIib_normal.jpg", "id" : 207756340, "verified" : false } diff --git a/public/tweets/data/js/tweets/2016_08.js b/public/tweets/data/js/tweets/2016_08.js index f2c73a2..bcf895c 100755 --- a/public/tweets/data/js/tweets/2016_08.js +++ b/public/tweets/data/js/tweets/2016_08.js @@ -71,7 +71,7 @@ Grailbird.data.tweets_2016_08 = "screen_name" : "Catfish_Man", "protected" : false, "id_str" : "15444008", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/779581705292165120\/QOHPKKZv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877087638389379072\/nAnRi8MZ_normal.jpg", "id" : 15444008, "verified" : false } @@ -1074,7 +1074,7 @@ Grailbird.data.tweets_2016_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Strong Bad", + "name" : "Strangled Badly", "screen_name" : "StrongBadActual", "indices" : [ 3, 19 ], "id_str" : "382221144", @@ -1143,7 +1143,7 @@ Grailbird.data.tweets_2016_08 = "id" : 766087355174260737, "created_at" : "2016-08-18 01:40:33 +0000", "user" : { - "name" : "Strong Bad", + "name" : "Strangled Badly", "screen_name" : "StrongBadActual", "protected" : false, "id_str" : "382221144", @@ -2245,7 +2245,7 @@ Grailbird.data.tweets_2016_08 = "id_str" : "408246807", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/662690256559464448\/M7RzZNyf_normal.jpg", "id" : 408246807, - "verified" : false + "verified" : true } }, "id" : 762416984654880769, @@ -2395,7 +2395,7 @@ Grailbird.data.tweets_2016_08 = "id_str" : "15444008", "id" : 15444008 }, { - "name" : "z\u034A\u0318\u0316a\u0313\u0365\u032F\u0323c\u0314\u0346\u0302\u033Ch\u0363\u0311\u0342 \u270C", + "name" : "zachary \u270C", "screen_name" : "zadr", "indices" : [ 23, 28 ], "id_str" : "7700222", diff --git a/public/tweets/data/js/tweets/2016_09.js b/public/tweets/data/js/tweets/2016_09.js index 9ed0f1e..22ff0ed 100755 --- a/public/tweets/data/js/tweets/2016_09.js +++ b/public/tweets/data/js/tweets/2016_09.js @@ -39,7 +39,7 @@ Grailbird.data.tweets_2016_09 = "screen_name" : "Catfish_Man", "protected" : false, "id_str" : "15444008", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/779581705292165120\/QOHPKKZv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/877087638389379072\/nAnRi8MZ_normal.jpg", "id" : 15444008, "verified" : false } @@ -1055,7 +1055,7 @@ Grailbird.data.tweets_2016_09 = "screen_name" : "segiddins", "protected" : false, "id_str" : "73644377", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/686232573547184132\/9QPMlw6E_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/856925382393638913\/HjRakN3D_normal.jpg", "id" : 73644377, "verified" : false } @@ -1444,7 +1444,7 @@ Grailbird.data.tweets_2016_09 = "id_str" : "317150782", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/640505337544581121\/3wYSA4gX_normal.png", "id" : 317150782, - "verified" : false + "verified" : true } }, "id" : 779353104575672320, @@ -1929,7 +1929,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -2027,7 +2027,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Marc Edwards \uD83D\uDCCE", + "name" : "Marc Edwards", "screen_name" : "marcedwards", "indices" : [ 0, 12 ], "id_str" : "18865450", @@ -2060,7 +2060,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -2134,7 +2134,7 @@ Grailbird.data.tweets_2016_09 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793501897030152192\/aMAAYCvY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", "id" : 36183, "verified" : false } @@ -2185,7 +2185,7 @@ Grailbird.data.tweets_2016_09 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793501897030152192\/aMAAYCvY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", "id" : 36183, "verified" : false } @@ -2237,7 +2237,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "indices" : [ 3, 14 ], "id_str" : "18553922", @@ -2264,11 +2264,11 @@ Grailbird.data.tweets_2016_09 = "id" : 776434568912134144, "created_at" : "2016-09-15 14:56:41 +0000", "user" : { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "protected" : false, "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/835519152492273664\/kd9wqo1s_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900845150158630913\/vYNWfyIR_normal.jpg", "id" : 18553922, "verified" : false } diff --git a/public/tweets/data/js/tweets/2016_10.js b/public/tweets/data/js/tweets/2016_10.js index e5bcc0b..6c36236 100755 --- a/public/tweets/data/js/tweets/2016_10.js +++ b/public/tweets/data/js/tweets/2016_10.js @@ -164,7 +164,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -299,7 +299,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -332,7 +332,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -368,7 +368,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "indices" : [ 3, 14 ], "id_str" : "18553922", @@ -400,11 +400,11 @@ Grailbird.data.tweets_2016_10 = "in_reply_to_screen_name" : "zwaldowski", "in_reply_to_user_id_str" : "18553922", "user" : { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "protected" : false, "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/835519152492273664\/kd9wqo1s_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900845150158630913\/vYNWfyIR_normal.jpg", "id" : 18553922, "verified" : false } @@ -424,7 +424,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "indices" : [ 3, 14 ], "id_str" : "18553922", @@ -451,11 +451,11 @@ Grailbird.data.tweets_2016_10 = "id" : 792791499138301952, "created_at" : "2016-10-30 18:13:17 +0000", "user" : { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "protected" : false, "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/835519152492273664\/kd9wqo1s_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900845150158630913\/vYNWfyIR_normal.jpg", "id" : 18553922, "verified" : false } @@ -1063,7 +1063,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1140,7 +1140,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1293,7 +1293,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1957,7 +1957,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1990,7 +1990,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -2023,7 +2023,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -2056,7 +2056,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -2089,7 +2089,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -2163,7 +2163,7 @@ Grailbird.data.tweets_2016_10 = "screen_name" : "clemensv", "protected" : false, "id_str" : "14091119", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/737220112156098560\/jr7zqZFj_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/870930150866784256\/9dpZ5ysC_normal.jpg", "id" : 14091119, "verified" : false } @@ -3243,6 +3243,57 @@ Grailbird.data.tweets_2016_10 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Brent Simmons", + "screen_name" : "brentsimmons", + "indices" : [ 3, 16 ], + "id_str" : "652293", + "id" : 652293 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "784231148671029248", + "text" : "RT @brentsimmons: Apple is within their rights to run a Kafkaesque bureaucracy. I just don\u2019t know why they want to.", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "784087254004183040", + "text" : "Apple is within their rights to run a Kafkaesque bureaucracy. I just don\u2019t know why they want to.", + "id" : 784087254004183040, + "created_at" : "2016-10-06 17:45:43 +0000", + "user" : { + "name" : "Brent Simmons", + "screen_name" : "brentsimmons", + "protected" : false, + "id_str" : "652293", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1608701783\/GoldenGardens_Cropped_normal.png", + "id" : 652293, + "verified" : false + } + }, + "id" : 784231148671029248, + "created_at" : "2016-10-07 03:17:30 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { @@ -3274,7 +3325,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tomasz Kowa\u03BBczyk", + "name" : "Tomasz Kowa\u03BBczyk \u26A1", "screen_name" : "tmmx", "indices" : [ 0, 5 ], "id_str" : "19185780", @@ -3313,7 +3364,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tomasz Kowa\u03BBczyk", + "name" : "Tomasz Kowa\u03BBczyk \u26A1", "screen_name" : "tmmx", "indices" : [ 0, 5 ], "id_str" : "19185780", @@ -3352,7 +3403,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tomasz Kowa\u03BBczyk", + "name" : "Tomasz Kowa\u03BBczyk \u26A1", "screen_name" : "tmmx", "indices" : [ 0, 5 ], "id_str" : "19185780", @@ -3391,7 +3442,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tomasz Kowa\u03BBczyk", + "name" : "Tomasz Kowa\u03BBczyk \u26A1", "screen_name" : "tmmx", "indices" : [ 0, 5 ], "id_str" : "19185780", @@ -3430,13 +3481,13 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "eric maize", + "name" : "Eric Meltzer", "screen_name" : "wheatpond", "indices" : [ 0, 10 ], "id_str" : "341874816", "id" : 341874816 }, { - "name" : "A Saunterin' Fella", + "name" : "(craig mod?)", "screen_name" : "craigmod", "indices" : [ 11, 20 ], "id_str" : "1835951", @@ -3816,7 +3867,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "(\uD83D\uDC41\u0296\uD83D\uDC41)", + "name" : "\uD83D\uDCAC", "screen_name" : "herval", "indices" : [ 0, 7 ], "id_str" : "5498732", diff --git a/public/tweets/data/js/tweets/2016_11.js b/public/tweets/data/js/tweets/2016_11.js index cdb9b9b..f32f163 100755 --- a/public/tweets/data/js/tweets/2016_11.js +++ b/public/tweets/data/js/tweets/2016_11.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -36,7 +36,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -69,7 +69,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -272,7 +272,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeff Nadeau", + "name" : "Jeff Nadeau \uD83D\uDC7B", "screen_name" : "jnadeau", "indices" : [ 3, 11 ], "id_str" : "2741981", @@ -304,11 +304,11 @@ Grailbird.data.tweets_2016_11 = "id" : 799769496068100096, "created_at" : "2016-11-19 00:21:21 +0000", "user" : { - "name" : "Jeff Nadeau", + "name" : "Jeff Nadeau \uD83D\uDC7B", "screen_name" : "jnadeau", "protected" : false, "id_str" : "2741981", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/687736342260748288\/cu2Fig_B_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/867891485915664384\/IXsBQxbF_normal.jpg", "id" : 2741981, "verified" : false } @@ -373,7 +373,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -572,7 +572,7 @@ Grailbird.data.tweets_2016_11 = "id_str" : "2573880420", "id" : 2573880420 }, { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 23, 33 ], "id_str" : "22406953", @@ -632,7 +632,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -665,7 +665,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -698,7 +698,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -812,7 +812,7 @@ Grailbird.data.tweets_2016_11 = "id_str" : "19745636", "id" : 19745636 }, { - "name" : "J Cheyo Jimenez", + "name" : "Jose Cheyo Jimenez", "screen_name" : "masters3d", "indices" : [ 8, 18 ], "id_str" : "15990332", @@ -1011,13 +1011,13 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kelsey Q", + "name" : "Kelsey Q kq", "screen_name" : "ts_kq", "indices" : [ 0, 6 ], "id_str" : "3116467667", "id" : 3116467667 }, { - "name" : "CRYSTAL\uD83D\uDC9C", + "name" : "Crystal Leigh", "screen_name" : "crystalleigh", "indices" : [ 7, 20 ], "id_str" : "17635904", @@ -1557,7 +1557,7 @@ Grailbird.data.tweets_2016_11 = "screen_name" : "cocoaphony", "protected" : false, "id_str" : "41581553", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/776404040972374016\/8Rl5Cw1h_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/873049083874729984\/PPoIIT8c_normal.jpg", "id" : 41581553, "verified" : false } @@ -1653,7 +1653,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mark Bramhill \uD83D\uDCFB", + "name" : "\uD835\uDD78\uD835\uDD86\uD835\uDD97\uD835\uDC24 \uD835\uDD6D\uD835\uDD97\uD835\uDD86\uD835\uDD92\uD835\uDD8D\uD835\uDD94\uD835\uDD9C\uD835\uDD91 \uD83C\uDF15\uD83D\uDC3A", "screen_name" : "mcbramhill", "indices" : [ 31, 42 ], "id_str" : "432194612", diff --git a/public/tweets/data/js/tweets/2016_12.js b/public/tweets/data/js/tweets/2016_12.js index ff46c40..3b5e9c7 100755 --- a/public/tweets/data/js/tweets/2016_12.js +++ b/public/tweets/data/js/tweets/2016_12.js @@ -78,7 +78,7 @@ Grailbird.data.tweets_2016_12 = "id_str" : "408246807", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/662690256559464448\/M7RzZNyf_normal.jpg", "id" : 408246807, - "verified" : false + "verified" : true } }, "id" : 815317804177989633, @@ -197,7 +197,7 @@ Grailbird.data.tweets_2016_12 = "screen_name" : "ProductHunt", "protected" : false, "id_str" : "2208027565", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/848627565564645377\/iQt1ab4U_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/875436016428916736\/1WwdUVmB_normal.jpg", "id" : 2208027565, "verified" : true } @@ -279,7 +279,7 @@ Grailbird.data.tweets_2016_12 = "id_str" : "35067687", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/667423318513983490\/rYsZX5Fj_normal.jpg", "id" : 35067687, - "verified" : false + "verified" : true } }, "id" : 814673010716090369, @@ -372,7 +372,7 @@ Grailbird.data.tweets_2016_12 = "screen_name" : "sarahmei", "protected" : false, "id_str" : "14164724", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/731640298820894720\/SD43wVMV_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900926526182445058\/qOi3HTwf_normal.jpg", "id" : 14164724, "verified" : true } @@ -926,7 +926,7 @@ Grailbird.data.tweets_2016_12 = "screen_name" : "evadne", "protected" : false, "id_str" : "15614100", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2246294748\/6603BCF2-2CDC-45B8-981C-FFA56AEB7329_normal", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903029224965058561\/81mhqDTL_normal.jpg", "id" : 15614100, "verified" : false } @@ -1106,7 +1106,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1139,7 +1139,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1227,7 +1227,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeff Nadeau", + "name" : "Death Nadeau \uD83C\uDF83", "screen_name" : "jnadeau", "indices" : [ 0, 8 ], "id_str" : "2741981", @@ -1589,7 +1589,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1810,7 +1810,7 @@ Grailbird.data.tweets_2016_12 = "screen_name" : "mariofusco", "protected" : false, "id_str" : "142589904", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/758704602812452864\/_U-PR9S0_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919473329354010625\/AwG2CHyv_normal.jpg", "id" : 142589904, "verified" : false } @@ -1879,7 +1879,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brian Gesiak", + "name" : "a sexy brian costume", "screen_name" : "modocache", "indices" : [ 3, 13 ], "id_str" : "192478064", @@ -1906,7 +1906,7 @@ Grailbird.data.tweets_2016_12 = "id" : 806706197046755329, "created_at" : "2016-12-08 03:45:19 +0000", "user" : { - "name" : "Brian Gesiak", + "name" : "a sexy brian costume", "screen_name" : "modocache", "protected" : false, "id_str" : "192478064", diff --git a/public/tweets/data/js/tweets/2017_01.js b/public/tweets/data/js/tweets/2017_01.js index c9c6591..6d657b8 100755 --- a/public/tweets/data/js/tweets/2017_01.js +++ b/public/tweets/data/js/tweets/2017_01.js @@ -9,11 +9,11 @@ Grailbird.data.tweets_2017_01 = "id_str" : "14270439", "id" : 14270439 }, { - "name" : "Gil Desmarais", + "name" : "Gil", "screen_name" : "giLL0r", "indices" : [ 16, 23 ], - "id_str" : "22187095", - "id" : 22187095 + "id_str" : "859342783500386304", + "id" : 859342783500386304 } ], "media" : [ ], "hashtags" : [ ], @@ -74,7 +74,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "OMIOTEK", + "name" : "your friend alex", "screen_name" : "omiotaco", "indices" : [ 0, 9 ], "id_str" : "445150610", @@ -784,7 +784,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Fight nazis or GTFO", + "name" : "\uD83D\uDC7B Phlegm Parrot", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -817,7 +817,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Fight nazis or GTFO", + "name" : "\uD83D\uDC7B Phlegm Parrot", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -850,7 +850,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Fight nazis or GTFO", + "name" : "\uD83D\uDC7B Phlegm Parrot", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -977,13 +977,13 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Fight nazis or GTFO", + "name" : "\uD83D\uDC7B Phlegm Parrot", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", "id" : 43727347 }, { - "name" : "hannah \uD83C\uDF39", + "name" : "hannah", "screen_name" : "oceanseyye", "indices" : [ 12, 23 ], "id_str" : "1201665662", @@ -1012,57 +1012,6 @@ Grailbird.data.tweets_2017_01 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Kris Markel", - "screen_name" : "existopher", - "indices" : [ 3, 14 ], - "id_str" : "191922437", - "id" : 191922437 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "821766582732877824", - "text" : "RT @existopher: I had a problem involving text parsing and capture, so I used a regex. Now I have an elegant and domain appropriate solutio\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "821503015957843969", - "text" : "I had a problem involving text parsing and capture, so I used a regex. Now I have an elegant and domain appropriate solution to my problem.", - "id" : 821503015957843969, - "created_at" : "2017-01-17 23:42:36 +0000", - "user" : { - "name" : "Kris Markel", - "screen_name" : "existopher", - "protected" : false, - "id_str" : "191922437", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/660980867611815936\/2oUrk18B_normal.jpg", - "id" : 191922437, - "verified" : false - } - }, - "id" : 821766582732877824, - "created_at" : "2017-01-18 17:09:55 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { @@ -1504,7 +1453,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -1570,7 +1519,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "vixentael \uD83D\uDD11\uD83D\uDEE1\uD83D\uDCBB", + "name" : "vixentael \uD83D\uDCBB\uD83E\uDD84", "screen_name" : "vixentael", "indices" : [ 0, 10 ], "id_str" : "536639805", @@ -1675,7 +1624,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -1708,7 +1657,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr \uD83E\uDD20", + "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -1774,7 +1723,7 @@ Grailbird.data.tweets_2017_01 = "id_str" : "2941119764", "id" : 2941119764 }, { - "name" : "Mark Bramhill \uD83D\uDCFB", + "name" : "\uD835\uDD78\uD835\uDD86\uD835\uDD97\uD835\uDC24 \uD835\uDD6D\uD835\uDD97\uD835\uDD86\uD835\uDD92\uD835\uDD8D\uD835\uDD94\uD835\uDD9C\uD835\uDD91 \uD83C\uDF15\uD83D\uDC3A", "screen_name" : "mcbramhill", "indices" : [ 43, 54 ], "id_str" : "432194612", @@ -1887,7 +1836,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Joe Groff", + "name" : "[joe groff];", "screen_name" : "jckarter", "indices" : [ 0, 9 ], "id_str" : "18559099", @@ -2160,7 +2109,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Waldowski", + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", diff --git a/public/tweets/data/js/tweets/2017_04.js b/public/tweets/data/js/tweets/2017_04.js index f68f5ff..ff2a8e1 100755 --- a/public/tweets/data/js/tweets/2017_04.js +++ b/public/tweets/data/js/tweets/2017_04.js @@ -1,9 +1,9 @@ Grailbird.data.tweets_2017_04 = -[ { + [ { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Moren", + "name" : "2017, but forever", "screen_name" : "dmoren", "indices" : [ 0, 7 ], "id_str" : "668243", @@ -48,7 +48,7 @@ Grailbird.data.tweets_2017_04 = "id_str" : "2786220516", "id" : 2786220516 }, { - "name" : "Dan Moren", + "name" : "2017, but forever", "screen_name" : "dmoren", "indices" : [ 16, 23 ], "id_str" : "668243", @@ -266,7 +266,7 @@ Grailbird.data.tweets_2017_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4", + "name" : "\uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -299,7 +299,7 @@ Grailbird.data.tweets_2017_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Joe Groff", + "name" : "[joe groff];", "screen_name" : "jckarter", "indices" : [ 3, 12 ], "id_str" : "18559099", @@ -326,11 +326,11 @@ Grailbird.data.tweets_2017_04 = "id" : 854540059197952000, "created_at" : "2017-04-19 03:40:01 +0000", "user" : { - "name" : "Joe Groff", + "name" : "[joe groff];", "screen_name" : "jckarter", "protected" : false, "id_str" : "18559099", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853476093969309696\/UvkXdC-l_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914907528294686721\/nbK0AVfv_normal.jpg", "id" : 18559099, "verified" : false } @@ -620,7 +620,7 @@ Grailbird.data.tweets_2017_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Nicholas Rempel \uD83D\uDE80", + "name" : "Nicholas Rempel \uD83C\uDF83", "screen_name" : "nbrempel", "indices" : [ 0, 9 ], "id_str" : "1400951646", diff --git a/public/tweets/data/js/tweets/2017_05.js b/public/tweets/data/js/tweets/2017_05.js new file mode 100755 index 0000000..16c7db2 --- /dev/null +++ b/public/tweets/data/js/tweets/2017_05.js @@ -0,0 +1,107 @@ +Grailbird.data.tweets_2017_05 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Feedbin", + "screen_name" : "feedbin", + "indices" : [ 0, 8 ], + "id_str" : "1170518132", + "id" : 1170518132 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "866876636997627904", + "geo" : { }, + "id_str" : "866885368053760000", + "in_reply_to_user_id" : 1170518132, + "text" : "@feedbin That makes sense.", + "id" : 866885368053760000, + "in_reply_to_status_id" : 866876636997627904, + "created_at" : "2017-05-23 05:15:52 +0000", + "in_reply_to_screen_name" : "feedbin", + "in_reply_to_user_id_str" : "1170518132", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Feedbin", + "screen_name" : "feedbin", + "indices" : [ 0, 8 ], + "id_str" : "1170518132", + "id" : 1170518132 + }, { + "name" : "JSON Feed", + "screen_name" : "jsonfeed", + "indices" : [ 9, 18 ], + "id_str" : "864959060994555907", + "id" : 864959060994555907 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "866824166418206720", + "geo" : { }, + "id_str" : "866828128638742528", + "in_reply_to_user_id" : 1170518132, + "text" : "@feedbin @jsonfeed Nice! It would be cool to be able to select a feed when adding a website with JSON and XML. Seems to automatically pick XML right now.", + "id" : 866828128638742528, + "in_reply_to_status_id" : 866824166418206720, + "created_at" : "2017-05-23 01:28:25 +0000", + "in_reply_to_screen_name" : "feedbin", + "in_reply_to_user_id_str" : "1170518132", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Steve T-S", + "screen_name" : "stroughtonsmith", + "indices" : [ 0, 16 ], + "id_str" : "15267898", + "id" : 15267898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "865089516998209536", + "geo" : { }, + "id_str" : "865214863496196097", + "in_reply_to_user_id" : 15267898, + "text" : "@stroughtonsmith Oh but it is the right place for ctrl. Especially if you navigate text fields with ctrl-[aebfnp]. It'll ruin iPad keyboards for you though.", + "id" : 865214863496196097, + "in_reply_to_status_id" : 865089516998209536, + "created_at" : "2017-05-18 14:37:53 +0000", + "in_reply_to_screen_name" : "stroughtonsmith", + "in_reply_to_user_id_str" : "15267898", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2017_06.js b/public/tweets/data/js/tweets/2017_06.js new file mode 100755 index 0000000..0fb915d --- /dev/null +++ b/public/tweets/data/js/tweets/2017_06.js @@ -0,0 +1,916 @@ +Grailbird.data.tweets_2017_06 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 93, 116 ], + "url" : "https:\/\/t.co\/iW7smUQQy8", + "expanded_url" : "https:\/\/twitter.com\/stroughtonsmith\/status\/877682546645053440", + "display_url" : "twitter.com\/stroughtonsmit\u2026" + } ] + }, + "geo" : { }, + "id_str" : "877715725753790464", + "text" : "Same here. That's unfortunate! Hope this get reverted. It has 4 GB of RAM like the new ones. https:\/\/t.co\/iW7smUQQy8", + "id" : 877715725753790464, + "created_at" : "2017-06-22 02:31:50 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "\u00A1Nathan Long!", + "screen_name" : "sleeplessgeek", + "indices" : [ 3, 17 ], + "id_str" : "234859654", + "id" : 234859654 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "877715066224730113", + "text" : "RT @sleeplessgeek: \"R U a full stack dev?\"\n\"No, because...\"\n<fumbles around for sunglasses, puts them on wrong, readjusts, looks up>\n\uD83D\uDE0E \"I u\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "877528257134034944", + "text" : "\"R U a full stack dev?\"\n\"No, because...\"\n<fumbles around for sunglasses, puts them on wrong, readjusts, looks up>\n\uD83D\uDE0E \"I use tail recursion.\"", + "id" : 877528257134034944, + "created_at" : "2017-06-21 14:06:54 +0000", + "user" : { + "name" : "\u00A1Nathan Long!", + "screen_name" : "sleeplessgeek", + "protected" : false, + "id_str" : "234859654", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/731123280212418560\/upm-uoqp_normal.jpg", + "id" : 234859654, + "verified" : false + } + }, + "id" : 877715066224730113, + "created_at" : "2017-06-22 02:29:13 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "876847525918945281", + "text" : "It\u2019s Martini Day. If you like martinis plan your evening accordingly. \uD83C\uDF78", + "id" : 876847525918945281, + "created_at" : "2017-06-19 17:01:55 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Steve T-S", + "screen_name" : "stroughtonsmith", + "indices" : [ 0, 16 ], + "id_str" : "15267898", + "id" : 15267898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "875872197713293312", + "geo" : { }, + "id_str" : "875938599845351424", + "in_reply_to_user_id" : 15267898, + "text" : "@stroughtonsmith Don't discount the work that goes into the interesting things you say! Bought you a dinner on PayPal.", + "id" : 875938599845351424, + "in_reply_to_status_id" : 875872197713293312, + "created_at" : "2017-06-17 04:50:11 +0000", + "in_reply_to_screen_name" : "stroughtonsmith", + "in_reply_to_user_id_str" : "15267898", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "875882915913023488", + "text" : "iOS 11 removes app switching via a hard swipe from the left edge. I use that all the time and prefer it to double tapping home. Oh well!", + "id" : 875882915913023488, + "created_at" : "2017-06-17 01:08:54 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Richard Minerich", + "screen_name" : "rickasaurus", + "indices" : [ 3, 15 ], + "id_str" : "16377511", + "id" : 16377511 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "875731420693397508", + "text" : "RT @rickasaurus: As CTO my primary responsibility is to stop myself from rewriting all of the legacy systems alone in a manic fury.", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "875155083377430528", + "text" : "As CTO my primary responsibility is to stop myself from rewriting all of the legacy systems alone in a manic fury.", + "id" : 875155083377430528, + "created_at" : "2017-06-15 00:56:46 +0000", + "user" : { + "name" : "Richard Minerich", + "screen_name" : "rickasaurus", + "protected" : false, + "id_str" : "16377511", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/620734509697368065\/UBqZcKR4_normal.jpg", + "id" : 16377511, + "verified" : false + } + }, + "id" : 875731420693397508, + "created_at" : "2017-06-16 15:06:55 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dave Nott", + "screen_name" : "_davenott", + "indices" : [ 0, 10 ], + "id_str" : "3892042187", + "id" : 3892042187 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "875471540812480521", + "geo" : { }, + "id_str" : "875507820585656322", + "in_reply_to_user_id" : 3892042187, + "text" : "@_davenott It's pretty slow at compiling projects with more than say 50-100 Swift files. And processing symbols. If you're patient it's a nice machine.", + "id" : 875507820585656322, + "in_reply_to_status_id" : 875471540812480521, + "created_at" : "2017-06-16 00:18:25 +0000", + "in_reply_to_screen_name" : "_davenott", + "in_reply_to_user_id_str" : "3892042187", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "875457345454657540", + "geo" : { }, + "id_str" : "875458597567700992", + "in_reply_to_user_id" : 4777951, + "text" : "Maybe pragmatism earns more money than silly disputes over who *must* be able configure their editor to display 6 space indents to do work.", + "id" : 875458597567700992, + "in_reply_to_status_id" : 875457345454657540, + "created_at" : "2017-06-15 21:02:49 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "875457345454657540", + "text" : "Spaces > Tabs\n\nSpaces are always displayed correctly by every tool, without configuring magic comments or anything like that. Pragmatic.", + "id" : 875457345454657540, + "created_at" : "2017-06-15 20:57:51 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Hamza Sood", + "screen_name" : "hamzasood", + "indices" : [ 3, 13 ], + "id_str" : "391647694", + "id" : 391647694 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 103, 126 ], + "url" : "https:\/\/t.co\/TQgtATrDXP", + "expanded_url" : "https:\/\/github.com\/hamzasood\/CustomControlCenterModules", + "display_url" : "github.com\/hamzasood\/Cust\u2026" + } ] + }, + "geo" : { }, + "id_str" : "874476867457138689", + "text" : "RT @hamzasood: The new control centre has a (system only) plugin mechanism.\nExample plugins on Github:\nhttps:\/\/t.co\/TQgtATrDXP https:\/\/t.co\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/hamzasood\/status\/874365037913178117\/video\/1", + "indices" : [ 112, 135 ], + "url" : "https:\/\/t.co\/A34j3sTkNl", + "media_url" : "http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/874364617086119937\/pu\/img\/MSVZweA9xrqe2RFD.jpg", + "id_str" : "874364617086119937", + "id" : 874364617086119937, + "media_url_https" : "https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/874364617086119937\/pu\/img\/MSVZweA9xrqe2RFD.jpg", + "sizes" : [ { + "h" : 604, + "resize" : "fit", + "w" : 340 + }, { + "h" : 1280, + "resize" : "fit", + "w" : 720 + }, { + "h" : 0, + "resize" : "fit", + "w" : 0 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1067, + "resize" : "fit", + "w" : 600 + } ], + "display_url" : "pic.twitter.com\/A34j3sTkNl" + } ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 88, 111 ], + "url" : "https:\/\/t.co\/TQgtATrDXP", + "expanded_url" : "https:\/\/github.com\/hamzasood\/CustomControlCenterModules", + "display_url" : "github.com\/hamzasood\/Cust\u2026" + } ] + }, + "geo" : { }, + "id_str" : "874365037913178117", + "text" : "The new control centre has a (system only) plugin mechanism.\nExample plugins on Github:\nhttps:\/\/t.co\/TQgtATrDXP https:\/\/t.co\/A34j3sTkNl", + "id" : 874365037913178117, + "created_at" : "2017-06-12 20:37:24 +0000", + "user" : { + "name" : "Hamza Sood", + "screen_name" : "hamzasood", + "protected" : false, + "id_str" : "391647694", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000472812528\/ddd09912452d20e1a8dd153f195a8185_normal.jpeg", + "id" : 391647694, + "verified" : false + } + }, + "id" : 874476867457138689, + "created_at" : "2017-06-13 04:01:46 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "874344916037451777", + "text" : "Auto-play video ad starts. My initial reaction: \u201CMan, this Aphex Twin track is getting really weird!\u201D", + "id" : 874344916037451777, + "created_at" : "2017-06-12 19:17:27 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 113, 136 ], + "url" : "https:\/\/t.co\/9ltyxmF2m9", + "expanded_url" : "http:\/\/openradar.appspot.com\/radar?id=6172928408289280", + "display_url" : "openradar.appspot.com\/radar?id=61729\u2026" + } ] + }, + "in_reply_to_status_id_str" : "874321085155516416", + "geo" : { }, + "id_str" : "874344274774507520", + "in_reply_to_user_id" : 4777951, + "text" : "Looks like the overlay appears after 1-2 seconds in the video, but we\u2019re cutting 1s videos so it never shows up. https:\/\/t.co\/9ltyxmF2m9", + "id" : 874344274774507520, + "in_reply_to_status_id" : 874321085155516416, + "created_at" : "2017-06-12 19:14:54 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "874319196930269184", + "geo" : { }, + "id_str" : "874321085155516416", + "in_reply_to_user_id" : 4777951, + "text" : "Tried adding the CA tool container layer to a view for debugging (docs say don\u2019t do that) and it doesn\u2019t appear BUT it now works. \uD83D\uDE02 or \uD83D\uDE2D?", + "id" : 874321085155516416, + "in_reply_to_status_id" : 874319196930269184, + "created_at" : "2017-06-12 17:42:45 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "874317692018147329", + "geo" : { }, + "id_str" : "874319196930269184", + "in_reply_to_user_id" : 4777951, + "text" : "Who\u2019s using AVVideoCompositionCoreAnimationTool to overlay layers on video? Does it still work for you on iOS 11?", + "id" : 874319196930269184, + "in_reply_to_status_id" : 874317692018147329, + "created_at" : "2017-06-12 17:35:15 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/874317692018147329\/photo\/1", + "indices" : [ 2, 25 ], + "url" : "https:\/\/t.co\/v0ri8DDJ55", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DCIzTf8UwAAm8YF.jpg", + "id_str" : "874317687748345856", + "id" : 874317687748345856, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DCIzTf8UwAAm8YF.jpg", + "sizes" : [ { + "h" : 199, + "resize" : "fit", + "w" : 680 + }, { + "h" : 352, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 462, + "resize" : "fit", + "w" : 1576 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 462, + "resize" : "fit", + "w" : 1576 + } ], + "display_url" : "pic.twitter.com\/v0ri8DDJ55" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "874317692018147329", + "text" : "\uD83D\uDE2D https:\/\/t.co\/v0ri8DDJ55", + "id" : 874317692018147329, + "created_at" : "2017-06-12 17:29:16 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Reda Lemeden", + "screen_name" : "kaishin", + "indices" : [ 0, 8 ], + "id_str" : "9088822", + "id" : 9088822 + }, { + "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "screen_name" : "zwaldowski", + "indices" : [ 9, 20 ], + "id_str" : "18553922", + "id" : 18553922 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "873852293870997504", + "geo" : { }, + "id_str" : "873949133425356800", + "in_reply_to_user_id" : 9088822, + "text" : "@kaishin @zwaldowski I want consistency between apps on my machine, not with the GitHub app on other systems I don't use. This is nonsense.", + "id" : 873949133425356800, + "in_reply_to_status_id" : 873852293870997504, + "created_at" : "2017-06-11 17:04:45 +0000", + "in_reply_to_screen_name" : "kaishin", + "in_reply_to_user_id_str" : "9088822", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Greg Titus", + "screen_name" : "gregtitus", + "indices" : [ 3, 13 ], + "id_str" : "637933", + "id" : 637933 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "873377442169208832", + "text" : "RT @gregtitus: Too. Many. WWDC. Sessions. \n\nMy brain has melted. It\u2019s in a puddle mumbling about dragging and dropping AR sanitizing Swift\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "873297958040727552", + "text" : "Too. Many. WWDC. Sessions. \n\nMy brain has melted. It\u2019s in a puddle mumbling about dragging and dropping AR sanitizing Swift dyld ML models.", + "id" : 873297958040727552, + "created_at" : "2017-06-09 21:57:12 +0000", + "user" : { + "name" : "Greg Titus", + "screen_name" : "gregtitus", + "protected" : false, + "id_str" : "637933", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3492180587\/5e2c1c2a269204b6de400992f2e4414d_normal.jpeg", + "id" : 637933, + "verified" : false + } + }, + "id" : 873377442169208832, + "created_at" : "2017-06-10 03:13:03 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Arek Holko", + "screen_name" : "arekholko", + "indices" : [ 3, 13 ], + "id_str" : "119078936", + "id" : 119078936 + } ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/arekholko\/status\/873210316758413312\/photo\/1", + "indices" : [ 108, 131 ], + "url" : "https:\/\/t.co\/myDddz550G", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DB5EIlwXcAEUrZH.jpg", + "id_str" : "873210292121071617", + "id" : 873210292121071617, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DB5EIlwXcAEUrZH.jpg", + "sizes" : [ { + "h" : 2880, + "resize" : "fit", + "w" : 5120 + }, { + "h" : 675, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { + "h" : 1152, + "resize" : "fit", + "w" : 2048 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + } ], + "display_url" : "pic.twitter.com\/myDddz550G" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "873369828328787968", + "text" : "RT @arekholko: TIL you can temporarily override User Defaults\u2019 values through \u201CArguments Passed on Launch\u201D. https:\/\/t.co\/myDddz550G", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/arekholko\/status\/873210316758413312\/photo\/1", + "indices" : [ 93, 116 ], + "url" : "https:\/\/t.co\/myDddz550G", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DB5EIlwXcAEUrZH.jpg", + "id_str" : "873210292121071617", + "id" : 873210292121071617, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DB5EIlwXcAEUrZH.jpg", + "sizes" : [ { + "h" : 2880, + "resize" : "fit", + "w" : 5120 + }, { + "h" : 675, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { + "h" : 1152, + "resize" : "fit", + "w" : 2048 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + } ], + "display_url" : "pic.twitter.com\/myDddz550G" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "873210316758413312", + "text" : "TIL you can temporarily override User Defaults\u2019 values through \u201CArguments Passed on Launch\u201D. https:\/\/t.co\/myDddz550G", + "id" : 873210316758413312, + "created_at" : "2017-06-09 16:08:57 +0000", + "user" : { + "name" : "Arek Holko", + "screen_name" : "arekholko", + "protected" : false, + "id_str" : "119078936", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/589392297294364672\/P3YuoC8a_normal.jpg", + "id" : 119078936, + "verified" : false + } + }, + "id" : 873369828328787968, + "created_at" : "2017-06-10 02:42:48 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "John Feminella", + "screen_name" : "jxxf", + "indices" : [ 3, 8 ], + "id_str" : "19463693", + "id" : 19463693 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "871136452897161216", + "text" : "RT @jxxf: If a junior developer accidentally destroys production on their first day, it's *your company's* fault, not theirs. https:\/\/t.co\/\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/jxxf\/status\/871000661869154304\/photo\/1", + "indices" : [ 116, 139 ], + "url" : "https:\/\/t.co\/GCYWwBdRIy", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DBZqIZ6XUAAXkFg.jpg", + "id_str" : "871000270569951232", + "id" : 871000270569951232, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DBZqIZ6XUAAXkFg.jpg", + "sizes" : [ { + "h" : 1200, + "resize" : "fit", + "w" : 911 + }, { + "h" : 680, + "resize" : "fit", + "w" : 516 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1896, + "resize" : "fit", + "w" : 1440 + }, { + "h" : 1896, + "resize" : "fit", + "w" : 1440 + } ], + "display_url" : "pic.twitter.com\/GCYWwBdRIy" + }, { + "expanded_url" : "https:\/\/twitter.com\/jxxf\/status\/871000661869154304\/photo\/1", + "indices" : [ 116, 139 ], + "url" : "https:\/\/t.co\/GCYWwBdRIy", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DBZqSiDXcAAoUoM.jpg", + "id_str" : "871000444553883648", + "id" : 871000444553883648, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DBZqSiDXcAAoUoM.jpg", + "sizes" : [ { + "h" : 1131, + "resize" : "fit", + "w" : 1440 + }, { + "h" : 1131, + "resize" : "fit", + "w" : 1440 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 534, + "resize" : "fit", + "w" : 680 + }, { + "h" : 943, + "resize" : "fit", + "w" : 1200 + } ], + "display_url" : "pic.twitter.com\/GCYWwBdRIy" + }, { + "expanded_url" : "https:\/\/twitter.com\/jxxf\/status\/871000661869154304\/photo\/1", + "indices" : [ 116, 139 ], + "url" : "https:\/\/t.co\/GCYWwBdRIy", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DBZqYoeXkAA1a5s.jpg", + "id_str" : "871000549356965888", + "id" : 871000549356965888, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DBZqYoeXkAA1a5s.jpg", + "sizes" : [ { + "h" : 696, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 394, + "resize" : "fit", + "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 835, + "resize" : "fit", + "w" : 1440 + }, { + "h" : 835, + "resize" : "fit", + "w" : 1440 + } ], + "display_url" : "pic.twitter.com\/GCYWwBdRIy" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "871000661869154304", + "text" : "If a junior developer accidentally destroys production on their first day, it's *your company's* fault, not theirs. https:\/\/t.co\/GCYWwBdRIy", + "id" : 871000661869154304, + "created_at" : "2017-06-03 13:48:34 +0000", + "user" : { + "name" : "John Feminella", + "screen_name" : "jxxf", + "protected" : false, + "id_str" : "19463693", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3348427561\/9d7f08f1e103a16c8debd169301b9944_normal.jpeg", + "id" : 19463693, + "verified" : false + } + }, + "id" : 871136452897161216, + "created_at" : "2017-06-03 22:48:09 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "screen_name" : "macatbook", + "indices" : [ 0, 10 ], + "id_str" : "22406953", + "id" : 22406953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "870554276321415169", + "geo" : { }, + "id_str" : "870648225849516033", + "in_reply_to_user_id" : 22406953, + "text" : "@macatbook Groovy?", + "id" : 870648225849516033, + "in_reply_to_status_id" : 870554276321415169, + "created_at" : "2017-06-02 14:28:07 +0000", + "in_reply_to_screen_name" : "macatbook", + "in_reply_to_user_id_str" : "22406953", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2017_07.js b/public/tweets/data/js/tweets/2017_07.js new file mode 100755 index 0000000..5616694 --- /dev/null +++ b/public/tweets/data/js/tweets/2017_07.js @@ -0,0 +1,606 @@ +Grailbird.data.tweets_2017_07 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Gary Bernhardt", + "screen_name" : "garybernhardt", + "indices" : [ 3, 17 ], + "id_str" : "809685", + "id" : 809685 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "891440389365702656", + "text" : "RT @garybernhardt: CHECK THIS BOX. Use your tab key constantly to move between controls. Learn ^a, ^e, ^f, ^b, alt-BS in text boxes. https:\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003ETwitter Lite\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 114, 137 ], + "url" : "https:\/\/t.co\/lHLuivH89t", + "expanded_url" : "https:\/\/mobile.twitter.com\/searls\/status\/891439037948588033", + "display_url" : "mobile.twitter.com\/searls\/status\/\u2026" + } ] + }, + "in_reply_to_status_id_str" : "891438467447635969", + "geo" : { }, + "id_str" : "891440300731662336", + "in_reply_to_user_id" : 809685, + "text" : "CHECK THIS BOX. Use your tab key constantly to move between controls. Learn ^a, ^e, ^f, ^b, alt-BS in text boxes. https:\/\/t.co\/lHLuivH89t", + "id" : 891440300731662336, + "in_reply_to_status_id" : 891438467447635969, + "created_at" : "2017-07-29 23:28:24 +0000", + "in_reply_to_screen_name" : "garybernhardt", + "in_reply_to_user_id_str" : "809685", + "user" : { + "name" : "Gary Bernhardt", + "screen_name" : "garybernhardt", + "protected" : false, + "id_str" : "809685", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1170938305\/twitter_headshot_normal.png", + "id" : 809685, + "verified" : false + } + }, + "id" : 891440389365702656, + "created_at" : "2017-07-29 23:28:45 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Gary Bernhardt", + "screen_name" : "garybernhardt", + "indices" : [ 0, 14 ], + "id_str" : "809685", + "id" : 809685 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "891437668050944000", + "geo" : { }, + "id_str" : "891440269500989440", + "in_reply_to_user_id" : 809685, + "text" : "@garybernhardt I have a bookmarklet that unbreaks Emacs keyboard shortcuts on Stack Overflow. These must be the most common shortcuts devs use for text.", + "id" : 891440269500989440, + "in_reply_to_status_id" : 891437668050944000, + "created_at" : "2017-07-29 23:28:17 +0000", + "in_reply_to_screen_name" : "garybernhardt", + "in_reply_to_user_id_str" : "809685", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Jim Roepcke", + "screen_name" : "JimRoepcke", + "indices" : [ 0, 11 ], + "id_str" : "894911", + "id" : 894911 + }, { + "name" : "Krzysztof Zab\u0142ocki", + "screen_name" : "merowing_", + "indices" : [ 12, 22 ], + "id_str" : "289246577", + "id" : 289246577 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "889884563094159364", + "in_reply_to_user_id" : 894911, + "text" : "@JimRoepcke @merowing_ Congrats! \uD83D\uDEA2\uD83C\uDF89", + "id" : 889884563094159364, + "created_at" : "2017-07-25 16:26:27 +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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "GetCloak.com", + "screen_name" : "getcloak", + "indices" : [ 0, 9 ], + "id_str" : "1255560680", + "id" : 1255560680 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "889329576257753088", + "geo" : { }, + "id_str" : "889590947167653888", + "in_reply_to_user_id" : 271545671, + "text" : "@getcloak Great! I hope that helps because it's been unusably slow for me for a couple of weeks. Turned it off for now :\/", + "id" : 889590947167653888, + "in_reply_to_status_id" : 889329576257753088, + "created_at" : "2017-07-24 20:59:44 +0000", + "in_reply_to_screen_name" : "encryptme", + "in_reply_to_user_id_str" : "271545671", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "GetCloak.com", + "screen_name" : "getcloak", + "indices" : [ 0, 9 ], + "id_str" : "1255560680", + "id" : 1255560680 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "889236198534918144", + "geo" : { }, + "id_str" : "889293751734026240", + "in_reply_to_user_id" : 271545671, + "text" : "@getcloak Vancouver Island.", + "id" : 889293751734026240, + "in_reply_to_status_id" : 889236198534918144, + "created_at" : "2017-07-24 01:18:47 +0000", + "in_reply_to_screen_name" : "encryptme", + "in_reply_to_user_id_str" : "271545671", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Krzysztof Zab\u0142ocki", + "screen_name" : "merowing_", + "indices" : [ 0, 10 ], + "id_str" : "289246577", + "id" : 289246577 + }, { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 11, 20 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "887391754466480128", + "geo" : { }, + "id_str" : "887392267240996864", + "in_reply_to_user_id" : 4777951, + "text" : "@merowing_ @steipete Also don\u2019t forget that Geekbench doesn\u2019t run in isolation. There can be a lot of variability from run to run if you\u2019re not careful.", + "id" : 887392267240996864, + "in_reply_to_status_id" : 887391754466480128, + "created_at" : "2017-07-18 19:22:58 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Ian McDowell", + "screen_name" : "ian_mcdowell", + "indices" : [ 0, 13 ], + "id_str" : "436117419", + "id" : 436117419 + }, { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 14, 23 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 102, 125 ], + "url" : "https:\/\/t.co\/yiMXvVkTbZ", + "expanded_url" : "https:\/\/browser.geekbench.com\/v4\/cpu\/search?dir=desc&q=iMac18%2C3&sort=multicore_score", + "display_url" : "browser.geekbench.com\/v4\/cpu\/search?\u2026" + } ] + }, + "in_reply_to_status_id_str" : "887372407853293568", + "geo" : { }, + "id_str" : "887391872879951873", + "in_reply_to_user_id" : 436117419, + "text" : "@ian_mcdowell @steipete If you compare to the fastest individual scores and some average it does not. https:\/\/t.co\/yiMXvVkTbZ", + "id" : 887391872879951873, + "in_reply_to_status_id" : 887372407853293568, + "created_at" : "2017-07-18 19:21:24 +0000", + "in_reply_to_screen_name" : "ian_mcdowell", + "in_reply_to_user_id_str" : "436117419", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Krzysztof Zab\u0142ocki", + "screen_name" : "merowing_", + "indices" : [ 0, 10 ], + "id_str" : "289246577", + "id" : 289246577 + }, { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 11, 20 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 138, 161 ], + "url" : "https:\/\/t.co\/yiMXvVkTbZ", + "expanded_url" : "https:\/\/browser.geekbench.com\/v4\/cpu\/search?dir=desc&q=iMac18%2C3&sort=multicore_score", + "display_url" : "browser.geekbench.com\/v4\/cpu\/search?\u2026" + } ] + }, + "in_reply_to_status_id_str" : "887363672095457281", + "geo" : { }, + "id_str" : "887391754466480128", + "in_reply_to_user_id" : 289246577, + "text" : "@merowing_ @steipete No it didn\u2019t. He doesn\u2019t understand that Geekbench\u2019s average scores are kind of bullshit. Look at individual scores. https:\/\/t.co\/yiMXvVkTbZ", + "id" : 887391754466480128, + "in_reply_to_status_id" : 887363672095457281, + "created_at" : "2017-07-18 19:20:55 +0000", + "in_reply_to_screen_name" : "merowing_", + "in_reply_to_user_id_str" : "289246577", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 0, 9 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "887344767440490496", + "geo" : { }, + "id_str" : "887362605311971328", + "in_reply_to_user_id" : 25401953, + "text" : "@steipete It's not even for performance, only to save money. It won't outperform the top end iMac with the same CPU.", + "id" : 887362605311971328, + "in_reply_to_status_id" : 887344767440490496, + "created_at" : "2017-07-18 17:25:06 +0000", + "in_reply_to_screen_name" : "steipete", + "in_reply_to_user_id_str" : "25401953", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter B", + "screen_name" : "peterb", + "indices" : [ 0, 7 ], + "id_str" : "6738452", + "id" : 6738452 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "882279575413297154", + "geo" : { }, + "id_str" : "882338350019092480", + "in_reply_to_user_id" : 6738452, + "text" : "@peterb \u0CA0_\u0CA0", + "id" : 882338350019092480, + "in_reply_to_status_id" : 882279575413297154, + "created_at" : "2017-07-04 20:40:30 +0000", + "in_reply_to_screen_name" : "peterb", + "in_reply_to_user_id_str" : "6738452", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Robot or Not?", + "screen_name" : "robot_or_not", + "indices" : [ 0, 13 ], + "id_str" : "3223656668", + "id" : 3223656668 + }, { + "name" : "John Siracusa", + "screen_name" : "siracusa", + "indices" : [ 14, 23 ], + "id_str" : "636923", + "id" : 636923 + }, { + "name" : "Jason Snell", + "screen_name" : "jsnell", + "indices" : [ 24, 31 ], + "id_str" : "784912", + "id" : 784912 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "882319775535431681", + "geo" : { }, + "id_str" : "882320131543752705", + "in_reply_to_user_id" : 4777951, + "text" : "@robot_or_not @siracusa @jsnell And fwiw I've never eaten a spoon of ketchup by itself.", + "id" : 882320131543752705, + "in_reply_to_status_id" : 882319775535431681, + "created_at" : "2017-07-04 19:28:06 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Robot or Not?", + "screen_name" : "robot_or_not", + "indices" : [ 0, 13 ], + "id_str" : "3223656668", + "id" : 3223656668 + }, { + "name" : "John Siracusa", + "screen_name" : "siracusa", + "indices" : [ 14, 23 ], + "id_str" : "636923", + "id" : 636923 + }, { + "name" : "Jason Snell", + "screen_name" : "jsnell", + "indices" : [ 24, 31 ], + "id_str" : "784912", + "id" : 784912 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "882319775535431681", + "in_reply_to_user_id" : 3223656668, + "text" : "@robot_or_not @siracusa @jsnell I only need one spoon of peanut butter at a time to be satisfied when I eat it on its own. And it's great. \uD83D\uDE0B", + "id" : 882319775535431681, + "created_at" : "2017-07-04 19:26:41 +0000", + "in_reply_to_screen_name" : "robot_or_not", + "in_reply_to_user_id_str" : "3223656668", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Victoria Police", + "screen_name" : "vicpdcanada", + "indices" : [ 0, 12 ], + "id_str" : "80139117", + "id" : 80139117 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "881325607967113216", + "geo" : { }, + "id_str" : "881365922182819840", + "in_reply_to_user_id" : 80139117, + "text" : "@vicpdcanada You should be ashamed of yourselves. \"You made me do this!\" is what abusive people say to the abused.", + "id" : 881365922182819840, + "in_reply_to_status_id" : 881325607967113216, + "created_at" : "2017-07-02 04:16:25 +0000", + "in_reply_to_screen_name" : "vicpdcanada", + "in_reply_to_user_id_str" : "80139117", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Vincent Lombardi", + "screen_name" : "padre_vincent", + "indices" : [ 0, 14 ], + "id_str" : "395092966", + "id" : 395092966 + }, { + "name" : "Bobson Dugnutt \u274C", + "screen_name" : "BackupErr", + "indices" : [ 15, 25 ], + "id_str" : "867916317780619264", + "id" : 867916317780619264 + }, { + "name" : "Victoria Police", + "screen_name" : "vicpdcanada", + "indices" : [ 26, 38 ], + "id_str" : "80139117", + "id" : 80139117 + }, { + "name" : "BC Transit", + "screen_name" : "BCTransit", + "indices" : [ 39, 49 ], + "id_str" : "67042447", + "id" : 67042447 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "881337043506257920", + "geo" : { }, + "id_str" : "881365688828518400", + "in_reply_to_user_id" : 395092966, + "text" : "@padre_vincent @BackupErr @vicpdcanada @BCTransit What if you live downtown or James Bay and want to buy a bottle elsewhere? It's absurd you can't carry alcohol in a bag. No excuse.", + "id" : 881365688828518400, + "in_reply_to_status_id" : 881337043506257920, + "created_at" : "2017-07-02 04:15:29 +0000", + "in_reply_to_screen_name" : "padre_vincent", + "in_reply_to_user_id_str" : "395092966", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Victoria Police", + "screen_name" : "vicpdcanada", + "indices" : [ 0, 12 ], + "id_str" : "80139117", + "id" : 80139117 + }, { + "name" : "BC Transit", + "screen_name" : "BCTransit", + "indices" : [ 13, 23 ], + "id_str" : "67042447", + "id" : 67042447 + } ], + "media" : [ ], + "hashtags" : [ { + "text" : "yyj", + "indices" : [ 160, 164 ] + } ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "881317725687042048", + "geo" : { }, + "id_str" : "881365266868862976", + "in_reply_to_user_id" : 80139117, + "text" : "@vicpdcanada @BCTransit Because prohibition totally works! \uD83D\uDE44 This is a ridiculous policy and especially sad on a day where we celebrate our fine, free country. #yyj", + "id" : 881365266868862976, + "in_reply_to_status_id" : 881317725687042048, + "created_at" : "2017-07-02 04:13:49 +0000", + "in_reply_to_screen_name" : "vicpdcanada", + "in_reply_to_user_id_str" : "80139117", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2017_08.js b/public/tweets/data/js/tweets/2017_08.js new file mode 100755 index 0000000..556cbfc --- /dev/null +++ b/public/tweets/data/js/tweets/2017_08.js @@ -0,0 +1,619 @@ +Grailbird.data.tweets_2017_08 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Nick Lockwood", + "screen_name" : "nicklockwood", + "indices" : [ 0, 13 ], + "id_str" : "22920215", + "id" : 22920215 + }, { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 14, 23 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "903181364136222720", + "geo" : { }, + "id_str" : "903262104488099842", + "in_reply_to_user_id" : 22920215, + "text" : "@nicklockwood @steipete And it\u2019s not just resource usage or bugs. Basic things like drag and drop don\u2019t work. Fundamentals. Maybe that\u2019s \u201Cadvanced\u201D to some? \uD83E\uDD37\uD83C\uDFFB\u200D\u2642\uFE0F", + "id" : 903262104488099842, + "in_reply_to_status_id" : 903181364136222720, + "created_at" : "2017-08-31 14:24:02 +0000", + "in_reply_to_screen_name" : "nicklockwood", + "in_reply_to_user_id_str" : "22920215", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "\u24BFohannes \u24BBahrenkrug", + "screen_name" : "jfahrenkrug", + "indices" : [ 0, 12 ], + "id_str" : "11559032", + "id" : 11559032 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "903021827185795072", + "geo" : { }, + "id_str" : "903099687128915968", + "in_reply_to_user_id" : 11559032, + "text" : "@jfahrenkrug It\u2019s not great but I don\u2019t mind it. Sometimes I like it a little bit. I can hit Esc without looking which is all I cared about.", + "id" : 903099687128915968, + "in_reply_to_status_id" : 903021827185795072, + "created_at" : "2017-08-31 03:38:38 +0000", + "in_reply_to_screen_name" : "jfahrenkrug", + "in_reply_to_user_id_str" : "11559032", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Krzysztof Zab\u0142ocki", + "screen_name" : "merowing_", + "indices" : [ 0, 10 ], + "id_str" : "289246577", + "id" : 289246577 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "900650640770301952", + "geo" : { }, + "id_str" : "900729122984415233", + "in_reply_to_user_id" : 289246577, + "text" : "@merowing_ Yes (weak). I set the coordinator as an associated object on the vc. If you push the root vc on a nav controller it\u2019s just easier this way.", + "id" : 900729122984415233, + "in_reply_to_status_id" : 900650640770301952, + "created_at" : "2017-08-24 14:38:52 +0000", + "in_reply_to_screen_name" : "merowing_", + "in_reply_to_user_id_str" : "289246577", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "TJ Holowaychuk", + "screen_name" : "tjholowaychuk", + "indices" : [ 0, 14 ], + "id_str" : "29255412", + "id" : 29255412 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "899452124009857024", + "geo" : { }, + "id_str" : "899455049952370688", + "in_reply_to_user_id" : 29255412, + "text" : "@tjholowaychuk No kidding. I\u2019m gonna have to kick the tires on this stuff sooner rather than later. Will definitely keep up in mind when I do.", + "id" : 899455049952370688, + "in_reply_to_status_id" : 899452124009857024, + "created_at" : "2017-08-21 02:16:09 +0000", + "in_reply_to_screen_name" : "tjholowaychuk", + "in_reply_to_user_id_str" : "29255412", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "TJ Holowaychuk", + "screen_name" : "tjholowaychuk", + "indices" : [ 0, 14 ], + "id_str" : "29255412", + "id" : 29255412 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "899451609394159617", + "geo" : { }, + "id_str" : "899451858934214657", + "in_reply_to_user_id" : 4777951, + "text" : "@tjholowaychuk A VM would have been what, at least $10\/mo and ongoing to boot.", + "id" : 899451858934214657, + "in_reply_to_status_id" : 899451609394159617, + "created_at" : "2017-08-21 02:03:28 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "TJ Holowaychuk", + "screen_name" : "tjholowaychuk", + "indices" : [ 0, 14 ], + "id_str" : "29255412", + "id" : 29255412 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "899451039513849857", + "geo" : { }, + "id_str" : "899451609394159617", + "in_reply_to_user_id" : 29255412, + "text" : "@tjholowaychuk Damn, not bad for under 50 cents.", + "id" : 899451609394159617, + "in_reply_to_status_id" : 899451039513849857, + "created_at" : "2017-08-21 02:02:29 +0000", + "in_reply_to_screen_name" : "tjholowaychuk", + "in_reply_to_user_id_str" : "29255412", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "TJ Holowaychuk", + "screen_name" : "tjholowaychuk", + "indices" : [ 0, 14 ], + "id_str" : "29255412", + "id" : 29255412 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "899413075509485572", + "geo" : { }, + "id_str" : "899447930679066624", + "in_reply_to_user_id" : 29255412, + "text" : "@tjholowaychuk That\u2019s awesome. How many polls and votes so far?", + "id" : 899447930679066624, + "in_reply_to_status_id" : 899413075509485572, + "created_at" : "2017-08-21 01:47:52 +0000", + "in_reply_to_screen_name" : "tjholowaychuk", + "in_reply_to_user_id_str" : "29255412", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Gary Bernhardt", + "screen_name" : "garybernhardt", + "indices" : [ 0, 14 ], + "id_str" : "809685", + "id" : 809685 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "899091570170908672", + "geo" : { }, + "id_str" : "899102560354697219", + "in_reply_to_user_id" : 809685, + "text" : "@garybernhardt It\u2019s a bit cramped for me but I\u2019m doing iOS dev and Xcode is screen-hungry. If you work in one window like your lessons I bet it\u2019s alright.", + "id" : 899102560354697219, + "in_reply_to_status_id" : 899091570170908672, + "created_at" : "2017-08-20 02:55:29 +0000", + "in_reply_to_screen_name" : "garybernhardt", + "in_reply_to_user_id_str" : "809685", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Slightly Spooky Nate", + "screen_name" : "thenatekirby", + "indices" : [ 3, 16 ], + "id_str" : "1628814223", + "id" : 1628814223 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "897927398410334208", + "text" : "RT @thenatekirby: Most people will never know how much work I\u2019ve put into making a view scroll well today. But I will.", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "897912113578082304", + "text" : "Most people will never know how much work I\u2019ve put into making a view scroll well today. But I will.", + "id" : 897912113578082304, + "created_at" : "2017-08-16 20:05:04 +0000", + "user" : { + "name" : "Slightly Spooky Nate", + "screen_name" : "thenatekirby", + "protected" : false, + "id_str" : "1628814223", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/803325149780971520\/k29d56yO_normal.jpg", + "id" : 1628814223, + "verified" : false + } + }, + "id" : 897927398410334208, + "created_at" : "2017-08-16 21:05:49 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Cesar Kuriyama", + "screen_name" : "CesarKuriyama", + "indices" : [ 0, 14 ], + "id_str" : "35067687", + "id" : 35067687 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "896447629827112960", + "geo" : { }, + "id_str" : "896449872294838273", + "in_reply_to_user_id" : 35067687, + "text" : "@CesarKuriyama \uD83D\uDE04 It takes me a few seconds, and sometimes I lose it and have to refocus.", + "id" : 896449872294838273, + "in_reply_to_status_id" : 896447629827112960, + "created_at" : "2017-08-12 19:14:39 +0000", + "in_reply_to_screen_name" : "CesarKuriyama", + "in_reply_to_user_id_str" : "35067687", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Cesar Kuriyama", + "screen_name" : "CesarKuriyama", + "indices" : [ 0, 14 ], + "id_str" : "35067687", + "id" : 35067687 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 62, 85 ], + "url" : "https:\/\/t.co\/m3A4LUw626", + "expanded_url" : "https:\/\/www.reddit.com\/r\/woahdude\/comments\/6sk87c\/can_you_see_the_circles\/?st=J69O1D68&sh=0bc29978", + "display_url" : "reddit.com\/r\/woahdude\/com\u2026" + } ] + }, + "in_reply_to_status_id_str" : "896445576165941248", + "geo" : { }, + "id_str" : "896446410278567936", + "in_reply_to_user_id" : 35067687, + "text" : "@CesarKuriyama Oops! Pasting bug in this app on the iOS beta. https:\/\/t.co\/m3A4LUw626", + "id" : 896446410278567936, + "in_reply_to_status_id" : 896445576165941248, + "created_at" : "2017-08-12 19:00:54 +0000", + "in_reply_to_screen_name" : "CesarKuriyama", + "in_reply_to_user_id_str" : "35067687", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Cesar Kuriyama", + "screen_name" : "CesarKuriyama", + "indices" : [ 0, 14 ], + "id_str" : "35067687", + "id" : 35067687 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 39, 62 ], + "url" : "https:\/\/t.co\/Fx3MAyDcIp", + "expanded_url" : "http:\/\/reddit.com\/r\/woahdude\/comments\/6sk87c\/can_you_see_the_circles\/http:\/\/reddit.com\/r\/woahdude\/comments\/6sk87c\/can_you_see_the_circles\/", + "display_url" : "reddit.com\/r\/woahdude\/com\u2026" + } ] + }, + "in_reply_to_status_id_str" : "895365566248235008", + "geo" : { }, + "id_str" : "895459641592659968", + "in_reply_to_user_id" : 35067687, + "text" : "@CesarKuriyama More along these lines: https:\/\/t.co\/Fx3MAyDcIp", + "id" : 895459641592659968, + "in_reply_to_status_id" : 895365566248235008, + "created_at" : "2017-08-10 01:39:50 +0000", + "in_reply_to_screen_name" : "CesarKuriyama", + "in_reply_to_user_id_str" : "35067687", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Brandon Chester", + "screen_name" : "nexusCFX", + "indices" : [ 0, 9 ], + "id_str" : "217077000", + "id" : 217077000 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "894938225671680002", + "geo" : { }, + "id_str" : "894941388491571200", + "in_reply_to_user_id" : 217077000, + "text" : "@nexusCFX Gotcha. Yeah if I want a bigger screen I still grab a tablet or computer.\n\nI think it\u2019s nice for people whose only computer is their phone.", + "id" : 894941388491571200, + "in_reply_to_status_id" : 894938225671680002, + "created_at" : "2017-08-08 15:20:28 +0000", + "in_reply_to_screen_name" : "nexusCFX", + "in_reply_to_user_id_str" : "217077000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Brandon Chester", + "screen_name" : "nexusCFX", + "indices" : [ 0, 9 ], + "id_str" : "217077000", + "id" : 217077000 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "894798240683511810", + "geo" : { }, + "id_str" : "894925829087440896", + "in_reply_to_user_id" : 217077000, + "text" : "@nexusCFX The screen is a lot sharper. I can\u2019t tell it\u2019s scaled and it looks really good to me.\n\nI do prefer 4.7\u201D but 5.5\u201D isn\u2019t that unwieldy.", + "id" : 894925829087440896, + "in_reply_to_status_id" : 894798240683511810, + "created_at" : "2017-08-08 14:18:39 +0000", + "in_reply_to_screen_name" : "nexusCFX", + "in_reply_to_user_id_str" : "217077000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Reginald Braithwaite", + "screen_name" : "raganwald", + "indices" : [ 3, 13 ], + "id_str" : "18137723", + "id" : 18137723 + } ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/raganwald\/status\/894328852398428161\/photo\/1", + "indices" : [ 59, 82 ], + "url" : "https:\/\/t.co\/Nm9jmw0GSL", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DGlLV_3WsAABjNt.jpg", + "id_str" : "894328842302697472", + "id" : 894328842302697472, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DGlLV_3WsAABjNt.jpg", + "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + } ], + "display_url" : "pic.twitter.com\/Nm9jmw0GSL" + } ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 35, 58 ], + "url" : "https:\/\/t.co\/fbXwdCtRZh", + "expanded_url" : "http:\/\/braythwayt.com\/posterous\/2012\/03\/29\/a-womans-story.html", + "display_url" : "braythwayt.com\/posterous\/2012\u2026" + } ] + }, + "geo" : { }, + "id_str" : "894335902348070912", + "text" : "RT @raganwald: \u201CA Woman\u2019s Story:\u201D\n\nhttps:\/\/t.co\/fbXwdCtRZh https:\/\/t.co\/Nm9jmw0GSL", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/raganwald\/status\/894328852398428161\/photo\/1", + "indices" : [ 44, 67 ], + "url" : "https:\/\/t.co\/Nm9jmw0GSL", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DGlLV_3WsAABjNt.jpg", + "id_str" : "894328842302697472", + "id" : 894328842302697472, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DGlLV_3WsAABjNt.jpg", + "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + } ], + "display_url" : "pic.twitter.com\/Nm9jmw0GSL" + } ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 20, 43 ], + "url" : "https:\/\/t.co\/fbXwdCtRZh", + "expanded_url" : "http:\/\/braythwayt.com\/posterous\/2012\/03\/29\/a-womans-story.html", + "display_url" : "braythwayt.com\/posterous\/2012\u2026" + } ] + }, + "geo" : { }, + "id_str" : "894328852398428161", + "text" : "\u201CA Woman\u2019s Story:\u201D\n\nhttps:\/\/t.co\/fbXwdCtRZh https:\/\/t.co\/Nm9jmw0GSL", + "id" : 894328852398428161, + "created_at" : "2017-08-06 22:46:28 +0000", + "user" : { + "name" : "Reginald Braithwaite", + "screen_name" : "raganwald", + "protected" : false, + "id_str" : "18137723", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "id" : 18137723, + "verified" : false + } + }, + "id" : 894335902348070912, + "created_at" : "2017-08-06 23:14:29 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2017_09.js b/public/tweets/data/js/tweets/2017_09.js new file mode 100755 index 0000000..07e8013 --- /dev/null +++ b/public/tweets/data/js/tweets/2017_09.js @@ -0,0 +1,296 @@ +Grailbird.data.tweets_2017_09 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Frank A. Krueger", + "screen_name" : "praeclarum", + "indices" : [ 0, 11 ], + "id_str" : "15052455", + "id" : 15052455 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "913432015910748161", + "geo" : { }, + "id_str" : "913433139770400768", + "in_reply_to_user_id" : 15052455, + "text" : "@praeclarum There\u2019s a reply button in the toolbar that eliminates one step. It\u2019s kind of amazing that there are 3 entry points to reply here.", + "id" : 913433139770400768, + "in_reply_to_status_id" : 913432015910748161, + "created_at" : "2017-09-28 16:00:05 +0000", + "in_reply_to_screen_name" : "praeclarum", + "in_reply_to_user_id_str" : "15052455", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Troy Hunt", + "screen_name" : "troyhunt", + "indices" : [ 0, 9 ], + "id_str" : "14414286", + "id" : 14414286 + }, { + "name" : "Guilherme Rambo", + "screen_name" : "_inside", + "indices" : [ 10, 18 ], + "id_str" : "8307912", + "id" : 8307912 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "912931212213108736", + "geo" : { }, + "id_str" : "913117910389764096", + "in_reply_to_user_id" : 14414286, + "text" : "@troyhunt @_inside Dropped out of CS because I had little interest and poor grades in non-CS courses. Self-taught practical sysadmin and dev skills instead.", + "id" : 913117910389764096, + "in_reply_to_status_id" : 912931212213108736, + "created_at" : "2017-09-27 19:07:29 +0000", + "in_reply_to_screen_name" : "troyhunt", + "in_reply_to_user_id_str" : "14414286", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Evadne W.", + "screen_name" : "evadne", + "indices" : [ 0, 7 ], + "id_str" : "15614100", + "id" : 15614100 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "911368004964937728", + "geo" : { }, + "id_str" : "911381666521739264", + "in_reply_to_user_id" : 15614100, + "text" : "@evadne Only for future versions I think. Anyone can maintain an MIT fork once they\u2019ve released a single version under MIT.", + "id" : 911381666521739264, + "in_reply_to_status_id" : 911368004964937728, + "created_at" : "2017-09-23 00:08:16 +0000", + "in_reply_to_screen_name" : "evadne", + "in_reply_to_user_id_str" : "15614100", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Javi", + "screen_name" : "Javi", + "indices" : [ 0, 5 ], + "id_str" : "7213362", + "id" : 7213362 + }, { + "name" : "Nacho Soto", + "screen_name" : "NachoSoto", + "indices" : [ 6, 16 ], + "id_str" : "43915380", + "id" : 43915380 + }, { + "name" : "Eloy \u201CDur\u00C3\u00A1n\u201D Dur\u00E1n", + "screen_name" : "alloy", + "indices" : [ 17, 23 ], + "id_str" : "12459132", + "id" : 12459132 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "910889163385270272", + "geo" : { }, + "id_str" : "910891588766670848", + "in_reply_to_user_id" : 7213362, + "text" : "@Javi @NachoSoto @alloy Very true. Apple neither. Big companies playing politics and we all lose.", + "id" : 910891588766670848, + "in_reply_to_status_id" : 910889163385270272, + "created_at" : "2017-09-21 15:40:52 +0000", + "in_reply_to_screen_name" : "Javi", + "in_reply_to_user_id_str" : "7213362", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Eloy \u201CDur\u00C3\u00A1n\u201D Dur\u00E1n", + "screen_name" : "alloy", + "indices" : [ 0, 6 ], + "id_str" : "12459132", + "id" : 12459132 + }, { + "name" : "Nacho Soto", + "screen_name" : "NachoSoto", + "indices" : [ 7, 17 ], + "id_str" : "43915380", + "id" : 43915380 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "910880886232510464", + "geo" : { }, + "id_str" : "910881849689481216", + "in_reply_to_user_id" : 4777951, + "text" : "@alloy @NachoSoto as a result 4k YouTube is limited to Chrome and who knows what else. There\u2019s little hardware decoding support for VP9 out there.", + "id" : 910881849689481216, + "in_reply_to_status_id" : 910880886232510464, + "created_at" : "2017-09-21 15:02:10 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Eloy \u201CDur\u00C3\u00A1n\u201D Dur\u00E1n", + "screen_name" : "alloy", + "indices" : [ 0, 6 ], + "id_str" : "12459132", + "id" : 12459132 + }, { + "name" : "Nacho Soto", + "screen_name" : "NachoSoto", + "indices" : [ 7, 17 ], + "id_str" : "43915380", + "id" : 43915380 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "910875232130433024", + "geo" : { }, + "id_str" : "910880886232510464", + "in_reply_to_user_id" : 12459132, + "text" : "@alloy @NachoSoto Google is trying to strong-arm their VP9 codec into relevance by limiting 4k on YouTube to VP9. Everyone else is on the h265 bandwagon.", + "id" : 910880886232510464, + "in_reply_to_status_id" : 910875232130433024, + "created_at" : "2017-09-21 14:58:21 +0000", + "in_reply_to_screen_name" : "alloy", + "in_reply_to_user_id_str" : "12459132", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 136, 159 ], + "url" : "https:\/\/t.co\/PU6It6Ts5E", + "expanded_url" : "https:\/\/twitter.com\/stroughtonsmith\/status\/909811257917755393", + "display_url" : "twitter.com\/stroughtonsmit\u2026" + } ] + }, + "geo" : { }, + "id_str" : "909817833395126272", + "text" : "The CAD-USD exchange rate has made prices of US goods crazy in Canada for the least few years. Canadians earning CAD get the short end. https:\/\/t.co\/PU6It6Ts5E", + "id" : 909817833395126272, + "created_at" : "2017-09-18 16:34:09 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Norris", + "screen_name" : "justnorris", + "indices" : [ 0, 11 ], + "id_str" : "20395932", + "id" : 20395932 + }, { + "name" : "TJ Holowaychuk", + "screen_name" : "tjholowaychuk", + "indices" : [ 12, 26 ], + "id_str" : "29255412", + "id" : 29255412 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "909804660906758144", + "geo" : { }, + "id_str" : "909816451413848064", + "in_reply_to_user_id" : 20395932, + "text" : "@justnorris @tjholowaychuk The ex- CSO or CIO of Equifax has an arts degree and some people were laughing about it. Then many techies w\/o CS backgrounds chimed in.", + "id" : 909816451413848064, + "in_reply_to_status_id" : 909804660906758144, + "created_at" : "2017-09-18 16:28:40 +0000", + "in_reply_to_screen_name" : "justnorris", + "in_reply_to_user_id_str" : "20395932", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2017_10.js b/public/tweets/data/js/tweets/2017_10.js new file mode 100755 index 0000000..3c90dc6 --- /dev/null +++ b/public/tweets/data/js/tweets/2017_10.js @@ -0,0 +1,150 @@ +Grailbird.data.tweets_2017_10 = +[ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter B", + "screen_name" : "peterb", + "indices" : [ 0, 7 ], + "id_str" : "6738452", + "id" : 6738452 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "918505627248406528", + "geo" : { }, + "id_str" : "918538608616685569", + "in_reply_to_user_id" : 6738452, + "text" : "@peterb What makes it the best for you?", + "id" : 918538608616685569, + "in_reply_to_status_id" : 918505627248406528, + "created_at" : "2017-10-12 18:07:24 +0000", + "in_reply_to_screen_name" : "peterb", + "in_reply_to_user_id_str" : "6738452", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Sol", + "screen_name" : "Badgerops", + "indices" : [ 0, 10 ], + "id_str" : "74837444", + "id" : 74837444 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 127, 150 ], + "url" : "https:\/\/t.co\/NF97YAMu8o", + "expanded_url" : "https:\/\/www.reddit.com\/r\/iphone\/comments\/4p9gwk\/i_am_was_just_on_my_phone_and_my_carrier_switched\/d6106gt\/", + "display_url" : "reddit.com\/r\/iphone\/comme\u2026" + } ] + }, + "in_reply_to_status_id_str" : "915622086151950336", + "geo" : { }, + "id_str" : "915658327517839360", + "in_reply_to_user_id" : 74837444, + "text" : "@Badgerops Apparently it\u2019s an issue interpreting some character encoding of AT&T on iOS. I hit the same thing this summer. https:\/\/t.co\/NF97YAMu8o", + "id" : 915658327517839360, + "in_reply_to_status_id" : 915622086151950336, + "created_at" : "2017-10-04 19:22:12 +0000", + "in_reply_to_screen_name" : "Badgerops", + "in_reply_to_user_id_str" : "74837444", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Matthias", + "screen_name" : "arrizer", + "indices" : [ 0, 8 ], + "id_str" : "10752072", + "id" : 10752072 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "915184475440664576", + "geo" : { }, + "id_str" : "915228190800363522", + "in_reply_to_user_id" : 10752072, + "text" : "@arrizer There are better 3rd party displays than these LGs. Far better.", + "id" : 915228190800363522, + "in_reply_to_status_id" : 915184475440664576, + "created_at" : "2017-10-03 14:52:59 +0000", + "in_reply_to_screen_name" : "arrizer", + "in_reply_to_user_id_str" : "10752072", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Failed Tankie", + "screen_name" : "memefiend2", + "indices" : [ 0, 11 ], + "id_str" : "4846128982", + "id" : 4846128982 + }, { + "name" : "CBC Politics", + "screen_name" : "CBCPolitics", + "indices" : [ 12, 24 ], + "id_str" : "74186967", + "id" : 74186967 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 54, 77 ], + "url" : "https:\/\/t.co\/LY1UCvCvtj", + "expanded_url" : "https:\/\/globalnews.ca\/news\/3732571\/jagmeet-singh-racist-heckler-statement\/", + "display_url" : "globalnews.ca\/news\/3732571\/j\u2026" + } ] + }, + "in_reply_to_status_id_str" : "914586691838525440", + "geo" : { }, + "id_str" : "914612876094038017", + "in_reply_to_user_id" : 4846128982, + "text" : "@memefiend2 @CBCPolitics Because of things like this: https:\/\/t.co\/LY1UCvCvtj", + "id" : 914612876094038017, + "in_reply_to_status_id" : 914586691838525440, + "created_at" : "2017-10-01 22:07:57 +0000", + "in_reply_to_screen_name" : "memefiend2", + "in_reply_to_user_id_str" : "4846128982", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/tweets.csv b/public/tweets/tweets.csv index 910a8b1..99d72db 100755 --- a/public/tweets/tweets.csv +++ b/public/tweets/tweets.csv @@ -1,4 +1,84 @@ "tweet_id","in_reply_to_status_id","in_reply_to_user_id","timestamp","source","text","retweeted_status_id","retweeted_status_user_id","retweeted_status_timestamp","expanded_urls" +"918538608616685569","918505627248406528","6738452","2017-10-12 18:07:24 +0000","Tweetbot for iΟS","@peterb What makes it the best for you?","","","","" +"915658327517839360","915622086151950336","74837444","2017-10-04 19:22:12 +0000","Tweetbot for iΟS","@Badgerops Apparently it’s an issue interpreting some character encoding of AT&T on iOS. I hit the same thing this summer. https://t.co/NF97YAMu8o","","","","https://www.reddit.com/r/iphone/comments/4p9gwk/i_am_was_just_on_my_phone_and_my_carrier_switched/d6106gt/" +"915228190800363522","915184475440664576","10752072","2017-10-03 14:52:59 +0000","Tweetbot for iΟS","@arrizer There are better 3rd party displays than these LGs. Far better.","","","","" +"914612876094038017","914586691838525440","4846128982","2017-10-01 22:07:57 +0000","Tweetbot for iΟS","@memefiend2 @CBCPolitics Because of things like this: https://t.co/LY1UCvCvtj","","","","https://globalnews.ca/news/3732571/jagmeet-singh-racist-heckler-statement/" +"913433139770400768","913432015910748161","15052455","2017-09-28 16:00:05 +0000","Tweetbot for iΟS","@praeclarum There’s a reply button in the toolbar that eliminates one step. It’s kind of amazing that there are 3 entry points to reply here.","","","","" +"913117910389764096","912931212213108736","14414286","2017-09-27 19:07:29 +0000","Tweetbot for iΟS","@troyhunt @_inside Dropped out of CS because I had little interest and poor grades in non-CS courses. Self-taught practical sysadmin and dev skills instead.","","","","" +"911381666521739264","911368004964937728","15614100","2017-09-23 00:08:16 +0000","Tweetbot for iΟS","@evadne Only for future versions I think. Anyone can maintain an MIT fork once they’ve released a single version under MIT.","","","","" +"910891588766670848","910889163385270272","7213362","2017-09-21 15:40:52 +0000","Tweetbot for iΟS","@Javi @NachoSoto @alloy Very true. Apple neither. Big companies playing politics and we all lose.","","","","" +"910881849689481216","910880886232510464","4777951","2017-09-21 15:02:10 +0000","Tweetbot for iΟS","@alloy @NachoSoto as a result 4k YouTube is limited to Chrome and who knows what else. There’s little hardware decoding support for VP9 out there.","","","","" +"910880886232510464","910875232130433024","12459132","2017-09-21 14:58:21 +0000","Tweetbot for iΟS","@alloy @NachoSoto Google is trying to strong-arm their VP9 codec into relevance by limiting 4k on YouTube to VP9. Everyone else is on the h265 bandwagon.","","","","" +"909817833395126272","","","2017-09-18 16:34:09 +0000","Tweetbot for iΟS","The CAD-USD exchange rate has made prices of US goods crazy in Canada for the least few years. Canadians earning CAD get the short end. https://t.co/PU6It6Ts5E","","","","https://twitter.com/stroughtonsmith/status/909811257917755393" +"909816451413848064","909804660906758144","20395932","2017-09-18 16:28:40 +0000","Tweetbot for iΟS","@justnorris @tjholowaychuk The ex- CSO or CIO of Equifax has an arts degree and some people were laughing about it. Then many techies w/o CS backgrounds chimed in.","","","","" +"903262104488099842","903181364136222720","22920215","2017-08-31 14:24:02 +0000","Tweetbot for iΟS","@nicklockwood @steipete And it’s not just resource usage or bugs. Basic things like drag and drop don’t work. Fundamentals. Maybe that’s “advanced” to some? 🤷🏻‍♂️","","","","" +"903099687128915968","903021827185795072","11559032","2017-08-31 03:38:38 +0000","Tweetbot for iΟS","@jfahrenkrug It’s not great but I don’t mind it. Sometimes I like it a little bit. I can hit Esc without looking which is all I cared about.","","","","" +"900729122984415233","900650640770301952","289246577","2017-08-24 14:38:52 +0000","Tweetbot for iΟS","@merowing_ Yes (weak). I set the coordinator as an associated object on the vc. If you push the root vc on a nav controller it’s just easier this way.","","","","" +"899455049952370688","899452124009857024","29255412","2017-08-21 02:16:09 +0000","Tweetbot for iΟS","@tjholowaychuk No kidding. I’m gonna have to kick the tires on this stuff sooner rather than later. Will definitely keep up in mind when I do.","","","","" +"899451858934214657","899451609394159617","4777951","2017-08-21 02:03:28 +0000","Tweetbot for iΟS","@tjholowaychuk A VM would have been what, at least $10/mo and ongoing to boot.","","","","" +"899451609394159617","899451039513849857","29255412","2017-08-21 02:02:29 +0000","Tweetbot for iΟS","@tjholowaychuk Damn, not bad for under 50 cents.","","","","" +"899447930679066624","899413075509485572","29255412","2017-08-21 01:47:52 +0000","Tweetbot for iΟS","@tjholowaychuk That’s awesome. How many polls and votes so far?","","","","" +"899102560354697219","899091570170908672","809685","2017-08-20 02:55:29 +0000","Tweetbot for iΟS","@garybernhardt It’s a bit cramped for me but I’m doing iOS dev and Xcode is screen-hungry. If you work in one window like your lessons I bet it’s alright.","","","","" +"897927398410334208","","","2017-08-16 21:05:49 +0000","Tweetbot for iΟS","RT @thenatekirby: Most people will never know how much work I’ve put into making a view scroll well today. But I will.","897912113578082304","1628814223","2017-08-16 20:05:04 +0000","" +"896449872294838273","896447629827112960","35067687","2017-08-12 19:14:39 +0000","Tweetbot for iΟS","@CesarKuriyama 😄 It takes me a few seconds, and sometimes I lose it and have to refocus.","","","","" +"896446410278567936","896445576165941248","35067687","2017-08-12 19:00:54 +0000","Tweetbot for iΟS","@CesarKuriyama Oops! Pasting bug in this app on the iOS beta. https://t.co/m3A4LUw626","","","","https://www.reddit.com/r/woahdude/comments/6sk87c/can_you_see_the_circles/?st=J69O1D68&sh=0bc29978" +"895459641592659968","895365566248235008","35067687","2017-08-10 01:39:50 +0000","Tweetbot for iΟS","@CesarKuriyama More along these lines: https://t.co/Fx3MAyDcIp","","","","http://reddit.com/r/woahdude/comments/6sk87c/can_you_see_the_circles/http://reddit.com/r/woahdude/comments/6sk87c/can_you_see_the_circles/" +"894941388491571200","894938225671680002","217077000","2017-08-08 15:20:28 +0000","Tweetbot for iΟS","@nexusCFX Gotcha. Yeah if I want a bigger screen I still grab a tablet or computer. + +I think it’s nice for people whose only computer is their phone.","","","","" +"894925829087440896","894798240683511810","217077000","2017-08-08 14:18:39 +0000","Tweetbot for iΟS","@nexusCFX The screen is a lot sharper. I can’t tell it’s scaled and it looks really good to me. + +I do prefer 4.7” but 5.5” isn’t that unwieldy.","","","","" +"894335902348070912","","","2017-08-06 23:14:29 +0000","Tweetbot for iΟS","RT @raganwald: “A Woman’s Story:” + +https://t.co/fbXwdCtRZh https://t.co/Nm9jmw0GSL","894328852398428161","18137723","2017-08-06 22:46:28 +0000","http://braythwayt.com/posterous/2012/03/29/a-womans-story.html,https://twitter.com/raganwald/status/894328852398428161/photo/1,http://braythwayt.com/posterous/2012/03/29/a-womans-story.html,https://twitter.com/raganwald/status/894328852398428161/photo/1" +"891440389365702656","","","2017-07-29 23:28:45 +0000","Tweetbot for iΟS","RT @garybernhardt: CHECK THIS BOX. Use your tab key constantly to move between controls. Learn ^a, ^e, ^f, ^b, alt-BS in text boxes. https:…","891440300731662336","809685","2017-07-29 23:28:24 +0000","https://mobile.twitter.com/searls/status/891439037948588033" +"891440269500989440","891437668050944000","809685","2017-07-29 23:28:17 +0000","Tweetbot for iΟS","@garybernhardt I have a bookmarklet that unbreaks Emacs keyboard shortcuts on Stack Overflow. These must be the most common shortcuts devs use for text.","","","","" +"889884563094159364","","894911","2017-07-25 16:26:27 +0000","Tweetbot for iΟS","@JimRoepcke @merowing_ Congrats! 🚢🎉","","","","" +"889590947167653888","889329576257753088","271545671","2017-07-24 20:59:44 +0000","Tweetbot for iΟS","@getcloak Great! I hope that helps because it's been unusably slow for me for a couple of weeks. Turned it off for now :/","","","","" +"889293751734026240","889236198534918144","271545671","2017-07-24 01:18:47 +0000","Tweetbot for iΟS","@getcloak Vancouver Island.","","","","" +"887392267240996864","887391754466480128","4777951","2017-07-18 19:22:58 +0000","Tweetbot for iΟS","@merowing_ @steipete Also don’t forget that Geekbench doesn’t run in isolation. There can be a lot of variability from run to run if you’re not careful.","","","","" +"887391872879951873","887372407853293568","436117419","2017-07-18 19:21:24 +0000","Tweetbot for iΟS","@ian_mcdowell @steipete If you compare to the fastest individual scores and some average it does not. https://t.co/yiMXvVkTbZ","","","","https://browser.geekbench.com/v4/cpu/search?dir=desc&q=iMac18%2C3&sort=multicore_score" +"887391754466480128","887363672095457281","289246577","2017-07-18 19:20:55 +0000","Tweetbot for iΟS","@merowing_ @steipete No it didn’t. He doesn’t understand that Geekbench’s average scores are kind of bullshit. Look at individual scores. https://t.co/yiMXvVkTbZ","","","","https://browser.geekbench.com/v4/cpu/search?dir=desc&q=iMac18%2C3&sort=multicore_score" +"887362605311971328","887344767440490496","25401953","2017-07-18 17:25:06 +0000","Tweetbot for iΟS","@steipete It's not even for performance, only to save money. It won't outperform the top end iMac with the same CPU.","","","","" +"882338350019092480","882279575413297154","6738452","2017-07-04 20:40:30 +0000","Tweetbot for iΟS","@peterb ಠ_ಠ","","","","" +"882320131543752705","882319775535431681","4777951","2017-07-04 19:28:06 +0000","Tweetbot for iΟS","@robot_or_not @siracusa @jsnell And fwiw I've never eaten a spoon of ketchup by itself.","","","","" +"882319775535431681","","3223656668","2017-07-04 19:26:41 +0000","Tweetbot for iΟS","@robot_or_not @siracusa @jsnell I only need one spoon of peanut butter at a time to be satisfied when I eat it on its own. And it's great. 😋","","","","" +"881365922182819840","881325607967113216","80139117","2017-07-02 04:16:25 +0000","Tweetbot for iΟS","@vicpdcanada You should be ashamed of yourselves. ""You made me do this!"" is what abusive people say to the abused.","","","","" +"881365688828518400","881337043506257920","395092966","2017-07-02 04:15:29 +0000","Tweetbot for iΟS","@padre_vincent @BackupErr @vicpdcanada @BCTransit What if you live downtown or James Bay and want to buy a bottle elsewhere? It's absurd you can't carry alcohol in a bag. No excuse.","","","","" +"881365266868862976","881317725687042048","80139117","2017-07-02 04:13:49 +0000","Tweetbot for iΟS","@vicpdcanada @BCTransit Because prohibition totally works! 🙄 This is a ridiculous policy and especially sad on a day where we celebrate our fine, free country. #yyj","","","","" +"877715725753790464","","","2017-06-22 02:31:50 +0000","Tweetbot for iΟS","Same here. That's unfortunate! Hope this get reverted. It has 4 GB of RAM like the new ones. https://t.co/iW7smUQQy8","","","","https://twitter.com/stroughtonsmith/status/877682546645053440" +"877715066224730113","","","2017-06-22 02:29:13 +0000","Tweetbot for iΟS","RT @sleeplessgeek: ""R U a full stack dev?"" +""No, because..."" +<fumbles around for sunglasses, puts them on wrong, readjusts, looks up> +😎 ""I u…","877528257134034944","234859654","2017-06-21 14:06:54 +0000","" +"876847525918945281","","","2017-06-19 17:01:55 +0000","Tweetbot for Mac","It’s Martini Day. If you like martinis plan your evening accordingly. 🍸","","","","" +"875938599845351424","875872197713293312","15267898","2017-06-17 04:50:11 +0000","Tweetbot for iΟS","@stroughtonsmith Don't discount the work that goes into the interesting things you say! Bought you a dinner on PayPal.","","","","" +"875882915913023488","","","2017-06-17 01:08:54 +0000","Tweetbot for iΟS","iOS 11 removes app switching via a hard swipe from the left edge. I use that all the time and prefer it to double tapping home. Oh well!","","","","" +"875731420693397508","","","2017-06-16 15:06:55 +0000","Tweetbot for iΟS","RT @rickasaurus: As CTO my primary responsibility is to stop myself from rewriting all of the legacy systems alone in a manic fury.","875155083377430528","16377511","2017-06-15 00:56:46 +0000","" +"875507820585656322","875471540812480521","3892042187","2017-06-16 00:18:25 +0000","Tweetbot for iΟS","@_davenott It's pretty slow at compiling projects with more than say 50-100 Swift files. And processing symbols. If you're patient it's a nice machine.","","","","" +"875458597567700992","875457345454657540","4777951","2017-06-15 21:02:49 +0000","Tweetbot for iΟS","Maybe pragmatism earns more money than silly disputes over who *must* be able configure their editor to display 6 space indents to do work.","","","","" +"875457345454657540","","","2017-06-15 20:57:51 +0000","Tweetbot for iΟS","Spaces > Tabs + +Spaces are always displayed correctly by every tool, without configuring magic comments or anything like that. Pragmatic.","","","","" +"874476867457138689","","","2017-06-13 04:01:46 +0000","Tweetbot for iΟS","RT @hamzasood: The new control centre has a (system only) plugin mechanism. +Example plugins on Github: +https://t.co/TQgtATrDXP https://t.co…","874365037913178117","391647694","2017-06-12 20:37:24 +0000","https://github.com/hamzasood/CustomControlCenterModules,https://github.com/hamzasood/CustomControlCenterModules,https://twitter.com/hamzasood/status/874365037913178117/video/1" +"874344916037451777","","","2017-06-12 19:17:27 +0000","Tweetbot for Mac","Auto-play video ad starts. My initial reaction: “Man, this Aphex Twin track is getting really weird!”","","","","" +"874344274774507520","874321085155516416","4777951","2017-06-12 19:14:54 +0000","Tweetbot for Mac","Looks like the overlay appears after 1-2 seconds in the video, but we’re cutting 1s videos so it never shows up. https://t.co/9ltyxmF2m9","","","","http://openradar.appspot.com/radar?id=6172928408289280" +"874321085155516416","874319196930269184","4777951","2017-06-12 17:42:45 +0000","Tweetbot for Mac","Tried adding the CA tool container layer to a view for debugging (docs say don’t do that) and it doesn’t appear BUT it now works. 😂 or 😭?","","","","" +"874319196930269184","874317692018147329","4777951","2017-06-12 17:35:15 +0000","Tweetbot for Mac","Who’s using AVVideoCompositionCoreAnimationTool to overlay layers on video? Does it still work for you on iOS 11?","","","","" +"874317692018147329","","","2017-06-12 17:29:16 +0000","Tweetbot for Mac","😭 https://t.co/v0ri8DDJ55","","","","https://twitter.com/_sjs/status/874317692018147329/photo/1" +"873949133425356800","873852293870997504","9088822","2017-06-11 17:04:45 +0000","Tweetbot for iΟS","@kaishin @zwaldowski I want consistency between apps on my machine, not with the GitHub app on other systems I don't use. This is nonsense.","","","","" +"873377442169208832","","","2017-06-10 03:13:03 +0000","Tweetbot for iΟS","RT @gregtitus: Too. Many. WWDC. Sessions. + +My brain has melted. It’s in a puddle mumbling about dragging and dropping AR sanitizing Swift…","873297958040727552","637933","2017-06-09 21:57:12 +0000","" +"873369828328787968","","","2017-06-10 02:42:48 +0000","Tweetbot for iΟS","RT @arekholko: TIL you can temporarily override User Defaults’ values through “Arguments Passed on Launch”. https://t.co/myDddz550G","873210316758413312","119078936","2017-06-09 16:08:57 +0000","https://twitter.com/arekholko/status/873210316758413312/photo/1,https://twitter.com/arekholko/status/873210316758413312/photo/1" +"871136452897161216","","","2017-06-03 22:48:09 +0000","Tweetbot for iΟS","RT @jxxf: If a junior developer accidentally destroys production on their first day, it's *your company's* fault, not theirs. https://t.co/…","871000661869154304","19463693","2017-06-03 13:48:34 +0000","https://twitter.com/jxxf/status/871000661869154304/photo/1,https://twitter.com/jxxf/status/871000661869154304/photo/1,https://twitter.com/jxxf/status/871000661869154304/photo/1" +"870648225849516033","870554276321415169","22406953","2017-06-02 14:28:07 +0000","Tweetbot for iΟS","@macatbook Groovy?","","","","" +"866885368053760000","866876636997627904","1170518132","2017-05-23 05:15:52 +0000","Tweetbot for iΟS","@feedbin That makes sense.","","","","" +"866828128638742528","866824166418206720","1170518132","2017-05-23 01:28:25 +0000","Tweetbot for iΟS","@feedbin @jsonfeed Nice! It would be cool to be able to select a feed when adding a website with JSON and XML. Seems to automatically pick XML right now.","","","","" +"865214863496196097","865089516998209536","15267898","2017-05-18 14:37:53 +0000","Tweetbot for iΟS","@stroughtonsmith Oh but it is the right place for ctrl. Especially if you navigate text fields with ctrl-[aebfnp]. It'll ruin iPad keyboards for you though.","","","","" "856519321496858624","856519078709690369","668243","2017-04-24 14:44:54 +0000","Tweetbot for iΟS","@dmoren @bleedsixcolors Indeed! And I didn't about about the iCloud trick. It's a good tip regardless.","","","","" "856518882550362112","856503342830407680","2786220516","2017-04-24 14:43:09 +0000","Tweetbot for iΟS","@bleedsixcolors @dmoren You can select and delete multiple reminders on a Mac. Shift click.","","","","" "855833375562530816","855817723967926274","75349101","2017-04-22 17:19:12 +0000","Tweetbot for iΟS","@Gankro ಠ_ಠ https://t.co/1EijNLJku2","","","","https://twitter.com/_sjs/status/855833375562530816/photo/1" @@ -59,7 +139,6 @@ YYC ✈️ YYJ 🌄 "822620243847708674","","","2017-01-21 01:42:04 +0000","Tweetbot for iΟS","Oh right. It's one of those days where Twitter is useless/ruined. Have fun all! I'm outta here.","","","","" "822619858642812928","822495869861765122","289246577","2017-01-21 01:40:32 +0000","Tweetbot for iΟS","@merowing_ @konrado0905 @benjaminencz Call the param context instead of weakly. Name what it is not how it's retained. `self` confuses too.","","","","" "822444348214120458","822428313360670720","43727347","2017-01-20 14:03:07 +0000","Tweetbot for iΟS","@gembarrett @oceanseyye Jesus fuck. 😥","","","","" -"821766582732877824","","","2017-01-18 17:09:55 +0000","Tweetbot for iΟS","RT @existopher: I had a problem involving text parsing and capture, so I used a regex. Now I have an elegant and domain appropriate solutio…","821503015957843969","191922437","2017-01-17 23:42:36 +0000","" "820838328761131008","820788660886994944","15336899","2017-01-16 03:41:22 +0000","Tweetbot for iΟS","@AnthonyHocken @tapbot_paul Why only 95% of the time? My bookmarklet works every time.","","","","" "820165967439228928","819992471874613248","14180235","2017-01-14 07:09:39 +0000","Tweetbot for iΟS","@daveeed It's a work retreat but we have a lot of fun planned! First time in Mexico.","","","","" "819967644937793537","","","2017-01-13 18:01:35 +0000","Tweetbot for iΟS","🌄 YVR ✈️ PVR ☀️","","","","" @@ -294,6 +373,7 @@ Even if Trump is not elected you have some serious problems to figure out. Don't "785553220089159681","","","2016-10-10 18:50:57 +0000","Tweetbot for iΟS","It's a mere coincidence. There are only so many ways you can make a black, cylindrical computer. Definitely not a rip-off. 🙄 https://t.co/uSlnpxalAo","","","","https://twitter.com/anandtech/status/785545679535910912" "785271692239048704","785254398628761601","14308739","2016-10-10 00:12:15 +0000","Tweetbot for iΟS","@cheerskevin @plujoenium I highly recommend some of these for handling 🌶: https://t.co/pRltM7tjWs","","","","https://www.amazon.com/gp/aw/d/B000XRY2FE/ref=s9_top_hm_awbw_b146g5_g121_i2?pf_rd_m=ATVPDKIKX0DER&pf_rd_s=mobile-hybrid-3&pf_rd_r=00HNV6C9T36GK014MMK3&pf_rd_t=30901&pf_rd_p=45e7ddea-02ec-52d4-b75e-3a8630ef16bc&pf_rd_i=15755321" "784995637624397825","784878743412019200","5637652","2016-10-09 05:55:19 +0000","Tweetbot for iΟS","@codinghorror 683","","","","" +"784231148671029248","","","2016-10-07 03:17:30 +0000","Tweetbot for iΟS","RT @brentsimmons: Apple is within their rights to run a Kafkaesque bureaucracy. I just don’t know why they want to.","784087254004183040","652293","2016-10-06 17:45:43 +0000","" "784230319389933568","","","2016-10-07 03:14:13 +0000","Tweetbot for iΟS","Will? https://t.co/6cQuaiQkuy","","","","https://twitter.com/Objective_Neo/status/784151305384259585" "784048242681974784","784046197698945025","19185780","2016-10-06 15:10:42 +0000","Tweetbot for iΟS","@tmmx @joeerl You choose which specific APIs to use from the OS and your language, but yes sometimes there's no choice (JS in browser).","","","","" "784036277058277377","784035198853718017","4777951","2016-10-06 14:23:09 +0000","Tweetbot for iΟS","@tmmx @joeerl There's a lot less difference between a language-bundled library and any other lib than you may realize. All made by people.","","","","" @@ -766,6 +846,7 @@ If you change it from protocol to class it fulfills the requirements.","","","", "742769838989283328","742446435694563328","4777951","2016-06-14 17:25:04 +0000","Tweetbot for Mac","Anyone know of a use case for per-extent encryption in APFS? Very strange. #WWDC2016","","","","" "742737119488004097","","","2016-06-14 15:15:03 +0000","Tweetbot for iΟS","Sneaky! I like it. Be careful when typing package names out there everyone. https://t.co/YviPtTZjzD","","","","https://twitter.com/arstechnica/status/742723622876381184" "742446435694563328","742435532563578881","4777951","2016-06-13 19:59:58 +0000","Tweetbot for Mac","New App Store review guidelines: https://t.co/WnGkUYbzPW #WWDC2016","","","","https://developer.apple.com/app-store/review/guidelines/" +"742445881387929600","","","2016-06-13 19:57:46 +0000","Tweetbot for Mac","RT @ashtengelova: Shiny new iOS HIG! 🌟 https://t.co/jKKdVEjYvX","742445532593823744","2792599332","2016-06-13 19:56:23 +0000","https://developer.apple.com/ios/human-interface-guidelines/,https://developer.apple.com/ios/human-interface-guidelines/" "742441034987098112","742440911905411073","3003293980","2016-06-13 19:38:31 +0000","Tweetbot for Mac","@self_vs_this @steipete Me too! The Xcode 8 beta is still > 5 GB though 😿","","","","" "742439642398478336","742433431896739840","4777951","2016-06-13 19:32:59 +0000","Tweetbot for Mac","@srbaker Answer: none. Only the text editor is extensible.","","","","" "742436066292944896","","","2016-06-13 19:18:46 +0000","Tweetbot for Mac","RT @siracusa: The new file system is real, and it's…spectacular?","742435975079419905","636923","2016-06-13 19:18:24 +0000","" @@ -1891,7 +1972,7 @@ http://t.co/FlDm1inPQp http://t.co/dPH9wwY76Y”","","","","http://garfieldminus To me it seems like a purpose-built live streaming Twitter client.","","","","" "576492107172429824","576469626529284096","14538248","2015-03-13 21:16:43 +0000","Tweetbot for Mac","@robynpeterson @gittrich YES! I’m so glad someone got pile of poo 💩","","","","" -"576440863951204352","","","2015-03-13 17:53:06 +0000","Tweetbot for Mac","@mrjjwright Or even something like the plist editor in Xcode. Or a better text format. Lots of better alternatives.","","","","" +"576440863951204352","576440417660469249","8408512","2015-03-13 17:53:06 +0000","Tweetbot for Mac","@mrjjwright Or even something like the plist editor in Xcode. Or a better text format. Lots of better alternatives.","","","","" "576440002436993024","576436765915013120","14308739","2015-03-13 17:49:40 +0000","Tweetbot for Mac","@gisikw TOML looks promising but doesn’t appear to have caught on very much. The TOML gem I tried was really slow.","","","","" "576439758118789120","576436765915013120","14308739","2015-03-13 17:48:42 +0000","Tweetbot for Mac","@gisikw Having loops and such can be nice. I can see that working out well with the optional commas and all that.","","","","" "576435977775755265","","","2015-03-13 17:33:41 +0000","Tweetbot for Mac","JSON is a decent transport but I don’t like this trend of using it for config files and other things edited by humans. It’s not good.","","","","" @@ -3496,7 +3577,7 @@ I end up using rsync on OS X :/","","","","" http://t.co/kvSjn3c4NL","455186163771637760","225220363","2014-04-13 03:30:13 +0000","http://kickingbear.com/blog/archives/442,http://kickingbear.com/blog/archives/442" "455019690583003136","","","2014-04-12 16:28:42 +0000","Twitterrific","RT @snarfmason: This is what advertising should look like to me. @cwgabriel probably got paid but he's well known for actually loving the s…","454999263743717376","108814849","2014-04-12 15:07:32 +0000","" "455019634681335808","455016263333736448","21505836","2014-04-12 16:28:29 +0000","Twitterrific","@samuelwford @nacran @gte @siracusa That's 100% fair. I think many Obj-C, Perl, Python, and Ruby devs could agree on a whole lot though.","","","","" -"455012289490333696","454926938151190529","192514202","2014-04-12 15:59:18 +0000","Twitterrific","@nacran @gte @siracusa Nothing, I was referencing the recent Debug episode on which they had a good discussion about this stuff.","","","","" +"455012289490333696","","","2014-04-12 15:59:18 +0000","Twitterrific","@nacran @gte @siracusa Nothing, I was referencing the recent Debug episode on which they had a good discussion about this stuff.","","","","" "455009987735994368","454860203352416256","7125712","2014-04-12 15:50:09 +0000","Twitterrific","@gte @siracusa That's good to hear. And I appreciate your position, but sense that you have a different perspective coming from C and C++.","","","","" "455009657984008192","","","2014-04-12 15:48:50 +0000","Twitterrific","RT @gte: @_sjs @siracusa Heh. That wasn’t a fight. There was a lot of red cape there. John makes terrific points. We agree more than you’d …","454860203352416256","7125712","2014-04-12 05:54:58 +0000","" "455009616607191040","454965996651290624","21505836","2014-04-12 15:48:40 +0000","Twitterrific","@samuelwford @nacran @gte @siracusa Not namespaces specifically, just higher level in general. Stuff we all mostly agree is better.","","","","" @@ -4342,7 +4423,6 @@ http://t.co/SrnhnTzTPH","408132348815745024","16225162","2013-12-04 07:15:09 +00 "407209600140595200","407196873037197312","204008694","2013-12-01 18:08:28 +0000","Twitterrific","@Jameslfc19 @tapbot_paul And the question of how we are to know which 0.N -> 0.N+1 updates are major (2.2, 2.3) and which are minor (4.4).","","","","" "407209339057758208","407196873037197312","204008694","2013-12-01 18:07:26 +0000","Twitterrific","@Jameslfc19 @tapbot_paul That raises the question of where the next major release is.","","","","" "406979192752840704","","","2013-12-01 02:52:55 +0000","Twitterrific","RT @newsycombinator: A spreadsheet in fewer than 30 lines of JavaScript, no library used http://t.co/2nn3YkpnXS","400942095386824704","14335498","2013-11-14 11:03:39 +0000","http://jsfiddle.net/ondras/hYfN3/,http://jsfiddle.net/ondras/hYfN3/" -"405548460596015104","","","2013-11-27 04:07:42 +0000","Twitterrific","RT @angelinamagnum: If you are a dev writing code that you expect other devs to use you may be surprised to find that you are working on us…","405450793605533697","58708498","2013-11-26 21:39:36 +0000","" "405160374518833152","","","2013-11-26 02:25:35 +0000","Twitterrific","3 days and counting. No way to check the progress or status. I'm too curious if it will ever finish to cancel it. http://t.co/aenTH3JfBn","","","","https://twitter.com/_sjs/status/405160374518833152/photo/1" "404277343046225920","403636753950453761","35745942","2013-11-23 15:56:44 +0000","Twitter for iPad","@ALL_CAPS @deanlandolt Give them some credit. It could be an impeccable typeface selection.","","","","" "404057393371176960","","","2013-11-23 01:22:44 +0000","Twitterrific","Man, HFS+ really stinks. @siracusa","","","","" @@ -4359,7 +4439,7 @@ http://t.co/SrnhnTzTPH","408132348815745024","16225162","2013-12-04 07:15:09 +00 "402137658953973760","","","2013-11-17 18:14:23 +0000","Twitterrific","RT @jesseschell: A truer flowchart was never whiteboarded. http://t.co/RSn7WufBqL","321209685631963136","11591662","2013-04-08 10:35:31 +0000","https://twitter.com/jcolman/status/320917928881033218/photo/1,https://twitter.com/jcolman/status/320917928881033218/photo/1" "402137568105336832","","","2013-11-17 18:14:02 +0000","Twitterrific","RT @substack: task automation with `npm run` http://t.co/iuE0TGOUto","402132695137779712","125027291","2013-11-17 17:54:40 +0000","http://substack.net/task_automation_with_npm_run,http://substack.net/task_automation_with_npm_run" "401819098755002368","401804100653678592","95938827","2013-11-16 21:08:33 +0000","Twitterrific","@hij1nx New past-time: sneakily deselecting floors in tall buildings.","","","","" -"401745058312892417","","","2013-11-16 16:14:20 +0000","Tweetings for Android","RT @jaffathecake: ""With camelCasing, what do we do with abbreviations? Capitalise all, or just the first letter?"" +"401745058312892417","","","2013-11-16 16:14:20 +0000","Tweetings for Android Holo","RT @jaffathecake: ""With camelCasing, what do we do with abbreviations? Capitalise all, or just the first letter?"" ""Fuck it, both"" @@ -4770,7 +4850,7 @@ provides more security than bitcoin","366272302633070592","53010195","2013-08-10 "363474815866257408","363335984676483072","894911","2013-08-03 01:42:03 +0000","Twitterrific","@JimRoepcke Looks Lisp or Rubyish. I like it.","","","","" "363065224829472768","","16240267","2013-08-01 22:34:29 +0000","Twitterrific for Mac","@instapaper Did something change with emailing links? I now get the plain text link itself instead of Instapaper fetching the link.","","","","" "362983658107318274","","","2013-08-01 17:10:22 +0000","Twitterrific for Mac","RT @raganwald: I've almost completely reversed my programming style: ""Leaky Greenspunned Abstractions"" http://t.co/9QB00lshwn","362968393827094529","18137723","2013-08-01 16:09:43 +0000","http://raganwald.com/2013/08/01/leaky-greenspunned-abstractions.html,http://raganwald.com/2013/08/01/leaky-greenspunned-abstractions.html" -"362442468064624642","","636923","2013-07-31 05:19:52 +0000","Tweetings for Android","@siracusa @danbenjamin Look right into the eyes of your sweetie. +"362442468064624642","","636923","2013-07-31 05:19:52 +0000","Tweetings for Android Holo","@siracusa @danbenjamin Look right into the eyes of your sweetie. http://t.co/V0r2So7EIq","","","","http://www.theverge.com/2013/7/31/4528398/eteleporter-ipad-video-chat-eye-contact-facetime" "362290029952897026","362248484352565248","8654722","2013-07-30 19:14:08 +0000","Twitterrific","@voxdolo @github Is that the first of @raganwald's tweets you've read? Pretty clearly tongue-in-cheek.","","","","" "361181101542223874","","","2013-07-27 17:47:39 +0000","Twitterrific","RT @mraleph: OH ""I blame Erlang's syntax for the popularity of node.js""","361088151005052928","53010195","2013-07-27 11:38:18 +0000","" @@ -5229,7 +5309,7 @@ end","","","","" "291258751770558464","291256065159479296","18006104","2013-01-15 19:01:12 +0000","Twitterrific for Mac","@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","Tweetbot for iOS","@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","Tweetbot for iOS","@JimRoepcke I think so. They should anyway; it’s not very old.","","","","" -"289374954829524992","289228619195224064","20079975","2013-01-10 14:15:40 +0000","Tweetings for Android","@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.","","","","" +"289374954829524992","289228619195224064","20079975","2013-01-10 14:15:40 +0000","Tweetings for Android Holo","@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","Tweetbot for iOS","@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","Twitter Web Client","@Badger32d @markkolich Augh! Don't look yet!","","","","" "289061210085793792","","","2013-01-09 17:28:57 +0000","iOS","My GitHub open source contributions are pretty sad. Need to do something about that. https://t.co/6ev3ZmVU","","","","https://github.com/samsonjs" @@ -5414,7 +5494,6 @@ I wanted to switch carriers but nobody had a better deal than 6GB for $60 plus m "223132039967293440","","","2012-07-11 19:09:58 +0000","Tweetbot for iOS","RT @polotek: This is pretty amazing. ""Paid, PAID Vacation"". Pay employees to take a real vacation and NOT work. http://t.co/RhC4ZSpL via ...","223127533837762561","20079975","2012-07-11 18:52:04 +0000","http://www.fullcontact.com/2012/07/10/paid-paid-vacation/,http://www.fullcontact.com/2012/07/10/paid-paid-vacation/" "223076848144355331","","","2012-07-11 15:30:39 +0000","Tweetbot for iOS","RT @RealRonHoward: Arrested Development for Netflix. IT'S ALIVE. This is what the writer's room looks like http://t.co/yhSRZET4","222829875109699584","125481462","2012-07-10 23:09:17 +0000","https://twitter.com/RealRonHoward/status/222829875109699584/photo/1,https://twitter.com/RealRonHoward/status/222829875109699584/photo/1" "223076789461843969","","","2012-07-11 15:30:25 +0000","Tweetbot for iOS","RT @mitchellh: Next up, let's get Vagrant booting up VMWare Fusion instances, shall we? Final touches on this boxes branch, then a merge ...","222936727516491777","12819682","2012-07-11 06:13:52 +0000","" -"222924618497916928","","","2012-07-11 05:25:45 +0000","Tweetbot for iOS","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 ...","222779724567547904","7076492","2012-07-10 19:50:00 +0000","" "220529221741715459","","","2012-07-04 14:47:18 +0000","Twitterrific for Mac","Episode 15, The Bridges of Siracusa County, is the original ""this will be a short show"" that ends up being long. @danbenjamin @siracusa","","","","" "220160115322527744","","","2012-07-03 14:20:36 +0000","Tweetbot for iOS","RT @antirez: some more sentinel in action (agreement using two sentinels to mark a master objectively down): http://t.co/2PqpJtYc","220135260799778816","5813712","2012-07-03 12:41:50 +0000","http://bit.ly/N8f1K4,http://bit.ly/N8f1K4" "220019224402341888","220018943572721664","894911","2012-07-03 05:00:45 +0000","Tweetbot for iOS","@JimRoepcke Ha ha. Fair enough.","","","","" @@ -6173,6 +6252,7 @@ ZOMG!!1","","","","" "100788187085029377","100786365054189568","894911","2011-08-09 04:39:11 +0000","Twitter for Mac","@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","Twitter for Mac","@JimRoepcke Dr. Strangelove better be on that list then :p","","","","" "100782967273684992","100782719797170177","894911","2011-08-09 04:18:26 +0000","Twitter for Mac","@JimRoepcke Watching all the classics this week eh.","","","","" +"100777945953599489","","","2011-08-09 03:58:29 +0000","Twitter for Mac","RT @jorgeortiz85: It's <strike>turtles</strike> services hosted on EC2 all the way down http://t.co/8nTohj8","100773381242228736","6001592","2011-08-09 03:40:21 +0000","http://cl.ly/463e3h2C1z3R262L3f22/Screen_shot_2011-08-08_at_11.38.44_PM.png,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","Twitter for Mac","@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","Twitter for Mac","@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","Twitter for Mac","@jtaby It's at odds w/ the browser's layout engine and lacks fluid/dynamic layout which I apparently am quite accustomed to.","","","","" @@ -6470,7 +6550,6 @@ http://t.co/5dmlRqs","","","","http://bit.ly/pmQcCA,http://bit.ly/rmJ1Pd" "89543103349932032","","","2011-07-09 03:55:14 +0000","Twitter for Mac","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","Twitter for Mac","@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","Twitter for Mac","If you have Google+ drag more than one person to a circle right now.","","","","" -"89497363021971457","","","2011-07-09 00:53:28 +0000","Twitter for Mac","RT @b6n: For me, it's either false dichotomies or nothing at all.","89497134390460416","16031975","2011-07-09 00:52:34 +0000","" "89367275693555713","","","2011-07-08 16:16:33 +0000","Twitter for Mac","RT @mitchellh: In the time it takes for the light from your monitor to reach your eyes, your computer can process about 6 instructions. ...","89367184001859584","12819682","2011-07-08 16:16:11 +0000","" "89365888758841344","","","2011-07-08 16:11:02 +0000","Twitter for Mac","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","Twitter for Mac","@JimRoepcke XD http://t.co/FRjFko7","","","","http://yfrog.com/kgx81p" @@ -6666,7 +6745,6 @@ I sure have. Damn good find.","86854928760455169","14231571","2011-07-01 17:53:2 "73187164745240576","73175789276893184","102550526","2011-05-25 00:42:34 +0000","Seesmic","@gnachman TextMate's command line tool for editing files. The problem seems to lie with TM re-activating iTerm when done.","","","","" "73142291325386752","","","2011-05-24 21:44:15 +0000","Kiwi","RT @bryan_kyle: @_sjs ""Never mock synergy"" - Jack Donaghy","73114982933471232","14864447","2011-05-24 19:55:45 +0000","" "73114280907636736","73111982236110848","14864447","2011-05-24 19:52:57 +0000","Kiwi","@bryan_kyle People won't even be able to comprehend the synergy.","","","","" -"73107434562007041","","","2011-05-24 19:25:45 +0000","Seesmic","RT @b6n: Early customers are as important as early hires. Recruit both carefully!","73107211563433984","16031975","2011-05-24 19:24:52 +0000","" "73096317299208193","","","2011-05-24 18:41:34 +0000","Kiwi","""Transform your SEO int a ROI-Driven Marketing Channel"", or ""herp de derp, tee tum tee teedly derp de dum""","","","","" "73093352496709632","","","2011-05-24 18:29:47 +0000","Kiwi","@kitgoncharov That is, it's Infuriating and confusing that they are presented as folders but they don't *behave* like folders.","","","","" "73093038456569856","","","2011-05-24 18:28:33 +0000","Kiwi","@kitgoncharov It's so infuriating and confusing to present them as folders. How they have survived for 10 years is beyond me.","","","","" @@ -7062,7 +7140,6 @@ Blog post forthcoming.","64425378097266688","8038312","2011-04-30 20:26:21 +0000 "35418617675784192","","","2011-02-09 19:23:51 +0000","Twitter for Mac","OH: ""You guys are evil! Showing happy families just to sell cream cheese?!""","","","","" "35413578995466240","","","2011-02-09 19:03:49 +0000","Twitter for Android","RT @anandshimpi: The webOS multitasking UI continues to be infinitely better than iOS","35411469378002944","14618863","2011-02-09 18:55:26 +0000","" "35384976329412608","35383638195445761","45993","2011-02-09 17:10:10 +0000","Twitter for iPhone","@clint 10am in the middle of the pacific.","","","","" -"35134878131568640","","","2011-02-09 00:36:22 +0000","Twitter for Android","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.","35116545873022976","18713","2011-02-08 23:23:31 +0000","" "35134314782003200","","","2011-02-09 00:34:08 +0000","Twitter for Android","RT @kriskowal: I'm building ""Lode"", an experimental package-aware statically-linked asynchronous module loader for Node. No scraping. ht ...","35130529372180480","6585632","2011-02-09 00:19:05 +0000","" "35028881631088641","","","2011-02-08 17:35:10 +0000","Twitter for Mac","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","Twitter for Mac","@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.","","","","" @@ -7248,7 +7325,6 @@ A. So they can brag about the size of their package.","","","","" "24845247926243328","24737960695959553","894911","2011-01-11 15:09:03 +0000","Twitter for Mac","@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","Twitter for Mac","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","Twitter for Mac","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","","","2011-01-11 01:44:26 +0000","Twitter for Mac","RT @argv0: Riak supports kill-9. #nosql","24570925143818240","6509982","2011-01-10 20:58:59 +0000","" "24636329866305536","","","2011-01-11 01:18:53 +0000","Twitter for Mac","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","Twitter for Mac","Sandy Bridge, Windows on ARM, Nvidia and Intel cooperating, dual-core 1GHz ARM CPUs, Android 3.0 ... the future will be interesting.","","","","" "23189911360249856","","","2011-01-07 01:31:20 +0000","Twitter for Mac","Best thing I've seen in the last 15 minutes: http://t.co/zRwBli2","","","","http://illreallyanimatethat.deviantart.com/art/1-192413771" @@ -8095,7 +8171,6 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", #nonosql #docdb #nosql","","","","" "14518843441","","","2010-05-22 00:00:00 +0000","Twitter Web Client","About to watch a haggis hurling competition. The record is 190 ft!","","","","" -"14521573978","","","2010-05-22 00:00:00 +0000","Twitter Web Client","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 ...","14521160441","6509982","2010-05-22 23:04:37 +0000","" "14451901173","","","2010-05-21 00:00:00 +0000","Twitter Web Client","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!","","","","" "14451956498","","","2010-05-21 00:00:00 +0000","Twitter Web Client","Well, I can see github again. That was short-lived.","","","","" "14232765831","14217793600","14358152","2010-05-18 00:00:00 +0000","Twitter Web Client","@mentalguy I remember that feeling. Here are 9 more to blow your mind: http://en.wikipedia.org/wiki/Ontario_(disambiguation)","","","","" From e37c5be10d4812214ab701c4da6f0ef1120d7dfb Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Sat, 23 Sep 2017 22:55:04 -0700 Subject: [PATCH 04/33] update Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7dd9efe..0631dc5 100644 --- a/Makefile +++ b/Makefile @@ -25,4 +25,4 @@ clean: spec: cd server && rspec -f documentation -.PHONY: compile publish publish_beta test_blog spec +.PHONY: rss compile publish publish_beta test_blog clean spec From 84c741e3a5ff380831851e394f412f451ba9ff0c Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Wed, 17 Jan 2018 13:58:09 -0800 Subject: [PATCH 05/33] update nokogiri --- Gemfile | 2 +- Gemfile.lock | 64 +++++++++++++++++++++++++--------------------------- 2 files changed, 32 insertions(+), 34 deletions(-) diff --git a/Gemfile b/Gemfile index e189ae1..22194d6 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,7 @@ gem 'builder', '~> 3.2' gem 'css_parser', '~> 1.3' gem 'htmlentities', '~> 4.3' gem 'mustache', '~> 1.0' -gem 'nokogiri', '~> 1.6.6' +gem 'nokogiri', '~> 1.8' gem 'rdiscount', '~> 2.1' gem 'sinatra', '~> 1.4' diff --git a/Gemfile.lock b/Gemfile.lock index 34c0417..aff0418 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,19 +1,19 @@ GEM remote: https://rubygems.org/ specs: - addressable (2.5.1) - public_suffix (~> 2.0, >= 2.0.2) + addressable (2.5.2) + public_suffix (>= 2.0.2, < 4.0) builder (3.2.3) - coderay (1.1.1) - css_parser (1.5.0) + coderay (1.1.2) + css_parser (1.6.0) addressable diff-lcs (1.3) ffi (1.9.18) formatador (0.2.5) - guard (2.14.1) + guard (2.14.2) formatador (>= 0.2.4) listen (>= 2.7, < 4.0) - lumberjack (~> 1.0) + lumberjack (>= 1.0.12, < 2.0) nenv (~> 0.1) notiffany (~> 0.0) pry (>= 0.9.12) @@ -30,49 +30,47 @@ GEM rb-inotify (~> 0.9, >= 0.9.7) ruby_dep (~> 1.2) lumberjack (1.0.12) - method_source (0.8.2) - mini_portile2 (2.1.0) + method_source (0.9.0) + mini_portile2 (2.3.0) mustache (1.0.5) nenv (0.3.0) - nokogiri (1.6.8.1) - mini_portile2 (~> 2.1.0) + nokogiri (1.8.1) + mini_portile2 (~> 2.3.0) notiffany (0.1.1) nenv (~> 0.1) shellany (~> 0.0) - pry (0.10.4) + pry (0.11.3) coderay (~> 1.1.0) - method_source (~> 0.8.1) - slop (~> 3.4) - public_suffix (2.0.5) + method_source (~> 0.9.0) + public_suffix (3.0.1) rack (1.6.8) rack-protection (1.5.3) rack - rb-fsevent (0.9.8) - rb-inotify (0.9.8) - ffi (>= 0.5.0) + rb-fsevent (0.10.2) + rb-inotify (0.9.10) + ffi (>= 0.5.0, < 2) rdiscount (2.2.0.1) - rspec (3.6.0) - rspec-core (~> 3.6.0) - rspec-expectations (~> 3.6.0) - rspec-mocks (~> 3.6.0) - rspec-core (3.6.0) - rspec-support (~> 3.6.0) - rspec-expectations (3.6.0) + rspec (3.7.0) + rspec-core (~> 3.7.0) + rspec-expectations (~> 3.7.0) + rspec-mocks (~> 3.7.0) + rspec-core (3.7.1) + rspec-support (~> 3.7.0) + rspec-expectations (3.7.0) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.6.0) - rspec-mocks (3.6.0) + rspec-support (~> 3.7.0) + rspec-mocks (3.7.0) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.6.0) - rspec-support (3.6.0) + rspec-support (~> 3.7.0) + rspec-support (3.7.0) ruby_dep (1.5.0) shellany (0.0.1) sinatra (1.4.8) rack (~> 1.5) rack-protection (~> 1.4) tilt (>= 1.3, < 3) - slop (3.6.0) - thor (0.19.4) - tilt (2.0.7) + thor (0.20.0) + tilt (2.0.8) PLATFORMS ruby @@ -83,10 +81,10 @@ DEPENDENCIES guard-rspec (~> 4.6) htmlentities (~> 4.3) mustache (~> 1.0) - nokogiri (~> 1.6.6) + nokogiri (~> 1.8) rdiscount (~> 2.1) rspec (~> 3.3) sinatra (~> 1.4) BUNDLED WITH - 1.14.6 + 1.16.1 From 32a8a6d3b244bfa1310a4b978819c35ca6a20282 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Wed, 17 Jan 2018 14:01:20 -0800 Subject: [PATCH 06/33] update npm packages --- package-lock.json | 4117 +++++++++++++++++++++++++++++++++------------ package.json | 4 +- 2 files changed, 3047 insertions(+), 1074 deletions(-) diff --git a/package-lock.json b/package-lock.json index d9a866e..bff5db9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,17 +4,28 @@ "lockfileVersion": 1, "requires": true, "dependencies": { - "abbrev": { - "version": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz", - "integrity": "sha1-0FVMIlZjbi9W58LlrRg/hZQo2B8=" - }, "accepts": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.2.13.tgz", "integrity": "sha1-5fHzkoxtlf2WVYw27D2dDeSm7Oo=", "requires": { - "mime-types": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.14.tgz", + "mime-types": "2.1.17", "negotiator": "0.5.3" + }, + "dependencies": { + "mime-db": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", + "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" + }, + "mime-types": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", + "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", + "requires": { + "mime-db": "1.30.0" + } + } } }, "acorn": { @@ -42,13 +53,15 @@ "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz", "integrity": "sha1-hgbCy/HEJs6MjsABdER/1Jtur8E=" }, - "align-text": { - "version": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "ajv": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", + "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", "requires": { - "kind-of": "https://registry.npmjs.org/kind-of/-/kind-of-3.1.0.tgz", - "longest": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "repeat-string": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" + "co": "4.6.0", + "fast-deep-equal": "1.0.0", + "fast-json-stable-stringify": "2.0.0", + "json-schema-traverse": "0.3.1" } }, "amdefine": { @@ -56,14 +69,6 @@ "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" }, - "ansi-regex": { - "version": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "ansi-styles": { - "version": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, "aproba": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", @@ -78,30 +83,40 @@ "readable-stream": "2.3.3" }, "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, "readable-stream": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", "requires": { - "core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "core-util-is": "1.0.2", + "inherits": "2.0.3", "isarray": "1.0.0", - "process-nextick-args": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "process-nextick-args": "1.0.7", "safe-buffer": "5.1.1", "string_decoder": "1.0.3", - "util-deprecate": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + "util-deprecate": "1.0.2" } }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" - }, "string_decoder": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", @@ -109,6 +124,11 @@ "requires": { "safe-buffer": "5.1.1" } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" } } }, @@ -117,19 +137,6 @@ "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" }, - "asap": { - "version": "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz", - "integrity": "sha1-sqRdpf36ILBJb8N2jMJ8EvqRan0=", - "optional": true - }, - "asn1": { - "version": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", - "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" - }, - "assert-plus": { - "version": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", - "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=" - }, "async": { "version": "0.2.9", "resolved": "https://registry.npmjs.org/async/-/async-0.2.9.tgz", @@ -140,30 +147,23 @@ "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=" }, - "asynckit": { - "version": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, "autoprefixer": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.2.3.tgz", - "integrity": "sha1-qezJ/hp7UrCzLRECVzddAvqEHxw=", + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.1.6.tgz", + "integrity": "sha512-C9yv/UF3X+eJTi/zvfxuyfxmLibYrntpF3qoJYrMeQwgUJOZrZvpJiMG2FMQ3qnhWtF/be4pYONBBw95ZGe3vA==", "requires": { - "browserslist": "1.0.1", - "caniuse-db": "1.0.30000733", + "browserslist": "2.11.3", + "caniuse-lite": "1.0.30000792", "normalize-range": "0.1.2", "num2fraction": "1.2.2", - "postcss": "5.0.14", + "postcss": "6.0.14", "postcss-value-parser": "3.3.0" } }, - "aws-sign2": { - "version": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", - "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=" - }, - "aws4": { - "version": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", - "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, "base64-url": { "version": "1.2.1", @@ -185,20 +185,19 @@ "resolved": "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz", "integrity": "sha1-PzQU84AyF0O/wQQvmoP/HVgk1GQ=" }, - "bcrypt-pbkdf": { - "version": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", - "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", - "optional": true, - "requires": { - "tweetnacl": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz" - } - }, "block-stream": { "version": "0.0.9", "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", "requires": { - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } } }, "body-parser": { @@ -208,7 +207,7 @@ "requires": { "bytes": "2.1.0", "content-type": "1.0.4", - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "debug": "2.2.0", "depd": "1.0.1", "http-errors": "1.3.1", "iconv-lite": "0.4.11", @@ -216,27 +215,48 @@ "qs": "4.0.0", "raw-body": "2.1.7", "type-is": "1.6.15" + }, + "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "requires": { + "ms": "0.7.1" + } + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" + } } }, - "boom": { - "version": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", - "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", "requires": { - "hoek": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz" + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + } } }, "browserslist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.0.1.tgz", - "integrity": "sha1-7w3XCDGM33QyX67qWe/shNlGRxc=", + "version": "2.11.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz", + "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==", "requires": { - "caniuse-db": "1.0.30000733" + "caniuse-lite": "1.0.30000792", + "electron-to-chromium": "1.3.31" } }, - "builtin-modules": { - "version": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" - }, "bytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.1.0.tgz", @@ -251,10 +271,6 @@ "upper-case": "1.1.3" } }, - "camelcase": { - "version": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" - }, "camelcase-keys": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", @@ -271,33 +287,10 @@ } } }, - "caniuse-db": { - "version": "1.0.30000733", - "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000733.tgz", - "integrity": "sha1-OmJbxBx6n5nVnWRVKFfdGvDt2dQ=" - }, - "caseless": { - "version": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=" - }, - "center-align": { - "version": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", - "requires": { - "align-text": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "lazy-cache": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz" - } - }, - "chalk": { - "version": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "requires": { - "ansi-styles": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "has-ansi": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "supports-color": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" - } + "caniuse-lite": { + "version": "1.0.30000792", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000792.tgz", + "integrity": "sha1-0M6pgfgRjzlhRxr7tDyaHlu/AzI=" }, "change-case": { "version": "2.3.1", @@ -350,9 +343,14 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", "requires": { - "graceful-readlink": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" + "graceful-readlink": "1.0.1" } }, + "graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" + }, "source-map": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", @@ -372,48 +370,46 @@ "glob": "7.1.2" } }, - "cliui": { - "version": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", - "requires": { - "center-align": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "right-align": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "wordwrap": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz" - } - }, - "code-point-at": { - "version": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" }, "coffee-script": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.10.0.tgz", - "integrity": "sha1-EpOLz5vhlI+gBvkuDEyegXBRCMA=" + "version": "1.12.7", + "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", + "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==" }, - "combined-stream": { - "version": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", - "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "color-convert": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz", + "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", "requires": { - "delayed-stream": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" + "color-name": "1.1.3" } }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, "commander": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/commander/-/commander-2.0.0.tgz", "integrity": "sha1-0bhvkB+LZL2UG96tr5JFMDk76Sg=" }, "compressible": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.11.tgz", - "integrity": "sha1-FnGKdd4oPtjmBAQWJaIGRYZ5fYo=", + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.12.tgz", + "integrity": "sha1-xZpcmdt2dn6YdlAOJx72OzSTvWY=", "requires": { - "mime-db": "1.30.0" + "mime-db": "1.32.0" }, "dependencies": { "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.32.0.tgz", + "integrity": "sha512-+ZWo/xZN40Tt6S+HyakUxnSOgff+JEdaneLWIm0Z6LmpCn5DMcZntLyUY5c/rTDog28LhXLKOUZKoTxTCAdBVw==" } } }, @@ -424,43 +420,74 @@ "requires": { "accepts": "1.2.13", "bytes": "2.1.0", - "compressible": "2.0.11", - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "compressible": "2.0.12", + "debug": "2.2.0", "on-headers": "1.0.1", "vary": "1.0.1" + }, + "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "requires": { + "ms": "0.7.1" + } + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" + } } }, - "concat-map": { - "version": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, "concat-stream": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", "requires": { - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "inherits": "2.0.3", "readable-stream": "2.0.6", "typedarray": "0.0.6" }, "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, "readable-stream": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", "requires": { - "core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "core-util-is": "1.0.2", + "inherits": "2.0.3", "isarray": "1.0.0", - "process-nextick-args": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "process-nextick-args": "1.0.7", "string_decoder": "0.10.31", - "util-deprecate": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + "util-deprecate": "1.0.2" } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" } } }, @@ -479,14 +506,14 @@ "cookie-parser": "1.3.5", "cookie-signature": "1.0.6", "csurf": "1.8.3", - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "debug": "2.2.0", "depd": "1.0.1", "errorhandler": "1.4.3", "express-session": "1.11.3", "finalhandler": "0.4.0", "fresh": "0.3.0", "http-errors": "1.3.1", - "method-override": "2.3.9", + "method-override": "2.3.10", "morgan": "1.6.1", "multiparty": "3.3.2", "on-headers": "1.0.1", @@ -500,6 +527,21 @@ "type-is": "1.6.15", "utils-merge": "1.0.0", "vhost": "3.0.2" + }, + "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "requires": { + "ms": "0.7.1" + } + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" + } } }, "connect-timeout": { @@ -507,10 +549,25 @@ "resolved": "https://registry.npmjs.org/connect-timeout/-/connect-timeout-1.6.2.tgz", "integrity": "sha1-3ppexh4zoStu2qt7XwYumMWZuI4=", "requires": { - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "debug": "2.2.0", "http-errors": "1.3.1", - "ms": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "ms": "0.7.1", "on-headers": "1.0.1" + }, + "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "requires": { + "ms": "0.7.1" + } + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" + } } }, "console-control-strings": { @@ -560,10 +617,6 @@ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" }, - "core-util-is": { - "version": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, "crc": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/crc/-/crc-3.3.0.tgz", @@ -576,29 +629,6 @@ "requires": { "lru-cache": "4.1.1", "which": "1.3.0" - }, - "dependencies": { - "lru-cache": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", - "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", - "requires": { - "pseudomap": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "yallist": "2.1.2" - } - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" - } - } - }, - "cryptiles": { - "version": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", - "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", - "requires": { - "boom": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz" } }, "csrf": { @@ -635,19 +665,6 @@ "array-find-index": "1.0.2" } }, - "dashdash": { - "version": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" - }, - "dependencies": { - "assert-plus": { - "version": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - } - }, "debug": { "version": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", @@ -655,10 +672,6 @@ "ms": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" } }, - "decamelize": { - "version": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - }, "decompress": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/decompress/-/decompress-0.2.5.tgz", @@ -675,10 +688,6 @@ "tempfile": "0.1.3" } }, - "delayed-stream": { - "version": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, "delegates": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", @@ -718,8 +727,337 @@ "get-urls": "0.1.2", "mkdirp": "0.3.5", "nopt": "2.2.1", - "request": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", + "request": "2.83.0", "through2": "0.4.2" + }, + "dependencies": { + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "boom": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", + "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", + "requires": { + "hoek": "4.2.0" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "requires": { + "delayed-stream": "1.0.0" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cryptiles": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", + "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", + "requires": { + "boom": "5.2.0" + }, + "dependencies": { + "boom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", + "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", + "requires": { + "hoek": "4.2.0" + } + } + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "1.0.0" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz", + "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=", + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.17" + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "1.0.0" + } + }, + "har-validator": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", + "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", + "requires": { + "ajv": "5.5.2", + "har-schema": "2.0.0" + } + }, + "hawk": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", + "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", + "requires": { + "boom": "4.3.1", + "cryptiles": "3.1.2", + "hoek": "4.2.0", + "sntp": "2.1.0" + } + }, + "hoek": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz", + "integrity": "sha512-v0XCLxICi9nPfYrS9RL8HbYnXi9obYAeLbSP00BmnZwCK9+Ih9WOjoZ8YoHCoav2csqn4FOz4Orldsy2dmDwmQ==" + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "1.0.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "optional": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "mime-db": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", + "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" + }, + "mime-types": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", + "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", + "requires": { + "mime-db": "1.30.0" + } + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, + "qs": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", + "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" + }, + "request": { + "version": "2.83.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz", + "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==", + "requires": { + "aws-sign2": "0.7.0", + "aws4": "1.6.0", + "caseless": "0.12.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.3.1", + "har-validator": "5.0.3", + "hawk": "6.0.2", + "http-signature": "1.2.0", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.17", + "oauth-sign": "0.8.2", + "performance-now": "2.1.0", + "qs": "6.5.1", + "safe-buffer": "5.1.1", + "stringstream": "0.0.5", + "tough-cookie": "2.3.3", + "tunnel-agent": "0.6.0", + "uuid": "3.2.1" + } + }, + "sntp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", + "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", + "requires": { + "hoek": "4.2.0" + } + }, + "sshpk": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", + "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + } + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=" + }, + "tough-cookie": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", + "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", + "requires": { + "punycode": "1.4.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "5.1.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "optional": true + }, + "uuid": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", + "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + } + } } }, "download-github-repo": { @@ -740,23 +1078,20 @@ "resolved": "https://registry.npmjs.org/each-async/-/each-async-0.1.3.tgz", "integrity": "sha1-tDYCWwjaL4ZggCVRnjCWdj3t/KM=" }, - "ecc-jsbn": { - "version": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", - "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", - "optional": true, - "requires": { - "jsbn": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz" - } - }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "ejs": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.3.4.tgz", - "integrity": "sha1-PHbKoJZks1g7ADevncE2557Gi5g=" + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.5.7.tgz", + "integrity": "sha1-zIcsFoiArjxxiXYv1f/ACJbJUYo=" + }, + "electron-to-chromium": { + "version": "1.3.31", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.31.tgz", + "integrity": "sha512-XE4CLbswkZgZFn34cKFy1xaX+F5LHxeDLjY1+rsK9asDzknhbrd9g/n/01/acbU25KTsUSiLKwvlLyA+6XLUOA==" }, "envy-json": { "version": "0.2.1", @@ -764,19 +1099,12 @@ "integrity": "sha1-Oo4+nWzWH9P6OUCPGt4CDTnBsXg=" }, "errno": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.4.tgz", - "integrity": "sha1-uJbiOp5ei6M4cfyZar02NfyaHH0=", + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.6.tgz", + "integrity": "sha512-IsORQDpaaSwcDP4ZZnHxgE85werpo34VYn1Ud3mq+eUsF593faR8oCZNXrROVkpFu2TsbrNhHin0aUrTsQ9vNw==", "optional": true, "requires": { - "prr": "0.0.0" - } - }, - "error-ex": { - "version": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.0.tgz", - "integrity": "sha1-5ntD8+gsluo6WE/+4Ln8MyXYAtk=", - "requires": { - "is-arrayish": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" + "prr": "1.0.1" } }, "errorhandler": { @@ -822,10 +1150,6 @@ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" }, - "escape-string-regexp": { - "version": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, "etag": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz", @@ -844,7 +1168,7 @@ "cookie": "0.1.3", "cookie-signature": "1.0.6", "crc": "3.3.0", - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "debug": "2.2.0", "depd": "1.0.1", "on-headers": "1.0.1", "parseurl": "1.3.0", @@ -852,6 +1176,19 @@ "utils-merge": "1.0.0" }, "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "requires": { + "ms": "0.7.1" + } + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" + }, "uid-safe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.0.0.tgz", @@ -879,53 +1216,47 @@ "underscore.string": "2.3.3" } }, - "extend": { - "version": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz", - "integrity": "sha1-WkdDU7nzNT3dgXbf03uRyDpG8dQ=" + "fast-deep-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz", + "integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=" }, - "extsprintf": { - "version": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz", - "integrity": "sha1-4QgOBljjALBilJkMxw4VAiNf1VA=" + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" }, "finalhandler": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz", "integrity": "sha1-llpS2ejQXSuFdUhUH7ibU6JJfZs=", "requires": { - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "debug": "2.2.0", "escape-html": "1.0.2", "on-finished": "2.3.0", "unpipe": "1.0.0" }, "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "requires": { + "ms": "0.7.1" + } + }, "escape-html": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.2.tgz", "integrity": "sha1-130y+pjjjC9BroXpJ44ODmuhAiw=" + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" } } }, - "find-up": { - "version": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "requires": { - "path-exists": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "pinkie-promise": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz" - } - }, - "forever-agent": { - "version": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "form-data": { - "version": "https://registry.npmjs.org/form-data/-/form-data-2.1.2.tgz", - "integrity": "sha1-icNTQAi5fq2ky7FX1Y9vXfAl6uQ=", - "requires": { - "asynckit": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "combined-stream": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", - "mime-types": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.14.tgz" - } - }, "fresh": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz", @@ -952,17 +1283,27 @@ "integrity": "sha1-czfwWPu7vvqMn1YaKMqwhJICyYg=", "requires": { "graceful-fs": "3.0.11", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "inherits": "2.0.3", "mkdirp": "0.5.1", "rimraf": "2.6.2" }, "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", "requires": { - "minimist": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + "minimist": "0.0.8" } } } @@ -982,15 +1323,56 @@ "has-unicode": "2.0.1", "object-assign": "4.1.1", "signal-exit": "3.0.2", - "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "string-width": "1.0.2", + "strip-ansi": "3.0.1", "wide-align": "1.1.2" }, "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "1.0.1" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "2.1.1" + } } } }, @@ -1002,21 +1384,6 @@ "globule": "1.2.0" } }, - "generate-function": { - "version": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", - "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=" - }, - "generate-object-property": { - "version": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", - "requires": { - "is-property": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz" - } - }, - "get-caller-file": { - "version": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", - "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=" - }, "get-stdin": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-0.1.0.tgz", @@ -1027,19 +1394,6 @@ "resolved": "https://registry.npmjs.org/get-urls/-/get-urls-0.1.2.tgz", "integrity": "sha1-kqPlziua8tJ2T/UZhoHbNzInuEQ=" }, - "getpass": { - "version": "https://registry.npmjs.org/getpass/-/getpass-0.1.6.tgz", - "integrity": "sha1-KD/9n8ElaECHUxHBtg6MQBhxEOY=", - "requires": { - "assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" - }, - "dependencies": { - "assert-plus": { - "version": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - } - }, "glob": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", @@ -1047,10 +1401,22 @@ "requires": { "fs.realpath": "1.0.0", "inflight": "1.0.6", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "inherits": "2.0.3", "minimatch": "3.0.4", "once": "1.4.0", - "path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" + "path-is-absolute": "1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + } } }, "globule": { @@ -1061,13 +1427,6 @@ "glob": "7.1.2", "lodash": "4.17.4", "minimatch": "3.0.4" - }, - "dependencies": { - "lodash": { - "version": "4.17.4", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=" - } } }, "got": { @@ -1083,36 +1442,18 @@ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", "requires": { - "natives": "1.1.0" + "natives": "1.1.1" } }, - "graceful-readlink": { - "version": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" - }, - "har-validator": { - "version": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", - "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", - "requires": { - "chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "commander": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", - "is-my-json-valid": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz", - "pinkie-promise": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz" - }, - "dependencies": { - "commander": { - "version": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", - "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", - "requires": { - "graceful-readlink": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" - } - } - } + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" }, "harp": { - "version": "0.24.0", - "resolved": "https://registry.npmjs.org/harp/-/harp-0.24.0.tgz", - "integrity": "sha512-CHqO1CxcjF0VVsr8i3ievfMVwp4ig2gZQGT+wM67S3ODLnSdunX87rOzeMn09H181HfiSvZazydI/E0L91cPZQ==", + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/harp/-/harp-0.25.0.tgz", + "integrity": "sha512-vNpVTpbmZP1ZF9Rd5hdjEuOa1tSPaUaUWRaFI406KorMOVzrJFWPU+BAr2X99dlTzQUXPwXapkWGhV8jJMK6eA==", "requires": { "async": "0.2.9", "commander": "2.0.0", @@ -1125,7 +1466,7 @@ "parseurl": "1.3.0", "pause": "0.1.0", "send": "0.13.0", - "terraform": "1.4.0" + "terraform": "1.5.0" } }, "harp-minify": { @@ -1147,57 +1488,42 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", "requires": { - "graceful-readlink": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" + "graceful-readlink": "1.0.1" } }, + "graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, "uglify-js": { "version": "2.6.1", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.6.1.tgz", "integrity": "sha1-7bvhiIujUl3tOnv4NrMLNAXTFhs=", "requires": { "async": "0.2.9", - "source-map": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "source-map": "0.5.7", "uglify-to-browserify": "1.0.2", "yargs": "3.10.0" } } } }, - "has-ansi": { - "version": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "requires": { - "ansi-regex": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz" - } - }, "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", + "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" }, "has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" }, - "hawk": { - "version": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", - "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", - "requires": { - "boom": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", - "cryptiles": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", - "hoek": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", - "sntp": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz" - } - }, - "hoek": { - "version": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", - "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=" - }, - "hosted-git-info": { - "version": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.2.0.tgz", - "integrity": "sha1-eg0JeGPYhsD6u9zTe/F1jYvs+KU=" - }, "html-minifier": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-1.1.1.tgz", @@ -1211,13 +1537,18 @@ "uglify-js": "2.6.4" }, "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, "uglify-js": { "version": "2.6.4", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.6.4.tgz", "integrity": "sha1-ZeovswWck5RpLxX+2HwrNsFrmt8=", "requires": { "async": "0.2.9", - "source-map": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "source-map": "0.5.7", "uglify-to-browserify": "1.0.2", "yargs": "3.10.0" } @@ -1229,17 +1560,15 @@ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz", "integrity": "sha1-GX4izevUGYWF6GlO9nhhl7ke2UI=", "requires": { - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "statuses": "1.3.1" - } - }, - "http-signature": { - "version": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", - "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", - "requires": { - "assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", - "jsprim": "https://registry.npmjs.org/jsprim/-/jsprim-1.3.1.tgz", - "sshpk": "https://registry.npmjs.org/sshpk/-/sshpk-1.10.2.tgz" + "inherits": "2.0.3", + "statuses": "1.4.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } } }, "iconv-lite": { @@ -1248,9 +1577,9 @@ "integrity": "sha1-LstC/SlHRJIiCaLnxATayHk9it4=" }, "image-size": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.3.5.tgz", - "integrity": "sha1-gyQOqy+1sAsEqrjHSwRx6cunrYw=", + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", "optional": true }, "in-publish": { @@ -1263,7 +1592,30 @@ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", "requires": { - "repeating": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz" + "repeating": "2.0.1" + }, + "dependencies": { + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "requires": { + "number-is-nan": "1.0.1" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "requires": { + "is-finite": "1.0.2" + } + } } }, "inflight": { @@ -1272,30 +1624,14 @@ "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "requires": { "once": "1.4.0", - "wrappy": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" - } - }, - "inherits": { - "version": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "invert-kv": { - "version": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" - }, - "is-arrayish": { - "version": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - }, - "is-buffer": { - "version": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.4.tgz", - "integrity": "sha1-z8hszV3FpS+oBIkRHGkgxFfi2Ys=" - }, - "is-builtin-module": { - "version": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", - "requires": { - "builtin-modules": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz" + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } } }, "is-expression": { @@ -1314,20 +1650,6 @@ } } }, - "is-finite": { - "version": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "requires": { - "number-is-nan": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz" - } - }, - "is-fullwidth-code-point": { - "version": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { - "number-is-nan": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz" - } - }, "is-lower-case": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz", @@ -1336,28 +1658,6 @@ "lower-case": "1.1.4" } }, - "is-my-json-valid": { - "version": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz", - "integrity": "sha1-k27do8o8IR/ZjzstPgjaQ/eykVs=", - "requires": { - "generate-function": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", - "generate-object-property": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "jsonpointer": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", - "xtend": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" - } - }, - "is-promise": { - "version": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" - }, - "is-property": { - "version": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", - "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=" - }, - "is-typedarray": { - "version": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, "is-upper-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz", @@ -1366,10 +1666,6 @@ "upper-case": "1.1.3" } }, - "is-utf8": { - "version": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" - }, "isarray": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", @@ -1380,10 +1676,6 @@ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" }, - "isstream": { - "version": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, "jjade": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/jjade/-/jjade-1.11.1.tgz", @@ -1406,55 +1698,63 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", "requires": { - "graceful-readlink": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" + "graceful-readlink": "1.0.1" } }, + "graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", "requires": { - "minimist": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + "minimist": "0.0.8" } }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, "uglify-js": { "version": "2.8.29", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", "requires": { - "source-map": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "source-map": "0.5.7", "uglify-to-browserify": "1.0.2", "yargs": "3.10.0" } } } }, - "jodid25519": { - "version": "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz", - "integrity": "sha1-BtSRIlUJNBlHfUJWM2BuDpB4KWc=", + "js-base64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.1.tgz", + "integrity": "sha512-2h586r2I/CqU7z1aa1kBgWaVAXWAZK+zHnceGi/jFgn7+7VSluxYer/i3xOZVearCxxXvyDkLtTBo+OeJCA3kA==" + }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" + }, + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", "optional": true, "requires": { - "jsbn": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz" + "jsonify": "0.0.0" } }, - "js-base64": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.3.2.tgz", - "integrity": "sha512-Y2/+DnfJJXT1/FCwUebUhLWb3QihxiSC42+ctHLGogmW2jPY6LCapMdFZXRvVP2z6qyKW7s6qncE/9gSqZiArw==" - }, - "jsbn": { - "version": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "optional": true - }, - "json-schema": { - "version": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "json-stringify-safe": { - "version": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, "jsonfile": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", @@ -1471,25 +1771,18 @@ } } }, - "jsonpointer": { - "version": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", - "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=" - }, - "jsprim": { - "version": "https://registry.npmjs.org/jsprim/-/jsprim-1.3.1.tgz", - "integrity": "sha1-KnJW9wQSop7jZwqspiWZTE3P8lI=", - "requires": { - "extsprintf": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz", - "json-schema": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "verror": "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz" - } + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "optional": true }, "jstransformer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz", "integrity": "sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=", "requires": { - "is-promise": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "is-promise": "2.1.0", "promise": "7.3.1" }, "dependencies": { @@ -1498,6 +1791,11 @@ "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" }, + "is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" + }, "promise": { "version": "7.3.1", "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", @@ -1516,13 +1814,6 @@ "markdown": "0.5.0" } }, - "kind-of": { - "version": "https://registry.npmjs.org/kind-of/-/kind-of-3.1.0.tgz", - "integrity": "sha1-R11pil5J/15T0U4+cyQp3Iv0z0c=", - "requires": { - "is-buffer": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.4.tgz" - } - }, "language-classifier": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/language-classifier/-/language-classifier-0.0.1.tgz", @@ -1531,89 +1822,480 @@ "classifier": "0.1.0" } }, - "lazy-cache": { - "version": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" - }, - "lcid": { - "version": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", - "requires": { - "invert-kv": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz" - } - }, "less": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/less/-/less-2.5.3.tgz", - "integrity": "sha1-n/WG6KcDUV/Bjcmce8SY0vOtSEk=", + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/less/-/less-2.7.3.tgz", + "integrity": "sha512-KPdIJKWcEAb02TuJtaLrhue0krtRLoRoo7x6BNJIBelO00t/CCdJQUnHW5V34OnHMWzIktSalJxRO+FvytQlCQ==", "requires": { - "errno": "0.1.4", - "graceful-fs": "3.0.11", - "image-size": "0.3.5", + "errno": "0.1.6", + "graceful-fs": "4.1.11", + "image-size": "0.5.5", "mime": "1.3.6", "mkdirp": "0.5.1", - "promise": "https://registry.npmjs.org/promise/-/promise-6.1.0.tgz", - "request": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", - "source-map": "0.4.4" + "promise": "7.3.1", + "request": "2.81.0", + "source-map": "0.5.7" }, "dependencies": { + "ajv": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", + "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", + "optional": true, + "requires": { + "co": "4.6.0", + "json-stable-stringify": "1.0.1" + } + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", + "optional": true + }, + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", + "optional": true + }, + "assert-plus": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", + "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", + "optional": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "optional": true + }, + "aws-sign2": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", + "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", + "optional": true + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=", + "optional": true + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "requires": { + "hoek": "2.16.3" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "optional": true + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "requires": { + "delayed-stream": "1.0.0" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "optional": true + }, + "cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "optional": true, + "requires": { + "boom": "2.10.1" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "optional": true, + "requires": { + "assert-plus": "1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "optional": true + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "optional": true + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "optional": true + }, + "form-data": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", + "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", + "optional": true, + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.17" + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "optional": true, + "requires": { + "assert-plus": "1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "optional": true + } + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "optional": true + }, + "har-schema": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz", + "integrity": "sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4=", + "optional": true + }, + "har-validator": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz", + "integrity": "sha1-M0gdDxu/9gDdID11gSpqX7oALio=", + "optional": true, + "requires": { + "ajv": "4.11.8", + "har-schema": "1.0.5" + } + }, + "hawk": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", + "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", + "optional": true, + "requires": { + "boom": "2.10.1", + "cryptiles": "2.0.5", + "hoek": "2.16.3", + "sntp": "1.0.9" + } + }, + "hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=" + }, + "http-signature": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", + "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", + "optional": true, + "requires": { + "assert-plus": "0.2.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "optional": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "optional": true + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "optional": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "optional": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "optional": true + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "optional": true + } + } + }, + "mime-db": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", + "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" + }, + "mime-types": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", + "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", + "requires": { + "mime-db": "1.30.0" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "optional": true + }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", "optional": true, "requires": { - "minimist": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + "minimist": "0.0.8" + } + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "optional": true + }, + "performance-now": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz", + "integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=", + "optional": true + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "optional": true, + "requires": { + "asap": "2.0.6" + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "optional": true + }, + "qs": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", + "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=", + "optional": true + }, + "request": { + "version": "2.81.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.81.0.tgz", + "integrity": "sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA=", + "optional": true, + "requires": { + "aws-sign2": "0.6.0", + "aws4": "1.6.0", + "caseless": "0.12.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.1.4", + "har-validator": "4.2.1", + "hawk": "3.1.3", + "http-signature": "1.1.1", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.17", + "oauth-sign": "0.8.2", + "performance-now": "0.2.0", + "qs": "6.4.0", + "safe-buffer": "5.1.1", + "stringstream": "0.0.5", + "tough-cookie": "2.3.3", + "tunnel-agent": "0.6.0", + "uuid": "3.2.1" + } + }, + "sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "optional": true, + "requires": { + "hoek": "2.16.3" } }, "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "optional": true + }, + "sshpk": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", + "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", "optional": true, "requires": { - "amdefine": "1.0.1" + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "optional": true + } + } + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", + "optional": true + }, + "tough-cookie": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", + "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", + "optional": true, + "requires": { + "punycode": "1.4.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "optional": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "optional": true + }, + "uuid": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", + "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==", + "optional": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "optional": true + } } - } - } - }, - "load-json-file": { - "version": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "requires": { - "graceful-fs": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "parse-json": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "pify": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "pinkie-promise": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "strip-bom": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz" - }, - "dependencies": { - "graceful-fs": { - "version": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" } } }, "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=" - }, - "lodash.assign": { - "version": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" - }, - "lodash.clonedeep": { - "version": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" - }, - "lodash.mergewith": { - "version": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz", - "integrity": "sha1-FQzwoWeR9ZA7iJHqsVRgknS96lU=" - }, - "longest": { - "version": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" + "version": "4.17.4", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", + "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=" }, "loud-rejection": { "version": "1.6.0", @@ -1638,12 +2320,24 @@ } }, "lru-cache": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.0.tgz", - "integrity": "sha1-tcvwFVbBaWb+vlTO7A+03JDfbCg=", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", + "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", "requires": { - "pseudomap": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "yallist": "https://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz" + "pseudomap": "1.0.2", + "yallist": "2.1.2" + }, + "dependencies": { + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" + } } }, "map-obj": { @@ -1659,20 +2353,25 @@ "nopt": "2.1.2" }, "dependencies": { + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, "nopt": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/nopt/-/nopt-2.1.2.tgz", "integrity": "sha1-bMzZd7gBMqB3MdbozljCyDA8+a8=", "requires": { - "abbrev": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz" + "abbrev": "1.1.1" } } } }, "marked": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/marked/-/marked-0.3.5.tgz", - "integrity": "sha1-QROhWsXXvKFYpargciRYe5+hW5Q=" + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/marked/-/marked-0.3.6.tgz", + "integrity": "sha1-ssbGGPzOzk74bE/Gy4p8v1rtqNc=" }, "media-typer": { "version": "0.3.0", @@ -1685,44 +2384,225 @@ "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", "requires": { "camelcase-keys": "2.1.0", - "decamelize": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "decamelize": "1.2.0", "loud-rejection": "1.6.0", "map-obj": "1.0.1", "minimist": "1.2.0", - "normalize-package-data": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz", + "normalize-package-data": "2.4.0", "object-assign": "4.1.1", - "read-pkg-up": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "read-pkg-up": "1.0.1", "redent": "1.0.0", "trim-newlines": "1.0.0" }, "dependencies": { + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "error-ex": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", + "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "requires": { + "is-arrayish": "0.2.1" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "requires": { + "path-exists": "2.1.0", + "pinkie-promise": "2.0.1" + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + }, + "hosted-git-info": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", + "integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==" + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "requires": { + "builtin-modules": "1.1.1" + } + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "requires": { + "graceful-fs": "4.1.11", + "parse-json": "2.2.0", + "pify": "2.3.0", + "pinkie-promise": "2.0.1", + "strip-bom": "2.0.0" + } + }, "minimist": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" }, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", + "requires": { + "hosted-git-info": "2.5.0", + "is-builtin-module": "1.0.0", + "semver": "5.5.0", + "validate-npm-package-license": "3.0.1" + } + }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "requires": { + "error-ex": "1.3.1" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "requires": { + "pinkie-promise": "2.0.1" + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "requires": { + "graceful-fs": "4.1.11", + "pify": "2.3.0", + "pinkie-promise": "2.0.1" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "2.0.4" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "requires": { + "load-json-file": "1.1.0", + "normalize-package-data": "2.4.0", + "path-type": "1.1.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "requires": { + "find-up": "1.1.2", + "read-pkg": "1.1.0" + } + }, + "semver": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" + }, + "spdx-correct": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", + "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", + "requires": { + "spdx-license-ids": "1.2.2" + } + }, + "spdx-expression-parse": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", + "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=" + }, + "spdx-license-ids": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", + "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=" + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "0.2.1" + } + }, + "validate-npm-package-license": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", + "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", + "requires": { + "spdx-correct": "1.0.2", + "spdx-expression-parse": "1.0.4" + } } } }, "method-override": { - "version": "2.3.9", - "resolved": "https://registry.npmjs.org/method-override/-/method-override-2.3.9.tgz", - "integrity": "sha1-vRUfLONM8Bp2ykAKuVwBKxAtj3E=", + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/method-override/-/method-override-2.3.10.tgz", + "integrity": "sha1-49r41d7hDdLc59SuiNYrvud0drQ=", "requires": { - "debug": "2.6.8", + "debug": "2.6.9", "methods": "1.1.2", "parseurl": "1.3.2", - "vary": "1.1.1" + "vary": "1.1.2" }, "dependencies": { "debug": { - "version": "2.6.8", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", - "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "requires": { "ms": "2.0.0" } @@ -1738,9 +2618,9 @@ "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" }, "vary": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.1.tgz", - "integrity": "sha1-Z1Neu2lMHVIldFeYRmUyP1h+jTc=" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" } } }, @@ -1754,45 +2634,14 @@ "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz", "integrity": "sha1-WR2E02U6awtKO5343lqoEI5y5eA=" }, - "mime-db": { - "version": "https://registry.npmjs.org/mime-db/-/mime-db-1.26.0.tgz", - "integrity": "sha1-6v/NDk/Gk1z4E02iRuLmw1MFrf8=" - }, - "mime-types": { - "version": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.14.tgz", - "integrity": "sha1-9+99l1g/yvO30oK2+LVnnaselO4=", - "requires": { - "mime-db": "https://registry.npmjs.org/mime-db/-/mime-db-1.26.0.tgz" - } - }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "requires": { "brace-expansion": "1.1.8" - }, - "dependencies": { - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "brace-expansion": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", - "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", - "requires": { - "balanced-match": "1.0.0", - "concat-map": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" - } - } } }, - "minimist": { - "version": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - }, "mkdirp": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz", @@ -1804,10 +2653,25 @@ "integrity": "sha1-X9gYOYxoGcuiinzWZk8pL+HAu/I=", "requires": { "basic-auth": "1.0.4", - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "debug": "2.2.0", "depd": "1.0.1", "on-finished": "2.3.0", "on-headers": "1.0.1" + }, + "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "requires": { + "ms": "0.7.1" + } + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" + } } }, "ms": { @@ -1824,14 +2688,14 @@ } }, "nan": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.7.0.tgz", - "integrity": "sha1-2Vv3IeyHfgjbJ27T/G63j5CDrUY=" + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz", + "integrity": "sha1-7XFfP+neArV6XmJS2QqWZ14fCFo=" }, "natives": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.0.tgz", - "integrity": "sha1-6f+EFBimsux6SV6TmYT3jxY+bjE=" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.1.tgz", + "integrity": "sha512-8eRaxn8u/4wN8tGkhlc2cgwwvOLMLUMUn4IYTexMgWd+LyUDfeXVkk2ygQR0hvIHbJQXgHujia3ieUUDwNGkEA==" }, "negotiator": { "version": "0.5.3", @@ -1850,38 +2714,362 @@ "mkdirp": "0.5.1", "nopt": "2.2.1", "npmlog": "4.1.2", - "osenv": "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz", - "request": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", + "osenv": "0.1.4", + "request": "2.83.0", "rimraf": "2.6.2", - "semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", + "semver": "5.3.0", "tar": "2.2.1", "which": "1.3.0" }, "dependencies": { + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "boom": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", + "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", + "requires": { + "hoek": "4.2.0" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "requires": { + "delayed-stream": "1.0.0" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cryptiles": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", + "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", + "requires": { + "boom": "5.2.0" + }, + "dependencies": { + "boom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", + "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", + "requires": { + "hoek": "4.2.0" + } + } + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "1.0.0" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz", + "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=", + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.17" + } + }, "fstream": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz", "integrity": "sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=", "requires": { "graceful-fs": "4.1.11", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "inherits": "2.0.3", "mkdirp": "0.5.1", "rimraf": "2.6.2" } }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "1.0.0" + } + }, "graceful-fs": { "version": "4.1.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" }, + "har-validator": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", + "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", + "requires": { + "ajv": "5.5.2", + "har-schema": "2.0.0" + } + }, + "hawk": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", + "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", + "requires": { + "boom": "4.3.1", + "cryptiles": "3.1.2", + "hoek": "4.2.0", + "sntp": "2.1.0" + } + }, + "hoek": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz", + "integrity": "sha512-v0XCLxICi9nPfYrS9RL8HbYnXi9obYAeLbSP00BmnZwCK9+Ih9WOjoZ8YoHCoav2csqn4FOz4Orldsy2dmDwmQ==" + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "1.0.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "optional": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "mime-db": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", + "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" + }, + "mime-types": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", + "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", + "requires": { + "mime-db": "1.30.0" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", "requires": { - "minimist": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + "minimist": "0.0.8" } }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + }, + "osenv": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz", + "integrity": "sha1-Qv5tWVPfBsgGS+bxdsPQWqqjRkQ=", + "requires": { + "os-homedir": "1.0.2", + "os-tmpdir": "1.0.2" + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, + "qs": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", + "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" + }, + "request": { + "version": "2.83.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz", + "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==", + "requires": { + "aws-sign2": "0.7.0", + "aws4": "1.6.0", + "caseless": "0.12.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.3.1", + "har-validator": "5.0.3", + "hawk": "6.0.2", + "http-signature": "1.2.0", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.17", + "oauth-sign": "0.8.2", + "performance-now": "2.1.0", + "qs": "6.5.1", + "safe-buffer": "5.1.1", + "stringstream": "0.0.5", + "tough-cookie": "2.3.3", + "tunnel-agent": "0.6.0", + "uuid": "3.2.1" + } + }, + "semver": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", + "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=" + }, + "sntp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", + "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", + "requires": { + "hoek": "4.2.0" + } + }, + "sshpk": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", + "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + } + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=" + }, "tar": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz", @@ -1889,48 +3077,560 @@ "requires": { "block-stream": "0.0.9", "fstream": "1.0.11", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" + "inherits": "2.0.3" + } + }, + "tough-cookie": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", + "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", + "requires": { + "punycode": "1.4.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "5.1.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "optional": true + }, + "uuid": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", + "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" } } } }, "node-sass": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.5.3.tgz", - "integrity": "sha1-0JydEXlkEjnRuX/8YjH9zsU+FWg=", + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.7.2.tgz", + "integrity": "sha512-CaV+wLqZ7//Jdom5aUFCpGNoECd7BbNhjuwdsX/LkXBrHl8eb1Wjw4HvWqcFvhr5KuNgAk8i/myf/MQ1YYeroA==", "requires": { "async-foreach": "0.1.3", - "chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "chalk": "1.1.3", "cross-spawn": "3.0.1", "gaze": "1.1.2", "get-stdin": "4.0.1", "glob": "7.1.2", "in-publish": "2.0.0", - "lodash.assign": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "lodash.clonedeep": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "lodash.mergewith": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz", + "lodash.assign": "4.2.0", + "lodash.clonedeep": "4.5.0", + "lodash.mergewith": "4.6.0", "meow": "3.7.0", "mkdirp": "0.5.1", - "nan": "2.7.0", + "nan": "2.8.0", "node-gyp": "3.6.2", "npmlog": "4.1.2", - "request": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", + "request": "2.79.0", "sass-graph": "2.2.4", - "stdout-stream": "1.4.0" + "stdout-stream": "1.4.0", + "true-case-path": "1.0.2" }, "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" + }, + "assert-plus": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", + "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", + "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=" + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "requires": { + "hoek": "2.16.3" + } + }, + "caseless": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", + "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "requires": { + "ansi-styles": "2.2.1", + "escape-string-regexp": "1.0.5", + "has-ansi": "2.0.0", + "strip-ansi": "3.0.1", + "supports-color": "2.0.0" + } + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "requires": { + "delayed-stream": "1.0.0" + } + }, + "commander": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", + "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "requires": { + "boom": "2.10.1" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", + "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.17" + } + }, + "generate-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", + "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=" + }, + "generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "requires": { + "is-property": "1.0.2" + } + }, "get-stdin": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=" }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + } + } + }, + "har-validator": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", + "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", + "requires": { + "chalk": "1.1.3", + "commander": "2.13.0", + "is-my-json-valid": "2.17.1", + "pinkie-promise": "2.0.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "requires": { + "ansi-regex": "2.1.1" + } + }, + "hawk": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", + "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", + "requires": { + "boom": "2.10.1", + "cryptiles": "2.0.5", + "hoek": "2.16.3", + "sntp": "1.0.9" + } + }, + "hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=" + }, + "http-signature": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", + "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", + "requires": { + "assert-plus": "0.2.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "is-my-json-valid": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz", + "integrity": "sha512-Q2khNw+oBlWuaYvEEHtKSw/pCxD2L5Rc1C+UQme9X6JdRDh7m5D7HkozA0qa3DUkQ6VzCnEm8mVIQPyIRkI5sQ==", + "requires": { + "generate-function": "2.0.0", + "generate-object-property": "1.2.0", + "jsonpointer": "4.0.1", + "xtend": "4.0.1" + } + }, + "is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "optional": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsonpointer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", + "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=" + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + } + } + }, + "lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" + }, + "lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" + }, + "lodash.mergewith": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz", + "integrity": "sha1-FQzwoWeR9ZA7iJHqsVRgknS96lU=" + }, + "mime-db": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", + "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" + }, + "mime-types": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", + "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", + "requires": { + "mime-db": "1.30.0" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", "requires": { - "minimist": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + "minimist": "0.0.8" } + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "2.0.4" + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, + "qs": { + "version": "6.3.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz", + "integrity": "sha1-51vV9uJoEioqDgvaYwslUMFmUCw=" + }, + "request": { + "version": "2.79.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", + "integrity": "sha1-Tf5b9r6LjNw3/Pk+BLZVd3InEN4=", + "requires": { + "aws-sign2": "0.6.0", + "aws4": "1.6.0", + "caseless": "0.11.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.1.4", + "har-validator": "2.0.6", + "hawk": "3.1.3", + "http-signature": "1.1.1", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.17", + "oauth-sign": "0.8.2", + "qs": "6.3.2", + "stringstream": "0.0.5", + "tough-cookie": "2.3.3", + "tunnel-agent": "0.4.3", + "uuid": "3.2.1" + } + }, + "sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "requires": { + "hoek": "2.16.3" + } + }, + "sshpk": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", + "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + } + } + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=" + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "2.1.1" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + }, + "tough-cookie": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", + "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", + "requires": { + "punycode": "1.4.1" + } + }, + "tunnel-agent": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", + "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=" + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "optional": true + }, + "uuid": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", + "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + } + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" } } }, @@ -1939,17 +3639,14 @@ "resolved": "https://registry.npmjs.org/nopt/-/nopt-2.2.1.tgz", "integrity": "sha1-KqCbfRdoSHs7ianFqlIzW/8Lrqc=", "requires": { - "abbrev": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz" - } - }, - "normalize-package-data": { - "version": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz", - "integrity": "sha1-jZJPFClg4Xd+f/4XBUNjHMfLAt8=", - "requires": { - "hosted-git-info": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.2.0.tgz", - "is-builtin-module": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "validate-npm-package-license": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz" + "abbrev": "1.1.1" + }, + "dependencies": { + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + } } }, "normalize-range": { @@ -1965,7 +3662,14 @@ "are-we-there-yet": "1.1.4", "console-control-strings": "1.1.0", "gauge": "2.7.4", - "set-blocking": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" + "set-blocking": "2.0.0" + }, + "dependencies": { + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + } } }, "num2fraction": { @@ -1973,14 +3677,6 @@ "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" }, - "number-is-nan": { - "version": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" - }, - "oauth-sign": { - "version": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" - }, "object-assign": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-0.3.1.tgz", @@ -2009,30 +3705,14 @@ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "requires": { - "wrappy": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" - } - }, - "os-homedir": { - "version": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" - }, - "os-locale": { - "version": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "requires": { - "lcid": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz" - } - }, - "os-tmpdir": { - "version": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" - }, - "osenv": { - "version": "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz", - "integrity": "sha1-Qv5tWVPfBsgGS+bxdsPQWqqjRkQ=", - "requires": { - "os-homedir": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "os-tmpdir": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" + "wrappy": "1.0.2" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } } }, "param-case": { @@ -2043,13 +3723,6 @@ "sentence-case": "1.1.3" } }, - "parse-json": { - "version": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "requires": { - "error-ex": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.0.tgz" - } - }, "parseurl": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.0.tgz", @@ -2072,68 +3745,60 @@ "sentence-case": "1.1.3" } }, - "path-exists": { - "version": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "requires": { - "pinkie-promise": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz" - } - }, - "path-is-absolute": { - "version": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, - "path-type": { - "version": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "requires": { - "graceful-fs": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "pify": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "pinkie-promise": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz" - }, - "dependencies": { - "graceful-fs": { - "version": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - } - } - }, "pause": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/pause/-/pause-0.1.0.tgz", "integrity": "sha1-68ikqGGf8LioGsFRPDQ0/0af23Q=" }, - "pify": { - "version": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - }, - "pinkie": { - "version": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" - }, - "pinkie-promise": { - "version": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "requires": { - "pinkie": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz" - } + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" }, "postcss": { - "version": "5.0.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.0.14.tgz", - "integrity": "sha1-Fk2vqfPGd17lmZGc2mEK3rSV/Ow=", + "version": "6.0.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz", + "integrity": "sha512-NJ1z0f+1offCgadPhz+DvGm5Mkci+mmV5BqD13S992o0Xk9eElxUfPPF+t2ksH5R/17gz4xVK8KWocUQ5o3Rog==", "requires": { - "js-base64": "2.3.2", - "source-map": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", - "supports-color": "3.2.3" + "chalk": "2.3.0", + "source-map": "0.6.1", + "supports-color": "4.5.0" }, "dependencies": { - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "ansi-styles": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", + "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", "requires": { - "has-flag": "1.0.0" + "color-convert": "1.9.1" + } + }, + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", + "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", + "requires": { + "ansi-styles": "3.2.0", + "escape-string-regexp": "1.0.5", + "supports-color": "4.5.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "2.0.0" } } } @@ -2143,32 +3808,12 @@ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=" }, - "process-nextick-args": { - "version": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" - }, - "promise": { - "version": "https://registry.npmjs.org/promise/-/promise-6.1.0.tgz", - "integrity": "sha1-LOcp9rlLRcJoka0GAsXJDgTG7vY=", - "optional": true, - "requires": { - "asap": "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz" - } - }, "prr": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", - "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", "optional": true }, - "pseudomap": { - "version": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" - }, - "punycode": { - "version": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, "qs": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz", @@ -2214,32 +3859,27 @@ "gather-stream": "1.0.0" } }, - "read-pkg": { - "version": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "requires": { - "load-json-file": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "normalize-package-data": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz", - "path-type": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz" - } - }, - "read-pkg-up": { - "version": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "requires": { - "find-up": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "read-pkg": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz" - } - }, "readable-stream": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", "requires": { - "core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "core-util-is": "1.0.2", + "inherits": "2.0.3", "isarray": "0.0.1", "string_decoder": "0.10.31" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } } }, "redent": { @@ -2276,84 +3916,22 @@ "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" }, - "repeat-string": { - "version": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - }, - "repeating": { - "version": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "requires": { - "is-finite": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz" - } - }, - "request": { - "version": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", - "integrity": "sha1-Tf5b9r6LjNw3/Pk+BLZVd3InEN4=", - "requires": { - "aws-sign2": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", - "aws4": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", - "caseless": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "combined-stream": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", - "extend": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz", - "forever-agent": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "form-data": "https://registry.npmjs.org/form-data/-/form-data-2.1.2.tgz", - "har-validator": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", - "hawk": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", - "http-signature": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", - "is-typedarray": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "isstream": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "json-stringify-safe": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "mime-types": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.14.tgz", - "oauth-sign": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "qs": "https://registry.npmjs.org/qs/-/qs-6.3.0.tgz", - "stringstream": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", - "tough-cookie": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz", - "tunnel-agent": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", - "uuid": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz" - }, - "dependencies": { - "qs": { - "version": "https://registry.npmjs.org/qs/-/qs-6.3.0.tgz", - "integrity": "sha1-9AOyZPI7wBIox0ExtAfxjV6l1EI=" - }, - "uuid": { - "version": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz", - "integrity": "sha1-ZUS7ot/ajBzxfmKaOjBeK7H+5sE=" - } - } - }, - "require-directory": { - "version": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" - }, - "require-main-filename": { - "version": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" - }, "response-time": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/response-time/-/response-time-2.3.2.tgz", "integrity": "sha1-/6cbq5UtYvfB1Jt0NDVfvGjf/Fo=", "requires": { - "depd": "1.1.1", + "depd": "1.1.2", "on-headers": "1.0.1" }, "dependencies": { "depd": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", - "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" } } }, - "right-align": { - "version": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", - "requires": { - "align-text": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz" - } - }, "rimraf": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", @@ -2367,6 +3945,11 @@ "resolved": "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz", "integrity": "sha1-8z/pz7Urv9UgqhgyO8ZdsRCht2w=" }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" + }, "sass-graph": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", @@ -2378,6 +3961,16 @@ "yargs": "7.1.0" }, "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" + }, "camelcase": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", @@ -2388,15 +3981,282 @@ "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", "requires": { - "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "wrap-ansi": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz" + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wrap-ansi": "2.1.0" } }, - "lodash": { - "version": "4.17.4", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=" + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "error-ex": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", + "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "requires": { + "is-arrayish": "0.2.1" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "requires": { + "path-exists": "2.1.0", + "pinkie-promise": "2.0.1" + } + }, + "get-caller-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", + "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=" + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + }, + "hosted-git-info": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", + "integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==" + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "requires": { + "builtin-modules": "1.1.1" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "1.0.1" + } + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "requires": { + "invert-kv": "1.0.0" + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "requires": { + "graceful-fs": "4.1.11", + "parse-json": "2.2.0", + "pify": "2.3.0", + "pinkie-promise": "2.0.1", + "strip-bom": "2.0.0" + } + }, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", + "requires": { + "hosted-git-info": "2.5.0", + "is-builtin-module": "1.0.0", + "semver": "5.5.0", + "validate-npm-package-license": "3.0.1" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "requires": { + "lcid": "1.0.0" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "requires": { + "error-ex": "1.3.1" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "requires": { + "pinkie-promise": "2.0.1" + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "requires": { + "graceful-fs": "4.1.11", + "pify": "2.3.0", + "pinkie-promise": "2.0.1" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "2.0.4" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "requires": { + "load-json-file": "1.1.0", + "normalize-package-data": "2.4.0", + "path-type": "1.1.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "requires": { + "find-up": "1.1.2", + "read-pkg": "1.1.0" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + }, + "semver": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "spdx-correct": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", + "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", + "requires": { + "spdx-license-ids": "1.2.2" + } + }, + "spdx-expression-parse": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", + "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=" + }, + "spdx-license-ids": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", + "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=" + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "2.1.1" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "0.2.1" + } + }, + "validate-npm-package-license": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", + "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", + "requires": { + "spdx-correct": "1.0.2", + "spdx-expression-parse": "1.0.4" + } + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1" + } + }, + "y18n": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", + "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" }, "yargs": { "version": "7.1.0", @@ -2405,26 +4265,18 @@ "requires": { "camelcase": "3.0.0", "cliui": "3.2.0", - "decamelize": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "get-caller-file": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", - "os-locale": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "read-pkg-up": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "require-directory": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "require-main-filename": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "set-blocking": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "which-module": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "y18n": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", + "decamelize": "1.2.0", + "get-caller-file": "1.0.2", + "os-locale": "1.4.0", + "read-pkg-up": "1.0.1", + "require-directory": "2.1.1", + "require-main-filename": "1.0.1", + "set-blocking": "2.0.0", + "string-width": "1.0.2", + "which-module": "1.0.0", + "y18n": "3.2.1", "yargs-parser": "5.0.0" } - }, - "yargs-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", - "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", - "requires": { - "camelcase": "3.0.0" - } } } }, @@ -2438,7 +4290,7 @@ "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", "requires": { - "js-base64": "2.3.2", + "js-base64": "2.4.1", "source-map": "0.4.4" }, "dependencies": { @@ -2452,16 +4304,12 @@ } } }, - "semver": { - "version": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=" - }, "send": { "version": "0.13.0", "resolved": "https://registry.npmjs.org/send/-/send-0.13.0.tgz", "integrity": "sha1-UY+SGusFYK7H3KspkLFM9vPM5d4=", "requires": { - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "debug": "2.2.0", "depd": "1.0.1", "destroy": "1.0.3", "escape-html": "1.0.2", @@ -2469,12 +4317,20 @@ "fresh": "0.3.0", "http-errors": "1.3.1", "mime": "1.3.4", - "ms": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "ms": "0.7.1", "on-finished": "2.3.0", "range-parser": "1.0.3", "statuses": "1.2.1" }, "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "requires": { + "ms": "0.7.1" + } + }, "destroy": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.3.tgz", @@ -2490,6 +4346,11 @@ "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz", "integrity": "sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM=" }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" + }, "statuses": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.2.1.tgz", @@ -2535,13 +4396,39 @@ "requires": { "accepts": "1.2.13", "batch": "0.5.3", - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "debug": "2.2.0", "escape-html": "1.0.3", "http-errors": "1.3.1", - "mime-types": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.14.tgz", + "mime-types": "2.1.17", "parseurl": "1.3.2" }, "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "requires": { + "ms": "0.7.1" + } + }, + "mime-db": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", + "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" + }, + "mime-types": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", + "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", + "requires": { + "mime-db": "1.30.0" + } + }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" + }, "parseurl": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", @@ -2559,16 +4446,29 @@ "send": "0.13.2" }, "dependencies": { + "debug": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "requires": { + "ms": "0.7.1" + } + }, "depd": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", - "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" }, "mime": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz", "integrity": "sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM=" }, + "ms": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" + }, "parseurl": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", @@ -2579,15 +4479,15 @@ "resolved": "https://registry.npmjs.org/send/-/send-0.13.2.tgz", "integrity": "sha1-dl52B8gFVFK7pvCwUllTUJhgNt4=", "requires": { - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "depd": "1.1.1", + "debug": "2.2.0", + "depd": "1.1.2", "destroy": "1.0.4", "escape-html": "1.0.3", "etag": "1.7.0", "fresh": "0.3.0", "http-errors": "1.3.1", "mime": "1.3.4", - "ms": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "ms": "0.7.1", "on-finished": "2.3.0", "range-parser": "1.0.3", "statuses": "1.2.1" @@ -2600,10 +4500,6 @@ } } }, - "set-blocking": { - "version": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - }, "signal-exit": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", @@ -2617,62 +4513,15 @@ "sentence-case": "1.1.3" } }, - "sntp": { - "version": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", - "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", - "requires": { - "hoek": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz" - } - }, - "source-map": { - "version": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", - "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=" - }, - "spdx-correct": { - "version": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", - "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", - "requires": { - "spdx-license-ids": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz" - } - }, - "spdx-expression-parse": { - "version": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", - "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=" - }, - "spdx-license-ids": { - "version": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", - "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=" - }, "sqwish": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/sqwish/-/sqwish-0.2.2.tgz", "integrity": "sha1-AP4maBBPEii1u37nOe9gEhu8sFc=" }, - "sshpk": { - "version": "https://registry.npmjs.org/sshpk/-/sshpk-1.10.2.tgz", - "integrity": "sha1-1agEziJpVRVjjnmNviMnPeBwpfo=", - "requires": { - "asn1": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", - "assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "bcrypt-pbkdf": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", - "dashdash": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "ecc-jsbn": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", - "getpass": "https://registry.npmjs.org/getpass/-/getpass-0.1.6.tgz", - "jodid25519": "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz", - "jsbn": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "tweetnacl": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz" - }, - "dependencies": { - "assert-plus": { - "version": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - } - }, "statuses": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", - "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", + "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" }, "stdout-stream": { "version": "1.4.0", @@ -2682,30 +4531,40 @@ "readable-stream": "2.3.3" }, "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, "readable-stream": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", "requires": { - "core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "core-util-is": "1.0.2", + "inherits": "2.0.3", "isarray": "1.0.0", - "process-nextick-args": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "process-nextick-args": "1.0.7", "safe-buffer": "5.1.1", "string_decoder": "1.0.3", - "util-deprecate": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + "util-deprecate": "1.0.2" } }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" - }, "string_decoder": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", @@ -2713,6 +4572,11 @@ "requires": { "safe-buffer": "5.1.1" } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" } } }, @@ -2737,33 +4601,6 @@ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" }, - "string-width": { - "version": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { - "code-point-at": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "is-fullwidth-code-point": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" - } - }, - "stringstream": { - "version": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", - "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=" - }, - "strip-ansi": { - "version": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz" - } - }, - "strip-bom": { - "version": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "requires": { - "is-utf8": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz" - } - }, "strip-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", @@ -2799,20 +4636,35 @@ "requires": { "fs.realpath": "1.0.0", "inflight": "1.0.6", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "inherits": "2.0.3", "minimatch": "3.0.4", "once": "1.4.0", - "path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" + "path-is-absolute": "1.0.1" } }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", "requires": { - "minimist": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + "minimist": "0.0.8" } }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, "source-map": { "version": "0.1.43", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", @@ -2823,10 +4675,6 @@ } } }, - "supports-color": { - "version": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - }, "swap-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz", @@ -2843,7 +4691,14 @@ "requires": { "block-stream": "0.0.9", "fstream": "0.1.31", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } } }, "tempfile": { @@ -2855,23 +4710,30 @@ } }, "terraform": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/terraform/-/terraform-1.4.0.tgz", - "integrity": "sha512-EbdXeikIRWq7U1kHCRSIEZEc2cDjJsW3ZFevR+Y1F/FKcIaq2lUIrk7VVjI+6emo4ZS+4lq+yE4jGzICuP5V0g==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/terraform/-/terraform-1.5.0.tgz", + "integrity": "sha1-JzfvDlxeQ/eAfbcdXhJkaRTqAjk=", "requires": { - "autoprefixer": "6.2.3", - "coffee-script": "1.10.0", - "ejs": "2.3.4", + "autoprefixer": "7.1.6", + "coffee-script": "1.12.7", + "ejs": "2.5.7", "harp-minify": "0.4.0", "jjade": "1.11.1", - "less": "2.5.3", - "lodash": "3.10.1", - "lru-cache": "4.0.0", - "marked": "0.3.5", - "node-sass": "4.5.3", - "postcss": "5.0.14", + "less": "2.7.3", + "lodash": "4.17.4", + "lru-cache": "4.1.1", + "marked": "0.3.6", + "node-sass": "4.7.2", + "postcss": "6.0.14", "stylus": "0.54.5", - "through": "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + "through": "2.3.8" + }, + "dependencies": { + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + } } }, "thepusher": { @@ -2915,10 +4777,6 @@ } } }, - "through": { - "version": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" - }, "through2": { "version": "0.4.2", "resolved": "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz", @@ -2928,13 +4786,23 @@ "xtend": "2.1.2" }, "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, "readable-stream": { "version": "1.0.34", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", "requires": { - "core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "core-util-is": "1.0.2", + "inherits": "2.0.3", "isarray": "0.0.1", "string_decoder": "0.10.31" } @@ -2958,32 +4826,48 @@ "upper-case": "1.1.3" } }, - "tough-cookie": { - "version": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz", - "integrity": "sha1-8IH3bkyFcg5sN6X6ztc3FQ2EByo=", - "requires": { - "punycode": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz" - } - }, "trim-newlines": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=" }, + "true-case-path": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.2.tgz", + "integrity": "sha1-fskRMJJHZsf1c74wIMNPj9/QDWI=", + "requires": { + "glob": "6.0.4" + }, + "dependencies": { + "glob": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", + "integrity": "sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=", + "requires": { + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + } + } + }, "tsscmp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz", "integrity": "sha1-fcSjOvcVgatDN9qR2FylQn69mpc=" }, - "tunnel-agent": { - "version": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", - "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=" - }, - "tweetnacl": { - "version": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "optional": true - }, "type-is": { "version": "1.6.15", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", @@ -3014,23 +4898,23 @@ "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" }, "uglify-js": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.1.3.tgz", - "integrity": "sha512-5ZUOgufCHjN2mBBLfz63UtWTP6va2sSzBpNCM+/iqI6RnPzEhANmB0EKiKBYdQbc3v7KeomXJ2DJx0Xq9gvUvA==", + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.7.tgz", + "integrity": "sha512-esJIpNQIC44EFSrbeFPhiXHy2HJ+dTcnn0Zdkn+5meuLsvoV0mFJffKlyezNIIHNfhF0NpgbifygCfEyAogIhQ==", "requires": { - "commander": "2.11.0", - "source-map": "0.5.7" + "commander": "2.13.0", + "source-map": "0.6.1" }, "dependencies": { "commander": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", - "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", + "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==" }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, @@ -3075,10 +4959,6 @@ "upper-case": "1.1.3" } }, - "util-deprecate": { - "version": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, "utils-merge": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz", @@ -3089,26 +4969,11 @@ "resolved": "https://registry.npmjs.org/uuid/-/uuid-1.4.2.tgz", "integrity": "sha1-RTAZ9oaWam34PNxSROfJkOzDMvw=" }, - "validate-npm-package-license": { - "version": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", - "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", - "requires": { - "spdx-correct": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", - "spdx-expression-parse": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz" - } - }, "vary": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/vary/-/vary-1.0.1.tgz", "integrity": "sha1-meSYFWaihhGN+yuBc1ffeZM3bRA=" }, - "verror": { - "version": "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz", - "integrity": "sha1-z/XfEpRtKX0rqu+qJoniW+AcAFw=", - "requires": { - "extsprintf": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz" - } - }, "vhost": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/vhost/-/vhost-3.0.2.tgz", @@ -3127,16 +4992,55 @@ "isexe": "2.0.0" } }, - "which-module": { - "version": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" - }, "wide-align": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz", "integrity": "sha512-ijDLlyQ7s6x1JgCLur53osjm/UXUYD9+0PbYKrBsYisYXzCxN+HC3mYDNy/dWdmf3AwqwU3CXwDCvsNgGK1S0w==", "requires": { - "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz" + "string-width": "1.0.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "1.0.1" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "2.1.1" + } + } } }, "window-size": { @@ -3153,48 +5057,117 @@ "acorn-globals": "3.1.0" } }, - "wordwrap": { - "version": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" - }, - "wrap-ansi": { - "version": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", - "requires": { - "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" - } - }, - "wrappy": { - "version": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, "write-file-stdout": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/write-file-stdout/-/write-file-stdout-0.0.2.tgz", "integrity": "sha1-wlLXx8WxtAKJdjDjRTx7/mkNnKE=" }, - "xtend": { - "version": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" - }, - "y18n": { - "version": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" - }, - "yallist": { - "version": "https://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz", - "integrity": "sha1-MGxUODXwnuGkyyO3vOmrNByRzdQ=" - }, "yargs": { "version": "3.10.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", "requires": { - "camelcase": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "cliui": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "decamelize": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "camelcase": "1.2.1", + "cliui": "2.1.0", + "decamelize": "1.2.0", "window-size": "0.1.0" + }, + "dependencies": { + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "requires": { + "kind-of": "3.2.2", + "longest": "1.0.1", + "repeat-string": "1.6.1" + } + }, + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" + }, + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "requires": { + "align-text": "0.1.4", + "lazy-cache": "1.0.4" + } + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "requires": { + "center-align": "0.1.3", + "right-align": "0.1.3", + "wordwrap": "0.0.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "1.1.6" + } + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "requires": { + "align-text": "0.1.4" + } + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" + } + } + }, + "yargs-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", + "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", + "requires": { + "camelcase": "3.0.0" + }, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + } } } } diff --git a/package.json b/package.json index ec45fd2..2022a64 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,9 @@ "description": "samhuri.net", "version": "0.1.0", "dependencies": { - "harp": "^0.24.0", + "harp": "^0.25.0", "thepusher": "^0.1.4", - "uglify-js": "^3.0.9" + "uglify-js": "^3.3.7" }, "scripts": {} } From 263ea16e002ff90a22fd5f59efaab859b7a73470 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Tue, 17 Apr 2018 16:17:42 -0700 Subject: [PATCH 07/33] update tweet archive --- public/tweets/data/js/payload_details.js | 4 +- public/tweets/data/js/tweet_index.js | 86 ++- public/tweets/data/js/tweets/2009_10.js | 66 +- public/tweets/data/js/tweets/2009_11.js | 12 +- public/tweets/data/js/tweets/2009_12.js | 62 +- public/tweets/data/js/tweets/2010_01.js | 292 ++++---- public/tweets/data/js/tweets/2010_02.js | 103 +-- public/tweets/data/js/tweets/2010_03.js | 252 +++---- public/tweets/data/js/tweets/2010_04.js | 137 +--- public/tweets/data/js/tweets/2010_05.js | 258 +++---- public/tweets/data/js/tweets/2010_06.js | 208 +++--- public/tweets/data/js/tweets/2010_07.js | 62 +- public/tweets/data/js/tweets/2010_08.js | 65 +- public/tweets/data/js/tweets/2010_09.js | 136 ++-- public/tweets/data/js/tweets/2010_10.js | 253 +++---- public/tweets/data/js/tweets/2010_11.js | 315 ++------ public/tweets/data/js/tweets/2010_12.js | 156 ++-- public/tweets/data/js/tweets/2011_01.js | 111 ++- public/tweets/data/js/tweets/2011_02.js | 137 +--- public/tweets/data/js/tweets/2011_03.js | 56 +- public/tweets/data/js/tweets/2011_04.js | 97 +-- public/tweets/data/js/tweets/2011_05.js | 52 +- public/tweets/data/js/tweets/2011_06.js | 26 +- public/tweets/data/js/tweets/2011_07.js | 58 +- public/tweets/data/js/tweets/2011_08.js | 46 +- public/tweets/data/js/tweets/2011_09.js | 2 +- public/tweets/data/js/tweets/2011_10.js | 8 +- public/tweets/data/js/tweets/2011_11.js | 2 +- public/tweets/data/js/tweets/2011_12.js | 24 +- public/tweets/data/js/tweets/2012_01.js | 87 +-- public/tweets/data/js/tweets/2012_02.js | 43 +- public/tweets/data/js/tweets/2012_03.js | 34 +- public/tweets/data/js/tweets/2012_04.js | 32 +- public/tweets/data/js/tweets/2012_05.js | 135 ++-- public/tweets/data/js/tweets/2012_06.js | 52 +- public/tweets/data/js/tweets/2012_07.js | 104 ++- public/tweets/data/js/tweets/2012_08.js | 5 +- public/tweets/data/js/tweets/2012_09.js | 44 +- public/tweets/data/js/tweets/2012_10.js | 16 +- public/tweets/data/js/tweets/2012_12.js | 4 +- public/tweets/data/js/tweets/2013_01.js | 61 +- public/tweets/data/js/tweets/2013_02.js | 33 +- public/tweets/data/js/tweets/2013_03.js | 126 ++-- public/tweets/data/js/tweets/2013_04.js | 8 +- public/tweets/data/js/tweets/2013_05.js | 27 +- public/tweets/data/js/tweets/2013_06.js | 28 +- public/tweets/data/js/tweets/2013_07.js | 18 +- public/tweets/data/js/tweets/2013_08.js | 53 +- public/tweets/data/js/tweets/2013_09.js | 115 +-- public/tweets/data/js/tweets/2013_10.js | 173 ++--- public/tweets/data/js/tweets/2013_11.js | 278 ++----- public/tweets/data/js/tweets/2013_12.js | 635 ++++++---------- public/tweets/data/js/tweets/2014_01.js | 253 +++---- public/tweets/data/js/tweets/2014_02.js | 457 ++++++------ public/tweets/data/js/tweets/2014_03.js | 293 +++----- public/tweets/data/js/tweets/2014_04.js | 566 ++++++--------- public/tweets/data/js/tweets/2014_05.js | 403 +++++------ public/tweets/data/js/tweets/2014_06.js | 325 ++++----- public/tweets/data/js/tweets/2014_07.js | 520 +++++-------- public/tweets/data/js/tweets/2014_08.js | 324 +++++---- public/tweets/data/js/tweets/2014_09.js | 340 +++++---- public/tweets/data/js/tweets/2014_10.js | 381 +++++----- public/tweets/data/js/tweets/2014_11.js | 314 ++++---- public/tweets/data/js/tweets/2014_12.js | 156 ++-- public/tweets/data/js/tweets/2015_01.js | 258 +++---- public/tweets/data/js/tweets/2015_02.js | 250 ++++--- public/tweets/data/js/tweets/2015_03.js | 211 +++--- public/tweets/data/js/tweets/2015_04.js | 468 ++++++------ public/tweets/data/js/tweets/2015_05.js | 310 ++++---- public/tweets/data/js/tweets/2015_06.js | 177 ++--- public/tweets/data/js/tweets/2015_07.js | 181 ++--- public/tweets/data/js/tweets/2015_08.js | 151 ++-- public/tweets/data/js/tweets/2015_09.js | 411 ++++++----- public/tweets/data/js/tweets/2015_10.js | 624 ++++++++-------- public/tweets/data/js/tweets/2015_11.js | 341 ++++----- public/tweets/data/js/tweets/2015_12.js | 200 ++--- public/tweets/data/js/tweets/2016_01.js | 143 ++-- public/tweets/data/js/tweets/2016_02.js | 79 +- public/tweets/data/js/tweets/2016_03.js | 42 +- public/tweets/data/js/tweets/2016_04.js | 21 +- public/tweets/data/js/tweets/2016_05.js | 6 - public/tweets/data/js/tweets/2016_06.js | 172 ++--- public/tweets/data/js/tweets/2016_07.js | 343 ++++----- public/tweets/data/js/tweets/2016_08.js | 83 ++- public/tweets/data/js/tweets/2016_09.js | 139 ++-- public/tweets/data/js/tweets/2016_10.js | 152 ++-- public/tweets/data/js/tweets/2016_11.js | 11 +- public/tweets/data/js/tweets/2016_12.js | 241 +++--- public/tweets/data/js/tweets/2017_01.js | 148 ++-- public/tweets/data/js/tweets/2017_02.js | 6 +- public/tweets/data/js/tweets/2017_04.js | 15 +- public/tweets/data/js/tweets/2017_05.js | 2 +- public/tweets/data/js/tweets/2017_06.js | 121 ++-- public/tweets/data/js/tweets/2017_07.js | 2 +- public/tweets/data/js/tweets/2017_08.js | 64 +- public/tweets/data/js/tweets/2017_09.js | 4 +- public/tweets/data/js/tweets/2017_10.js | 78 +- public/tweets/data/js/tweets/2017_11.js | 703 ++++++++++++++++++ public/tweets/data/js/tweets/2017_12.js | 559 ++++++++++++++ public/tweets/data/js/tweets/2018_01.js | 885 +++++++++++++++++++++++ public/tweets/data/js/tweets/2018_02.js | 379 ++++++++++ public/tweets/data/js/tweets/2018_03.js | 517 +++++++++++++ public/tweets/data/js/tweets/2018_04.js | 292 ++++++++ public/tweets/data/js/user_details.js | 2 +- public/tweets/lib/twt/twt.all.min.js | 2 +- public/tweets/tweets.csv | 204 ++++-- 106 files changed, 10372 insertions(+), 8154 deletions(-) create mode 100755 public/tweets/data/js/tweets/2017_11.js create mode 100755 public/tweets/data/js/tweets/2017_12.js create mode 100755 public/tweets/data/js/tweets/2018_01.js create mode 100755 public/tweets/data/js/tweets/2018_02.js create mode 100755 public/tweets/data/js/tweets/2018_03.js create mode 100755 public/tweets/data/js/tweets/2018_04.js diff --git a/public/tweets/data/js/payload_details.js b/public/tweets/data/js/payload_details.js index 35d8e1a..d2be371 100755 --- a/public/tweets/data/js/payload_details.js +++ b/public/tweets/data/js/payload_details.js @@ -1,5 +1,5 @@ var payload_details = { - "tweets" : 7965, - "created_at" : "2017-10-16 17:43:55 +0000", + "tweets" : 8031, + "created_at" : "2018-04-17 23:01:34 +0000", "lang" : "en" } \ No newline at end of file diff --git a/public/tweets/data/js/tweet_index.js b/public/tweets/data/js/tweet_index.js index 2752b0b..2c2799b 100755 --- a/public/tweets/data/js/tweet_index.js +++ b/public/tweets/data/js/tweet_index.js @@ -1,8 +1,44 @@ var tweet_index = [ { + "file_name" : "data\/js\/tweets\/2018_04.js", + "year" : 2018, + "var_name" : "tweets_2018_04", + "tweet_count" : 6, + "month" : 4 +}, { + "file_name" : "data\/js\/tweets\/2018_03.js", + "year" : 2018, + "var_name" : "tweets_2018_03", + "tweet_count" : 11, + "month" : 3 +}, { + "file_name" : "data\/js\/tweets\/2018_02.js", + "year" : 2018, + "var_name" : "tweets_2018_02", + "tweet_count" : 10, + "month" : 2 +}, { + "file_name" : "data\/js\/tweets\/2018_01.js", + "year" : 2018, + "var_name" : "tweets_2018_01", + "tweet_count" : 22, + "month" : 1 +}, { + "file_name" : "data\/js\/tweets\/2017_12.js", + "year" : 2017, + "var_name" : "tweets_2017_12", + "tweet_count" : 14, + "month" : 12 +}, { + "file_name" : "data\/js\/tweets\/2017_11.js", + "year" : 2017, + "var_name" : "tweets_2017_11", + "tweet_count" : 18, + "month" : 11 +}, { "file_name" : "data\/js\/tweets\/2017_10.js", "year" : 2017, "var_name" : "tweets_2017_10", - "tweet_count" : 4, + "tweet_count" : 6, "month" : 10 }, { "file_name" : "data\/js\/tweets\/2017_09.js", @@ -92,7 +128,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2016_07.js", "year" : 2016, "var_name" : "tweets_2016_07", - "tweet_count" : 110, + "tweet_count" : 109, "month" : 7 }, { "file_name" : "data\/js\/tweets\/2016_06.js", @@ -146,7 +182,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2015_10.js", "year" : 2015, "var_name" : "tweets_2015_10", - "tweet_count" : 200, + "tweet_count" : 199, "month" : 10 }, { "file_name" : "data\/js\/tweets\/2015_09.js", @@ -200,7 +236,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2015_01.js", "year" : 2015, "var_name" : "tweets_2015_01", - "tweet_count" : 80, + "tweet_count" : 79, "month" : 1 }, { "file_name" : "data\/js\/tweets\/2014_12.js", @@ -212,13 +248,13 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2014_11.js", "year" : 2014, "var_name" : "tweets_2014_11", - "tweet_count" : 119, + "tweet_count" : 118, "month" : 11 }, { "file_name" : "data\/js\/tweets\/2014_10.js", "year" : 2014, "var_name" : "tweets_2014_10", - "tweet_count" : 132, + "tweet_count" : 131, "month" : 10 }, { "file_name" : "data\/js\/tweets\/2014_09.js", @@ -236,55 +272,55 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2014_07.js", "year" : 2014, "var_name" : "tweets_2014_07", - "tweet_count" : 203, + "tweet_count" : 201, "month" : 7 }, { "file_name" : "data\/js\/tweets\/2014_06.js", "year" : 2014, "var_name" : "tweets_2014_06", - "tweet_count" : 204, + "tweet_count" : 203, "month" : 6 }, { "file_name" : "data\/js\/tweets\/2014_05.js", "year" : 2014, "var_name" : "tweets_2014_05", - "tweet_count" : 142, + "tweet_count" : 141, "month" : 5 }, { "file_name" : "data\/js\/tweets\/2014_04.js", "year" : 2014, "var_name" : "tweets_2014_04", - "tweet_count" : 174, + "tweet_count" : 172, "month" : 4 }, { "file_name" : "data\/js\/tweets\/2014_03.js", "year" : 2014, "var_name" : "tweets_2014_03", - "tweet_count" : 210, + "tweet_count" : 209, "month" : 3 }, { "file_name" : "data\/js\/tweets\/2014_02.js", "year" : 2014, "var_name" : "tweets_2014_02", - "tweet_count" : 165, + "tweet_count" : 164, "month" : 2 }, { "file_name" : "data\/js\/tweets\/2014_01.js", "year" : 2014, "var_name" : "tweets_2014_01", - "tweet_count" : 151, + "tweet_count" : 150, "month" : 1 }, { "file_name" : "data\/js\/tweets\/2013_12.js", "year" : 2013, "var_name" : "tweets_2013_12", - "tweet_count" : 113, + "tweet_count" : 111, "month" : 12 }, { "file_name" : "data\/js\/tweets\/2013_11.js", "year" : 2013, "var_name" : "tweets_2013_11", - "tweet_count" : 55, + "tweet_count" : 53, "month" : 11 }, { "file_name" : "data\/js\/tweets\/2013_10.js", @@ -380,7 +416,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2012_07.js", "year" : 2012, "var_name" : "tweets_2012_07", - "tweet_count" : 24, + "tweet_count" : 25, "month" : 7 }, { "file_name" : "data\/js\/tweets\/2012_06.js", @@ -470,7 +506,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2011_04.js", "year" : 2011, "var_name" : "tweets_2011_04", - "tweet_count" : 64, + "tweet_count" : 63, "month" : 4 }, { "file_name" : "data\/js\/tweets\/2011_03.js", @@ -482,31 +518,31 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2011_02.js", "year" : 2011, "var_name" : "tweets_2011_02", - "tweet_count" : 137, + "tweet_count" : 136, "month" : 2 }, { "file_name" : "data\/js\/tweets\/2011_01.js", "year" : 2011, "var_name" : "tweets_2011_01", - "tweet_count" : 177, + "tweet_count" : 178, "month" : 1 }, { "file_name" : "data\/js\/tweets\/2010_12.js", "year" : 2010, "var_name" : "tweets_2010_12", - "tweet_count" : 155, + "tweet_count" : 154, "month" : 12 }, { "file_name" : "data\/js\/tweets\/2010_11.js", "year" : 2010, "var_name" : "tweets_2010_11", - "tweet_count" : 206, + "tweet_count" : 202, "month" : 11 }, { "file_name" : "data\/js\/tweets\/2010_10.js", "year" : 2010, "var_name" : "tweets_2010_10", - "tweet_count" : 138, + "tweet_count" : 137, "month" : 10 }, { "file_name" : "data\/js\/tweets\/2010_09.js", @@ -518,7 +554,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2010_08.js", "year" : 2010, "var_name" : "tweets_2010_08", - "tweet_count" : 46, + "tweet_count" : 45, "month" : 8 }, { "file_name" : "data\/js\/tweets\/2010_07.js", @@ -542,7 +578,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2010_04.js", "year" : 2010, "var_name" : "tweets_2010_04", - "tweet_count" : 52, + "tweet_count" : 51, "month" : 4 }, { "file_name" : "data\/js\/tweets\/2010_03.js", @@ -554,7 +590,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2010_02.js", "year" : 2010, "var_name" : "tweets_2010_02", - "tweet_count" : 56, + "tweet_count" : 55, "month" : 2 }, { "file_name" : "data\/js\/tweets\/2010_01.js", diff --git a/public/tweets/data/js/tweets/2009_10.js b/public/tweets/data/js/tweets/2009_10.js index 896d426..c5e5437 100755 --- a/public/tweets/data/js/tweets/2009_10.js +++ b/public/tweets/data/js/tweets/2009_10.js @@ -145,6 +145,39 @@ Grailbird.data.tweets_2009_10 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\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" : "4876200327", + "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" : "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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -200,39 +233,6 @@ Grailbird.data.tweets_2009_10 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\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" : "4876200327", - "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" : "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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { diff --git a/public/tweets/data/js/tweets/2009_11.js b/public/tweets/data/js/tweets/2009_11.js index 178d754..59e18a9 100755 --- a/public/tweets/data/js/tweets/2009_11.js +++ b/public/tweets/data/js/tweets/2009_11.js @@ -470,7 +470,7 @@ Grailbird.data.tweets_2009_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC30bunwitch dorror\uD83D\uDC7B", + "name" : "\uD83D\uDC30 jonnay \uD83D\uDC30 this bun ain't big, it's LORJ", "screen_name" : "jonnay", "indices" : [ 3, 10 ], "id_str" : "817328", @@ -503,11 +503,11 @@ Grailbird.data.tweets_2009_11 = "id" : 5907000124, "created_at" : "2009-11-21 01:38:49 +0000", "user" : { - "name" : "\uD83D\uDC30bunwitch dorror\uD83D\uDC7B", + "name" : "\uD83D\uDC30 jonnay \uD83D\uDC30 this bun ain't big, it's LORJ", "screen_name" : "jonnay", "protected" : false, "id_str" : "817328", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/552353119149912064\/2dkU2097_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/953823068954140673\/vd3Wnmrv_normal.jpg", "id" : 817328, "verified" : false } @@ -795,7 +795,7 @@ Grailbird.data.tweets_2009_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Piponi", + "name" : "\u2202an pd piponi", "screen_name" : "sigfpe", "indices" : [ 3, 10 ], "id_str" : "16748247", @@ -822,11 +822,11 @@ Grailbird.data.tweets_2009_11 = "id" : 5845019882, "created_at" : "2009-11-19 01:57:34 +0000", "user" : { - "name" : "Dan Piponi", + "name" : "\u2202an pd piponi", "screen_name" : "sigfpe", "protected" : false, "id_str" : "16748247", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833805426701373440\/39dts4t1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964584182532878337\/3OkjdHwm_normal.jpg", "id" : 16748247, "verified" : false } diff --git a/public/tweets/data/js/tweets/2009_12.js b/public/tweets/data/js/tweets/2009_12.js index 986e640..d8a4712 100755 --- a/public/tweets/data/js/tweets/2009_12.js +++ b/public/tweets/data/js/tweets/2009_12.js @@ -528,7 +528,7 @@ Grailbird.data.tweets_2009_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Piponi", + "name" : "\u2202an pd piponi", "screen_name" : "sigfpe", "indices" : [ 0, 7 ], "id_str" : "16748247", @@ -1106,7 +1106,7 @@ Grailbird.data.tweets_2009_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Piponi", + "name" : "\u2202an pd piponi", "screen_name" : "sigfpe", "indices" : [ 0, 7 ], "id_str" : "16748247", @@ -1145,11 +1145,11 @@ Grailbird.data.tweets_2009_12 = "id_str" : "54403950", "id" : 54403950 }, { - "name" : "Strackula \uD83E\uDD87", + "name" : "David Strack", "screen_name" : "rmxdave", "indices" : [ 15, 23 ], - "id_str" : "9027732", - "id" : 9027732 + "id_str" : "774021501020413952", + "id" : 774021501020413952 }, { "name" : "phonedog_noah", "screen_name" : "phonedog_noah", @@ -1174,11 +1174,11 @@ Grailbird.data.tweets_2009_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Strackula \uD83E\uDD87", + "name" : "David Strack", "screen_name" : "rmxdave", "indices" : [ 3, 11 ], - "id_str" : "9027732", - "id" : 9027732 + "id_str" : "774021501020413952", + "id" : 774021501020413952 }, { "name" : "phonedog_noah", "screen_name" : "phonedog_noah", @@ -1254,7 +1254,7 @@ Grailbird.data.tweets_2009_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jamie Zawinski", + "name" : "j\u0355\u0320\u0326\u032A\u0355\u0313\u035B\u030A\u033E\u0304\u0345w\u0327\u0327\u0333\u032A\u0318\u034A\u030B\u0357\u033E\u0362\u0360z\u0322\u0318\u031E\u0348\u033A\u031E\u0329\u0313\u033D\u0310\u030B\u0357\u0306\u030B\u031A\u035F\u035C", "screen_name" : "jwz", "indices" : [ 24, 28 ], "id_str" : "7190742", @@ -1361,28 +1361,6 @@ Grailbird.data.tweets_2009_12 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "6469119192", - "text" : "If the rain stays away I don't mind the cold that much really. It's nice when it's a bit brisk.", - "id" : 6469119192, - "created_at" : "2009-12-08 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -1427,6 +1405,28 @@ Grailbird.data.tweets_2009_12 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "6469119192", + "text" : "If the rain stays away I don't mind the cold that much really. It's nice when it's a bit brisk.", + "id" : 6469119192, + "created_at" : "2009-12-08 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { diff --git a/public/tweets/data/js/tweets/2010_01.js b/public/tweets/data/js/tweets/2010_01.js index f50077d..c42bd26 100755 --- a/public/tweets/data/js/tweets/2010_01.js +++ b/public/tweets/data/js/tweets/2010_01.js @@ -262,7 +262,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Piponi", + "name" : "\u2202an pd piponi", "screen_name" : "sigfpe", "indices" : [ 3, 10 ], "id_str" : "16748247", @@ -289,11 +289,11 @@ Grailbird.data.tweets_2010_01 = "id" : 8303411333, "created_at" : "2010-01-28 01:26:22 +0000", "user" : { - "name" : "Dan Piponi", + "name" : "\u2202an pd piponi", "screen_name" : "sigfpe", "protected" : false, "id_str" : "16748247", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833805426701373440\/39dts4t1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964584182532878337\/3OkjdHwm_normal.jpg", "id" : 16748247, "verified" : false } @@ -516,6 +516,67 @@ Grailbird.data.tweets_2010_01 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "In Memoriam", + "screen_name" : "grooveshark", + "indices" : [ 14, 26 ], + "id_str" : "732373899233660929", + "id" : 732373899233660929 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "8282849475", + "text" : "<3 the new @grooveshark so far! previous tracks can be restored. column browser for artist\/album. and i thought i was in love before! ;-)", + "id" : 8282849475, + "created_at" : "2010-01-27 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Aivars", + "screen_name" : "evilman_", + "indices" : [ 0, 9 ], + "id_str" : "284469804", + "id" : 284469804 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "8284365682", + "geo" : { }, + "id_str" : "8285026676", + "in_reply_to_user_id" : 89704018, + "text" : "@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!", + "id" : 8285026676, + "in_reply_to_status_id" : 8284365682, + "created_at" : "2010-01-27 00:00:00 +0000", + "in_reply_to_screen_name" : "RamiLaaksonen", + "in_reply_to_user_id_str" : "89704018", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -788,67 +849,6 @@ Grailbird.data.tweets_2010_01 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "In Memoriam", - "screen_name" : "grooveshark", - "indices" : [ 14, 26 ], - "id_str" : "732373899233660929", - "id" : 732373899233660929 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "8282849475", - "text" : "<3 the new @grooveshark so far! previous tracks can be restored. column browser for artist\/album. and i thought i was in love before! ;-)", - "id" : 8282849475, - "created_at" : "2010-01-27 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Aivars", - "screen_name" : "evilman_", - "indices" : [ 0, 9 ], - "id_str" : "284469804", - "id" : 284469804 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "8284365682", - "geo" : { }, - "id_str" : "8285026676", - "in_reply_to_user_id" : 89704018, - "text" : "@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!", - "id" : 8285026676, - "in_reply_to_status_id" : 8284365682, - "created_at" : "2010-01-27 00:00:00 +0000", - "in_reply_to_screen_name" : "RamiLaaksonen", - "in_reply_to_user_id_str" : "89704018", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -1433,7 +1433,7 @@ Grailbird.data.tweets_2010_01 = "screen_name" : "chuq", "protected" : false, "id_str" : "13217612", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/878288211339902976\/dDvof4nb_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951920187925659648\/HJ1V55q5_normal.jpg", "id" : 13217612, "verified" : false } @@ -1817,7 +1817,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Piponi", + "name" : "\u2202an pd piponi", "screen_name" : "sigfpe", "indices" : [ 0, 7 ], "id_str" : "16748247", @@ -1850,7 +1850,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Piponi", + "name" : "\u2202an pd piponi", "screen_name" : "sigfpe", "indices" : [ 0, 7 ], "id_str" : "16748247", @@ -2077,6 +2077,50 @@ Grailbird.data.tweets_2010_01 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "7893652393", + "text" : "For once I'm actually a bit sad I'm not still in Ontario.", + "id" : 7893652393, + "created_at" : "2010-01-18 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "7893719461", + "text" : "Done reading and writing about Mach-O for today. I'm starting to go cross-eyed.", + "id" : 7893719461, + "created_at" : "2010-01-18 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -2132,7 +2176,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "giles", + "name" : "too much future make it stop", "screen_name" : "gilesgoatboy", "indices" : [ 0, 13 ], "id_str" : "1341781", @@ -2233,50 +2277,6 @@ Grailbird.data.tweets_2010_01 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "7893652393", - "text" : "For once I'm actually a bit sad I'm not still in Ontario.", - "id" : 7893652393, - "created_at" : "2010-01-18 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "7893719461", - "text" : "Done reading and writing about Mach-O for today. I'm starting to go cross-eyed.", - "id" : 7893719461, - "created_at" : "2010-01-18 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -3473,39 +3473,6 @@ Grailbird.data.tweets_2010_01 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "giles", - "screen_name" : "gilesgoatboy", - "indices" : [ 0, 13 ], - "id_str" : "1341781", - "id" : 1341781 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "7319403764", - "geo" : { }, - "id_str" : "7323770241", - "in_reply_to_user_id" : 1341781, - "text" : "@gilesgoatboy Bad choice of words on my part. I simply meant that the US is predominantly a capitalist society.", - "id" : 7323770241, - "in_reply_to_status_id" : 7319403764, - "created_at" : "2010-01-03 00:00:00 +0000", - "in_reply_to_screen_name" : "gilesgoatboy", - "in_reply_to_user_id_str" : "1341781", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -3538,7 +3505,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "giles", + "name" : "too much future make it stop", "screen_name" : "gilesgoatboy", "indices" : [ 37, 50 ], "id_str" : "1341781", @@ -3562,4 +3529,37 @@ Grailbird.data.tweets_2010_01 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "too much future make it stop", + "screen_name" : "gilesgoatboy", + "indices" : [ 0, 13 ], + "id_str" : "1341781", + "id" : 1341781 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "7319403764", + "geo" : { }, + "id_str" : "7323770241", + "in_reply_to_user_id" : 1341781, + "text" : "@gilesgoatboy Bad choice of words on my part. I simply meant that the US is predominantly a capitalist society.", + "id" : 7323770241, + "in_reply_to_status_id" : 7319403764, + "created_at" : "2010-01-03 00:00:00 +0000", + "in_reply_to_screen_name" : "gilesgoatboy", + "in_reply_to_user_id_str" : "1341781", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } } ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2010_02.js b/public/tweets/data/js/tweets/2010_02.js index 1da44a3..246a9ec 100755 --- a/public/tweets/data/js/tweets/2010_02.js +++ b/public/tweets/data/js/tweets/2010_02.js @@ -102,7 +102,7 @@ Grailbird.data.tweets_2010_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "giles", + "name" : "too much future make it stop", "screen_name" : "gilesgoatboy", "indices" : [ 3, 16 ], "id_str" : "1341781", @@ -129,7 +129,7 @@ Grailbird.data.tweets_2010_02 = "id" : 9737046519, "created_at" : "2010-02-27 17:11:16 +0000", "user" : { - "name" : "giles", + "name" : "too much future make it stop", "screen_name" : "gilesgoatboy", "protected" : false, "id_str" : "1341781", @@ -219,7 +219,7 @@ Grailbird.data.tweets_2010_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "DRMacIver's Monster", + "name" : "David R. MacIver", "screen_name" : "DRMacIver", "indices" : [ 0, 10 ], "id_str" : "14368342", @@ -636,7 +636,7 @@ Grailbird.data.tweets_2010_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tweetie", + "name" : "S", "screen_name" : "tweetie", "indices" : [ 20, 28 ], "id_str" : "18044341", @@ -685,28 +685,6 @@ Grailbird.data.tweets_2010_02 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "9192595443", - "text" : "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-].", - "id" : 9192595443, - "created_at" : "2010-02-16 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -751,6 +729,28 @@ Grailbird.data.tweets_2010_02 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "9192595443", + "text" : "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-].", + "id" : 9192595443, + "created_at" : "2010-02-16 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -1208,57 +1208,6 @@ Grailbird.data.tweets_2010_02 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "indices" : [ 3, 14 ], - "id_str" : "14206068", - "id" : 14206068 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "8705804068", - "text" : "RT @tlrobinson: I'm not advocating this, but if you wanted to discourage people from using AdBlock you could put goatse, etc behind your ...", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "8705344653", - "text" : "I'm not advocating this, but if you wanted to discourage people from using AdBlock you could put goatse, etc behind your ads. Just sayin.", - "id" : 8705344653, - "created_at" : "2010-02-06 02:38:42 +0000", - "user" : { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "protected" : false, - "id_str" : "14206068", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", - "id" : 14206068, - "verified" : false - } - }, - "id" : 8705804068, - "created_at" : "2010-02-06 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { diff --git a/public/tweets/data/js/tweets/2010_03.js b/public/tweets/data/js/tweets/2010_03.js index b26cc90..4122247 100755 --- a/public/tweets/data/js/tweets/2010_03.js +++ b/public/tweets/data/js/tweets/2010_03.js @@ -54,7 +54,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 3, 10 ], "id_str" : "8526432", @@ -81,7 +81,7 @@ Grailbird.data.tweets_2010_03 = "id" : 11400407558, "created_at" : "2010-04-01 02:11:32 +0000", "user" : { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "protected" : false, "id_str" : "8526432", @@ -422,7 +422,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", @@ -461,7 +461,7 @@ Grailbird.data.tweets_2010_03 = "id" : 11203590289, "created_at" : "2010-03-28 17:16:42 +0000", "user" : { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", @@ -646,7 +646,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "A. Robinson Gross", + "name" : "a\u0338\u030C\u0360\u0304\u0351\u0314\u033F\u031D\u0347\u0348n\u0336\u0344\u0307\u0340\u0312\u0307\u0345d\u0336\u0309\u0340\u0300\u0304\u0311\u035D\u0349y\u0336\u0342\u0304\u0301\u034B\u031F\u031E\u0353\u031E", "screen_name" : "argv0", "indices" : [ 0, 6 ], "id_str" : "6509982", @@ -741,6 +741,50 @@ Grailbird.data.tweets_2010_03 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "11113188838", + "text" : "For posterity: http:\/\/yfrog.com\/4ziu0p ... made a few of us here lol on a long Friday afternoon.", + "id" : 11113188838, + "created_at" : "2010-03-26 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "11115884211", + "text" : "\"The curse of the gifted programmer is apparently the need to deal with occasional direct emails from Eric Raymond.\" http:\/\/is.gd\/b16tf", + "id" : 11115884211, + "created_at" : "2010-03-26 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", "entities" : { @@ -776,7 +820,7 @@ Grailbird.data.tweets_2010_03 = "screen_name" : "dhh", "protected" : false, "id_str" : "14561327", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2556368541\/alng5gtlmjhrdlr3qxqv_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/975876868455809024\/eK7mDppU_normal.jpg", "id" : 14561327, "verified" : true } @@ -814,50 +858,6 @@ Grailbird.data.tweets_2010_03 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "11113188838", - "text" : "For posterity: http:\/\/yfrog.com\/4ziu0p ... made a few of us here lol on a long Friday afternoon.", - "id" : 11113188838, - "created_at" : "2010-03-26 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "11115884211", - "text" : "\"The curse of the gifted programmer is apparently the need to deal with occasional direct emails from Eric Raymond.\" http:\/\/is.gd\/b16tf", - "id" : 11115884211, - "created_at" : "2010-03-26 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", "entities" : { @@ -1129,7 +1129,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 3, 11 ], "id_str" : "5813712", @@ -1156,7 +1156,7 @@ Grailbird.data.tweets_2010_03 = "id" : 10814555748, "created_at" : "2010-03-21 09:38:07 +0000", "user" : { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "protected" : false, "id_str" : "5813712", @@ -1329,7 +1329,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", @@ -1380,7 +1380,7 @@ Grailbird.data.tweets_2010_03 = "id" : 10729730792, "created_at" : "2010-03-19 16:18:05 +0000", "user" : { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", @@ -1701,7 +1701,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Stephenson", + "name" : "Sam Stephenson \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "sstephenson", "indices" : [ 0, 12 ], "id_str" : "6707392", @@ -1734,7 +1734,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Stephenson", + "name" : "Sam Stephenson \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "sstephenson", "indices" : [ 0, 12 ], "id_str" : "6707392", @@ -1926,6 +1926,76 @@ Grailbird.data.tweets_2010_03 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Grisha Kruglov", + "screen_name" : "lunafiko", + "indices" : [ 0, 9 ], + "id_str" : "14273142", + "id" : 14273142 + }, { + "name" : "In Memoriam", + "screen_name" : "grooveshark", + "indices" : [ 96, 108 ], + "id_str" : "732373899233660929", + "id" : 732373899233660929 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "10248960220", + "in_reply_to_user_id" : 14273142, + "text" : "@lunafiko online payment systems always shaft non-US folk. hopefully we can get a response from @grooveshark on this... http:\/\/is.gd\/a5yyB", + "id" : 10248960220, + "created_at" : "2010-03-10 00:00:00 +0000", + "in_reply_to_screen_name" : "lunafiko", + "in_reply_to_user_id_str" : "14273142", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Mahyar Mj", + "screen_name" : "MahyarM", + "indices" : [ 0, 8 ], + "id_str" : "724541871788314625", + "id" : 724541871788314625 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "10252944305", + "geo" : { }, + "id_str" : "10254877767", + "in_reply_to_user_id" : 22406953, + "text" : "@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.", + "id" : 10254877767, + "in_reply_to_status_id" : 10252944305, + "created_at" : "2010-03-10 00:00:00 +0000", + "in_reply_to_screen_name" : "macatbook", + "in_reply_to_user_id_str" : "22406953", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -2245,76 +2315,6 @@ Grailbird.data.tweets_2010_03 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Grisha Kruglov", - "screen_name" : "lunafiko", - "indices" : [ 0, 9 ], - "id_str" : "14273142", - "id" : 14273142 - }, { - "name" : "In Memoriam", - "screen_name" : "grooveshark", - "indices" : [ 96, 108 ], - "id_str" : "732373899233660929", - "id" : 732373899233660929 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "10248960220", - "in_reply_to_user_id" : 14273142, - "text" : "@lunafiko online payment systems always shaft non-US folk. hopefully we can get a response from @grooveshark on this... http:\/\/is.gd\/a5yyB", - "id" : 10248960220, - "created_at" : "2010-03-10 00:00:00 +0000", - "in_reply_to_screen_name" : "lunafiko", - "in_reply_to_user_id_str" : "14273142", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Mahyar Mj", - "screen_name" : "MahyarM", - "indices" : [ 0, 8 ], - "id_str" : "724541871788314625", - "id" : 724541871788314625 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "10252944305", - "geo" : { }, - "id_str" : "10254877767", - "in_reply_to_user_id" : 22406953, - "text" : "@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.", - "id" : 10254877767, - "in_reply_to_status_id" : 10252944305, - "created_at" : "2010-03-10 00:00:00 +0000", - "in_reply_to_screen_name" : "macatbook", - "in_reply_to_user_id_str" : "22406953", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { diff --git a/public/tweets/data/js/tweets/2010_04.js b/public/tweets/data/js/tweets/2010_04.js index 7ba28c3..c01df19 100755 --- a/public/tweets/data/js/tweets/2010_04.js +++ b/public/tweets/data/js/tweets/2010_04.js @@ -152,7 +152,7 @@ Grailbird.data.tweets_2010_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Enrico", + "name" : "Z", "screen_name" : "zimmund", "indices" : [ 0, 8 ], "id_str" : "6217862", @@ -313,75 +313,6 @@ Grailbird.data.tweets_2010_04 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "indices" : [ 3, 14 ], - "id_str" : "14206068", - "id" : 14206068 - }, { - "name" : "BrendanEich", - "screen_name" : "BrendanEich", - "indices" : [ 17, 29 ], - "id_str" : "9533042", - "id" : 9533042 - } ], - "media" : [ ], - "hashtags" : [ { - "text" : "jsconf", - "indices" : [ 33, 40 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "12421964589", - "text" : "RT @tlrobinson: .@brendaneich at #jsconf talking about awesome new features slated for next edition of JS. Detail on the ECMA wiki: http ...", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "BrendanEich", - "screen_name" : "BrendanEich", - "indices" : [ 1, 13 ], - "id_str" : "9533042", - "id" : 9533042 - } ], - "media" : [ ], - "hashtags" : [ { - "text" : "jsconf", - "indices" : [ 17, 24 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "12419872636", - "text" : ".@brendaneich at #jsconf talking about awesome new features slated for next edition of JS. Detail on the ECMA wiki: http:\/\/is.gd\/bywUR", - "id" : 12419872636, - "created_at" : "2010-04-18 21:54:38 +0000", - "user" : { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "protected" : false, - "id_str" : "14206068", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", - "id" : 14206068, - "verified" : false - } - }, - "id" : 12421964589, - "created_at" : "2010-04-18 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -749,39 +680,6 @@ Grailbird.data.tweets_2010_04 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Grisha Kruglov", - "screen_name" : "lunafiko", - "indices" : [ 0, 9 ], - "id_str" : "14273142", - "id" : 14273142 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "12064718775", - "geo" : { }, - "id_str" : "12065048772", - "in_reply_to_user_id" : 14273142, - "text" : "@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.", - "id" : 12065048772, - "in_reply_to_status_id" : 12064718775, - "created_at" : "2010-04-12 00:00:00 +0000", - "in_reply_to_screen_name" : "lunafiko", - "in_reply_to_user_id_str" : "14273142", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -815,6 +713,39 @@ Grailbird.data.tweets_2010_04 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Grisha Kruglov", + "screen_name" : "lunafiko", + "indices" : [ 0, 9 ], + "id_str" : "14273142", + "id" : 14273142 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "12064718775", + "geo" : { }, + "id_str" : "12065048772", + "in_reply_to_user_id" : 14273142, + "text" : "@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.", + "id" : 12065048772, + "in_reply_to_status_id" : 12064718775, + "created_at" : "2010-04-12 00:00:00 +0000", + "in_reply_to_screen_name" : "lunafiko", + "in_reply_to_user_id_str" : "14273142", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/gowalla.com\/\" rel=\"nofollow\"\u003EGowalla\u003C\/a\u003E", "entities" : { diff --git a/public/tweets/data/js/tweets/2010_05.js b/public/tweets/data/js/tweets/2010_05.js index 651307e..6287a8a 100755 --- a/public/tweets/data/js/tweets/2010_05.js +++ b/public/tweets/data/js/tweets/2010_05.js @@ -262,11 +262,11 @@ Grailbird.data.tweets_2010_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Andreas Hegenberg", + "name" : "andreas hegenberg", "screen_name" : "boastr_net", "indices" : [ 0, 11 ], - "id_str" : "71894064", - "id" : 71894064 + "id_str" : "984361184097861632", + "id" : 984361184097861632 } ], "media" : [ ], "hashtags" : [ ], @@ -278,7 +278,7 @@ Grailbird.data.tweets_2010_05 = "text" : "@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!", "id" : 15057979597, "created_at" : "2010-05-30 00:00:00 +0000", - "in_reply_to_screen_name" : "boastr_net", + "in_reply_to_screen_name" : "folivora_ai", "in_reply_to_user_id_str" : "71894064", "user" : { "name" : "Sami Samhuri", @@ -634,7 +634,7 @@ Grailbird.data.tweets_2010_05 = "screen_name" : "zii", "protected" : false, "id_str" : "12712742", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/880992273101578240\/ib3GlMDp_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/982615078200426497\/njD6-6iU_normal.jpg", "id" : 12712742, "verified" : false } @@ -720,7 +720,7 @@ Grailbird.data.tweets_2010_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -747,11 +747,11 @@ Grailbird.data.tweets_2010_05 = "id" : 14646836334, "created_at" : "2010-05-24 20:57:44 +0000", "user" : { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917536371085950976\/MIuNwAAR_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/966195642191228933\/4BhqRm2w_normal.jpg", "id" : 8038312, "verified" : true } @@ -820,6 +820,57 @@ Grailbird.data.tweets_2010_05 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "a\u0338\u030C\u0360\u0304\u0351\u0314\u033F\u031D\u0347\u0348n\u0336\u0344\u0307\u0340\u0312\u0307\u0345d\u0336\u0309\u0340\u0300\u0304\u0311\u035D\u0349y\u0336\u0342\u0304\u0301\u034B\u031F\u031E\u0353\u031E", + "screen_name" : "argv0", + "indices" : [ 3, 9 ], + "id_str" : "6509982", + "id" : 6509982 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "14521573978", + "text" : "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 ...", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "14521160441", + "text" : "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 Basho Riak.", + "id" : 14521160441, + "created_at" : "2010-05-22 23:04:37 +0000", + "user" : { + "name" : "a\u0338\u030C\u0360\u0304\u0351\u0314\u033F\u031D\u0347\u0348n\u0336\u0344\u0307\u0340\u0312\u0307\u0345d\u0336\u0309\u0340\u0300\u0304\u0311\u035D\u0349y\u0336\u0342\u0304\u0301\u034B\u031F\u031E\u0353\u031E", + "screen_name" : "argv0", + "protected" : false, + "id_str" : "6509982", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/930176356968644608\/8Np88qqV_normal.jpg", + "id" : 6509982, + "verified" : false + } + }, + "id" : 14521573978, + "created_at" : "2010-05-22 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -864,76 +915,6 @@ Grailbird.data.tweets_2010_05 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Chiropractor Wiki", - "screen_name" : "mentalguy", - "indices" : [ 0, 10 ], - "id_str" : "725645037724438528", - "id" : 725645037724438528 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "14217793600", - "geo" : { }, - "id_str" : "14232765831", - "in_reply_to_user_id" : 14358152, - "text" : "@mentalguy I remember that feeling. Here are 9 more to blow your mind: http:\/\/en.wikipedia.org\/wiki\/Ontario_(disambiguation)", - "id" : 14232765831, - "in_reply_to_status_id" : 14217793600, - "created_at" : "2010-05-18 00:00:00 +0000", - "in_reply_to_screen_name" : "visiblecode", - "in_reply_to_user_id_str" : "14358152", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Lee Semel", - "screen_name" : "semel", - "indices" : [ 0, 6 ], - "id_str" : "14174890", - "id" : 14174890 - }, { - "name" : "DVLPRS", - "screen_name" : "dvlprs", - "indices" : [ 23, 30 ], - "id_str" : "41664064", - "id" : 41664064 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "14200790046", - "in_reply_to_user_id" : 14174890, - "text" : "@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!", - "id" : 14200790046, - "created_at" : "2010-05-18 00:00:00 +0000", - "in_reply_to_screen_name" : "semel", - "in_reply_to_user_id_str" : "14174890", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -1045,6 +1026,76 @@ Grailbird.data.tweets_2010_05 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Chiropractor Wiki", + "screen_name" : "mentalguy", + "indices" : [ 0, 10 ], + "id_str" : "725645037724438528", + "id" : 725645037724438528 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "14217793600", + "geo" : { }, + "id_str" : "14232765831", + "in_reply_to_user_id" : 14358152, + "text" : "@mentalguy I remember that feeling. Here are 9 more to blow your mind: http:\/\/en.wikipedia.org\/wiki\/Ontario_(disambiguation)", + "id" : 14232765831, + "in_reply_to_status_id" : 14217793600, + "created_at" : "2010-05-18 00:00:00 +0000", + "in_reply_to_screen_name" : "visiblecode", + "in_reply_to_user_id_str" : "14358152", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Lee Semel", + "screen_name" : "semel", + "indices" : [ 0, 6 ], + "id_str" : "14174890", + "id" : 14174890 + }, { + "name" : "DVLPRS", + "screen_name" : "dvlprs", + "indices" : [ 23, 30 ], + "id_str" : "41664064", + "id" : 41664064 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "14200790046", + "in_reply_to_user_id" : 14174890, + "text" : "@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!", + "id" : 14200790046, + "created_at" : "2010-05-18 00:00:00 +0000", + "in_reply_to_screen_name" : "semel", + "in_reply_to_user_id_str" : "14174890", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -1708,55 +1759,4 @@ Grailbird.data.tweets_2010_05 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "indices" : [ 3, 14 ], - "id_str" : "14206068", - "id" : 14206068 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "13217100047", - "text" : "RT @tlrobinson: \"Passing callbacks is the *price* of asynchronous API's, not the benefit.\"", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "13216605013", - "text" : "\"Passing callbacks is the *price* of asynchronous API's, not the benefit.\"", - "id" : 13216605013, - "created_at" : "2010-05-02 00:33:43 +0000", - "user" : { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "protected" : false, - "id_str" : "14206068", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", - "id" : 14206068, - "verified" : false - } - }, - "id" : 13217100047, - "created_at" : "2010-05-02 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } } ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2010_06.js b/public/tweets/data/js/tweets/2010_06.js index 54842d7..3fe5b0f 100755 --- a/public/tweets/data/js/tweets/2010_06.js +++ b/public/tweets/data/js/tweets/2010_06.js @@ -189,11 +189,55 @@ Grailbird.data.tweets_2010_06 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "17217156178", + "text" : "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.", + "id" : 17217156178, + "created_at" : "2010-06-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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "17217461602", + "text" : "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.", + "id" : 17217461602, + "created_at" : "2010-06-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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -376,50 +420,6 @@ Grailbird.data.tweets_2010_06 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "17217156178", - "text" : "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.", - "id" : 17217156178, - "created_at" : "2010-06-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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "17217461602", - "text" : "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.", - "id" : 17217461602, - "created_at" : "2010-06-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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { @@ -1250,7 +1250,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 3, 11 ], "id_str" : "5813712", @@ -1277,7 +1277,7 @@ Grailbird.data.tweets_2010_06 = "id" : 15953679158, "created_at" : "2010-06-11 20:25:39 +0000", "user" : { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "protected" : false, "id_str" : "5813712", @@ -1332,7 +1332,7 @@ Grailbird.data.tweets_2010_06 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -1700,6 +1700,61 @@ Grailbird.data.tweets_2010_06 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/gowalla.com\/\" rel=\"nofollow\"\u003EGowalla\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ { + "text" : "sfo", + "indices" : [ 16, 20 ] + }, { + "text" : "yyj", + "indices" : [ 26, 30 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "15564749432", + "text" : "Just Arrived in #sfo from #yyj \u2014 at SFO San Francisco International http:\/\/gowal.la\/r\/BUD", + "id" : 15564749432, + "created_at" : "2010-06-06 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "15563895743", + "geo" : { }, + "id_str" : "15569457675", + "in_reply_to_user_id" : 17088322, + "text" : "@ChrisNoel_Vic thanks man! Pretty excited. :) We should meet up for beers when I get back.", + "id" : 15569457675, + "in_reply_to_status_id" : 15563895743, + "created_at" : "2010-06-06 00:00:00 +0000", + "in_reply_to_screen_name" : "HipwoodDigital", + "in_reply_to_user_id_str" : "17088322", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/gowalla.com\/\" rel=\"nofollow\"\u003EGowalla\u003C\/a\u003E", "entities" : { @@ -1962,61 +2017,6 @@ Grailbird.data.tweets_2010_06 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/gowalla.com\/\" rel=\"nofollow\"\u003EGowalla\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ { - "text" : "sfo", - "indices" : [ 16, 20 ] - }, { - "text" : "yyj", - "indices" : [ 26, 30 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "15564749432", - "text" : "Just Arrived in #sfo from #yyj \u2014 at SFO San Francisco International http:\/\/gowal.la\/r\/BUD", - "id" : 15564749432, - "created_at" : "2010-06-06 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "15563895743", - "geo" : { }, - "id_str" : "15569457675", - "in_reply_to_user_id" : 17088322, - "text" : "@ChrisNoel_Vic thanks man! Pretty excited. :) We should meet up for beers when I get back.", - "id" : 15569457675, - "in_reply_to_status_id" : 15563895743, - "created_at" : "2010-06-06 00:00:00 +0000", - "in_reply_to_screen_name" : "HipwoodDigital", - "in_reply_to_user_id_str" : "17088322", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -2058,7 +2058,7 @@ Grailbird.data.tweets_2010_06 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } diff --git a/public/tweets/data/js/tweets/2010_07.js b/public/tweets/data/js/tweets/2010_07.js index f3cce52..cd6c0fc 100755 --- a/public/tweets/data/js/tweets/2010_07.js +++ b/public/tweets/data/js/tweets/2010_07.js @@ -98,6 +98,28 @@ Grailbird.data.tweets_2010_07 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "19533135493", + "text" : "YYC -> YYJ ... Back to reality", + "id" : 19533135493, + "created_at" : "2010-07-26 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { @@ -131,28 +153,6 @@ Grailbird.data.tweets_2010_07 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "19533135493", - "text" : "YYC -> YYJ ... Back to reality", - "id" : 19533135493, - "created_at" : "2010-07-26 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -188,7 +188,7 @@ Grailbird.data.tweets_2010_07 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865667126408773632\/QX5O6RhU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/928419904385990657\/tza-LEdZ_normal.jpg", "id" : 14273142, "verified" : false } @@ -235,11 +235,11 @@ Grailbird.data.tweets_2010_07 = "id" : 18749654267, "created_at" : "2010-07-17 07:01:11 +0000", "user" : { - "name" : "Alexis Ohanian \uD83D\uDDFD", + "name" : "Alexis Ohanian Sr.", "screen_name" : "alexisohanian", "protected" : false, "id_str" : "811350", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/819412587137769472\/26I1zqqk_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/975128915533426688\/JEGHXFiz_normal.jpg", "id" : 811350, "verified" : true } @@ -314,7 +314,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay", + "name" : "Action Jay: The New Batch", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -347,7 +347,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay", + "name" : "Action Jay: The New Batch", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -380,7 +380,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay", + "name" : "Action Jay: The New Batch", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -578,7 +578,7 @@ Grailbird.data.tweets_2010_07 = "screen_name" : "sroucheray", "protected" : false, "id_str" : "42421507", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000137131481\/2b55a9c9aaf18f4423dae994fb9dae70_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/948657236959748096\/rjaN3z_e_normal.jpg", "id" : 42421507, "verified" : false } @@ -769,7 +769,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -796,7 +796,7 @@ Grailbird.data.tweets_2010_07 = "id" : 18171089437, "created_at" : "2010-07-10 04:02:35 +0000", "user" : { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", diff --git a/public/tweets/data/js/tweets/2010_08.js b/public/tweets/data/js/tweets/2010_08.js index 3717077..edfc229 100755 --- a/public/tweets/data/js/tweets/2010_08.js +++ b/public/tweets/data/js/tweets/2010_08.js @@ -8,9 +8,9 @@ Grailbird.data.tweets_2010_08 = "urls" : [ ] }, "geo" : { }, - "id_str" : "22673362598", - "text" : "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\".", - "id" : 22673362598, + "id_str" : "22673150711", + "text" : "Workaround for stuck MBP trackpad: disable Dragging in trackpad prefs, then re-enable. That unstuck it for me just now. Hooray, no reboot.", + "id" : 22673150711, "created_at" : "2010-09-01 00:00:00 +0000", "user" : { "name" : "Sami Samhuri", @@ -30,9 +30,9 @@ Grailbird.data.tweets_2010_08 = "urls" : [ ] }, "geo" : { }, - "id_str" : "22673150711", - "text" : "Workaround for stuck MBP trackpad: disable Dragging in trackpad prefs, then re-enable. That unstuck it for me just now. Hooray, no reboot.", - "id" : 22673150711, + "id_str" : "22673362598", + "text" : "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\".", + "id" : 22673362598, "created_at" : "2010-09-01 00:00:00 +0000", "user" : { "name" : "Sami Samhuri", @@ -787,7 +787,7 @@ Grailbird.data.tweets_2010_08 = "screen_name" : "chuq", "protected" : false, "id_str" : "13217612", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/878288211339902976\/dDvof4nb_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951920187925659648\/HJ1V55q5_normal.jpg", "id" : 13217612, "verified" : false } @@ -974,57 +974,6 @@ Grailbird.data.tweets_2010_08 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Sam Stephenson", - "screen_name" : "sstephenson", - "indices" : [ 3, 15 ], - "id_str" : "6707392", - "id" : 6707392 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "20939389257", - "text" : "RT @sstephenson: Stay looks handy for switching between internal and external displays: http:\/\/cordlessdog.com\/stay\/", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "20934106284", - "text" : "Stay looks handy for switching between internal and external displays: http:\/\/cordlessdog.com\/stay\/", - "id" : 20934106284, - "created_at" : "2010-08-12 01:30:50 +0000", - "user" : { - "name" : "Sam Stephenson", - "screen_name" : "sstephenson", - "protected" : false, - "id_str" : "6707392", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/736761202181689345\/vdVKW0Gw_normal.jpg", - "id" : 6707392, - "verified" : false - } - }, - "id" : 20939389257, - "created_at" : "2010-08-12 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { diff --git a/public/tweets/data/js/tweets/2010_09.js b/public/tweets/data/js/tweets/2010_09.js index 47982cf..ef5138e 100755 --- a/public/tweets/data/js/tweets/2010_09.js +++ b/public/tweets/data/js/tweets/2010_09.js @@ -47,7 +47,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bruce Swedal", + "name" : "Bruce Wayne Swedal", "screen_name" : "swedal", "indices" : [ 3, 10 ], "id_str" : "7350652", @@ -74,7 +74,7 @@ Grailbird.data.tweets_2010_09 = "id" : 25898221598, "created_at" : "2010-09-29 16:30:36 +0000", "user" : { - "name" : "Bruce Swedal", + "name" : "Bruce Wayne Swedal", "screen_name" : "swedal", "protected" : false, "id_str" : "7350652", @@ -735,7 +735,7 @@ Grailbird.data.tweets_2010_09 = "screen_name" : "mathias", "protected" : false, "id_str" : "532923", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1255767431\/kung-fu_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/952797845534453760\/HRhT4f_5_normal.jpg", "id" : 532923, "verified" : true } @@ -1082,7 +1082,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "@rem ~ offline \uD83D\uDDA4", + "name" : "@rem", "screen_name" : "rem", "indices" : [ 3, 7 ], "id_str" : "648873", @@ -1121,7 +1121,7 @@ Grailbird.data.tweets_2010_09 = "id" : 25605392653, "created_at" : "2010-09-26 16:41:36 +0000", "user" : { - "name" : "@rem ~ offline \uD83D\uDDA4", + "name" : "@rem", "screen_name" : "rem", "protected" : false, "id_str" : "648873", @@ -1145,7 +1145,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 3, 10 ], "id_str" : "8526432", @@ -1172,7 +1172,7 @@ Grailbird.data.tweets_2010_09 = "id" : 25626080353, "created_at" : "2010-09-26 21:39:07 +0000", "user" : { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "protected" : false, "id_str" : "8526432", @@ -1214,6 +1214,57 @@ Grailbird.data.tweets_2010_09 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Hacker News", + "screen_name" : "newsycombinator", + "indices" : [ 3, 19 ], + "id_str" : "14335498", + "id" : 14335498 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "25408426670", + "text" : "RT @newsycombinator: Node.js: a short history http:\/\/j.mp\/bhqSi7", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/www.steer.me\" rel=\"nofollow\"\u003Enewsycombinator\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "25368955288", + "text" : "Node.js: a short history http:\/\/j.mp\/bhqSi7", + "id" : 25368955288, + "created_at" : "2010-09-24 03:00:05 +0000", + "user" : { + "name" : "Hacker News", + "screen_name" : "newsycombinator", + "protected" : false, + "id_str" : "14335498", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/469397708986269696\/iUrYEOpJ_normal.png", + "id" : 14335498, + "verified" : false + } + }, + "id" : 25408426670, + "created_at" : "2010-09-24 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { @@ -1416,7 +1467,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "giles", + "name" : "too much future make it stop", "screen_name" : "gilesgoatboy", "indices" : [ 34, 47 ], "id_str" : "1341781", @@ -1443,57 +1494,6 @@ Grailbird.data.tweets_2010_09 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Hacker News", - "screen_name" : "newsycombinator", - "indices" : [ 3, 19 ], - "id_str" : "14335498", - "id" : 14335498 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "25408426670", - "text" : "RT @newsycombinator: Node.js: a short history http:\/\/j.mp\/bhqSi7", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.steer.me\" rel=\"nofollow\"\u003Enewsycombinator\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "25368955288", - "text" : "Node.js: a short history http:\/\/j.mp\/bhqSi7", - "id" : 25368955288, - "created_at" : "2010-09-24 03:00:05 +0000", - "user" : { - "name" : "Hacker News", - "screen_name" : "newsycombinator", - "protected" : false, - "id_str" : "14335498", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/469397708986269696\/iUrYEOpJ_normal.png", - "id" : 14335498, - "verified" : false - } - }, - "id" : 25408426670, - "created_at" : "2010-09-24 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { @@ -1542,7 +1542,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "indices" : [ 0, 11 ], "id_str" : "14939200", @@ -1578,7 +1578,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "indices" : [ 0, 11 ], "id_str" : "14939200", @@ -1614,7 +1614,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", @@ -1641,7 +1641,7 @@ Grailbird.data.tweets_2010_09 = "id" : 25317257681, "created_at" : "2010-09-23 15:31:23 +0000", "user" : { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", @@ -2129,7 +2129,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas H. Pt\u00E1\u010Dek", + "name" : "Thomas H. Ptacek", "screen_name" : "tqbf", "indices" : [ 3, 8 ], "id_str" : "9395312", @@ -2156,11 +2156,11 @@ Grailbird.data.tweets_2010_09 = "id" : 24818193150, "created_at" : "2010-09-18 03:37:22 +0000", "user" : { - "name" : "Thomas H. Pt\u00E1\u010Dek", + "name" : "Thomas H. Ptacek", "screen_name" : "tqbf", "protected" : false, "id_str" : "9395312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/763466249107939328\/No7KoyMS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937809576912601088\/sJbSGoAh_normal.jpg", "id" : 9395312, "verified" : false } @@ -2213,7 +2213,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "indices" : [ 3, 12 ], "id_str" : "14658472", @@ -2246,7 +2246,7 @@ Grailbird.data.tweets_2010_09 = "id" : 24785569749, "created_at" : "2010-09-17 19:25:23 +0000", "user" : { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "protected" : false, "id_str" : "14658472", diff --git a/public/tweets/data/js/tweets/2010_10.js b/public/tweets/data/js/tweets/2010_10.js index 6420020..5b5d892 100755 --- a/public/tweets/data/js/tweets/2010_10.js +++ b/public/tweets/data/js/tweets/2010_10.js @@ -943,6 +943,31 @@ Grailbird.data.tweets_2010_10 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { + "type" : "Point", + "coordinates" : [ 48.47153013, -123.32695609 ] + }, + "id_str" : "29132023240", + "text" : "Of course this would happen at the end of a Friday. Thanks Murph!", + "id" : 29132023240, + "created_at" : "2010-10-29 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { @@ -969,7 +994,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -1128,31 +1153,6 @@ Grailbird.data.tweets_2010_10 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { - "type" : "Point", - "coordinates" : [ 48.47153013, -123.32695609 ] - }, - "id_str" : "29132023240", - "text" : "Of course this would happen at the end of a Friday. Thanks Murph!", - "id" : 29132023240, - "created_at" : "2010-10-29 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { @@ -1565,7 +1565,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "indices" : [ 3, 12 ], "id_str" : "14658472", @@ -1592,7 +1592,7 @@ Grailbird.data.tweets_2010_10 = "id" : 28791548232, "created_at" : "2010-10-26 13:40:48 +0000", "user" : { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "protected" : false, "id_str" : "14658472", @@ -1638,7 +1638,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Stephenson", + "name" : "Sam Stephenson \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "sstephenson", "indices" : [ 0, 12 ], "id_str" : "6707392", @@ -1928,7 +1928,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -1955,7 +1955,7 @@ Grailbird.data.tweets_2010_10 = "id" : 28541909390, "created_at" : "2010-10-23 23:08:44 +0000", "user" : { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", @@ -2434,6 +2434,39 @@ Grailbird.data.tweets_2010_10 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\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" : "27784155226", + "geo" : { }, + "id_str" : "27784410092", + "in_reply_to_user_id" : 894911, + "text" : "@JimRoepcke You're gonna be doing a lot of doobie-rolling when you're *living in a van, down by the river!!*", + "id" : 27784410092, + "in_reply_to_status_id" : 27784155226, + "created_at" : "2010-10-19 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { @@ -2642,39 +2675,6 @@ Grailbird.data.tweets_2010_10 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\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" : "27784155226", - "geo" : { }, - "id_str" : "27784410092", - "in_reply_to_user_id" : 894911, - "text" : "@JimRoepcke You're gonna be doing a lot of doobie-rolling when you're *living in a van, down by the river!!*", - "id" : 27784410092, - "in_reply_to_status_id" : 27784155226, - "created_at" : "2010-10-19 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { @@ -2759,7 +2759,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -3017,7 +3017,7 @@ Grailbird.data.tweets_2010_10 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } @@ -3157,7 +3157,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bobby McKenna", + "name" : "bobby", "screen_name" : "clashmore", "indices" : [ 3, 13 ], "id_str" : "430974664", @@ -3184,11 +3184,11 @@ Grailbird.data.tweets_2010_10 = "id" : 27361842996, "created_at" : "2010-10-14 17:35:41 +0000", "user" : { - "name" : "bobby \uD83D\uDEBD", + "name" : "bobby", "screen_name" : "bobby", "protected" : false, "id_str" : "17983820", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/908438483395645440\/lsp6GN2S_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/984010303619977219\/l7m9oOXK_normal.jpg", "id" : 17983820, "verified" : false } @@ -3604,7 +3604,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 1, 13 ], "id_str" : "6927562", @@ -3646,7 +3646,7 @@ Grailbird.data.tweets_2010_10 = "id_str" : "9885102", "id" : 9885102 }, { - "name" : "\u212D\u0251\u2148\u1D64\u02E2", + "name" : "Edge Case \u212D\u0251\u2148\u1D64\u02E2", "screen_name" : "Caius", "indices" : [ 14, 20 ], "id_str" : "5857812", @@ -3663,7 +3663,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u212D\u0251\u2148\u1D64\u02E2", + "name" : "Edge Case \u212D\u0251\u2148\u1D64\u02E2", "screen_name" : "Caius", "indices" : [ 3, 9 ], "id_str" : "5857812", @@ -3683,7 +3683,7 @@ Grailbird.data.tweets_2010_10 = "screen_name" : "drnic", "protected" : false, "id_str" : "9885102", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/844401686038896641\/I1QIEnMa_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/955646013292789761\/8YTWwI3l_normal.jpg", "id" : 9885102, "verified" : false } @@ -3896,6 +3896,34 @@ Grailbird.data.tweets_2010_10 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ { + "text" : "vim", + "indices" : [ 64, 68 ] + }, { + "text" : "emacs", + "indices" : [ 69, 75 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "26522561497", + "text" : "This might sound weird but is there a vimscript mode for Emacs? #vim #emacs", + "id" : 26522561497, + "created_at" : "2010-10-06 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { @@ -4042,85 +4070,6 @@ Grailbird.data.tweets_2010_10 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "indices" : [ 3, 14 ], - "id_str" : "14206068", - "id" : 14206068 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "26588923267", - "text" : "RT @tlrobinson: Writing recursive asynchronous code makes my head hurt.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "26584875031", - "text" : "Writing recursive asynchronous code makes my head hurt.", - "id" : 26584875031, - "created_at" : "2010-10-06 21:04:53 +0000", - "user" : { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "protected" : false, - "id_str" : "14206068", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", - "id" : 14206068, - "verified" : false - } - }, - "id" : 26588923267, - "created_at" : "2010-10-06 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ { - "text" : "vim", - "indices" : [ 64, 68 ] - }, { - "text" : "emacs", - "indices" : [ 69, 75 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "26522561497", - "text" : "This might sound weird but is there a vimscript mode for Emacs? #vim #emacs", - "id" : 26522561497, - "created_at" : "2010-10-06 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { diff --git a/public/tweets/data/js/tweets/2010_11.js b/public/tweets/data/js/tweets/2010_11.js index 1240ba3..bbe938c 100755 --- a/public/tweets/data/js/tweets/2010_11.js +++ b/public/tweets/data/js/tweets/2010_11.js @@ -50,7 +50,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ryah", + "name" : "not here", "screen_name" : "ryah", "indices" : [ 11, 16 ], "id_str" : "967076702", @@ -800,7 +800,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -1181,7 +1181,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "holman", "protected" : false, "id_str" : "11322372", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/822539344288350209\/fX0Xi3oZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/941033976583503878\/zywhUZGs_normal.jpg", "id" : 11322372, "verified" : true } @@ -1201,7 +1201,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Stephenson", + "name" : "Sam Stephenson \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "sstephenson", "indices" : [ 0, 12 ], "id_str" : "6707392", @@ -1672,7 +1672,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "patch -p1 punkin.dif", + "name" : "Ted Nuget", "screen_name" : "moonpolysoft", "indices" : [ 36, 49 ], "id_str" : "14204623", @@ -1700,7 +1700,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2308,7 +2308,7 @@ Grailbird.data.tweets_2010_11 = "id_str" : "663463", "id" : 663463 }, { - "name" : "ryah", + "name" : "not here", "screen_name" : "ryah", "indices" : [ 14, 19 ], "id_str" : "967076702", @@ -2325,7 +2325,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/hibariapp.com\" rel=\"nofollow\"\u003EHibari\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ryah", + "name" : "not here", "screen_name" : "ryah", "indices" : [ 0, 5 ], "id_str" : "967076702", @@ -2444,7 +2444,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 0, 8 ], "id_str" : "5813712", @@ -3227,7 +3227,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 3, 15 ], "id_str" : "676363", @@ -3254,11 +3254,11 @@ Grailbird.data.tweets_2010_11 = "id" : 4646758718111745, "created_at" : "2010-11-16 21:27:28 +0000", "user" : { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "protected" : false, "id_str" : "676363", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/675381240128602112\/hqOTM9i3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/963494548012916736\/pCrryYUw_normal.jpg", "id" : 676363, "verified" : false } @@ -3848,7 +3848,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3903,13 +3903,13 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", "id" : 27302287 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 16, 30 ], "id_str" : "29255412", @@ -3942,13 +3942,13 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", "id" : 27302287 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 126, 140 ], "id_str" : "29255412", @@ -3981,7 +3981,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4147,7 +4147,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "indices" : [ 3, 12 ], "id_str" : "14658472", @@ -4191,7 +4191,7 @@ Grailbird.data.tweets_2010_11 = "in_reply_to_screen_name" : "peterc", "in_reply_to_user_id_str" : "33493", "user" : { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "protected" : false, "id_str" : "14658472", @@ -4221,7 +4221,7 @@ Grailbird.data.tweets_2010_11 = "id_str" : "33493", "id" : 33493 }, { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "indices" : [ 12, 21 ], "id_str" : "14658472", @@ -4238,7 +4238,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "indices" : [ 0, 9 ], "id_str" : "14658472", @@ -4263,7 +4263,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } @@ -4283,7 +4283,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "indices" : [ 3, 12 ], "id_str" : "14658472", @@ -4310,7 +4310,7 @@ Grailbird.data.tweets_2010_11 = "id" : 3921192981372928, "created_at" : "2010-11-14 21:24:19 +0000", "user" : { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "protected" : false, "id_str" : "14658472", @@ -4365,7 +4365,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "getify", "protected" : false, "id_str" : "16686076", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/848955317136248840\/rcFY8W_a_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/938120772932923392\/O7aZNh4w_normal.jpg", "id" : 16686076, "verified" : false } @@ -4740,60 +4740,6 @@ Grailbird.data.tweets_2010_11 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "indices" : [ 3, 14 ], - "id_str" : "14206068", - "id" : 14206068 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "2862699633446913", - "text" : "RT @tlrobinson: You should never see multiple \"alert()\"s from the same JavaScript context on the screen at once, right? http:\/\/bit.ly\/di ...", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ { - "text" : "wtfjs", - "indices" : [ 125, 131 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "2862092545695745", - "text" : "You should never see multiple \"alert()\"s from the same JavaScript context on the screen at once, right? http:\/\/bit.ly\/dir1W7 #wtfjs", - "id" : 2862092545695745, - "created_at" : "2010-11-11 23:15:50 +0000", - "user" : { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "protected" : false, - "id_str" : "14206068", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", - "id" : 14206068, - "verified" : false - } - }, - "id" : 2862699633446913, - "created_at" : "2010-11-11 23:18:15 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -4898,7 +4844,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "SubtleGradient", "protected" : false, "id_str" : "14405464", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/566657299\/thomas-aylott-75_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/974751815680983040\/6zOfX-Ls_normal.jpg", "id" : 14405464, "verified" : false } @@ -4924,13 +4870,13 @@ Grailbird.data.tweets_2010_11 = "id_str" : "795244", "id" : 795244 }, { - "name" : "giles", + "name" : "too much future make it stop", "screen_name" : "gilesgoatboy", "indices" : [ 14, 27 ], "id_str" : "1341781", "id" : 1341781 }, { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 40, 55 ], "id_str" : "27302287", @@ -4947,13 +4893,13 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "giles", + "name" : "too much future make it stop", "screen_name" : "gilesgoatboy", "indices" : [ 0, 13 ], "id_str" : "1341781", "id" : 1341781 }, { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 26, 41 ], "id_str" : "27302287", @@ -4998,7 +4944,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "giles", + "name" : "too much future make it stop", "screen_name" : "gilesgoatboy", "indices" : [ 3, 16 ], "id_str" : "1341781", @@ -5025,7 +4971,7 @@ Grailbird.data.tweets_2010_11 = "id" : 2520070060253184, "created_at" : "2010-11-11 00:36:46 +0000", "user" : { - "name" : "giles", + "name" : "too much future make it stop", "screen_name" : "gilesgoatboy", "protected" : false, "id_str" : "1341781", @@ -5235,7 +5181,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -5262,7 +5208,7 @@ Grailbird.data.tweets_2010_11 = "id" : 2157046266863616, "created_at" : "2010-11-10 00:34:14 +0000", "user" : { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", @@ -5397,7 +5343,7 @@ Grailbird.data.tweets_2010_11 = "id_str" : "473142109", "id" : 473142109 }, { - "name" : "A. Robinson Gross", + "name" : "a\u0338\u030C\u0360\u0304\u0351\u0314\u033F\u031D\u0347\u0348n\u0336\u0344\u0307\u0340\u0312\u0307\u0345d\u0336\u0309\u0340\u0300\u0304\u0311\u035D\u0349y\u0336\u0342\u0304\u0301\u034B\u031F\u031E\u0353\u031E", "screen_name" : "argv0", "indices" : [ 85, 91 ], "id_str" : "6509982", @@ -5432,7 +5378,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "A. Robinson Gross", + "name" : "a\u0338\u030C\u0360\u0304\u0351\u0314\u033F\u031D\u0347\u0348n\u0336\u0344\u0307\u0340\u0312\u0307\u0345d\u0336\u0309\u0340\u0300\u0304\u0311\u035D\u0349y\u0336\u0342\u0304\u0301\u034B\u031F\u031E\u0353\u031E", "screen_name" : "argv0", "indices" : [ 66, 72 ], "id_str" : "6509982", @@ -5469,11 +5415,11 @@ Grailbird.data.tweets_2010_11 = "id" : 2023394778292224, "created_at" : "2010-11-09 15:43:09 +0000", "user" : { - "name" : "The Changelog", + "name" : "Changelog", "screen_name" : "changelog", "protected" : false, "id_str" : "90286855", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/785644845838675968\/3cxeLxCy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/976117293179584515\/Yqd_Stzc_normal.jpg", "id" : 90286855, "verified" : false } @@ -5866,7 +5812,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "indices" : [ 0, 9 ], "id_str" : "14658472", @@ -5997,7 +5943,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "mathias", "protected" : false, "id_str" : "532923", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1255767431\/kung-fu_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/952797845534453760\/HRhT4f_5_normal.jpg", "id" : 532923, "verified" : true } @@ -6093,7 +6039,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -6157,7 +6103,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "saikatc", "protected" : false, "id_str" : "41154223", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000333885433\/4bf5add513eebe0d67ae287d9593bf36_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/979414359666581504\/8Yd_3t-G_normal.jpg", "id" : 41154223, "verified" : false } @@ -6314,120 +6260,6 @@ Grailbird.data.tweets_2010_11 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Sam Stephenson", - "screen_name" : "sstephenson", - "indices" : [ 3, 15 ], - "id_str" : "6707392", - "id" : 6707392 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "569167153467393", - "text" : "RT @sstephenson: The JS that powers Chalk is written in CoffeeScript, compiled and served on-the-fly with Brochure: http:\/\/github.com\/ss ...", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "553490682216449", - "text" : "The JS that powers Chalk is written in CoffeeScript, compiled and served on-the-fly with Brochure: http:\/\/github.com\/sstephenson\/brochure", - "id" : 553490682216449, - "created_at" : "2010-11-05 14:22:17 +0000", - "user" : { - "name" : "Sam Stephenson", - "screen_name" : "sstephenson", - "protected" : false, - "id_str" : "6707392", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/736761202181689345\/vdVKW0Gw_normal.jpg", - "id" : 6707392, - "verified" : false - } - }, - "id" : 569167153467393, - "created_at" : "2010-11-05 15:24:34 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Sam Stephenson", - "screen_name" : "sstephenson", - "indices" : [ 3, 15 ], - "id_str" : "6707392", - "id" : 6707392 - }, { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "indices" : [ 48, 53 ], - "id_str" : "4777951", - "id" : 4777951 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "569157116497920", - "text" : "RT @sstephenson: Spot-on dissection of Chalk by @_sjs: http:\/\/samisamhuri.blogspot.com\/2010\/11\/37signals-chalk-dissected.html", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "indices" : [ 31, 36 ], - "id_str" : "4777951", - "id" : 4777951 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "551993839976448", - "text" : "Spot-on dissection of Chalk by @_sjs: http:\/\/samisamhuri.blogspot.com\/2010\/11\/37signals-chalk-dissected.html", - "id" : 551993839976448, - "created_at" : "2010-11-05 14:16:20 +0000", - "user" : { - "name" : "Sam Stephenson", - "screen_name" : "sstephenson", - "protected" : false, - "id_str" : "6707392", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/736761202181689345\/vdVKW0Gw_normal.jpg", - "id" : 6707392, - "verified" : false - } - }, - "id" : 569157116497920, - "created_at" : "2010-11-05 15:24:32 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { @@ -6564,7 +6396,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve Streza \uD83C\uDF39", + "name" : "Steve Streza \uD83C\uDF39 (he\/they)", "screen_name" : "SteveStreza", "indices" : [ 3, 15 ], "id_str" : "658643", @@ -6591,7 +6423,7 @@ Grailbird.data.tweets_2010_11 = "id" : 375969575604224, "created_at" : "2010-11-05 02:36:52 +0000", "user" : { - "name" : "Steve Streza \uD83C\uDF39", + "name" : "Steve Streza \uD83C\uDF39 (he\/they)", "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", @@ -6715,7 +6547,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "SubtleGradient", "protected" : false, "id_str" : "14405464", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/566657299\/thomas-aylott-75_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/974751815680983040\/6zOfX-Ls_normal.jpg", "id" : 14405464, "verified" : false } @@ -6907,7 +6739,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "dhh", "protected" : false, "id_str" : "14561327", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2556368541\/alng5gtlmjhrdlr3qxqv_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/975876868455809024\/eK7mDppU_normal.jpg", "id" : 14561327, "verified" : true } @@ -6985,7 +6817,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -7241,57 +7073,6 @@ Grailbird.data.tweets_2010_11 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Sam Stephenson", - "screen_name" : "sstephenson", - "indices" : [ 3, 15 ], - "id_str" : "6707392", - "id" : 6707392 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "29483259436", - "text" : "RT @sstephenson: Chalk is a little iPad app we made for fun: http:\/\/bit.ly\/c93xN3", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "29473292480", - "text" : "Chalk is a little iPad app we made for fun: http:\/\/bit.ly\/c93xN3", - "id" : 29473292480, - "created_at" : "2010-11-02 14:12:54 +0000", - "user" : { - "name" : "Sam Stephenson", - "screen_name" : "sstephenson", - "protected" : false, - "id_str" : "6707392", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/736761202181689345\/vdVKW0Gw_normal.jpg", - "id" : 6707392, - "verified" : false - } - }, - "id" : 29483259436, - "created_at" : "2010-11-02 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { diff --git a/public/tweets/data/js/tweets/2010_12.js b/public/tweets/data/js/tweets/2010_12.js index 61e7a45..157f351 100755 --- a/public/tweets/data/js/tweets/2010_12.js +++ b/public/tweets/data/js/tweets/2010_12.js @@ -328,7 +328,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter-Paul Koch", + "name" : "ppk", "screen_name" : "ppk", "indices" : [ 3, 7 ], "id_str" : "887251", @@ -355,7 +355,7 @@ Grailbird.data.tweets_2010_12 = "id" : 20105073468112896, "created_at" : "2010-12-29 13:13:17 +0000", "user" : { - "name" : "Peter-Paul Koch", + "name" : "ppk", "screen_name" : "ppk", "protected" : false, "id_str" : "887251", @@ -410,7 +410,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865667126408773632\/QX5O6RhU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/928419904385990657\/tza-LEdZ_normal.jpg", "id" : 14273142, "verified" : false } @@ -514,7 +514,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -586,7 +586,7 @@ Grailbird.data.tweets_2010_12 = "id_str" : "123323498", "id" : 123323498 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 11, 25 ], "id_str" : "29255412", @@ -658,7 +658,7 @@ Grailbird.data.tweets_2010_12 = "id_str" : "123323498", "id" : 123323498 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 11, 25 ], "id_str" : "29255412", @@ -691,7 +691,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Elliott Kernber", + "name" : "Elliott K", "screen_name" : "elliottkember", "indices" : [ 0, 14 ], "id_str" : "903351", @@ -757,7 +757,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Elliott Kernber", + "name" : "Elliott K", "screen_name" : "elliottkember", "indices" : [ 0, 14 ], "id_str" : "903351", @@ -1063,7 +1063,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "getify", "protected" : false, "id_str" : "16686076", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/848955317136248840\/rcFY8W_a_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/938120772932923392\/O7aZNh4w_normal.jpg", "id" : 16686076, "verified" : false } @@ -1083,7 +1083,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "initial con offering", + "name" : "interlinear annotation separator", "screen_name" : "tilgovi", "indices" : [ 0, 8 ], "id_str" : "15258949", @@ -1134,57 +1134,6 @@ Grailbird.data.tweets_2010_12 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Sam Stephenson", - "screen_name" : "sstephenson", - "indices" : [ 3, 15 ], - "id_str" : "6707392", - "id" : 6707392 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "15805187683778560", - "text" : "RT @sstephenson: Dropbox 1.0: \u201CYou now can choose which folders get downloaded to which computers.\u201D Right on. http:\/\/blog.dropbox.com\/?p=581", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "15800050101788672", - "text" : "Dropbox 1.0: \u201CYou now can choose which folders get downloaded to which computers.\u201D Right on. http:\/\/blog.dropbox.com\/?p=581", - "id" : 15800050101788672, - "created_at" : "2010-12-17 16:06:40 +0000", - "user" : { - "name" : "Sam Stephenson", - "screen_name" : "sstephenson", - "protected" : false, - "id_str" : "6707392", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/736761202181689345\/vdVKW0Gw_normal.jpg", - "id" : 6707392, - "verified" : false - } - }, - "id" : 15805187683778560, - "created_at" : "2010-12-17 16:27:05 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { @@ -1426,13 +1375,13 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Stephenson", + "name" : "Sam Stephenson \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "sstephenson", "indices" : [ 3, 15 ], "id_str" : "6707392", "id" : 6707392 }, { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 20, 32 ], "id_str" : "6927562", @@ -1460,7 +1409,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -1493,7 +1442,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -1526,7 +1475,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1645,7 +1594,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "brianarn", "protected" : false, "id_str" : "118963", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/820026865607970816\/bR15dszl_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/968964580830363648\/f3lPVCqu_normal.jpg", "id" : 118963, "verified" : false } @@ -1964,7 +1913,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1997,7 +1946,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Wil Wheaton", + "name" : "Wil 'Ban the Nazis' Wheaton", "screen_name" : "wilw", "indices" : [ 3, 8 ], "id_str" : "1183041", @@ -2041,7 +1990,7 @@ Grailbird.data.tweets_2010_12 = "in_reply_to_screen_name" : "alexisohanian", "in_reply_to_user_id_str" : "811350", "user" : { - "name" : "Wil Wheaton", + "name" : "Wil 'Ban the Nazis' Wheaton", "screen_name" : "wilw", "protected" : false, "id_str" : "1183041", @@ -2270,7 +2219,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -2290,7 +2239,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2345,7 +2294,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2378,7 +2327,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2444,7 +2393,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Elliott Kernber", + "name" : "Elliott K", "screen_name" : "elliottkember", "indices" : [ 0, 14 ], "id_str" : "903351", @@ -2477,7 +2426,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2513,7 +2462,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2571,7 +2520,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Piponi", + "name" : "\u2202an pd piponi", "screen_name" : "sigfpe", "indices" : [ 0, 7 ], "id_str" : "16748247", @@ -2766,7 +2715,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter-Paul Koch", + "name" : "ppk", "screen_name" : "ppk", "indices" : [ 0, 4 ], "id_str" : "887251", @@ -2799,7 +2748,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter-Paul Koch", + "name" : "ppk", "screen_name" : "ppk", "indices" : [ 0, 4 ], "id_str" : "887251", @@ -2832,7 +2781,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter-Paul Koch", + "name" : "ppk", "screen_name" : "ppk", "indices" : [ 0, 4 ], "id_str" : "887251", @@ -2865,7 +2814,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter-Paul Koch", + "name" : "ppk", "screen_name" : "ppk", "indices" : [ 0, 4 ], "id_str" : "887251", @@ -2982,7 +2931,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -3015,7 +2964,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -3263,7 +3212,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 27, 41 ], "id_str" : "29255412", @@ -3445,7 +3394,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u13AC\u13A1\u13A5\u13E6", + "name" : "Very Stable Subgenius - \u13AC\u13A1\u13A5\u13E6", "screen_name" : "erikcorry", "indices" : [ 3, 13 ], "id_str" : "16100691", @@ -3466,16 +3415,13 @@ Grailbird.data.tweets_2010_12 = "hashtags" : [ ], "urls" : [ ] }, - "geo" : { - "type" : "Point", - "coordinates" : [ 56.0876776, 10.1450179 ] - }, + "geo" : { }, "id_str" : "12265915898925057", "text" : "Node.js: Upgrade V8 to 3.0.0. https:\/\/github.com\/ry\/node\/commit\/c30f1137121315b0d3641af6dc61e3b047f940e1", "id" : 12265915898925057, "created_at" : "2010-12-07 22:03:16 +0000", "user" : { - "name" : "\u13AC\u13A1\u13A5\u13E6", + "name" : "Very Stable Subgenius - \u13AC\u13A1\u13A5\u13E6", "screen_name" : "erikcorry", "protected" : false, "id_str" : "16100691", @@ -3766,7 +3712,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "mjackson", "protected" : false, "id_str" : "734903", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902276500107362304\/vju-WV1i_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/979835395012612096\/jSB-nVy5_normal.jpg", "id" : 734903, "verified" : false } @@ -4331,7 +4277,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ghost Ships A Hoy \uD83D\uDC7B", + "name" : "Amy Hoy \u2728", "screen_name" : "amyhoy", "indices" : [ 0, 7 ], "id_str" : "627213", @@ -4364,7 +4310,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ghost Ships A Hoy \uD83D\uDC7B", + "name" : "Amy Hoy \u2728", "screen_name" : "amyhoy", "indices" : [ 0, 7 ], "id_str" : "627213", @@ -4397,7 +4343,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ghost Ships A Hoy \uD83D\uDC7B", + "name" : "Amy Hoy \u2728", "screen_name" : "amyhoy", "indices" : [ 0, 7 ], "id_str" : "627213", @@ -4483,7 +4429,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } @@ -4503,7 +4449,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4597,7 +4543,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5026,7 +4972,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -5059,7 +5005,7 @@ Grailbird.data.tweets_2010_12 = "id" : 10729089954488320, "created_at" : "2010-12-03 16:16:29 +0000", "user" : { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", @@ -5083,13 +5029,13 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", "id" : 14939200 }, { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "indices" : [ 16, 25 ], "id_str" : "14658472", @@ -5106,7 +5052,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootsuite\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "indices" : [ 0, 9 ], "id_str" : "14658472", @@ -5127,7 +5073,7 @@ Grailbird.data.tweets_2010_12 = "in_reply_to_screen_name" : "roidrage", "in_reply_to_user_id_str" : "14658472", "user" : { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", @@ -5429,7 +5375,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ghost Ships A Hoy \uD83D\uDC7B", + "name" : "Amy Hoy \u2728", "screen_name" : "amyhoy", "indices" : [ 0, 7 ], "id_str" : "627213", diff --git a/public/tweets/data/js/tweets/2011_01.js b/public/tweets/data/js/tweets/2011_01.js index 59b80e2..13f7bda 100755 --- a/public/tweets/data/js/tweets/2011_01.js +++ b/public/tweets/data/js/tweets/2011_01.js @@ -367,7 +367,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1349,7 +1349,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1407,7 +1407,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1564,7 +1564,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 3, 15 ], "id_str" : "6927562", @@ -1591,11 +1591,11 @@ Grailbird.data.tweets_2011_01 = "id" : 28178429966819328, "created_at" : "2011-01-20 19:53:55 +0000", "user" : { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918433182906830848\/NwsKygmV_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/934619752768647168\/4ixrnv8S_normal.jpg", "id" : 6927562, "verified" : true } @@ -1786,7 +1786,7 @@ Grailbird.data.tweets_2011_01 = "screen_name" : "steshaw", "protected" : false, "id_str" : "18864191", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/777389792979845121\/lMioBfQW_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/949428480764100608\/uc83IoMY_normal.jpg", "id" : 18864191, "verified" : false } @@ -2197,7 +2197,7 @@ Grailbird.data.tweets_2011_01 = "screen_name" : "rainnwilson", "protected" : false, "id_str" : "19637934", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/897899380941836288\/Gy_lgf7a_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/949431044977049602\/S7fDuxFB_normal.jpg", "id" : 19637934, "verified" : true } @@ -2217,7 +2217,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2345,7 +2345,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -2378,7 +2378,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -2411,7 +2411,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -2444,7 +2444,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -2571,7 +2571,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -2752,7 +2752,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -2785,7 +2785,7 @@ Grailbird.data.tweets_2011_01 = "id" : 27516621731930112, "created_at" : "2011-01-19 00:04:08 +0000", "user" : { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", @@ -2809,7 +2809,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3478,7 +3478,7 @@ Grailbird.data.tweets_2011_01 = "screen_name" : "tloh", "protected" : false, "id_str" : "15181839", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/901925700327825408\/QM7i0gFI_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/959548695036411904\/OcOpj1Mm_normal.jpg", "id" : 15181839, "verified" : false } @@ -3659,7 +3659,7 @@ Grailbird.data.tweets_2011_01 = "screen_name" : "mathias", "protected" : false, "id_str" : "532923", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1255767431\/kung-fu_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/952797845534453760\/HRhT4f_5_normal.jpg", "id" : 532923, "verified" : true } @@ -3993,7 +3993,7 @@ Grailbird.data.tweets_2011_01 = "id_str" : "717313", "id" : 717313 }, { - "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 106, 114 ], "id_str" : "11375732", @@ -4015,7 +4015,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 89, 97 ], "id_str" : "11375732", @@ -4321,7 +4321,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 3, 15 ], "id_str" : "5905672", @@ -4370,11 +4370,11 @@ Grailbird.data.tweets_2011_01 = "id" : 24919228675002370, "created_at" : "2011-01-11 20:03:01 +0000", "user" : { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "protected" : false, "id_str" : "5905672", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/910617333080637441\/IzIDqu_O_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/971149489892245505\/ziLe5C8m_normal.jpg", "id" : 5905672, "verified" : true } @@ -4756,6 +4756,63 @@ Grailbird.data.tweets_2011_01 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "a\u0338\u030C\u0360\u0304\u0351\u0314\u033F\u031D\u0347\u0348n\u0336\u0344\u0307\u0340\u0312\u0307\u0345d\u0336\u0309\u0340\u0300\u0304\u0311\u035D\u0349y\u0336\u0342\u0304\u0301\u034B\u031F\u031E\u0353\u031E", + "screen_name" : "argv0", + "indices" : [ 3, 9 ], + "id_str" : "6509982", + "id" : 6509982 + } ], + "media" : [ ], + "hashtags" : [ { + "text" : "nosql", + "indices" : [ 33, 39 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "24642759025491968", + "text" : "RT @argv0: Riak supports kill-9. #nosql", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ { + "text" : "nosql", + "indices" : [ 22, 28 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "24570925143818240", + "text" : "Riak supports kill-9. #nosql", + "id" : 24570925143818240, + "created_at" : "2011-01-10 20:58:59 +0000", + "user" : { + "name" : "a\u0338\u030C\u0360\u0304\u0351\u0314\u033F\u031D\u0347\u0348n\u0336\u0344\u0307\u0340\u0312\u0307\u0345d\u0336\u0309\u0340\u0300\u0304\u0311\u035D\u0349y\u0336\u0342\u0304\u0301\u034B\u031F\u031E\u0353\u031E", + "screen_name" : "argv0", + "protected" : false, + "id_str" : "6509982", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/930176356968644608\/8Np88qqV_normal.jpg", + "id" : 6509982, + "verified" : false + } + }, + "id" : 24642759025491968, + "created_at" : "2011-01-11 01:44:26 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { @@ -4992,11 +5049,11 @@ Grailbird.data.tweets_2011_01 = "id" : 23134561001021441, "created_at" : "2011-01-06 21:51:23 +0000", "user" : { - "name" : "Webastiaan the Sith", + "name" : "Sebastiaan de With", "screen_name" : "sdw", "protected" : false, "id_str" : "6503412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/615416134846709760\/AySGnpwP_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920006896723091456\/CnqUgW3r_normal.png", "id" : 6503412, "verified" : true } @@ -5272,7 +5329,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tweetie", + "name" : "S", "screen_name" : "tweetie", "indices" : [ 51, 59 ], "id_str" : "18044341", diff --git a/public/tweets/data/js/tweets/2011_02.js b/public/tweets/data/js/tweets/2011_02.js index 4212a9a..d53bfd2 100755 --- a/public/tweets/data/js/tweets/2011_02.js +++ b/public/tweets/data/js/tweets/2011_02.js @@ -451,7 +451,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "#CapreseBoyz", + "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -533,7 +533,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 3, 15 ], "id_str" : "676363", @@ -560,11 +560,11 @@ Grailbird.data.tweets_2011_02 = "id" : 40215306840440832, "created_at" : "2011-02-23 01:04:10 +0000", "user" : { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "protected" : false, "id_str" : "676363", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/675381240128602112\/hqOTM9i3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/963494548012916736\/pCrryYUw_normal.jpg", "id" : 676363, "verified" : false } @@ -773,7 +773,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -806,7 +806,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -833,7 +833,7 @@ Grailbird.data.tweets_2011_02 = "id" : 39834931026866177, "created_at" : "2011-02-21 23:52:42 +0000", "user" : { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", @@ -938,7 +938,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "TonyclementCPC", "protected" : false, "id_str" : "121483664", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917704967900876800\/eh1C4lHu_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985661696235552768\/fOnw2kBa_normal.png", "id" : 121483664, "verified" : true } @@ -1374,7 +1374,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "paul_irish", "protected" : false, "id_str" : "1671811", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/420826194083213312\/CP1RmLa3_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972186419274776576\/LaJS_MKO_normal.jpg", "id" : 1671811, "verified" : false } @@ -1745,11 +1745,11 @@ Grailbird.data.tweets_2011_02 = "id" : 36360340325269504, "created_at" : "2011-02-12 09:45:55 +0000", "user" : { - "name" : "The Changelog", + "name" : "Changelog", "screen_name" : "changelog", "protected" : false, "id_str" : "90286855", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/785644845838675968\/3cxeLxCy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/976117293179584515\/Yqd_Stzc_normal.jpg", "id" : 90286855, "verified" : false } @@ -1820,11 +1820,11 @@ Grailbird.data.tweets_2011_02 = "id" : 36193656763322368, "created_at" : "2011-02-11 22:43:34 +0000", "user" : { - "name" : "The Changelog", + "name" : "Changelog", "screen_name" : "changelog", "protected" : false, "id_str" : "90286855", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/785644845838675968\/3cxeLxCy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/976117293179584515\/Yqd_Stzc_normal.jpg", "id" : 90286855, "verified" : false } @@ -1844,7 +1844,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "indices" : [ 3, 12 ], "id_str" : "14658472", @@ -1871,7 +1871,7 @@ Grailbird.data.tweets_2011_02 = "id" : 37196767728500736, "created_at" : "2011-02-14 17:09:35 +0000", "user" : { - "name" : "Mathias Meyer", + "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", "screen_name" : "roidrage", "protected" : false, "id_str" : "14658472", @@ -1946,7 +1946,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve Streza \uD83C\uDF39", + "name" : "Steve Streza \uD83C\uDF39 (he\/they)", "screen_name" : "SteveStreza", "indices" : [ 3, 15 ], "id_str" : "658643", @@ -1973,7 +1973,7 @@ Grailbird.data.tweets_2011_02 = "id" : 37007356093153280, "created_at" : "2011-02-14 04:36:55 +0000", "user" : { - "name" : "Steve Streza \uD83C\uDF39", + "name" : "Steve Streza \uD83C\uDF39 (he\/they)", "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", @@ -2241,7 +2241,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } @@ -2305,7 +2305,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "#CapreseBoyz", + "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", "screen_name" : "CLINT", "indices" : [ 3, 9 ], "id_str" : "45993", @@ -2332,11 +2332,11 @@ Grailbird.data.tweets_2011_02 = "id" : 36117736358678528, "created_at" : "2011-02-11 17:41:54 +0000", "user" : { - "name" : "#CapreseBoyz", + "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", "screen_name" : "CLINT", "protected" : false, "id_str" : "45993", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902292500412542979\/M2naV2vI_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/943903629597065216\/2Wj3ms6s_normal.jpg", "id" : 45993, "verified" : false } @@ -2773,7 +2773,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bryan Haggerty \uD83C\uDF2B", + "name" : "Bryan Haggerty \u270D\uFE0F", "screen_name" : "bhaggs", "indices" : [ 0, 7 ], "id_str" : "1692881", @@ -2832,7 +2832,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Robey", + "name" : "Robey [Album Version]", "screen_name" : "robey", "indices" : [ 3, 9 ], "id_str" : "9213742", @@ -2859,7 +2859,7 @@ Grailbird.data.tweets_2011_02 = "id" : 35545494906351616, "created_at" : "2011-02-10 03:48:01 +0000", "user" : { - "name" : "Robey", + "name" : "Robey [Album Version]", "screen_name" : "robey", "protected" : false, "id_str" : "9213742", @@ -2977,7 +2977,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "initial con offering", + "name" : "interlinear annotation separator", "screen_name" : "tilgovi", "indices" : [ 0, 8 ], "id_str" : "15258949", @@ -3038,7 +3038,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bryan Haggerty \uD83C\uDF2B", + "name" : "Bryan Haggerty \u270D\uFE0F", "screen_name" : "bhaggs", "indices" : [ 0, 7 ], "id_str" : "1692881", @@ -3071,7 +3071,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bryan Haggerty \uD83C\uDF2B", + "name" : "Bryan Haggerty \u270D\uFE0F", "screen_name" : "bhaggs", "indices" : [ 3, 10 ], "id_str" : "1692881", @@ -3115,11 +3115,11 @@ Grailbird.data.tweets_2011_02 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Bryan Haggerty \uD83C\uDF2B", + "name" : "Bryan Haggerty \u270D\uFE0F", "screen_name" : "bhaggs", "protected" : false, "id_str" : "1692881", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/860006466450735105\/BRSd8p69_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/980225922845483008\/iWV010nY_normal.jpg", "id" : 1692881, "verified" : false } @@ -3139,7 +3139,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "initial con offering", + "name" : "interlinear annotation separator", "screen_name" : "tilgovi", "indices" : [ 1, 9 ], "id_str" : "15258949", @@ -3172,7 +3172,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "initial con offering", + "name" : "interlinear annotation separator", "screen_name" : "tilgovi", "indices" : [ 3, 11 ], "id_str" : "15258949", @@ -3214,7 +3214,7 @@ Grailbird.data.tweets_2011_02 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "initial con offering", + "name" : "interlinear annotation separator", "screen_name" : "tilgovi", "protected" : false, "id_str" : "15258949", @@ -3342,7 +3342,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "#CapreseBoyz", + "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -3375,7 +3375,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal", + "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 3, 13 ], "id_str" : "6585632", @@ -3402,7 +3402,7 @@ Grailbird.data.tweets_2011_02 = "id" : 35130529372180480, "created_at" : "2011-02-09 00:19:05 +0000", "user" : { - "name" : "Kris Kowal", + "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "protected" : false, "id_str" : "6585632", @@ -3655,7 +3655,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "technomancy", + "name" : "@technomancy@icosahedron.website", "screen_name" : "technomancy", "indices" : [ 3, 15 ], "id_str" : "6264792", @@ -3682,7 +3682,7 @@ Grailbird.data.tweets_2011_02 = "id" : 33656360713322496, "created_at" : "2011-02-04 22:41:16 +0000", "user" : { - "name" : "technomancy", + "name" : "@technomancy@icosahedron.website", "screen_name" : "technomancy", "protected" : false, "id_str" : "6264792", @@ -4664,67 +4664,6 @@ Grailbird.data.tweets_2011_02 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Jason Emerick", - "screen_name" : "jemerick", - "indices" : [ 3, 12 ], - "id_str" : "3742641", - "id" : 3742641 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 32, 51 ], - "url" : "http:\/\/t.co\/5P6jcGL", - "expanded_url" : "http:\/\/www.technologywithpassion.com\/about-us\/team\/", - "display_url" : "technologywithpassion.com\/about-us\/team\/" - } ] - }, - "geo" : { }, - "id_str" : "32967398210404352", - "text" : "RT @jemerick: Fun about page... http:\/\/t.co\/5P6jcGL", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 18, 37 ], - "url" : "http:\/\/t.co\/5P6jcGL", - "expanded_url" : "http:\/\/www.technologywithpassion.com\/about-us\/team\/", - "display_url" : "technologywithpassion.com\/about-us\/team\/" - } ] - }, - "geo" : { }, - "id_str" : "32835842309357568", - "text" : "Fun about page... http:\/\/t.co\/5P6jcGL", - "id" : 32835842309357568, - "created_at" : "2011-02-02 16:20:49 +0000", - "user" : { - "name" : "Jason Emerick", - "screen_name" : "jemerick", - "protected" : false, - "id_str" : "3742641", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/740175746103054338\/Oi0dkIeH_normal.jpg", - "id" : 3742641, - "verified" : false - } - }, - "id" : 32967398210404352, - "created_at" : "2011-02-03 01:03:34 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { @@ -4810,7 +4749,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/836162165442654208\/3o_L9Jnn_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964058293306970112\/pfc-Jpsc_normal.jpg", "id" : 2911221, "verified" : true } diff --git a/public/tweets/data/js/tweets/2011_03.js b/public/tweets/data/js/tweets/2011_03.js index 9a20936..5702646 100755 --- a/public/tweets/data/js/tweets/2011_03.js +++ b/public/tweets/data/js/tweets/2011_03.js @@ -155,7 +155,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -290,7 +290,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 3, 17 ], "id_str" : "7198302", @@ -317,11 +317,11 @@ Grailbird.data.tweets_2011_03 = "id" : 50950275019702273, "created_at" : "2011-03-24 16:01:06 +0000", "user" : { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "protected" : false, "id_str" : "7198302", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900181993299857408\/2tWkb4b8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985570923599355905\/BAOq3fBC_normal.jpg", "id" : 7198302, "verified" : false } @@ -446,7 +446,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 12, 26 ], "id_str" : "7198302", @@ -479,7 +479,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -512,7 +512,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -545,7 +545,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -881,7 +881,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -914,7 +914,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -947,7 +947,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -980,7 +980,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1013,7 +1013,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1046,7 +1046,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1079,7 +1079,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1112,7 +1112,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1151,7 +1151,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 12, 26 ], "id_str" : "29255412", @@ -1196,7 +1196,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 12, 26 ], "id_str" : "29255412", @@ -1618,7 +1618,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "776831743508811776", "id" : 776831743508811776 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 9, 23 ], "id_str" : "29255412", @@ -1655,7 +1655,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "776831743508811776", "id" : 776831743508811776 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 9, 23 ], "id_str" : "29255412", @@ -1694,7 +1694,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Shaun \uD83C\uDD85\uD83C\uDD7E\uD83C\uDD83\uD83C\uDD74 \uD83C\uDD88\uD83C\uDD74\uD83C\uDD82 \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "Shaun Ruigrok", "screen_name" : "Shaun_R", "indices" : [ 0, 8 ], "id_str" : "14365611", @@ -1945,7 +1945,7 @@ Grailbird.data.tweets_2011_03 = "screen_name" : "holman", "protected" : false, "id_str" : "11322372", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/822539344288350209\/fX0Xi3oZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/941033976583503878\/zywhUZGs_normal.jpg", "id" : 11322372, "verified" : true } @@ -2036,7 +2036,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 0, 8 ], "id_str" : "5813712", @@ -2895,7 +2895,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter-Paul Koch", + "name" : "ppk", "screen_name" : "ppk", "indices" : [ 3, 7 ], "id_str" : "887251", @@ -2922,7 +2922,7 @@ Grailbird.data.tweets_2011_03 = "id" : 45188304525737985, "created_at" : "2011-03-08 18:25:06 +0000", "user" : { - "name" : "Peter-Paul Koch", + "name" : "ppk", "screen_name" : "ppk", "protected" : false, "id_str" : "887251", @@ -3397,7 +3397,7 @@ Grailbird.data.tweets_2011_03 = "screen_name" : "paul_irish", "protected" : false, "id_str" : "1671811", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/420826194083213312\/CP1RmLa3_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972186419274776576\/LaJS_MKO_normal.jpg", "id" : 1671811, "verified" : false } @@ -3513,7 +3513,7 @@ Grailbird.data.tweets_2011_03 = "screen_name" : "getify", "protected" : false, "id_str" : "16686076", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/848955317136248840\/rcFY8W_a_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/938120772932923392\/O7aZNh4w_normal.jpg", "id" : 16686076, "verified" : false } @@ -3655,7 +3655,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "11294", "id" : 11294 }, { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 7, 19 ], "id_str" : "6927562", diff --git a/public/tweets/data/js/tweets/2011_04.js b/public/tweets/data/js/tweets/2011_04.js index 4ee0229..9e8756b 100755 --- a/public/tweets/data/js/tweets/2011_04.js +++ b/public/tweets/data/js/tweets/2011_04.js @@ -263,7 +263,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -300,11 +300,11 @@ Grailbird.data.tweets_2011_04 = "id" : 64425378097266688, "created_at" : "2011-04-30 20:26:21 +0000", "user" : { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917536371085950976\/MIuNwAAR_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/966195642191228933\/4BhqRm2w_normal.jpg", "id" : 8038312, "verified" : true } @@ -544,7 +544,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 3, 15 ], "id_str" : "676363", @@ -571,11 +571,11 @@ Grailbird.data.tweets_2011_04 = "id" : 64397298414796801, "created_at" : "2011-04-30 18:34:47 +0000", "user" : { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "protected" : false, "id_str" : "676363", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/675381240128602112\/hqOTM9i3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/963494548012916736\/pCrryYUw_normal.jpg", "id" : 676363, "verified" : false } @@ -638,7 +638,7 @@ Grailbird.data.tweets_2011_04 = "screen_name" : "awbjs", "protected" : false, "id_str" : "159946057", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/501784749317185537\/4GXPdn0H_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951497541362700288\/hxugG7vx_normal.jpg", "id" : 159946057, "verified" : false } @@ -779,76 +779,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Skyler Slade", - "screen_name" : "skylerslade", - "indices" : [ 3, 15 ], - "id_str" : "14052205", - "id" : 14052205 - }, { - "name" : "In Memoriam", - "screen_name" : "grooveshark", - "indices" : [ 54, 66 ], - "id_str" : "732373899233660929", - "id" : 732373899233660929 - } ], - "media" : [ ], - "hashtags" : [ { - "text" : "android", - "indices" : [ 67, 75 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "64051050222600192", - "text" : "RT @skylerslade: seeking\/scrubbing coming soon to the @Grooveshark #android app ...", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "In Memoriam", - "screen_name" : "grooveshark", - "indices" : [ 37, 49 ], - "id_str" : "732373899233660929", - "id" : 732373899233660929 - } ], - "media" : [ ], - "hashtags" : [ { - "text" : "android", - "indices" : [ 50, 58 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "64046758556205057", - "text" : "seeking\/scrubbing coming soon to the @Grooveshark #android app ...", - "id" : 64046758556205057, - "created_at" : "2011-04-29 19:21:51 +0000", - "user" : { - "name" : "Skyler Slade", - "screen_name" : "skylerslade", - "protected" : false, - "id_str" : "14052205", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000637110001\/e7e2c55442a99e7b70c8168db192cdb8_normal.jpeg", - "id" : 14052205, - "verified" : false - } - }, - "id" : 64051050222600192, - "created_at" : "2011-04-29 19:38:55 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -976,7 +907,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "indices" : [ 0, 11 ], "id_str" : "14939200", @@ -1015,7 +946,7 @@ Grailbird.data.tweets_2011_04 = "id_str" : "780561", "id" : 780561 }, { - "name" : "Tales From the Cribb", + "name" : "sean cribbs", "screen_name" : "seancribbs", "indices" : [ 14, 25 ], "id_str" : "14939200", @@ -1373,7 +1304,7 @@ Grailbird.data.tweets_2011_04 = "screen_name" : "awbjs", "protected" : false, "id_str" : "159946057", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/501784749317185537\/4GXPdn0H_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951497541362700288\/hxugG7vx_normal.jpg", "id" : 159946057, "verified" : false } @@ -1436,7 +1367,7 @@ Grailbird.data.tweets_2011_04 = "screen_name" : "awbjs", "protected" : false, "id_str" : "159946057", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/501784749317185537\/4GXPdn0H_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951497541362700288\/hxugG7vx_normal.jpg", "id" : 159946057, "verified" : false } @@ -1625,7 +1556,7 @@ Grailbird.data.tweets_2011_04 = "screen_name" : "danielbmarkham", "protected" : false, "id_str" : "55648990", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/666355591305031680\/CrVX4s_i_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/978885554875064322\/5g6L_UOg_normal.jpg", "id" : 55648990, "verified" : false } @@ -2112,7 +2043,7 @@ Grailbird.data.tweets_2011_04 = "screen_name" : "firefox", "protected" : false, "id_str" : "2142731", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/747872627218350081\/37FasHm-_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/930427008173080576\/_AgS8Urc_normal.jpg", "id" : 2142731, "verified" : true } diff --git a/public/tweets/data/js/tweets/2011_05.js b/public/tweets/data/js/tweets/2011_05.js index ad66235..407c1e7 100755 --- a/public/tweets/data/js/tweets/2011_05.js +++ b/public/tweets/data/js/tweets/2011_05.js @@ -637,7 +637,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ryah", + "name" : "not here", "screen_name" : "ryah", "indices" : [ 0, 5 ], "id_str" : "967076702", @@ -671,7 +671,7 @@ Grailbird.data.tweets_2011_05 = "id_str" : "12599412", "id" : 12599412 }, { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 84, 96 ], "id_str" : "5905672", @@ -875,7 +875,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter-Paul Koch", + "name" : "ppk", "screen_name" : "ppk", "indices" : [ 0, 4 ], "id_str" : "887251", @@ -933,7 +933,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Elliott Kernber", + "name" : "Elliott K", "screen_name" : "elliottkember", "indices" : [ 3, 17 ], "id_str" : "903351", @@ -960,11 +960,11 @@ Grailbird.data.tweets_2011_05 = "id" : 73149687003226112, "created_at" : "2011-05-24 22:13:39 +0000", "user" : { - "name" : "Elliott Kernber", + "name" : "Elliott K", "screen_name" : "elliottkember", "protected" : false, "id_str" : "903351", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/859955508760920064\/K69yZap8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937027901148372992\/h4o-yOP2_normal.jpg", "id" : 903351, "verified" : true } @@ -1048,7 +1048,7 @@ Grailbird.data.tweets_2011_05 = "screen_name" : "bryanl", "protected" : false, "id_str" : "659933", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915933811468390400\/e9ddfd-7_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/984883051174998016\/2hLLNPZP_normal.jpg", "id" : 659933, "verified" : false } @@ -1819,7 +1819,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1852,7 +1852,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1885,7 +1885,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2419,7 +2419,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -2844,7 +2844,7 @@ Grailbird.data.tweets_2011_05 = "screen_name" : "paul_irish", "protected" : false, "id_str" : "1671811", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/420826194083213312\/CP1RmLa3_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972186419274776576\/LaJS_MKO_normal.jpg", "id" : 1671811, "verified" : false } @@ -2979,7 +2979,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -3128,7 +3128,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -3685,7 +3685,7 @@ Grailbird.data.tweets_2011_05 = "id_str" : "143883", "id" : 143883 }, { - "name" : "Jeff Waugh \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08\u270A\uD83C\uDFFB", + "name" : "Jeff Waugh", "screen_name" : "jdub", "indices" : [ 69, 74 ], "id_str" : "4690301", @@ -3708,7 +3708,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeff Waugh \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08\u270A\uD83C\uDFFB", + "name" : "Jeff Waugh", "screen_name" : "jdub", "indices" : [ 56, 61 ], "id_str" : "4690301", @@ -3734,7 +3734,7 @@ Grailbird.data.tweets_2011_05 = "screen_name" : "sogrady", "protected" : false, "id_str" : "143883", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1753525764\/image1326514302_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/973729739599941632\/xY7Rzg-o_normal.jpg", "id" : 143883, "verified" : false } @@ -3754,7 +3754,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 3, 15 ], "id_str" : "6927562", @@ -3781,11 +3781,11 @@ Grailbird.data.tweets_2011_05 = "id" : 69919693791703040, "created_at" : "2011-05-16 00:18:48 +0000", "user" : { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918433182906830848\/NwsKygmV_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/934619752768647168\/4ixrnv8S_normal.jpg", "id" : 6927562, "verified" : true } @@ -4500,7 +4500,7 @@ Grailbird.data.tweets_2011_05 = "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/836162165442654208\/3o_L9Jnn_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964058293306970112\/pfc-Jpsc_normal.jpg", "id" : 2911221, "verified" : true } @@ -4608,7 +4608,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4641,7 +4641,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4653,7 +4653,7 @@ Grailbird.data.tweets_2011_05 = "id_str" : "9533042", "id" : 9533042 }, { - "name" : "Nicolas Chambrier", + "name" : "Nicolas \uD83D\uDD95 Chambrier", "screen_name" : "naholyr", "indices" : [ 28, 36 ], "id_str" : "35705169", @@ -4686,7 +4686,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4698,7 +4698,7 @@ Grailbird.data.tweets_2011_05 = "id_str" : "9533042", "id" : 9533042 }, { - "name" : "Nicolas Chambrier", + "name" : "Nicolas \uD83D\uDD95 Chambrier", "screen_name" : "naholyr", "indices" : [ 28, 36 ], "id_str" : "35705169", diff --git a/public/tweets/data/js/tweets/2011_06.js b/public/tweets/data/js/tweets/2011_06.js index b72980c..0492562 100755 --- a/public/tweets/data/js/tweets/2011_06.js +++ b/public/tweets/data/js/tweets/2011_06.js @@ -282,7 +282,7 @@ Grailbird.data.tweets_2011_06 = "screen_name" : "awbjs", "protected" : false, "id_str" : "159946057", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/501784749317185537\/4GXPdn0H_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951497541362700288\/hxugG7vx_normal.jpg", "id" : 159946057, "verified" : false } @@ -333,7 +333,7 @@ Grailbird.data.tweets_2011_06 = "screen_name" : "awbjs", "protected" : false, "id_str" : "159946057", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/501784749317185537\/4GXPdn0H_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951497541362700288\/hxugG7vx_normal.jpg", "id" : 159946057, "verified" : false } @@ -496,7 +496,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -690,7 +690,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -723,7 +723,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -754,7 +754,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -982,7 +982,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -1867,7 +1867,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "fix(wpa): lol", + "name" : "Francis \uD83D\uDCBE Gulotta", "screen_name" : "reconbot", "indices" : [ 4, 13 ], "id_str" : "14082200", @@ -1992,7 +1992,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -2170,7 +2170,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -2197,11 +2197,11 @@ Grailbird.data.tweets_2011_06 = "id" : 77806627964723200, "created_at" : "2011-06-06 18:38:40 +0000", "user" : { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917536371085950976\/MIuNwAAR_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/966195642191228933\/4BhqRm2w_normal.jpg", "id" : 8038312, "verified" : true } @@ -2453,7 +2453,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", diff --git a/public/tweets/data/js/tweets/2011_07.js b/public/tweets/data/js/tweets/2011_07.js index fb9dcfc..432a1e1 100755 --- a/public/tweets/data/js/tweets/2011_07.js +++ b/public/tweets/data/js/tweets/2011_07.js @@ -147,7 +147,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal", + "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 0, 10 ], "id_str" : "6585632", @@ -352,7 +352,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal", + "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 0, 10 ], "id_str" : "6585632", @@ -385,7 +385,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal", + "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 0, 10 ], "id_str" : "6585632", @@ -451,7 +451,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal", + "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 0, 10 ], "id_str" : "6585632", @@ -484,7 +484,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal", + "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 0, 10 ], "id_str" : "6585632", @@ -2410,7 +2410,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -3167,7 +3167,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -3206,7 +3206,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -3327,7 +3327,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas H. Pt\u00E1\u010Dek", + "name" : "Thomas H. Ptacek", "screen_name" : "tqbf", "indices" : [ 0, 5 ], "id_str" : "9395312", @@ -3552,7 +3552,7 @@ Grailbird.data.tweets_2011_07 = "screen_name" : "benadida", "protected" : false, "id_str" : "14451083", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3004434304\/045db25dac144b64addf80c98baae975_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/966027154872877056\/I2ZQ1Ojr_normal.jpg", "id" : 14451083, "verified" : false } @@ -3704,7 +3704,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Aaron Heckmann", + "name" : "ajHecky", "screen_name" : "aaronheckmann", "indices" : [ 0, 14 ], "id_str" : "13818902", @@ -3743,7 +3743,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "1235521", "id" : 1235521 }, { - "name" : "Don Davies, MP", + "name" : "Don Davies MP", "screen_name" : "DonDavies", "indices" : [ 71, 81 ], "id_str" : "16189107", @@ -3760,7 +3760,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Don Davies, MP", + "name" : "Don Davies MP", "screen_name" : "DonDavies", "indices" : [ 58, 68 ], "id_str" : "16189107", @@ -4177,7 +4177,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -4293,7 +4293,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "123323498", "id" : 123323498 }, { - "name" : "Mi-ghoul Were-ov", + "name" : "Mike Sherov", "screen_name" : "mikesherov", "indices" : [ 25, 36 ], "id_str" : "4241651", @@ -4327,7 +4327,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "123323498", "id" : 123323498 }, { - "name" : "Mi-ghoul Were-ov", + "name" : "Mike Sherov", "screen_name" : "mikesherov", "indices" : [ 25, 36 ], "id_str" : "4241651", @@ -5440,7 +5440,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5512,7 +5512,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5545,7 +5545,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5578,7 +5578,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5611,7 +5611,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5702,7 +5702,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDF08", + "name" : "Tantek \u00C7elik", "screen_name" : "t", "indices" : [ 0, 2 ], "id_str" : "11628", @@ -5900,7 +5900,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -7822,7 +7822,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -7855,7 +7855,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -7908,7 +7908,7 @@ Grailbird.data.tweets_2011_07 = "id" : 88055999612727296, "created_at" : "2011-07-05 01:26:00 +0000", "user" : { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", @@ -8065,7 +8065,7 @@ Grailbird.data.tweets_2011_07 = "screen_name" : "vicpdcanada", "protected" : false, "id_str" : "80139117", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/721560631472562176\/wade5mNL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/933128278671466496\/9F7nlK4k_normal.jpg", "id" : 80139117, "verified" : true } @@ -8181,7 +8181,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "668423", "id" : 668423 }, { - "name" : "Kris Kowal", + "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 8, 18 ], "id_str" : "6585632", @@ -8242,7 +8242,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", diff --git a/public/tweets/data/js/tweets/2011_08.js b/public/tweets/data/js/tweets/2011_08.js index 06369c7..8d036cc 100755 --- a/public/tweets/data/js/tweets/2011_08.js +++ b/public/tweets/data/js/tweets/2011_08.js @@ -140,7 +140,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -990,11 +990,11 @@ Grailbird.data.tweets_2011_08 = "id_str" : "752673", "id" : 752673 }, { - "name" : "Ender", + "name" : "ender", "screen_name" : "ender", "indices" : [ 14, 20 ], - "id_str" : "280298998", - "id" : 280298998 + "id_str" : "823938", + "id" : 823938 } ], "media" : [ ], "hashtags" : [ ], @@ -1878,7 +1878,7 @@ Grailbird.data.tweets_2011_08 = "screen_name" : "_JamesNielsen", "protected" : false, "id_str" : "220909573", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845899030781607936\/y6yWQd37_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/973036289170710528\/tWoevzM__normal.jpg", "id" : 220909573, "verified" : false } @@ -2132,7 +2132,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2650,11 +2650,11 @@ Grailbird.data.tweets_2011_08 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Ziter", + "name" : "Spam Watch", "screen_name" : "spam", "indices" : [ 117, 122 ], - "id_str" : "771675027842400256", - "id" : 771675027842400256 + "id_str" : "14589771", + "id" : 14589771 } ], "media" : [ ], "hashtags" : [ ], @@ -3766,7 +3766,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "20826421", "id" : 20826421 }, { - "name" : "ryah", + "name" : "not here", "screen_name" : "ryah", "indices" : [ 112, 117 ], "id_str" : "967076702", @@ -4396,7 +4396,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -4433,7 +4433,7 @@ Grailbird.data.tweets_2011_08 = "id" : 100760690448543745, "created_at" : "2011-08-09 02:49:55 +0000", "user" : { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", @@ -4560,7 +4560,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "70596949", "id" : 70596949 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 12, 26 ], "id_str" : "29255412", @@ -4599,7 +4599,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "70596949", "id" : 70596949 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 12, 26 ], "id_str" : "29255412", @@ -4632,7 +4632,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4881,7 +4881,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "645143", "id" : 645143 }, { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 12, 24 ], "id_str" : "6927562", @@ -4898,7 +4898,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -4943,7 +4943,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 3, 15 ], "id_str" : "6927562", @@ -4970,11 +4970,11 @@ Grailbird.data.tweets_2011_08 = "id" : 99769913161416704, "created_at" : "2011-08-06 09:12:55 +0000", "user" : { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918433182906830848\/NwsKygmV_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/934619752768647168\/4ixrnv8S_normal.jpg", "id" : 6927562, "verified" : true } @@ -5515,7 +5515,7 @@ Grailbird.data.tweets_2011_08 = "screen_name" : "zii", "protected" : false, "id_str" : "12712742", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/880992273101578240\/ib3GlMDp_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/982615078200426497\/njD6-6iU_normal.jpg", "id" : 12712742, "verified" : false } @@ -6181,7 +6181,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 0, 14 ], "id_str" : "165975834", @@ -6969,7 +6969,7 @@ Grailbird.data.tweets_2011_08 = "screen_name" : "SubtleGradient", "protected" : false, "id_str" : "14405464", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/566657299\/thomas-aylott-75_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/974751815680983040\/6zOfX-Ls_normal.jpg", "id" : 14405464, "verified" : false } diff --git a/public/tweets/data/js/tweets/2011_09.js b/public/tweets/data/js/tweets/2011_09.js index c2db18f..e5cd487 100755 --- a/public/tweets/data/js/tweets/2011_09.js +++ b/public/tweets/data/js/tweets/2011_09.js @@ -31,7 +31,7 @@ Grailbird.data.tweets_2011_09 = "id_str" : "20079975", "id" : 20079975 }, { - "name" : "Kris Kowal", + "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 9, 19 ], "id_str" : "6585632", diff --git a/public/tweets/data/js/tweets/2011_10.js b/public/tweets/data/js/tweets/2011_10.js index b9037ad..840099d 100755 --- a/public/tweets/data/js/tweets/2011_10.js +++ b/public/tweets/data/js/tweets/2011_10.js @@ -893,7 +893,7 @@ Grailbird.data.tweets_2011_10 = "id_str" : "14417477", "id" : 14417477 }, { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 41, 55 ], "id_str" : "165975834", @@ -910,7 +910,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 24, 38 ], "id_str" : "165975834", @@ -1011,7 +1011,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -1085,7 +1085,7 @@ Grailbird.data.tweets_2011_10 = "screen_name" : "mraleph", "protected" : false, "id_str" : "53010195", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/428865653903081472\/XqtZKTVu_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961923701641039872\/TWwOK7mW_normal.jpg", "id" : 53010195, "verified" : false } diff --git a/public/tweets/data/js/tweets/2011_11.js b/public/tweets/data/js/tweets/2011_11.js index 817e58d..cbb79d3 100755 --- a/public/tweets/data/js/tweets/2011_11.js +++ b/public/tweets/data/js/tweets/2011_11.js @@ -189,7 +189,7 @@ Grailbird.data.tweets_2011_11 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } diff --git a/public/tweets/data/js/tweets/2011_12.js b/public/tweets/data/js/tweets/2011_12.js index 887c61b..425692d 100755 --- a/public/tweets/data/js/tweets/2011_12.js +++ b/public/tweets/data/js/tweets/2011_12.js @@ -777,10 +777,6 @@ Grailbird.data.tweets_2011_12 = "id" : 149243862597115904, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AhI4gJcCIAAoqhH.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -796,7 +792,12 @@ Grailbird.data.tweets_2011_12 = "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/4PV3JzWG" } ], "hashtags" : [ ], @@ -1127,7 +1128,7 @@ Grailbird.data.tweets_2011_12 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tane Piper", + "name" : "Tane Piper\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74\uDB40\uDC7F\uD83C\uDDF3\uD83C\uDDF1\uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "tanepiper", "indices" : [ 0, 10 ], "id_str" : "20693", @@ -1538,7 +1539,7 @@ Grailbird.data.tweets_2011_12 = "screen_name" : "paul_irish", "protected" : false, "id_str" : "1671811", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/420826194083213312\/CP1RmLa3_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972186419274776576\/LaJS_MKO_normal.jpg", "id" : 1671811, "verified" : false } @@ -1691,7 +1692,7 @@ Grailbird.data.tweets_2011_12 = "screen_name" : "stoyanstefanov", "protected" : false, "id_str" : "14620179", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/818694201109979136\/gt7qTDs-_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/922373854676135936\/94lxJ2Cz_normal.jpg", "id" : 14620179, "verified" : false } @@ -2168,6 +2169,10 @@ Grailbird.data.tweets_2011_12 = "h" : 373, "resize" : "fit", "w" : 280 + }, { + "h" : 373, + "resize" : "fit", + "w" : 280 }, { "h" : 150, "resize" : "crop", @@ -2176,11 +2181,8 @@ Grailbird.data.tweets_2011_12 = "h" : 373, "resize" : "fit", "w" : 280 - }, { - "h" : 373, - "resize" : "fit", - "w" : 280 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/WNQj2vHS" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2012_01.js b/public/tweets/data/js/tweets/2012_01.js index d9579b0..710ecec 100755 --- a/public/tweets/data/js/tweets/2012_01.js +++ b/public/tweets/data/js/tweets/2012_01.js @@ -39,7 +39,7 @@ Grailbird.data.tweets_2012_01 = "screen_name" : "paul_irish", "protected" : false, "id_str" : "1671811", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/420826194083213312\/CP1RmLa3_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972186419274776576\/LaJS_MKO_normal.jpg", "id" : 1671811, "verified" : false } @@ -585,7 +585,7 @@ Grailbird.data.tweets_2012_01 = "screen_name" : "ncb000gt", "protected" : false, "id_str" : "7955612", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/901171578121199617\/zb2V4iuS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/968596915439984641\/IoZbCMvy_normal.jpg", "id" : 7955612, "verified" : false } @@ -808,17 +808,9 @@ Grailbird.data.tweets_2012_01 = "id" : 162711201439170560, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AkIQ-cLCQAAeClF.jpg", "sizes" : [ { - "h" : 960, - "resize" : "fit", - "w" : 640 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 960, - "resize" : "fit", - "w" : 640 }, { "h" : 680, "resize" : "fit", @@ -827,7 +819,16 @@ Grailbird.data.tweets_2012_01 = "h" : 960, "resize" : "fit", "w" : 640 + }, { + "h" : 960, + "resize" : "fit", + "w" : 640 + }, { + "h" : 960, + "resize" : "fit", + "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/dzn9cgi4" } ], "hashtags" : [ { @@ -858,17 +859,9 @@ Grailbird.data.tweets_2012_01 = "id" : 162711201439170560, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AkIQ-cLCQAAeClF.jpg", "sizes" : [ { - "h" : 960, - "resize" : "fit", - "w" : 640 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 960, - "resize" : "fit", - "w" : 640 }, { "h" : 680, "resize" : "fit", @@ -877,7 +870,16 @@ Grailbird.data.tweets_2012_01 = "h" : 960, "resize" : "fit", "w" : 640 + }, { + "h" : 960, + "resize" : "fit", + "w" : 640 + }, { + "h" : 960, + "resize" : "fit", + "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/dzn9cgi4" } ], "hashtags" : [ { @@ -916,7 +918,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Elliott Kernber", + "name" : "Elliott K", "screen_name" : "elliottkember", "indices" : [ 3, 17 ], "id_str" : "903351", @@ -943,11 +945,11 @@ Grailbird.data.tweets_2012_01 = "id" : 162639322581966848, "created_at" : "2012-01-26 20:53:30 +0000", "user" : { - "name" : "Elliott Kernber", + "name" : "Elliott K", "screen_name" : "elliottkember", "protected" : false, "id_str" : "903351", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/859955508760920064\/K69yZap8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937027901148372992\/h4o-yOP2_normal.jpg", "id" : 903351, "verified" : true } @@ -1207,7 +1209,7 @@ Grailbird.data.tweets_2012_01 = "id_str" : "472215656", "id" : 472215656 }, { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 10, 24 ], "id_str" : "165975834", @@ -1240,7 +1242,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 45, 59 ], "id_str" : "165975834", @@ -1380,7 +1382,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 3, 17 ], "id_str" : "7198302", @@ -1429,11 +1431,11 @@ Grailbird.data.tweets_2012_01 = "id" : 161976836321058816, "created_at" : "2012-01-25 01:01:01 +0000", "user" : { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "protected" : false, "id_str" : "7198302", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900181993299857408\/2tWkb4b8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985570923599355905\/BAOq3fBC_normal.jpg", "id" : 7198302, "verified" : false } @@ -1873,7 +1875,7 @@ Grailbird.data.tweets_2012_01 = "screen_name" : "settern", "protected" : false, "id_str" : "14957252", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/823056413543059456\/E6_PmktI_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/932069685369229312\/AImAKFV7_normal.jpg", "id" : 14957252, "verified" : true } @@ -1944,7 +1946,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 0, 14 ], "id_str" : "165975834", @@ -2028,7 +2030,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 3, 11 ], "id_str" : "14272162", @@ -2065,7 +2067,7 @@ Grailbird.data.tweets_2012_01 = "id" : 158977253546528768, "created_at" : "2012-01-16 18:21:45 +0000", "user" : { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "protected" : false, "id_str" : "14272162", @@ -2236,7 +2238,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 0, 14 ], "id_str" : "165975834", @@ -2456,7 +2458,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 3, 17 ], "id_str" : "7198302", @@ -2483,11 +2485,11 @@ Grailbird.data.tweets_2012_01 = "id" : 156450422159187970, "created_at" : "2012-01-09 19:01:02 +0000", "user" : { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "protected" : false, "id_str" : "7198302", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900181993299857408\/2tWkb4b8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985570923599355905\/BAOq3fBC_normal.jpg", "id" : 7198302, "verified" : false } @@ -2761,14 +2763,6 @@ Grailbird.data.tweets_2012_01 = "id" : 154012981791956994, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AiMp_a6CIAIpr15.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2776,11 +2770,20 @@ Grailbird.data.tweets_2012_01 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 }, { "h" : 510, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/w73DauuE" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2012_02.js b/public/tweets/data/js/tweets/2012_02.js index 430b467..ce82f7a 100755 --- a/public/tweets/data/js/tweets/2012_02.js +++ b/public/tweets/data/js/tweets/2012_02.js @@ -134,7 +134,7 @@ Grailbird.data.tweets_2012_02 = "screen_name" : "DioVayne", "protected" : false, "id_str" : "19019338", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/826741781442215937\/qC9ppxym_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964162749457747969\/jLQvxYUe_normal.jpg", "id" : 19019338, "verified" : false } @@ -1103,10 +1103,6 @@ Grailbird.data.tweets_2012_02 = "id" : 167000106594336768, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AlFNtk8CAAAN2IG.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1122,7 +1118,12 @@ Grailbird.data.tweets_2012_02 = "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/7hQAZJOw" } ], "hashtags" : [ ], @@ -1495,7 +1496,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1528,7 +1529,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1561,7 +1562,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1597,7 +1598,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1630,7 +1631,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1663,7 +1664,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1696,7 +1697,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1734,7 +1735,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2094,7 +2095,7 @@ Grailbird.data.tweets_2012_02 = "screen_name" : "chartier", "protected" : false, "id_str" : "35383", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918141338088083456\/YvQvZSKt_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/955617750642253824\/OzBckq0i_normal.jpg", "id" : 35383, "verified" : true } @@ -2226,7 +2227,7 @@ Grailbird.data.tweets_2012_02 = "id_str" : "2313826428", "id" : 2313826428 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 77, 91 ], "id_str" : "29255412", @@ -2254,7 +2255,7 @@ Grailbird.data.tweets_2012_02 = "id_str" : "2313826428", "id" : 2313826428 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 63, 77 ], "id_str" : "29255412", @@ -2279,7 +2280,7 @@ Grailbird.data.tweets_2012_02 = "screen_name" : "adamstac", "protected" : false, "id_str" : "816954", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/863265661203697664\/3pwwJO2e_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/929932796113641472\/-K_bTYof_normal.jpg", "id" : 816954, "verified" : false } @@ -2354,11 +2355,11 @@ Grailbird.data.tweets_2012_02 = "id" : 165289107159908352, "created_at" : "2012-02-03 04:22:48 +0000", "user" : { - "name" : "paolo fragomeni", + "name" : "paolo f.", "screen_name" : "0x00A", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/895001508349128704\/gFxzeC4L_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/936582635010314240\/Mf7nJiWc_normal.jpg", "id" : 95938827, "verified" : false } @@ -2486,7 +2487,7 @@ Grailbird.data.tweets_2012_02 = "id_str" : "33423", "id" : 33423 }, { - "name" : "Stu Duncan", + "name" : "\uD835\uDD4A\uD835\uDD65\uD835\uDD66 \uD835\uDD3B\uD835\uDD66\uD835\uDD5F\uD835\uDD54\uD835\uDD52\uD835\uDD5F", "screen_name" : "studuncan", "indices" : [ 28, 38 ], "id_str" : "43182407", @@ -2520,7 +2521,7 @@ Grailbird.data.tweets_2012_02 = "id_str" : "33423", "id" : 33423 }, { - "name" : "Stu Duncan", + "name" : "\uD835\uDD4A\uD835\uDD65\uD835\uDD66 \uD835\uDD3B\uD835\uDD66\uD835\uDD5F\uD835\uDD54\uD835\uDD52\uD835\uDD5F", "screen_name" : "studuncan", "indices" : [ 16, 26 ], "id_str" : "43182407", diff --git a/public/tweets/data/js/tweets/2012_03.js b/public/tweets/data/js/tweets/2012_03.js index 5600091..5238e0c 100755 --- a/public/tweets/data/js/tweets/2012_03.js +++ b/public/tweets/data/js/tweets/2012_03.js @@ -97,7 +97,7 @@ Grailbird.data.tweets_2012_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 3, 10 ], "id_str" : "8526432", @@ -146,7 +146,7 @@ Grailbird.data.tweets_2012_03 = "id" : 185763559064612867, "created_at" : "2012-03-30 16:20:58 +0000", "user" : { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "protected" : false, "id_str" : "8526432", @@ -221,7 +221,7 @@ Grailbird.data.tweets_2012_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 0, 8 ], "id_str" : "14272162", @@ -612,15 +612,16 @@ Grailbird.data.tweets_2012_03 = "h" : 612, "resize" : "fit", "w" : 816 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 }, { "h" : 612, "resize" : "fit", "w" : 816 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Qdt5PsD4" } ], "hashtags" : [ ], @@ -712,14 +713,6 @@ Grailbird.data.tweets_2012_03 = "h" : 648, "resize" : "fit", "w" : 484 - }, { - "h" : 648, - "resize" : "fit", - "w" : 484 - }, { - "h" : 648, - "resize" : "fit", - "w" : 484 }, { "h" : 150, "resize" : "crop", @@ -728,7 +721,16 @@ Grailbird.data.tweets_2012_03 = "h" : 648, "resize" : "fit", "w" : 484 + }, { + "h" : 648, + "resize" : "fit", + "w" : 484 + }, { + "h" : 648, + "resize" : "fit", + "w" : 484 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/sK8KLpQO" } ], "hashtags" : [ ], @@ -1278,7 +1280,7 @@ Grailbird.data.tweets_2012_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", diff --git a/public/tweets/data/js/tweets/2012_04.js b/public/tweets/data/js/tweets/2012_04.js index 5fb7ce6..3e016b1 100755 --- a/public/tweets/data/js/tweets/2012_04.js +++ b/public/tweets/data/js/tweets/2012_04.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2012_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Garry Tan", + "name" : "Garry #BUIDL Tan", "screen_name" : "garrytan", "indices" : [ 3, 12 ], "id_str" : "11768582", @@ -30,11 +30,11 @@ Grailbird.data.tweets_2012_04 = "id" : 197134998548119552, "created_at" : "2012-05-01 01:27:00 +0000", "user" : { - "name" : "Garry Tan", + "name" : "Garry #BUIDL Tan", "screen_name" : "garrytan", "protected" : false, "id_str" : "11768582", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/882725533817110528\/IPUzEKdT_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/943716237682421760\/0sBqTJhG_normal.jpg", "id" : 11768582, "verified" : false } @@ -383,12 +383,6 @@ Grailbird.data.tweets_2012_04 = "indices" : [ 3, 12 ], "id_str" : "636923", "id" : 636923 - }, { - "name" : "J.C. Hutchins", - "screen_name" : "jchutchins", - "indices" : [ 52, 63 ], - "id_str" : "773003", - "id" : 773003 } ], "media" : [ ], "hashtags" : [ ], @@ -405,13 +399,7 @@ Grailbird.data.tweets_2012_04 = "retweeted_status" : { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "J.C. Hutchins", - "screen_name" : "jchutchins", - "indices" : [ 38, 49 ], - "id_str" : "773003", - "id" : 773003 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ { @@ -627,7 +615,7 @@ Grailbird.data.tweets_2012_04 = "id_str" : "3260971", "id" : 3260971 }, { - "name" : "Steve Streza \uD83C\uDF39", + "name" : "Steve Streza \uD83C\uDF39 (he\/they)", "screen_name" : "SteveStreza", "indices" : [ 76, 88 ], "id_str" : "658643", @@ -660,7 +648,7 @@ Grailbird.data.tweets_2012_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Coda Hell", + "name" : "i see by my outfit that i am a cowboy", "screen_name" : "coda", "indices" : [ 3, 8 ], "id_str" : "637533", @@ -687,7 +675,7 @@ Grailbird.data.tweets_2012_04 = "id" : 194509470561349632, "created_at" : "2012-04-23 19:34:06 +0000", "user" : { - "name" : "Coda Hell", + "name" : "i see by my outfit that i am a cowboy", "screen_name" : "coda", "protected" : false, "id_str" : "637533", @@ -873,7 +861,7 @@ Grailbird.data.tweets_2012_04 = "id_str" : "1345494948", "id" : 1345494948 }, { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 127, 139 ], "id_str" : "6927562", @@ -1299,7 +1287,7 @@ Grailbird.data.tweets_2012_04 = "id_str" : "18137723", "id" : 18137723 }, { - "name" : "Ghost Ships A Hoy \uD83D\uDC7B", + "name" : "Amy Hoy \u2728", "screen_name" : "amyhoy", "indices" : [ 11, 18 ], "id_str" : "627213", @@ -1488,7 +1476,7 @@ Grailbird.data.tweets_2012_04 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } diff --git a/public/tweets/data/js/tweets/2012_05.js b/public/tweets/data/js/tweets/2012_05.js index c48655d..d1eb336 100755 --- a/public/tweets/data/js/tweets/2012_05.js +++ b/public/tweets/data/js/tweets/2012_05.js @@ -194,7 +194,7 @@ Grailbird.data.tweets_2012_05 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865667126408773632\/QX5O6RhU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/928419904385990657\/tza-LEdZ_normal.jpg", "id" : 14273142, "verified" : false } @@ -532,7 +532,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "brianloveswords", + "name" : "I'd Like to Add you to My Professional Network on", "screen_name" : "brianloveswords", "indices" : [ 3, 19 ], "id_str" : "17177251", @@ -559,11 +559,11 @@ Grailbird.data.tweets_2012_05 = "id" : 206109094338232320, "created_at" : "2012-05-25 19:46:52 +0000", "user" : { - "name" : "brianloveswords", + "name" : "I'd Like to Add you to My Professional Network on", "screen_name" : "brianloveswords", "protected" : false, "id_str" : "17177251", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/836806124280098817\/oBIFshOf_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/979400162236862464\/rCiXM-Zq_normal.jpg", "id" : 17177251, "verified" : false } @@ -730,7 +730,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ryah", + "name" : "not here", "screen_name" : "ryah", "indices" : [ 0, 5 ], "id_str" : "967076702", @@ -905,7 +905,7 @@ Grailbird.data.tweets_2012_05 = "screen_name" : "awbjs", "protected" : false, "id_str" : "159946057", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/501784749317185537\/4GXPdn0H_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951497541362700288\/hxugG7vx_normal.jpg", "id" : 159946057, "verified" : false } @@ -958,7 +958,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -1067,7 +1067,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "33423", "id" : 33423 }, { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 60, 72 ], "id_str" : "5905672", @@ -1275,7 +1275,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Zeldmonster", + "name" : "zeldman", "screen_name" : "zeldman", "indices" : [ 72, 80 ], "id_str" : "61133", @@ -1297,7 +1297,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zeldmonster", + "name" : "zeldman", "screen_name" : "zeldman", "indices" : [ 58, 66 ], "id_str" : "61133", @@ -1866,7 +1866,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Tom Harrington", + "name" : "Tom \"Tom\" Harrington", "screen_name" : "atomicbird", "indices" : [ 12, 23 ], "id_str" : "682823", @@ -2241,7 +2241,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2445,7 +2445,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "#CapreseBoyz", + "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -2484,7 +2484,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "#CapreseBoyz", + "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -2851,7 +2851,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "kyle pulver \u2605", + "name" : "kyle pulver", "screen_name" : "kylepulver", "indices" : [ 3, 14 ], "id_str" : "50850314", @@ -2878,11 +2878,11 @@ Grailbird.data.tweets_2012_05 = "id" : 199405059694542848, "created_at" : "2012-05-07 07:47:25 +0000", "user" : { - "name" : "kyle pulver \u2605", + "name" : "kyle pulver", "screen_name" : "kylepulver", "protected" : false, "id_str" : "50850314", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/868579335749328896\/ZXa2TKGN_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/953347514484236288\/IMj11F98_normal.jpg", "id" : 50850314, "verified" : false } @@ -2983,7 +2983,7 @@ Grailbird.data.tweets_2012_05 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } @@ -3116,18 +3116,6 @@ Grailbird.data.tweets_2012_05 = "id" : 198730402326777856, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AsIIP3zCEAA5pFQ.jpg", "sizes" : [ { - "h" : 376, - "resize" : "fit", - "w" : 460 - }, { - "h" : 376, - "resize" : "fit", - "w" : 460 - }, { - "h" : 376, - "resize" : "fit", - "w" : 460 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3135,7 +3123,20 @@ Grailbird.data.tweets_2012_05 = "h" : 376, "resize" : "fit", "w" : 460 + }, { + "h" : 376, + "resize" : "fit", + "w" : 460 + }, { + "h" : 376, + "resize" : "fit", + "w" : 460 + }, { + "h" : 376, + "resize" : "fit", + "w" : 460 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/c89GalNg" } ], "hashtags" : [ ], @@ -3157,18 +3158,6 @@ Grailbird.data.tweets_2012_05 = "id" : 198730402326777856, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/AsIIP3zCEAA5pFQ.jpg", "sizes" : [ { - "h" : 376, - "resize" : "fit", - "w" : 460 - }, { - "h" : 376, - "resize" : "fit", - "w" : 460 - }, { - "h" : 376, - "resize" : "fit", - "w" : 460 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3176,7 +3165,20 @@ Grailbird.data.tweets_2012_05 = "h" : 376, "resize" : "fit", "w" : 460 + }, { + "h" : 376, + "resize" : "fit", + "w" : 460 + }, { + "h" : 376, + "resize" : "fit", + "w" : 460 + }, { + "h" : 376, + "resize" : "fit", + "w" : 460 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/c89GalNg" } ], "hashtags" : [ ], @@ -3192,7 +3194,7 @@ Grailbird.data.tweets_2012_05 = "screen_name" : "MattBloomFilms", "protected" : false, "id_str" : "32591490", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/891364268809039872\/MyOuPVVh_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985801976712781824\/Y_5Kg2FG_normal.jpg", "id" : 32591490, "verified" : false } @@ -3386,14 +3388,6 @@ Grailbird.data.tweets_2012_05 = "h" : 272, "resize" : "fit", "w" : 477 - }, { - "h" : 272, - "resize" : "fit", - "w" : 477 - }, { - "h" : 272, - "resize" : "fit", - "w" : 477 }, { "h" : 150, "resize" : "crop", @@ -3402,7 +3396,16 @@ Grailbird.data.tweets_2012_05 = "h" : 272, "resize" : "fit", "w" : 477 + }, { + "h" : 272, + "resize" : "fit", + "w" : 477 + }, { + "h" : 272, + "resize" : "fit", + "w" : 477 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/iJehtGGP" } ], "hashtags" : [ ], @@ -3439,14 +3442,6 @@ Grailbird.data.tweets_2012_05 = "h" : 272, "resize" : "fit", "w" : 477 - }, { - "h" : 272, - "resize" : "fit", - "w" : 477 - }, { - "h" : 272, - "resize" : "fit", - "w" : 477 }, { "h" : 150, "resize" : "crop", @@ -3455,7 +3450,16 @@ Grailbird.data.tweets_2012_05 = "h" : 272, "resize" : "fit", "w" : 477 + }, { + "h" : 272, + "resize" : "fit", + "w" : 477 + }, { + "h" : 272, + "resize" : "fit", + "w" : 477 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/iJehtGGP" } ], "hashtags" : [ ], @@ -3917,26 +3921,27 @@ Grailbird.data.tweets_2012_05 = "id" : 197556304447930369, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Ar3caYXCAAEhaYY.png", "sizes" : [ { + "h" : 900, + "resize" : "fit", + "w" : 1200 + }, { "h" : 1536, "resize" : "fit", "w" : 2048 }, { - "h" : 900, + "h" : 1536, "resize" : "fit", - "w" : 1200 + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 }, { "h" : 510, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/VKgFL2M1" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2012_06.js b/public/tweets/data/js/tweets/2012_06.js index 98ac4a9..1e242f9 100755 --- a/public/tweets/data/js/tweets/2012_06.js +++ b/public/tweets/data/js/tweets/2012_06.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 0, 8 ], "id_str" : "5813712", @@ -67,7 +67,7 @@ Grailbird.data.tweets_2012_06 = "screen_name" : "awbjs", "protected" : false, "id_str" : "159946057", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/501784749317185537\/4GXPdn0H_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951497541362700288\/hxugG7vx_normal.jpg", "id" : 159946057, "verified" : false } @@ -87,7 +87,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -120,7 +120,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -157,7 +157,7 @@ Grailbird.data.tweets_2012_06 = "id" : 218558453164150785, "created_at" : "2012-06-29 04:16:10 +0000", "user" : { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", @@ -181,7 +181,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 0, 14 ], "id_str" : "165975834", @@ -214,7 +214,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDDAA\uD835\uDDA4\uD835\uDDB5\/\uD835\uDDAD\uD835\uDDB4\uD835\uDDAB\uD835\uDDAB", + "name" : "Kevin Cheng", "screen_name" : "k", "indices" : [ 0, 2 ], "id_str" : "11222", @@ -286,7 +286,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 3, 11 ], "id_str" : "5813712", @@ -323,7 +323,7 @@ Grailbird.data.tweets_2012_06 = "id" : 216181560808968192, "created_at" : "2012-06-22 14:51:15 +0000", "user" : { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "protected" : false, "id_str" : "5813712", @@ -482,7 +482,7 @@ Grailbird.data.tweets_2012_06 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Michael Jurewitz \uD83D\uDCCE", + "name" : "Michael Jurewitz", "screen_name" : "Jury", "indices" : [ 70, 75 ], "id_str" : "10754282", @@ -504,7 +504,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Michael Jurewitz \uD83D\uDCCE", + "name" : "Michael Jurewitz", "screen_name" : "Jury", "indices" : [ 56, 61 ], "id_str" : "10754282", @@ -549,7 +549,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 0, 14 ], "id_str" : "165975834", @@ -648,7 +648,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Spooky Anil Dash \uD83C\uDF83", + "name" : "Anil Dash", "screen_name" : "anildash", "indices" : [ 0, 9 ], "id_str" : "36823", @@ -957,7 +957,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "shitpost muse", + "name" : "the second hardest problem in computer science", "screen_name" : "steveklabnik", "indices" : [ 3, 16 ], "id_str" : "22386062", @@ -1000,7 +1000,7 @@ Grailbird.data.tweets_2012_06 = "id" : 212981330538020864, "created_at" : "2012-06-13 18:54:40 +0000", "user" : { - "name" : "shitpost muse", + "name" : "the second hardest problem in computer science", "screen_name" : "steveklabnik", "protected" : false, "id_str" : "22386062", @@ -1128,7 +1128,7 @@ Grailbird.data.tweets_2012_06 = "screen_name" : "AriyaHidayat", "protected" : false, "id_str" : "15608761", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/688389064865648640\/ruegJvlb_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/969266495917146112\/sCrnCgqH_normal.jpg", "id" : 15608761, "verified" : true } @@ -1331,7 +1331,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -1370,7 +1370,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -1508,7 +1508,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -1706,7 +1706,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ryah", + "name" : "not here", "screen_name" : "ryah", "indices" : [ 0, 5 ], "id_str" : "967076702", @@ -2338,7 +2338,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark", + "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -2371,7 +2371,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve Streza \uD83C\uDF39", + "name" : "Steve Streza \uD83C\uDF39 (he\/they)", "screen_name" : "SteveStreza", "indices" : [ 3, 15 ], "id_str" : "658643", @@ -2415,7 +2415,7 @@ Grailbird.data.tweets_2012_06 = "in_reply_to_screen_name" : "marcoarment", "in_reply_to_user_id_str" : "14231571", "user" : { - "name" : "Steve Streza \uD83C\uDF39", + "name" : "Steve Streza \uD83C\uDF39 (he\/they)", "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", @@ -2669,7 +2669,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "David Bruant", + "name" : "David de Bruant de dtc de l'innovation", "screen_name" : "DavidBruant", "indices" : [ 3, 15 ], "id_str" : "217829531", @@ -2718,11 +2718,11 @@ Grailbird.data.tweets_2012_06 = "id" : 207950038226317314, "created_at" : "2012-05-30 21:42:07 +0000", "user" : { - "name" : "David Bruant", + "name" : "David de Bruant de dtc de l'innovation", "screen_name" : "DavidBruant", "protected" : false, "id_str" : "217829531", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/613663365395779584\/nx2_4-TG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/927205696327815170\/Pc41nZFm_normal.jpg", "id" : 217829531, "verified" : false } diff --git a/public/tweets/data/js/tweets/2012_07.js b/public/tweets/data/js/tweets/2012_07.js index fc6740b..463ccc5 100755 --- a/public/tweets/data/js/tweets/2012_07.js +++ b/public/tweets/data/js/tweets/2012_07.js @@ -83,7 +83,7 @@ Grailbird.data.tweets_2012_07 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865667126408773632\/QX5O6RhU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/928419904385990657\/tza-LEdZ_normal.jpg", "id" : 14273142, "verified" : false } @@ -103,7 +103,7 @@ Grailbird.data.tweets_2012_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ryah", + "name" : "not here", "screen_name" : "ryah", "indices" : [ 0, 5 ], "id_str" : "967076702", @@ -231,18 +231,19 @@ Grailbird.data.tweets_2012_07 = "resize" : "fit", "w" : 1536 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 2048, + "resize" : "fit", + "w" : 1536 }, { "h" : 680, "resize" : "fit", "w" : 510 }, { - "h" : 2048, - "resize" : "fit", - "w" : 1536 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ZvurHzji" } ], "hashtags" : [ ], @@ -321,7 +322,7 @@ Grailbird.data.tweets_2012_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 3, 11 ], "id_str" : "5813712", @@ -348,7 +349,7 @@ Grailbird.data.tweets_2012_07 = "id" : 226739107378896896, "created_at" : "2012-07-21 18:03:10 +0000", "user" : { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "protected" : false, "id_str" : "5813712", @@ -372,7 +373,7 @@ Grailbird.data.tweets_2012_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -573,7 +574,7 @@ Grailbird.data.tweets_2012_07 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } @@ -624,7 +625,7 @@ Grailbird.data.tweets_2012_07 = "screen_name" : "ChrisBeckmann", "protected" : false, "id_str" : "55486012", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855068230687145984\/hQxw6jRQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937707630444781568\/Iq2Btkgi_normal.jpg", "id" : 55486012, "verified" : true } @@ -737,15 +738,16 @@ Grailbird.data.tweets_2012_07 = "h" : 612, "resize" : "fit", "w" : 816 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 }, { "h" : 612, "resize" : "fit", "w" : 816 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/yhSRZET4" } ], "hashtags" : [ ], @@ -778,15 +780,16 @@ Grailbird.data.tweets_2012_07 = "h" : 612, "resize" : "fit", "w" : 816 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 }, { "h" : 612, "resize" : "fit", "w" : 816 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/yhSRZET4" } ], "hashtags" : [ ], @@ -802,7 +805,7 @@ Grailbird.data.tweets_2012_07 = "screen_name" : "RealRonHoward", "protected" : false, "id_str" : "125481462", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/741403670583992320\/oP8_MrpA_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/966039590464180224\/msPw4BjW_normal.jpg", "id" : 125481462, "verified" : true } @@ -869,11 +872,62 @@ Grailbird.data.tweets_2012_07 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Graham Linehan", + "screen_name" : "Glinner", + "indices" : [ 3, 11 ], + "id_str" : "7076492", + "id" : 7076492 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "222924618497916928", + "text" : "RT @Glinner: \u201CI\u2019d LOVE to download your app instead of going to the webpage I just tried to visit!\u201D\u2014 No-one, ever. No-one in the future ...", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "222779724567547904", + "text" : "\u201CI\u2019d LOVE to download your app instead of going to the webpage I just tried to visit!\u201D\u2014 No-one, ever. No-one in the future either.", + "id" : 222779724567547904, + "created_at" : "2012-07-10 19:50:00 +0000", + "user" : { + "name" : "Graham Linehan", + "screen_name" : "Glinner", + "protected" : false, + "id_str" : "7076492", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/433543395974205440\/e1vZ6x9u_normal.jpeg", + "id" : 7076492, + "verified" : true + } + }, + "id" : 222924618497916928, + "created_at" : "2012-07-11 05:25:45 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 113, 125 ], "id_str" : "5905672", @@ -907,7 +961,7 @@ Grailbird.data.tweets_2012_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 3, 11 ], "id_str" : "5813712", @@ -944,7 +998,7 @@ Grailbird.data.tweets_2012_07 = "id" : 220135260799778816, "created_at" : "2012-07-03 12:41:50 +0000", "user" : { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "protected" : false, "id_str" : "5813712", diff --git a/public/tweets/data/js/tweets/2012_08.js b/public/tweets/data/js/tweets/2012_08.js index 9a33bdb..c94c300 100755 --- a/public/tweets/data/js/tweets/2012_08.js +++ b/public/tweets/data/js/tweets/2012_08.js @@ -503,6 +503,7 @@ Grailbird.data.tweets_2012_08 = "resize" : "fit", "w" : 570 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/MgQeKRiC" } ], "hashtags" : [ ], @@ -619,7 +620,7 @@ Grailbird.data.tweets_2012_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 3, 11 ], "id_str" : "5813712", @@ -651,7 +652,7 @@ Grailbird.data.tweets_2012_08 = "id" : 230953862952013824, "created_at" : "2012-08-02 09:11:06 +0000", "user" : { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "protected" : false, "id_str" : "5813712", diff --git a/public/tweets/data/js/tweets/2012_09.js b/public/tweets/data/js/tweets/2012_09.js index 0f5b939..630d85c 100755 --- a/public/tweets/data/js/tweets/2012_09.js +++ b/public/tweets/data/js/tweets/2012_09.js @@ -229,7 +229,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -322,7 +322,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 0, 8 ], "id_str" : "5813712", @@ -840,7 +840,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 3, 11 ], "id_str" : "5813712", @@ -867,7 +867,7 @@ Grailbird.data.tweets_2012_09 = "id" : 247659596079067136, "created_at" : "2012-09-17 11:33:43 +0000", "user" : { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "protected" : false, "id_str" : "5813712", @@ -954,7 +954,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 0, 8 ], "id_str" : "14272162", @@ -1024,17 +1024,9 @@ Grailbird.data.tweets_2012_09 = "id" : 245906155539419136, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/A2miWHkCUAAa25m.jpg", "sizes" : [ { - "h" : 960, - "resize" : "fit", - "w" : 640 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 960, - "resize" : "fit", - "w" : 640 }, { "h" : 680, "resize" : "fit", @@ -1043,7 +1035,16 @@ Grailbird.data.tweets_2012_09 = "h" : 960, "resize" : "fit", "w" : 640 + }, { + "h" : 960, + "resize" : "fit", + "w" : 640 + }, { + "h" : 960, + "resize" : "fit", + "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/r2YbEHHg" } ], "hashtags" : [ ], @@ -1210,14 +1211,6 @@ Grailbird.data.tweets_2012_09 = "id" : 243538985933217792, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/A2E5atmCIAAi5t6.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1225,11 +1218,20 @@ Grailbird.data.tweets_2012_09 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 }, { "h" : 510, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/1YKFB7Ow" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2012_10.js b/public/tweets/data/js/tweets/2012_10.js index 76a1251..ecd555a 100755 --- a/public/tweets/data/js/tweets/2012_10.js +++ b/public/tweets/data/js/tweets/2012_10.js @@ -3,11 +3,11 @@ Grailbird.data.tweets_2012_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "hostname amy.tobey", + "name" : "Amy Tobey", "screen_name" : "AlTobey", "indices" : [ 3, 11 ], - "id_str" : "146248951", - "id" : 146248951 + "id_str" : "977369470862704641", + "id" : 977369470862704641 } ], "media" : [ ], "hashtags" : [ ], @@ -30,8 +30,8 @@ Grailbird.data.tweets_2012_10 = "id" : 263771862125928448, "created_at" : "2012-10-31 22:38:07 +0000", "user" : { - "name" : "hostname amy.tobey", - "screen_name" : "AlTobey", + "name" : "Miss Tobey", + "screen_name" : "MissAmyTobey", "protected" : false, "id_str" : "146248951", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/891367683022663680\/-lIUG_Yp_normal.jpg", @@ -311,7 +311,7 @@ Grailbird.data.tweets_2012_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Duke of Rumford \uD83C\uDDE8\uD83C\uDDE6", + "name" : "The Doodle \uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "the_webhamster", "indices" : [ 3, 18 ], "id_str" : "207536489", @@ -338,7 +338,7 @@ Grailbird.data.tweets_2012_10 = "id" : 256954058131267584, "created_at" : "2012-10-13 03:06:36 +0000", "user" : { - "name" : "Duke of Rumford \uD83C\uDDE8\uD83C\uDDE6", + "name" : "The Doodle \uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "the_webhamster", "protected" : false, "id_str" : "207536489", @@ -425,7 +425,7 @@ Grailbird.data.tweets_2012_10 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", diff --git a/public/tweets/data/js/tweets/2012_12.js b/public/tweets/data/js/tweets/2012_12.js index 30e5ee0..2cb6333 100755 --- a/public/tweets/data/js/tweets/2012_12.js +++ b/public/tweets/data/js/tweets/2012_12.js @@ -306,7 +306,7 @@ Grailbird.data.tweets_2012_12 = "id_str" : "14231571", "id" : 14231571 }, { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 13, 25 ], "id_str" : "5905672", @@ -381,7 +381,7 @@ Grailbird.data.tweets_2012_12 = "id_str" : "372982253", "id" : 372982253 }, { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 66, 78 ], "id_str" : "5905672", diff --git a/public/tweets/data/js/tweets/2013_01.js b/public/tweets/data/js/tweets/2013_01.js index 8b4b5be..0d98cdb 100755 --- a/public/tweets/data/js/tweets/2013_01.js +++ b/public/tweets/data/js/tweets/2013_01.js @@ -129,7 +129,7 @@ Grailbird.data.tweets_2013_01 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -624,7 +624,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Aaron Heckmann", + "name" : "ajHecky", "screen_name" : "aaronheckmann", "indices" : [ 3, 17 ], "id_str" : "13818902", @@ -651,7 +651,7 @@ Grailbird.data.tweets_2013_01 = "id" : 296060546048999424, "created_at" : "2013-01-29 01:01:49 +0000", "user" : { - "name" : "Aaron Heckmann", + "name" : "ajHecky", "screen_name" : "aaronheckmann", "protected" : false, "id_str" : "13818902", @@ -1359,7 +1359,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "834501828620537856", "id" : 834501828620537856 }, { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 68, 72 ], "id_str" : "8038312", @@ -1376,7 +1376,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 52, 56 ], "id_str" : "8038312", @@ -1392,7 +1392,7 @@ Grailbird.data.tweets_2013_01 = "id" : 294851428722282496, "created_at" : "2013-01-25 16:57:13 +0000", "user" : { - "name" : "the spectre of bread", + "name" : "invisible chaotic self-modifying biomachine", "screen_name" : "edefic", "protected" : false, "id_str" : "15734539", @@ -1740,7 +1740,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "532923", "id" : 532923 }, { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 19, 27 ], "id_str" : "14272162", @@ -1785,7 +1785,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "16144669", "id" : 16144669 }, { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 19, 27 ], "id_str" : "14272162", @@ -2179,18 +2179,6 @@ Grailbird.data.tweets_2013_01 = "id" : 293041571732008960, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BBEXwcOCMAAI4yp.jpg", "sizes" : [ { - "h" : 243, - "resize" : "fit", - "w" : 680 - }, { - "h" : 307, - "resize" : "fit", - "w" : 860 - }, { - "h" : 307, - "resize" : "fit", - "w" : 860 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2198,7 +2186,20 @@ Grailbird.data.tweets_2013_01 = "h" : 307, "resize" : "fit", "w" : 860 + }, { + "h" : 307, + "resize" : "fit", + "w" : 860 + }, { + "h" : 307, + "resize" : "fit", + "w" : 860 + }, { + "h" : 243, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/dZ8wli3I" } ], "hashtags" : [ ], @@ -2326,7 +2327,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "125027291", "id" : 125027291 }, { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 10, 14 ], "id_str" : "8038312", @@ -2392,7 +2393,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tewha \uD83C\uDDE8\uD83C\uDDE6", + "name" : "Steve\uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "tewha", "indices" : [ 0, 6 ], "id_str" : "14058316", @@ -2437,7 +2438,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Tewha \uD83C\uDDE8\uD83C\uDDE6", + "name" : "Steve\uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "tewha", "indices" : [ 12, 18 ], "id_str" : "14058316", @@ -2474,7 +2475,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Tewha \uD83C\uDDE8\uD83C\uDDE6", + "name" : "Steve\uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "tewha", "indices" : [ 12, 18 ], "id_str" : "14058316", @@ -2548,7 +2549,7 @@ Grailbird.data.tweets_2013_01 = "screen_name" : "awbjs", "protected" : false, "id_str" : "159946057", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/501784749317185537\/4GXPdn0H_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951497541362700288\/hxugG7vx_normal.jpg", "id" : 159946057, "verified" : false } @@ -2568,7 +2569,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tewha \uD83C\uDDE8\uD83C\uDDE6", + "name" : "Steve\uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "tewha", "indices" : [ 0, 6 ], "id_str" : "14058316", @@ -2607,7 +2608,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/www.apple.com\/\" rel=\"nofollow\"\u003EOS X\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 11, 26 ], "id_str" : "27302287", @@ -3258,7 +3259,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Debasish Ghosh", + "name" : "Debasish (\u09A6\u09C7\u09AC\u09BE\u09B6\u09BF\u09B8\u09CD) Ghosh \uD83C\uDDEE\uD83C\uDDF3", "screen_name" : "debasishg", "indices" : [ 0, 10 ], "id_str" : "6562002", @@ -3319,7 +3320,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Debasish Ghosh", + "name" : "Debasish (\u09A6\u09C7\u09AC\u09BE\u09B6\u09BF\u09B8\u09CD) Ghosh \uD83C\uDDEE\uD83C\uDDF3", "screen_name" : "debasishg", "indices" : [ 0, 10 ], "id_str" : "6562002", @@ -3664,7 +3665,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "14231571", "id" : 14231571 }, { - "name" : "Glenn Fleishman \uD83D\uDC4B\uD83D\uDEA8\uD83D\uDE91", + "name" : "Glenn Fleishman", "screen_name" : "GlennF", "indices" : [ 128, 135 ], "id_str" : "8315692", diff --git a/public/tweets/data/js/tweets/2013_02.js b/public/tweets/data/js/tweets/2013_02.js index 4aaed1b..c022b35 100755 --- a/public/tweets/data/js/tweets/2013_02.js +++ b/public/tweets/data/js/tweets/2013_02.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 0, 14 ], "id_str" : "165975834", @@ -495,7 +495,7 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 3, 17 ], "id_str" : "165975834", @@ -532,11 +532,11 @@ Grailbird.data.tweets_2013_02 = "id" : 304507230449958912, "created_at" : "2013-02-21 08:25:55 +0000", "user" : { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "protected" : false, "id_str" : "165975834", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1088138138\/IMG_0104_normal.JPG", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/962547252337061889\/sowIZlEQ_normal.jpg", "id" : 165975834, "verified" : false } @@ -1028,7 +1028,7 @@ Grailbird.data.tweets_2013_02 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -1340,13 +1340,17 @@ Grailbird.data.tweets_2013_02 = "id" : 300112384733876225, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BCo2n7TCEAEZ4mF.jpg", "sizes" : [ { - "h" : 1200, + "h" : 2048, "resize" : "fit", - "w" : 900 + "w" : 1536 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 900 }, { "h" : 680, "resize" : "fit", @@ -1355,11 +1359,8 @@ Grailbird.data.tweets_2013_02 = "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 2048, - "resize" : "fit", - "w" : 1536 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/6mO1IdEB" } ], "hashtags" : [ ], @@ -1449,7 +1450,7 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -1476,11 +1477,11 @@ Grailbird.data.tweets_2013_02 = "id" : 294501215033761793, "created_at" : "2013-01-24 17:45:35 +0000", "user" : { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917536371085950976\/MIuNwAAR_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/966195642191228933\/4BhqRm2w_normal.jpg", "id" : 8038312, "verified" : true } @@ -2043,7 +2044,7 @@ Grailbird.data.tweets_2013_02 = "screen_name" : "cmsimike", "protected" : false, "id_str" : "14519526", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/843968127427731456\/FDf8MUDv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961805518430859264\/CZ-ghObJ_normal.jpg", "id" : 14519526, "verified" : false } @@ -2588,7 +2589,7 @@ Grailbird.data.tweets_2013_02 = "screen_name" : "elagerway", "protected" : false, "id_str" : "3436771", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915690607925903360\/2QoQP1DV_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972236246876499968\/flU5BOYy_normal.jpg", "id" : 3436771, "verified" : false } diff --git a/public/tweets/data/js/tweets/2013_03.js b/public/tweets/data/js/tweets/2013_03.js index 7af3ac7..a39677f 100755 --- a/public/tweets/data/js/tweets/2013_03.js +++ b/public/tweets/data/js/tweets/2013_03.js @@ -160,7 +160,7 @@ Grailbird.data.tweets_2013_03 = "screen_name" : "pengwynn", "protected" : false, "id_str" : "14100886", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/911273801203122176\/gr4f9jpv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/936455565512806400\/Yt_j-wjy_normal.jpg", "id" : 14100886, "verified" : false } @@ -221,7 +221,7 @@ Grailbird.data.tweets_2013_03 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -513,7 +513,7 @@ Grailbird.data.tweets_2013_03 = "screen_name" : "mraleph", "protected" : false, "id_str" : "53010195", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/428865653903081472\/XqtZKTVu_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961923701641039872\/TWwOK7mW_normal.jpg", "id" : 53010195, "verified" : false } @@ -564,7 +564,7 @@ Grailbird.data.tweets_2013_03 = "screen_name" : "shanselman", "protected" : false, "id_str" : "5676102", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/459455847165218816\/I_sH-zvU_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951729445009637376\/0V25QMDk_normal.jpg", "id" : 5676102, "verified" : true } @@ -777,26 +777,27 @@ Grailbird.data.tweets_2013_03 = "id" : 314547501606768640, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BF1_SUJCEAAqI0A.jpg", "sizes" : [ { - "h" : 1158, + "h" : 1520, "resize" : "fit", - "w" : 2048 + "w" : 2688 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 679, + "resize" : "fit", + "w" : 1200 }, { "h" : 385, "resize" : "fit", "w" : 680 }, { - "h" : 1520, + "h" : 1158, "resize" : "fit", - "w" : 2688 - }, { - "h" : 679, - "resize" : "fit", - "w" : 1200 + "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/6XmuuemO6X" } ], "hashtags" : [ ], @@ -818,26 +819,27 @@ Grailbird.data.tweets_2013_03 = "id" : 314547501606768640, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BF1_SUJCEAAqI0A.jpg", "sizes" : [ { - "h" : 1158, + "h" : 1520, "resize" : "fit", - "w" : 2048 + "w" : 2688 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 679, + "resize" : "fit", + "w" : 1200 }, { "h" : 385, "resize" : "fit", "w" : 680 }, { - "h" : 1520, + "h" : 1158, "resize" : "fit", - "w" : 2688 - }, { - "h" : 679, - "resize" : "fit", - "w" : 1200 + "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/6XmuuemO6X" } ], "hashtags" : [ ], @@ -873,7 +875,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 3, 11 ], "id_str" : "5813712", @@ -900,7 +902,7 @@ Grailbird.data.tweets_2013_03 = "id" : 314454025460400128, "created_at" : "2013-03-20 19:10:56 +0000", "user" : { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "protected" : false, "id_str" : "5813712", @@ -1052,7 +1054,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/www.instapaper.com\/\" rel=\"nofollow\"\u003EInstapaper\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 17, 25 ], "id_str" : "5813712", @@ -1309,26 +1311,27 @@ Grailbird.data.tweets_2013_03 = "id" : 312129199429271552, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BFTn2mgCQAAWZHM.png", "sizes" : [ { + "h" : 373, + "resize" : "fit", + "w" : 498 + }, { + "h" : 373, + "resize" : "fit", + "w" : 498 + }, { + "h" : 373, + "resize" : "fit", + "w" : 498 + }, { + "h" : 373, + "resize" : "fit", + "w" : 498 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 373, - "resize" : "fit", - "w" : 498 - }, { - "h" : 373, - "resize" : "fit", - "w" : 498 - }, { - "h" : 373, - "resize" : "fit", - "w" : 498 - }, { - "h" : 373, - "resize" : "fit", - "w" : 498 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Mi3lVtGxwN" } ], "hashtags" : [ ], @@ -1350,26 +1353,27 @@ Grailbird.data.tweets_2013_03 = "id" : 312129199429271552, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BFTn2mgCQAAWZHM.png", "sizes" : [ { + "h" : 373, + "resize" : "fit", + "w" : 498 + }, { + "h" : 373, + "resize" : "fit", + "w" : 498 + }, { + "h" : 373, + "resize" : "fit", + "w" : 498 + }, { + "h" : 373, + "resize" : "fit", + "w" : 498 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 373, - "resize" : "fit", - "w" : 498 - }, { - "h" : 373, - "resize" : "fit", - "w" : 498 - }, { - "h" : 373, - "resize" : "fit", - "w" : 498 - }, { - "h" : 373, - "resize" : "fit", - "w" : 498 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Mi3lVtGxwN" } ], "hashtags" : [ ], @@ -1880,7 +1884,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 3, 15 ], "id_str" : "5905672", @@ -1931,11 +1935,11 @@ Grailbird.data.tweets_2013_03 = "id" : 311334268016148480, "created_at" : "2013-03-12 04:34:08 +0000", "user" : { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "protected" : false, "id_str" : "5905672", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/910617333080637441\/IzIDqu_O_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/971149489892245505\/ziLe5C8m_normal.jpg", "id" : 5905672, "verified" : true } @@ -2109,7 +2113,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "shitpost muse", + "name" : "the second hardest problem in computer science", "screen_name" : "steveklabnik", "indices" : [ 3, 16 ], "id_str" : "22386062", @@ -2146,7 +2150,7 @@ Grailbird.data.tweets_2013_03 = "id" : 311186820950020099, "created_at" : "2013-03-11 18:48:14 +0000", "user" : { - "name" : "shitpost muse", + "name" : "the second hardest problem in computer science", "screen_name" : "steveklabnik", "protected" : false, "id_str" : "22386062", @@ -2657,7 +2661,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Serg Podtynnyi", + "name" : "shtirlic", "screen_name" : "shtirlic", "indices" : [ 0, 9 ], "id_str" : "8439592", diff --git a/public/tweets/data/js/tweets/2013_04.js b/public/tweets/data/js/tweets/2013_04.js index e24c8cd..abef60d 100755 --- a/public/tweets/data/js/tweets/2013_04.js +++ b/public/tweets/data/js/tweets/2013_04.js @@ -1117,7 +1117,7 @@ Grailbird.data.tweets_2013_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "indices" : [ 3, 9 ], "id_str" : "1919231", @@ -1149,7 +1149,7 @@ Grailbird.data.tweets_2013_04 = "id" : 322087418419351552, "created_at" : "2013-04-10 20:43:19 +0000", "user" : { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "protected" : false, "id_str" : "1919231", @@ -1857,7 +1857,7 @@ Grailbird.data.tweets_2013_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 3, 11 ], "id_str" : "14272162", @@ -1884,7 +1884,7 @@ Grailbird.data.tweets_2013_04 = "id" : 319880183714811905, "created_at" : "2013-04-04 18:32:33 +0000", "user" : { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "protected" : false, "id_str" : "14272162", diff --git a/public/tweets/data/js/tweets/2013_05.js b/public/tweets/data/js/tweets/2013_05.js index 6e9dbf1..91769da 100755 --- a/public/tweets/data/js/tweets/2013_05.js +++ b/public/tweets/data/js/tweets/2013_05.js @@ -37,7 +37,7 @@ Grailbird.data.tweets_2013_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jamie Forrest \uD83C\uDDFA\uD83C\uDDF8", + "name" : "Jamie", "screen_name" : "jamieforrest", "indices" : [ 3, 16 ], "id_str" : "14069034", @@ -64,7 +64,7 @@ Grailbird.data.tweets_2013_05 = "id" : 334279984321544192, "created_at" : "2013-05-14 12:12:13 +0000", "user" : { - "name" : "Jamie Forrest \uD83C\uDDFA\uD83C\uDDF8", + "name" : "Jamie", "screen_name" : "jamieforrest", "protected" : false, "id_str" : "14069034", @@ -303,7 +303,7 @@ Grailbird.data.tweets_2013_05 = "screen_name" : "JeremiahLee", "protected" : false, "id_str" : "14538587", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/885777206206754817\/o-nwipOQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/970700107917209602\/XKTR9FPN_normal.jpg", "id" : 14538587, "verified" : false } @@ -876,10 +876,6 @@ Grailbird.data.tweets_2013_05 = "id" : 333127413011730433, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BJ-Bnf2CUAEHW79.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -895,7 +891,12 @@ Grailbird.data.tweets_2013_05 = "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RJ9P4OFHeN" } ], "hashtags" : [ ], @@ -985,7 +986,7 @@ Grailbird.data.tweets_2013_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1016,7 +1017,7 @@ Grailbird.data.tweets_2013_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1047,13 +1048,13 @@ Grailbird.data.tweets_2013_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "brianloveswords", + "name" : "I'd Like to Add you to My Professional Network on", "screen_name" : "brianloveswords", "indices" : [ 0, 16 ], "id_str" : "17177251", "id" : 17177251 }, { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 17, 25 ], "id_str" : "14272162", @@ -1183,7 +1184,7 @@ Grailbird.data.tweets_2013_05 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -1244,7 +1245,7 @@ Grailbird.data.tweets_2013_05 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } diff --git a/public/tweets/data/js/tweets/2013_06.js b/public/tweets/data/js/tweets/2013_06.js index c4c91fd..44a6dc3 100755 --- a/public/tweets/data/js/tweets/2013_06.js +++ b/public/tweets/data/js/tweets/2013_06.js @@ -272,14 +272,6 @@ Grailbird.data.tweets_2013_06 = "id" : 348194634918424577, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BNUJLPcCcAEcCrE.jpg", "sizes" : [ { - "h" : 802, - "resize" : "fit", - "w" : 1240 - }, { - "h" : 440, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -291,7 +283,16 @@ Grailbird.data.tweets_2013_06 = "h" : 776, "resize" : "fit", "w" : 1200 + }, { + "h" : 802, + "resize" : "fit", + "w" : 1240 + }, { + "h" : 440, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/XhizylDrHA" } ], "hashtags" : [ ], @@ -1040,7 +1041,7 @@ Grailbird.data.tweets_2013_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1127,19 +1128,20 @@ Grailbird.data.tweets_2013_06 = "h" : 1536, "resize" : "fit", "w" : 2048 - }, { - "h" : 900, - "resize" : "fit", - "w" : 1200 }, { "h" : 1536, "resize" : "fit", "w" : 2048 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 510, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/hjdmQMpvJp" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2013_07.js b/public/tweets/data/js/tweets/2013_07.js index 7efb987..9021ce0 100755 --- a/public/tweets/data/js/tweets/2013_07.js +++ b/public/tweets/data/js/tweets/2013_07.js @@ -9,7 +9,7 @@ Grailbird.data.tweets_2013_07 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 10, 22 ], "id_str" : "5905672", @@ -121,7 +121,7 @@ Grailbird.data.tweets_2013_07 = "screen_name" : "mraleph", "protected" : false, "id_str" : "53010195", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/428865653903081472\/XqtZKTVu_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961923701641039872\/TWwOK7mW_normal.jpg", "id" : 53010195, "verified" : false } @@ -243,7 +243,7 @@ Grailbird.data.tweets_2013_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Stephanie", + "name" : "Stuffanie", "screen_name" : "CcSteff", "indices" : [ 3, 11 ], "id_str" : "14336349", @@ -270,7 +270,7 @@ Grailbird.data.tweets_2013_07 = "id" : 360911874931433472, "created_at" : "2013-07-26 23:57:51 +0000", "user" : { - "name" : "Stephanie", + "name" : "Stuffanie", "screen_name" : "CcSteff", "protected" : false, "id_str" : "14336349", @@ -593,7 +593,7 @@ Grailbird.data.tweets_2013_07 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -682,7 +682,7 @@ Grailbird.data.tweets_2013_07 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925763991820836864\/nmUFyJez_normal.jpg", "id" : 36183, "verified" : false } @@ -767,7 +767,7 @@ Grailbird.data.tweets_2013_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "fogus", + "name" : "F.O.G.U.S", "screen_name" : "fogus", "indices" : [ 0, 6 ], "id_str" : "14375110", @@ -1213,11 +1213,11 @@ Grailbird.data.tweets_2013_07 = "id" : 354631845415104514, "created_at" : "2013-07-09 16:03:15 +0000", "user" : { - "name" : "paolo fragomeni", + "name" : "paolo f.", "screen_name" : "0x00A", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/895001508349128704\/gFxzeC4L_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/936582635010314240\/Mf7nJiWc_normal.jpg", "id" : 95938827, "verified" : false } diff --git a/public/tweets/data/js/tweets/2013_08.js b/public/tweets/data/js/tweets/2013_08.js index 391b5de..6fdbff7 100755 --- a/public/tweets/data/js/tweets/2013_08.js +++ b/public/tweets/data/js/tweets/2013_08.js @@ -54,7 +54,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -216,7 +216,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Webastiaan the Sith", + "name" : "Sebastiaan de With", "screen_name" : "sdw", "indices" : [ 3, 7 ], "id_str" : "6503412", @@ -248,11 +248,11 @@ Grailbird.data.tweets_2013_08 = "id" : 373504285436166144, "created_at" : "2013-08-30 17:55:35 +0000", "user" : { - "name" : "Webastiaan the Sith", + "name" : "Sebastiaan de With", "screen_name" : "sdw", "protected" : false, "id_str" : "6503412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/615416134846709760\/AySGnpwP_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920006896723091456\/CnqUgW3r_normal.png", "id" : 6503412, "verified" : true } @@ -370,7 +370,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "6596872", "id" : 6596872 }, { - "name" : "Supeternatural Cohen", + "name" : "Peter Cohen", "screen_name" : "flargh", "indices" : [ 36, 43 ], "id_str" : "2960721", @@ -739,7 +739,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -772,7 +772,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -805,7 +805,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "mrgan!", + "name" : "Neven Mrgan", "screen_name" : "mrgan", "indices" : [ 3, 9 ], "id_str" : "35293", @@ -838,11 +838,11 @@ Grailbird.data.tweets_2013_08 = "id" : 371478284736790529, "created_at" : "2013-08-25 03:44:59 +0000", "user" : { - "name" : "mrgan!", + "name" : "Neven Mrgan", "screen_name" : "mrgan", "protected" : false, "id_str" : "35293", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914585912507428864\/-s_wTdcj_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925719886457847808\/Vuf2uyPY_normal.jpg", "id" : 35293, "verified" : true } @@ -1078,7 +1078,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 0, 8 ], "id_str" : "14272162", @@ -1117,7 +1117,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "14165170", "id" : 14165170 }, { - "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 12, 20 ], "id_str" : "11375732", @@ -1252,7 +1252,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 0, 8 ], "id_str" : "14272162", @@ -1508,7 +1508,7 @@ Grailbird.data.tweets_2013_08 = "screen_name" : "TooTallNate", "protected" : false, "id_str" : "277724842", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/646843304781312001\/1A5BvaGm_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/931234424468803584\/8JZJj4I1_normal.jpg", "id" : 277724842, "verified" : false } @@ -1528,13 +1528,13 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", "id" : 29255412 }, { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 15, 19 ], "id_str" : "8038312", @@ -1638,7 +1638,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "mrgan!", + "name" : "Neven Mrgan", "screen_name" : "mrgan", "indices" : [ 0, 6 ], "id_str" : "35293", @@ -1874,10 +1874,6 @@ Grailbird.data.tweets_2013_08 = "id" : 368805388004495360, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BR5Ci99CEAARA1s.png", "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { "h" : 1024, "resize" : "fit", "w" : 768 @@ -1893,7 +1889,12 @@ Grailbird.data.tweets_2013_08 = "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/aHgPaY9GHP" } ], "hashtags" : [ ], @@ -1990,7 +1991,7 @@ Grailbird.data.tweets_2013_08 = "screen_name" : "mraleph", "protected" : false, "id_str" : "53010195", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/428865653903081472\/XqtZKTVu_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961923701641039872\/TWwOK7mW_normal.jpg", "id" : 53010195, "verified" : false } @@ -2221,7 +2222,7 @@ Grailbird.data.tweets_2013_08 = "screen_name" : "mraleph", "protected" : false, "id_str" : "53010195", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/428865653903081472\/XqtZKTVu_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961923701641039872\/TWwOK7mW_normal.jpg", "id" : 53010195, "verified" : false } @@ -2379,7 +2380,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Aaron Heckmann", + "name" : "ajHecky", "screen_name" : "aaronheckmann", "indices" : [ 0, 14 ], "id_str" : "13818902", @@ -2412,7 +2413,7 @@ Grailbird.data.tweets_2013_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Aaron Heckmann", + "name" : "ajHecky", "screen_name" : "aaronheckmann", "indices" : [ 0, 14 ], "id_str" : "13818902", @@ -2550,7 +2551,7 @@ Grailbird.data.tweets_2013_08 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } diff --git a/public/tweets/data/js/tweets/2013_09.js b/public/tweets/data/js/tweets/2013_09.js index 49e656c..4f1574f 100755 --- a/public/tweets/data/js/tweets/2013_09.js +++ b/public/tweets/data/js/tweets/2013_09.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jessie Char", + "name" : "Jessie", "screen_name" : "jessiechar", "indices" : [ 3, 14 ], "id_str" : "8552602", @@ -30,7 +30,7 @@ Grailbird.data.tweets_2013_09 = "id" : 384807382112415745, "created_at" : "2013-09-30 22:30:03 +0000", "user" : { - "name" : "Jessie Char", + "name" : "Jessie", "screen_name" : "jessiechar", "protected" : false, "id_str" : "8552602", @@ -739,7 +739,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "1310721", "id" : 1310721 }, { - "name" : "Aaron Heckmann", + "name" : "ajHecky", "screen_name" : "aaronheckmann", "indices" : [ 10, 24 ], "id_str" : "13818902", @@ -856,14 +856,6 @@ Grailbird.data.tweets_2013_09 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", @@ -872,7 +864,16 @@ Grailbird.data.tweets_2013_09 = "h" : 1024, "resize" : "fit", "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/FSJJZlU2up" } ], "hashtags" : [ ], @@ -907,7 +908,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "110233945", "id" : 110233945 }, { - "name" : "U bum", + "name" : "MD", "screen_name" : "drance", "indices" : [ 20, 27 ], "id_str" : "7440462", @@ -924,7 +925,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "U bum", + "name" : "MD", "screen_name" : "drance", "indices" : [ 0, 7 ], "id_str" : "7440462", @@ -1179,14 +1180,14 @@ Grailbird.data.tweets_2013_09 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 }, { "h" : 680, "resize" : "fit", @@ -1196,6 +1197,7 @@ Grailbird.data.tweets_2013_09 = "resize" : "fit", "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/57iMEVaH3t" } ], "hashtags" : [ ], @@ -1309,14 +1311,14 @@ Grailbird.data.tweets_2013_09 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 }, { "h" : 680, "resize" : "fit", @@ -1326,6 +1328,7 @@ Grailbird.data.tweets_2013_09 = "resize" : "fit", "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/TXG0JXokjI" } ], "hashtags" : [ ], @@ -1488,6 +1491,7 @@ Grailbird.data.tweets_2013_09 = "resize" : "fit", "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ZB8iZhwqmD" } ], "hashtags" : [ ], @@ -1532,14 +1536,6 @@ Grailbird.data.tweets_2013_09 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", @@ -1548,7 +1544,16 @@ Grailbird.data.tweets_2013_09 = "h" : 1024, "resize" : "fit", "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/vXE4LUEhGn" } ], "hashtags" : [ ], @@ -3156,7 +3161,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Paul Burford \uD83C\uDDEA\uD83C\uDDFA", + "name" : "Paul Burford \uD83C\uDDEA\uD83C\uDDFA #FBPE", "screen_name" : "pburford", "indices" : [ 0, 9 ], "id_str" : "155408489", @@ -4274,7 +4279,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "61536181", "id" : 61536181 }, { - "name" : "fogus", + "name" : "F.O.G.U.S", "screen_name" : "fogus", "indices" : [ 13, 19 ], "id_str" : "14375110", @@ -4489,7 +4494,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "indices" : [ 3, 19 ], "id_str" : "1263967268", @@ -4516,11 +4521,11 @@ Grailbird.data.tweets_2013_09 = "id" : 376763816907767808, "created_at" : "2013-09-08 17:47:48 +0000", "user" : { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "protected" : false, "id_str" : "1263967268", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3374120487\/e4f509a5ea232cd5b80f9cbac23d9432_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937618982626037760\/SNb7WO0u_normal.jpg", "id" : 1263967268, "verified" : false } @@ -4540,7 +4545,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mai Sutton", + "name" : "mai ishikawa sutton", "screen_name" : "maira", "indices" : [ 3, 9 ], "id_str" : "397570506", @@ -4564,10 +4569,6 @@ Grailbird.data.tweets_2013_09 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 1024 }, { "h" : 680, "resize" : "fit", @@ -4580,7 +4581,12 @@ Grailbird.data.tweets_2013_09 = "h" : 1024, "resize" : "fit", "w" : 1024 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ewGjnqOHil" } ], "hashtags" : [ ], @@ -4611,10 +4617,6 @@ Grailbird.data.tweets_2013_09 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 1024 }, { "h" : 680, "resize" : "fit", @@ -4627,7 +4629,12 @@ Grailbird.data.tweets_2013_09 = "h" : 1024, "resize" : "fit", "w" : 1024 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ewGjnqOHil" } ], "hashtags" : [ ], @@ -4639,11 +4646,11 @@ Grailbird.data.tweets_2013_09 = "id" : 377234645471219713, "created_at" : "2013-09-10 00:58:42 +0000", "user" : { - "name" : "Mai Sutton", + "name" : "mai ishikawa sutton", "screen_name" : "maira", "protected" : false, "id_str" : "397570506", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/887762589102592000\/LXI5g5NR_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/932455498435117056\/EvTdfIkm_normal.jpg", "id" : 397570506, "verified" : false } @@ -5395,7 +5402,7 @@ Grailbird.data.tweets_2013_09 = "screen_name" : "mgsiegler", "protected" : false, "id_str" : "652193", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/904842400169828352\/GtbMz7M6_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981045814729392129\/VCDJBsEx_normal.jpg", "id" : 652193, "verified" : true } @@ -5506,7 +5513,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Sandler", + "name" : "* # * # C H E C K I N # * # *", "screen_name" : "dsandler", "indices" : [ 3, 12 ], "id_str" : "656863", @@ -5533,11 +5540,11 @@ Grailbird.data.tweets_2013_09 = "id" : 376201587154092032, "created_at" : "2013-09-07 04:33:42 +0000", "user" : { - "name" : "Dan Sandler", + "name" : "* # * # C H E C K I N # * # *", "screen_name" : "dsandler", "protected" : false, "id_str" : "656863", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915032530113396736\/vsK2xRZ0_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/980199258057068545\/J4Kv_nPK_normal.jpg", "id" : 656863, "verified" : false } @@ -5848,7 +5855,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Michael Jurewitz \uD83D\uDCCE", + "name" : "Michael Jurewitz", "screen_name" : "Jury", "indices" : [ 14, 19 ], "id_str" : "10754282", @@ -5865,7 +5872,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Michael Jurewitz \uD83D\uDCCE", + "name" : "Michael Jurewitz", "screen_name" : "Jury", "indices" : [ 0, 5 ], "id_str" : "10754282", @@ -5910,7 +5917,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Michael Jurewitz \uD83D\uDCCE", + "name" : "Michael Jurewitz", "screen_name" : "Jury", "indices" : [ 3, 8 ], "id_str" : "10754282", @@ -5937,7 +5944,7 @@ Grailbird.data.tweets_2013_09 = "id" : 375067339806359552, "created_at" : "2013-09-04 01:26:36 +0000", "user" : { - "name" : "Michael Jurewitz \uD83D\uDCCE", + "name" : "Michael Jurewitz", "screen_name" : "Jury", "protected" : false, "id_str" : "10754282", @@ -6082,7 +6089,7 @@ Grailbird.data.tweets_2013_09 = "screen_name" : "pengwynn", "protected" : false, "id_str" : "14100886", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/911273801203122176\/gr4f9jpv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/936455565512806400\/Yt_j-wjy_normal.jpg", "id" : 14100886, "verified" : false } diff --git a/public/tweets/data/js/tweets/2013_10.js b/public/tweets/data/js/tweets/2013_10.js index 62474d6..5205622 100755 --- a/public/tweets/data/js/tweets/2013_10.js +++ b/public/tweets/data/js/tweets/2013_10.js @@ -326,7 +326,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 3, 11 ], "id_str" : "5813712", @@ -363,7 +363,7 @@ Grailbird.data.tweets_2013_10 = "id" : 395132967959678976, "created_at" : "2013-10-29 10:20:15 +0000", "user" : { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "protected" : false, "id_str" : "5813712", @@ -664,10 +664,6 @@ Grailbird.data.tweets_2013_10 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 768, "resize" : "fit", @@ -680,7 +676,12 @@ Grailbird.data.tweets_2013_10 = "h" : 510, "resize" : "fit", "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/orApsEh7F1" } ], "hashtags" : [ ], @@ -719,18 +720,6 @@ Grailbird.data.tweets_2013_10 = "id" : 394264455078354944, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BXi1btiCIAAu5Mv.jpg", "sizes" : [ { - "h" : 568, - "resize" : "fit", - "w" : 320 - }, { - "h" : 568, - "resize" : "fit", - "w" : 320 - }, { - "h" : 568, - "resize" : "fit", - "w" : 320 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -738,7 +727,20 @@ Grailbird.data.tweets_2013_10 = "h" : 568, "resize" : "fit", "w" : 320 + }, { + "h" : 568, + "resize" : "fit", + "w" : 320 + }, { + "h" : 568, + "resize" : "fit", + "w" : 320 + }, { + "h" : 568, + "resize" : "fit", + "w" : 320 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/5aGAuBPW8B" } ], "hashtags" : [ ], @@ -760,18 +762,6 @@ Grailbird.data.tweets_2013_10 = "id" : 394264455078354944, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BXi1btiCIAAu5Mv.jpg", "sizes" : [ { - "h" : 568, - "resize" : "fit", - "w" : 320 - }, { - "h" : 568, - "resize" : "fit", - "w" : 320 - }, { - "h" : 568, - "resize" : "fit", - "w" : 320 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -779,7 +769,20 @@ Grailbird.data.tweets_2013_10 = "h" : 568, "resize" : "fit", "w" : 320 + }, { + "h" : 568, + "resize" : "fit", + "w" : 320 + }, { + "h" : 568, + "resize" : "fit", + "w" : 320 + }, { + "h" : 568, + "resize" : "fit", + "w" : 320 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/5aGAuBPW8B" } ], "hashtags" : [ ], @@ -815,7 +818,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -991,7 +994,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Aaron Heckmann", + "name" : "ajHecky", "screen_name" : "aaronheckmann", "indices" : [ 0, 14 ], "id_str" : "13818902", @@ -1084,6 +1087,10 @@ Grailbird.data.tweets_2013_10 = "id" : 393848241374371841, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BXc644qIIAEzvCQ.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 1136, "resize" : "fit", "w" : 640 @@ -1095,15 +1102,12 @@ Grailbird.data.tweets_2013_10 = "h" : 1136, "resize" : "fit", "w" : 640 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 }, { "h" : 1136, "resize" : "fit", "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/QDpwIPadbt" } ], "hashtags" : [ ], @@ -1290,7 +1294,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "217540637", "id" : 217540637 }, { - "name" : "Accidental Tech", + "name" : "Accidental Tech Podcast", "screen_name" : "atpfm", "indices" : [ 132, 138 ], "id_str" : "1253355925", @@ -1386,7 +1390,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -1912,7 +1916,7 @@ Grailbird.data.tweets_2013_10 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925763991820836864\/nmUFyJez_normal.jpg", "id" : 36183, "verified" : false } @@ -1938,7 +1942,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "2419654592", "id" : 2419654592 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 8, 22 ], "id_str" : "29255412", @@ -1977,7 +1981,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "2419654592", "id" : 2419654592 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 8, 22 ], "id_str" : "29255412", @@ -2209,7 +2213,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2242,7 +2246,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2275,7 +2279,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2619,7 +2623,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Michael Jurewitz \uD83D\uDCCE", + "name" : "Michael Jurewitz", "screen_name" : "Jury", "indices" : [ 0, 5 ], "id_str" : "10754282", @@ -2835,7 +2839,7 @@ Grailbird.data.tweets_2013_10 = "id" : 389480851819737088, "created_at" : "2013-10-13 20:00:45 +0000", "user" : { - "name" : "The Moon Brewery", + "name" : "The Moon Under Water Brewery, Pub and Distillery", "screen_name" : "MoonBrewery", "protected" : false, "id_str" : "286865421", @@ -3247,7 +3251,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Michael Jurewitz \uD83D\uDCCE", + "name" : "Michael Jurewitz", "screen_name" : "Jury", "indices" : [ 0, 5 ], "id_str" : "10754282", @@ -3637,7 +3641,7 @@ Grailbird.data.tweets_2013_10 = "screen_name" : "mathias", "protected" : false, "id_str" : "532923", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1255767431\/kung-fu_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/952797845534453760\/HRhT4f_5_normal.jpg", "id" : 532923, "verified" : true } @@ -3810,14 +3814,6 @@ Grailbird.data.tweets_2013_10 = "h" : 698, "resize" : "fit", "w" : 829 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 698, - "resize" : "fit", - "w" : 829 }, { "h" : 698, "resize" : "fit", @@ -3826,7 +3822,16 @@ Grailbird.data.tweets_2013_10 = "h" : 573, "resize" : "fit", "w" : 680 + }, { + "h" : 698, + "resize" : "fit", + "w" : 829 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/kIYX7LMyGA" } ], "hashtags" : [ ], @@ -3888,7 +3893,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3933,10 +3938,6 @@ Grailbird.data.tweets_2013_10 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 768, "resize" : "fit", @@ -3949,7 +3950,12 @@ Grailbird.data.tweets_2013_10 = "h" : 510, "resize" : "fit", "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/IUF1vmf9G1" } ], "hashtags" : [ ], @@ -4021,10 +4027,6 @@ Grailbird.data.tweets_2013_10 = "id" : 385967654051147777, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BVs7iVKCcAEGRcx.png", "sizes" : [ { - "h" : 680, - "resize" : "fit", - "w" : 474 - }, { "h" : 702, "resize" : "fit", "w" : 489 @@ -4040,7 +4042,12 @@ Grailbird.data.tweets_2013_10 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 474 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/1IkwAkvCZ4" } ], "hashtags" : [ { @@ -4065,10 +4072,6 @@ Grailbird.data.tweets_2013_10 = "id" : 385967654051147777, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BVs7iVKCcAEGRcx.png", "sizes" : [ { - "h" : 680, - "resize" : "fit", - "w" : 474 - }, { "h" : 702, "resize" : "fit", "w" : 489 @@ -4084,7 +4087,12 @@ Grailbird.data.tweets_2013_10 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 474 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/1IkwAkvCZ4" } ], "hashtags" : [ { @@ -4157,6 +4165,10 @@ Grailbird.data.tweets_2013_10 = "id" : 385967448840601600, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BVs7WYsCAAAYqtk.png", "sizes" : [ { + "h" : 434, + "resize" : "fit", + "w" : 680 + }, { "h" : 636, "resize" : "fit", "w" : 997 @@ -4172,11 +4184,8 @@ Grailbird.data.tweets_2013_10 = "h" : 636, "resize" : "fit", "w" : 997 - }, { - "h" : 434, - "resize" : "fit", - "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/VKqI4vdF5Z" } ], "hashtags" : [ { @@ -4266,6 +4275,10 @@ Grailbird.data.tweets_2013_10 = "id" : 385614140481355776, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BVn6BIfCQAAsROJ.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 680, "resize" : "fit", "w" : 665 @@ -4281,11 +4294,8 @@ Grailbird.data.tweets_2013_10 = "h" : 1024, "resize" : "fit", "w" : 1002 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/1pIMwGJqev" } ], "hashtags" : [ ], @@ -4307,6 +4317,10 @@ Grailbird.data.tweets_2013_10 = "id" : 385614140481355776, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BVn6BIfCQAAsROJ.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 680, "resize" : "fit", "w" : 665 @@ -4322,11 +4336,8 @@ Grailbird.data.tweets_2013_10 = "h" : 1024, "resize" : "fit", "w" : 1002 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/1pIMwGJqev" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2013_11.js b/public/tweets/data/js/tweets/2013_11.js index 7b1deb9..2848090 100755 --- a/public/tweets/data/js/tweets/2013_11.js +++ b/public/tweets/data/js/tweets/2013_11.js @@ -77,9 +77,9 @@ Grailbird.data.tweets_2013_11 = "resize" : "fit", "w" : 908 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 257, + "resize" : "fit", + "w" : 908 }, { "h" : 257, "resize" : "fit", @@ -89,10 +89,11 @@ Grailbird.data.tweets_2013_11 = "resize" : "fit", "w" : 680 }, { - "h" : 257, - "resize" : "fit", - "w" : 908 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/aenTH3JfBn" } ], "hashtags" : [ ], @@ -116,7 +117,7 @@ Grailbird.data.tweets_2013_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dave Ghost Dicks", + "name" : "David Hicks", "screen_name" : "ALL_CAPS", "indices" : [ 0, 9 ], "id_str" : "35745942", @@ -268,57 +269,6 @@ Grailbird.data.tweets_2013_11 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "indices" : [ 3, 14 ], - "id_str" : "14206068", - "id" : 14206068 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "403947320657457152", - "text" : "RT @tlrobinson: Rappers can't make it rain Bitcoins, but they can sign a message with a rich Bitcoin address' private key provably attestin\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "403923535661236224", - "text" : "Rappers can't make it rain Bitcoins, but they can sign a message with a rich Bitcoin address' private key provably attesting to their wealth", - "id" : 403923535661236224, - "created_at" : "2013-11-22 16:30:50 +0000", - "user" : { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "protected" : false, - "id_str" : "14206068", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", - "id" : 14206068, - "verified" : false - } - }, - "id" : 403947320657457152, - "created_at" : "2013-11-22 18:05:20 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { @@ -477,7 +427,7 @@ Grailbird.data.tweets_2013_11 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -515,67 +465,6 @@ Grailbird.data.tweets_2013_11 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "indices" : [ 3, 14 ], - "id_str" : "14206068", - "id" : 14206068 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 94, 116 ], - "url" : "http:\/\/t.co\/rca33ZjPPx", - "expanded_url" : "http:\/\/bitcoinwisdom.com\/markets\/mtgox\/btcusd", - "display_url" : "bitcoinwisdom.com\/markets\/mtgox\/\u2026" - } ] - }, - "geo" : { }, - "id_str" : "402627149854543873", - "text" : "RT @tlrobinson: If Bitcoin volatility entertains you, this is entertaining as hell right now: http:\/\/t.co\/rca33ZjPPx", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 78, 100 ], - "url" : "http:\/\/t.co\/rca33ZjPPx", - "expanded_url" : "http:\/\/bitcoinwisdom.com\/markets\/mtgox\/btcusd", - "display_url" : "bitcoinwisdom.com\/markets\/mtgox\/\u2026" - } ] - }, - "geo" : { }, - "id_str" : "402614497015115776", - "text" : "If Bitcoin volatility entertains you, this is entertaining as hell right now: http:\/\/t.co\/rca33ZjPPx", - "id" : 402614497015115776, - "created_at" : "2013-11-19 01:49:10 +0000", - "user" : { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "protected" : false, - "id_str" : "14206068", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", - "id" : 14206068, - "verified" : false - } - }, - "id" : 402627149854543873, - "created_at" : "2013-11-19 02:39:27 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { @@ -598,23 +487,24 @@ Grailbird.data.tweets_2013_11 = "h" : 398, "resize" : "fit", "w" : 518 + }, { + "h" : 398, + "resize" : "fit", + "w" : 518 + }, { + "h" : 398, + "resize" : "fit", + "w" : 518 + }, { + "h" : 398, + "resize" : "fit", + "w" : 518 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 398, - "resize" : "fit", - "w" : 518 - }, { - "h" : 398, - "resize" : "fit", - "w" : 518 - }, { - "h" : 398, - "resize" : "fit", - "w" : 518 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/uOMDLqTjKc" } ], "hashtags" : [ ], @@ -639,23 +529,24 @@ Grailbird.data.tweets_2013_11 = "h" : 398, "resize" : "fit", "w" : 518 + }, { + "h" : 398, + "resize" : "fit", + "w" : 518 + }, { + "h" : 398, + "resize" : "fit", + "w" : 518 + }, { + "h" : 398, + "resize" : "fit", + "w" : 518 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 398, - "resize" : "fit", - "w" : 518 - }, { - "h" : 398, - "resize" : "fit", - "w" : 518 - }, { - "h" : 398, - "resize" : "fit", - "w" : 518 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/uOMDLqTjKc" } ], "hashtags" : [ ], @@ -709,14 +600,6 @@ Grailbird.data.tweets_2013_11 = "h" : 598, "resize" : "fit", "w" : 448 - }, { - "h" : 598, - "resize" : "fit", - "w" : 448 - }, { - "h" : 598, - "resize" : "fit", - "w" : 448 }, { "h" : 150, "resize" : "crop", @@ -725,7 +608,16 @@ Grailbird.data.tweets_2013_11 = "h" : 598, "resize" : "fit", "w" : 448 + }, { + "h" : 598, + "resize" : "fit", + "w" : 448 + }, { + "h" : 598, + "resize" : "fit", + "w" : 448 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RSn7WufBqL" } ], "hashtags" : [ ], @@ -750,14 +642,6 @@ Grailbird.data.tweets_2013_11 = "h" : 598, "resize" : "fit", "w" : 448 - }, { - "h" : 598, - "resize" : "fit", - "w" : 448 - }, { - "h" : 598, - "resize" : "fit", - "w" : 448 }, { "h" : 150, "resize" : "crop", @@ -766,7 +650,16 @@ Grailbird.data.tweets_2013_11 = "h" : 598, "resize" : "fit", "w" : 448 + }, { + "h" : 598, + "resize" : "fit", + "w" : 448 + }, { + "h" : 598, + "resize" : "fit", + "w" : 448 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RSn7WufBqL" } ], "hashtags" : [ ], @@ -1148,6 +1041,14 @@ Grailbird.data.tweets_2013_11 = "h" : 1024, "resize" : "fit", "w" : 577 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 577 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 577 }, { "h" : 150, "resize" : "crop", @@ -1156,15 +1057,8 @@ Grailbird.data.tweets_2013_11 = "h" : 680, "resize" : "fit", "w" : 383 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 577 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 577 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/DViwfPX56u" } ], "hashtags" : [ ], @@ -1542,11 +1436,11 @@ Grailbird.data.tweets_2013_11 = "id_str" : "668863", "id" : 668863 }, { - "name" : "Alex Matchneer", + "name" : "Machty_Sx", "screen_name" : "machty", "indices" : [ 24, 31 ], - "id_str" : "18740111", - "id" : 18740111 + "id_str" : "961332937064157187", + "id" : 961332937064157187 } ], "media" : [ ], "hashtags" : [ ], @@ -1559,11 +1453,11 @@ Grailbird.data.tweets_2013_11 = "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Alex Matchneer", + "name" : "Machty_Sx", "screen_name" : "machty", "indices" : [ 11, 18 ], - "id_str" : "18740111", - "id" : 18740111 + "id_str" : "961332937064157187", + "id" : 961332937064157187 } ], "media" : [ ], "hashtags" : [ ], @@ -1847,18 +1741,6 @@ Grailbird.data.tweets_2013_11 = "indices" : [ 14, 19 ], "id_str" : "4777951", "id" : 4777951 - }, { - "name" : "Janie Larson", - "screen_name" : "picturelife", - "indices" : [ 20, 32 ], - "id_str" : "1489526450", - "id" : 1489526450 - }, { - "name" : "Loom", - "screen_name" : "TeamLoom", - "indices" : [ 33, 42 ], - "id_str" : "1375739545", - "id" : 1375739545 } ], "media" : [ ], "hashtags" : [ ], @@ -1876,12 +1758,6 @@ Grailbird.data.tweets_2013_11 = "indices" : [ 0, 5 ], "id_str" : "4777951", "id" : 4777951 - }, { - "name" : "Janie Larson", - "screen_name" : "picturelife", - "indices" : [ 6, 18 ], - "id_str" : "1489526450", - "id" : 1489526450 }, { "name" : "Loom", "screen_name" : "TeamLoom", @@ -1934,12 +1810,6 @@ Grailbird.data.tweets_2013_11 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Janie Larson", - "screen_name" : "picturelife", - "indices" : [ 7, 19 ], - "id_str" : "1489526450", - "id" : 1489526450 - }, { "name" : "Loom", "screen_name" : "TeamLoom", "indices" : [ 40, 49 ], @@ -1991,12 +1861,6 @@ Grailbird.data.tweets_2013_11 = "indices" : [ 95, 104 ], "id_str" : "1375739545", "id" : 1375739545 - }, { - "name" : "Janie Larson", - "screen_name" : "picturelife", - "indices" : [ 106, 118 ], - "id_str" : "1489526450", - "id" : 1489526450 } ], "media" : [ ], "hashtags" : [ ], @@ -2260,7 +2124,7 @@ Grailbird.data.tweets_2013_11 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "indices" : [ 3, 19 ], "id_str" : "1263967268", @@ -2287,11 +2151,11 @@ Grailbird.data.tweets_2013_11 = "id" : 397539910501924865, "created_at" : "2013-11-05 01:44:35 +0000", "user" : { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "protected" : false, "id_str" : "1263967268", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3374120487\/e4f509a5ea232cd5b80f9cbac23d9432_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937618982626037760\/SNb7WO0u_normal.jpg", "id" : 1263967268, "verified" : false } diff --git a/public/tweets/data/js/tweets/2013_12.js b/public/tweets/data/js/tweets/2013_12.js index 6409887..5a9b1af 100755 --- a/public/tweets/data/js/tweets/2013_12.js +++ b/public/tweets/data/js/tweets/2013_12.js @@ -86,7 +86,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Joel Spooky", + "name" : "Joel Spolsky", "screen_name" : "spolsky", "indices" : [ 3, 11 ], "id_str" : "15948437", @@ -142,7 +142,7 @@ Grailbird.data.tweets_2013_12 = "in_reply_to_screen_name" : "roxaloxa", "in_reply_to_user_id_str" : "14467421", "user" : { - "name" : "Joel Spooky", + "name" : "Joel Spolsky", "screen_name" : "spolsky", "protected" : false, "id_str" : "15948437", @@ -430,7 +430,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC80Ben Haunty\uD83D\uDC80", + "name" : "\uD83C\uDF9B\uFE0FBen Prunty\uD83C\uDF9B\uFE0F", "screen_name" : "benprunty", "indices" : [ 11, 21 ], "id_str" : "15810488", @@ -598,14 +598,6 @@ Grailbird.data.tweets_2013_12 = "id" : 417100417647280128, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcnWnrWIgAAlSbt.jpg", "sizes" : [ { - "h" : 483, - "resize" : "fit", - "w" : 640 - }, { - "h" : 483, - "resize" : "fit", - "w" : 640 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -617,7 +609,16 @@ Grailbird.data.tweets_2013_12 = "h" : 483, "resize" : "fit", "w" : 640 + }, { + "h" : 483, + "resize" : "fit", + "w" : 640 + }, { + "h" : 483, + "resize" : "fit", + "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/XvgWgPcjJu" } ], "hashtags" : [ ], @@ -639,14 +640,6 @@ Grailbird.data.tweets_2013_12 = "id" : 417100417647280128, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcnWnrWIgAAlSbt.jpg", "sizes" : [ { - "h" : 483, - "resize" : "fit", - "w" : 640 - }, { - "h" : 483, - "resize" : "fit", - "w" : 640 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -658,7 +651,16 @@ Grailbird.data.tweets_2013_12 = "h" : 483, "resize" : "fit", "w" : 640 + }, { + "h" : 483, + "resize" : "fit", + "w" : 640 + }, { + "h" : 483, + "resize" : "fit", + "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/XvgWgPcjJu" } ], "hashtags" : [ ], @@ -742,10 +744,6 @@ Grailbird.data.tweets_2013_12 = "id" : 416925199800745984, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bck3QqAIQAAWDUO.jpg", "sizes" : [ { - "h" : 605, - "resize" : "fit", - "w" : 640 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -761,7 +759,12 @@ Grailbird.data.tweets_2013_12 = "h" : 605, "resize" : "fit", "w" : 640 + }, { + "h" : 605, + "resize" : "fit", + "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/nhIi2jJCHZ" } ], "hashtags" : [ ], @@ -783,10 +786,6 @@ Grailbird.data.tweets_2013_12 = "id" : 416925199800745984, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bck3QqAIQAAWDUO.jpg", "sizes" : [ { - "h" : 605, - "resize" : "fit", - "w" : 640 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -802,7 +801,12 @@ Grailbird.data.tweets_2013_12 = "h" : 605, "resize" : "fit", "w" : 640 + }, { + "h" : 605, + "resize" : "fit", + "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/nhIi2jJCHZ" } ], "hashtags" : [ ], @@ -871,7 +875,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "fogus", + "name" : "F.O.G.U.S", "screen_name" : "fogus", "indices" : [ 3, 9 ], "id_str" : "14375110", @@ -898,7 +902,7 @@ Grailbird.data.tweets_2013_12 = "id" : 416597972818731008, "created_at" : "2013-12-27 15:54:31 +0000", "user" : { - "name" : "fogus", + "name" : "F.O.G.U.S", "screen_name" : "fogus", "protected" : false, "id_str" : "14375110", @@ -937,9 +941,13 @@ Grailbird.data.tweets_2013_12 = "id" : 416339242575335424, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcciVdPCEAAAaMt.png", "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 455, + "resize" : "fit", + "w" : 720 + }, { + "h" : 455, + "resize" : "fit", + "w" : 720 }, { "h" : 430, "resize" : "fit", @@ -949,14 +957,11 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 720 }, { - "h" : 455, - "resize" : "fit", - "w" : 720 - }, { - "h" : 455, - "resize" : "fit", - "w" : 720 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ZSebEIoita" } ], "hashtags" : [ ], @@ -978,9 +983,13 @@ Grailbird.data.tweets_2013_12 = "id" : 416339242575335424, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcciVdPCEAAAaMt.png", "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 455, + "resize" : "fit", + "w" : 720 + }, { + "h" : 455, + "resize" : "fit", + "w" : 720 }, { "h" : 430, "resize" : "fit", @@ -990,14 +999,11 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 720 }, { - "h" : 455, - "resize" : "fit", - "w" : 720 - }, { - "h" : 455, - "resize" : "fit", - "w" : 720 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ZSebEIoita" } ], "hashtags" : [ ], @@ -1013,7 +1019,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "caseyjohnston", "protected" : false, "id_str" : "16472748", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/724432921046704130\/53NbK4wi_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/980767894844911616\/MvYtvL3u_normal.jpg", "id" : 16472748, "verified" : true } @@ -1058,22 +1064,23 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 2048 }, { - "h" : 1200, + "h" : 680, "resize" : "fit", - "w" : 1200 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 680, - "resize" : "fit", - "w" : 680 }, { "h" : 2048, "resize" : "fit", "w" : 2048 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/m7aOOMACCe" } ], "hashtags" : [ ], @@ -1105,22 +1112,23 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 2048 }, { - "h" : 1200, + "h" : 680, "resize" : "fit", - "w" : 1200 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 680, - "resize" : "fit", - "w" : 680 }, { "h" : 2048, "resize" : "fit", "w" : 2048 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/m7aOOMACCe" } ], "hashtags" : [ ], @@ -1283,7 +1291,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -1316,7 +1324,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -1349,7 +1357,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -1382,7 +1390,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "luke oneil \uD83D\uDEBD", + "name" : "luke oneil", "screen_name" : "lukeoneil47", "indices" : [ 3, 15 ], "id_str" : "108338399", @@ -1409,11 +1417,11 @@ Grailbird.data.tweets_2013_12 = "id" : 415347426795343872, "created_at" : "2013-12-24 05:05:17 +0000", "user" : { - "name" : "luke oneil \uD83D\uDEBD", + "name" : "luke oneil", "screen_name" : "lukeoneil47", "protected" : false, "id_str" : "108338399", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918951647241539587\/L9YVFdtG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985945357149442048\/6iBYSrKO_normal.jpg", "id" : 108338399, "verified" : true } @@ -1599,17 +1607,17 @@ Grailbird.data.tweets_2013_12 = "id" : 415182150997000192, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcMF93NCQAAXKhW.jpg", "sizes" : [ { - "h" : 300, + "h" : 469, "resize" : "fit", - "w" : 680 + "w" : 1064 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 469, + "h" : 300, "resize" : "fit", - "w" : 1064 + "w" : 680 }, { "h" : 469, "resize" : "fit", @@ -1619,6 +1627,7 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 1064 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xxdLHfxl9H" } ], "hashtags" : [ ], @@ -1640,17 +1649,17 @@ Grailbird.data.tweets_2013_12 = "id" : 415182150997000192, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BcMF93NCQAAXKhW.jpg", "sizes" : [ { - "h" : 300, + "h" : 469, "resize" : "fit", - "w" : 680 + "w" : 1064 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 469, + "h" : 300, "resize" : "fit", - "w" : 1064 + "w" : 680 }, { "h" : 469, "resize" : "fit", @@ -1660,6 +1669,7 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 1064 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xxdLHfxl9H" } ], "hashtags" : [ ], @@ -1793,10 +1803,6 @@ Grailbird.data.tweets_2013_12 = "id" : 413542106339479552, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bb0yWswIEAAkwZS.jpg", "sizes" : [ { - "h" : 667, - "resize" : "fit", - "w" : 500 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1812,7 +1818,12 @@ Grailbird.data.tweets_2013_12 = "h" : 667, "resize" : "fit", "w" : 500 + }, { + "h" : 667, + "resize" : "fit", + "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0PklpWzv6L" } ], "hashtags" : [ { @@ -1837,10 +1848,6 @@ Grailbird.data.tweets_2013_12 = "id" : 413542106339479552, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bb0yWswIEAAkwZS.jpg", "sizes" : [ { - "h" : 667, - "resize" : "fit", - "w" : 500 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1856,7 +1863,12 @@ Grailbird.data.tweets_2013_12 = "h" : 667, "resize" : "fit", "w" : 500 + }, { + "h" : 667, + "resize" : "fit", + "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0PklpWzv6L" } ], "hashtags" : [ { @@ -1990,168 +2002,6 @@ Grailbird.data.tweets_2013_12 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "indices" : [ 3, 14 ], - "id_str" : "14206068", - "id" : 14206068 - } ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/tlrobinson\/status\/414198869958733825\/photo\/1", - "indices" : [ 107, 129 ], - "url" : "http:\/\/t.co\/sihU1ralRm", - "media_url" : "http:\/\/pbs.twimg.com\/media\/Bb-HrXRCAAAEeYU.jpg", - "id_str" : "414198869790949376", - "id" : 414198869790949376, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bb-HrXRCAAAEeYU.jpg", - "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 - } ], - "display_url" : "pic.twitter.com\/sihU1ralRm" - } ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "414213277636255744", - "text" : "RT @tlrobinson: This is either a really good idea, or a really terrible idea. Either way, Merry Christmas! http:\/\/t.co\/sihU1ralRm", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/tlrobinson\/status\/414198869958733825\/photo\/1", - "indices" : [ 91, 113 ], - "url" : "http:\/\/t.co\/sihU1ralRm", - "media_url" : "http:\/\/pbs.twimg.com\/media\/Bb-HrXRCAAAEeYU.jpg", - "id_str" : "414198869790949376", - "id" : 414198869790949376, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bb-HrXRCAAAEeYU.jpg", - "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 - } ], - "display_url" : "pic.twitter.com\/sihU1ralRm" - } ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "414198869958733825", - "text" : "This is either a really good idea, or a really terrible idea. Either way, Merry Christmas! http:\/\/t.co\/sihU1ralRm", - "id" : 414198869958733825, - "created_at" : "2013-12-21 01:01:20 +0000", - "user" : { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "protected" : false, - "id_str" : "14206068", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", - "id" : 14206068, - "verified" : false - } - }, - "id" : 414213277636255744, - "created_at" : "2013-12-21 01:58:35 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Alex Gaynor", - "screen_name" : "alex_gaynor", - "indices" : [ 3, 15 ], - "id_str" : "14635493", - "id" : 14635493 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "414213134849560576", - "text" : "RT @alex_gaynor: Your database always has a schema, sometimes it\u2019s just ad-hoc and not enforced by the database software.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "414179123079045121", - "text" : "Your database always has a schema, sometimes it\u2019s just ad-hoc and not enforced by the database software.", - "id" : 414179123079045121, - "created_at" : "2013-12-20 23:42:52 +0000", - "user" : { - "name" : "Alex Gaynor", - "screen_name" : "alex_gaynor", - "protected" : false, - "id_str" : "14635493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3363464549\/6af933342227b6c6d6cb4fdb6c3d8822_normal.jpeg", - "id" : 14635493, - "verified" : false - } - }, - "id" : 414213134849560576, - "created_at" : "2013-12-21 01:58:01 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { @@ -2323,7 +2173,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 3, 15 ], "id_str" : "6927562", @@ -2338,18 +2188,6 @@ Grailbird.data.tweets_2013_12 = "id" : 414091191064731648, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bb8lvowIIAACMck.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 576 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 576 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 576 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2357,7 +2195,20 @@ Grailbird.data.tweets_2013_12 = "h" : 680, "resize" : "fit", "w" : 383 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 576 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 576 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 576 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/wFAIMQUKQS" } ], "hashtags" : [ ], @@ -2379,18 +2230,6 @@ Grailbird.data.tweets_2013_12 = "id" : 414091191064731648, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bb8lvowIIAACMck.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 576 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 576 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 576 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2398,7 +2237,20 @@ Grailbird.data.tweets_2013_12 = "h" : 680, "resize" : "fit", "w" : 383 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 576 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 576 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 576 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/wFAIMQUKQS" } ], "hashtags" : [ ], @@ -2413,11 +2265,11 @@ Grailbird.data.tweets_2013_12 = "id" : 414091191211532288, "created_at" : "2013-12-20 17:53:28 +0000", "user" : { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918433182906830848\/NwsKygmV_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/934619752768647168\/4ixrnv8S_normal.jpg", "id" : 6927562, "verified" : true } @@ -2628,14 +2480,14 @@ Grailbird.data.tweets_2013_12 = "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 2048, - "resize" : "fit", - "w" : 1536 }, { "h" : 1200, "resize" : "fit", "w" : 900 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1536 }, { "h" : 150, "resize" : "crop", @@ -2645,6 +2497,7 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/h8lDrkI8Lk" } ], "hashtags" : [ ], @@ -2680,7 +2533,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2713,7 +2566,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -3451,26 +3304,27 @@ Grailbird.data.tweets_2013_12 = "id" : 411614161165377536, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BbZY5hTIYAA0d56.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OKcD5N5sK2" } ], "hashtags" : [ ], @@ -3486,7 +3340,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "stopsatgreen", "protected" : false, "id_str" : "13407012", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/391831398\/peter_opie_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/921905673499226113\/WZF7mHe2_normal.jpg", "id" : 13407012, "verified" : false } @@ -3640,7 +3494,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 0, 7 ], "id_str" : "8526432", @@ -3673,7 +3527,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 0, 7 ], "id_str" : "8526432", @@ -3826,9 +3680,17 @@ Grailbird.data.tweets_2013_12 = "id" : 412095418374168576, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BbgOmYHCIAAtfBm.png", "sizes" : [ { + "h" : 640, + "resize" : "fit", + "w" : 1024 + }, { "h" : 425, "resize" : "fit", "w" : 680 + }, { + "h" : 640, + "resize" : "fit", + "w" : 1024 }, { "h" : 150, "resize" : "crop", @@ -3837,15 +3699,8 @@ Grailbird.data.tweets_2013_12 = "h" : 640, "resize" : "fit", "w" : 1024 - }, { - "h" : 640, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 640, - "resize" : "fit", - "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/FKGo0JzXSB" } ], "hashtags" : [ ], @@ -4059,7 +3914,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "13977542", "id" : 13977542 }, { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 9, 16 ], "id_str" : "8526432", @@ -4098,7 +3953,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "14761655", "id" : 14761655 }, { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 12, 24 ], "id_str" : "6927562", @@ -4227,7 +4082,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "16468446", "id" : 16468446 }, { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 41, 48 ], "id_str" : "8526432", @@ -4247,7 +4102,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 23, 30 ], "id_str" : "8526432", @@ -4270,7 +4125,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "ryanflorence", "protected" : false, "id_str" : "16468446", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/864681873984835585\/4eV1BACS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937382461918478336\/AxXNkFRG_normal.jpg", "id" : 16468446, "verified" : false } @@ -4322,13 +4177,7 @@ Grailbird.data.tweets_2013_12 = }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Gautam Trivedi", - "screen_name" : "Gotham3", - "indices" : [ 3, 11 ], - "id_str" : "126903716", - "id" : 126903716 - } ], + "user_mentions" : [ ], "media" : [ { "expanded_url" : "https:\/\/twitter.com\/Gotham3\/status\/401120129137655810\/photo\/1", "indices" : [ 79, 101 ], @@ -4338,18 +4187,6 @@ Grailbird.data.tweets_2013_12 = "id" : 401120129146044417, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BZEQodoCQAEjz2J.jpg", "sizes" : [ { - "h" : 518, - "resize" : "fit", - "w" : 520 - }, { - "h" : 518, - "resize" : "fit", - "w" : 520 - }, { - "h" : 518, - "resize" : "fit", - "w" : 520 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4357,7 +4194,20 @@ Grailbird.data.tweets_2013_12 = "h" : 518, "resize" : "fit", "w" : 520 + }, { + "h" : 518, + "resize" : "fit", + "w" : 520 + }, { + "h" : 518, + "resize" : "fit", + "w" : 520 + }, { + "h" : 518, + "resize" : "fit", + "w" : 520 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/b05qncGs8v" } ], "hashtags" : [ ], @@ -4379,18 +4229,6 @@ Grailbird.data.tweets_2013_12 = "id" : 401120129146044417, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BZEQodoCQAEjz2J.jpg", "sizes" : [ { - "h" : 518, - "resize" : "fit", - "w" : 520 - }, { - "h" : 518, - "resize" : "fit", - "w" : 520 - }, { - "h" : 518, - "resize" : "fit", - "w" : 520 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4398,7 +4236,20 @@ Grailbird.data.tweets_2013_12 = "h" : 518, "resize" : "fit", "w" : 520 + }, { + "h" : 518, + "resize" : "fit", + "w" : 520 + }, { + "h" : 518, + "resize" : "fit", + "w" : 520 + }, { + "h" : 518, + "resize" : "fit", + "w" : 520 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/b05qncGs8v" } ], "hashtags" : [ ], @@ -4411,10 +4262,10 @@ Grailbird.data.tweets_2013_12 = "created_at" : "2013-11-14 22:51:06 +0000", "user" : { "name" : "Gautam Trivedi", - "screen_name" : "Gotham3", + "screen_name" : "KaptanHindustan", "protected" : false, "id_str" : "126903716", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919246471861374976\/xPM4LZL8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985999659901640705\/RPsM1oYM_normal.jpg", "id" : 126903716, "verified" : false } @@ -4475,7 +4326,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "paul_irish", "protected" : false, "id_str" : "1671811", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/420826194083213312\/CP1RmLa3_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972186419274776576\/LaJS_MKO_normal.jpg", "id" : 1671811, "verified" : false } @@ -4495,7 +4346,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "indices" : [ 3, 9 ], "id_str" : "1919231", @@ -4521,17 +4372,17 @@ Grailbird.data.tweets_2013_12 = "id" : 410201956129316864, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BbFUgXlCIAAvW71.jpg", "sizes" : [ { - "h" : 482, - "resize" : "fit", - "w" : 709 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 462, "resize" : "fit", "w" : 680 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 482, + "resize" : "fit", + "w" : 709 }, { "h" : 482, "resize" : "fit", @@ -4541,6 +4392,7 @@ Grailbird.data.tweets_2013_12 = "resize" : "fit", "w" : 709 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/KNeWlDXboz" } ], "hashtags" : [ ], @@ -4552,7 +4404,7 @@ Grailbird.data.tweets_2013_12 = "id" : 410201956120928256, "created_at" : "2013-12-10 00:19:02 +0000", "user" : { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "protected" : false, "id_str" : "1919231", @@ -4576,19 +4428,19 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "indices" : [ 0, 6 ], "id_str" : "1919231", "id" : 1919231 }, { - "name" : "Hallouieen", + "name" : "Louie", "screen_name" : "Mantia", "indices" : [ 7, 14 ], "id_str" : "41783", "id" : 41783 }, { - "name" : "Alex Says Boo to YOU", + "name" : "Alexbot 2018", "screen_name" : "alexpalex", "indices" : [ 15, 25 ], "id_str" : "787158", @@ -4875,7 +4727,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "14761655", "id" : 14761655 }, { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 12, 19 ], "id_str" : "8526432", @@ -4890,6 +4742,18 @@ Grailbird.data.tweets_2013_12 = "id" : 408727168198262785, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BawXMaaCQAEpaiM.png", "sizes" : [ { + "h" : 177, + "resize" : "fit", + "w" : 314 + }, { + "h" : 177, + "resize" : "fit", + "w" : 314 + }, { + "h" : 177, + "resize" : "fit", + "w" : 314 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4897,19 +4761,8 @@ Grailbird.data.tweets_2013_12 = "h" : 177, "resize" : "fit", "w" : 314 - }, { - "h" : 177, - "resize" : "fit", - "w" : 314 - }, { - "h" : 177, - "resize" : "fit", - "w" : 314 - }, { - "h" : 177, - "resize" : "fit", - "w" : 314 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ZWVLJf0s3n" } ], "hashtags" : [ ], @@ -5357,14 +5210,6 @@ Grailbird.data.tweets_2013_12 = "id" : 407439281805078528, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BaeD3juIMAAF4Ek.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 769 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 769 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -5372,11 +5217,20 @@ Grailbird.data.tweets_2013_12 = "h" : 1024, "resize" : "fit", "w" : 769 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 769 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 769 }, { "h" : 680, "resize" : "fit", "w" : 511 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/neJxYANj6p" } ], "hashtags" : [ ], @@ -5398,14 +5252,6 @@ Grailbird.data.tweets_2013_12 = "id" : 407439281805078528, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BaeD3juIMAAF4Ek.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 769 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 769 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -5413,11 +5259,20 @@ Grailbird.data.tweets_2013_12 = "h" : 1024, "resize" : "fit", "w" : 769 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 769 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 769 }, { "h" : 680, "resize" : "fit", "w" : 511 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/neJxYANj6p" } ], "hashtags" : [ ], @@ -5433,7 +5288,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "QuantumPirate", "protected" : false, "id_str" : "161373868", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/771000388648566784\/2e1IEn5u_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/939944812760924160\/n4mBWk0s_normal.jpg", "id" : 161373868, "verified" : false } @@ -5453,12 +5308,6 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "James Peters", - "screen_name" : "Jameslfc19", - "indices" : [ 0, 11 ], - "id_str" : "204008694", - "id" : 204008694 - }, { "name" : "Paul Haddad", "screen_name" : "tapbot_paul", "indices" : [ 12, 24 ], @@ -5477,7 +5326,7 @@ Grailbird.data.tweets_2013_12 = "id" : 407209600140595200, "in_reply_to_status_id" : 407196873037197312, "created_at" : "2013-12-01 18:08:28 +0000", - "in_reply_to_screen_name" : "Jameslfc19", + "in_reply_to_screen_name" : "JamesPeters98", "in_reply_to_user_id_str" : "204008694", "user" : { "name" : "Sami Samhuri", @@ -5492,12 +5341,6 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "James Peters", - "screen_name" : "Jameslfc19", - "indices" : [ 0, 11 ], - "id_str" : "204008694", - "id" : 204008694 - }, { "name" : "Paul Haddad", "screen_name" : "tapbot_paul", "indices" : [ 12, 24 ], @@ -5516,7 +5359,7 @@ Grailbird.data.tweets_2013_12 = "id" : 407209339057758208, "in_reply_to_status_id" : 407196873037197312, "created_at" : "2013-12-01 18:07:26 +0000", - "in_reply_to_screen_name" : "Jameslfc19", + "in_reply_to_screen_name" : "JamesPeters98", "in_reply_to_user_id_str" : "204008694", "user" : { "name" : "Sami Samhuri", diff --git a/public/tweets/data/js/tweets/2014_01.js b/public/tweets/data/js/tweets/2014_01.js index c794ed4..34542fc 100755 --- a/public/tweets/data/js/tweets/2014_01.js +++ b/public/tweets/data/js/tweets/2014_01.js @@ -126,11 +126,11 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Alex Matchneer", + "name" : "Machty_Sx", "screen_name" : "machty", "indices" : [ 0, 7 ], - "id_str" : "18740111", - "id" : 18740111 + "id_str" : "961332937064157187", + "id" : 961332937064157187 } ], "media" : [ ], "hashtags" : [ ], @@ -144,7 +144,7 @@ Grailbird.data.tweets_2014_01 = "id" : 429412575223103488, "in_reply_to_status_id" : 429403910910930945, "created_at" : "2014-02-01 00:35:10 +0000", - "in_reply_to_screen_name" : "machty", + "in_reply_to_screen_name" : "amatchneer", "in_reply_to_user_id_str" : "18740111", "user" : { "name" : "Sami Samhuri", @@ -198,7 +198,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ryan Block", + "name" : "Ryan", "screen_name" : "ryan", "indices" : [ 3, 8 ], "id_str" : "862681", @@ -220,10 +220,6 @@ Grailbird.data.tweets_2014_01 = "h" : 156, "resize" : "fit", "w" : 409 - }, { - "h" : 156, - "resize" : "fit", - "w" : 409 }, { "h" : 150, "resize" : "crop", @@ -232,7 +228,12 @@ Grailbird.data.tweets_2014_01 = "h" : 156, "resize" : "fit", "w" : 409 + }, { + "h" : 156, + "resize" : "fit", + "w" : 409 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/zrRs4bDRH3" } ], "hashtags" : [ ], @@ -261,10 +262,6 @@ Grailbird.data.tweets_2014_01 = "h" : 156, "resize" : "fit", "w" : 409 - }, { - "h" : 156, - "resize" : "fit", - "w" : 409 }, { "h" : 150, "resize" : "crop", @@ -273,7 +270,12 @@ Grailbird.data.tweets_2014_01 = "h" : 156, "resize" : "fit", "w" : 409 + }, { + "h" : 156, + "resize" : "fit", + "w" : 409 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/zrRs4bDRH3" } ], "hashtags" : [ ], @@ -285,7 +287,7 @@ Grailbird.data.tweets_2014_01 = "id" : 313755123295854592, "created_at" : "2013-03-18 20:53:45 +0000", "user" : { - "name" : "Ryan Block", + "name" : "Ryan", "screen_name" : "ryan", "protected" : false, "id_str" : "862681", @@ -751,67 +753,6 @@ Grailbird.data.tweets_2014_01 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "indices" : [ 3, 14 ], - "id_str" : "14206068", - "id" : 14206068 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 99, 121 ], - "url" : "http:\/\/t.co\/UmCnAJN8E6", - "expanded_url" : "http:\/\/techcrunch.com\/2014\/01\/24\/gmail-glitch-is-causing-thousands-of-emails-to-be-sent-to-one-mans-hotmail-account\/", - "display_url" : "techcrunch.com\/2014\/01\/24\/gma\u2026" - } ] - }, - "geo" : { }, - "id_str" : "426833802631983105", - "text" : "RT @tlrobinson: If you think you have an email problem, just be thankful you\u2019re not David S. Peck: http:\/\/t.co\/UmCnAJN8E6", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 83, 105 ], - "url" : "http:\/\/t.co\/UmCnAJN8E6", - "expanded_url" : "http:\/\/techcrunch.com\/2014\/01\/24\/gmail-glitch-is-causing-thousands-of-emails-to-be-sent-to-one-mans-hotmail-account\/", - "display_url" : "techcrunch.com\/2014\/01\/24\/gma\u2026" - } ] - }, - "geo" : { }, - "id_str" : "426825611978346496", - "text" : "If you think you have an email problem, just be thankful you\u2019re not David S. Peck: http:\/\/t.co\/UmCnAJN8E6", - "id" : 426825611978346496, - "created_at" : "2014-01-24 21:15:30 +0000", - "user" : { - "name" : "tom robinson", - "screen_name" : "tlrobinson", - "protected" : false, - "id_str" : "14206068", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", - "id" : 14206068, - "verified" : false - } - }, - "id" : 426833802631983105, - "created_at" : "2014-01-24 21:48:03 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { @@ -1468,7 +1409,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uA66E", + "name" : "\u23B7", "screen_name" : "viktorklang", "indices" : [ 3, 15 ], "id_str" : "52061552", @@ -1512,7 +1453,7 @@ Grailbird.data.tweets_2014_01 = "in_reply_to_screen_name" : "prasinous", "in_reply_to_user_id_str" : "90640376", "user" : { - "name" : "\uA66E", + "name" : "\u23B7", "screen_name" : "viktorklang", "protected" : false, "id_str" : "52061552", @@ -1685,7 +1626,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } @@ -1915,7 +1856,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "3438295805", "id" : 3438295805 }, { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 69, 76 ], "id_str" : "8526432", @@ -1949,7 +1890,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 54, 61 ], "id_str" : "8526432", @@ -2012,11 +1953,11 @@ Grailbird.data.tweets_2014_01 = "id_str" : "156361232", "id" : 156361232 }, { - "name" : "Alex Matchneer", + "name" : "Machty_Sx", "screen_name" : "machty", "indices" : [ 9, 16 ], - "id_str" : "18740111", - "id" : 18740111 + "id_str" : "961332937064157187", + "id" : 961332937064157187 }, { "name" : "Jo Liss", "screen_name" : "jo_liss", @@ -2079,7 +2020,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "4169781202", "id" : 4169781202 }, { - "name" : "MintySnacks", + "name" : ":EFF:", "screen_name" : "MintySnacks", "indices" : [ 9, 21 ], "id_str" : "1861843507", @@ -2357,7 +2298,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "3140856846", "id" : 3140856846 }, { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 22, 38 ], "id_str" : "15267898", @@ -2395,11 +2336,11 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Alex Matchneer", + "name" : "Machty_Sx", "screen_name" : "machty", "indices" : [ 0, 7 ], - "id_str" : "18740111", - "id" : 18740111 + "id_str" : "961332937064157187", + "id" : 961332937064157187 }, { "name" : "Robert Jackson", "screen_name" : "rwjblue", @@ -2407,7 +2348,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "156361232", "id" : 156361232 }, { - "name" : "we are in hell", + "name" : "bad dream", "screen_name" : "fivetanley", "indices" : [ 17, 28 ], "id_str" : "306497372", @@ -2431,7 +2372,7 @@ Grailbird.data.tweets_2014_01 = "id" : 424752583865942016, "in_reply_to_status_id" : 424751895106695168, "created_at" : "2014-01-19 03:58:02 +0000", - "in_reply_to_screen_name" : "machty", + "in_reply_to_screen_name" : "amatchneer", "in_reply_to_user_id_str" : "18740111", "user" : { "name" : "Sami Samhuri", @@ -2461,6 +2402,10 @@ Grailbird.data.tweets_2014_01 = "id" : 423958089331507200, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BeIzotJCAAADdar.jpg", "sizes" : [ { + "h" : 373, + "resize" : "fit", + "w" : 500 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2476,11 +2421,8 @@ Grailbird.data.tweets_2014_01 = "h" : 373, "resize" : "fit", "w" : 500 - }, { - "h" : 373, - "resize" : "fit", - "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/79secR9BGR" } ], "hashtags" : [ ], @@ -2502,6 +2444,10 @@ Grailbird.data.tweets_2014_01 = "id" : 423958089331507200, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BeIzotJCAAADdar.jpg", "sizes" : [ { + "h" : 373, + "resize" : "fit", + "w" : 500 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2517,11 +2463,8 @@ Grailbird.data.tweets_2014_01 = "h" : 373, "resize" : "fit", "w" : 500 - }, { - "h" : 373, - "resize" : "fit", - "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/79secR9BGR" } ], "hashtags" : [ ], @@ -2590,7 +2533,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2691,7 +2634,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2729,7 +2672,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2762,7 +2705,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2795,7 +2738,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3186,6 +3129,7 @@ Grailbird.data.tweets_2014_01 = "resize" : "fit", "w" : 240 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/jTIx0v7yF3" } ], "hashtags" : [ ], @@ -3227,6 +3171,7 @@ Grailbird.data.tweets_2014_01 = "resize" : "fit", "w" : 240 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/jTIx0v7yF3" } ], "hashtags" : [ ], @@ -3242,7 +3187,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "newrelic", "protected" : false, "id_str" : "15527007", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/879380193017643008\/LX9KWqdb_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925780787122782209\/n777ei4f_normal.jpg", "id" : 15527007, "verified" : true } @@ -3262,7 +3207,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Butt Coin", + "name" : "ButtCohen", "screen_name" : "ButtCoin", "indices" : [ 3, 12 ], "id_str" : "305854715", @@ -3289,11 +3234,11 @@ Grailbird.data.tweets_2014_01 = "id" : 423959384780070913, "created_at" : "2014-01-16 23:26:08 +0000", "user" : { - "name" : "Butt Coin", + "name" : "ButtCohen", "screen_name" : "ButtCoin", "protected" : false, "id_str" : "305854715", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/564828425387401216\/jD-AGhYn_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964212983382421505\/TqoyJDTR_normal.jpg", "id" : 305854715, "verified" : false } @@ -3366,6 +3311,10 @@ Grailbird.data.tweets_2014_01 = "id" : 423571625439547392, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BeDUJi9CUAAXAxm.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 625, "resize" : "fit", "w" : 1032 @@ -3377,15 +3326,12 @@ Grailbird.data.tweets_2014_01 = "h" : 412, "resize" : "fit", "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 625, "resize" : "fit", "w" : 1032 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ERKV4MaY3j" } ], "hashtags" : [ ], @@ -3407,6 +3353,10 @@ Grailbird.data.tweets_2014_01 = "id" : 423571625439547392, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BeDUJi9CUAAXAxm.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 625, "resize" : "fit", "w" : 1032 @@ -3418,15 +3368,12 @@ Grailbird.data.tweets_2014_01 = "h" : 412, "resize" : "fit", "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 625, "resize" : "fit", "w" : 1032 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ERKV4MaY3j" } ], "hashtags" : [ ], @@ -3587,7 +3534,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925763991820836864\/nmUFyJez_normal.jpg", "id" : 36183, "verified" : false } @@ -4172,7 +4119,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay", + "name" : "Action Jay: The New Batch", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -4255,7 +4202,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay", + "name" : "Action Jay: The New Batch", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -4288,7 +4235,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay", + "name" : "Action Jay: The New Batch", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -4321,7 +4268,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay", + "name" : "Action Jay: The New Batch", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -4769,10 +4716,6 @@ Grailbird.data.tweets_2014_01 = "id" : 422016469694558208, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BdtNvkWCMAALutH.jpg", "sizes" : [ { - "h" : 1200, - "resize" : "fit", - "w" : 1052 - }, { "h" : 3072, "resize" : "fit", "w" : 2694 @@ -4784,11 +4727,16 @@ Grailbird.data.tweets_2014_01 = "h" : 680, "resize" : "fit", "w" : 596 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 1052 }, { "h" : 2048, "resize" : "fit", "w" : 1796 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RxfknHjBv8" } ], "hashtags" : [ ], @@ -4810,10 +4758,6 @@ Grailbird.data.tweets_2014_01 = "id" : 422016469694558208, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BdtNvkWCMAALutH.jpg", "sizes" : [ { - "h" : 1200, - "resize" : "fit", - "w" : 1052 - }, { "h" : 3072, "resize" : "fit", "w" : 2694 @@ -4825,11 +4769,16 @@ Grailbird.data.tweets_2014_01 = "h" : 680, "resize" : "fit", "w" : 596 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 1052 }, { "h" : 2048, "resize" : "fit", "w" : 1796 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RxfknHjBv8" } ], "hashtags" : [ ], @@ -4898,7 +4847,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tane Piper", + "name" : "Tane Piper\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74\uDB40\uDC7F\uD83C\uDDF3\uD83C\uDDF1\uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "tanepiper", "indices" : [ 0, 10 ], "id_str" : "20693", @@ -4910,7 +4859,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "815114", "id" : 815114 }, { - "name" : "daddy long legs", + "name" : "jenn schiffer", "screen_name" : "jennschiffer", "indices" : [ 23, 36 ], "id_str" : "12524622", @@ -4949,7 +4898,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "815114", "id" : 815114 }, { - "name" : "daddy long legs", + "name" : "jenn schiffer", "screen_name" : "jennschiffer", "indices" : [ 53, 66 ], "id_str" : "12524622", @@ -4969,7 +4918,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "daddy long legs", + "name" : "jenn schiffer", "screen_name" : "jennschiffer", "indices" : [ 37, 50 ], "id_str" : "12524622", @@ -5088,6 +5037,10 @@ Grailbird.data.tweets_2014_01 = "id" : 421758855769362432, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BdpjcdsCEAA8KJ6.jpg", "sizes" : [ { + "h" : 470, + "resize" : "fit", + "w" : 300 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -5103,11 +5056,8 @@ Grailbird.data.tweets_2014_01 = "h" : 470, "resize" : "fit", "w" : 300 - }, { - "h" : 470, - "resize" : "fit", - "w" : 300 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/TAcjVnHkQZ" } ], "hashtags" : [ ], @@ -5129,6 +5079,10 @@ Grailbird.data.tweets_2014_01 = "id" : 421758855769362432, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BdpjcdsCEAA8KJ6.jpg", "sizes" : [ { + "h" : 470, + "resize" : "fit", + "w" : 300 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -5144,11 +5098,8 @@ Grailbird.data.tweets_2014_01 = "h" : 470, "resize" : "fit", "w" : 300 - }, { - "h" : 470, - "resize" : "fit", - "w" : 300 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/TAcjVnHkQZ" } ], "hashtags" : [ ], @@ -5184,7 +5135,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Felix Gnass", + "name" : "Felix Gnass \uD83D\uDD73\uFE0F\uD83D\uDEB6", "screen_name" : "fgnass", "indices" : [ 0, 7 ], "id_str" : "15208068", @@ -5217,7 +5168,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Felix Gnass", + "name" : "Felix Gnass \uD83D\uDD73\uFE0F\uD83D\uDEB6", "screen_name" : "fgnass", "indices" : [ 3, 10 ], "id_str" : "15208068", @@ -5271,7 +5222,7 @@ Grailbird.data.tweets_2014_01 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Felix Gnass", + "name" : "Felix Gnass \uD83D\uDD73\uFE0F\uD83D\uDEB6", "screen_name" : "fgnass", "protected" : false, "id_str" : "15208068", @@ -5469,7 +5420,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 3, 10 ], "id_str" : "8526432", @@ -5525,7 +5476,7 @@ Grailbird.data.tweets_2014_01 = "id" : 421361927269654529, "created_at" : "2014-01-09 19:24:46 +0000", "user" : { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "protected" : false, "id_str" : "8526432", @@ -5629,7 +5580,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -5649,7 +5600,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Michael Jurewitz \uD83D\uDCCE", + "name" : "Michael Jurewitz", "screen_name" : "Jury", "indices" : [ 3, 8 ], "id_str" : "10754282", @@ -5676,7 +5627,7 @@ Grailbird.data.tweets_2014_01 = "id" : 421029097691947008, "created_at" : "2014-01-08 21:22:13 +0000", "user" : { - "name" : "Michael Jurewitz \uD83D\uDCCE", + "name" : "Michael Jurewitz", "screen_name" : "Jury", "protected" : false, "id_str" : "10754282", @@ -6168,7 +6119,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/836162165442654208\/3o_L9Jnn_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964058293306970112\/pfc-Jpsc_normal.jpg", "id" : 2911221, "verified" : true } @@ -6526,7 +6477,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -6553,7 +6504,7 @@ Grailbird.data.tweets_2014_01 = "id" : 418838732528029696, "created_at" : "2014-01-02 20:18:30 +0000", "user" : { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", diff --git a/public/tweets/data/js/tweets/2014_02.js b/public/tweets/data/js/tweets/2014_02.js index 7e3729f..972683e 100755 --- a/public/tweets/data/js/tweets/2014_02.js +++ b/public/tweets/data/js/tweets/2014_02.js @@ -64,7 +64,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 0, 8 ], "id_str" : "14272162", @@ -292,15 +292,16 @@ Grailbird.data.tweets_2014_02 = "h" : 352, "resize" : "fit", "w" : 541 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 352, "resize" : "fit", "w" : 541 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/8AMBJxl20t" } ], "hashtags" : [ ], @@ -380,7 +381,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "|\\_Juha_\/|", + "name" : "-J-u-h-a-", "screen_name" : "juhasaarinen", "indices" : [ 3, 16 ], "id_str" : "15829574", @@ -402,19 +403,20 @@ Grailbird.data.tweets_2014_02 = "h" : 199, "resize" : "fit", "w" : 640 + }, { + "h" : 199, + "resize" : "fit", + "w" : 640 + }, { + "h" : 199, + "resize" : "fit", + "w" : 640 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 199, - "resize" : "fit", - "w" : 640 - }, { - "h" : 199, - "resize" : "fit", - "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/6XkKZ3yvsH" } ], "hashtags" : [ ], @@ -443,19 +445,20 @@ Grailbird.data.tweets_2014_02 = "h" : 199, "resize" : "fit", "w" : 640 + }, { + "h" : 199, + "resize" : "fit", + "w" : 640 + }, { + "h" : 199, + "resize" : "fit", + "w" : 640 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 199, - "resize" : "fit", - "w" : 640 - }, { - "h" : 199, - "resize" : "fit", - "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/6XkKZ3yvsH" } ], "hashtags" : [ ], @@ -467,11 +470,11 @@ Grailbird.data.tweets_2014_02 = "id" : 439176400696659969, "created_at" : "2014-02-27 23:13:08 +0000", "user" : { - "name" : "|\\_Juha_\/|", + "name" : "-J-u-h-a-", "screen_name" : "juhasaarinen", "protected" : false, "id_str" : "15829574", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918299092547018752\/dpB7TOLK_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/983568291112280064\/0cl734Gj_normal.jpg", "id" : 15829574, "verified" : true } @@ -708,7 +711,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "0x3373706f6f7079", + "name" : "Michelle Tilley \uD83C\uDFCD\uFE0F\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "BinaryMuse", "indices" : [ 0, 11 ], "id_str" : "5511322", @@ -967,7 +970,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "indices" : [ 3, 19 ], "id_str" : "1263967268", @@ -994,11 +997,11 @@ Grailbird.data.tweets_2014_02 = "id" : 438749165267320832, "created_at" : "2014-02-26 18:55:27 +0000", "user" : { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "protected" : false, "id_str" : "1263967268", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3374120487\/e4f509a5ea232cd5b80f9cbac23d9432_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937618982626037760\/SNb7WO0u_normal.jpg", "id" : 1263967268, "verified" : false } @@ -1067,7 +1070,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -1135,11 +1138,11 @@ Grailbird.data.tweets_2014_02 = "in_reply_to_screen_name" : "indutny", "in_reply_to_user_id_str" : "92915570", "user" : { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917536371085950976\/MIuNwAAR_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/966195642191228933\/4BhqRm2w_normal.jpg", "id" : 8038312, "verified" : true } @@ -1386,26 +1389,27 @@ Grailbird.data.tweets_2014_02 = "id" : 437896886658146304, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BhO45fmCIAAj0SK.png", "sizes" : [ { + "h" : 331, + "resize" : "fit", + "w" : 600 + }, { + "h" : 331, + "resize" : "fit", + "w" : 600 + }, { + "h" : 331, + "resize" : "fit", + "w" : 600 + }, { + "h" : 331, + "resize" : "fit", + "w" : 600 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 331, - "resize" : "fit", - "w" : 600 - }, { - "h" : 331, - "resize" : "fit", - "w" : 600 - }, { - "h" : 331, - "resize" : "fit", - "w" : 600 - }, { - "h" : 331, - "resize" : "fit", - "w" : 600 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ap5XXr6W7n" } ], "hashtags" : [ ], @@ -1427,26 +1431,27 @@ Grailbird.data.tweets_2014_02 = "id" : 437896886658146304, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BhO45fmCIAAj0SK.png", "sizes" : [ { + "h" : 331, + "resize" : "fit", + "w" : 600 + }, { + "h" : 331, + "resize" : "fit", + "w" : 600 + }, { + "h" : 331, + "resize" : "fit", + "w" : 600 + }, { + "h" : 331, + "resize" : "fit", + "w" : 600 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 331, - "resize" : "fit", - "w" : 600 - }, { - "h" : 331, - "resize" : "fit", - "w" : 600 - }, { - "h" : 331, - "resize" : "fit", - "w" : 600 - }, { - "h" : 331, - "resize" : "fit", - "w" : 600 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ap5XXr6W7n" } ], "hashtags" : [ ], @@ -1797,7 +1802,7 @@ Grailbird.data.tweets_2014_02 = "screen_name" : "exponentfm", "protected" : false, "id_str" : "1923374760", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/774183158522589185\/irwc6WQd_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/926054514439815168\/9amkV__m_normal.jpg", "id" : 1923374760, "verified" : false } @@ -1916,18 +1921,6 @@ Grailbird.data.tweets_2014_02 = "id" : 436974335106875392, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BhBx17QCAAAYN1W.jpg", "sizes" : [ { - "h" : 668, - "resize" : "fit", - "w" : 500 - }, { - "h" : 668, - "resize" : "fit", - "w" : 500 - }, { - "h" : 668, - "resize" : "fit", - "w" : 500 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1935,7 +1928,20 @@ Grailbird.data.tweets_2014_02 = "h" : 668, "resize" : "fit", "w" : 500 + }, { + "h" : 668, + "resize" : "fit", + "w" : 500 + }, { + "h" : 668, + "resize" : "fit", + "w" : 500 + }, { + "h" : 668, + "resize" : "fit", + "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/J7fDjp6Ozr" } ], "hashtags" : [ ], @@ -1957,18 +1963,6 @@ Grailbird.data.tweets_2014_02 = "id" : 436974335106875392, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BhBx17QCAAAYN1W.jpg", "sizes" : [ { - "h" : 668, - "resize" : "fit", - "w" : 500 - }, { - "h" : 668, - "resize" : "fit", - "w" : 500 - }, { - "h" : 668, - "resize" : "fit", - "w" : 500 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1976,7 +1970,20 @@ Grailbird.data.tweets_2014_02 = "h" : 668, "resize" : "fit", "w" : 500 + }, { + "h" : 668, + "resize" : "fit", + "w" : 500 + }, { + "h" : 668, + "resize" : "fit", + "w" : 500 + }, { + "h" : 668, + "resize" : "fit", + "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/J7fDjp6Ozr" } ], "hashtags" : [ ], @@ -2380,57 +2387,6 @@ Grailbird.data.tweets_2014_02 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "indices" : [ 3, 17 ], - "id_str" : "809685", - "id" : 809685 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "436657252447948800", - "text" : "RT @garybernhardt: just gonna rewrite literally everything in Ruby because everything is too slow, don't mind me, black is white, up is dow\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "436642791813165056", - "text" : "just gonna rewrite literally everything in Ruby because everything is too slow, don't mind me, black is white, up is down, Ruby is fast", - "id" : 436642791813165056, - "created_at" : "2014-02-20 23:25:28 +0000", - "user" : { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "protected" : false, - "id_str" : "809685", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1170938305\/twitter_headshot_normal.png", - "id" : 809685, - "verified" : false - } - }, - "id" : 436657252447948800, - "created_at" : "2014-02-21 00:22:56 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { @@ -2734,7 +2690,7 @@ Grailbird.data.tweets_2014_02 = "screen_name" : "benschwarz", "protected" : false, "id_str" : "14431882", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/890548072509358082\/1UgNSB6W_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/984604774862487552\/hHtGStrF_normal.jpg", "id" : 14431882, "verified" : false } @@ -3037,7 +2993,7 @@ Grailbird.data.tweets_2014_02 = "screen_name" : "tylerhunt", "protected" : false, "id_str" : "4384181", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/178659283\/avatar-color_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/935971771253231622\/cD2RqVkl_normal.jpg", "id" : 4384181, "verified" : false } @@ -3057,7 +3013,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Spooky Anil Dash \uD83C\uDF83", + "name" : "Anil Dash", "screen_name" : "anildash", "indices" : [ 3, 12 ], "id_str" : "36823", @@ -3084,11 +3040,11 @@ Grailbird.data.tweets_2014_02 = "id" : 435547057408212993, "created_at" : "2014-02-17 22:51:25 +0000", "user" : { - "name" : "Spooky Anil Dash \uD83C\uDF83", + "name" : "Anil Dash", "screen_name" : "anildash", "protected" : false, "id_str" : "36823", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915191237338177536\/cZoGK6nh_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964333187328491520\/nPt-GBf5_normal.jpg", "id" : 36823, "verified" : true } @@ -3242,10 +3198,6 @@ Grailbird.data.tweets_2014_02 = "h" : 504, "resize" : "fit", "w" : 500 - }, { - "h" : 504, - "resize" : "fit", - "w" : 500 }, { "h" : 150, "resize" : "crop", @@ -3258,7 +3210,12 @@ Grailbird.data.tweets_2014_02 = "h" : 504, "resize" : "fit", "w" : 500 + }, { + "h" : 504, + "resize" : "fit", + "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ylFLR107Pk" } ], "hashtags" : [ ], @@ -3283,10 +3240,6 @@ Grailbird.data.tweets_2014_02 = "h" : 504, "resize" : "fit", "w" : 500 - }, { - "h" : 504, - "resize" : "fit", - "w" : 500 }, { "h" : 150, "resize" : "crop", @@ -3299,7 +3252,12 @@ Grailbird.data.tweets_2014_02 = "h" : 504, "resize" : "fit", "w" : 500 + }, { + "h" : 504, + "resize" : "fit", + "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ylFLR107Pk" } ], "hashtags" : [ ], @@ -4184,10 +4142,6 @@ Grailbird.data.tweets_2014_02 = "h" : 407, "resize" : "fit", "w" : 443 - }, { - "h" : 407, - "resize" : "fit", - "w" : 443 }, { "h" : 150, "resize" : "crop", @@ -4200,7 +4154,12 @@ Grailbird.data.tweets_2014_02 = "h" : 407, "resize" : "fit", "w" : 443 + }, { + "h" : 407, + "resize" : "fit", + "w" : 443 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/6DmZG3cZBs" } ], "hashtags" : [ ], @@ -4225,10 +4184,6 @@ Grailbird.data.tweets_2014_02 = "h" : 407, "resize" : "fit", "w" : 443 - }, { - "h" : 407, - "resize" : "fit", - "w" : 443 }, { "h" : 150, "resize" : "crop", @@ -4241,7 +4196,12 @@ Grailbird.data.tweets_2014_02 = "h" : 407, "resize" : "fit", "w" : 443 + }, { + "h" : 407, + "resize" : "fit", + "w" : 443 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/6DmZG3cZBs" } ], "hashtags" : [ ], @@ -4302,22 +4262,23 @@ Grailbird.data.tweets_2014_02 = "resize" : "fit", "w" : 1296 }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { - "h" : 900, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 972, "resize" : "fit", "w" : 1296 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 900, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/693pMHmZFX" } ], "hashtags" : [ ], @@ -4349,22 +4310,23 @@ Grailbird.data.tweets_2014_02 = "resize" : "fit", "w" : 1296 }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { - "h" : 900, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 972, "resize" : "fit", "w" : 1296 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 900, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/693pMHmZFX" } ], "hashtags" : [ ], @@ -4680,22 +4642,23 @@ Grailbird.data.tweets_2014_02 = "resize" : "fit", "w" : 740 }, { - "h" : 463, + "h" : 504, "resize" : "fit", - "w" : 680 + "w" : 740 + }, { + "h" : 504, + "resize" : "fit", + "w" : 740 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 504, + "h" : 463, "resize" : "fit", - "w" : 740 - }, { - "h" : 504, - "resize" : "fit", - "w" : 740 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/aqlxzTEwhq" } ], "hashtags" : [ ], @@ -4721,22 +4684,23 @@ Grailbird.data.tweets_2014_02 = "resize" : "fit", "w" : 740 }, { - "h" : 463, + "h" : 504, "resize" : "fit", - "w" : 680 + "w" : 740 + }, { + "h" : 504, + "resize" : "fit", + "w" : 740 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 504, + "h" : 463, "resize" : "fit", - "w" : 740 - }, { - "h" : 504, - "resize" : "fit", - "w" : 740 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/aqlxzTEwhq" } ], "hashtags" : [ ], @@ -4772,11 +4736,11 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Alex Matchneer", + "name" : "Machty_Sx", "screen_name" : "machty", "indices" : [ 0, 7 ], - "id_str" : "18740111", - "id" : 18740111 + "id_str" : "961332937064157187", + "id" : 961332937064157187 } ], "media" : [ ], "hashtags" : [ ], @@ -4790,7 +4754,7 @@ Grailbird.data.tweets_2014_02 = "id" : 433772429232459776, "in_reply_to_status_id" : 433762468880330752, "created_at" : "2014-02-13 01:19:40 +0000", - "in_reply_to_screen_name" : "machty", + "in_reply_to_screen_name" : "amatchneer", "in_reply_to_user_id_str" : "18740111", "user" : { "name" : "Sami Samhuri", @@ -5325,26 +5289,27 @@ Grailbird.data.tweets_2014_02 = "id" : 433362625284407296, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BgOdAvsCAAAah9I.png", "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 930, + "resize" : "fit", + "w" : 1030 + }, { + "h" : 930, + "resize" : "fit", + "w" : 1030 + }, { + "h" : 930, + "resize" : "fit", + "w" : 1030 }, { "h" : 614, "resize" : "fit", "w" : 680 }, { - "h" : 930, - "resize" : "fit", - "w" : 1030 - }, { - "h" : 930, - "resize" : "fit", - "w" : 1030 - }, { - "h" : 930, - "resize" : "fit", - "w" : 1030 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/DiqYFKSal6" } ], "hashtags" : [ ], @@ -5366,26 +5331,27 @@ Grailbird.data.tweets_2014_02 = "id" : 433362625284407296, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BgOdAvsCAAAah9I.png", "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 930, + "resize" : "fit", + "w" : 1030 + }, { + "h" : 930, + "resize" : "fit", + "w" : 1030 + }, { + "h" : 930, + "resize" : "fit", + "w" : 1030 }, { "h" : 614, "resize" : "fit", "w" : 680 }, { - "h" : 930, - "resize" : "fit", - "w" : 1030 - }, { - "h" : 930, - "resize" : "fit", - "w" : 1030 - }, { - "h" : 930, - "resize" : "fit", - "w" : 1030 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/DiqYFKSal6" } ], "hashtags" : [ ], @@ -5915,7 +5881,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "indices" : [ 3, 19 ], "id_str" : "1263967268", @@ -5942,11 +5908,11 @@ Grailbird.data.tweets_2014_02 = "id" : 431946978751021056, "created_at" : "2014-02-08 00:25:59 +0000", "user" : { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "protected" : false, "id_str" : "1263967268", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3374120487\/e4f509a5ea232cd5b80f9cbac23d9432_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937618982626037760\/SNb7WO0u_normal.jpg", "id" : 1263967268, "verified" : false } @@ -6439,7 +6405,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "88489441", "id" : 88489441 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 24, 38 ], "id_str" : "29255412", @@ -6700,7 +6666,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brian Moeskau", + "name" : "Brian", "screen_name" : "bmoeskau", "indices" : [ 0, 9 ], "id_str" : "166403387", @@ -6935,7 +6901,7 @@ Grailbird.data.tweets_2014_02 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brian Moeskau", + "name" : "Brian", "screen_name" : "bmoeskau", "indices" : [ 0, 9 ], "id_str" : "166403387", @@ -7083,7 +7049,7 @@ Grailbird.data.tweets_2014_02 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -7116,22 +7082,23 @@ Grailbird.data.tweets_2014_02 = "resize" : "fit", "w" : 577 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 1024, + "resize" : "fit", + "w" : 577 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 577 }, { "h" : 680, "resize" : "fit", "w" : 383 }, { - "h" : 1024, - "resize" : "fit", - "w" : 577 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 577 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/M8XwCrY6st" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2014_03.js b/public/tweets/data/js/tweets/2014_03.js index a9232f7..08d66bf 100755 --- a/public/tweets/data/js/tweets/2014_03.js +++ b/public/tweets/data/js/tweets/2014_03.js @@ -471,23 +471,24 @@ Grailbird.data.tweets_2014_03 = "h" : 319, "resize" : "fit", "w" : 730 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 319, - "resize" : "fit", - "w" : 730 - }, { - "h" : 319, - "resize" : "fit", - "w" : 730 }, { "h" : 297, "resize" : "fit", "w" : 680 + }, { + "h" : 319, + "resize" : "fit", + "w" : 730 + }, { + "h" : 319, + "resize" : "fit", + "w" : 730 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/5ApJmuAcJT" } ], "hashtags" : [ ], @@ -522,23 +523,24 @@ Grailbird.data.tweets_2014_03 = "h" : 319, "resize" : "fit", "w" : 730 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 319, - "resize" : "fit", - "w" : 730 - }, { - "h" : 319, - "resize" : "fit", - "w" : 730 }, { "h" : 297, "resize" : "fit", "w" : 680 + }, { + "h" : 319, + "resize" : "fit", + "w" : 730 + }, { + "h" : 319, + "resize" : "fit", + "w" : 730 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/5ApJmuAcJT" } ], "hashtags" : [ ], @@ -584,7 +586,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "fitzgenerational gc", + "name" : "fitzgen", "screen_name" : "fitzgen", "indices" : [ 3, 11 ], "id_str" : "182855710", @@ -627,11 +629,11 @@ Grailbird.data.tweets_2014_03 = "id" : 449641605461331968, "created_at" : "2014-03-28 20:18:07 +0000", "user" : { - "name" : "fitzgenerational gc", + "name" : "fitzgen", "screen_name" : "fitzgen", "protected" : false, "id_str" : "182855710", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000737593631\/db1b2bc8eb1a2332abfe059a59d2164d_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964574996386398209\/SF2y-pJB_normal.jpg", "id" : 182855710, "verified" : false } @@ -730,7 +732,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "108814849", "id" : 108814849 }, { - "name" : "systemicd", + "name" : "tef's locked account", "screen_name" : "tef", "indices" : [ 12, 16 ], "id_str" : "16681276", @@ -763,7 +765,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "systemicd", + "name" : "tef's locked account", "screen_name" : "tef", "indices" : [ 0, 4 ], "id_str" : "16681276", @@ -1948,7 +1950,7 @@ Grailbird.data.tweets_2014_03 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -2007,7 +2009,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Eric Allam", + "name" : "Eric Allam \u26A1\uFE0F", "screen_name" : "eallam", "indices" : [ 3, 10 ], "id_str" : "46783", @@ -2051,7 +2053,7 @@ Grailbird.data.tweets_2014_03 = "in_reply_to_screen_name" : "marcoarment", "in_reply_to_user_id_str" : "14231571", "user" : { - "name" : "Eric Allam", + "name" : "Eric Allam \u26A1\uFE0F", "screen_name" : "eallam", "protected" : false, "id_str" : "46783", @@ -2130,12 +2132,6 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Isaac Cambron", - "screen_name" : "icambron", - "indices" : [ 0, 9 ], - "id_str" : "171695675", - "id" : 171695675 - }, { "name" : "Reginald Braithwaite", "screen_name" : "raganwald", "indices" : [ 10, 20 ], @@ -2146,16 +2142,11 @@ Grailbird.data.tweets_2014_03 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "448881528689684480", "geo" : { }, "id_str" : "448894677538729984", - "in_reply_to_user_id" : 171695675, "text" : "@icambron @raganwald But I like your perspective on it. I don\u2019t understand how people see it as anything but a donation (even with rewards).", "id" : 448894677538729984, - "in_reply_to_status_id" : 448881528689684480, "created_at" : "2014-03-26 18:50:05 +0000", - "in_reply_to_screen_name" : "icambron", - "in_reply_to_user_id_str" : "171695675", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -2169,12 +2160,6 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Isaac Cambron", - "screen_name" : "icambron", - "indices" : [ 0, 9 ], - "id_str" : "171695675", - "id" : 171695675 - }, { "name" : "Reginald Braithwaite", "screen_name" : "raganwald", "indices" : [ 10, 20 ], @@ -2185,16 +2170,11 @@ Grailbird.data.tweets_2014_03 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "448881528689684480", "geo" : { }, "id_str" : "448894481706651648", - "in_reply_to_user_id" : 171695675, "text" : "@icambron @raganwald One difference is that people feel that if they don\u2019t back the Kickstarter campaign then it may never exist at all.", "id" : 448894481706651648, - "in_reply_to_status_id" : 448881528689684480, "created_at" : "2014-03-26 18:49:19 +0000", - "in_reply_to_screen_name" : "icambron", - "in_reply_to_user_id_str" : "171695675", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -2259,7 +2239,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "mat honan", + "name" : "Mat Honan \uD83D\uDCF0", "screen_name" : "mat", "indices" : [ 0, 4 ], "id_str" : "11113", @@ -2478,7 +2458,7 @@ Grailbird.data.tweets_2014_03 = "screen_name" : "dhh", "protected" : false, "id_str" : "14561327", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2556368541\/alng5gtlmjhrdlr3qxqv_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/975876868455809024\/eK7mDppU_normal.jpg", "id" : 14561327, "verified" : true } @@ -2939,7 +2919,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2972,7 +2952,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -3868,7 +3848,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "3140856846", "id" : 3140856846 }, { - "name" : "U bum", + "name" : "MD", "screen_name" : "drance", "indices" : [ 10, 17 ], "id_str" : "7440462", @@ -3907,7 +3887,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "3140856846", "id" : 3140856846 }, { - "name" : "U bum", + "name" : "MD", "screen_name" : "drance", "indices" : [ 10, 17 ], "id_str" : "7440462", @@ -4008,6 +3988,7 @@ Grailbird.data.tweets_2014_03 = "resize" : "fit", "w" : 654 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/MqGLd7AhoE" } ], "hashtags" : [ ], @@ -4054,6 +4035,7 @@ Grailbird.data.tweets_2014_03 = "resize" : "fit", "w" : 654 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/MqGLd7AhoE" } ], "hashtags" : [ ], @@ -4141,67 +4123,6 @@ Grailbird.data.tweets_2014_03 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Josh Helfferich", - "screen_name" : "JoshHelfferich", - "indices" : [ 3, 18 ], - "id_str" : "563200400", - "id" : 563200400 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 80, 102 ], - "url" : "http:\/\/t.co\/xBJdcsdAuz", - "expanded_url" : "http:\/\/www.youtube.com\/watch?v=frjaQ17yAww", - "display_url" : "youtube.com\/watch?v=frjaQ1\u2026" - } ] - }, - "geo" : { }, - "id_str" : "444647986270699520", - "text" : "RT @JoshHelfferich: Hipsters at SXSW professing to love bands that don't exist: http:\/\/t.co\/xBJdcsdAuz", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 60, 82 ], - "url" : "http:\/\/t.co\/xBJdcsdAuz", - "expanded_url" : "http:\/\/www.youtube.com\/watch?v=frjaQ17yAww", - "display_url" : "youtube.com\/watch?v=frjaQ1\u2026" - } ] - }, - "geo" : { }, - "id_str" : "444612377254719488", - "text" : "Hipsters at SXSW professing to love bands that don't exist: http:\/\/t.co\/xBJdcsdAuz", - "id" : 444612377254719488, - "created_at" : "2014-03-14 23:13:45 +0000", - "user" : { - "name" : "Josh Helfferich", - "screen_name" : "JoshHelfferich", - "protected" : false, - "id_str" : "563200400", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/501786728563093504\/H7lzbmtW_normal.jpeg", - "id" : 563200400, - "verified" : false - } - }, - "id" : 444647986270699520, - "created_at" : "2014-03-15 01:35:15 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { @@ -4634,10 +4555,6 @@ Grailbird.data.tweets_2014_03 = "id" : 444452635454631936, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BisDUS_CcAAhM3U.jpg", "sizes" : [ { - "h" : 264, - "resize" : "fit", - "w" : 400 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4653,7 +4570,12 @@ Grailbird.data.tweets_2014_03 = "h" : 264, "resize" : "fit", "w" : 400 + }, { + "h" : 264, + "resize" : "fit", + "w" : 400 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Av0Sv27af7" } ], "hashtags" : [ ], @@ -4675,10 +4597,6 @@ Grailbird.data.tweets_2014_03 = "id" : 444452635454631936, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BisDUS_CcAAhM3U.jpg", "sizes" : [ { - "h" : 264, - "resize" : "fit", - "w" : 400 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4694,7 +4612,12 @@ Grailbird.data.tweets_2014_03 = "h" : 264, "resize" : "fit", "w" : 400 + }, { + "h" : 264, + "resize" : "fit", + "w" : 400 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Av0Sv27af7" } ], "hashtags" : [ ], @@ -4930,7 +4853,7 @@ Grailbird.data.tweets_2014_03 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -5003,7 +4926,7 @@ Grailbird.data.tweets_2014_03 = "screen_name" : "dhh", "protected" : false, "id_str" : "14561327", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2556368541\/alng5gtlmjhrdlr3qxqv_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/975876868455809024\/eK7mDppU_normal.jpg", "id" : 14561327, "verified" : true } @@ -5632,7 +5555,7 @@ Grailbird.data.tweets_2014_03 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -5652,13 +5575,13 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Glenn Fleishman \uD83D\uDC4B\uD83D\uDEA8\uD83D\uDE91", + "name" : "Glenn Fleishman", "screen_name" : "GlennF", "indices" : [ 0, 7 ], "id_str" : "8315692", "id" : 8315692 }, { - "name" : "The Jennilator\uD83C\uDF83", + "name" : "Jenni Leder\uD83D\uDC69\uD83C\uDFFB\u200D\uD83C\uDFA4", "screen_name" : "thoughtbrain", "indices" : [ 8, 21 ], "id_str" : "14303235", @@ -5703,13 +5626,13 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Glenn Fleishman \uD83D\uDC4B\uD83D\uDEA8\uD83D\uDE91", + "name" : "Glenn Fleishman", "screen_name" : "GlennF", "indices" : [ 0, 7 ], "id_str" : "8315692", "id" : 8315692 }, { - "name" : "The Jennilator\uD83C\uDF83", + "name" : "Jenni Leder\uD83D\uDC69\uD83C\uDFFB\u200D\uD83C\uDFA4", "screen_name" : "thoughtbrain", "indices" : [ 8, 21 ], "id_str" : "14303235", @@ -6030,6 +5953,10 @@ Grailbird.data.tweets_2014_03 = "id" : 442813726324838400, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BiUwvOtCUAAuxO6.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 1024, "resize" : "fit", "w" : 577 @@ -6041,15 +5968,12 @@ Grailbird.data.tweets_2014_03 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/YpV9EEd18i" } ], "hashtags" : [ ], @@ -6099,6 +6023,10 @@ Grailbird.data.tweets_2014_03 = "id" : 442751481234464768, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BiT4IFrCIAAsJXi.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 1024, "resize" : "fit", "w" : 577 @@ -6110,15 +6038,12 @@ Grailbird.data.tweets_2014_03 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/GCdL72YSKO" } ], "hashtags" : [ ], @@ -6498,7 +6423,7 @@ Grailbird.data.tweets_2014_03 = "screen_name" : "mraleph", "protected" : false, "id_str" : "53010195", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/428865653903081472\/XqtZKTVu_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961923701641039872\/TWwOK7mW_normal.jpg", "id" : 53010195, "verified" : false } @@ -6668,14 +6593,6 @@ Grailbird.data.tweets_2014_03 = "h" : 1052, "resize" : "fit", "w" : 1564 - }, { - "h" : 807, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 457, "resize" : "fit", @@ -6684,7 +6601,16 @@ Grailbird.data.tweets_2014_03 = "h" : 1052, "resize" : "fit", "w" : 1564 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 807, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/GjKYJZBYZi" } ], "hashtags" : [ ], @@ -6715,14 +6641,6 @@ Grailbird.data.tweets_2014_03 = "h" : 1052, "resize" : "fit", "w" : 1564 - }, { - "h" : 807, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 457, "resize" : "fit", @@ -6731,7 +6649,16 @@ Grailbird.data.tweets_2014_03 = "h" : 1052, "resize" : "fit", "w" : 1564 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 807, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/GjKYJZBYZi" } ], "hashtags" : [ ], @@ -7224,7 +7151,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "1451761", "id" : 1451761 }, { - "name" : "technomancy", + "name" : "@technomancy@icosahedron.website", "screen_name" : "technomancy", "indices" : [ 112, 124 ], "id_str" : "6264792", @@ -7241,7 +7168,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "technomancy", + "name" : "@technomancy@icosahedron.website", "screen_name" : "technomancy", "indices" : [ 95, 107 ], "id_str" : "6264792", @@ -7286,13 +7213,13 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Spooky Mathie \uD83D\uDCCE", + "name" : "Michael Brown \uD83D\uDCCE", "screen_name" : "Supermathie", "indices" : [ 3, 15 ], "id_str" : "17052596", "id" : 17052596 }, { - "name" : "Melissa \uD83D\uDD14\uD83D\uDCD6\uD83D\uDD6F", + "name" : "Melissa \uD83D\uDCAB", "screen_name" : "0xabad1dea", "indices" : [ 18, 29 ], "id_str" : "126030998", @@ -7309,7 +7236,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/backtoblaq.com\" rel=\"nofollow\"\u003EBlaq for BlackBerry\u00AE 10\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Melissa \uD83D\uDD14\uD83D\uDCD6\uD83D\uDD6F", + "name" : "Melissa \uD83D\uDCAB", "screen_name" : "0xabad1dea", "indices" : [ 1, 12 ], "id_str" : "126030998", @@ -7330,11 +7257,11 @@ Grailbird.data.tweets_2014_03 = "in_reply_to_screen_name" : "0xabad1dea", "in_reply_to_user_id_str" : "126030998", "user" : { - "name" : "Spooky Mathie \uD83D\uDCCE", + "name" : "Michael Brown \uD83D\uDCCE", "screen_name" : "Supermathie", "protected" : false, "id_str" : "17052596", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/791747220622209024\/aD5ZdRo0_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/957439897433976832\/hnVkgMWI_normal.jpg", "id" : 17052596, "verified" : false } @@ -7764,7 +7691,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "J\u1D07\u0280\u1D07\u1D0Dy D\u1D00\u1D07\u0280", + "name" : "Jeremy Daer", "screen_name" : "bitsweat", "indices" : [ 0, 9 ], "id_str" : "9462972", @@ -7803,7 +7730,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "J\u1D07\u0280\u1D07\u1D0Dy D\u1D00\u1D07\u0280", + "name" : "Jeremy Daer", "screen_name" : "bitsweat", "indices" : [ 3, 12 ], "id_str" : "9462972", @@ -7840,7 +7767,7 @@ Grailbird.data.tweets_2014_03 = "id" : 440647299165745152, "created_at" : "2014-03-04 00:37:57 +0000", "user" : { - "name" : "J\u1D07\u0280\u1D07\u1D0Dy D\u1D00\u1D07\u0280", + "name" : "Jeremy Daer", "screen_name" : "bitsweat", "protected" : false, "id_str" : "9462972", @@ -7864,7 +7791,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "indices" : [ 3, 19 ], "id_str" : "1263967268", @@ -7891,11 +7818,11 @@ Grailbird.data.tweets_2014_03 = "id" : 440586112579284992, "created_at" : "2014-03-03 20:34:49 +0000", "user" : { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "protected" : false, "id_str" : "1263967268", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3374120487\/e4f509a5ea232cd5b80f9cbac23d9432_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937618982626037760\/SNb7WO0u_normal.jpg", "id" : 1263967268, "verified" : false } @@ -7992,7 +7919,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "15816595", "id" : 15816595 }, { - "name" : "U bum", + "name" : "MD", "screen_name" : "drance", "indices" : [ 13, 20 ], "id_str" : "7440462", @@ -8025,7 +7952,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 3, 15 ], "id_str" : "6927562", @@ -8052,11 +7979,11 @@ Grailbird.data.tweets_2014_03 = "id" : 439973109341224961, "created_at" : "2014-03-02 03:58:58 +0000", "user" : { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918433182906830848\/NwsKygmV_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/934619752768647168\/4ixrnv8S_normal.jpg", "id" : 6927562, "verified" : true } @@ -8354,7 +8281,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -8399,7 +8326,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -8444,7 +8371,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -8489,7 +8416,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -8539,7 +8466,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "isaacs \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", diff --git a/public/tweets/data/js/tweets/2014_04.js b/public/tweets/data/js/tweets/2014_04.js index 6c4c243..f1a4523 100755 --- a/public/tweets/data/js/tweets/2014_04.js +++ b/public/tweets/data/js/tweets/2014_04.js @@ -6,8 +6,8 @@ Grailbird.data.tweets_2014_04 = "name" : "Mashable Tech", "screen_name" : "mashabletech", "indices" : [ 42, 55 ], - "id_str" : "112243365", - "id" : 112243365 + "id_str" : "958743175383998464", + "id" : 958743175383998464 } ], "media" : [ ], "hashtags" : [ ], @@ -337,10 +337,6 @@ Grailbird.data.tweets_2014_04 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 768, "resize" : "fit", @@ -353,7 +349,12 @@ Grailbird.data.tweets_2014_04 = "h" : 510, "resize" : "fit", "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/6yz4y5uiJ6" } ], "hashtags" : [ ], @@ -419,26 +420,27 @@ Grailbird.data.tweets_2014_04 = "id" : 461332658794942464, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bmb7m-LCUAAW6hV.jpg", "sizes" : [ { - "h" : 1840, - "resize" : "fit", - "w" : 1439 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 680, + "h" : 1200, "resize" : "fit", - "w" : 532 + "w" : 938 }, { "h" : 1840, "resize" : "fit", "w" : 1439 }, { - "h" : 1200, + "h" : 1840, "resize" : "fit", - "w" : 938 + "w" : 1439 + }, { + "h" : 680, + "resize" : "fit", + "w" : 532 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Sh0xYcTXIx" } ], "hashtags" : [ { @@ -463,26 +465,27 @@ Grailbird.data.tweets_2014_04 = "id" : 461332658794942464, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bmb7m-LCUAAW6hV.jpg", "sizes" : [ { - "h" : 1840, - "resize" : "fit", - "w" : 1439 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 680, + "h" : 1200, "resize" : "fit", - "w" : 532 + "w" : 938 }, { "h" : 1840, "resize" : "fit", "w" : 1439 }, { - "h" : 1200, + "h" : 1840, "resize" : "fit", - "w" : 938 + "w" : 1439 + }, { + "h" : 680, + "resize" : "fit", + "w" : 532 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Sh0xYcTXIx" } ], "hashtags" : [ { @@ -501,7 +504,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "KarynStepien", "protected" : false, "id_str" : "15954961", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903641453246779393\/e2nvAeoR_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/979325330975473665\/qJqncJaW_normal.jpg", "id" : 15954961, "verified" : false } @@ -609,26 +612,27 @@ Grailbird.data.tweets_2014_04 = "id" : 461331186627780608, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bmb6RR7CIAAicFF.jpg", "sizes" : [ { - "h" : 800, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 453, "resize" : "fit", "w" : 680 + }, { + "h" : 800, + "resize" : "fit", + "w" : 1200 }, { "h" : 1365, "resize" : "fit", "w" : 2048 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 1365, "resize" : "fit", "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/tG5THAbTLt" } ], "hashtags" : [ { @@ -656,26 +660,27 @@ Grailbird.data.tweets_2014_04 = "id" : 461331186627780608, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bmb6RR7CIAAicFF.jpg", "sizes" : [ { - "h" : 800, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 453, "resize" : "fit", "w" : 680 + }, { + "h" : 800, + "resize" : "fit", + "w" : 1200 }, { "h" : 1365, "resize" : "fit", "w" : 2048 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 1365, "resize" : "fit", "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/tG5THAbTLt" } ], "hashtags" : [ { @@ -697,7 +702,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "KarynStepien", "protected" : false, "id_str" : "15954961", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903641453246779393\/e2nvAeoR_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/979325330975473665\/qJqncJaW_normal.jpg", "id" : 15954961, "verified" : false } @@ -754,10 +759,6 @@ Grailbird.data.tweets_2014_04 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 768, "resize" : "fit", @@ -770,7 +771,12 @@ Grailbird.data.tweets_2014_04 = "h" : 510, "resize" : "fit", "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Hc6jJAWUWm" } ], "hashtags" : [ ], @@ -913,7 +919,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "dhh", "protected" : false, "id_str" : "14561327", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2556368541\/alng5gtlmjhrdlr3qxqv_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/975876868455809024\/eK7mDppU_normal.jpg", "id" : 14561327, "verified" : true } @@ -964,7 +970,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "dhh", "protected" : false, "id_str" : "14561327", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2556368541\/alng5gtlmjhrdlr3qxqv_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/975876868455809024\/eK7mDppU_normal.jpg", "id" : 14561327, "verified" : true } @@ -1011,6 +1017,10 @@ Grailbird.data.tweets_2014_04 = "id" : 460929898563915777, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmWNTPZCUAEVhvg.png", "sizes" : [ { + "h" : 1583, + "resize" : "fit", + "w" : 2048 + }, { "h" : 927, "resize" : "fit", "w" : 1200 @@ -1018,19 +1028,16 @@ Grailbird.data.tweets_2014_04 = "h" : 525, "resize" : "fit", "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1583, - "resize" : "fit", - "w" : 2048 }, { "h" : 2550, "resize" : "fit", "w" : 3300 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/esTSCPzw9U" } ], "hashtags" : [ ], @@ -1064,6 +1071,10 @@ Grailbird.data.tweets_2014_04 = "id" : 460929898563915777, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmWNTPZCUAEVhvg.png", "sizes" : [ { + "h" : 1583, + "resize" : "fit", + "w" : 2048 + }, { "h" : 927, "resize" : "fit", "w" : 1200 @@ -1071,19 +1082,16 @@ Grailbird.data.tweets_2014_04 = "h" : 525, "resize" : "fit", "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1583, - "resize" : "fit", - "w" : 2048 }, { "h" : 2550, "resize" : "fit", "w" : 3300 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/esTSCPzw9U" } ], "hashtags" : [ ], @@ -1104,7 +1112,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "irwindigital", "protected" : false, "id_str" : "19579586", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1828033914\/jirwin_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/980685201427726337\/BUaC9E0W_normal.jpg", "id" : 19579586, "verified" : false } @@ -1207,6 +1215,10 @@ Grailbird.data.tweets_2014_04 = "id" : 460910048470773760, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmV7P0CCMAArDfR.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 1024, "resize" : "fit", "w" : 577 @@ -1218,15 +1230,12 @@ Grailbird.data.tweets_2014_04 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/mgHf9wUXw4" } ], "hashtags" : [ ], @@ -1338,6 +1347,14 @@ Grailbird.data.tweets_2014_04 = "id" : 460812301386649600, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmUiWLxIEAAwE6j.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { "h" : 1200, "resize" : "fit", "w" : 900 @@ -1345,19 +1362,12 @@ Grailbird.data.tweets_2014_04 = "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 680, - "resize" : "fit", - "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/JXVOiU8Ghm" } ], "hashtags" : [ { @@ -1662,26 +1672,27 @@ Grailbird.data.tweets_2014_04 = "id" : 460067558708621312, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmJ9AdGCMAAN2c7.png", "sizes" : [ { + "h" : 244, + "resize" : "fit", + "w" : 756 + }, { + "h" : 244, + "resize" : "fit", + "w" : 756 + }, { + "h" : 244, + "resize" : "fit", + "w" : 756 + }, { "h" : 219, "resize" : "fit", "w" : 680 - }, { - "h" : 244, - "resize" : "fit", - "w" : 756 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 244, - "resize" : "fit", - "w" : 756 - }, { - "h" : 244, - "resize" : "fit", - "w" : 756 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xHjZYWKbG5" } ], "hashtags" : [ ], @@ -1703,26 +1714,27 @@ Grailbird.data.tweets_2014_04 = "id" : 460067558708621312, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmJ9AdGCMAAN2c7.png", "sizes" : [ { + "h" : 244, + "resize" : "fit", + "w" : 756 + }, { + "h" : 244, + "resize" : "fit", + "w" : 756 + }, { + "h" : 244, + "resize" : "fit", + "w" : 756 + }, { "h" : 219, "resize" : "fit", "w" : 680 - }, { - "h" : 244, - "resize" : "fit", - "w" : 756 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 244, - "resize" : "fit", - "w" : 756 - }, { - "h" : 244, - "resize" : "fit", - "w" : 756 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xHjZYWKbG5" } ], "hashtags" : [ ], @@ -1757,13 +1769,7 @@ Grailbird.data.tweets_2014_04 = }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 0, 7 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -1856,12 +1862,6 @@ Grailbird.data.tweets_2014_04 = "indices" : [ 0, 15 ], "id_str" : "335991063", "id" : 335991063 - }, { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 16, 23 ], - "id_str" : "3221374703", - "id" : 3221374703 } ], "media" : [ ], "hashtags" : [ ], @@ -2335,7 +2335,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "rexytseng", "protected" : false, "id_str" : "128721761", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/835042288518774784\/BqecR76J_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/967562540585594881\/GLYYO0Xt_normal.jpg", "id" : 128721761, "verified" : false } @@ -2398,10 +2398,6 @@ Grailbird.data.tweets_2014_04 = "id" : 459735665744162816, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmFPJvdCMAAyqCj.jpg", "sizes" : [ { - "h" : 392, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2417,7 +2413,12 @@ Grailbird.data.tweets_2014_04 = "h" : 646, "resize" : "fit", "w" : 1120 + }, { + "h" : 392, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/KSYCjVXOlA" } ], "hashtags" : [ ], @@ -2438,7 +2439,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "NewsWhip", "protected" : false, "id_str" : "132573995", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/875726528654565377\/7-YG8dYM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/926465410563686400\/24CeqDP1_normal.jpg", "id" : 132573995, "verified" : false } @@ -2540,23 +2541,24 @@ Grailbird.data.tweets_2014_04 = "h" : 864, "resize" : "fit", "w" : 1218 + }, { + "h" : 482, + "resize" : "fit", + "w" : 680 }, { "h" : 851, "resize" : "fit", "w" : 1200 - }, { - "h" : 864, - "resize" : "fit", - "w" : 1218 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 482, + "h" : 864, "resize" : "fit", - "w" : 680 + "w" : 1218 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/wds6zL0ulx" } ], "hashtags" : [ ], @@ -2572,7 +2574,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "paul_irish", "protected" : false, "id_str" : "1671811", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/420826194083213312\/CP1RmLa3_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972186419274776576\/LaJS_MKO_normal.jpg", "id" : 1671811, "verified" : false } @@ -2687,12 +2689,6 @@ Grailbird.data.tweets_2014_04 = "indices" : [ 71, 79 ], "id_str" : "325814484", "id" : 325814484 - }, { - "name" : "Janie Larson", - "screen_name" : "picturelife", - "indices" : [ 91, 103 ], - "id_str" : "1489526450", - "id" : 1489526450 } ], "media" : [ ], "hashtags" : [ ], @@ -2742,26 +2738,27 @@ Grailbird.data.tweets_2014_04 = "id" : 459132340480909312, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bl8qbltCIAAeVIx.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/LmxQ8je8iX" } ], "hashtags" : [ ], @@ -2780,7 +2777,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/836162165442654208\/3o_L9Jnn_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964058293306970112\/pfc-Jpsc_normal.jpg", "id" : 2911221, "verified" : true } @@ -2882,10 +2879,6 @@ Grailbird.data.tweets_2014_04 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 }, { "h" : 150, "resize" : "crop", @@ -2898,7 +2891,12 @@ Grailbird.data.tweets_2014_04 = "h" : 2448, "resize" : "fit", "w" : 3264 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/IHOKGauBU3" } ], "hashtags" : [ ], @@ -2928,10 +2926,6 @@ Grailbird.data.tweets_2014_04 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 }, { "h" : 150, "resize" : "crop", @@ -2944,7 +2938,12 @@ Grailbird.data.tweets_2014_04 = "h" : 2448, "resize" : "fit", "w" : 3264 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/IHOKGauBU3" } ], "hashtags" : [ ], @@ -2965,7 +2964,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "caseyjohnston", "protected" : false, "id_str" : "16472748", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/724432921046704130\/53NbK4wi_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/980767894844911616\/MvYtvL3u_normal.jpg", "id" : 16472748, "verified" : true } @@ -2985,7 +2984,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 0, 8 ], "id_str" : "14272162", @@ -3298,10 +3297,6 @@ Grailbird.data.tweets_2014_04 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 768, "resize" : "fit", @@ -3314,7 +3309,12 @@ Grailbird.data.tweets_2014_04 = "h" : 510, "resize" : "fit", "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Z9AFKnuXDB" } ], "hashtags" : [ ], @@ -3360,7 +3360,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "diffie-hellscape \uD83C\uDF5E", + "name" : "ariadne auf paxos", "screen_name" : "dijkstracula", "indices" : [ 126, 139 ], "id_str" : "14216743", @@ -3473,6 +3473,7 @@ Grailbird.data.tweets_2014_04 = "resize" : "fit", "w" : 573 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0QixYzllVz" } ], "hashtags" : [ ], @@ -3519,6 +3520,7 @@ Grailbird.data.tweets_2014_04 = "resize" : "fit", "w" : 573 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0QixYzllVz" } ], "hashtags" : [ ], @@ -3590,7 +3592,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -3623,7 +3625,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -3707,7 +3709,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -3834,7 +3836,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -4373,7 +4375,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "108814849", "id" : 108814849 }, { - "name" : "\uD83C\uDF83Grave\uD83D\uDC80", + "name" : "Gabe", "screen_name" : "cwgabriel", "indices" : [ 65, 75 ], "id_str" : "14464369", @@ -4390,7 +4392,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/www.myplume.com\/\" rel=\"nofollow\"\u003EPlume\u00A0for\u00A0Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDF83Grave\uD83D\uDC80", + "name" : "Gabe", "screen_name" : "cwgabriel", "indices" : [ 49, 59 ], "id_str" : "14464369", @@ -4435,7 +4437,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Samuel Ford \uD83D\uDCCE", + "name" : "Samuel Ford", "screen_name" : "samuelwford", "indices" : [ 0, 12 ], "id_str" : "21505836", @@ -4633,7 +4635,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Samuel Ford \uD83D\uDCCE", + "name" : "Samuel Ford", "screen_name" : "samuelwford", "indices" : [ 0, 12 ], "id_str" : "21505836", @@ -4825,7 +4827,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "tonyarnold", "protected" : false, "id_str" : "640903", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903269681821130754\/aXVGZb3t_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937524068818960384\/MOZ0rOVm_normal.jpg", "id" : 640903, "verified" : false } @@ -4884,7 +4886,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "indices" : [ 3, 19 ], "id_str" : "1263967268", @@ -4911,11 +4913,11 @@ Grailbird.data.tweets_2014_04 = "id" : 454767310029328384, "created_at" : "2014-04-11 23:45:50 +0000", "user" : { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "protected" : false, "id_str" : "1263967268", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3374120487\/e4f509a5ea232cd5b80f9cbac23d9432_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937618982626037760\/SNb7WO0u_normal.jpg", "id" : 1263967268, "verified" : false } @@ -5162,10 +5164,6 @@ Grailbird.data.tweets_2014_04 = "h" : 682, "resize" : "fit", "w" : 1023 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 453, "resize" : "fit", @@ -5174,7 +5172,12 @@ Grailbird.data.tweets_2014_04 = "h" : 682, "resize" : "fit", "w" : 1023 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/3rIpwgyXlF" } ], "hashtags" : [ ], @@ -5209,10 +5212,6 @@ Grailbird.data.tweets_2014_04 = "h" : 682, "resize" : "fit", "w" : 1023 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 453, "resize" : "fit", @@ -5221,7 +5220,12 @@ Grailbird.data.tweets_2014_04 = "h" : 682, "resize" : "fit", "w" : 1023 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/3rIpwgyXlF" } ], "hashtags" : [ ], @@ -5496,7 +5500,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "mashable", "protected" : false, "id_str" : "972651", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/884451753940451333\/XjbzDyYL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/941796662770651137\/cDtLVz1j_normal.jpg", "id" : 972651, "verified" : true } @@ -6014,6 +6018,10 @@ Grailbird.data.tweets_2014_04 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 784, + "resize" : "fit", + "w" : 1082 }, { "h" : 493, "resize" : "fit", @@ -6022,11 +6030,8 @@ Grailbird.data.tweets_2014_04 = "h" : 784, "resize" : "fit", "w" : 1082 - }, { - "h" : 784, - "resize" : "fit", - "w" : 1082 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0pO8fPEarm" } ], "hashtags" : [ { @@ -6067,6 +6072,10 @@ Grailbird.data.tweets_2014_04 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 784, + "resize" : "fit", + "w" : 1082 }, { "h" : 493, "resize" : "fit", @@ -6075,11 +6084,8 @@ Grailbird.data.tweets_2014_04 = "h" : 784, "resize" : "fit", "w" : 1082 - }, { - "h" : 784, - "resize" : "fit", - "w" : 1082 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0pO8fPEarm" } ], "hashtags" : [ { @@ -6236,6 +6242,10 @@ Grailbird.data.tweets_2014_04 = "h" : 300, "resize" : "fit", "w" : 300 + }, { + "h" : 300, + "resize" : "fit", + "w" : 300 }, { "h" : 150, "resize" : "crop", @@ -6244,11 +6254,8 @@ Grailbird.data.tweets_2014_04 = "h" : 300, "resize" : "fit", "w" : 300 - }, { - "h" : 300, - "resize" : "fit", - "w" : 300 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/sUaaq29TpG" } ], "hashtags" : [ ], @@ -6277,6 +6284,10 @@ Grailbird.data.tweets_2014_04 = "h" : 300, "resize" : "fit", "w" : 300 + }, { + "h" : 300, + "resize" : "fit", + "w" : 300 }, { "h" : 150, "resize" : "crop", @@ -6285,11 +6296,8 @@ Grailbird.data.tweets_2014_04 = "h" : 300, "resize" : "fit", "w" : 300 - }, { - "h" : 300, - "resize" : "fit", - "w" : 300 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/sUaaq29TpG" } ], "hashtags" : [ ], @@ -6372,57 +6380,6 @@ Grailbird.data.tweets_2014_04 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "kyle hughes", - "screen_name" : "KyleHughes", - "indices" : [ 3, 14 ], - "id_str" : "10572372", - "id" : 10572372 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "452611469809422336", - "text" : "RT @KyleHughes: You can use the timer in the Clock app for iOS, with the alert set to \u201CStop Playing\u201D, to have a sleep timer for any app.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "452515614616461312", - "text" : "You can use the timer in the Clock app for iOS, with the alert set to \u201CStop Playing\u201D, to have a sleep timer for any app.", - "id" : 452515614616461312, - "created_at" : "2014-04-05 18:38:24 +0000", - "user" : { - "name" : "kyle hughes", - "screen_name" : "KyleHughes", - "protected" : false, - "id_str" : "10572372", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865582774136127490\/CT9b0fMQ_normal.jpg", - "id" : 10572372, - "verified" : false - } - }, - "id" : 452611469809422336, - "created_at" : "2014-04-06 00:59:18 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { @@ -6468,7 +6425,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } @@ -6563,6 +6520,10 @@ Grailbird.data.tweets_2014_04 = "id" : 452335920146960384, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BkcFH2-CUAAp_Hq.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 1024, "resize" : "fit", "w" : 577 @@ -6574,15 +6535,12 @@ Grailbird.data.tweets_2014_04 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RKOAZfPM2X" } ], "hashtags" : [ ], @@ -6711,7 +6669,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "611823", "id" : 611823 }, { - "name" : "rstevens the porg", + "name" : "rstevens \uD83D\uDC33\uD83D\uDCA8", "screen_name" : "rstevens", "indices" : [ 120, 129 ], "id_str" : "643653", @@ -6728,7 +6686,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "rstevens the porg", + "name" : "rstevens \uD83D\uDC33\uD83D\uDCA8", "screen_name" : "rstevens", "indices" : [ 106, 115 ], "id_str" : "643653", @@ -6818,10 +6776,6 @@ Grailbird.data.tweets_2014_04 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 768, "resize" : "fit", @@ -6834,7 +6788,12 @@ Grailbird.data.tweets_2014_04 = "h" : 510, "resize" : "fit", "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/mazJkIWHzG" } ], "hashtags" : [ ], @@ -7015,7 +6974,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "indices" : [ 3, 11 ], "id_str" : "5813712", @@ -7042,7 +7001,7 @@ Grailbird.data.tweets_2014_04 = "id" : 451780041958252544, "created_at" : "2014-04-03 17:55:30 +0000", "user" : { - "name" : "Salvatore Sanfilippo", + "name" : "ANTIREZ", "screen_name" : "antirez", "protected" : false, "id_str" : "5813712", @@ -7428,7 +7387,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Paul Simbeck-Hampson", + "name" : "Paul S-H", "screen_name" : "simbeckhampson", "indices" : [ 3, 18 ], "id_str" : "39944598", @@ -7446,6 +7405,14 @@ Grailbird.data.tweets_2014_04 = "h" : 333, "resize" : "fit", "w" : 535 + }, { + "h" : 333, + "resize" : "fit", + "w" : 535 + }, { + "h" : 333, + "resize" : "fit", + "w" : 535 }, { "h" : 150, "resize" : "crop", @@ -7454,15 +7421,8 @@ Grailbird.data.tweets_2014_04 = "h" : 333, "resize" : "fit", "w" : 535 - }, { - "h" : 333, - "resize" : "fit", - "w" : 535 - }, { - "h" : 333, - "resize" : "fit", - "w" : 535 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/g8xojSUlsq" } ], "hashtags" : [ ], @@ -7492,6 +7452,14 @@ Grailbird.data.tweets_2014_04 = "h" : 333, "resize" : "fit", "w" : 535 + }, { + "h" : 333, + "resize" : "fit", + "w" : 535 + }, { + "h" : 333, + "resize" : "fit", + "w" : 535 }, { "h" : 150, "resize" : "crop", @@ -7500,15 +7468,8 @@ Grailbird.data.tweets_2014_04 = "h" : 333, "resize" : "fit", "w" : 535 - }, { - "h" : 333, - "resize" : "fit", - "w" : 535 - }, { - "h" : 333, - "resize" : "fit", - "w" : 535 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/g8xojSUlsq" } ], "hashtags" : [ ], @@ -7525,11 +7486,11 @@ Grailbird.data.tweets_2014_04 = "id" : 451592686261129216, "created_at" : "2014-04-03 05:31:01 +0000", "user" : { - "name" : "Paul Simbeck-Hampson", + "name" : "Paul S-H", "screen_name" : "simbeckhampson", "protected" : false, "id_str" : "39944598", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/874628932246667264\/kxtnt8_A_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/959725407619682304\/67lXRkbl_normal.jpg", "id" : 39944598, "verified" : false } @@ -7975,57 +7936,6 @@ Grailbird.data.tweets_2014_04 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Bored Elon Musk", - "screen_name" : "BoredElonMusk", - "indices" : [ 3, 17 ], - "id_str" : "1666038950", - "id" : 1666038950 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "451026508505554944", - "text" : "RT @BoredElonMusk: Fake class action lawsuit generator that scares companies advertising fake products on April Fools.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "451002057181253632", - "text" : "Fake class action lawsuit generator that scares companies advertising fake products on April Fools.", - "id" : 451002057181253632, - "created_at" : "2014-04-01 14:24:04 +0000", - "user" : { - "name" : "Bored Elon Musk", - "screen_name" : "BoredElonMusk", - "protected" : false, - "id_str" : "1666038950", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000305778238\/852d2f76797dbe1da82095f988d38fbe_normal.png", - "id" : 1666038950, - "verified" : false - } - }, - "id" : 451026508505554944, - "created_at" : "2014-04-01 16:01:13 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { diff --git a/public/tweets/data/js/tweets/2014_05.js b/public/tweets/data/js/tweets/2014_05.js index fab9f3f..6eaa992 100755 --- a/public/tweets/data/js/tweets/2014_05.js +++ b/public/tweets/data/js/tweets/2014_05.js @@ -3,17 +3,11 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Christmas-Time Jones", + "name" : "Mike Falzone", "screen_name" : "MikeFalzone", "indices" : [ 0, 12 ], "id_str" : "15500308", "id" : 15500308 - }, { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 13, 20 ], - "id_str" : "3221374703", - "id" : 3221374703 } ], "media" : [ ], "hashtags" : [ ], @@ -116,14 +110,6 @@ Grailbird.data.tweets_2014_05 = "id" : 472581616276373505, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bo7yeeWIgAEc6m0.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -135,7 +121,16 @@ Grailbird.data.tweets_2014_05 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/J2ZxpJOiSx" } ], "hashtags" : [ ], @@ -164,12 +159,6 @@ Grailbird.data.tweets_2014_05 = "indices" : [ 0, 8 ], "id_str" : "31867293", "id" : 31867293 - }, { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 9, 16 ], - "id_str" : "3221374703", - "id" : 3221374703 } ], "media" : [ ], "hashtags" : [ ], @@ -358,7 +347,7 @@ Grailbird.data.tweets_2014_05 = "screen_name" : "GonzoHacker", "protected" : false, "id_str" : "773009000", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/698208463449489408\/qJuiSmrC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920078035533090816\/qM6ROxQX_normal.jpg", "id" : 773009000, "verified" : false } @@ -1095,7 +1084,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "indices" : [ 3, 19 ], "id_str" : "1263967268", @@ -1122,11 +1111,11 @@ Grailbird.data.tweets_2014_05 = "id" : 471349585273581568, "created_at" : "2014-05-27 17:57:53 +0000", "user" : { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "protected" : false, "id_str" : "1263967268", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3374120487\/e4f509a5ea232cd5b80f9cbac23d9432_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937618982626037760\/SNb7WO0u_normal.jpg", "id" : 1263967268, "verified" : false } @@ -1146,7 +1135,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -1304,26 +1293,27 @@ Grailbird.data.tweets_2014_05 = "id" : 471325184494796800, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bop7whOCAAAlvHg.jpg", "sizes" : [ { - "h" : 1224, - "resize" : "fit", - "w" : 1224 - }, { - "h" : 1224, - "resize" : "fit", - "w" : 1224 - }, { - "h" : 1200, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1224, + "resize" : "fit", + "w" : 1224 + }, { + "h" : 1224, + "resize" : "fit", + "w" : 1224 }, { "h" : 680, "resize" : "fit", "w" : 680 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xtmth7aZ34" } ], "hashtags" : [ ], @@ -1345,26 +1335,27 @@ Grailbird.data.tweets_2014_05 = "id" : 471325184494796800, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bop7whOCAAAlvHg.jpg", "sizes" : [ { - "h" : 1224, - "resize" : "fit", - "w" : 1224 - }, { - "h" : 1224, - "resize" : "fit", - "w" : 1224 - }, { - "h" : 1200, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1224, + "resize" : "fit", + "w" : 1224 + }, { + "h" : 1224, + "resize" : "fit", + "w" : 1224 }, { "h" : 680, "resize" : "fit", "w" : 680 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xtmth7aZ34" } ], "hashtags" : [ ], @@ -1442,14 +1433,6 @@ Grailbird.data.tweets_2014_05 = "id" : 471333276821381120, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BoqDHjfCYAABigu.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1461,7 +1444,16 @@ Grailbird.data.tweets_2014_05 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/nVbJ3jbkvq" } ], "hashtags" : [ ], @@ -1627,6 +1619,14 @@ Grailbird.data.tweets_2014_05 = "id" : 470752421132922881, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bohy1TbIcAE6Xu1.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 + }, { "h" : 510, "resize" : "fit", "w" : 680 @@ -1638,15 +1638,8 @@ Grailbird.data.tweets_2014_05 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/CaX6V1OYRA" } ], "hashtags" : [ { @@ -1760,14 +1753,6 @@ Grailbird.data.tweets_2014_05 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 512, - "resize" : "fit", - "w" : 788 - }, { - "h" : 512, - "resize" : "fit", - "w" : 788 }, { "h" : 442, "resize" : "fit", @@ -1776,7 +1761,16 @@ Grailbird.data.tweets_2014_05 = "h" : 512, "resize" : "fit", "w" : 788 + }, { + "h" : 512, + "resize" : "fit", + "w" : 788 + }, { + "h" : 512, + "resize" : "fit", + "w" : 788 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ocJDcffZSX" } ], "hashtags" : [ ], @@ -1801,14 +1795,6 @@ Grailbird.data.tweets_2014_05 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 512, - "resize" : "fit", - "w" : 788 - }, { - "h" : 512, - "resize" : "fit", - "w" : 788 }, { "h" : 442, "resize" : "fit", @@ -1817,7 +1803,16 @@ Grailbird.data.tweets_2014_05 = "h" : 512, "resize" : "fit", "w" : 788 + }, { + "h" : 512, + "resize" : "fit", + "w" : 788 + }, { + "h" : 512, + "resize" : "fit", + "w" : 788 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ocJDcffZSX" } ], "hashtags" : [ ], @@ -1853,7 +1848,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Accidental Tech", + "name" : "Accidental Tech Podcast", "screen_name" : "atpfm", "indices" : [ 0, 6 ], "id_str" : "1253355925", @@ -2083,6 +2078,7 @@ Grailbird.data.tweets_2014_05 = "resize" : "fit", "w" : 465 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ccFoJFt0mK" } ], "hashtags" : [ ], @@ -2124,6 +2120,7 @@ Grailbird.data.tweets_2014_05 = "resize" : "fit", "w" : 465 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ccFoJFt0mK" } ], "hashtags" : [ ], @@ -2208,7 +2205,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2682,57 +2679,6 @@ Grailbird.data.tweets_2014_05 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "indices" : [ 3, 17 ], - "id_str" : "809685", - "id" : 809685 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "468628482570731520", - "text" : "RT @garybernhardt: Engineering is real. I worked in the midst of it once, then never again. Now I'm in a world where \"truth\" comes from sho\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "468573091459637248", - "text" : "Engineering is real. I worked in the midst of it once, then never again. Now I'm in a world where \"truth\" comes from shouting the loudest.", - "id" : 468573091459637248, - "created_at" : "2014-05-20 02:05:05 +0000", - "user" : { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "protected" : false, - "id_str" : "809685", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1170938305\/twitter_headshot_normal.png", - "id" : 809685, - "verified" : false - } - }, - "id" : 468628482570731520, - "created_at" : "2014-05-20 05:45:11 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { @@ -3050,7 +2996,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Accidental Tech", + "name" : "Accidental Tech Podcast", "screen_name" : "atpfm", "indices" : [ 62, 68 ], "id_str" : "1253355925", @@ -3067,7 +3013,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Accidental Tech", + "name" : "Accidental Tech Podcast", "screen_name" : "atpfm", "indices" : [ 48, 54 ], "id_str" : "1253355925", @@ -3107,7 +3053,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Piponi", + "name" : "\u2202an pd piponi", "screen_name" : "sigfpe", "indices" : [ 3, 10 ], "id_str" : "16748247", @@ -3144,11 +3090,11 @@ Grailbird.data.tweets_2014_05 = "id" : 467692482902245377, "created_at" : "2014-05-17 15:45:51 +0000", "user" : { - "name" : "Dan Piponi", + "name" : "\u2202an pd piponi", "screen_name" : "sigfpe", "protected" : false, "id_str" : "16748247", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833805426701373440\/39dts4t1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964584182532878337\/3OkjdHwm_normal.jpg", "id" : 16748247, "verified" : false } @@ -3240,13 +3186,13 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", "id" : 27302287 }, { - "name" : "Gory Galvanism Tins", + "name" : "Sam Livingston-Gray", "screen_name" : "geeksam", "indices" : [ 21, 29 ], "id_str" : "38699900", @@ -3263,7 +3209,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Gory Galvanism Tins", + "name" : "Sam Livingston-Gray", "screen_name" : "geeksam", "indices" : [ 1, 9 ], "id_str" : "38699900", @@ -3284,7 +3230,7 @@ Grailbird.data.tweets_2014_05 = "in_reply_to_screen_name" : "geeksam", "in_reply_to_user_id_str" : "38699900", "user" : { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", @@ -3314,7 +3260,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "19567770", "id" : 19567770 }, { - "name" : "Gory Galvanism Tins", + "name" : "Sam Livingston-Gray", "screen_name" : "geeksam", "indices" : [ 16, 24 ], "id_str" : "38699900", @@ -3331,7 +3277,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003Etwicca\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Gory Galvanism Tins", + "name" : "Sam Livingston-Gray", "screen_name" : "geeksam", "indices" : [ 0, 8 ], "id_str" : "38699900", @@ -3376,7 +3322,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Gory Galvanism Tins", + "name" : "Sam Livingston-Gray", "screen_name" : "geeksam", "indices" : [ 3, 11 ], "id_str" : "38699900", @@ -3403,7 +3349,7 @@ Grailbird.data.tweets_2014_05 = "id" : 467393114395918336, "created_at" : "2014-05-16 19:56:16 +0000", "user" : { - "name" : "Gory Galvanism Tins", + "name" : "Sam Livingston-Gray", "screen_name" : "geeksam", "protected" : false, "id_str" : "38699900", @@ -3427,13 +3373,13 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Gory Galvanism Tins", + "name" : "Sam Livingston-Gray", "screen_name" : "geeksam", "indices" : [ 0, 8 ], "id_str" : "38699900", "id" : 38699900 }, { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 9, 24 ], "id_str" : "27302287", @@ -3718,6 +3664,14 @@ Grailbird.data.tweets_2014_05 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 }, { "h" : 150, "resize" : "crop", @@ -3726,15 +3680,8 @@ Grailbird.data.tweets_2014_05 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OmY0qFHrQK" } ], "hashtags" : [ ], @@ -4086,6 +4033,10 @@ Grailbird.data.tweets_2014_05 = "id" : 467013042073387008, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bnsp4y5CQAADXkZ.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 1024, "resize" : "fit", "w" : 577 @@ -4097,15 +4048,12 @@ Grailbird.data.tweets_2014_05 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/kOX3AnmEol" } ], "hashtags" : [ ], @@ -4323,17 +4271,17 @@ Grailbird.data.tweets_2014_05 = "id" : 464584151149326336, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BnKI0vGIMAAdKcK.jpg", "sizes" : [ { - "h" : 1536, + "h" : 510, "resize" : "fit", - "w" : 2048 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 510, + "h" : 1536, "resize" : "fit", - "w" : 680 + "w" : 2048 }, { "h" : 1536, "resize" : "fit", @@ -4343,6 +4291,7 @@ Grailbird.data.tweets_2014_05 = "resize" : "fit", "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ueclEVD61g" } ], "hashtags" : [ { @@ -4373,17 +4322,17 @@ Grailbird.data.tweets_2014_05 = "id" : 464584151149326336, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BnKI0vGIMAAdKcK.jpg", "sizes" : [ { - "h" : 1536, + "h" : 510, "resize" : "fit", - "w" : 2048 + "w" : 680 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 510, + "h" : 1536, "resize" : "fit", - "w" : 680 + "w" : 2048 }, { "h" : 1536, "resize" : "fit", @@ -4393,6 +4342,7 @@ Grailbird.data.tweets_2014_05 = "resize" : "fit", "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ueclEVD61g" } ], "hashtags" : [ { @@ -4495,7 +4445,7 @@ Grailbird.data.tweets_2014_05 = "screen_name" : "mraleph", "protected" : false, "id_str" : "53010195", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/428865653903081472\/XqtZKTVu_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961923701641039872\/TWwOK7mW_normal.jpg", "id" : 53010195, "verified" : false } @@ -4626,7 +4576,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "108814849", "id" : 108814849 }, { - "name" : "\uD83D\uDDFD", + "name" : "CJ", "screen_name" : "ATXChristina", "indices" : [ 12, 25 ], "id_str" : "20890239", @@ -4781,8 +4731,8 @@ Grailbird.data.tweets_2014_05 = "name" : "Mashable Tech", "screen_name" : "mashabletech", "indices" : [ 10, 23 ], - "id_str" : "112243365", - "id" : 112243365 + "id_str" : "958743175383998464", + "id" : 958743175383998464 } ], "media" : [ { "expanded_url" : "https:\/\/twitter.com\/mashabletech\/status\/465668381132455937\/photo\/1", @@ -4793,9 +4743,9 @@ Grailbird.data.tweets_2014_05 = "id" : 465668380964687872, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BnZi7N6IEAAKGc8.jpg", "sizes" : [ { - "h" : 675, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 383, "resize" : "fit", @@ -4809,10 +4759,11 @@ Grailbird.data.tweets_2014_05 = "resize" : "fit", "w" : 1200 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 675, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OEXkPLCvUq" } ], "hashtags" : [ ], @@ -5348,23 +5299,24 @@ Grailbird.data.tweets_2014_05 = "h" : 685, "resize" : "fit", "w" : 1024 + }, { + "h" : 685, + "resize" : "fit", + "w" : 1024 }, { "h" : 455, "resize" : "fit", "w" : 680 + }, { + "h" : 685, + "resize" : "fit", + "w" : 1024 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 685, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 685, - "resize" : "fit", - "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/mLlC2clqgW" } ], "hashtags" : [ ], @@ -5388,7 +5340,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "indices" : [ 3, 9 ], "id_str" : "1919231", @@ -5415,7 +5367,7 @@ Grailbird.data.tweets_2014_05 = "id" : 462373107903107072, "created_at" : "2014-05-02 23:28:34 +0000", "user" : { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "protected" : false, "id_str" : "1919231", @@ -5511,14 +5463,6 @@ Grailbird.data.tweets_2014_05 = "h" : 604, "resize" : "fit", "w" : 800 - }, { - "h" : 604, - "resize" : "fit", - "w" : 800 - }, { - "h" : 513, - "resize" : "fit", - "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -5527,7 +5471,16 @@ Grailbird.data.tweets_2014_05 = "h" : 604, "resize" : "fit", "w" : 800 + }, { + "h" : 604, + "resize" : "fit", + "w" : 800 + }, { + "h" : 513, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/urrstFI8YS" } ], "hashtags" : [ ], @@ -5552,14 +5505,6 @@ Grailbird.data.tweets_2014_05 = "h" : 604, "resize" : "fit", "w" : 800 - }, { - "h" : 604, - "resize" : "fit", - "w" : 800 - }, { - "h" : 513, - "resize" : "fit", - "w" : 680 }, { "h" : 150, "resize" : "crop", @@ -5568,7 +5513,16 @@ Grailbird.data.tweets_2014_05 = "h" : 604, "resize" : "fit", "w" : 800 + }, { + "h" : 604, + "resize" : "fit", + "w" : 800 + }, { + "h" : 513, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/urrstFI8YS" } ], "hashtags" : [ ], @@ -5802,7 +5756,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Alexandria Ne\uD83C\uDF83nakis", + "name" : "Alexandria Neonakis", "screen_name" : "Beavs", "indices" : [ 3, 9 ], "id_str" : "19007577", @@ -5834,11 +5788,11 @@ Grailbird.data.tweets_2014_05 = "id" : 462236896886673408, "created_at" : "2014-05-02 14:27:18 +0000", "user" : { - "name" : "Alexandria Ne\uD83C\uDF83nakis", + "name" : "Alexandria Neonakis", "screen_name" : "Beavs", "protected" : false, "id_str" : "19007577", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/911389299605594112\/7V6wcVjR_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951934734648557568\/zr-ShdDq_normal.jpg", "id" : 19007577, "verified" : false } @@ -5889,7 +5843,7 @@ Grailbird.data.tweets_2014_05 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925763991820836864\/nmUFyJez_normal.jpg", "id" : 36183, "verified" : false } @@ -5957,6 +5911,18 @@ Grailbird.data.tweets_2014_05 = "id" : 462062536729165826, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BmmTbdXCAAI4nd_.png", "sizes" : [ { + "h" : 512, + "resize" : "fit", + "w" : 512 + }, { + "h" : 512, + "resize" : "fit", + "w" : 512 + }, { + "h" : 512, + "resize" : "fit", + "w" : 512 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -5964,19 +5930,8 @@ Grailbird.data.tweets_2014_05 = "h" : 512, "resize" : "fit", "w" : 512 - }, { - "h" : 512, - "resize" : "fit", - "w" : 512 - }, { - "h" : 512, - "resize" : "fit", - "w" : 512 - }, { - "h" : 512, - "resize" : "fit", - "w" : 512 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/jlBaDVtpPj" } ], "hashtags" : [ ], @@ -6044,7 +5999,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "717313", "id" : 717313 }, { - "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 97, 105 ], "id_str" : "11375732", @@ -6066,7 +6021,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/arstechnica.com\" rel=\"nofollow\"\u003EArs tweetbot\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 80, 88 ], "id_str" : "11375732", diff --git a/public/tweets/data/js/tweets/2014_06.js b/public/tweets/data/js/tweets/2014_06.js index f6a0c68..e642350 100755 --- a/public/tweets/data/js/tweets/2014_06.js +++ b/public/tweets/data/js/tweets/2014_06.js @@ -204,7 +204,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -250,13 +250,7 @@ Grailbird.data.tweets_2014_06 = }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 0, 7 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -348,7 +342,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "GonzoVice", "protected" : false, "id_str" : "874651740", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/848617667250593793\/9IPMYRjG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/973196383158198272\/hxPf9nd1_normal.jpg", "id" : 874651740, "verified" : false } @@ -684,13 +678,13 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", "id" : 676363 }, { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 13, 21 ], "id_str" : "14272162", @@ -723,7 +717,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 0, 8 ], "id_str" : "14272162", @@ -756,7 +750,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 0, 8 ], "id_str" : "14272162", @@ -785,67 +779,6 @@ Grailbird.data.tweets_2014_06 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "indices" : [ 3, 17 ], - "id_str" : "809685", - "id" : 809685 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 40, 63 ], - "url" : "https:\/\/t.co\/wFKm035Mhe", - "expanded_url" : "https:\/\/www.google.com\/search?q=goto+between+functions#q=goto+different+functions", - "display_url" : "google.com\/search?q=goto+\u2026" - } ] - }, - "geo" : { }, - "id_str" : "482340217370587136", - "text" : "RT @garybernhardt: stare into the abyss https:\/\/t.co\/wFKm035Mhe", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 21, 44 ], - "url" : "https:\/\/t.co\/wFKm035Mhe", - "expanded_url" : "https:\/\/www.google.com\/search?q=goto+between+functions#q=goto+different+functions", - "display_url" : "google.com\/search?q=goto+\u2026" - } ] - }, - "geo" : { }, - "id_str" : "482338187243560960", - "text" : "stare into the abyss https:\/\/t.co\/wFKm035Mhe", - "id" : 482338187243560960, - "created_at" : "2014-06-27 01:42:39 +0000", - "user" : { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "protected" : false, - "id_str" : "809685", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1170938305\/twitter_headshot_normal.png", - "id" : 809685, - "verified" : false - } - }, - "id" : 482340217370587136, - "created_at" : "2014-06-27 01:50:43 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { @@ -1133,10 +1066,6 @@ Grailbird.data.tweets_2014_06 = "h" : 70, "resize" : "fit", "w" : 874 - }, { - "h" : 70, - "resize" : "fit", - "w" : 874 }, { "h" : 70, "resize" : "crop", @@ -1149,7 +1078,12 @@ Grailbird.data.tweets_2014_06 = "h" : 54, "resize" : "fit", "w" : 680 + }, { + "h" : 70, + "resize" : "fit", + "w" : 874 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xiWiity7Ud" } ], "hashtags" : [ ], @@ -1188,14 +1122,6 @@ Grailbird.data.tweets_2014_06 = "id" : 481874618488090624, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bq_2aZVCcAAnzpV.png", "sizes" : [ { - "h" : 525, - "resize" : "fit", - "w" : 933 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { "h" : 383, "resize" : "fit", "w" : 680 @@ -1207,7 +1133,16 @@ Grailbird.data.tweets_2014_06 = "h" : 525, "resize" : "fit", "w" : 933 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 525, + "resize" : "fit", + "w" : 933 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RiTFqOrgKn" } ], "hashtags" : [ ], @@ -1229,14 +1164,6 @@ Grailbird.data.tweets_2014_06 = "id" : 481874618488090624, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bq_2aZVCcAAnzpV.png", "sizes" : [ { - "h" : 525, - "resize" : "fit", - "w" : 933 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { "h" : 383, "resize" : "fit", "w" : 680 @@ -1248,7 +1175,16 @@ Grailbird.data.tweets_2014_06 = "h" : 525, "resize" : "fit", "w" : 933 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 525, + "resize" : "fit", + "w" : 933 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RiTFqOrgKn" } ], "hashtags" : [ ], @@ -1448,7 +1384,7 @@ Grailbird.data.tweets_2014_06 = "id" : 481581963921223680, "created_at" : "2014-06-24 23:37:42 +0000", "user" : { - "name" : "Michelle Venetucci H", + "name" : "*\uFF61\uFF65\uFF9F\u2727\uFF61Michelle\uFF65\uFF9F\u2727\uFF61\uFF65*\uFF9F", "screen_name" : "mvenetucci", "protected" : false, "id_str" : "155125025", @@ -1870,6 +1806,10 @@ Grailbird.data.tweets_2014_06 = "id" : 480582031156318209, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bqtez6SCEAExIsb.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 1136, "resize" : "fit", "w" : 640 @@ -1881,15 +1821,12 @@ Grailbird.data.tweets_2014_06 = "h" : 1136, "resize" : "fit", "w" : 640 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 }, { "h" : 1136, "resize" : "fit", "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/SBtLciYn4B" } ], "hashtags" : [ ], @@ -2064,7 +2001,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 3, 11 ], "id_str" : "14272162", @@ -2091,7 +2028,7 @@ Grailbird.data.tweets_2014_06 = "id" : 480141335383400448, "created_at" : "2014-06-21 00:13:09 +0000", "user" : { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "protected" : false, "id_str" : "14272162", @@ -2142,7 +2079,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 3, 11 ], "id_str" : "14272162", @@ -2179,7 +2116,7 @@ Grailbird.data.tweets_2014_06 = "id" : 480112145321836544, "created_at" : "2014-06-20 22:17:10 +0000", "user" : { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "protected" : false, "id_str" : "14272162", @@ -2280,6 +2217,7 @@ Grailbird.data.tweets_2014_06 = "resize" : "fit", "w" : 550 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/cgC3K6vXz8" } ], "hashtags" : [ ], @@ -2529,6 +2467,14 @@ Grailbird.data.tweets_2014_06 = "id" : 479886202405810176, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bqjl9WMCcAAMu0Z.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { "h" : 1200, "resize" : "fit", "w" : 900 @@ -2536,19 +2482,12 @@ Grailbird.data.tweets_2014_06 = "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 680, - "resize" : "fit", - "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/FvZFEClui1" } ], "hashtags" : [ ], @@ -2636,6 +2575,14 @@ Grailbird.data.tweets_2014_06 = "id" : 479867255413428224, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BqjUufJCUAAkQSd.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { "h" : 1200, "resize" : "fit", "w" : 900 @@ -2643,19 +2590,12 @@ Grailbird.data.tweets_2014_06 = "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 680, - "resize" : "fit", - "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/a3U6j2Lh5P" } ], "hashtags" : [ ], @@ -3094,7 +3034,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "mrgan!", + "name" : "Neven Mrgan", "screen_name" : "mrgan", "indices" : [ 3, 9 ], "id_str" : "35293", @@ -3121,11 +3061,11 @@ Grailbird.data.tweets_2014_06 = "id" : 478978311041736706, "created_at" : "2014-06-17 19:11:43 +0000", "user" : { - "name" : "mrgan!", + "name" : "Neven Mrgan", "screen_name" : "mrgan", "protected" : false, "id_str" : "35293", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914585912507428864\/-s_wTdcj_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925719886457847808\/Vuf2uyPY_normal.jpg", "id" : 35293, "verified" : true } @@ -3250,14 +3190,6 @@ Grailbird.data.tweets_2014_06 = "h" : 279, "resize" : "fit", "w" : 250 - }, { - "h" : 279, - "resize" : "fit", - "w" : 250 - }, { - "h" : 279, - "resize" : "fit", - "w" : 250 }, { "h" : 150, "resize" : "crop", @@ -3266,7 +3198,16 @@ Grailbird.data.tweets_2014_06 = "h" : 279, "resize" : "fit", "w" : 250 + }, { + "h" : 279, + "resize" : "fit", + "w" : 250 + }, { + "h" : 279, + "resize" : "fit", + "w" : 250 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/NnH7YT1Br1" } ], "hashtags" : [ ], @@ -3321,6 +3262,14 @@ Grailbird.data.tweets_2014_06 = "id" : 478412070925258752, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BqOpPmfCUAAaMqM.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 + }, { "h" : 510, "resize" : "fit", "w" : 680 @@ -3332,15 +3281,8 @@ Grailbird.data.tweets_2014_06 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/pIKwGcqKMs" } ], "hashtags" : [ ], @@ -3554,7 +3496,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "patrick-or-treat", + "name" : "patrick thomson", "screen_name" : "importantshock", "indices" : [ 3, 18 ], "id_str" : "7611992", @@ -3584,7 +3526,7 @@ Grailbird.data.tweets_2014_06 = "id" : 477548720477585408, "created_at" : "2014-06-13 20:31:02 +0000", "user" : { - "name" : "patrick-or-treat", + "name" : "patrick thomson", "screen_name" : "importantshock", "protected" : false, "id_str" : "7611992", @@ -3749,7 +3691,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "GonzoHacker", "protected" : false, "id_str" : "773009000", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/698208463449489408\/qJuiSmrC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920078035533090816\/qM6ROxQX_normal.jpg", "id" : 773009000, "verified" : false } @@ -3800,7 +3742,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "elonmusk", "protected" : false, "id_str" : "44196397", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/782474226020200448\/zDo-gAo0_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972170159614906369\/0o9cdCOp_normal.jpg", "id" : 44196397, "verified" : true } @@ -3955,7 +3897,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "Twitterrific", "protected" : false, "id_str" : "643443", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917470499919118337\/ndUMnUTG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920656497511731201\/OpP0247B_normal.jpg", "id" : 643443, "verified" : false } @@ -4800,7 +4742,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 3, 19 ], "id_str" : "15267898", @@ -4827,11 +4769,11 @@ Grailbird.data.tweets_2014_06 = "id" : 476074737081536512, "created_at" : "2014-06-09 18:53:57 +0000", "user" : { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/923969343087669248\/diAzr2_2_normal.jpg", "id" : 15267898, "verified" : true } @@ -4995,17 +4937,9 @@ Grailbird.data.tweets_2014_06 = "id" : 472945648925691904, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BpA9j9pIUAACBP6.jpg", "sizes" : [ { - "h" : 422, - "resize" : "fit", - "w" : 980 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 422, - "resize" : "fit", - "w" : 980 }, { "h" : 293, "resize" : "fit", @@ -5014,7 +4948,16 @@ Grailbird.data.tweets_2014_06 = "h" : 422, "resize" : "fit", "w" : 980 + }, { + "h" : 422, + "resize" : "fit", + "w" : 980 + }, { + "h" : 422, + "resize" : "fit", + "w" : 980 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Kjq3QmPiGx" } ], "hashtags" : [ ], @@ -5042,17 +4985,9 @@ Grailbird.data.tweets_2014_06 = "id" : 472945648925691904, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BpA9j9pIUAACBP6.jpg", "sizes" : [ { - "h" : 422, - "resize" : "fit", - "w" : 980 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 422, - "resize" : "fit", - "w" : 980 }, { "h" : 293, "resize" : "fit", @@ -5061,7 +4996,16 @@ Grailbird.data.tweets_2014_06 = "h" : 422, "resize" : "fit", "w" : 980 + }, { + "h" : 422, + "resize" : "fit", + "w" : 980 + }, { + "h" : 422, + "resize" : "fit", + "w" : 980 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Kjq3QmPiGx" } ], "hashtags" : [ ], @@ -5133,7 +5077,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "mattgemmell", "protected" : false, "id_str" : "755859", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916300119947071488\/bcbVcNbO_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951889060930441216\/8-H_ynNk_normal.jpg", "id" : 755859, "verified" : true } @@ -5204,6 +5148,7 @@ Grailbird.data.tweets_2014_06 = "resize" : "fit", "w" : 412 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/YXlkLEego1" } ], "hashtags" : [ ], @@ -5719,7 +5664,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "clattner_llvm", "protected" : false, "id_str" : "2543588034", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916821795008688128\/yONBAVaZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/948421391690252288\/e2Ti9PMU_normal.jpg", "id" : 2543588034, "verified" : false } @@ -5862,7 +5807,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "indices" : [ 3, 9 ], "id_str" : "1919231", @@ -5889,7 +5834,7 @@ Grailbird.data.tweets_2014_06 = "id" : 474264692009861120, "created_at" : "2014-06-04 19:01:28 +0000", "user" : { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "protected" : false, "id_str" : "1919231", @@ -6124,7 +6069,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925763991820836864\/nmUFyJez_normal.jpg", "id" : 36183, "verified" : false } @@ -6285,7 +6230,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "166028855", "id" : 166028855 }, { - "name" : "Javi", + "name" : "JaviAir", "screen_name" : "Javi", "indices" : [ 28, 33 ], "id_str" : "7213362", @@ -6342,7 +6287,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "166028855", "id" : 166028855 }, { - "name" : "Javi", + "name" : "JaviAir", "screen_name" : "Javi", "indices" : [ 28, 33 ], "id_str" : "7213362", @@ -6387,7 +6332,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "166028855", "id" : 166028855 }, { - "name" : "Javi", + "name" : "JaviAir", "screen_name" : "Javi", "indices" : [ 28, 33 ], "id_str" : "7213362", @@ -6453,7 +6398,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Javi", + "name" : "JaviAir", "screen_name" : "Javi", "indices" : [ 0, 5 ], "id_str" : "7213362", @@ -6497,7 +6442,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Accidental Tech", + "name" : "Accidental Tech Podcast", "screen_name" : "atpfm", "indices" : [ 0, 6 ], "id_str" : "1253355925", @@ -6550,7 +6495,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "diffie-hellscape \uD83C\uDF5E", + "name" : "ariadne auf paxos", "screen_name" : "dijkstracula", "indices" : [ 3, 16 ], "id_str" : "14216743", @@ -6577,11 +6522,11 @@ Grailbird.data.tweets_2014_06 = "id" : 473588378131132416, "created_at" : "2014-06-02 22:14:02 +0000", "user" : { - "name" : "diffie-hellscape \uD83C\uDF5E", + "name" : "ariadne auf paxos", "screen_name" : "dijkstracula", "protected" : false, "id_str" : "14216743", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/892558761654497280\/pKlttZP8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/944252291732848640\/tHHIT7PB_normal.jpg", "id" : 14216743, "verified" : false } @@ -6601,7 +6546,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "diffie-hellscape \uD83C\uDF5E", + "name" : "ariadne auf paxos", "screen_name" : "dijkstracula", "indices" : [ 0, 13 ], "id_str" : "14216743", @@ -6928,10 +6873,6 @@ Grailbird.data.tweets_2014_06 = "id" : 473539403898716160, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BpJZlDSIgAALvks.jpg", "sizes" : [ { - "h" : 1136, - "resize" : "fit", - "w" : 852 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -6947,7 +6888,12 @@ Grailbird.data.tweets_2014_06 = "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1136, + "resize" : "fit", + "w" : 852 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/WgcJMVRbO1" } ], "hashtags" : [ ], @@ -6969,10 +6915,6 @@ Grailbird.data.tweets_2014_06 = "id" : 473539403898716160, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BpJZlDSIgAALvks.jpg", "sizes" : [ { - "h" : 1136, - "resize" : "fit", - "w" : 852 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -6988,7 +6930,12 @@ Grailbird.data.tweets_2014_06 = "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1136, + "resize" : "fit", + "w" : 852 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/WgcJMVRbO1" } ], "hashtags" : [ ], @@ -7213,7 +7160,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "no de la telenovela", + "name" : "Kieran Huggins", "screen_name" : "kieran", "indices" : [ 3, 10 ], "id_str" : "1304261", @@ -7240,11 +7187,11 @@ Grailbird.data.tweets_2014_06 = "id" : 473534159185395712, "created_at" : "2014-06-02 18:38:36 +0000", "user" : { - "name" : "no de la telenovela", + "name" : "Kieran Huggins", "screen_name" : "kieran", "protected" : false, "id_str" : "1304261", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3742683429\/a36ae136414166e8deda792d085aed8d_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/954147587501842432\/x0cjwgC7_normal.jpg", "id" : 1304261, "verified" : false } @@ -7532,7 +7479,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Zeldmonster", + "name" : "zeldman", "screen_name" : "zeldman", "indices" : [ 32, 40 ], "id_str" : "61133", @@ -8097,7 +8044,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chris Osborn", + "name" : "FozzTexx", "screen_name" : "FozzTexx", "indices" : [ 0, 9 ], "id_str" : "146601627", diff --git a/public/tweets/data/js/tweets/2014_07.js b/public/tweets/data/js/tweets/2014_07.js index 27774a6..046c641 100755 --- a/public/tweets/data/js/tweets/2014_07.js +++ b/public/tweets/data/js/tweets/2014_07.js @@ -159,7 +159,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "1Password", "protected" : false, "id_str" : "793926", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/904715544414351360\/6XdEq2Mq_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981326545179439104\/jPhaQEQv_normal.jpg", "id" : 793926, "verified" : true } @@ -327,13 +327,7 @@ Grailbird.data.tweets_2014_07 = }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 3, 10 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ { @@ -388,13 +382,7 @@ Grailbird.data.tweets_2014_07 = }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 0, 7 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -533,7 +521,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 7, 21 ], "id_str" : "165975834", @@ -790,7 +778,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "This Universe Faruk", + "name" : "Faruk Ate\u015F", "screen_name" : "KuraFire", "indices" : [ 3, 12 ], "id_str" : "22253", @@ -827,11 +815,11 @@ Grailbird.data.tweets_2014_07 = "id" : 494186099838050304, "created_at" : "2014-07-29 18:22:02 +0000", "user" : { - "name" : "This Universe Faruk", + "name" : "Faruk Ate\u015F", "screen_name" : "KuraFire", "protected" : false, "id_str" : "22253", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/907477396831404032\/IppwAcNp_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981330152918458369\/IxcliBDz_normal.jpg", "id" : 22253, "verified" : false } @@ -1049,57 +1037,6 @@ Grailbird.data.tweets_2014_07 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "indices" : [ 3, 17 ], - "id_str" : "809685", - "id" : 809685 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "493885322388721664", - "text" : "RT @garybernhardt: Certain web pages capture the Cmd-Tab keystroke and Firefox *lets them do it*, breaking tab switching. The web is awful.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "493836754248826880", - "text" : "Certain web pages capture the Cmd-Tab keystroke and Firefox *lets them do it*, breaking tab switching. The web is awful.", - "id" : 493836754248826880, - "created_at" : "2014-07-28 19:13:51 +0000", - "user" : { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "protected" : false, - "id_str" : "809685", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1170938305\/twitter_headshot_normal.png", - "id" : 809685, - "verified" : false - } - }, - "id" : 493885322388721664, - "created_at" : "2014-07-28 22:26:51 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { @@ -1369,7 +1306,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 132, 140 ], "id_str" : "14272162", @@ -1469,12 +1406,6 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Lee Hutchinson", - "screen_name" : "Lee_Ars", - "indices" : [ 97, 105 ], - "id_str" : "785388690", - "id" : 785388690 - }, { "name" : "Ars Technica", "screen_name" : "arstechnica", "indices" : [ 110, 122 ], @@ -1677,7 +1608,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ClassicPics", + "name" : "History Pics", "screen_name" : "History_Pics", "indices" : [ 1, 14 ], "id_str" : "1086485478", @@ -1981,26 +1912,27 @@ Grailbird.data.tweets_2014_07 = "id" : 492473268574498818, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BtWd1BrCMAIUzTH.jpg", "sizes" : [ { - "h" : 305, - "resize" : "fit", - "w" : 681 - }, { - "h" : 305, - "resize" : "fit", - "w" : 681 - }, { - "h" : 305, - "resize" : "fit", - "w" : 681 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 305, + "resize" : "fit", + "w" : 681 }, { "h" : 305, "resize" : "fit", "w" : 680 + }, { + "h" : 305, + "resize" : "fit", + "w" : 681 + }, { + "h" : 305, + "resize" : "fit", + "w" : 681 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/PgTyoGr9uZ" } ], "hashtags" : [ ], @@ -2033,26 +1965,27 @@ Grailbird.data.tweets_2014_07 = "id" : 492473268574498818, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BtWd1BrCMAIUzTH.jpg", "sizes" : [ { - "h" : 305, - "resize" : "fit", - "w" : 681 - }, { - "h" : 305, - "resize" : "fit", - "w" : 681 - }, { - "h" : 305, - "resize" : "fit", - "w" : 681 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 305, + "resize" : "fit", + "w" : 681 }, { "h" : 305, "resize" : "fit", "w" : 680 + }, { + "h" : 305, + "resize" : "fit", + "w" : 681 + }, { + "h" : 305, + "resize" : "fit", + "w" : 681 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/PgTyoGr9uZ" } ], "hashtags" : [ ], @@ -2073,7 +2006,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "pourmecoffee", "protected" : false, "id_str" : "16906137", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/815913005619810305\/g7lH5MQ7_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/973885371976241152\/LGFmuHTx_normal.jpg", "id" : 16906137, "verified" : true } @@ -2180,26 +2113,27 @@ Grailbird.data.tweets_2014_07 = "id" : 492701276229353472, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BtZtM0YIQAAAGDm.jpg", "sizes" : [ { - "h" : 1817, - "resize" : "fit", - "w" : 2048 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1817, + "resize" : "fit", + "w" : 2048 }, { "h" : 603, "resize" : "fit", "w" : 680 - }, { - "h" : 1065, - "resize" : "fit", - "w" : 1200 }, { "h" : 2726, "resize" : "fit", "w" : 3072 + }, { + "h" : 1065, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/XfnxM8EUQH" } ], "hashtags" : [ ], @@ -2227,26 +2161,27 @@ Grailbird.data.tweets_2014_07 = "id" : 492701276229353472, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BtZtM0YIQAAAGDm.jpg", "sizes" : [ { - "h" : 1817, - "resize" : "fit", - "w" : 2048 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1817, + "resize" : "fit", + "w" : 2048 }, { "h" : 603, "resize" : "fit", "w" : 680 - }, { - "h" : 1065, - "resize" : "fit", - "w" : 1200 }, { "h" : 2726, "resize" : "fit", "w" : 3072 + }, { + "h" : 1065, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/XfnxM8EUQH" } ], "hashtags" : [ ], @@ -2396,13 +2331,7 @@ Grailbird.data.tweets_2014_07 = }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 0, 7 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -2565,7 +2494,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thom\uD83C\uDDF3\uD83C\uDDF1\uD83C\uDDEA\uD83C\uDDFA\uD83C\uDF37\uD83C\uDF0A", + "name" : "Thom \uD83C\uDF84\u2744\uFE0F\u26C4\uFE0F Holwerda", "screen_name" : "thomholwerda", "indices" : [ 0, 13 ], "id_str" : "286715690", @@ -2678,6 +2607,14 @@ Grailbird.data.tweets_2014_07 = "h" : 361, "resize" : "fit", "w" : 565 + }, { + "h" : 361, + "resize" : "fit", + "w" : 565 + }, { + "h" : 361, + "resize" : "fit", + "w" : 565 }, { "h" : 150, "resize" : "crop", @@ -2686,15 +2623,8 @@ Grailbird.data.tweets_2014_07 = "h" : 361, "resize" : "fit", "w" : 565 - }, { - "h" : 361, - "resize" : "fit", - "w" : 565 - }, { - "h" : 361, - "resize" : "fit", - "w" : 565 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Rvya8w9U2d" } ], "hashtags" : [ ], @@ -2735,7 +2665,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bahnhof Below", + "name" : "Below Freezing", "screen_name" : "avbelow", "indices" : [ 0, 8 ], "id_str" : "18763491", @@ -3001,9 +2931,9 @@ Grailbird.data.tweets_2014_07 = "id" : 491600079740891137, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BtKDqvyCcAE20tS.png", "sizes" : [ { - "h" : 1618, + "h" : 948, "resize" : "fit", - "w" : 2048 + "w" : 1200 }, { "h" : 537, "resize" : "fit", @@ -3012,15 +2942,16 @@ Grailbird.data.tweets_2014_07 = "h" : 2472, "resize" : "fit", "w" : 3128 + }, { + "h" : 1618, + "resize" : "fit", + "w" : 2048 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 948, - "resize" : "fit", - "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/mYzKl26njN" } ], "hashtags" : [ ], @@ -3049,7 +2980,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Gov. of Canada edits", + "name" : "Governement of Canada Wikipedia edits", "screen_name" : "gccaedits", "indices" : [ 0, 10 ], "id_str" : "2613454796", @@ -3459,7 +3390,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "phillipsbeer", "protected" : false, "id_str" : "65141250", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/888070528841302017\/-94mWGXa_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961012152403353601\/nf4-Ilid_normal.jpg", "id" : 65141250, "verified" : false } @@ -3977,13 +3908,7 @@ Grailbird.data.tweets_2014_07 = }, { "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 0, 7 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -4183,7 +4108,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Christopher Mims\uD83E\uDD33", + "name" : "Christopher Mims \uD83C\uDF86", "screen_name" : "mims", "indices" : [ 26, 31 ], "id_str" : "1769191", @@ -4620,10 +4545,6 @@ Grailbird.data.tweets_2014_07 = "h" : 99, "resize" : "fit", "w" : 320 - }, { - "h" : 99, - "resize" : "fit", - "w" : 320 }, { "h" : 99, "resize" : "crop", @@ -4632,7 +4553,12 @@ Grailbird.data.tweets_2014_07 = "h" : 99, "resize" : "fit", "w" : 320 + }, { + "h" : 99, + "resize" : "fit", + "w" : 320 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xxMqecX5fd" } ], "hashtags" : [ ], @@ -4653,7 +4579,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "paul_irish", "protected" : false, "id_str" : "1671811", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/420826194083213312\/CP1RmLa3_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972186419274776576\/LaJS_MKO_normal.jpg", "id" : 1671811, "verified" : false } @@ -4673,7 +4599,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Gov. of Canada edits", + "name" : "Governement of Canada Wikipedia edits", "screen_name" : "gccaedits", "indices" : [ 3, 13 ], "id_str" : "2613454796", @@ -4710,7 +4636,7 @@ Grailbird.data.tweets_2014_07 = "id" : 489105122547736576, "created_at" : "2014-07-15 17:52:03 +0000", "user" : { - "name" : "Gov. of Canada edits", + "name" : "Governement of Canada Wikipedia edits", "screen_name" : "gccaedits", "protected" : false, "id_str" : "2613454796", @@ -4734,7 +4660,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Gov. of Canada edits", + "name" : "Governement of Canada Wikipedia edits", "screen_name" : "gccaedits", "indices" : [ 3, 13 ], "id_str" : "2613454796", @@ -4771,7 +4697,7 @@ Grailbird.data.tweets_2014_07 = "id" : 489104705302573057, "created_at" : "2014-07-15 17:50:23 +0000", "user" : { - "name" : "Gov. of Canada edits", + "name" : "Governement of Canada Wikipedia edits", "screen_name" : "gccaedits", "protected" : false, "id_str" : "2613454796", @@ -5520,10 +5446,6 @@ Grailbird.data.tweets_2014_07 = "h" : 681, "resize" : "fit", "w" : 1024 - }, { - "h" : 452, - "resize" : "fit", - "w" : 680 }, { "h" : 681, "resize" : "fit", @@ -5536,7 +5458,12 @@ Grailbird.data.tweets_2014_07 = "h" : 681, "resize" : "fit", "w" : 1024 + }, { + "h" : 452, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/3W4jgPSpdr" } ], "hashtags" : [ ], @@ -5776,7 +5703,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 0, 8 ], "id_str" : "14272162", @@ -5855,7 +5782,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "dwiskus", "protected" : false, "id_str" : "2897431", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/857799622785413120\/xvbyAI3Z_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/929821729043738624\/pDxKimms_normal.jpg", "id" : 2897431, "verified" : true } @@ -6024,6 +5951,10 @@ Grailbird.data.tweets_2014_07 = "id" : 487761871563276288, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BsTg1oGCQAAgrR9.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 1136, "resize" : "fit", "w" : 640 @@ -6035,15 +5966,12 @@ Grailbird.data.tweets_2014_07 = "h" : 1136, "resize" : "fit", "w" : 640 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 }, { "h" : 1136, "resize" : "fit", "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/UZr2nWAPwX" } ], "hashtags" : [ ], @@ -6282,6 +6210,10 @@ Grailbird.data.tweets_2014_07 = "id" : 487671449553862656, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BsSOmX3CAAAaVTq.png", "sizes" : [ { + "h" : 244, + "resize" : "fit", + "w" : 1308 + }, { "h" : 127, "resize" : "fit", "w" : 680 @@ -6289,19 +6221,16 @@ Grailbird.data.tweets_2014_07 = "h" : 244, "resize" : "fit", "w" : 1308 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 224, "resize" : "fit", "w" : 1200 }, { - "h" : 244, - "resize" : "fit", - "w" : 1308 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/zHT3cGDZDU" } ], "hashtags" : [ ], @@ -6606,7 +6535,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ClassicPics", + "name" : "History Pics", "screen_name" : "History_Pics", "indices" : [ 27, 40 ], "id_str" : "1086485478", @@ -6670,7 +6599,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "GonzoHacker", "protected" : false, "id_str" : "773009000", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/698208463449489408\/qJuiSmrC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920078035533090816\/qM6ROxQX_normal.jpg", "id" : 773009000, "verified" : false } @@ -6721,7 +6650,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "GonzoHacker", "protected" : false, "id_str" : "773009000", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/698208463449489408\/qJuiSmrC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920078035533090816\/qM6ROxQX_normal.jpg", "id" : 773009000, "verified" : false } @@ -6794,7 +6723,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "rexytseng", "protected" : false, "id_str" : "128721761", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/835042288518774784\/BqecR76J_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/967562540585594881\/GLYYO0Xt_normal.jpg", "id" : 128721761, "verified" : false } @@ -6826,6 +6755,14 @@ Grailbird.data.tweets_2014_07 = "h" : 262, "resize" : "fit", "w" : 1198 + }, { + "h" : 149, + "resize" : "fit", + "w" : 680 + }, { + "h" : 262, + "resize" : "fit", + "w" : 1198 }, { "h" : 262, "resize" : "fit", @@ -6834,15 +6771,8 @@ Grailbird.data.tweets_2014_07 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 262, - "resize" : "fit", - "w" : 1198 - }, { - "h" : 149, - "resize" : "fit", - "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/beMv9XDU6E" } ], "hashtags" : [ ], @@ -6897,7 +6827,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "mraleph", "protected" : false, "id_str" : "53010195", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/428865653903081472\/XqtZKTVu_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961923701641039872\/TWwOK7mW_normal.jpg", "id" : 53010195, "verified" : false } @@ -6950,7 +6880,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sascha M Holesch", + "name" : "\u30B5\u30FC\u30B7\u30E3\u30FB\uFF2D\u30FB\u30DB\u30EC\u30B7\u30E5", "screen_name" : "saschaholesch", "indices" : [ 0, 14 ], "id_str" : "261980725", @@ -6989,7 +6919,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sascha M Holesch", + "name" : "\u30B5\u30FC\u30B7\u30E3\u30FB\uFF2D\u30FB\u30DB\u30EC\u30B7\u30E5", "screen_name" : "saschaholesch", "indices" : [ 0, 14 ], "id_str" : "261980725", @@ -7057,117 +6987,6 @@ Grailbird.data.tweets_2014_07 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "indices" : [ 3, 17 ], - "id_str" : "809685", - "id" : 809685 - } ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/garybernhardt\/status\/486309176746860544\/photo\/1", - "indices" : [ 19, 41 ], - "url" : "http:\/\/t.co\/PH0TGMojVc", - "media_url" : "http:\/\/pbs.twimg.com\/media\/Br-3nnQCcAAqk4p.png", - "id_str" : "486309175958335488", - "id" : 486309175958335488, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Br-3nnQCcAAqk4p.png", - "sizes" : [ { - "h" : 281, - "resize" : "fit", - "w" : 410 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 281, - "resize" : "fit", - "w" : 410 - }, { - "h" : 281, - "resize" : "fit", - "w" : 410 - }, { - "h" : 281, - "resize" : "fit", - "w" : 410 - } ], - "display_url" : "pic.twitter.com\/PH0TGMojVc" - } ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "486534865656229888", - "text" : "RT @garybernhardt: http:\/\/t.co\/PH0TGMojVc", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/garybernhardt\/status\/486309176746860544\/photo\/1", - "indices" : [ 0, 22 ], - "url" : "http:\/\/t.co\/PH0TGMojVc", - "media_url" : "http:\/\/pbs.twimg.com\/media\/Br-3nnQCcAAqk4p.png", - "id_str" : "486309175958335488", - "id" : 486309175958335488, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Br-3nnQCcAAqk4p.png", - "sizes" : [ { - "h" : 281, - "resize" : "fit", - "w" : 410 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 281, - "resize" : "fit", - "w" : 410 - }, { - "h" : 281, - "resize" : "fit", - "w" : 410 - }, { - "h" : 281, - "resize" : "fit", - "w" : 410 - } ], - "display_url" : "pic.twitter.com\/PH0TGMojVc" - } ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "486309176746860544", - "text" : "http:\/\/t.co\/PH0TGMojVc", - "id" : 486309176746860544, - "created_at" : "2014-07-08 00:41:57 +0000", - "user" : { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "protected" : false, - "id_str" : "809685", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1170938305\/twitter_headshot_normal.png", - "id" : 809685, - "verified" : false - } - }, - "id" : 486534865656229888, - "created_at" : "2014-07-08 15:38:46 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { @@ -7187,26 +7006,27 @@ Grailbird.data.tweets_2014_07 = "id" : 486260665363877888, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Br-Lf7NCUAAWPZT.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0ENKFD7f5L" } ], "hashtags" : [ ], @@ -7230,7 +7050,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -7263,7 +7083,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -7284,9 +7104,9 @@ Grailbird.data.tweets_2014_07 = "id" : 486258983485722624, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Br-J-BuCUAAwySC.png", "sizes" : [ { - "h" : 186, + "h" : 284, "resize" : "fit", - "w" : 680 + "w" : 1036 }, { "h" : 284, "resize" : "fit", @@ -7300,10 +7120,11 @@ Grailbird.data.tweets_2014_07 = "resize" : "crop", "w" : 150 }, { - "h" : 284, + "h" : 186, "resize" : "fit", - "w" : 1036 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/fuHG3QVGtY" } ], "hashtags" : [ ], @@ -7331,9 +7152,9 @@ Grailbird.data.tweets_2014_07 = "id" : 486258983485722624, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Br-J-BuCUAAwySC.png", "sizes" : [ { - "h" : 186, + "h" : 284, "resize" : "fit", - "w" : 680 + "w" : 1036 }, { "h" : 284, "resize" : "fit", @@ -7347,10 +7168,11 @@ Grailbird.data.tweets_2014_07 = "resize" : "crop", "w" : 150 }, { - "h" : 284, + "h" : 186, "resize" : "fit", - "w" : 1036 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/fuHG3QVGtY" } ], "hashtags" : [ ], @@ -7367,7 +7189,7 @@ Grailbird.data.tweets_2014_07 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", @@ -7534,6 +7356,10 @@ Grailbird.data.tweets_2014_07 = "id" : 486256852401782784, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Br-IB-0CAAAkIkq.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 1136, "resize" : "fit", "w" : 640 @@ -7545,15 +7371,12 @@ Grailbird.data.tweets_2014_07 = "h" : 1136, "resize" : "fit", "w" : 640 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 }, { "h" : 1136, "resize" : "fit", "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/NA6tsd3ZJx" } ], "hashtags" : [ ], @@ -7603,14 +7426,6 @@ Grailbird.data.tweets_2014_07 = "id" : 486254687038242816, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Br-GD8NIgAApvv9.jpg", "sizes" : [ { - "h" : 400, - "resize" : "fit", - "w" : 400 - }, { - "h" : 400, - "resize" : "fit", - "w" : 400 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -7622,7 +7437,16 @@ Grailbird.data.tweets_2014_07 = "h" : 400, "resize" : "fit", "w" : 400 + }, { + "h" : 400, + "resize" : "fit", + "w" : 400 + }, { + "h" : 400, + "resize" : "fit", + "w" : 400 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/rGTkdJmWCS" } ], "hashtags" : [ ], @@ -7650,14 +7474,6 @@ Grailbird.data.tweets_2014_07 = "id" : 486254687038242816, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Br-GD8NIgAApvv9.jpg", "sizes" : [ { - "h" : 400, - "resize" : "fit", - "w" : 400 - }, { - "h" : 400, - "resize" : "fit", - "w" : 400 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -7669,7 +7485,16 @@ Grailbird.data.tweets_2014_07 = "h" : 400, "resize" : "fit", "w" : 400 + }, { + "h" : 400, + "resize" : "fit", + "w" : 400 + }, { + "h" : 400, + "resize" : "fit", + "w" : 400 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/rGTkdJmWCS" } ], "hashtags" : [ ], @@ -7905,6 +7730,7 @@ Grailbird.data.tweets_2014_07 = "resize" : "fit", "w" : 300 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/gw2SfoBmdC" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2014_08.js b/public/tweets/data/js/tweets/2014_08.js index a1a70fd..2fa2354 100755 --- a/public/tweets/data/js/tweets/2014_08.js +++ b/public/tweets/data/js/tweets/2014_08.js @@ -254,13 +254,7 @@ Grailbird.data.tweets_2014_08 = }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 0, 7 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -471,10 +465,6 @@ Grailbird.data.tweets_2014_08 = "id" : 505791257491550208, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BwTueAlIMAAw2sS.jpg", "sizes" : [ { - "h" : 680, - "resize" : "fit", - "w" : 680 - }, { "h" : 2048, "resize" : "fit", "w" : 2048 @@ -482,15 +472,20 @@ Grailbird.data.tweets_2014_08 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 2048 }, { "h" : 1200, "resize" : "fit", "w" : 1200 }, { - "h" : 2048, + "h" : 680, "resize" : "fit", - "w" : 2048 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/sMysoTmlaZ" } ], "hashtags" : [ ], @@ -523,26 +518,27 @@ Grailbird.data.tweets_2014_08 = "id" : 505757790745264129, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BwTQB_PCAAE34Fs.jpg", "sizes" : [ { - "h" : 1200, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 680, + "h" : 1200, "resize" : "fit", - "w" : 680 + "w" : 1200 }, { "h" : 2048, "resize" : "fit", "w" : 2047 + }, { + "h" : 680, + "resize" : "fit", + "w" : 680 }, { "h" : 2449, "resize" : "fit", "w" : 2448 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/mjSJdBbz9H" } ], "hashtags" : [ ], @@ -838,6 +834,7 @@ Grailbird.data.tweets_2014_08 = "resize" : "fit", "w" : 769 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Y86YR7pIMw" } ], "hashtags" : [ ], @@ -988,6 +985,14 @@ Grailbird.data.tweets_2014_08 = "h" : 680, "resize" : "fit", "w" : 537 + }, { + "h" : 734, + "resize" : "fit", + "w" : 580 + }, { + "h" : 734, + "resize" : "fit", + "w" : 580 }, { "h" : 150, "resize" : "crop", @@ -996,15 +1001,8 @@ Grailbird.data.tweets_2014_08 = "h" : 734, "resize" : "fit", "w" : 580 - }, { - "h" : 734, - "resize" : "fit", - "w" : 580 - }, { - "h" : 734, - "resize" : "fit", - "w" : 580 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/kpr3uszxb4" } ], "hashtags" : [ ], @@ -1219,26 +1217,27 @@ Grailbird.data.tweets_2014_08 = "id" : 504009465990221825, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bv6Z8F_IEAEkWIL.jpg", "sizes" : [ { - "h" : 680, + "h" : 1380, "resize" : "fit", - "w" : 680 + "w" : 1380 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1380, + "resize" : "fit", + "w" : 1380 }, { "h" : 1200, "resize" : "fit", "w" : 1200 }, { - "h" : 1380, + "h" : 680, "resize" : "fit", - "w" : 1380 - }, { - "h" : 1380, - "resize" : "fit", - "w" : 1380 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/9PnyfsOBfs" } ], "hashtags" : [ ], @@ -1371,14 +1370,6 @@ Grailbird.data.tweets_2014_08 = "h" : 257, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 257, - "resize" : "fit", - "w" : 1024 }, { "h" : 257, "resize" : "fit", @@ -1387,7 +1378,16 @@ Grailbird.data.tweets_2014_08 = "h" : 171, "resize" : "fit", "w" : 680 + }, { + "h" : 257, + "resize" : "fit", + "w" : 1024 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RqCUjPb1jD" } ], "hashtags" : [ ], @@ -1456,14 +1456,14 @@ Grailbird.data.tweets_2014_08 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 }, { "h" : 680, "resize" : "fit", @@ -1473,6 +1473,7 @@ Grailbird.data.tweets_2014_08 = "resize" : "fit", "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Hqh6pUdsyA" } ], "hashtags" : [ ], @@ -1649,7 +1650,13 @@ Grailbird.data.tweets_2014_08 = }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ ], + "user_mentions" : [ { + "name" : "Dave", + "screen_name" : "thebouridentity", + "indices" : [ 0, 16 ], + "id_str" : "962819970404143105", + "id" : 962819970404143105 + } ], "media" : [ ], "hashtags" : [ ], "urls" : [ { @@ -1793,7 +1800,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Just Lee", + "name" : "lee", "screen_name" : "leed0", "indices" : [ 3, 9 ], "id_str" : "20949743", @@ -1832,7 +1839,7 @@ Grailbird.data.tweets_2014_08 = "id" : 501808584632827905, "created_at" : "2014-08-19 19:11:04 +0000", "user" : { - "name" : "Just Lee", + "name" : "lee", "screen_name" : "leed0", "protected" : false, "id_str" : "20949743", @@ -2463,7 +2470,7 @@ Grailbird.data.tweets_2014_08 = "screen_name" : "ZevEisenberg", "protected" : false, "id_str" : "16005703", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/448194824676442112\/WCJoOf_T_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925744375115796487\/3RexVN67_normal.jpg", "id" : 16005703, "verified" : false } @@ -2483,7 +2490,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "indices" : [ 0, 14 ], "id_str" : "2550058153", @@ -2516,7 +2523,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "indices" : [ 3, 17 ], "id_str" : "2550058153", @@ -2534,6 +2541,14 @@ Grailbird.data.tweets_2014_08 = "h" : 273, "resize" : "fit", "w" : 534 + }, { + "h" : 273, + "resize" : "fit", + "w" : 534 + }, { + "h" : 273, + "resize" : "fit", + "w" : 534 }, { "h" : 150, "resize" : "crop", @@ -2542,15 +2557,8 @@ Grailbird.data.tweets_2014_08 = "h" : 273, "resize" : "fit", "w" : 534 - }, { - "h" : 273, - "resize" : "fit", - "w" : 534 - }, { - "h" : 273, - "resize" : "fit", - "w" : 534 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/M4GHB2f5RS" } ], "hashtags" : [ ], @@ -2575,6 +2583,14 @@ Grailbird.data.tweets_2014_08 = "h" : 273, "resize" : "fit", "w" : 534 + }, { + "h" : 273, + "resize" : "fit", + "w" : 534 + }, { + "h" : 273, + "resize" : "fit", + "w" : 534 }, { "h" : 150, "resize" : "crop", @@ -2583,15 +2599,8 @@ Grailbird.data.tweets_2014_08 = "h" : 273, "resize" : "fit", "w" : 534 - }, { - "h" : 273, - "resize" : "fit", - "w" : 534 - }, { - "h" : 273, - "resize" : "fit", - "w" : 534 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/M4GHB2f5RS" } ], "hashtags" : [ ], @@ -2603,7 +2612,7 @@ Grailbird.data.tweets_2014_08 = "id" : 501426738459840512, "created_at" : "2014-08-18 17:53:45 +0000", "user" : { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "protected" : false, "id_str" : "2550058153", @@ -2720,10 +2729,6 @@ Grailbird.data.tweets_2014_08 = "h" : 1024, "resize" : "fit", "w" : 765 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 680, "resize" : "fit", @@ -2732,7 +2737,12 @@ Grailbird.data.tweets_2014_08 = "h" : 1024, "resize" : "fit", "w" : 765 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/tU54oMqVHk" } ], "hashtags" : [ ], @@ -2848,15 +2858,16 @@ Grailbird.data.tweets_2014_08 = "h" : 14, "resize" : "fit", "w" : 223 - }, { - "h" : 14, - "resize" : "fit", - "w" : 223 }, { "h" : 14, "resize" : "crop", "w" : 14 + }, { + "h" : 14, + "resize" : "fit", + "w" : 223 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/MqS59noIf6" } ], "hashtags" : [ ], @@ -2940,17 +2951,17 @@ Grailbird.data.tweets_2014_08 = "id" : 500757087207444480, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BvML6u3CUAAItYI.jpg", "sizes" : [ { - "h" : 1536, + "h" : 900, "resize" : "fit", - "w" : 2048 + "w" : 1200 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 900, + "h" : 1536, "resize" : "fit", - "w" : 1200 + "w" : 2048 }, { "h" : 510, "resize" : "fit", @@ -2960,6 +2971,7 @@ Grailbird.data.tweets_2014_08 = "resize" : "fit", "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/zkAEjyPCxI" }, { "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/500757173329096704\/photo\/1", @@ -2970,14 +2982,6 @@ Grailbird.data.tweets_2014_08 = "id" : 500757168656621569, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BvML_eSCIAEnOrJ.jpg", "sizes" : [ { - "h" : 1200, - "resize" : "fit", - "w" : 900 - }, { - "h" : 2048, - "resize" : "fit", - "w" : 1536 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2989,7 +2993,16 @@ Grailbird.data.tweets_2014_08 = "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 900 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1536 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/zkAEjyPCxI" } ], "hashtags" : [ ], @@ -3055,6 +3068,14 @@ Grailbird.data.tweets_2014_08 = "id" : 500708892268318720, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BvLgFauIUAA2qnj.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 + }, { "h" : 510, "resize" : "fit", "w" : 680 @@ -3066,15 +3087,8 @@ Grailbird.data.tweets_2014_08 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/KEoN28mlJw" } ], "hashtags" : [ ], @@ -3104,7 +3118,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "717313", "id" : 717313 }, { - "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 115, 123 ], "id_str" : "11375732", @@ -3126,7 +3140,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/arstechnica.com\" rel=\"nofollow\"\u003EArs tweetbot\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 98, 106 ], "id_str" : "11375732", @@ -3202,6 +3216,14 @@ Grailbird.data.tweets_2014_08 = "id" : 500525133652434944, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BvI49QiCIAAdwPU.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { "h" : 1200, "resize" : "fit", "w" : 900 @@ -3209,19 +3231,12 @@ Grailbird.data.tweets_2014_08 = "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 680, - "resize" : "fit", - "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/JzpYFJEgDD" } ], "hashtags" : [ ], @@ -3359,13 +3374,7 @@ Grailbird.data.tweets_2014_08 = }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 3, 10 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -3448,7 +3457,7 @@ Grailbird.data.tweets_2014_08 = "screen_name" : "GonzoHacker", "protected" : false, "id_str" : "773009000", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/698208463449489408\/qJuiSmrC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920078035533090816\/qM6ROxQX_normal.jpg", "id" : 773009000, "verified" : false } @@ -3566,7 +3575,13 @@ Grailbird.data.tweets_2014_08 = }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ ], + "user_mentions" : [ { + "name" : "Dave", + "screen_name" : "thebouridentity", + "indices" : [ 0, 16 ], + "id_str" : "962819970404143105", + "id" : 962819970404143105 + } ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -3704,7 +3719,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u062A\u0648\u0645", + "name" : "tom", "screen_name" : "Inferis", "indices" : [ 3, 11 ], "id_str" : "66573", @@ -3731,11 +3746,11 @@ Grailbird.data.tweets_2014_08 = "id" : 491866917784002560, "created_at" : "2014-07-23 08:46:26 +0000", "user" : { - "name" : "\u062A\u0648\u0645", + "name" : "tom", "screen_name" : "Inferis", "protected" : false, "id_str" : "66573", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/889381054426996736\/GmCNuVJZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/926578520028889088\/VmEnLJ56_normal.jpg", "id" : 66573, "verified" : false } @@ -4061,7 +4076,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "7668432", "id" : 7668432 }, { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "indices" : [ 9, 23 ], "id_str" : "2550058153", @@ -4127,10 +4142,6 @@ Grailbird.data.tweets_2014_08 = "id" : 498867072081100800, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BuxU9X2IgAAz7wa.jpg", "sizes" : [ { - "h" : 512, - "resize" : "fit", - "w" : 1024 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4142,11 +4153,16 @@ Grailbird.data.tweets_2014_08 = "h" : 512, "resize" : "fit", "w" : 1024 + }, { + "h" : 512, + "resize" : "fit", + "w" : 1024 }, { "h" : 340, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/LRkdoCGDpl" } ], "hashtags" : [ ], @@ -4174,10 +4190,6 @@ Grailbird.data.tweets_2014_08 = "id" : 498867072081100800, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BuxU9X2IgAAz7wa.jpg", "sizes" : [ { - "h" : 512, - "resize" : "fit", - "w" : 1024 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4189,11 +4201,16 @@ Grailbird.data.tweets_2014_08 = "h" : 512, "resize" : "fit", "w" : 1024 + }, { + "h" : 512, + "resize" : "fit", + "w" : 1024 }, { "h" : 340, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/LRkdoCGDpl" } ], "hashtags" : [ ], @@ -4262,13 +4279,13 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "indices" : [ 3, 17 ], "id_str" : "2550058153", "id" : 2550058153 }, { - "name" : "Zachary Ogre", + "name" : "Zachary Michael Scott Orr", "screen_name" : "ZacharyOrr", "indices" : [ 38, 49 ], "id_str" : "100290468", @@ -4290,7 +4307,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zachary Ogre", + "name" : "Zachary Michael Scott Orr", "screen_name" : "ZacharyOrr", "indices" : [ 19, 30 ], "id_str" : "100290468", @@ -4311,7 +4328,7 @@ Grailbird.data.tweets_2014_08 = "id" : 498141056345853953, "created_at" : "2014-08-09 16:17:37 +0000", "user" : { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "protected" : false, "id_str" : "2550058153", @@ -4371,7 +4388,7 @@ Grailbird.data.tweets_2014_08 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } @@ -4444,26 +4461,27 @@ Grailbird.data.tweets_2014_08 = "id" : 497506418946473984, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bud_c77IAAApvmZ.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/kBy33itzxe" } ], "hashtags" : [ ], @@ -4520,7 +4538,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "indices" : [ 0, 14 ], "id_str" : "2550058153", @@ -4948,7 +4966,7 @@ Grailbird.data.tweets_2014_08 = "screen_name" : "dhh", "protected" : false, "id_str" : "14561327", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2556368541\/alng5gtlmjhrdlr3qxqv_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/975876868455809024\/eK7mDppU_normal.jpg", "id" : 14561327, "verified" : true } @@ -4968,7 +4986,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "The Walking Ed", + "name" : "Ed Zitron", "screen_name" : "edzitron", "indices" : [ 3, 12 ], "id_str" : "18359716", @@ -5005,11 +5023,11 @@ Grailbird.data.tweets_2014_08 = "id" : 495239173922492416, "created_at" : "2014-08-01 16:06:34 +0000", "user" : { - "name" : "The Walking Ed", + "name" : "Ed Zitron", "screen_name" : "edzitron", "protected" : false, "id_str" : "18359716", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/887196011633926144\/qIGa-HGg_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/948789160881528833\/1Q7K6ubj_normal.jpg", "id" : 18359716, "verified" : true } @@ -5029,13 +5047,13 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "The Walking Ed", + "name" : "Ed Zitron", "screen_name" : "edzitron", "indices" : [ 0, 9 ], "id_str" : "18359716", "id" : 18359716 }, { - "name" : "Chriscreama Warren", + "name" : "Christina Warren", "screen_name" : "film_girl", "indices" : [ 10, 20 ], "id_str" : "9866582", diff --git a/public/tweets/data/js/tweets/2014_09.js b/public/tweets/data/js/tweets/2014_09.js index 66a4c72..18d77b7 100755 --- a/public/tweets/data/js/tweets/2014_09.js +++ b/public/tweets/data/js/tweets/2014_09.js @@ -196,22 +196,23 @@ Grailbird.data.tweets_2014_09 = "resize" : "fit", "w" : 750 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 275, + "resize" : "fit", + "w" : 750 }, { "h" : 249, "resize" : "fit", "w" : 680 }, { - "h" : 275, - "resize" : "fit", - "w" : 750 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 275, "resize" : "fit", "w" : 750 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/onmIbAoAl1" } ], "hashtags" : [ ], @@ -379,6 +380,7 @@ Grailbird.data.tweets_2014_09 = "resize" : "fit", "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/wxjVNb5urK" } ], "hashtags" : [ ], @@ -416,6 +418,10 @@ Grailbird.data.tweets_2014_09 = "id" : 515887087791259648, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/ByjMkrQCQAA2t-k.png", "sizes" : [ { + "h" : 1090, + "resize" : "fit", + "w" : 1222 + }, { "h" : 607, "resize" : "fit", "w" : 680 @@ -423,19 +429,16 @@ Grailbird.data.tweets_2014_09 = "h" : 1090, "resize" : "fit", "w" : 1222 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1090, - "resize" : "fit", - "w" : 1222 }, { "h" : 1070, "resize" : "fit", "w" : 1200 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/uVTkmp9KDa" } ], "hashtags" : [ ], @@ -537,7 +540,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", @@ -926,7 +929,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", @@ -1068,19 +1071,20 @@ Grailbird.data.tweets_2014_09 = "h" : 231, "resize" : "fit", "w" : 321 + }, { + "h" : 231, + "resize" : "fit", + "w" : 321 + }, { + "h" : 231, + "resize" : "fit", + "w" : 321 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 231, - "resize" : "fit", - "w" : 321 - }, { - "h" : 231, - "resize" : "fit", - "w" : 321 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/9nDanigi4v" } ], "hashtags" : [ ], @@ -1161,7 +1165,7 @@ Grailbird.data.tweets_2014_09 = "id_str" : "102119907", "id" : 102119907 }, { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 8, 24 ], "id_str" : "15267898", @@ -1735,14 +1739,6 @@ Grailbird.data.tweets_2014_09 = "id" : 513798620286816256, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/ByFhH3hIEAAiOh5.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1754,7 +1750,16 @@ Grailbird.data.tweets_2014_09 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ImriTiQHEH" } ], "hashtags" : [ ], @@ -1983,6 +1988,14 @@ Grailbird.data.tweets_2014_09 = "id" : 513730474703720448, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/ByEjJRcCEAA4SXO.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 + }, { "h" : 510, "resize" : "fit", "w" : 680 @@ -1994,15 +2007,8 @@ Grailbird.data.tweets_2014_09 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/2RpdY3N9Mf" } ], "hashtags" : [ ], @@ -2035,6 +2041,14 @@ Grailbird.data.tweets_2014_09 = "id" : 513725972630487040, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/ByEfDN6IQAACryA.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 410 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 618 + }, { "h" : 1024, "resize" : "fit", "w" : 618 @@ -2046,15 +2060,8 @@ Grailbird.data.tweets_2014_09 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 680, - "resize" : "fit", - "w" : 410 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 618 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/1syxUFEbjt" } ], "hashtags" : [ ], @@ -2489,6 +2496,14 @@ Grailbird.data.tweets_2014_09 = "id" : 513083608610127873, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bx7W0tdIQAEvBQ1.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 + }, { "h" : 1536, "resize" : "fit", "w" : 2048 @@ -2500,15 +2515,8 @@ Grailbird.data.tweets_2014_09 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/YAxOif7xca" } ], "hashtags" : [ ], @@ -2585,7 +2593,7 @@ Grailbird.data.tweets_2014_09 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925763991820836864\/nmUFyJez_normal.jpg", "id" : 36183, "verified" : false } @@ -2944,6 +2952,10 @@ Grailbird.data.tweets_2014_09 = "h" : 512, "resize" : "fit", "w" : 602 + }, { + "h" : 512, + "resize" : "fit", + "w" : 602 }, { "h" : 150, "resize" : "crop", @@ -2956,11 +2968,8 @@ Grailbird.data.tweets_2014_09 = "h" : 512, "resize" : "fit", "w" : 602 - }, { - "h" : 512, - "resize" : "fit", - "w" : 602 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/okUCTJdboq" } ], "hashtags" : [ ], @@ -3033,14 +3042,6 @@ Grailbird.data.tweets_2014_09 = "id" : 512667298071842816, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bx1cMP2IEAA9XNr.jpg", "sizes" : [ { - "h" : 333, - "resize" : "fit", - "w" : 500 - }, { - "h" : 333, - "resize" : "fit", - "w" : 500 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3052,7 +3053,16 @@ Grailbird.data.tweets_2014_09 = "h" : 333, "resize" : "fit", "w" : 500 + }, { + "h" : 333, + "resize" : "fit", + "w" : 500 + }, { + "h" : 333, + "resize" : "fit", + "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/YIr7tue5lB" } ], "hashtags" : [ ], @@ -3153,10 +3163,6 @@ Grailbird.data.tweets_2014_09 = "id" : 512251224180400128, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bxvhxj0IIAAXLjC.jpg", "sizes" : [ { - "h" : 328, - "resize" : "fit", - "w" : 536 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3172,7 +3178,12 @@ Grailbird.data.tweets_2014_09 = "h" : 328, "resize" : "fit", "w" : 536 + }, { + "h" : 328, + "resize" : "fit", + "w" : 536 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/XkH0LOBLgH" } ], "hashtags" : [ { @@ -3208,26 +3219,27 @@ Grailbird.data.tweets_2014_09 = "id" : 512650270862741504, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bx1MtIjIEAAlWzE.png", "sizes" : [ { - "h" : 37, - "resize" : "fit", - "w" : 224 - }, { - "h" : 37, - "resize" : "fit", - "w" : 224 - }, { - "h" : 37, - "resize" : "fit", - "w" : 224 - }, { - "h" : 37, - "resize" : "fit", - "w" : 224 - }, { "h" : 37, "resize" : "crop", "w" : 37 + }, { + "h" : 37, + "resize" : "fit", + "w" : 224 + }, { + "h" : 37, + "resize" : "fit", + "w" : 224 + }, { + "h" : 37, + "resize" : "fit", + "w" : 224 + }, { + "h" : 37, + "resize" : "fit", + "w" : 224 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/JUhv2Cl2yK" } ], "hashtags" : [ ], @@ -3563,7 +3575,7 @@ Grailbird.data.tweets_2014_09 = "screen_name" : "1Password", "protected" : false, "id_str" : "793926", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/904715544414351360\/6XdEq2Mq_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981326545179439104\/jPhaQEQv_normal.jpg", "id" : 793926, "verified" : true } @@ -3670,6 +3682,10 @@ Grailbird.data.tweets_2014_09 = "id" : 512066135638827008, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bxs5b_RCYAASFls.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 1024, "resize" : "fit", "w" : 577 @@ -3681,15 +3697,12 @@ Grailbird.data.tweets_2014_09 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/aEEeKNYgA1" } ], "hashtags" : [ { @@ -3714,6 +3727,10 @@ Grailbird.data.tweets_2014_09 = "id" : 512066135638827008, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bxs5b_RCYAASFls.png", "sizes" : [ { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { "h" : 1024, "resize" : "fit", "w" : 577 @@ -3725,15 +3742,12 @@ Grailbird.data.tweets_2014_09 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 }, { "h" : 1024, "resize" : "fit", "w" : 577 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/aEEeKNYgA1" } ], "hashtags" : [ { @@ -3860,7 +3874,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "nick gauthier", + "name" : "Nick Gauthier", "screen_name" : "ngauthier", "indices" : [ 3, 13 ], "id_str" : "15243796", @@ -3897,11 +3911,11 @@ Grailbird.data.tweets_2014_09 = "id" : 511900906422808576, "created_at" : "2014-09-16 15:34:21 +0000", "user" : { - "name" : "nick gauthier", + "name" : "Nick Gauthier", "screen_name" : "ngauthier", "protected" : false, "id_str" : "15243796", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916309660667330560\/mXLHWOtB_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985857187191902208\/nRolEvPB_normal.jpg", "id" : 15243796, "verified" : false } @@ -4172,6 +4186,10 @@ Grailbird.data.tweets_2014_09 = "h" : 437, "resize" : "fit", "w" : 475 + }, { + "h" : 437, + "resize" : "fit", + "w" : 475 }, { "h" : 150, "resize" : "crop", @@ -4184,11 +4202,8 @@ Grailbird.data.tweets_2014_09 = "h" : 437, "resize" : "fit", "w" : 475 - }, { - "h" : 437, - "resize" : "fit", - "w" : 475 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/QjVCevnbHC" } ], "hashtags" : [ ], @@ -4213,6 +4228,10 @@ Grailbird.data.tweets_2014_09 = "h" : 437, "resize" : "fit", "w" : 475 + }, { + "h" : 437, + "resize" : "fit", + "w" : 475 }, { "h" : 150, "resize" : "crop", @@ -4225,11 +4244,8 @@ Grailbird.data.tweets_2014_09 = "h" : 437, "resize" : "fit", "w" : 475 - }, { - "h" : 437, - "resize" : "fit", - "w" : 475 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/QjVCevnbHC" } ], "hashtags" : [ ], @@ -4301,6 +4317,14 @@ Grailbird.data.tweets_2014_09 = "id" : 511332038754856962, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bxidx7RCcAIBUx7.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { "h" : 1200, "resize" : "fit", "w" : 900 @@ -4308,19 +4332,12 @@ Grailbird.data.tweets_2014_09 = "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 680, - "resize" : "fit", - "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/7Lzna1fIxK" } ], "hashtags" : [ ], @@ -4505,6 +4522,7 @@ Grailbird.data.tweets_2014_09 = "resize" : "fit", "w" : 600 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Wbphz7EjFC" } ], "hashtags" : [ ], @@ -4731,19 +4749,20 @@ Grailbird.data.tweets_2014_09 = "h" : 1136, "resize" : "fit", "w" : 640 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 680, "resize" : "fit", "w" : 383 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 1136, "resize" : "fit", "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/nbwoKoNOU2" } ], "hashtags" : [ ], @@ -5068,18 +5087,6 @@ Grailbird.data.tweets_2014_09 = "id" : 510123674687393792, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BxRSx4VCUAAc43t.jpg", "sizes" : [ { - "h" : 203, - "resize" : "fit", - "w" : 610 - }, { - "h" : 203, - "resize" : "fit", - "w" : 610 - }, { - "h" : 203, - "resize" : "fit", - "w" : 610 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -5087,7 +5094,20 @@ Grailbird.data.tweets_2014_09 = "h" : 203, "resize" : "fit", "w" : 610 + }, { + "h" : 203, + "resize" : "fit", + "w" : 610 + }, { + "h" : 203, + "resize" : "fit", + "w" : 610 + }, { + "h" : 203, + "resize" : "fit", + "w" : 610 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/4lsdkWT9Y4" } ], "hashtags" : [ ], @@ -5116,7 +5136,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Pascal Haunted \uD83D\uDC80", + "name" : "Pascal Hartig", "screen_name" : "passy", "indices" : [ 3, 9 ], "id_str" : "14383077", @@ -5135,22 +5155,23 @@ Grailbird.data.tweets_2014_09 = "resize" : "fit", "w" : 1720 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 1496, + "resize" : "fit", + "w" : 1720 }, { "h" : 591, "resize" : "fit", "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 1044, "resize" : "fit", "w" : 1200 - }, { - "h" : 1496, - "resize" : "fit", - "w" : 1720 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/unVOWlNd7p" }, { "expanded_url" : "https:\/\/twitter.com\/passy\/status\/509711664543838209\/photo\/1", @@ -5161,6 +5182,10 @@ Grailbird.data.tweets_2014_09 = "id" : 509711633082753024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BxLcB5vIIAAXyYH.png", "sizes" : [ { + "h" : 1024, + "resize" : "fit", + "w" : 1200 + }, { "h" : 580, "resize" : "fit", "w" : 680 @@ -5176,11 +5201,8 @@ Grailbird.data.tweets_2014_09 = "h" : 1466, "resize" : "fit", "w" : 1718 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/unVOWlNd7p" } ], "hashtags" : [ ], @@ -5206,22 +5228,23 @@ Grailbird.data.tweets_2014_09 = "resize" : "fit", "w" : 1720 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 1496, + "resize" : "fit", + "w" : 1720 }, { "h" : 591, "resize" : "fit", "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 1044, "resize" : "fit", "w" : 1200 - }, { - "h" : 1496, - "resize" : "fit", - "w" : 1720 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/unVOWlNd7p" }, { "expanded_url" : "https:\/\/twitter.com\/passy\/status\/509711664543838209\/photo\/1", @@ -5232,6 +5255,10 @@ Grailbird.data.tweets_2014_09 = "id" : 509711633082753024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BxLcB5vIIAAXyYH.png", "sizes" : [ { + "h" : 1024, + "resize" : "fit", + "w" : 1200 + }, { "h" : 580, "resize" : "fit", "w" : 680 @@ -5247,11 +5274,8 @@ Grailbird.data.tweets_2014_09 = "h" : 1466, "resize" : "fit", "w" : 1718 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/unVOWlNd7p" } ], "hashtags" : [ ], @@ -5263,7 +5287,7 @@ Grailbird.data.tweets_2014_09 = "id" : 509711664543838209, "created_at" : "2014-09-10 14:35:05 +0000", "user" : { - "name" : "Pascal Haunted \uD83D\uDC80", + "name" : "Pascal Hartig", "screen_name" : "passy", "protected" : false, "id_str" : "14383077", diff --git a/public/tweets/data/js/tweets/2014_10.js b/public/tweets/data/js/tweets/2014_10.js index 78a92b0..5f022b4 100755 --- a/public/tweets/data/js/tweets/2014_10.js +++ b/public/tweets/data/js/tweets/2014_10.js @@ -45,26 +45,27 @@ Grailbird.data.tweets_2014_10 = "id" : 528266408191225856, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B1THf9cCcAA71r0.jpg", "sizes" : [ { - "h" : 510, - "resize" : "fit", - "w" : 680 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 1536, "resize" : "fit", "w" : 2048 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 2448, "resize" : "fit", "w" : 3264 }, { - "h" : 900, + "h" : 510, "resize" : "fit", - "w" : 1200 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/YEvwMbUc0N" } ], "hashtags" : [ ], @@ -103,14 +104,6 @@ Grailbird.data.tweets_2014_10 = "id" : 528133366139199490, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B1ROf5LCIAIcGM-.png", "sizes" : [ { - "h" : 775, - "resize" : "fit", - "w" : 585 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { "h" : 680, "resize" : "fit", "w" : 513 @@ -122,7 +115,16 @@ Grailbird.data.tweets_2014_10 = "h" : 775, "resize" : "fit", "w" : 585 + }, { + "h" : 775, + "resize" : "fit", + "w" : 585 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/VtnvxrKzKg" } ], "hashtags" : [ ], @@ -144,14 +146,6 @@ Grailbird.data.tweets_2014_10 = "id" : 528133366139199490, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B1ROf5LCIAIcGM-.png", "sizes" : [ { - "h" : 775, - "resize" : "fit", - "w" : 585 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { "h" : 680, "resize" : "fit", "w" : 513 @@ -163,7 +157,16 @@ Grailbird.data.tweets_2014_10 = "h" : 775, "resize" : "fit", "w" : 585 + }, { + "h" : 775, + "resize" : "fit", + "w" : 585 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/VtnvxrKzKg" } ], "hashtags" : [ ], @@ -248,19 +251,20 @@ Grailbird.data.tweets_2014_10 = "h" : 341, "resize" : "fit", "w" : 572 + }, { + "h" : 341, + "resize" : "fit", + "w" : 572 + }, { + "h" : 341, + "resize" : "fit", + "w" : 572 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 341, - "resize" : "fit", - "w" : 572 - }, { - "h" : 341, - "resize" : "fit", - "w" : 572 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ORMDdKM8tU" } ], "hashtags" : [ ], @@ -347,6 +351,7 @@ Grailbird.data.tweets_2014_10 = "resize" : "fit", "w" : 761 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Zt1II7WzD5" } ], "hashtags" : [ ], @@ -718,26 +723,27 @@ Grailbird.data.tweets_2014_10 = "id" : 527610699762003969, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B1JzItMCcAEOrCg.jpg", "sizes" : [ { - "h" : 1200, - "resize" : "fit", - "w" : 900 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 3264, "resize" : "fit", "w" : 2448 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 900 }, { "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 680, - "resize" : "fit", - "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ESDQ7azWIj" } ], "hashtags" : [ ], @@ -773,10 +779,6 @@ Grailbird.data.tweets_2014_10 = "h" : 510, "resize" : "fit", "w" : 680 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 }, { "h" : 150, "resize" : "crop", @@ -789,7 +791,12 @@ Grailbird.data.tweets_2014_10 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/rMZ0eZxK8D" } ], "hashtags" : [ ], @@ -846,7 +853,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", @@ -1392,14 +1399,6 @@ Grailbird.data.tweets_2014_10 = "id" : 525807175051259905, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B0wK1wFIMAEyZ-d.jpg", "sizes" : [ { - "h" : 680, - "resize" : "fit", - "w" : 680 - }, { - "h" : 960, - "resize" : "fit", - "w" : 960 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1411,7 +1410,16 @@ Grailbird.data.tweets_2014_10 = "h" : 960, "resize" : "fit", "w" : 960 + }, { + "h" : 680, + "resize" : "fit", + "w" : 680 + }, { + "h" : 960, + "resize" : "fit", + "w" : 960 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/X03D16IXqR" } ], "hashtags" : [ ], @@ -1634,18 +1642,6 @@ Grailbird.data.tweets_2014_10 = "id" : 525767464529821696, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B0vmuS3CAAAEu2A.jpg", "sizes" : [ { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1653,7 +1649,20 @@ Grailbird.data.tweets_2014_10 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/JzJn9caylQ" } ], "hashtags" : [ ], @@ -2337,14 +2346,6 @@ Grailbird.data.tweets_2014_10 = "h" : 279, "resize" : "fit", "w" : 250 - }, { - "h" : 279, - "resize" : "fit", - "w" : 250 - }, { - "h" : 279, - "resize" : "fit", - "w" : 250 }, { "h" : 150, "resize" : "crop", @@ -2353,7 +2354,16 @@ Grailbird.data.tweets_2014_10 = "h" : 279, "resize" : "fit", "w" : 250 + }, { + "h" : 279, + "resize" : "fit", + "w" : 250 + }, { + "h" : 279, + "resize" : "fit", + "w" : 250 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ZYFOEtzEok" } ], "hashtags" : [ ], @@ -2913,7 +2923,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "14106454", "id" : 14106454 }, { - "name" : "Accidental Tech", + "name" : "Accidental Tech Podcast", "screen_name" : "atpfm", "indices" : [ 9, 15 ], "id_str" : "1253355925", @@ -2928,17 +2938,17 @@ Grailbird.data.tweets_2014_10 = "id" : 523322788799852544, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B0M3TcFIMAAPE8o.jpg", "sizes" : [ { - "h" : 1200, + "h" : 680, "resize" : "fit", - "w" : 900 + "w" : 510 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 680, + "h" : 1200, "resize" : "fit", - "w" : 510 + "w" : 900 }, { "h" : 1280, "resize" : "fit", @@ -2948,6 +2958,7 @@ Grailbird.data.tweets_2014_10 = "resize" : "fit", "w" : 960 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/o0RHJcjWol" } ], "hashtags" : [ ], @@ -3027,13 +3038,13 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "US Dept of Interior", + "name" : "US Department of the Interior", "screen_name" : "Interior", "indices" : [ 3, 12 ], "id_str" : "76348185", "id" : 76348185 }, { - "name" : "Yosemite National Pk", + "name" : "Yosemite National Park", "screen_name" : "YosemiteNPS", "indices" : [ 59, 71 ], "id_str" : "18726942", @@ -3048,13 +3059,17 @@ Grailbird.data.tweets_2014_10 = "id" : 523125881112231936, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B0KEN5yCAAAq3-J.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 1361, "resize" : "fit", "w" : 2048 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 1361, + "resize" : "fit", + "w" : 2048 }, { "h" : 452, "resize" : "fit", @@ -3063,11 +3078,8 @@ Grailbird.data.tweets_2014_10 = "h" : 797, "resize" : "fit", "w" : 1200 - }, { - "h" : 1361, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/TU4dFSzot1" } ], "hashtags" : [ { @@ -3083,7 +3095,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Yosemite National Pk", + "name" : "Yosemite National Park", "screen_name" : "YosemiteNPS", "indices" : [ 45, 57 ], "id_str" : "18726942", @@ -3098,13 +3110,17 @@ Grailbird.data.tweets_2014_10 = "id" : 523125881112231936, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B0KEN5yCAAAq3-J.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 1361, "resize" : "fit", "w" : 2048 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 1361, + "resize" : "fit", + "w" : 2048 }, { "h" : 452, "resize" : "fit", @@ -3113,11 +3129,8 @@ Grailbird.data.tweets_2014_10 = "h" : 797, "resize" : "fit", "w" : 1200 - }, { - "h" : 1361, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/TU4dFSzot1" } ], "hashtags" : [ { @@ -3132,7 +3145,7 @@ Grailbird.data.tweets_2014_10 = "id" : 523125882970701825, "created_at" : "2014-10-17 14:58:24 +0000", "user" : { - "name" : "US Dept of Interior", + "name" : "US Department of the Interior", "screen_name" : "Interior", "protected" : false, "id_str" : "76348185", @@ -3162,7 +3175,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "7618252", "id" : 7618252 }, { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 8, 24 ], "id_str" : "15267898", @@ -3378,7 +3391,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"https:\/\/dev.twitter.com\/docs\/tfw\" rel=\"nofollow\"\u003ETwitter for Websites\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83D\uDC0D", + "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", "screen_name" : "danbenjamin", "indices" : [ 15, 27 ], "id_str" : "5905672", @@ -3450,7 +3463,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter Peirce", + "name" : "Peter", "screen_name" : "peterpeirce", "indices" : [ 3, 15 ], "id_str" : "257694434", @@ -3494,11 +3507,11 @@ Grailbird.data.tweets_2014_10 = "in_reply_to_screen_name" : "gruber", "in_reply_to_user_id_str" : "33423", "user" : { - "name" : "Peter Peirce", + "name" : "Peter", "screen_name" : "peterpeirce", "protected" : false, "id_str" : "257694434", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/763444901535178752\/aSSE9Gou_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/969042806634409984\/f2uzaory_normal.jpg", "id" : 257694434, "verified" : false } @@ -3549,7 +3562,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "panzer", "protected" : false, "id_str" : "19312115", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849673057811800064\/-x31599m_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972174840017793024\/EBlzynRx_normal.jpg", "id" : 19312115, "verified" : true } @@ -3690,7 +3703,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "elonmusk", "protected" : false, "id_str" : "44196397", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/782474226020200448\/zDo-gAo0_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972170159614906369\/0o9cdCOp_normal.jpg", "id" : 44196397, "verified" : true } @@ -3822,9 +3835,9 @@ Grailbird.data.tweets_2014_10 = "resize" : "fit", "w" : 382 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 1200, + "resize" : "fit", + "w" : 675 }, { "h" : 2048, "resize" : "fit", @@ -3834,10 +3847,11 @@ Grailbird.data.tweets_2014_10 = "resize" : "fit", "w" : 1242 }, { - "h" : 1200, - "resize" : "fit", - "w" : 675 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/nd4gSBOd6C" } ], "hashtags" : [ ], @@ -4079,7 +4093,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "mrgan!", + "name" : "Neven Mrgan", "screen_name" : "mrgan", "indices" : [ 3, 9 ], "id_str" : "35293", @@ -4111,11 +4125,11 @@ Grailbird.data.tweets_2014_10 = "id" : 521751633823555584, "created_at" : "2014-10-13 19:57:37 +0000", "user" : { - "name" : "mrgan!", + "name" : "Neven Mrgan", "screen_name" : "mrgan", "protected" : false, "id_str" : "35293", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914585912507428864\/-s_wTdcj_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925719886457847808\/Vuf2uyPY_normal.jpg", "id" : 35293, "verified" : true } @@ -4168,7 +4182,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan DiGangi", + "name" : "Dan DiGangi \uD83D\uDCA1", "screen_name" : "dandigangi", "indices" : [ 0, 11 ], "id_str" : "192625645", @@ -4216,10 +4230,6 @@ Grailbird.data.tweets_2014_10 = "id" : 520956600400748545, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BzrPRJZIIAEl2mr.jpg", "sizes" : [ { - "h" : 466, - "resize" : "fit", - "w" : 600 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4235,7 +4245,12 @@ Grailbird.data.tweets_2014_10 = "h" : 466, "resize" : "fit", "w" : 600 + }, { + "h" : 466, + "resize" : "fit", + "w" : 600 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/iQJNJ6ylwE" } ], "hashtags" : [ ], @@ -4257,10 +4272,6 @@ Grailbird.data.tweets_2014_10 = "id" : 520956600400748545, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BzrPRJZIIAEl2mr.jpg", "sizes" : [ { - "h" : 466, - "resize" : "fit", - "w" : 600 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4276,7 +4287,12 @@ Grailbird.data.tweets_2014_10 = "h" : 466, "resize" : "fit", "w" : 600 + }, { + "h" : 466, + "resize" : "fit", + "w" : 600 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/iQJNJ6ylwE" } ], "hashtags" : [ ], @@ -4308,67 +4324,6 @@ Grailbird.data.tweets_2014_10 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Curt Clifton \uD83D\uDCCE", - "screen_name" : "curtclifton", - "indices" : [ 3, 15 ], - "id_str" : "14355211", - "id" : 14355211 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 114, 136 ], - "url" : "http:\/\/t.co\/0EldDdpGFa", - "expanded_url" : "http:\/\/mjtsai.com\/blog\/2014\/10\/11\/apples-software-quality-decline\/", - "display_url" : "mjtsai.com\/blog\/2014\/10\/1\u2026" - } ] - }, - "geo" : { }, - "id_str" : "520990653862658048", - "text" : "RT @curtclifton: This is a damning series of quotes when you recognize the authors as among Apple\u2019s biggest fans. http:\/\/t.co\/0EldDdpGFa", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 97, 119 ], - "url" : "http:\/\/t.co\/0EldDdpGFa", - "expanded_url" : "http:\/\/mjtsai.com\/blog\/2014\/10\/11\/apples-software-quality-decline\/", - "display_url" : "mjtsai.com\/blog\/2014\/10\/1\u2026" - } ] - }, - "geo" : { }, - "id_str" : "520957411377426432", - "text" : "This is a damning series of quotes when you recognize the authors as among Apple\u2019s biggest fans. http:\/\/t.co\/0EldDdpGFa", - "id" : 520957411377426432, - "created_at" : "2014-10-11 15:21:40 +0000", - "user" : { - "name" : "Curt Clifton \uD83D\uDCCE", - "screen_name" : "curtclifton", - "protected" : false, - "id_str" : "14355211", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918964762356072448\/KfnHbpfj_normal.jpg", - "id" : 14355211, - "verified" : false - } - }, - "id" : 520990653862658048, - "created_at" : "2014-10-11 17:33:46 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E", "entities" : { @@ -4432,6 +4387,10 @@ Grailbird.data.tweets_2014_10 = "id" : 520367335811469313, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bzi3VbvCUAEy7vF.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 1200, "resize" : "fit", "w" : 900 @@ -4439,10 +4398,6 @@ Grailbird.data.tweets_2014_10 = "h" : 680, "resize" : "fit", "w" : 510 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 2048, "resize" : "fit", @@ -4452,6 +4407,7 @@ Grailbird.data.tweets_2014_10 = "resize" : "fit", "w" : 1536 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/v8iVq6Hjar" } ], "hashtags" : [ ], @@ -4467,7 +4423,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "hmason", "protected" : false, "id_str" : "765548", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1290564266\/me_square_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/948689418709323777\/sTBM3vG0_normal.jpg", "id" : 765548, "verified" : true } @@ -4608,10 +4564,6 @@ Grailbird.data.tweets_2014_10 = "h" : 878, "resize" : "fit", "w" : 1158 - }, { - "h" : 878, - "resize" : "fit", - "w" : 1158 }, { "h" : 516, "resize" : "fit", @@ -4620,7 +4572,12 @@ Grailbird.data.tweets_2014_10 = "h" : 878, "resize" : "fit", "w" : 1158 + }, { + "h" : 878, + "resize" : "fit", + "w" : 1158 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/QY3rX0SLVy" } ], "hashtags" : [ ], @@ -4655,10 +4612,6 @@ Grailbird.data.tweets_2014_10 = "h" : 878, "resize" : "fit", "w" : 1158 - }, { - "h" : 878, - "resize" : "fit", - "w" : 1158 }, { "h" : 516, "resize" : "fit", @@ -4667,7 +4620,12 @@ Grailbird.data.tweets_2014_10 = "h" : 878, "resize" : "fit", "w" : 1158 + }, { + "h" : 878, + "resize" : "fit", + "w" : 1158 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/QY3rX0SLVy" } ], "hashtags" : [ ], @@ -4871,7 +4829,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC7B SpooooookyMan \uD83D\uDC7B", + "name" : "Jeff Kelley", "screen_name" : "SlaunchaMan", "indices" : [ 0, 12 ], "id_str" : "14868897", @@ -4980,7 +4938,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "Kyle_MacLachlan", "protected" : false, "id_str" : "286311652", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/647070239658782720\/64jtyoYB_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/969699726538002434\/1Ae1D5iN_normal.jpg", "id" : 286311652, "verified" : true } @@ -5106,7 +5064,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 12, 28 ], "id_str" : "15267898", @@ -5145,7 +5103,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 12, 28 ], "id_str" : "15267898", @@ -5565,6 +5523,14 @@ Grailbird.data.tweets_2014_10 = "id" : 517779430064672768, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/By-FpfkCUAAqlgH.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 + }, { "h" : 510, "resize" : "fit", "w" : 680 @@ -5576,15 +5542,8 @@ Grailbird.data.tweets_2014_10 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/3pxo9J6UMH" } ], "hashtags" : [ ], @@ -5605,7 +5564,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "phillipsbeer", "protected" : false, "id_str" : "65141250", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/888070528841302017\/-94mWGXa_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961012152403353601\/nf4-Ilid_normal.jpg", "id" : 65141250, "verified" : false } @@ -5625,7 +5584,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John-David Dalton", + "name" : "John-David \u201Cjust works\u201D Dalton", "screen_name" : "jdalton", "indices" : [ 0, 8 ], "id_str" : "14272162", diff --git a/public/tweets/data/js/tweets/2014_11.js b/public/tweets/data/js/tweets/2014_11.js index 11b5f0f..994e062 100755 --- a/public/tweets/data/js/tweets/2014_11.js +++ b/public/tweets/data/js/tweets/2014_11.js @@ -77,7 +77,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } @@ -139,9 +139,17 @@ Grailbird.data.tweets_2014_11 = "id" : 538559470843224064, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B3lY_D4IYAAkKch.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 2448, "resize" : "fit", "w" : 3264 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 }, { "h" : 510, "resize" : "fit", @@ -150,15 +158,8 @@ Grailbird.data.tweets_2014_11 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/pjOaF2PNgJ" } ], "hashtags" : [ ], @@ -335,26 +336,27 @@ Grailbird.data.tweets_2014_11 = "id" : 538274409333547008, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B3hVuTACYAAAPxX.jpg", "sizes" : [ { - "h" : 1200, - "resize" : "fit", - "w" : 900 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 3264, "resize" : "fit", "w" : 2448 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 900 }, { "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 680, - "resize" : "fit", - "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/UPZTpHt82x" } ], "hashtags" : [ ], @@ -376,26 +378,27 @@ Grailbird.data.tweets_2014_11 = "id" : 538274409333547008, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B3hVuTACYAAAPxX.jpg", "sizes" : [ { - "h" : 1200, - "resize" : "fit", - "w" : 900 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 3264, "resize" : "fit", "w" : 2448 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 900 }, { "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 680, - "resize" : "fit", - "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/UPZTpHt82x" } ], "hashtags" : [ ], @@ -696,6 +699,10 @@ Grailbird.data.tweets_2014_11 = "id" : 537064412402561024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B3QJPNLCMAAW6EC.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 680, "resize" : "fit", "w" : 383 @@ -703,10 +710,6 @@ Grailbird.data.tweets_2014_11 = "h" : 876, "resize" : "fit", "w" : 493 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 876, "resize" : "fit", @@ -716,6 +719,7 @@ Grailbird.data.tweets_2014_11 = "resize" : "fit", "w" : 493 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/jHXS2jOrfN" } ], "hashtags" : [ { @@ -756,10 +760,6 @@ Grailbird.data.tweets_2014_11 = "id" : 537042041176195072, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B3P05B3CAAAiBvF.jpg", "sizes" : [ { - "h" : 229, - "resize" : "fit", - "w" : 1024 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -775,7 +775,12 @@ Grailbird.data.tweets_2014_11 = "h" : 152, "resize" : "fit", "w" : 680 + }, { + "h" : 229, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ziJuBgsOgc" } ], "hashtags" : [ ], @@ -973,26 +978,27 @@ Grailbird.data.tweets_2014_11 = "id" : 536349797746102272, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B3F_TKICUAAGV8z.jpg", "sizes" : [ { - "h" : 680, + "h" : 2048, "resize" : "fit", - "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "w" : 2048 }, { "h" : 2448, "resize" : "fit", "w" : 2448 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 1200, "resize" : "fit", "w" : 1200 }, { - "h" : 2048, + "h" : 680, "resize" : "fit", - "w" : 2048 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ROIUfz2x61" } ], "hashtags" : [ ], @@ -1047,7 +1053,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "Conorpope", "protected" : false, "id_str" : "19507934", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/895206629611892736\/C7430r0l_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/969938233932042240\/KExegKLu_normal.jpg", "id" : 19507934, "verified" : false } @@ -1716,7 +1722,7 @@ Grailbird.data.tweets_2014_11 = "id_str" : "746449286783733764", "id" : 746449286783733764 }, { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 19, 35 ], "id_str" : "15267898", @@ -1785,7 +1791,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "mraleph", "protected" : false, "id_str" : "53010195", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/428865653903081472\/XqtZKTVu_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961923701641039872\/TWwOK7mW_normal.jpg", "id" : 53010195, "verified" : false } @@ -2104,26 +2110,27 @@ Grailbird.data.tweets_2014_11 = "id" : 533696826268860417, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B2gSb5OCQAEI2eH.jpg", "sizes" : [ { - "h" : 680, - "resize" : "fit", - "w" : 510 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 3264, + "resize" : "fit", + "w" : 2448 }, { "h" : 1200, "resize" : "fit", "w" : 900 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 }, { "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 3264, - "resize" : "fit", - "w" : 2448 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/HmoXmeP0II" } ], "hashtags" : [ ], @@ -2200,7 +2207,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -2253,7 +2260,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "indices" : [ 0, 13 ], "id_str" : "1628814223", @@ -2439,13 +2446,7 @@ Grailbird.data.tweets_2014_11 = }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 70, 77 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -2691,7 +2692,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "ustwogames", "protected" : false, "id_str" : "899902687", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/908747492963049474\/FJWKjSJI_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/943469724868009984\/cr8BMsJM_normal.jpg", "id" : 899902687, "verified" : true } @@ -2792,9 +2793,13 @@ Grailbird.data.tweets_2014_11 = "id" : 532397512758685696, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B2N0t5NIcAA2_Dm.jpg", "sizes" : [ { - "h" : 391, + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 883, "resize" : "fit", - "w" : 680 + "w" : 1536 }, { "h" : 690, "resize" : "fit", @@ -2804,14 +2809,11 @@ Grailbird.data.tweets_2014_11 = "resize" : "fit", "w" : 1536 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 883, + "h" : 391, "resize" : "fit", - "w" : 1536 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/duYVBQzmPS" } ], "hashtags" : [ ], @@ -2836,62 +2838,6 @@ Grailbird.data.tweets_2014_11 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "indices" : [ 3, 17 ], - "id_str" : "809685", - "id" : 809685 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "532282101148942336", - "text" : "RT @garybernhardt: Programmers! Go to this gist and follow its instructions to find out whether you've lost data. Please comment too. https\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 115, 138 ], - "url" : "https:\/\/t.co\/X0tliVedXM", - "expanded_url" : "https:\/\/gist.github.com\/garybernhardt\/b1a8cc6eacbfa9ea8100", - "display_url" : "gist.github.com\/garybernhardt\/\u2026" - } ] - }, - "geo" : { }, - "id_str" : "532276348744892416", - "text" : "Programmers! Go to this gist and follow its instructions to find out whether you've lost data. Please comment too. https:\/\/t.co\/X0tliVedXM", - "id" : 532276348744892416, - "created_at" : "2014-11-11 20:59:05 +0000", - "user" : { - "name" : "Gary Bernhardt", - "screen_name" : "garybernhardt", - "protected" : false, - "id_str" : "809685", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1170938305\/twitter_headshot_normal.png", - "id" : 809685, - "verified" : false - } - }, - "id" : 532282101148942336, - "created_at" : "2014-11-11 21:21:56 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { @@ -2998,26 +2944,27 @@ Grailbird.data.tweets_2014_11 = "id" : 531926794505437184, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B2HImfECQAAipLR.jpg", "sizes" : [ { - "h" : 462, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1275, + "resize" : "fit", + "w" : 1875 + }, { + "h" : 1275, + "resize" : "fit", + "w" : 1875 }, { "h" : 816, "resize" : "fit", "w" : 1200 }, { - "h" : 1275, + "h" : 462, "resize" : "fit", - "w" : 1875 - }, { - "h" : 1275, - "resize" : "fit", - "w" : 1875 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/STXAEwA1Zp" } ], "hashtags" : [ ], @@ -3038,7 +2985,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "phillipsbeer", "protected" : false, "id_str" : "65141250", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/888070528841302017\/-94mWGXa_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961012152403353601\/nf4-Ilid_normal.jpg", "id" : 65141250, "verified" : false } @@ -3342,7 +3289,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -3427,18 +3374,6 @@ Grailbird.data.tweets_2014_11 = "id" : 531030800377335808, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B16Zsw1IUAA4lPx.jpg", "sizes" : [ { - "h" : 254, - "resize" : "fit", - "w" : 517 - }, { - "h" : 254, - "resize" : "fit", - "w" : 517 - }, { - "h" : 254, - "resize" : "fit", - "w" : 517 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3446,7 +3381,20 @@ Grailbird.data.tweets_2014_11 = "h" : 254, "resize" : "fit", "w" : 517 + }, { + "h" : 254, + "resize" : "fit", + "w" : 517 + }, { + "h" : 254, + "resize" : "fit", + "w" : 517 + }, { + "h" : 254, + "resize" : "fit", + "w" : 517 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/nR0USlEmQU" } ], "hashtags" : [ ], @@ -3474,18 +3422,6 @@ Grailbird.data.tweets_2014_11 = "id" : 531030800377335808, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B16Zsw1IUAA4lPx.jpg", "sizes" : [ { - "h" : 254, - "resize" : "fit", - "w" : 517 - }, { - "h" : 254, - "resize" : "fit", - "w" : 517 - }, { - "h" : 254, - "resize" : "fit", - "w" : 517 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3493,7 +3429,20 @@ Grailbird.data.tweets_2014_11 = "h" : 254, "resize" : "fit", "w" : 517 + }, { + "h" : 254, + "resize" : "fit", + "w" : 517 + }, { + "h" : 254, + "resize" : "fit", + "w" : 517 + }, { + "h" : 254, + "resize" : "fit", + "w" : 517 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/nR0USlEmQU" } ], "hashtags" : [ ], @@ -3844,7 +3793,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Spooky Anil Dash \uD83C\uDF83", + "name" : "Anil Dash", "screen_name" : "anildash", "indices" : [ 3, 12 ], "id_str" : "36823", @@ -3888,11 +3837,11 @@ Grailbird.data.tweets_2014_11 = "in_reply_to_screen_name" : "gruber", "in_reply_to_user_id_str" : "33423", "user" : { - "name" : "Spooky Anil Dash \uD83C\uDF83", + "name" : "Anil Dash", "screen_name" : "anildash", "protected" : false, "id_str" : "36823", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915191237338177536\/cZoGK6nh_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964333187328491520\/nPt-GBf5_normal.jpg", "id" : 36823, "verified" : true } @@ -3978,7 +3927,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -4005,7 +3954,7 @@ Grailbird.data.tweets_2014_11 = "id" : 530464423341985792, "created_at" : "2014-11-06 20:59:08 +0000", "user" : { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -4029,7 +3978,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "indices" : [ 0, 13 ], "id_str" : "1628814223", @@ -4062,7 +4011,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "indices" : [ 0, 13 ], "id_str" : "1628814223", @@ -4095,7 +4044,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "CGP Grey \uD83D\uDC1D", + "name" : "CGP Grey", "screen_name" : "cgpgrey", "indices" : [ 0, 8 ], "id_str" : "176774540", @@ -4164,9 +4113,17 @@ Grailbird.data.tweets_2014_11 = "id" : 530199344641617921, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B1ulfq2CMAE-VFD.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 2448, "resize" : "fit", "w" : 3264 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 }, { "h" : 510, "resize" : "fit", @@ -4175,15 +4132,8 @@ Grailbird.data.tweets_2014_11 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ZqwqodKDiE" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2014_12.js b/public/tweets/data/js/tweets/2014_12.js index c2a5d0e..30be8b0 100755 --- a/public/tweets/data/js/tweets/2014_12.js +++ b/public/tweets/data/js/tweets/2014_12.js @@ -34,14 +34,6 @@ Grailbird.data.tweets_2014_12 = "id" : 550346286713425922, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B6M5CCsCUAIsce3.jpg", "sizes" : [ { - "h" : 214, - "resize" : "fit", - "w" : 225 - }, { - "h" : 214, - "resize" : "fit", - "w" : 225 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -53,7 +45,16 @@ Grailbird.data.tweets_2014_12 = "h" : 214, "resize" : "fit", "w" : 225 + }, { + "h" : 214, + "resize" : "fit", + "w" : 225 + }, { + "h" : 214, + "resize" : "fit", + "w" : 225 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/U2F2Zg5Dwg" } ], "hashtags" : [ ], @@ -571,13 +572,9 @@ Grailbird.data.tweets_2014_12 = "id" : 548682938099851264, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B51QOaPCYAAMz_-.jpg", "sizes" : [ { - "h" : 1024, + "h" : 680, "resize" : "fit", - "w" : 575 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 575 + "w" : 382 }, { "h" : 150, "resize" : "crop", @@ -587,10 +584,15 @@ Grailbird.data.tweets_2014_12 = "resize" : "fit", "w" : 575 }, { - "h" : 680, + "h" : 1024, "resize" : "fit", - "w" : 382 + "w" : 575 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 575 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/23h3Cqh8jS" } ], "hashtags" : [ ], @@ -628,14 +630,6 @@ Grailbird.data.tweets_2014_12 = "id" : 548571551079989248, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B5zq61QCAAACfmq.jpg", "sizes" : [ { - "h" : 246, - "resize" : "fit", - "w" : 576 - }, { - "h" : 246, - "resize" : "fit", - "w" : 576 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -647,7 +641,16 @@ Grailbird.data.tweets_2014_12 = "h" : 246, "resize" : "fit", "w" : 576 + }, { + "h" : 246, + "resize" : "fit", + "w" : 576 + }, { + "h" : 246, + "resize" : "fit", + "w" : 576 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ovbqtbMv8a" } ], "hashtags" : [ ], @@ -671,7 +674,7 @@ Grailbird.data.tweets_2014_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "darth:\u2122", + "name" : "darth\u2122", "screen_name" : "darth", "indices" : [ 37, 43 ], "id_str" : "1337271", @@ -686,14 +689,6 @@ Grailbird.data.tweets_2014_12 = "id" : 548159543218171905, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B5t0M0XCcAEgOHF.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -705,7 +700,16 @@ Grailbird.data.tweets_2014_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OtTknhq5m5" } ], "hashtags" : [ ], @@ -867,7 +871,7 @@ Grailbird.data.tweets_2014_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "indices" : [ 0, 14 ], "id_str" : "2550058153", @@ -956,7 +960,7 @@ Grailbird.data.tweets_2014_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "indices" : [ 3, 17 ], "id_str" : "2550058153", @@ -993,7 +997,7 @@ Grailbird.data.tweets_2014_12 = "id" : 547736821959258112, "created_at" : "2014-12-24 12:53:29 +0000", "user" : { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "protected" : false, "id_str" : "2550058153", @@ -1062,14 +1066,14 @@ Grailbird.data.tweets_2014_12 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 }, { "h" : 680, "resize" : "fit", @@ -1079,6 +1083,7 @@ Grailbird.data.tweets_2014_12 = "resize" : "fit", "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/jBGYkRPRsv" } ], "hashtags" : [ ], @@ -1111,10 +1116,6 @@ Grailbird.data.tweets_2014_12 = "id" : 547419757217972224, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B5jTXmwCAAAc9no.jpg", "sizes" : [ { - "h" : 450, - "resize" : "fit", - "w" : 600 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1130,7 +1131,12 @@ Grailbird.data.tweets_2014_12 = "h" : 450, "resize" : "fit", "w" : 600 + }, { + "h" : 450, + "resize" : "fit", + "w" : 600 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/4crX8xmQuj" } ], "hashtags" : [ ], @@ -1214,13 +1220,7 @@ Grailbird.data.tweets_2014_12 = }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 98, 105 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -1258,14 +1258,6 @@ Grailbird.data.tweets_2014_12 = "id" : 547085360648318976, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B5ejPKdCcAAbxgM.png", "sizes" : [ { - "h" : 243, - "resize" : "fit", - "w" : 723 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { "h" : 229, "resize" : "fit", "w" : 680 @@ -1277,7 +1269,16 @@ Grailbird.data.tweets_2014_12 = "h" : 243, "resize" : "fit", "w" : 723 + }, { + "h" : 243, + "resize" : "fit", + "w" : 723 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/3zWZOWuUR2" } ], "hashtags" : [ ], @@ -1706,7 +1707,7 @@ Grailbird.data.tweets_2014_12 = "screen_name" : "Jordan_D", "protected" : false, "id_str" : "43960973", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/549197080237846529\/pH8yWNtc_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/978360504325427200\/x6REye4B_normal.jpg", "id" : 43960973, "verified" : false } @@ -2347,14 +2348,6 @@ Grailbird.data.tweets_2014_12 = "id" : 544201776182743042, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B41kodOCUAIzcA3.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2366,7 +2359,16 @@ Grailbird.data.tweets_2014_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/9ZUAsV1zHn" } ], "hashtags" : [ ], @@ -2388,14 +2390,6 @@ Grailbird.data.tweets_2014_12 = "id" : 544201776182743042, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B41kodOCUAIzcA3.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2407,7 +2401,16 @@ Grailbird.data.tweets_2014_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/9ZUAsV1zHn" } ], "hashtags" : [ ], @@ -2511,6 +2514,7 @@ Grailbird.data.tweets_2014_12 = "resize" : "fit", "w" : 540 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/4yJ4RqV6f6" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2015_01.js b/public/tweets/data/js/tweets/2015_01.js index bdd40ff..057470c 100755 --- a/public/tweets/data/js/tweets/2015_01.js +++ b/public/tweets/data/js/tweets/2015_01.js @@ -195,13 +195,7 @@ Grailbird.data.tweets_2015_01 = }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Janie Larson", - "screen_name" : "picturelife", - "indices" : [ 0, 12 ], - "id_str" : "1489526450", - "id" : 1489526450 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -224,12 +218,6 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Janie Larson", - "screen_name" : "picturelife", - "indices" : [ 3, 15 ], - "id_str" : "1489526450", - "id" : 1489526450 - }, { "name" : "Dropbox", "screen_name" : "Dropbox", "indices" : [ 101, 109 ], @@ -410,6 +398,10 @@ Grailbird.data.tweets_2015_01 = "h" : 994, "resize" : "fit", "w" : 1024 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 660, "resize" : "fit", @@ -418,15 +410,12 @@ Grailbird.data.tweets_2015_01 = "h" : 994, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 994, "resize" : "fit", "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RTrwbyCH29" } ], "hashtags" : [ ], @@ -450,7 +439,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chriscreama Warren", + "name" : "Christina Warren", "screen_name" : "film_girl", "indices" : [ 0, 10 ], "id_str" : "9866582", @@ -483,9 +472,9 @@ Grailbird.data.tweets_2015_01 = "id" : 559930658336686080, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B8VF95UCQAACxfg.png", "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 2048, + "resize" : "fit", + "w" : 1828 }, { "h" : 2160, "resize" : "fit", @@ -495,14 +484,15 @@ Grailbird.data.tweets_2015_01 = "resize" : "fit", "w" : 607 }, { - "h" : 2048, - "resize" : "fit", - "w" : 1828 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 1200, "resize" : "fit", "w" : 1071 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/orFz8F1Qc5" } ], "hashtags" : [ ], @@ -545,10 +535,6 @@ Grailbird.data.tweets_2015_01 = "h" : 768, "resize" : "fit", "w" : 1024 - }, { - "h" : 768, - "resize" : "fit", - "w" : 1024 }, { "h" : 150, "resize" : "crop", @@ -557,7 +543,12 @@ Grailbird.data.tweets_2015_01 = "h" : 510, "resize" : "fit", "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/X4NrWxSxPm" } ], "hashtags" : [ ], @@ -581,7 +572,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -907,7 +898,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", @@ -976,26 +967,27 @@ Grailbird.data.tweets_2015_01 = "id" : 556261865173426176, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B7g9OBvCIAANkYk.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/PcdeaQgBfQ" } ], "hashtags" : [ ], @@ -1028,14 +1020,6 @@ Grailbird.data.tweets_2015_01 = "id" : 556167353084305408, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B7fnQsxCYAA_-nJ.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1047,7 +1031,16 @@ Grailbird.data.tweets_2015_01 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/70kW4gaa39" }, { "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/556167359249907712\/photo\/1", @@ -1058,14 +1051,6 @@ Grailbird.data.tweets_2015_01 = "id" : 556167353109446656, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B7fnQs3CAAAyXwb.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1077,7 +1062,16 @@ Grailbird.data.tweets_2015_01 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/70kW4gaa39" }, { "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/556167359249907712\/photo\/1", @@ -1088,10 +1082,6 @@ Grailbird.data.tweets_2015_01 = "id" : 556167353105256449, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B7fnQs2CEAEs8SM.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 767 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1107,7 +1097,12 @@ Grailbird.data.tweets_2015_01 = "h" : 680, "resize" : "fit", "w" : 509 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 767 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/70kW4gaa39" } ], "hashtags" : [ ], @@ -1211,7 +1206,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Twin Peaks : - ( ALL", + "name" : "Twin Peaks \uD83C\uDF11", "screen_name" : "ThatsOurWaldo", "indices" : [ 3, 17 ], "id_str" : "237944041", @@ -1226,14 +1221,6 @@ Grailbird.data.tweets_2015_01 = "id" : 556110636787068930, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B7ezrYGCcAIfBqa.jpg", "sizes" : [ { - "h" : 674, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 674, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1245,7 +1232,16 @@ Grailbird.data.tweets_2015_01 = "h" : 382, "resize" : "fit", "w" : 680 + }, { + "h" : 674, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 674, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/BKUoqzhIzZ" } ], "hashtags" : [ { @@ -1273,14 +1269,6 @@ Grailbird.data.tweets_2015_01 = "id" : 556110636787068930, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B7ezrYGCcAIfBqa.jpg", "sizes" : [ { - "h" : 674, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 674, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1292,7 +1280,16 @@ Grailbird.data.tweets_2015_01 = "h" : 382, "resize" : "fit", "w" : 680 + }, { + "h" : 674, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 674, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/BKUoqzhIzZ" } ], "hashtags" : [ { @@ -1310,11 +1307,11 @@ Grailbird.data.tweets_2015_01 = "id" : 556110638028955648, "created_at" : "2015-01-16 15:28:02 +0000", "user" : { - "name" : "Twin Peaks : - ( ALL", + "name" : "Twin Peaks \uD83C\uDF11", "screen_name" : "ThatsOurWaldo", "protected" : false, "id_str" : "237944041", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/905074364726595584\/iZSzIn7i_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981161258828300288\/vPz5Tood_normal.jpg", "id" : 237944041, "verified" : false } @@ -1637,57 +1634,6 @@ Grailbird.data.tweets_2015_01 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Tom Royal", - "screen_name" : "tomroyal", - "indices" : [ 3, 12 ], - "id_str" : "19588740", - "id" : 19588740 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "555393642269921281", - "text" : "RT @tomroyal: So here's a thing. Apple iOS price tier increases have resulted in all subscription auto-renews being canceled. Happy new yea\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "555360547735359488", - "text" : "So here's a thing. Apple iOS price tier increases have resulted in all subscription auto-renews being canceled. Happy new year, app devs!", - "id" : 555360547735359488, - "created_at" : "2015-01-14 13:47:27 +0000", - "user" : { - "name" : "Tom Royal", - "screen_name" : "tomroyal", - "protected" : false, - "id_str" : "19588740", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/769483988671066112\/CtDp60An_normal.jpg", - "id" : 19588740, - "verified" : true - } - }, - "id" : 555393642269921281, - "created_at" : "2015-01-14 15:58:57 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { @@ -1728,7 +1674,7 @@ Grailbird.data.tweets_2015_01 = "screen_name" : "VicBeerWeek", "protected" : false, "id_str" : "2196503131", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/806275059132174336\/tX5EpW6x_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/935578895893479424\/bTJybeAr_normal.jpg", "id" : 2196503131, "verified" : false } @@ -1748,7 +1694,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "shitpost muse", + "name" : "the second hardest problem in computer science", "screen_name" : "steveklabnik", "indices" : [ 0, 13 ], "id_str" : "22386062", @@ -1767,22 +1713,23 @@ Grailbird.data.tweets_2015_01 = "resize" : "fit", "w" : 384 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 191, + "h" : 216, "resize" : "fit", - "w" : 340 + "w" : 384 }, { "h" : 216, "resize" : "fit", "w" : 384 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 216, "resize" : "fit", "w" : 384 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Wo7MZImywK" } ], "hashtags" : [ ], @@ -1923,7 +1870,7 @@ Grailbird.data.tweets_2015_01 = "id_str" : "12591", "id" : 12591 }, { - "name" : "@rem ~ offline \uD83D\uDDA4", + "name" : "@rem", "screen_name" : "rem", "indices" : [ 9, 13 ], "id_str" : "648873", @@ -1956,7 +1903,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "@rem ~ offline \uD83D\uDDA4", + "name" : "@rem", "screen_name" : "rem", "indices" : [ 0, 4 ], "id_str" : "648873", @@ -2107,7 +2054,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Accidental Tech", + "name" : "Accidental Tech Podcast", "screen_name" : "atpfm", "indices" : [ 0, 6 ], "id_str" : "1253355925", @@ -2138,7 +2085,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Supeternatural Cohen", + "name" : "Peter Cohen", "screen_name" : "flargh", "indices" : [ 0, 7 ], "id_str" : "2960721", @@ -2210,7 +2157,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Supeternatural Cohen", + "name" : "Peter Cohen", "screen_name" : "flargh", "indices" : [ 0, 7 ], "id_str" : "2960721", @@ -2249,7 +2196,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jon Picnic", + "name" : "Picnic Coffee", "screen_name" : "PiCNiC_Coffee", "indices" : [ 0, 14 ], "id_str" : "165975834", @@ -3185,15 +3132,16 @@ Grailbird.data.tweets_2015_01 = "h" : 888, "resize" : "fit", "w" : 1328 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 888, "resize" : "fit", "w" : 1328 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ulgAA49ewg" } ], "hashtags" : [ ], @@ -3255,7 +3203,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Minkbot", + "name" : "Mink ette", "screen_name" : "mink_ette", "indices" : [ 3, 13 ], "id_str" : "24217237", @@ -3285,11 +3233,11 @@ Grailbird.data.tweets_2015_01 = "id" : 550573723317968896, "created_at" : "2015-01-01 08:46:19 +0000", "user" : { - "name" : "Minkbot", + "name" : "Mink ette", "screen_name" : "mink_ette", "protected" : false, "id_str" : "24217237", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916783444138618881\/Qxo-1XiF_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925685151929126912\/0pjXs26o_normal.jpg", "id" : 24217237, "verified" : false } @@ -3309,7 +3257,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve Streza \uD83C\uDF39", + "name" : "Steve Streza \uD83C\uDF39 (he\/they)", "screen_name" : "SteveStreza", "indices" : [ 3, 15 ], "id_str" : "658643", @@ -3336,7 +3284,7 @@ Grailbird.data.tweets_2015_01 = "id" : 550563414586580994, "created_at" : "2015-01-01 08:05:21 +0000", "user" : { - "name" : "Steve Streza \uD83C\uDF39", + "name" : "Steve Streza \uD83C\uDF39 (he\/they)", "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", diff --git a/public/tweets/data/js/tweets/2015_02.js b/public/tweets/data/js/tweets/2015_02.js index 56a7bf8..8f52d8e 100755 --- a/public/tweets/data/js/tweets/2015_02.js +++ b/public/tweets/data/js/tweets/2015_02.js @@ -40,26 +40,27 @@ Grailbird.data.tweets_2015_02 = "id" : 571445464525991936, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B-4un1GUcAAF9Jr.jpg", "sizes" : [ { - "h" : 511, - "resize" : "fit", - "w" : 968 - }, { - "h" : 511, - "resize" : "fit", - "w" : 968 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 359, "resize" : "fit", "w" : 680 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 511, + "resize" : "fit", + "w" : 968 + }, { + "h" : 511, + "resize" : "fit", + "w" : 968 }, { "h" : 511, "resize" : "fit", "w" : 968 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/EhzL1ymfqs" } ], "hashtags" : [ ], @@ -95,17 +96,17 @@ Grailbird.data.tweets_2015_02 = "id" : 571377221492801536, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B-3wjj_UAAA7Fs4.jpg", "sizes" : [ { - "h" : 377, - "resize" : "fit", - "w" : 680 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 568, "resize" : "fit", "w" : 1024 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 377, + "resize" : "fit", + "w" : 680 }, { "h" : 568, "resize" : "fit", @@ -115,6 +116,7 @@ Grailbird.data.tweets_2015_02 = "resize" : "fit", "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/LNmyG4q98o" } ], "hashtags" : [ ], @@ -174,7 +176,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -207,7 +209,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 3, 14 ], "id_str" : "18553922", @@ -251,11 +253,11 @@ Grailbird.data.tweets_2015_02 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "protected" : false, "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900845150158630913\/vYNWfyIR_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/931711648661954560\/Js14N7wp_normal.jpg", "id" : 18553922, "verified" : false } @@ -373,7 +375,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -395,19 +397,20 @@ Grailbird.data.tweets_2015_02 = "h" : 78, "resize" : "fit", "w" : 100 + }, { + "h" : 78, + "resize" : "fit", + "w" : 100 + }, { + "h" : 78, + "resize" : "fit", + "w" : 100 }, { "h" : 78, "resize" : "crop", "w" : 78 - }, { - "h" : 78, - "resize" : "fit", - "w" : 100 - }, { - "h" : 78, - "resize" : "fit", - "w" : 100 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/lQ6ALH9j9r" } ], "hashtags" : [ ], @@ -481,14 +484,6 @@ Grailbird.data.tweets_2015_02 = "id" : 570401773640228864, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B-p5ZBkUIAAYSiU.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -500,7 +495,16 @@ Grailbird.data.tweets_2015_02 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/o2E3cdoUL3" } ], "hashtags" : [ ], @@ -686,7 +690,7 @@ Grailbird.data.tweets_2015_02 = "screen_name" : "SubtleGradient", "protected" : false, "id_str" : "14405464", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/566657299\/thomas-aylott-75_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/974751815680983040\/6zOfX-Ls_normal.jpg", "id" : 14405464, "verified" : false } @@ -1043,14 +1047,6 @@ Grailbird.data.tweets_2015_02 = "id" : 568258224713777152, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B-Lb2DjCQAAoPDR.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 576 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1062,7 +1058,16 @@ Grailbird.data.tweets_2015_02 = "h" : 1024, "resize" : "fit", "w" : 576 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 576 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xG9dQAmfLZ" }, { "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/568258230737969153\/photo\/1", @@ -1077,9 +1082,9 @@ Grailbird.data.tweets_2015_02 = "resize" : "fit", "w" : 768 }, { - "h" : 680, + "h" : 1024, "resize" : "fit", - "w" : 510 + "w" : 768 }, { "h" : 150, "resize" : "crop", @@ -1089,10 +1094,11 @@ Grailbird.data.tweets_2015_02 = "resize" : "fit", "w" : 768 }, { - "h" : 1024, + "h" : 680, "resize" : "fit", - "w" : 768 + "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xG9dQAmfLZ" } ], "hashtags" : [ ], @@ -1116,7 +1122,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mike Monteiro", + "name" : "Mike Monteiro wants @jack fired.", "screen_name" : "monteiro", "indices" : [ 3, 12 ], "id_str" : "2426", @@ -1143,7 +1149,7 @@ Grailbird.data.tweets_2015_02 = "id" : 567515617914134528, "created_at" : "2015-02-17 02:47:21 +0000", "user" : { - "name" : "Mike Monteiro", + "name" : "Mike Monteiro wants @jack fired.", "screen_name" : "monteiro", "protected" : false, "id_str" : "2426", @@ -1173,7 +1179,7 @@ Grailbird.data.tweets_2015_02 = "id_str" : "31353077", "id" : 31353077 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 16, 28 ], "id_str" : "676363", @@ -1299,9 +1305,9 @@ Grailbird.data.tweets_2015_02 = "id" : 567520104997335040, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B-A8h1VCMAAmhbg.jpg", "sizes" : [ { - "h" : 680, + "h" : 1024, "resize" : "fit", - "w" : 680 + "w" : 1024 }, { "h" : 150, "resize" : "crop", @@ -1311,14 +1317,15 @@ Grailbird.data.tweets_2015_02 = "resize" : "fit", "w" : 1024 }, { - "h" : 1024, + "h" : 680, "resize" : "fit", - "w" : 1024 + "w" : 680 }, { "h" : 1024, "resize" : "fit", "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/d3ChQ2iuTZ" } ], "hashtags" : [ ], @@ -1402,7 +1409,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "2017, but forever", + "name" : "Dan Moren", "screen_name" : "dmoren", "indices" : [ 0, 7 ], "id_str" : "668243", @@ -1473,10 +1480,6 @@ Grailbird.data.tweets_2015_02 = "id" : 566742458227490816, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B915Q1XIAAAw9yn.jpg", "sizes" : [ { - "h" : 724, - "resize" : "fit", - "w" : 1024 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1492,7 +1495,12 @@ Grailbird.data.tweets_2015_02 = "h" : 724, "resize" : "fit", "w" : 1024 + }, { + "h" : 724, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/KJ81UTserg" } ], "hashtags" : [ ], @@ -1514,10 +1522,6 @@ Grailbird.data.tweets_2015_02 = "id" : 566742458227490816, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B915Q1XIAAAw9yn.jpg", "sizes" : [ { - "h" : 724, - "resize" : "fit", - "w" : 1024 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1533,7 +1537,12 @@ Grailbird.data.tweets_2015_02 = "h" : 724, "resize" : "fit", "w" : 1024 + }, { + "h" : 724, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/KJ81UTserg" } ], "hashtags" : [ ], @@ -1682,7 +1691,7 @@ Grailbird.data.tweets_2015_02 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -2004,26 +2013,27 @@ Grailbird.data.tweets_2015_02 = "id" : 565532209126576128, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B9ksjEIIEAAp_bH.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/cYDOJxusNf" } ], "hashtags" : [ ], @@ -2097,9 +2107,17 @@ Grailbird.data.tweets_2015_02 = "id" : 565391237738676224, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B9isVcyIQAA-SCJ.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 2448, "resize" : "fit", "w" : 3264 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 }, { "h" : 510, "resize" : "fit", @@ -2108,15 +2126,8 @@ Grailbird.data.tweets_2015_02 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0C10cUPMlH" } ], "hashtags" : [ ], @@ -2197,17 +2208,17 @@ Grailbird.data.tweets_2015_02 = "id_str" : "14977224", "id" : 14977224 }, { - "name" : "mother of assets \uD83D\uDC3E", + "name" : "snipe, mother of assets \uD83D\uDC3E", "screen_name" : "snipeyhead", "indices" : [ 26, 37 ], "id_str" : "14246782", "id" : 14246782 }, { - "name" : "(\u256F\u00B0\u25A1\u00B0\uFF09\u256F\uFE35\u253B\u2501\u253B u\u028E\u0279 )", - "screen_name" : "beerops", + "name" : "Beer Ops", + "screen_name" : "BeerOps", "indices" : [ 38, 46 ], - "id_str" : "260044118", - "id" : 260044118 + "id_str" : "959092177933688833", + "id" : 959092177933688833 } ], "media" : [ ], "hashtags" : [ ], @@ -2541,7 +2552,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brett Terpstra", + "name" : "Brett \uD835\uDCBE\uD835\uDC54\uD835\uDCC3\uD835\uDC5C\uD835\uDCC7\uD835\uDC52 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCC2\uD835\uDCB6\uD835\uDCC3 \uD835\uDCB7\uD835\uDC52\uD835\uDCBD\uD835\uDCBE\uD835\uDCC3\uD835\uDCB9 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCB8\uD835\uDCCA\uD835\uDCC7\uD835\uDCC9\uD835\uDCB6\uD835\uDCBE\uD835\uDCC3 Terpstra", "screen_name" : "ttscoff", "indices" : [ 3, 11 ], "id_str" : "777908", @@ -2568,11 +2579,11 @@ Grailbird.data.tweets_2015_02 = "id" : 563370850867748866, "created_at" : "2015-02-05 16:17:32 +0000", "user" : { - "name" : "Brett Terpstra", + "name" : "Brett \uD835\uDCBE\uD835\uDC54\uD835\uDCC3\uD835\uDC5C\uD835\uDCC7\uD835\uDC52 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCC2\uD835\uDCB6\uD835\uDCC3 \uD835\uDCB7\uD835\uDC52\uD835\uDCBD\uD835\uDCBE\uD835\uDCC3\uD835\uDCB9 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCB8\uD835\uDCCA\uD835\uDCC7\uD835\uDCC9\uD835\uDCB6\uD835\uDCBE\uD835\uDCC3 Terpstra", "screen_name" : "ttscoff", "protected" : false, "id_str" : "777908", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/876857829017178112\/_0ZjhLmZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/929746123383812096\/_anrgn6i_normal.jpg", "id" : 777908, "verified" : true } @@ -2592,7 +2603,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 3, 19 ], "id_str" : "15267898", @@ -2619,11 +2630,11 @@ Grailbird.data.tweets_2015_02 = "id" : 563314919597420545, "created_at" : "2015-02-05 12:35:17 +0000", "user" : { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/923969343087669248\/diAzr2_2_normal.jpg", "id" : 15267898, "verified" : true } @@ -2643,7 +2654,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 3, 19 ], "id_str" : "15267898", @@ -2669,6 +2680,14 @@ Grailbird.data.tweets_2015_02 = "id" : 563314876458995712, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B9FL5UQIEAAJLhr.png", "sizes" : [ { + "h" : 207, + "resize" : "fit", + "w" : 680 + }, { + "h" : 222, + "resize" : "fit", + "w" : 728 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2680,15 +2699,8 @@ Grailbird.data.tweets_2015_02 = "h" : 222, "resize" : "fit", "w" : 728 - }, { - "h" : 222, - "resize" : "fit", - "w" : 728 - }, { - "h" : 207, - "resize" : "fit", - "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ALWhOAilh6" } ], "hashtags" : [ ], @@ -2700,11 +2712,11 @@ Grailbird.data.tweets_2015_02 = "id" : 563314877394333696, "created_at" : "2015-02-05 12:35:07 +0000", "user" : { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/923969343087669248\/diAzr2_2_normal.jpg", "id" : 15267898, "verified" : true } @@ -2779,7 +2791,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chriscreama Warren", + "name" : "Christina Warren", "screen_name" : "film_girl", "indices" : [ 62, 72 ], "id_str" : "9866582", @@ -2916,10 +2928,6 @@ Grailbird.data.tweets_2015_02 = "id" : 562067623681458176, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B8zdhplIAAAz33i.jpg", "sizes" : [ { - "h" : 692, - "resize" : "fit", - "w" : 518 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2931,11 +2939,16 @@ Grailbird.data.tweets_2015_02 = "h" : 692, "resize" : "fit", "w" : 518 + }, { + "h" : 692, + "resize" : "fit", + "w" : 518 }, { "h" : 680, "resize" : "fit", "w" : 509 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0dbCgQNXc1" } ], "hashtags" : [ ], @@ -2957,10 +2970,6 @@ Grailbird.data.tweets_2015_02 = "id" : 562067623681458176, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B8zdhplIAAAz33i.jpg", "sizes" : [ { - "h" : 692, - "resize" : "fit", - "w" : 518 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2972,11 +2981,16 @@ Grailbird.data.tweets_2015_02 = "h" : 692, "resize" : "fit", "w" : 518 + }, { + "h" : 692, + "resize" : "fit", + "w" : 518 }, { "h" : 680, "resize" : "fit", "w" : 509 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0dbCgQNXc1" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2015_03.js b/public/tweets/data/js/tweets/2015_03.js index 98685e2..13004d6 100755 --- a/public/tweets/data/js/tweets/2015_03.js +++ b/public/tweets/data/js/tweets/2015_03.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 3, 19 ], "id_str" : "2436389418", @@ -47,11 +47,11 @@ Grailbird.data.tweets_2015_03 = "in_reply_to_screen_name" : "notch", "in_reply_to_user_id_str" : "63485337", "user" : { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "protected" : false, "id_str" : "2436389418", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919340959514607616\/-7DZSc_y_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985003054197018625\/irNuSVxr_normal.jpg", "id" : 2436389418, "verified" : false } @@ -77,7 +77,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "63485337", "id" : 63485337 }, { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 11, 27 ], "id_str" : "2436389418", @@ -94,7 +94,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 0, 16 ], "id_str" : "2436389418", @@ -139,7 +139,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 3, 19 ], "id_str" : "2436389418", @@ -178,11 +178,11 @@ Grailbird.data.tweets_2015_03 = "id" : 583000596006903809, "created_at" : "2015-03-31 20:19:08 +0000", "user" : { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "protected" : false, "id_str" : "2436389418", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919340959514607616\/-7DZSc_y_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985003054197018625\/irNuSVxr_normal.jpg", "id" : 2436389418, "verified" : false } @@ -202,7 +202,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "2017, but forever", + "name" : "Dan Moren", "screen_name" : "dmoren", "indices" : [ 3, 10 ], "id_str" : "668243", @@ -229,7 +229,7 @@ Grailbird.data.tweets_2015_03 = "id" : 583004098347339776, "created_at" : "2015-03-31 20:33:03 +0000", "user" : { - "name" : "2017, but forever", + "name" : "Dan Moren", "screen_name" : "dmoren", "protected" : false, "id_str" : "668243", @@ -396,14 +396,6 @@ Grailbird.data.tweets_2015_03 = "id" : 582266531846877184, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CBSgU2NU8AAbOUN.jpg", "sizes" : [ { - "h" : 200, - "resize" : "fit", - "w" : 200 - }, { - "h" : 200, - "resize" : "fit", - "w" : 200 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -415,7 +407,16 @@ Grailbird.data.tweets_2015_03 = "h" : 200, "resize" : "fit", "w" : 200 + }, { + "h" : 200, + "resize" : "fit", + "w" : 200 + }, { + "h" : 200, + "resize" : "fit", + "w" : 200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ncKpEN7Cv1" } ], "hashtags" : [ ], @@ -457,22 +458,23 @@ Grailbird.data.tweets_2015_03 = "resize" : "fit", "w" : 1068 }, { - "h" : 264, + "h" : 414, "resize" : "fit", - "w" : 680 + "w" : 1068 + }, { + "h" : 414, + "resize" : "fit", + "w" : 1068 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 414, + "h" : 264, "resize" : "fit", - "w" : 1068 - }, { - "h" : 414, - "resize" : "fit", - "w" : 1068 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/9ZWFTRJl6I" } ], "hashtags" : [ ], @@ -991,6 +993,18 @@ Grailbird.data.tweets_2015_03 = "id" : 579486235380424704, "media_url_https" : "https:\/\/pbs.twimg.com\/tweet_video_thumb\/CAq_qSwUIAABM3k.png", "sizes" : [ { + "h" : 240, + "resize" : "fit", + "w" : 222 + }, { + "h" : 240, + "resize" : "fit", + "w" : 222 + }, { + "h" : 240, + "resize" : "fit", + "w" : 222 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -998,19 +1012,8 @@ Grailbird.data.tweets_2015_03 = "h" : 240, "resize" : "fit", "w" : 222 - }, { - "h" : 240, - "resize" : "fit", - "w" : 222 - }, { - "h" : 240, - "resize" : "fit", - "w" : 222 - }, { - "h" : 240, - "resize" : "fit", - "w" : 222 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ukkYEd884R" } ], "hashtags" : [ ], @@ -1204,7 +1207,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "@rem ~ offline \uD83D\uDDA4", + "name" : "@rem", "screen_name" : "rem", "indices" : [ 0, 4 ], "id_str" : "648873", @@ -1369,7 +1372,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", @@ -1498,7 +1501,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "@rem ~ offline \uD83D\uDDA4", + "name" : "@rem", "screen_name" : "rem", "indices" : [ 0, 4 ], "id_str" : "648873", @@ -1664,7 +1667,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Farhad Manjoo \uD83C\uDF6D", + "name" : "Farhad Manjoo: taint team", "screen_name" : "fmanjoo", "indices" : [ 0, 8 ], "id_str" : "2195241", @@ -1930,7 +1933,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "717313", "id" : 717313 }, { - "name" : "Andrew Pumpkingham \uD83C\uDF83", + "name" : "Andrew Cunningham", "screen_name" : "AndrewWrites", "indices" : [ 120, 133 ], "id_str" : "181395652", @@ -2346,7 +2349,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "jim_rutherford", "protected" : false, "id_str" : "385193", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/832751720409149442\/dL2heO0o_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/973247748538421248\/tazuySV5_normal.jpg", "id" : 385193, "verified" : false } @@ -2449,7 +2452,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "9660102", "id" : 9660102 }, { - "name" : "Ash Furr\uD83C\uDF83w", + "name" : "Ash Furrow (or is it?) (it is.)", "screen_name" : "ashfurrow", "indices" : [ 14, 24 ], "id_str" : "15536268", @@ -2531,7 +2534,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "2480079168", "id" : 2480079168 }, { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 44, 60 ], "id_str" : "2436389418", @@ -2630,7 +2633,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/getfalcon.pro\" rel=\"nofollow\"\u003EFalcon Pro 2015\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 36, 52 ], "id_str" : "2436389418", @@ -2823,27 +2826,16 @@ Grailbird.data.tweets_2015_03 = }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "John Wright", - "screen_name" : "mrjjwright", - "indices" : [ 0, 11 ], - "id_str" : "8408512", - "id" : 8408512 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "576440417660469249", "geo" : { }, "id_str" : "576440863951204352", - "in_reply_to_user_id" : 8408512, "text" : "@mrjjwright Or even something like the plist editor in Xcode. Or a better text format. Lots of better alternatives.", "id" : 576440863951204352, - "in_reply_to_status_id" : 576440417660469249, "created_at" : "2015-03-13 17:53:06 +0000", - "in_reply_to_screen_name" : "mrjjwright", - "in_reply_to_user_id_str" : "8408512", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -2856,13 +2848,7 @@ Grailbird.data.tweets_2015_03 = }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 0, 7 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -2889,13 +2875,7 @@ Grailbird.data.tweets_2015_03 = }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 0, 7 ], - "id_str" : "3221374703", - "id" : 3221374703 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -3019,7 +2999,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "panzer", "protected" : false, "id_str" : "19312115", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849673057811800064\/-x31599m_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972174840017793024\/EBlzynRx_normal.jpg", "id" : 19312115, "verified" : true } @@ -3098,7 +3078,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "mashable", "protected" : false, "id_str" : "972651", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/884451753940451333\/XjbzDyYL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/941796662770651137\/cDtLVz1j_normal.jpg", "id" : 972651, "verified" : true } @@ -3515,13 +3495,9 @@ Grailbird.data.tweets_2015_03 = "id" : 575483380554297345, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B_yHFegUcAESBbF.jpg", "sizes" : [ { - "h" : 1024, + "h" : 680, "resize" : "fit", - "w" : 575 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 575 + "w" : 382 }, { "h" : 150, "resize" : "crop", @@ -3531,10 +3507,15 @@ Grailbird.data.tweets_2015_03 = "resize" : "fit", "w" : 575 }, { - "h" : 680, + "h" : 1024, "resize" : "fit", - "w" : 382 + "w" : 575 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 575 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/hiygEE49oR" } ], "hashtags" : [ { @@ -3565,13 +3546,9 @@ Grailbird.data.tweets_2015_03 = "id" : 575483380554297345, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/B_yHFegUcAESBbF.jpg", "sizes" : [ { - "h" : 1024, + "h" : 680, "resize" : "fit", - "w" : 575 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 575 + "w" : 382 }, { "h" : 150, "resize" : "crop", @@ -3581,10 +3558,15 @@ Grailbird.data.tweets_2015_03 = "resize" : "fit", "w" : 575 }, { - "h" : 680, + "h" : 1024, "resize" : "fit", - "w" : 382 + "w" : 575 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 575 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/hiygEE49oR" } ], "hashtags" : [ { @@ -3608,7 +3590,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "theadamv", "protected" : false, "id_str" : "855277615", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/765601583698673668\/jZGLxuoV_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/956922278385737736\/PznhMa97_normal.jpg", "id" : 855277615, "verified" : false } @@ -3718,7 +3700,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brett Terpstra", + "name" : "Brett \uD835\uDCBE\uD835\uDC54\uD835\uDCC3\uD835\uDC5C\uD835\uDCC7\uD835\uDC52 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCC2\uD835\uDCB6\uD835\uDCC3 \uD835\uDCB7\uD835\uDC52\uD835\uDCBD\uD835\uDCBE\uD835\uDCC3\uD835\uDCB9 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCB8\uD835\uDCCA\uD835\uDCC7\uD835\uDCC9\uD835\uDCB6\uD835\uDCBE\uD835\uDCC3 Terpstra", "screen_name" : "ttscoff", "indices" : [ 0, 8 ], "id_str" : "777908", @@ -3806,7 +3788,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Accidental Tech", + "name" : "Accidental Tech Podcast", "screen_name" : "atpfm", "indices" : [ 0, 6 ], "id_str" : "1253355925", @@ -3963,7 +3945,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Accidental Tech", + "name" : "Accidental Tech Podcast", "screen_name" : "atpfm", "indices" : [ 0, 6 ], "id_str" : "1253355925", @@ -4061,7 +4043,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "JonyIveParody", "protected" : false, "id_str" : "1197619002", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/907682304818139139\/vOOsM0Mf_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/968825533604728832\/srBlQNQ6_normal.jpg", "id" : 1197619002, "verified" : false } @@ -4347,6 +4329,10 @@ Grailbird.data.tweets_2015_03 = "h" : 181, "resize" : "fit", "w" : 457 + }, { + "h" : 181, + "resize" : "fit", + "w" : 457 }, { "h" : 150, "resize" : "crop", @@ -4355,11 +4341,8 @@ Grailbird.data.tweets_2015_03 = "h" : 181, "resize" : "fit", "w" : 457 - }, { - "h" : 181, - "resize" : "fit", - "w" : 457 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/45wtmAtVO5" } ], "hashtags" : [ ], @@ -4388,6 +4371,10 @@ Grailbird.data.tweets_2015_03 = "h" : 181, "resize" : "fit", "w" : 457 + }, { + "h" : 181, + "resize" : "fit", + "w" : 457 }, { "h" : 150, "resize" : "crop", @@ -4396,11 +4383,8 @@ Grailbird.data.tweets_2015_03 = "h" : 181, "resize" : "fit", "w" : 457 - }, { - "h" : 181, - "resize" : "fit", - "w" : 457 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/45wtmAtVO5" } ], "hashtags" : [ ], @@ -4416,7 +4400,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "j_c_fitz", "protected" : false, "id_str" : "14691845", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1147064398\/Avatar_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/986226729890009089\/sXSiFEK1_normal.jpg", "id" : 14691845, "verified" : false } @@ -4574,19 +4558,20 @@ Grailbird.data.tweets_2015_03 = "h" : 618, "resize" : "fit", "w" : 1092 + }, { + "h" : 618, + "resize" : "fit", + "w" : 1092 + }, { + "h" : 618, + "resize" : "fit", + "w" : 1092 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 618, - "resize" : "fit", - "w" : 1092 - }, { - "h" : 618, - "resize" : "fit", - "w" : 1092 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0oC2itOyHN" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2015_04.js b/public/tweets/data/js/tweets/2015_04.js index 10aaf9b..4611747 100755 --- a/public/tweets/data/js/tweets/2015_04.js +++ b/public/tweets/data/js/tweets/2015_04.js @@ -46,14 +46,6 @@ Grailbird.data.tweets_2015_04 = "id" : 593788779246129152, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CD2Pv6qUEAAJyQA.jpg", "sizes" : [ { - "h" : 633, - "resize" : "fit", - "w" : 680 - }, { - "h" : 652, - "resize" : "fit", - "w" : 700 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -65,7 +57,16 @@ Grailbird.data.tweets_2015_04 = "h" : 652, "resize" : "fit", "w" : 700 + }, { + "h" : 633, + "resize" : "fit", + "w" : 680 + }, { + "h" : 652, + "resize" : "fit", + "w" : 700 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Uc9bDHvDEW" } ], "hashtags" : [ ], @@ -157,7 +158,7 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "CGP Grey \uD83D\uDC1D", + "name" : "CGP Grey", "screen_name" : "cgpgrey", "indices" : [ 3, 11 ], "id_str" : "176774540", @@ -184,11 +185,11 @@ Grailbird.data.tweets_2015_04 = "id" : 593693675777040384, "created_at" : "2015-04-30 08:29:37 +0000", "user" : { - "name" : "CGP Grey \uD83D\uDC1D", + "name" : "CGP Grey", "screen_name" : "cgpgrey", "protected" : false, "id_str" : "176774540", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/818849105174786049\/8gGV_x8l_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/953635851212349440\/RvV5aFNp_normal.jpg", "id" : 176774540, "verified" : true } @@ -400,6 +401,14 @@ Grailbird.data.tweets_2015_04 = "h" : 205, "resize" : "fit", "w" : 250 + }, { + "h" : 205, + "resize" : "fit", + "w" : 250 + }, { + "h" : 205, + "resize" : "fit", + "w" : 250 }, { "h" : 150, "resize" : "crop", @@ -408,15 +417,8 @@ Grailbird.data.tweets_2015_04 = "h" : 205, "resize" : "fit", "w" : 250 - }, { - "h" : 205, - "resize" : "fit", - "w" : 250 - }, { - "h" : 205, - "resize" : "fit", - "w" : 250 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/X8sKjbsD3g" } ], "hashtags" : [ ], @@ -447,7 +449,7 @@ Grailbird.data.tweets_2015_04 = "id" : 291746508 }, { "name" : "Lapham's Quarterly", - "screen_name" : "LaphamsQuart", + "screen_name" : "laphamsquart", "indices" : [ 125, 138 ], "id_str" : "83665853", "id" : 83665853 @@ -469,7 +471,7 @@ Grailbird.data.tweets_2015_04 = "entities" : { "user_mentions" : [ { "name" : "Lapham's Quarterly", - "screen_name" : "LaphamsQuart", + "screen_name" : "laphamsquart", "indices" : [ 106, 119 ], "id_str" : "83665853", "id" : 83665853 @@ -574,7 +576,7 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Hallouieen", + "name" : "Louie", "screen_name" : "Mantia", "indices" : [ 0, 7 ], "id_str" : "41783", @@ -655,26 +657,27 @@ Grailbird.data.tweets_2015_04 = "id" : 591774301847588865, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CDZnl5jUkAEnmXi.jpg", "sizes" : [ { - "h" : 800, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 453, "resize" : "fit", "w" : 680 + }, { + "h" : 800, + "resize" : "fit", + "w" : 1200 }, { "h" : 1365, "resize" : "fit", "w" : 2048 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 1365, "resize" : "fit", "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/P4Cp1OwKD6" } ], "hashtags" : [ ], @@ -696,26 +699,27 @@ Grailbird.data.tweets_2015_04 = "id" : 591774301847588865, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CDZnl5jUkAEnmXi.jpg", "sizes" : [ { - "h" : 800, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 453, "resize" : "fit", "w" : 680 + }, { + "h" : 800, + "resize" : "fit", + "w" : 1200 }, { "h" : 1365, "resize" : "fit", "w" : 2048 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 1365, "resize" : "fit", "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/P4Cp1OwKD6" } ], "hashtags" : [ ], @@ -731,7 +735,7 @@ Grailbird.data.tweets_2015_04 = "screen_name" : "settern", "protected" : false, "id_str" : "14957252", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/823056413543059456\/E6_PmktI_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/932069685369229312\/AImAKFV7_normal.jpg", "id" : 14957252, "verified" : true } @@ -751,7 +755,7 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Hallouieen", + "name" : "Louie", "screen_name" : "Mantia", "indices" : [ 0, 7 ], "id_str" : "41783", @@ -811,7 +815,7 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 3, 19 ], "id_str" : "15267898", @@ -838,11 +842,11 @@ Grailbird.data.tweets_2015_04 = "id" : 591466894915280896, "created_at" : "2015-04-24 05:01:11 +0000", "user" : { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/923969343087669248\/diAzr2_2_normal.jpg", "id" : 15267898, "verified" : true } @@ -922,26 +926,27 @@ Grailbird.data.tweets_2015_04 = "id" : 591076499534536704, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CDPs8dXWYAAMsjT.jpg", "sizes" : [ { - "h" : 556, - "resize" : "fit", - "w" : 940 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 556, - "resize" : "fit", - "w" : 940 - }, { - "h" : 556, - "resize" : "fit", - "w" : 940 }, { "h" : 402, "resize" : "fit", "w" : 680 + }, { + "h" : 556, + "resize" : "fit", + "w" : 940 + }, { + "h" : 556, + "resize" : "fit", + "w" : 940 + }, { + "h" : 556, + "resize" : "fit", + "w" : 940 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OwWzLztRjS" } ], "hashtags" : [ ], @@ -969,26 +974,27 @@ Grailbird.data.tweets_2015_04 = "id" : 591076499534536704, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CDPs8dXWYAAMsjT.jpg", "sizes" : [ { - "h" : 556, - "resize" : "fit", - "w" : 940 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 556, - "resize" : "fit", - "w" : 940 - }, { - "h" : 556, - "resize" : "fit", - "w" : 940 }, { "h" : 402, "resize" : "fit", "w" : 680 + }, { + "h" : 556, + "resize" : "fit", + "w" : 940 + }, { + "h" : 556, + "resize" : "fit", + "w" : 940 + }, { + "h" : 556, + "resize" : "fit", + "w" : 940 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OwWzLztRjS" } ], "hashtags" : [ ], @@ -1039,17 +1045,17 @@ Grailbird.data.tweets_2015_04 = "id" : 590955126216478720, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CDN-jmhUUAAkYBw.jpg", "sizes" : [ { - "h" : 791, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 819, "resize" : "fit", "w" : 1242 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 791, + "resize" : "fit", + "w" : 1200 }, { "h" : 819, "resize" : "fit", @@ -1059,6 +1065,7 @@ Grailbird.data.tweets_2015_04 = "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/7nBoj8bXqI" } ], "hashtags" : [ ], @@ -1125,12 +1132,6 @@ Grailbird.data.tweets_2015_04 = "indices" : [ 3, 15 ], "id_str" : "717313", "id" : 717313 - }, { - "name" : "Chris Lee", - "screen_name" : "exmamaku", - "indices" : [ 94, 103 ], - "id_str" : "28078635", - "id" : 28078635 } ], "media" : [ ], "hashtags" : [ ], @@ -1147,13 +1148,7 @@ Grailbird.data.tweets_2015_04 = "retweeted_status" : { "source" : "\u003Ca href=\"http:\/\/arstechnica.com\" rel=\"nofollow\"\u003EArs tweetbot\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Chris Lee", - "screen_name" : "exmamaku", - "indices" : [ 77, 86 ], - "id_str" : "28078635", - "id" : 28078635 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ { @@ -1253,7 +1248,7 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003ETwitter Lite\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Liam O", + "name" : "Liam O \uD83E\uDD86", "screen_name" : "liamosaur", "indices" : [ 3, 13 ], "id_str" : "36612360", @@ -1271,10 +1266,6 @@ Grailbird.data.tweets_2015_04 = "h" : 95, "resize" : "fit", "w" : 503 - }, { - "h" : 95, - "resize" : "fit", - "w" : 503 }, { "h" : 95, "resize" : "crop", @@ -1287,7 +1278,12 @@ Grailbird.data.tweets_2015_04 = "h" : 95, "resize" : "fit", "w" : 503 + }, { + "h" : 95, + "resize" : "fit", + "w" : 503 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/gCRF9RLvHL" } ], "hashtags" : [ ], @@ -1312,10 +1308,6 @@ Grailbird.data.tweets_2015_04 = "h" : 95, "resize" : "fit", "w" : 503 - }, { - "h" : 95, - "resize" : "fit", - "w" : 503 }, { "h" : 95, "resize" : "crop", @@ -1328,7 +1320,12 @@ Grailbird.data.tweets_2015_04 = "h" : 95, "resize" : "fit", "w" : 503 + }, { + "h" : 95, + "resize" : "fit", + "w" : 503 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/gCRF9RLvHL" } ], "hashtags" : [ ], @@ -1340,7 +1337,7 @@ Grailbird.data.tweets_2015_04 = "id" : 506975850596536320, "created_at" : "2014-09-03 01:23:56 +0000", "user" : { - "name" : "Liam O", + "name" : "Liam O \uD83E\uDD86", "screen_name" : "liamosaur", "protected" : false, "id_str" : "36612360", @@ -1513,19 +1510,20 @@ Grailbird.data.tweets_2015_04 = "h" : 300, "resize" : "fit", "w" : 600 + }, { + "h" : 300, + "resize" : "fit", + "w" : 600 + }, { + "h" : 300, + "resize" : "fit", + "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 300, - "resize" : "fit", - "w" : 600 - }, { - "h" : 300, - "resize" : "fit", - "w" : 600 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/eEz6bCgSEX" } ], "hashtags" : [ ], @@ -1559,19 +1557,20 @@ Grailbird.data.tweets_2015_04 = "h" : 300, "resize" : "fit", "w" : 600 + }, { + "h" : 300, + "resize" : "fit", + "w" : 600 + }, { + "h" : 300, + "resize" : "fit", + "w" : 600 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 300, - "resize" : "fit", - "w" : 600 - }, { - "h" : 300, - "resize" : "fit", - "w" : 600 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/eEz6bCgSEX" } ], "hashtags" : [ ], @@ -1612,12 +1611,6 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kevin Gisi", - "screen_name" : "gisikw", - "indices" : [ 3, 10 ], - "id_str" : "3221374703", - "id" : 3221374703 - }, { "name" : "Sami Samhuri", "screen_name" : "_sjs", "indices" : [ 12, 17 ], @@ -1689,26 +1682,27 @@ Grailbird.data.tweets_2015_04 = "id" : 588943690514608128, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCxZKonUsAAte1R.jpg", "sizes" : [ { - "h" : 675, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 383, "resize" : "fit", "w" : 680 - }, { - "h" : 1152, - "resize" : "fit", - "w" : 2048 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 1640, "resize" : "fit", "w" : 2915 + }, { + "h" : 675, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 1152, + "resize" : "fit", + "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/dmHwUdPkPx" } ], "hashtags" : [ ], @@ -1790,14 +1784,6 @@ Grailbird.data.tweets_2015_04 = "id" : 588900042716512256, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCwxd_5UgAAOF6U.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1809,7 +1795,16 @@ Grailbird.data.tweets_2015_04 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/aFvRuDvXdf" } ], "hashtags" : [ { @@ -1828,7 +1823,7 @@ Grailbird.data.tweets_2015_04 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -1921,17 +1916,13 @@ Grailbird.data.tweets_2015_04 = "id" : 588393168544006146, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCpkeCdVAAICT8g.jpg", "sizes" : [ { - "h" : 465, - "resize" : "fit", - "w" : 680 - }, { - "h" : 850, - "resize" : "fit", - "w" : 1242 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 465, + "resize" : "fit", + "w" : 680 }, { "h" : 821, "resize" : "fit", @@ -1940,7 +1931,12 @@ Grailbird.data.tweets_2015_04 = "h" : 850, "resize" : "fit", "w" : 1242 + }, { + "h" : 850, + "resize" : "fit", + "w" : 1242 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/rAFLIZ1XOH" } ], "hashtags" : [ ], @@ -2176,10 +2172,6 @@ Grailbird.data.tweets_2015_04 = "id" : 588149128112275456, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCmGhBAWgAAFK97.jpg", "sizes" : [ { - "h" : 680, - "resize" : "fit", - "w" : 213 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2195,7 +2187,12 @@ Grailbird.data.tweets_2015_04 = "h" : 1024, "resize" : "fit", "w" : 320 + }, { + "h" : 680, + "resize" : "fit", + "w" : 213 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/cIVZGkUcDx" } ], "hashtags" : [ ], @@ -2337,10 +2334,6 @@ Grailbird.data.tweets_2015_04 = "h" : 730, "resize" : "fit", "w" : 568 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 730, "resize" : "fit", @@ -2353,7 +2346,12 @@ Grailbird.data.tweets_2015_04 = "h" : 730, "resize" : "fit", "w" : 568 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/MIky5QrxLq" } ], "hashtags" : [ ], @@ -2423,6 +2421,10 @@ Grailbird.data.tweets_2015_04 = "h" : 119, "resize" : "fit", "w" : 680 + }, { + "h" : 128, + "resize" : "fit", + "w" : 734 }, { "h" : 128, "resize" : "crop", @@ -2435,11 +2437,8 @@ Grailbird.data.tweets_2015_04 = "h" : 128, "resize" : "fit", "w" : 734 - }, { - "h" : 128, - "resize" : "fit", - "w" : 734 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/E0gey2sWFx" } ], "hashtags" : [ ], @@ -2511,14 +2510,6 @@ Grailbird.data.tweets_2015_04 = "id" : 587728220377710592, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCgHs9gWAAA5pUK.jpg", "sizes" : [ { - "h" : 800, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 453, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2526,11 +2517,20 @@ Grailbird.data.tweets_2015_04 = "h" : 1200, "resize" : "fit", "w" : 1800 + }, { + "h" : 453, + "resize" : "fit", + "w" : 680 }, { "h" : 1200, "resize" : "fit", "w" : 1800 + }, { + "h" : 800, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/nWkK3MevtK" } ], "hashtags" : [ ], @@ -2571,7 +2571,7 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Hallouieen", + "name" : "Louie", "screen_name" : "Mantia", "indices" : [ 0, 7 ], "id_str" : "41783", @@ -2613,26 +2613,27 @@ Grailbird.data.tweets_2015_04 = "id" : 587281767461076992, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCZxp-yUwAACTqu.jpg", "sizes" : [ { - "h" : 901, - "resize" : "fit", - "w" : 1012 - }, { - "h" : 901, - "resize" : "fit", - "w" : 1012 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 605, + "h" : 901, "resize" : "fit", - "w" : 680 + "w" : 1012 }, { "h" : 901, "resize" : "fit", "w" : 1012 + }, { + "h" : 901, + "resize" : "fit", + "w" : 1012 + }, { + "h" : 605, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/pgz4ObAFp3" } ], "hashtags" : [ ], @@ -2670,18 +2671,6 @@ Grailbird.data.tweets_2015_04 = "id" : 587117560513961985, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCXcT4PUIAE6E65.jpg", "sizes" : [ { - "h" : 675, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 383, - "resize" : "fit", - "w" : 680 - }, { - "h" : 1152, - "resize" : "fit", - "w" : 2048 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2689,7 +2678,20 @@ Grailbird.data.tweets_2015_04 = "h" : 1152, "resize" : "fit", "w" : 2048 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { + "h" : 675, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 1152, + "resize" : "fit", + "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/SJcpf5tn1S" } ], "hashtags" : [ ], @@ -2733,18 +2735,6 @@ Grailbird.data.tweets_2015_04 = "id" : 586941247912333312, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCU79InW0AAj8Lw.jpg", "sizes" : [ { - "h" : 350, - "resize" : "fit", - "w" : 466 - }, { - "h" : 350, - "resize" : "fit", - "w" : 466 - }, { - "h" : 350, - "resize" : "fit", - "w" : 466 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2752,7 +2742,20 @@ Grailbird.data.tweets_2015_04 = "h" : 350, "resize" : "fit", "w" : 466 + }, { + "h" : 350, + "resize" : "fit", + "w" : 466 + }, { + "h" : 350, + "resize" : "fit", + "w" : 466 + }, { + "h" : 350, + "resize" : "fit", + "w" : 466 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/M62SLWw057" } ], "hashtags" : [ { @@ -2777,18 +2780,6 @@ Grailbird.data.tweets_2015_04 = "id" : 586941247912333312, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCU79InW0AAj8Lw.jpg", "sizes" : [ { - "h" : 350, - "resize" : "fit", - "w" : 466 - }, { - "h" : 350, - "resize" : "fit", - "w" : 466 - }, { - "h" : 350, - "resize" : "fit", - "w" : 466 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2796,7 +2787,20 @@ Grailbird.data.tweets_2015_04 = "h" : 350, "resize" : "fit", "w" : 466 + }, { + "h" : 350, + "resize" : "fit", + "w" : 466 + }, { + "h" : 350, + "resize" : "fit", + "w" : 466 + }, { + "h" : 350, + "resize" : "fit", + "w" : 466 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/M62SLWw057" } ], "hashtags" : [ { @@ -3042,26 +3046,27 @@ Grailbird.data.tweets_2015_04 = "id" : 586227164573343745, "media_url_https" : "https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/586227164573343745\/pu\/img\/dE_Auu-oP54A6t1J.jpg", "sizes" : [ { - "h" : 0, - "resize" : "fit", - "w" : 0 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 338, + "h" : 675, "resize" : "fit", - "w" : 600 + "w" : 1200 }, { - "h" : 191, + "h" : 383, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 576, + "h" : 720, "resize" : "fit", - "w" : 1024 + "w" : 1280 + }, { + "h" : 720, + "resize" : "fit", + "w" : 1280 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/PiODSvcgtB" } ], "hashtags" : [ ], @@ -3094,26 +3099,27 @@ Grailbird.data.tweets_2015_04 = "id" : 586217623219601408, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CCKp0okUAAAj7UN.jpg", "sizes" : [ { - "h" : 864, + "h" : 1130, "resize" : "fit", - "w" : 1200 + "w" : 1570 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1130, + "resize" : "fit", + "w" : 1570 + }, { + "h" : 864, + "resize" : "fit", + "w" : 1200 }, { "h" : 489, "resize" : "fit", "w" : 680 - }, { - "h" : 1130, - "resize" : "fit", - "w" : 1570 - }, { - "h" : 1130, - "resize" : "fit", - "w" : 1570 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/kATAOaoc4D" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2015_05.js b/public/tweets/data/js/tweets/2015_05.js index feb54ff..4c1a70f 100755 --- a/public/tweets/data/js/tweets/2015_05.js +++ b/public/tweets/data/js/tweets/2015_05.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC7B Phlegm Parrot", + "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", "screen_name" : "gembarrett", "indices" : [ 3, 14 ], "id_str" : "43727347", @@ -35,7 +35,7 @@ Grailbird.data.tweets_2015_05 = "in_reply_to_screen_name" : "gembarrett", "in_reply_to_user_id_str" : "43727347", "user" : { - "name" : "\uD83D\uDC7B Phlegm Parrot", + "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", "screen_name" : "gembarrett", "protected" : false, "id_str" : "43727347", @@ -507,10 +507,6 @@ Grailbird.data.tweets_2015_05 = "id" : 603610087945469952, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CGB0LUrVAAAQF_j.jpg", "sizes" : [ { - "h" : 680, - "resize" : "fit", - "w" : 407 - }, { "h" : 2048, "resize" : "fit", "w" : 1225 @@ -518,15 +514,20 @@ Grailbird.data.tweets_2015_05 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 718 }, { "h" : 2508, "resize" : "fit", "w" : 1500 }, { - "h" : 1200, + "h" : 680, "resize" : "fit", - "w" : 718 + "w" : 407 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/793aFmqtr5" } ], "hashtags" : [ ], @@ -548,10 +549,6 @@ Grailbird.data.tweets_2015_05 = "id" : 603610087945469952, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CGB0LUrVAAAQF_j.jpg", "sizes" : [ { - "h" : 680, - "resize" : "fit", - "w" : 407 - }, { "h" : 2048, "resize" : "fit", "w" : 1225 @@ -559,15 +556,20 @@ Grailbird.data.tweets_2015_05 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 718 }, { "h" : 2508, "resize" : "fit", "w" : 1500 }, { - "h" : 1200, + "h" : 680, "resize" : "fit", - "w" : 718 + "w" : 407 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/793aFmqtr5" } ], "hashtags" : [ ], @@ -720,13 +722,13 @@ Grailbird.data.tweets_2015_05 = "id" : 603280027585744897, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CF9H_SBWEAEYnHK.png", "sizes" : [ { - "h" : 1491, - "resize" : "fit", - "w" : 2048 - }, { "h" : 873, "resize" : "fit", "w" : 1200 + }, { + "h" : 1491, + "resize" : "fit", + "w" : 2048 }, { "h" : 1936, "resize" : "fit", @@ -740,6 +742,7 @@ Grailbird.data.tweets_2015_05 = "resize" : "crop", "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/u9MpucaegI" } ], "hashtags" : [ ], @@ -761,13 +764,13 @@ Grailbird.data.tweets_2015_05 = "id" : 603280027585744897, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CF9H_SBWEAEYnHK.png", "sizes" : [ { - "h" : 1491, - "resize" : "fit", - "w" : 2048 - }, { "h" : 873, "resize" : "fit", "w" : 1200 + }, { + "h" : 1491, + "resize" : "fit", + "w" : 2048 }, { "h" : 1936, "resize" : "fit", @@ -781,6 +784,7 @@ Grailbird.data.tweets_2015_05 = "resize" : "crop", "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/u9MpucaegI" } ], "hashtags" : [ ], @@ -1353,15 +1357,16 @@ Grailbird.data.tweets_2015_05 = "h" : 603, "resize" : "fit", "w" : 411 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 603, "resize" : "fit", "w" : 411 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ugflPGfaAL" } ], "hashtags" : [ ], @@ -1438,26 +1443,27 @@ Grailbird.data.tweets_2015_05 = "id" : 601737235625480193, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CFnM0-GVEAE_67Q.jpg", "sizes" : [ { - "h" : 1200, + "h" : 680, "resize" : "fit", - "w" : 675 + "w" : 382 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 2048, - "resize" : "fit", - "w" : 1152 }, { "h" : 2208, "resize" : "fit", "w" : 1242 }, { - "h" : 680, + "h" : 1200, "resize" : "fit", - "w" : 382 + "w" : 675 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1152 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/MVPxwGm448" } ], "hashtags" : [ ], @@ -1514,7 +1520,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Lemont washington", + "name" : "Lemont Washington", "screen_name" : "cocoalabs", "indices" : [ 3, 13 ], "id_str" : "689183", @@ -1541,11 +1547,11 @@ Grailbird.data.tweets_2015_05 = "id" : 601491823803109376, "created_at" : "2015-05-21 20:56:40 +0000", "user" : { - "name" : "Lemont washington", + "name" : "Lemont Washington", "screen_name" : "cocoalabs", "protected" : false, "id_str" : "689183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903131024883818496\/h1dkH1bj_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/969701054529994752\/S0DxVozm_normal.jpg", "id" : 689183, "verified" : false } @@ -1725,9 +1731,9 @@ Grailbird.data.tweets_2015_05 = "id" : 600645885375094784, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CFXsQBmVIAAQJ6i.png", "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 692, + "resize" : "fit", + "w" : 1228 }, { "h" : 383, "resize" : "fit", @@ -1737,14 +1743,15 @@ Grailbird.data.tweets_2015_05 = "resize" : "fit", "w" : 1200 }, { - "h" : 692, - "resize" : "fit", - "w" : 1228 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 692, "resize" : "fit", "w" : 1228 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/B3bZbf6dc6" } ], "hashtags" : [ ], @@ -1979,6 +1986,7 @@ Grailbird.data.tweets_2015_05 = "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/g8xqWm7QPQ" } ], "hashtags" : [ ], @@ -2020,6 +2028,7 @@ Grailbird.data.tweets_2015_05 = "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/g8xqWm7QPQ" } ], "hashtags" : [ ], @@ -2130,15 +2139,16 @@ Grailbird.data.tweets_2015_05 = "h" : 390, "resize" : "fit", "w" : 312 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 390, "resize" : "fit", "w" : 312 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/inzBrWTnRm" } ], "hashtags" : [ ], @@ -2168,7 +2178,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "90029379", "id" : 90029379 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 14, 26 ], "id_str" : "676363", @@ -2185,7 +2195,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2236,7 +2246,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "14457722", "id" : 14457722 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 18, 30 ], "id_str" : "676363", @@ -2253,7 +2263,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2304,7 +2314,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "10909152", "id" : 10909152 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 17, 29 ], "id_str" : "676363", @@ -2321,7 +2331,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2346,7 +2356,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "AaronKalair", "protected" : false, "id_str" : "10909152", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/896490611590680577\/OvDeL_Um_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/934495582386868224\/DPOmfH48_normal.jpg", "id" : 10909152, "verified" : false } @@ -2372,7 +2382,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "1361017273", "id" : 1361017273 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 14, 26 ], "id_str" : "676363", @@ -2389,7 +2399,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2440,7 +2450,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "1732200428", "id" : 1732200428 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 19, 31 ], "id_str" : "676363", @@ -2457,7 +2467,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2573,7 +2583,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 3, 15 ], "id_str" : "676363", @@ -2600,11 +2610,11 @@ Grailbird.data.tweets_2015_05 = "id" : 599942305118846978, "created_at" : "2015-05-17 14:19:26 +0000", "user" : { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "protected" : false, "id_str" : "676363", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/675381240128602112\/hqOTM9i3_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/963494548012916736\/pCrryYUw_normal.jpg", "id" : 676363, "verified" : false } @@ -2624,7 +2634,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2672,26 +2682,27 @@ Grailbird.data.tweets_2015_05 = "id" : 599714012612419584, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CFKct5CWYAAddOg.jpg", "sizes" : [ { - "h" : 1536, - "resize" : "fit", - "w" : 2048 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 2448, "resize" : "fit", "w" : 3264 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 510, "resize" : "fit", "w" : 680 }, { - "h" : 900, + "h" : 1536, "resize" : "fit", - "w" : 1200 + "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/DSEN9BE6vK" } ], "hashtags" : [ ], @@ -2757,6 +2768,14 @@ Grailbird.data.tweets_2015_05 = "id" : 599439118167248896, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CFGis7bVEAAkjkn.png", "sizes" : [ { + "h" : 446, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 253, + "resize" : "fit", + "w" : 680 + }, { "h" : 462, "resize" : "fit", "w" : 1242 @@ -2768,15 +2787,8 @@ Grailbird.data.tweets_2015_05 = "h" : 462, "resize" : "fit", "w" : 1242 - }, { - "h" : 253, - "resize" : "fit", - "w" : 680 - }, { - "h" : 446, - "resize" : "fit", - "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/wMLkI0yG0D" } ], "hashtags" : [ ], @@ -2985,7 +2997,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -3214,7 +3226,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "indices" : [ 3, 17 ], "id_str" : "2550058153", @@ -3240,13 +3252,13 @@ Grailbird.data.tweets_2015_05 = "id" : 597014482360078339, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CEkFgjLWEAM8hDj.png", "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { "h" : 1200, "resize" : "fit", "w" : 1143 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1951 }, { "h" : 2776, "resize" : "fit", @@ -3256,10 +3268,11 @@ Grailbird.data.tweets_2015_05 = "resize" : "fit", "w" : 648 }, { - "h" : 2048, - "resize" : "fit", - "w" : 1951 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/dk9coxDOi5" } ], "hashtags" : [ ], @@ -3271,7 +3284,7 @@ Grailbird.data.tweets_2015_05 = "id" : 597014483580690432, "created_at" : "2015-05-09 12:25:19 +0000", "user" : { - "name" : "Airspeed Velocity", + "name" : "Ben Cohen", "screen_name" : "AirspeedSwift", "protected" : false, "id_str" : "2550058153", @@ -3488,6 +3501,14 @@ Grailbird.data.tweets_2015_05 = "id" : 597312544135581697, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CEoUmB0WEAEpL6U.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 683, + "resize" : "fit", + "w" : 1024 + }, { "h" : 683, "resize" : "fit", "w" : 1024 @@ -3499,15 +3520,8 @@ Grailbird.data.tweets_2015_05 = "h" : 683, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 683, - "resize" : "fit", - "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/3yczXTgXJc" } ], "hashtags" : [ ], @@ -3529,6 +3543,14 @@ Grailbird.data.tweets_2015_05 = "id" : 597312544135581697, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CEoUmB0WEAEpL6U.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 683, + "resize" : "fit", + "w" : 1024 + }, { "h" : 683, "resize" : "fit", "w" : 1024 @@ -3540,15 +3562,8 @@ Grailbird.data.tweets_2015_05 = "h" : 683, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 683, - "resize" : "fit", - "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/3yczXTgXJc" } ], "hashtags" : [ ], @@ -3826,7 +3841,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -3870,7 +3885,7 @@ Grailbird.data.tweets_2015_05 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -3977,7 +3992,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "633308082", "id" : 633308082 }, { - "name" : "Clawed Drake", + "name" : "P\u00E1draig", "screen_name" : "Padraig", "indices" : [ 19, 27 ], "id_str" : "7312992", @@ -3994,7 +4009,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Clawed Drake", + "name" : "P\u00E1draig", "screen_name" : "Padraig", "indices" : [ 0, 8 ], "id_str" : "7312992", @@ -4099,7 +4114,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "894911", "id" : 894911 }, { - "name" : "Bailey LA Kings", + "name" : "Bailey X- LA Kings", "screen_name" : "BaileyLAKings", "indices" : [ 12, 26 ], "id_str" : "205938397", @@ -4132,7 +4147,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bailey LA Kings", + "name" : "Bailey X- LA Kings", "screen_name" : "BaileyLAKings", "indices" : [ 0, 14 ], "id_str" : "205938397", @@ -4180,6 +4195,14 @@ Grailbird.data.tweets_2015_05 = "id" : 595499184012177408, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CEOjWk8UsAAoX99.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1455, + "resize" : "fit", + "w" : 2587 + }, { "h" : 675, "resize" : "fit", "w" : 1200 @@ -4187,19 +4210,12 @@ Grailbird.data.tweets_2015_05 = "h" : 1152, "resize" : "fit", "w" : 2048 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 382, "resize" : "fit", "w" : 680 - }, { - "h" : 1455, - "resize" : "fit", - "w" : 2587 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/gJIf6VKOir" } ], "hashtags" : [ ], @@ -4412,7 +4428,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sabrina but Spooky\uD83D\uDC7B", + "name" : "Sabrina", "screen_name" : "NerdyAndQuirky", "indices" : [ 3, 18 ], "id_str" : "295418725", @@ -4456,7 +4472,7 @@ Grailbird.data.tweets_2015_05 = "id" : 595046432295546880, "created_at" : "2015-05-04 02:04:59 +0000", "user" : { - "name" : "Sabrina but Spooky\uD83D\uDC7B", + "name" : "Sabrina", "screen_name" : "NerdyAndQuirky", "protected" : false, "id_str" : "295418725", @@ -4689,18 +4705,6 @@ Grailbird.data.tweets_2015_05 = "id" : 594485854493495296, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CEAJvCUUUAAUo_A.png", "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 272, - "resize" : "fit", - "w" : 986 - }, { - "h" : 272, - "resize" : "fit", - "w" : 986 - }, { "h" : 188, "resize" : "fit", "w" : 680 @@ -4708,7 +4712,20 @@ Grailbird.data.tweets_2015_05 = "h" : 272, "resize" : "fit", "w" : 986 + }, { + "h" : 272, + "resize" : "fit", + "w" : 986 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 272, + "resize" : "fit", + "w" : 986 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/4US9C2PqSJ" } ], "hashtags" : [ ], @@ -4738,7 +4755,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "193929442", "id" : 193929442 }, { - "name" : "\uD83C\uDF83\uD83D\uDE31 || \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 16, 24 ], "id_str" : "11375732", @@ -4780,26 +4797,27 @@ Grailbird.data.tweets_2015_05 = "id" : 594107278644543488, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CD6xbBYVAAANzI0.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/oPkMk9xQeX" } ], "hashtags" : [ ], @@ -4860,7 +4878,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } diff --git a/public/tweets/data/js/tweets/2015_06.js b/public/tweets/data/js/tweets/2015_06.js index cfebe35..722695c 100755 --- a/public/tweets/data/js/tweets/2015_06.js +++ b/public/tweets/data/js/tweets/2015_06.js @@ -34,7 +34,7 @@ Grailbird.data.tweets_2015_06 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925763991820836864\/nmUFyJez_normal.jpg", "id" : 36183, "verified" : false } @@ -96,26 +96,27 @@ Grailbird.data.tweets_2015_06 = "id" : 615009667354234880, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CIj0CLQUkAAJ4Hk.jpg", "sizes" : [ { - "h" : 765, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 1147, + "h" : 765, "resize" : "fit", - "w" : 1799 - }, { - "h" : 1147, - "resize" : "fit", - "w" : 1799 + "w" : 1200 }, { "h" : 434, "resize" : "fit", "w" : 680 + }, { + "h" : 1147, + "resize" : "fit", + "w" : 1799 + }, { + "h" : 1147, + "resize" : "fit", + "w" : 1799 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/lCOUE2Qbnn" } ], "hashtags" : [ ], @@ -178,6 +179,14 @@ Grailbird.data.tweets_2015_06 = "h" : 594, "resize" : "fit", "w" : 1424 + }, { + "h" : 594, + "resize" : "fit", + "w" : 1424 + }, { + "h" : 284, + "resize" : "fit", + "w" : 680 }, { "h" : 501, "resize" : "fit", @@ -186,15 +195,8 @@ Grailbird.data.tweets_2015_06 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 284, - "resize" : "fit", - "w" : 680 - }, { - "h" : 594, - "resize" : "fit", - "w" : 1424 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/kNDiZNikU4" } ], "hashtags" : [ ], @@ -266,14 +268,6 @@ Grailbird.data.tweets_2015_06 = "id" : 614581715953057792, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CIdu0IDVAAAKE-o.jpg", "sizes" : [ { - "h" : 339, - "resize" : "fit", - "w" : 335 - }, { - "h" : 339, - "resize" : "fit", - "w" : 335 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -285,7 +279,16 @@ Grailbird.data.tweets_2015_06 = "h" : 339, "resize" : "fit", "w" : 335 + }, { + "h" : 339, + "resize" : "fit", + "w" : 335 + }, { + "h" : 339, + "resize" : "fit", + "w" : 335 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/gOmS5Gy50W" } ], "hashtags" : [ ], @@ -476,7 +479,7 @@ Grailbird.data.tweets_2015_06 = "screen_name" : "gak_pdx", "protected" : false, "id_str" : "7603032", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/522118262868283392\/NUmqKUpc_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951217289944170496\/Qmzb-hYW_normal.jpg", "id" : 7603032, "verified" : false } @@ -508,6 +511,14 @@ Grailbird.data.tweets_2015_06 = "h" : 466, "resize" : "fit", "w" : 606 + }, { + "h" : 466, + "resize" : "fit", + "w" : 606 + }, { + "h" : 466, + "resize" : "fit", + "w" : 606 }, { "h" : 150, "resize" : "crop", @@ -516,15 +527,8 @@ Grailbird.data.tweets_2015_06 = "h" : 466, "resize" : "fit", "w" : 606 - }, { - "h" : 466, - "resize" : "fit", - "w" : 606 - }, { - "h" : 466, - "resize" : "fit", - "w" : 606 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Tt71ICjAeD" } ], "hashtags" : [ ], @@ -624,7 +628,7 @@ Grailbird.data.tweets_2015_06 = "screen_name" : "toddthomas", "protected" : false, "id_str" : "14650563", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/915236176415485952\/IY4ox7mK_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/968530540516204544\/DxaZWclR_normal.jpg", "id" : 14650563, "verified" : false } @@ -753,7 +757,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "CGP Grey \uD83D\uDC1D", + "name" : "CGP Grey", "screen_name" : "cgpgrey", "indices" : [ 3, 11 ], "id_str" : "176774540", @@ -797,11 +801,11 @@ Grailbird.data.tweets_2015_06 = "in_reply_to_screen_name" : "royalaid", "in_reply_to_user_id_str" : "21265205", "user" : { - "name" : "CGP Grey \uD83D\uDC1D", + "name" : "CGP Grey", "screen_name" : "cgpgrey", "protected" : false, "id_str" : "176774540", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/818849105174786049\/8gGV_x8l_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/953635851212349440\/RvV5aFNp_normal.jpg", "id" : 176774540, "verified" : true } @@ -833,6 +837,14 @@ Grailbird.data.tweets_2015_06 = "h" : 214, "resize" : "fit", "w" : 680 + }, { + "h" : 314, + "resize" : "fit", + "w" : 996 + }, { + "h" : 314, + "resize" : "fit", + "w" : 996 }, { "h" : 150, "resize" : "crop", @@ -841,15 +853,8 @@ Grailbird.data.tweets_2015_06 = "h" : 314, "resize" : "fit", "w" : 996 - }, { - "h" : 314, - "resize" : "fit", - "w" : 996 - }, { - "h" : 314, - "resize" : "fit", - "w" : 996 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/TZ4Ao4wNxK" } ], "hashtags" : [ ], @@ -924,7 +929,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", @@ -1228,7 +1233,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 3, 19 ], "id_str" : "15267898", @@ -1255,11 +1260,11 @@ Grailbird.data.tweets_2015_06 = "id" : 608827592746106880, "created_at" : "2015-06-11 02:46:24 +0000", "user" : { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/923969343087669248\/diAzr2_2_normal.jpg", "id" : 15267898, "verified" : true } @@ -1410,7 +1415,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "spooking my best", + "name" : "dan seifert", "screen_name" : "dcseifert", "indices" : [ 0, 10 ], "id_str" : "63025801", @@ -1449,7 +1454,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", @@ -1482,7 +1487,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Pascal Haunted \uD83D\uDC80", + "name" : "Pascal Hartig", "screen_name" : "passy", "indices" : [ 0, 6 ], "id_str" : "14383077", @@ -1746,7 +1751,7 @@ Grailbird.data.tweets_2015_06 = "screen_name" : "clattner_llvm", "protected" : false, "id_str" : "2543588034", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916821795008688128\/yONBAVaZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/948421391690252288\/e2Ti9PMU_normal.jpg", "id" : 2543588034, "verified" : false } @@ -1810,7 +1815,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Nate Cook \uD83C\uDF42", + "name" : "Nate Cook \u2603\uFE0F", "screen_name" : "nnnnnnnn", "indices" : [ 3, 12 ], "id_str" : "4365311", @@ -1837,7 +1842,7 @@ Grailbird.data.tweets_2015_06 = "id" : 607986574391934977, "created_at" : "2015-06-08 19:04:29 +0000", "user" : { - "name" : "Nate Cook \uD83C\uDF42", + "name" : "Nate Cook \u2603\uFE0F", "screen_name" : "nnnnnnnn", "protected" : false, "id_str" : "4365311", @@ -1883,7 +1888,7 @@ Grailbird.data.tweets_2015_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "PaTrick-or-Treat \uD83C\uDF83", + "name" : "Patrick McCarron", "screen_name" : "McCarron", "indices" : [ 3, 12 ], "id_str" : "770391", @@ -1910,11 +1915,11 @@ Grailbird.data.tweets_2015_06 = "id" : 607969625880424448, "created_at" : "2015-06-08 17:57:08 +0000", "user" : { - "name" : "PaTrick-or-Treat \uD83C\uDF83", + "name" : "Patrick McCarron", "screen_name" : "McCarron", "protected" : false, "id_str" : "770391", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903007055266664448\/r3OelSF9_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/979385010145976321\/Z-kDGNfZ_normal.jpg", "id" : 770391, "verified" : false } @@ -1971,6 +1976,18 @@ Grailbird.data.tweets_2015_06 = "id" : 607310624243073025, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CG2Zy4pUQAEje2u.png", "sizes" : [ { + "h" : 282, + "resize" : "fit", + "w" : 599 + }, { + "h" : 282, + "resize" : "fit", + "w" : 599 + }, { + "h" : 282, + "resize" : "fit", + "w" : 599 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1978,19 +1995,8 @@ Grailbird.data.tweets_2015_06 = "h" : 282, "resize" : "fit", "w" : 599 - }, { - "h" : 282, - "resize" : "fit", - "w" : 599 - }, { - "h" : 282, - "resize" : "fit", - "w" : 599 - }, { - "h" : 282, - "resize" : "fit", - "w" : 599 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/afg0W5aZEd" } ], "hashtags" : [ ], @@ -2012,6 +2018,18 @@ Grailbird.data.tweets_2015_06 = "id" : 607310624243073025, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CG2Zy4pUQAEje2u.png", "sizes" : [ { + "h" : 282, + "resize" : "fit", + "w" : 599 + }, { + "h" : 282, + "resize" : "fit", + "w" : 599 + }, { + "h" : 282, + "resize" : "fit", + "w" : 599 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2019,19 +2037,8 @@ Grailbird.data.tweets_2015_06 = "h" : 282, "resize" : "fit", "w" : 599 - }, { - "h" : 282, - "resize" : "fit", - "w" : 599 - }, { - "h" : 282, - "resize" : "fit", - "w" : 599 - }, { - "h" : 282, - "resize" : "fit", - "w" : 599 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/afg0W5aZEd" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2015_07.js b/public/tweets/data/js/tweets/2015_07.js index 00f59ee..1aa165a 100755 --- a/public/tweets/data/js/tweets/2015_07.js +++ b/public/tweets/data/js/tweets/2015_07.js @@ -54,7 +54,7 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Stephan Seidt \uD83E\uDD68\uD83E\uDDD0", + "name" : "Stephan Seidt", "screen_name" : "evilhackerdude", "indices" : [ 0, 15 ], "id_str" : "15150116", @@ -84,14 +84,14 @@ Grailbird.data.tweets_2015_07 = "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 2048, - "resize" : "fit", - "w" : 1536 }, { "h" : 1200, "resize" : "fit", "w" : 900 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1536 }, { "h" : 150, "resize" : "crop", @@ -101,6 +101,7 @@ Grailbird.data.tweets_2015_07 = "resize" : "fit", "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ypy06FK0SH" } ], "hashtags" : [ ], @@ -189,10 +190,6 @@ Grailbird.data.tweets_2015_07 = "id" : 626904853109870592, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CLM2pHWVEAAqGC8.jpg", "sizes" : [ { - "h" : 329, - "resize" : "fit", - "w" : 1088 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -200,15 +197,20 @@ Grailbird.data.tweets_2015_07 = "h" : 329, "resize" : "fit", "w" : 1088 + }, { + "h" : 206, + "resize" : "fit", + "w" : 680 }, { "h" : 329, "resize" : "fit", "w" : 1088 }, { - "h" : 206, + "h" : 329, "resize" : "fit", - "w" : 680 + "w" : 1088 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/oubFlVJEiZ" } ], "hashtags" : [ ], @@ -415,6 +417,14 @@ Grailbird.data.tweets_2015_07 = "id" : 625392865447809024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CK3Xf2YUkAA9PQX.jpg", "sizes" : [ { + "h" : 515, + "resize" : "fit", + "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 909, "resize" : "fit", "w" : 1200 @@ -426,15 +436,8 @@ Grailbird.data.tweets_2015_07 = "h" : 1552, "resize" : "fit", "w" : 2048 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 515, - "resize" : "fit", - "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ntZlf6CccX" } ], "hashtags" : [ { @@ -610,7 +613,7 @@ Grailbird.data.tweets_2015_07 = "id_str" : "717313", "id" : 717313 }, { - "name" : "Andrew Pumpkingham \uD83C\uDF83", + "name" : "Andrew Cunningham", "screen_name" : "AndrewWrites", "indices" : [ 109, 122 ], "id_str" : "181395652", @@ -632,7 +635,7 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/arstechnica.com\" rel=\"nofollow\"\u003EArs tweetbot\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Andrew Pumpkingham \uD83C\uDF83", + "name" : "Andrew Cunningham", "screen_name" : "AndrewWrites", "indices" : [ 92, 105 ], "id_str" : "181395652", @@ -863,26 +866,27 @@ Grailbird.data.tweets_2015_07 = "id" : 621697557102661632, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CKC2omDVEAAE_hP.jpg", "sizes" : [ { - "h" : 1200, - "resize" : "fit", - "w" : 900 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 3264, "resize" : "fit", "w" : 2448 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 900 }, { "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 680, - "resize" : "fit", - "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/I78fodjehh" } ], "hashtags" : [ ], @@ -932,26 +936,27 @@ Grailbird.data.tweets_2015_07 = "id" : 621506433264160769, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CKAIzuRUkAE67_I.jpg", "sizes" : [ { - "h" : 1200, - "resize" : "fit", - "w" : 900 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 2048, + "h" : 680, "resize" : "fit", - "w" : 1536 + "w" : 510 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 900 }, { "h" : 4096, "resize" : "fit", "w" : 3072 }, { - "h" : 680, + "h" : 2048, "resize" : "fit", - "w" : 510 + "w" : 1536 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/vhx2LzHqEh" } ], "hashtags" : [ ], @@ -1294,7 +1299,7 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -1338,7 +1343,7 @@ Grailbird.data.tweets_2015_07 = "in_reply_to_screen_name" : "bthdonohue", "in_reply_to_user_id_str" : "337167459", "user" : { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -1362,7 +1367,7 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -1389,7 +1394,7 @@ Grailbird.data.tweets_2015_07 = "id" : 618581390213316608, "created_at" : "2015-07-08 00:44:30 +0000", "user" : { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -1425,6 +1430,10 @@ Grailbird.data.tweets_2015_07 = "h" : 590, "resize" : "fit", "w" : 1080 + }, { + "h" : 371, + "resize" : "fit", + "w" : 680 }, { "h" : 590, "resize" : "fit", @@ -1437,11 +1446,8 @@ Grailbird.data.tweets_2015_07 = "h" : 590, "resize" : "fit", "w" : 1080 - }, { - "h" : 371, - "resize" : "fit", - "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/STDLeZC2YV" } ], "hashtags" : [ ], @@ -1465,11 +1471,11 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "MarkusM\u00FCllerSimhofer", + "name" : "Markus M\u00FCller-Simhofer", "screen_name" : "fafner", "indices" : [ 3, 10 ], - "id_str" : "11227512", - "id" : 11227512 + "id_str" : "946791034708807686", + "id" : 946791034708807686 } ], "media" : [ { "expanded_url" : "https:\/\/twitter.com\/fafner\/status\/616934236650643456\/photo\/1", @@ -1487,19 +1493,20 @@ Grailbird.data.tweets_2015_07 = "h" : 242, "resize" : "fit", "w" : 348 + }, { + "h" : 242, + "resize" : "fit", + "w" : 348 + }, { + "h" : 242, + "resize" : "fit", + "w" : 348 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 242, - "resize" : "fit", - "w" : 348 - }, { - "h" : 242, - "resize" : "fit", - "w" : 348 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/raKrZnVqWm" } ], "hashtags" : [ ], @@ -1528,19 +1535,20 @@ Grailbird.data.tweets_2015_07 = "h" : 242, "resize" : "fit", "w" : 348 + }, { + "h" : 242, + "resize" : "fit", + "w" : 348 + }, { + "h" : 242, + "resize" : "fit", + "w" : 348 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 242, - "resize" : "fit", - "w" : 348 - }, { - "h" : 242, - "resize" : "fit", - "w" : 348 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/raKrZnVqWm" } ], "hashtags" : [ ], @@ -1552,11 +1560,11 @@ Grailbird.data.tweets_2015_07 = "id" : 616934236650643456, "created_at" : "2015-07-03 11:39:18 +0000", "user" : { - "name" : "MarkusM\u00FCllerSimhofer", - "screen_name" : "fafner", + "name" : "Markus M\u00FCller-Simhofer", + "screen_name" : "MuellerSimhofer", "protected" : false, "id_str" : "11227512", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/600738389512556544\/e9tlPiPx_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/947090460262174720\/WtmATW4K_normal.jpg", "id" : 11227512, "verified" : false } @@ -1640,26 +1648,27 @@ Grailbird.data.tweets_2015_07 = "id" : 616718885396451328, "media_url_https" : "https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/616718885396451328\/pu\/img\/U6Mv3rzkB_6ILGv4.jpg", "sizes" : [ { - "h" : 270, - "resize" : "fit", - "w" : 340 - }, { - "h" : 813, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 477, - "resize" : "fit", - "w" : 600 - }, { - "h" : 0, - "resize" : "fit", - "w" : 0 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 880, + "resize" : "fit", + "w" : 1108 + }, { + "h" : 880, + "resize" : "fit", + "w" : 1108 + }, { + "h" : 880, + "resize" : "fit", + "w" : 1108 + }, { + "h" : 540, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/gpKaoNc5oQ" } ], "hashtags" : [ ], @@ -1971,7 +1980,7 @@ Grailbird.data.tweets_2015_07 = "screen_name" : "1Password", "protected" : false, "id_str" : "793926", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/904715544414351360\/6XdEq2Mq_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981326545179439104\/jPhaQEQv_normal.jpg", "id" : 793926, "verified" : true } diff --git a/public/tweets/data/js/tweets/2015_08.js b/public/tweets/data/js/tweets/2015_08.js index 0b4e9f3..33592b7 100755 --- a/public/tweets/data/js/tweets/2015_08.js +++ b/public/tweets/data/js/tweets/2015_08.js @@ -18,26 +18,27 @@ Grailbird.data.tweets_2015_08 = "id" : 638222359652990976, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CNtr2srUAAAN4S2.jpg", "sizes" : [ { - "h" : 900, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 }, { "h" : 2448, "resize" : "fit", "w" : 3264 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 }, { "h" : 510, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/9qGqoREyDc" } ], "hashtags" : [ ], @@ -103,14 +104,6 @@ Grailbird.data.tweets_2015_08 = "id" : 637490234947584000, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CNjR_bnUwAACx9j.jpg", "sizes" : [ { - "h" : 675, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 1092, - "resize" : "fit", - "w" : 1942 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -118,11 +111,20 @@ Grailbird.data.tweets_2015_08 = "h" : 1092, "resize" : "fit", "w" : 1942 + }, { + "h" : 1092, + "resize" : "fit", + "w" : 1942 + }, { + "h" : 675, + "resize" : "fit", + "w" : 1200 }, { "h" : 382, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Gk8Akt5Kif" } ], "hashtags" : [ ], @@ -309,6 +311,14 @@ Grailbird.data.tweets_2015_08 = "id" : 633411771299008512, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CMpUpmjUEAA6Zri.png", "sizes" : [ { + "h" : 1808, + "resize" : "fit", + "w" : 2276 + }, { + "h" : 953, + "resize" : "fit", + "w" : 1200 + }, { "h" : 540, "resize" : "fit", "w" : 680 @@ -316,19 +326,12 @@ Grailbird.data.tweets_2015_08 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 953, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 1808, - "resize" : "fit", - "w" : 2276 }, { "h" : 1627, "resize" : "fit", "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/5E34Ww9c4b" } ], "hashtags" : [ ], @@ -350,6 +353,14 @@ Grailbird.data.tweets_2015_08 = "id" : 633411771299008512, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CMpUpmjUEAA6Zri.png", "sizes" : [ { + "h" : 1808, + "resize" : "fit", + "w" : 2276 + }, { + "h" : 953, + "resize" : "fit", + "w" : 1200 + }, { "h" : 540, "resize" : "fit", "w" : 680 @@ -357,19 +368,12 @@ Grailbird.data.tweets_2015_08 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 953, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 1808, - "resize" : "fit", - "w" : 2276 }, { "h" : 1627, "resize" : "fit", "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/5E34Ww9c4b" } ], "hashtags" : [ ], @@ -691,26 +695,27 @@ Grailbird.data.tweets_2015_08 = "id" : 631923193515671552, "media_url_https" : "https:\/\/pbs.twimg.com\/tweet_video_thumb\/CMUKy-LVAAActzk.png", "sizes" : [ { - "h" : 220, + "h" : 284, "resize" : "fit", - "w" : 340 + "w" : 438 + }, { + "h" : 284, + "resize" : "fit", + "w" : 438 + }, { + "h" : 284, + "resize" : "fit", + "w" : 438 + }, { + "h" : 284, + "resize" : "fit", + "w" : 438 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 284, - "resize" : "fit", - "w" : 438 - }, { - "h" : 284, - "resize" : "fit", - "w" : 438 - }, { - "h" : 284, - "resize" : "fit", - "w" : 438 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/HAT6uEsaTZ" } ], "hashtags" : [ ], @@ -743,6 +748,18 @@ Grailbird.data.tweets_2015_08 = "id" : 631921144191320064, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CMUI7r2VAAAJQlT.png", "sizes" : [ { + "h" : 185, + "resize" : "fit", + "w" : 250 + }, { + "h" : 185, + "resize" : "fit", + "w" : 250 + }, { + "h" : 185, + "resize" : "fit", + "w" : 250 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -750,19 +767,8 @@ Grailbird.data.tweets_2015_08 = "h" : 185, "resize" : "fit", "w" : 250 - }, { - "h" : 185, - "resize" : "fit", - "w" : 250 - }, { - "h" : 185, - "resize" : "fit", - "w" : 250 - }, { - "h" : 185, - "resize" : "fit", - "w" : 250 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/m9hfniX9b7" } ], "hashtags" : [ ], @@ -968,7 +974,7 @@ Grailbird.data.tweets_2015_08 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Count Scottula", + "name" : "Scott Owen", "screen_name" : "scottmowen", "indices" : [ 3, 14 ], "id_str" : "15009581", @@ -1022,7 +1028,7 @@ Grailbird.data.tweets_2015_08 = "in_reply_to_screen_name" : "dejager", "in_reply_to_user_id_str" : "805062", "user" : { - "name" : "Count Scottula", + "name" : "Scott Owen", "screen_name" : "scottmowen", "protected" : false, "id_str" : "15009581", @@ -1376,18 +1382,6 @@ Grailbird.data.tweets_2015_08 = "id" : 627565690937982976, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CLWPq8GUwAALZ-x.jpg", "sizes" : [ { - "h" : 675, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 383, - "resize" : "fit", - "w" : 680 - }, { - "h" : 1152, - "resize" : "fit", - "w" : 2048 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1395,7 +1389,20 @@ Grailbird.data.tweets_2015_08 = "h" : 1152, "resize" : "fit", "w" : 2048 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { + "h" : 675, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 1152, + "resize" : "fit", + "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/4f5duNIg22" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2015_09.js b/public/tweets/data/js/tweets/2015_09.js index cb6eef8..1c281b4 100755 --- a/public/tweets/data/js/tweets/2015_09.js +++ b/public/tweets/data/js/tweets/2015_09.js @@ -175,13 +175,13 @@ Grailbird.data.tweets_2015_09 = "id_str" : "14761655", "id" : 14761655 }, { - "name" : "Ghost Ships A Hoy \uD83D\uDC7B", + "name" : "Amy Hoy \u2728", "screen_name" : "amyhoy", "indices" : [ 12, 19 ], "id_str" : "627213", "id" : 627213 }, { - "name" : "Thomas Fuchs", + "name" : "Thomas Fuchs \uD83E\uDD95", "screen_name" : "thomasfuchs", "indices" : [ 20, 32 ], "id_str" : "6927562", @@ -298,6 +298,14 @@ Grailbird.data.tweets_2015_09 = "h" : 165, "resize" : "fit", "w" : 641 + }, { + "h" : 165, + "resize" : "fit", + "w" : 641 + }, { + "h" : 165, + "resize" : "fit", + "w" : 641 }, { "h" : 150, "resize" : "crop", @@ -306,15 +314,8 @@ Grailbird.data.tweets_2015_09 = "h" : 165, "resize" : "fit", "w" : 641 - }, { - "h" : 165, - "resize" : "fit", - "w" : 641 - }, { - "h" : 165, - "resize" : "fit", - "w" : 641 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ch15uNSu3Z" } ], "hashtags" : [ { @@ -342,6 +343,14 @@ Grailbird.data.tweets_2015_09 = "h" : 165, "resize" : "fit", "w" : 641 + }, { + "h" : 165, + "resize" : "fit", + "w" : 641 + }, { + "h" : 165, + "resize" : "fit", + "w" : 641 }, { "h" : 150, "resize" : "crop", @@ -350,15 +359,8 @@ Grailbird.data.tweets_2015_09 = "h" : 165, "resize" : "fit", "w" : 641 - }, { - "h" : 165, - "resize" : "fit", - "w" : 641 - }, { - "h" : 165, - "resize" : "fit", - "w" : 641 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ch15uNSu3Z" } ], "hashtags" : [ { @@ -406,18 +408,6 @@ Grailbird.data.tweets_2015_09 = "id" : 649181085763416064, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQJawgvUsAAiO53.jpg", "sizes" : [ { - "h" : 3024, - "resize" : "fit", - "w" : 4032 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { - "h" : 900, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -425,7 +415,20 @@ Grailbird.data.tweets_2015_09 = "h" : 1536, "resize" : "fit", "w" : 2048 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 3024, + "resize" : "fit", + "w" : 4032 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/sBApYqi0Pj" } ], "hashtags" : [ ], @@ -575,19 +578,20 @@ Grailbird.data.tweets_2015_09 = "h" : 505, "resize" : "fit", "w" : 680 + }, { + "h" : 579, + "resize" : "fit", + "w" : 780 + }, { + "h" : 579, + "resize" : "fit", + "w" : 780 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 579, - "resize" : "fit", - "w" : 780 - }, { - "h" : 579, - "resize" : "fit", - "w" : 780 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/cTIFgogMNZ" } ], "hashtags" : [ ], @@ -603,7 +607,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "mraleph", "protected" : false, "id_str" : "53010195", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/428865653903081472\/XqtZKTVu_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961923701641039872\/TWwOK7mW_normal.jpg", "id" : 53010195, "verified" : false } @@ -762,10 +766,6 @@ Grailbird.data.tweets_2015_09 = "h" : 137, "resize" : "fit", "w" : 642 - }, { - "h" : 137, - "resize" : "fit", - "w" : 642 }, { "h" : 137, "resize" : "crop", @@ -778,7 +778,12 @@ Grailbird.data.tweets_2015_09 = "h" : 137, "resize" : "fit", "w" : 642 + }, { + "h" : 137, + "resize" : "fit", + "w" : 642 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/el01pYpVmH" } ], "hashtags" : [ ], @@ -799,7 +804,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/902223244320755714\/FX8yzxQD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", "id" : 33493, "verified" : false } @@ -819,7 +824,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Scared Sinclair", + "name" : "Jared Sinclair", "screen_name" : "jaredsinclair", "indices" : [ 3, 17 ], "id_str" : "15004156", @@ -851,11 +856,11 @@ Grailbird.data.tweets_2015_09 = "id" : 627636964985016320, "created_at" : "2015-08-02 00:28:08 +0000", "user" : { - "name" : "Scared Sinclair", + "name" : "Jared Sinclair", "screen_name" : "jaredsinclair", "protected" : false, "id_str" : "15004156", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919321301495328768\/3AMDhT5s_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/946925048434253824\/vfj5syhY_normal.jpg", "id" : 15004156, "verified" : false } @@ -919,7 +924,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -931,7 +936,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "43915380", "id" : 43915380 }, { - "name" : "Nightmare Nacho \uD83C\uDF19\uD83E\uDDC0", + "name" : "_ = unsafeBitCast(Float80(0), to: type(of: \u007B0\u007D))()", "screen_name" : "NeoNacho", "indices" : [ 23, 32 ], "id_str" : "10341052", @@ -1219,7 +1224,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kyle \uD83C\uDF7B\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08\uD83C\uDFC3\uD83C\uDFFB\uD83C\uDDE8\uD83C\uDDE6", + "name" : "Kyle \uD83C\uDF7B\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08\uD83C\uDFC3\uD83C\uDFFC", "screen_name" : "kyleve", "indices" : [ 0, 7 ], "id_str" : "14680556", @@ -1267,6 +1272,10 @@ Grailbird.data.tweets_2015_09 = "id" : 647827156005838848, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CP2LXbWUYAAeURu.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 818, "resize" : "fit", "w" : 1244 @@ -1274,10 +1283,6 @@ Grailbird.data.tweets_2015_09 = "h" : 447, "resize" : "fit", "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 789, "resize" : "fit", @@ -1287,6 +1292,7 @@ Grailbird.data.tweets_2015_09 = "resize" : "fit", "w" : 1244 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xN9hl70JQB" } ], "hashtags" : [ ], @@ -1308,6 +1314,10 @@ Grailbird.data.tweets_2015_09 = "id" : 647827156005838848, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CP2LXbWUYAAeURu.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 818, "resize" : "fit", "w" : 1244 @@ -1315,10 +1325,6 @@ Grailbird.data.tweets_2015_09 = "h" : 447, "resize" : "fit", "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 789, "resize" : "fit", @@ -1328,6 +1334,7 @@ Grailbird.data.tweets_2015_09 = "resize" : "fit", "w" : 1244 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xN9hl70JQB" } ], "hashtags" : [ ], @@ -1343,7 +1350,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "gak_pdx", "protected" : false, "id_str" : "7603032", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/522118262868283392\/NUmqKUpc_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951217289944170496\/Qmzb-hYW_normal.jpg", "id" : 7603032, "verified" : false } @@ -1440,7 +1447,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", @@ -1655,10 +1662,6 @@ Grailbird.data.tweets_2015_09 = "h" : 350, "resize" : "fit", "w" : 1726 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 350, "resize" : "fit", @@ -1671,7 +1674,12 @@ Grailbird.data.tweets_2015_09 = "h" : 138, "resize" : "fit", "w" : 680 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/6vvwtS5l5f" } ], "hashtags" : [ ], @@ -1748,7 +1756,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "clattner_llvm", "protected" : false, "id_str" : "2543588034", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916821795008688128\/yONBAVaZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/948421391690252288\/e2Ti9PMU_normal.jpg", "id" : 2543588034, "verified" : false } @@ -2040,26 +2048,27 @@ Grailbird.data.tweets_2015_09 = "id" : 645780223175335936, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPZFsQVWoAABn3u.jpg", "sizes" : [ { - "h" : 680, + "h" : 2048, "resize" : "fit", - "w" : 523 + "w" : 1574 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 1200, + "h" : 680, "resize" : "fit", - "w" : 922 + "w" : 523 }, { "h" : 2649, "resize" : "fit", "w" : 2036 }, { - "h" : 2048, + "h" : 1200, "resize" : "fit", - "w" : 1574 + "w" : 922 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/kjzaRQpN46" } ], "hashtags" : [ ], @@ -2087,26 +2096,27 @@ Grailbird.data.tweets_2015_09 = "id" : 645780223175335936, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPZFsQVWoAABn3u.jpg", "sizes" : [ { - "h" : 680, + "h" : 2048, "resize" : "fit", - "w" : 523 + "w" : 1574 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 1200, + "h" : 680, "resize" : "fit", - "w" : 922 + "w" : 523 }, { "h" : 2649, "resize" : "fit", "w" : 2036 }, { - "h" : 2048, + "h" : 1200, "resize" : "fit", - "w" : 1574 + "w" : 922 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/kjzaRQpN46" } ], "hashtags" : [ ], @@ -2162,13 +2172,17 @@ Grailbird.data.tweets_2015_09 = "id" : 645774710790205440, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPZArZGUsAAGZ-b.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 1128, "resize" : "fit", "w" : 1128 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 1128, + "resize" : "fit", + "w" : 1128 }, { "h" : 680, "resize" : "fit", @@ -2177,11 +2191,8 @@ Grailbird.data.tweets_2015_09 = "h" : 1128, "resize" : "fit", "w" : 1128 - }, { - "h" : 1128, - "resize" : "fit", - "w" : 1128 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/k9J41Fyhdq" } ], "hashtags" : [ ], @@ -2203,13 +2214,17 @@ Grailbird.data.tweets_2015_09 = "id" : 645774710790205440, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPZArZGUsAAGZ-b.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 1128, "resize" : "fit", "w" : 1128 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 1128, + "resize" : "fit", + "w" : 1128 }, { "h" : 680, "resize" : "fit", @@ -2218,11 +2233,8 @@ Grailbird.data.tweets_2015_09 = "h" : 1128, "resize" : "fit", "w" : 1128 - }, { - "h" : 1128, - "resize" : "fit", - "w" : 1128 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/k9J41Fyhdq" } ], "hashtags" : [ ], @@ -2279,6 +2291,10 @@ Grailbird.data.tweets_2015_09 = "id" : 644614564139528192, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPIhh-CUcAAGCG3.png", "sizes" : [ { + "h" : 416, + "resize" : "fit", + "w" : 523 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2294,11 +2310,8 @@ Grailbird.data.tweets_2015_09 = "h" : 416, "resize" : "fit", "w" : 523 - }, { - "h" : 416, - "resize" : "fit", - "w" : 523 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ce6guDDcfW" } ], "hashtags" : [ ], @@ -2326,6 +2339,10 @@ Grailbird.data.tweets_2015_09 = "id" : 644614564139528192, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPIhh-CUcAAGCG3.png", "sizes" : [ { + "h" : 416, + "resize" : "fit", + "w" : 523 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2341,11 +2358,8 @@ Grailbird.data.tweets_2015_09 = "h" : 416, "resize" : "fit", "w" : 523 - }, { - "h" : 416, - "resize" : "fit", - "w" : 523 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ce6guDDcfW" } ], "hashtags" : [ ], @@ -2396,13 +2410,9 @@ Grailbird.data.tweets_2015_09 = "id" : 645647442914885632, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CPXM7bUUwAARzJC.jpg", "sizes" : [ { - "h" : 1200, + "h" : 1594, "resize" : "fit", - "w" : 823 - }, { - "h" : 680, - "resize" : "fit", - "w" : 466 + "w" : 1093 }, { "h" : 1594, "resize" : "fit", @@ -2412,10 +2422,15 @@ Grailbird.data.tweets_2015_09 = "resize" : "crop", "w" : 150 }, { - "h" : 1594, + "h" : 680, "resize" : "fit", - "w" : 1093 + "w" : 466 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 823 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/oqETQPoELW" } ], "hashtags" : [ ], @@ -2477,7 +2492,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Garry Tan", + "name" : "Garry #BUIDL Tan", "screen_name" : "garrytan", "indices" : [ 3, 12 ], "id_str" : "11768582", @@ -2496,9 +2511,9 @@ Grailbird.data.tweets_2015_09 = "resize" : "fit", "w" : 992 }, { - "h" : 680, + "h" : 1024, "resize" : "fit", - "w" : 659 + "w" : 992 }, { "h" : 150, "resize" : "crop", @@ -2508,10 +2523,11 @@ Grailbird.data.tweets_2015_09 = "resize" : "fit", "w" : 992 }, { - "h" : 1024, + "h" : 680, "resize" : "fit", - "w" : 992 + "w" : 659 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/qBMsEFiEZL" } ], "hashtags" : [ ], @@ -2537,9 +2553,9 @@ Grailbird.data.tweets_2015_09 = "resize" : "fit", "w" : 992 }, { - "h" : 680, + "h" : 1024, "resize" : "fit", - "w" : 659 + "w" : 992 }, { "h" : 150, "resize" : "crop", @@ -2549,10 +2565,11 @@ Grailbird.data.tweets_2015_09 = "resize" : "fit", "w" : 992 }, { - "h" : 1024, + "h" : 680, "resize" : "fit", - "w" : 992 + "w" : 659 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/qBMsEFiEZL" } ], "hashtags" : [ ], @@ -2564,11 +2581,11 @@ Grailbird.data.tweets_2015_09 = "id" : 645434276029161473, "created_at" : "2015-09-20 03:08:17 +0000", "user" : { - "name" : "Garry Tan", + "name" : "Garry #BUIDL Tan", "screen_name" : "garrytan", "protected" : false, "id_str" : "11768582", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/882725533817110528\/IPUzEKdT_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/943716237682421760\/0sBqTJhG_normal.jpg", "id" : 11768582, "verified" : false } @@ -2709,7 +2726,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925763991820836864\/nmUFyJez_normal.jpg", "id" : 36183, "verified" : false } @@ -3088,7 +3105,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", @@ -3121,7 +3138,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -3158,7 +3175,7 @@ Grailbird.data.tweets_2015_09 = "id" : 643187949987721220, "created_at" : "2015-09-13 22:22:11 +0000", "user" : { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", @@ -3233,23 +3250,24 @@ Grailbird.data.tweets_2015_09 = "h" : 488, "resize" : "fit", "w" : 1294 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 256, "resize" : "fit", "w" : 680 + }, { + "h" : 488, + "resize" : "fit", + "w" : 1294 }, { "h" : 453, "resize" : "fit", "w" : 1200 }, { - "h" : 488, - "resize" : "fit", - "w" : 1294 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xs0qA6uaYy" } ], "hashtags" : [ ], @@ -3430,6 +3448,18 @@ Grailbird.data.tweets_2015_09 = "id" : 642572926340861953, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/COrgrAjUkAEzVyd.png", "sizes" : [ { + "h" : 233, + "resize" : "fit", + "w" : 750 + }, { + "h" : 233, + "resize" : "fit", + "w" : 750 + }, { + "h" : 233, + "resize" : "fit", + "w" : 750 + }, { "h" : 211, "resize" : "fit", "w" : 680 @@ -3437,19 +3467,8 @@ Grailbird.data.tweets_2015_09 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 233, - "resize" : "fit", - "w" : 750 - }, { - "h" : 233, - "resize" : "fit", - "w" : 750 - }, { - "h" : 233, - "resize" : "fit", - "w" : 750 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Ro9kEYhDAw" } ], "hashtags" : [ ], @@ -3491,6 +3510,14 @@ Grailbird.data.tweets_2015_09 = "h" : 88, "resize" : "fit", "w" : 476 + }, { + "h" : 88, + "resize" : "fit", + "w" : 476 + }, { + "h" : 88, + "resize" : "fit", + "w" : 476 }, { "h" : 88, "resize" : "crop", @@ -3499,15 +3526,8 @@ Grailbird.data.tweets_2015_09 = "h" : 88, "resize" : "fit", "w" : 476 - }, { - "h" : 88, - "resize" : "fit", - "w" : 476 - }, { - "h" : 88, - "resize" : "fit", - "w" : 476 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0Yd1vwisom" } ], "hashtags" : [ ], @@ -3532,6 +3552,14 @@ Grailbird.data.tweets_2015_09 = "h" : 88, "resize" : "fit", "w" : 476 + }, { + "h" : 88, + "resize" : "fit", + "w" : 476 + }, { + "h" : 88, + "resize" : "fit", + "w" : 476 }, { "h" : 88, "resize" : "crop", @@ -3540,15 +3568,8 @@ Grailbird.data.tweets_2015_09 = "h" : 88, "resize" : "fit", "w" : 476 - }, { - "h" : 88, - "resize" : "fit", - "w" : 476 - }, { - "h" : 88, - "resize" : "fit", - "w" : 476 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/0Yd1vwisom" } ], "hashtags" : [ ], @@ -3731,6 +3752,10 @@ Grailbird.data.tweets_2015_09 = "id" : 641716157859258368, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/COfVchPUYAATNCG.png", "sizes" : [ { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { "h" : 900, "resize" : "fit", "w" : 1600 @@ -3738,19 +3763,16 @@ Grailbird.data.tweets_2015_09 = "h" : 675, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 383, - "resize" : "fit", - "w" : 680 }, { "h" : 900, "resize" : "fit", "w" : 1600 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/FazZKdKxCF" } ], "hashtags" : [ ], @@ -3772,6 +3794,10 @@ Grailbird.data.tweets_2015_09 = "id" : 641716157859258368, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/COfVchPUYAATNCG.png", "sizes" : [ { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { "h" : 900, "resize" : "fit", "w" : 1600 @@ -3779,19 +3805,16 @@ Grailbird.data.tweets_2015_09 = "h" : 675, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 383, - "resize" : "fit", - "w" : 680 }, { "h" : 900, "resize" : "fit", "w" : 1600 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/FazZKdKxCF" } ], "hashtags" : [ ], @@ -3912,7 +3935,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "jim_rutherford", "protected" : false, "id_str" : "385193", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/832751720409149442\/dL2heO0o_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/973247748538421248\/tazuySV5_normal.jpg", "id" : 385193, "verified" : false } @@ -3954,7 +3977,7 @@ Grailbird.data.tweets_2015_09 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Eric Allam", + "name" : "Eric Allam \u26A1\uFE0F", "screen_name" : "eallam", "indices" : [ 3, 10 ], "id_str" : "46783", @@ -3969,14 +3992,6 @@ Grailbird.data.tweets_2015_09 = "id" : 641591317324283904, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/COdj52AWwAAkQpD.jpg", "sizes" : [ { - "h" : 381, - "resize" : "fit", - "w" : 283 - }, { - "h" : 381, - "resize" : "fit", - "w" : 283 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3988,7 +4003,16 @@ Grailbird.data.tweets_2015_09 = "h" : 381, "resize" : "fit", "w" : 283 + }, { + "h" : 381, + "resize" : "fit", + "w" : 283 + }, { + "h" : 381, + "resize" : "fit", + "w" : 283 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/YuQ98OFfhr" } ], "hashtags" : [ ], @@ -4010,14 +4034,6 @@ Grailbird.data.tweets_2015_09 = "id" : 641591317324283904, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/COdj52AWwAAkQpD.jpg", "sizes" : [ { - "h" : 381, - "resize" : "fit", - "w" : 283 - }, { - "h" : 381, - "resize" : "fit", - "w" : 283 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4029,7 +4045,16 @@ Grailbird.data.tweets_2015_09 = "h" : 381, "resize" : "fit", "w" : 283 + }, { + "h" : 381, + "resize" : "fit", + "w" : 283 + }, { + "h" : 381, + "resize" : "fit", + "w" : 283 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/YuQ98OFfhr" } ], "hashtags" : [ ], @@ -4041,7 +4066,7 @@ Grailbird.data.tweets_2015_09 = "id" : 641591318695780352, "created_at" : "2015-09-09 12:37:45 +0000", "user" : { - "name" : "Eric Allam", + "name" : "Eric Allam \u26A1\uFE0F", "screen_name" : "eallam", "protected" : false, "id_str" : "46783", @@ -4104,7 +4129,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "642263", "id" : 642263 }, { - "name" : "Lemont washington", + "name" : "Lemont Washington", "screen_name" : "cocoalabs", "indices" : [ 13, 23 ], "id_str" : "689183", diff --git a/public/tweets/data/js/tweets/2015_10.js b/public/tweets/data/js/tweets/2015_10.js index ff4965c..29a8983 100755 --- a/public/tweets/data/js/tweets/2015_10.js +++ b/public/tweets/data/js/tweets/2015_10.js @@ -114,7 +114,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "indices" : [ 0, 6 ], "id_str" : "1919231", @@ -519,18 +519,6 @@ Grailbird.data.tweets_2015_10 = "id" : 657019085612449792, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CR4zYJiVAAAY4Cg.jpg", "sizes" : [ { - "h" : 3024, - "resize" : "fit", - "w" : 4032 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { - "h" : 900, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -538,7 +526,20 @@ Grailbird.data.tweets_2015_10 = "h" : 1536, "resize" : "fit", "w" : 2048 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 3024, + "resize" : "fit", + "w" : 4032 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/tHF3uQgVpZ" } ], "hashtags" : [ ], @@ -605,7 +606,7 @@ Grailbird.data.tweets_2015_10 = "urls" : [ { "indices" : [ 16, 39 ], "url" : "https:\/\/t.co\/aktdLHZkP9", - "expanded_url" : "http:\/\/t.co", + "expanded_url" : "https:\/\/t.co", "display_url" : "t.co" }, { "indices" : [ 104, 127 ], @@ -732,57 +733,6 @@ Grailbird.data.tweets_2015_10 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Jeff Nadeau \uD83D\uDC7B", - "screen_name" : "jnadeau", - "indices" : [ 3, 11 ], - "id_str" : "2741981", - "id" : 2741981 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "656637820946149376", - "text" : "RT @jnadeau: I\u2019ve gone to the liberty of assuming you\u2019ve put infinite side effects into a property setter. Because of course you have.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "656632360830537730", - "text" : "I\u2019ve gone to the liberty of assuming you\u2019ve put infinite side effects into a property setter. Because of course you have.", - "id" : 656632360830537730, - "created_at" : "2015-10-21 00:45:29 +0000", - "user" : { - "name" : "Jeff Nadeau \uD83D\uDC7B", - "screen_name" : "jnadeau", - "protected" : false, - "id_str" : "2741981", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/867891485915664384\/IXsBQxbF_normal.jpg", - "id" : 2741981, - "verified" : false - } - }, - "id" : 656637820946149376, - "created_at" : "2015-10-21 01:07:10 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { @@ -952,7 +902,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Lemont washington", + "name" : "Lemont Washington", "screen_name" : "cocoalabs", "indices" : [ 0, 10 ], "id_str" : "689183", @@ -1506,14 +1456,6 @@ Grailbird.data.tweets_2015_10 = "id" : 654810380221349888, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRZakkxVAAAa5vD.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 576 - }, { - "h" : 680, - "resize" : "fit", - "w" : 383 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1525,7 +1467,16 @@ Grailbird.data.tweets_2015_10 = "h" : 1024, "resize" : "fit", "w" : 576 + }, { + "h" : 680, + "resize" : "fit", + "w" : 383 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 576 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/z2TXQNn6AF" } ], "hashtags" : [ ], @@ -1608,26 +1559,27 @@ Grailbird.data.tweets_2015_10 = "id" : 654789303357169664, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRZHZvVUYAAumUS.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OawqNWGCft" } ], "hashtags" : [ ], @@ -1649,26 +1601,27 @@ Grailbird.data.tweets_2015_10 = "id" : 654789303357169664, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRZHZvVUYAAumUS.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OawqNWGCft" } ], "hashtags" : [ ], @@ -1704,7 +1657,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 0, 16 ], "id_str" : "2436389418", @@ -1719,6 +1672,14 @@ Grailbird.data.tweets_2015_10 = "id" : 654769466216091648, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRY1XEOVEAA6CGm.png", "sizes" : [ { + "h" : 368, + "resize" : "fit", + "w" : 702 + }, { + "h" : 368, + "resize" : "fit", + "w" : 702 + }, { "h" : 356, "resize" : "fit", "w" : 680 @@ -1730,15 +1691,8 @@ Grailbird.data.tweets_2015_10 = "h" : 368, "resize" : "fit", "w" : 702 - }, { - "h" : 368, - "resize" : "fit", - "w" : 702 - }, { - "h" : 368, - "resize" : "fit", - "w" : 702 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/IG3e2QRrrQ" } ], "hashtags" : [ ], @@ -1826,26 +1780,27 @@ Grailbird.data.tweets_2015_10 = "id" : 654698759989821440, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRX1DbAVAAAaS29.png", "sizes" : [ { - "h" : 651, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { "h" : 1112, "resize" : "fit", "w" : 2050 + }, { + "h" : 651, + "resize" : "fit", + "w" : 1200 }, { "h" : 1111, "resize" : "fit", "w" : 2048 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 369, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/7k5RQJF6D1" } ], "hashtags" : [ ], @@ -1872,26 +1827,27 @@ Grailbird.data.tweets_2015_10 = "id" : 654698759989821440, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRX1DbAVAAAaS29.png", "sizes" : [ { - "h" : 651, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { "h" : 1112, "resize" : "fit", "w" : 2050 + }, { + "h" : 651, + "resize" : "fit", + "w" : 1200 }, { "h" : 1111, "resize" : "fit", "w" : 2048 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 369, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/7k5RQJF6D1" } ], "hashtags" : [ ], @@ -1932,7 +1888,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zeynep Tufekci", + "name" : "zeynep tufekci", "screen_name" : "zeynep", "indices" : [ 3, 10 ], "id_str" : "65375759", @@ -1964,7 +1920,7 @@ Grailbird.data.tweets_2015_10 = "id" : 654653361942171648, "created_at" : "2015-10-15 13:41:39 +0000", "user" : { - "name" : "Zeynep Tufekci", + "name" : "zeynep tufekci", "screen_name" : "zeynep", "protected" : false, "id_str" : "65375759", @@ -2014,26 +1970,27 @@ Grailbird.data.tweets_2015_10 = "id" : 654471220117696513, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRUmG27U8AE2LJ4.png", "sizes" : [ { + "h" : 650, + "resize" : "fit", + "w" : 1156 + }, { + "h" : 650, + "resize" : "fit", + "w" : 1156 + }, { + "h" : 650, + "resize" : "fit", + "w" : 1156 + }, { "h" : 382, "resize" : "fit", "w" : 680 - }, { - "h" : 650, - "resize" : "fit", - "w" : 1156 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 650, - "resize" : "fit", - "w" : 1156 - }, { - "h" : 650, - "resize" : "fit", - "w" : 1156 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/awiF7nwRH6" } ], "hashtags" : [ ], @@ -2185,7 +2142,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jamie Zawinski", + "name" : "j\u0355\u0320\u0326\u032A\u0355\u0313\u035B\u030A\u033E\u0304\u0345w\u0327\u0327\u0333\u032A\u0318\u034A\u030B\u0357\u033E\u0362\u0360z\u0322\u0318\u031E\u0348\u033A\u031E\u0329\u0313\u033D\u0310\u030B\u0357\u0306\u030B\u031A\u035F\u035C", "screen_name" : "jwz", "indices" : [ 134, 138 ], "id_str" : "7190742", @@ -2228,26 +2185,27 @@ Grailbird.data.tweets_2015_10 = "id" : 654348026719264769, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRS2EDwUYAERlPL.png", "sizes" : [ { - "h" : 1334, - "resize" : "fit", - "w" : 750 - }, { - "h" : 1334, - "resize" : "fit", - "w" : 750 - }, { "h" : 680, "resize" : "fit", "w" : 382 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 1334, + "resize" : "fit", + "w" : 750 + }, { + "h" : 1334, + "resize" : "fit", + "w" : 750 }, { "h" : 1200, "resize" : "fit", "w" : 675 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/LUy4qzwiSE" } ], "hashtags" : [ ], @@ -2280,26 +2238,27 @@ Grailbird.data.tweets_2015_10 = "id" : 654346549225390080, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRS0uDqVAAALXyw.png", "sizes" : [ { + "h" : 152, + "resize" : "fit", + "w" : 392 + }, { + "h" : 152, + "resize" : "fit", + "w" : 392 + }, { + "h" : 152, + "resize" : "fit", + "w" : 392 + }, { + "h" : 152, + "resize" : "fit", + "w" : 392 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 152, - "resize" : "fit", - "w" : 392 - }, { - "h" : 152, - "resize" : "fit", - "w" : 392 - }, { - "h" : 152, - "resize" : "fit", - "w" : 392 - }, { - "h" : 152, - "resize" : "fit", - "w" : 392 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/BnqiMahFB4" } ], "hashtags" : [ ], @@ -2323,7 +2282,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cara Hill", + "name" : "Beat it creep", "screen_name" : "ilikeprettycode", "indices" : [ 0, 16 ], "id_str" : "3245500824", @@ -2356,7 +2315,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC7B Phlegm Parrot", + "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -2497,7 +2456,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "gak_pdx", "protected" : false, "id_str" : "7603032", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/522118262868283392\/NUmqKUpc_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951217289944170496\/Qmzb-hYW_normal.jpg", "id" : 7603032, "verified" : false } @@ -2640,7 +2599,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Matthew Hankins", + "name" : "Matthew Hankins #FBPE", "screen_name" : "mc_hankins", "indices" : [ 3, 14 ], "id_str" : "298729878", @@ -2655,26 +2614,27 @@ Grailbird.data.tweets_2015_10 = "id" : 653621372489494528, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRIhLNzW8AAopy0.png", "sizes" : [ { + "h" : 465, + "resize" : "fit", + "w" : 644 + }, { + "h" : 465, + "resize" : "fit", + "w" : 644 + }, { + "h" : 465, + "resize" : "fit", + "w" : 644 + }, { + "h" : 465, + "resize" : "fit", + "w" : 644 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 465, - "resize" : "fit", - "w" : 644 - }, { - "h" : 465, - "resize" : "fit", - "w" : 644 - }, { - "h" : 465, - "resize" : "fit", - "w" : 644 - }, { - "h" : 465, - "resize" : "fit", - "w" : 644 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/WqAsubbgkD" } ], "hashtags" : [ ], @@ -2696,26 +2656,27 @@ Grailbird.data.tweets_2015_10 = "id" : 653621372489494528, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRIhLNzW8AAopy0.png", "sizes" : [ { + "h" : 465, + "resize" : "fit", + "w" : 644 + }, { + "h" : 465, + "resize" : "fit", + "w" : 644 + }, { + "h" : 465, + "resize" : "fit", + "w" : 644 + }, { + "h" : 465, + "resize" : "fit", + "w" : 644 + }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 465, - "resize" : "fit", - "w" : 644 - }, { - "h" : 465, - "resize" : "fit", - "w" : 644 - }, { - "h" : 465, - "resize" : "fit", - "w" : 644 - }, { - "h" : 465, - "resize" : "fit", - "w" : 644 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/WqAsubbgkD" } ], "hashtags" : [ ], @@ -2727,11 +2688,11 @@ Grailbird.data.tweets_2015_10 = "id" : 653621441053753344, "created_at" : "2015-10-12 17:21:09 +0000", "user" : { - "name" : "Matthew Hankins", + "name" : "Matthew Hankins #FBPE", "screen_name" : "mc_hankins", "protected" : false, "id_str" : "298729878", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/758742822975512576\/YwjUrQVD_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972903760308686848\/TBasXQyg_normal.jpg", "id" : 298729878, "verified" : false } @@ -2850,7 +2811,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 0, 16 ], "id_str" : "2436389418", @@ -2931,7 +2892,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "11666142", "id" : 11666142 }, { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 22, 38 ], "id_str" : "15267898", @@ -2976,7 +2937,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "11666142", "id" : 11666142 }, { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 22, 38 ], "id_str" : "15267898", @@ -3015,7 +2976,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "11666142", "id" : 11666142 }, { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 16, 32 ], "id_str" : "15267898", @@ -3030,6 +2991,14 @@ Grailbird.data.tweets_2015_10 = "id" : 653376639598919681, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CRFCl4vVAAE2eqe.png", "sizes" : [ { + "h" : 135, + "resize" : "crop", + "w" : 135 + }, { + "h" : 135, + "resize" : "fit", + "w" : 750 + }, { "h" : 135, "resize" : "fit", "w" : 750 @@ -3041,15 +3010,8 @@ Grailbird.data.tweets_2015_10 = "h" : 135, "resize" : "fit", "w" : 750 - }, { - "h" : 135, - "resize" : "fit", - "w" : 750 - }, { - "h" : 135, - "resize" : "crop", - "w" : 135 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/r93JF7IMDi" } ], "hashtags" : [ ], @@ -3599,17 +3561,17 @@ Grailbird.data.tweets_2015_10 = "id" : 652866938473811968, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQ9zBYFUEAAphab.jpg", "sizes" : [ { - "h" : 510, - "resize" : "fit", - "w" : 680 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 1124, "resize" : "fit", "w" : 1498 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 510, + "resize" : "fit", + "w" : 680 }, { "h" : 900, "resize" : "fit", @@ -3619,6 +3581,7 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 1498 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/vTE3wymUUD" } ], "hashtags" : [ ], @@ -3988,7 +3951,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "agreeablecar", "protected" : false, "id_str" : "550210137", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/460193465398095875\/WivJZNhw_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/922109308481036288\/wQsQxGoD_normal.jpg", "id" : 550210137, "verified" : false } @@ -4486,14 +4449,6 @@ Grailbird.data.tweets_2015_10 = "h" : 505, "resize" : "fit", "w" : 650 - }, { - "h" : 505, - "resize" : "fit", - "w" : 650 - }, { - "h" : 505, - "resize" : "fit", - "w" : 650 }, { "h" : 150, "resize" : "crop", @@ -4502,7 +4457,16 @@ Grailbird.data.tweets_2015_10 = "h" : 505, "resize" : "fit", "w" : 650 + }, { + "h" : 505, + "resize" : "fit", + "w" : 650 + }, { + "h" : 505, + "resize" : "fit", + "w" : 650 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/qBmLTzMt1d" } ], "hashtags" : [ ], @@ -5136,14 +5100,6 @@ Grailbird.data.tweets_2015_10 = "h" : 304, "resize" : "fit", "w" : 339 - }, { - "h" : 304, - "resize" : "fit", - "w" : 339 - }, { - "h" : 304, - "resize" : "fit", - "w" : 339 }, { "h" : 150, "resize" : "crop", @@ -5152,7 +5108,16 @@ Grailbird.data.tweets_2015_10 = "h" : 304, "resize" : "fit", "w" : 339 + }, { + "h" : 304, + "resize" : "fit", + "w" : 339 + }, { + "h" : 304, + "resize" : "fit", + "w" : 339 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/UFLR4HmctY" } ], "hashtags" : [ ], @@ -5233,7 +5198,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "12199652", "id" : 12199652 }, { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 8, 24 ], "id_str" : "2436389418", @@ -5658,26 +5623,27 @@ Grailbird.data.tweets_2015_10 = "id" : 651701613149552640, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQtPKg9UAAAp4Mh.jpg", "sizes" : [ { - "h" : 800, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 800, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 453, "resize" : "fit", "w" : 680 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 800, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 800, + "resize" : "fit", + "w" : 1200 }, { "h" : 800, "resize" : "fit", "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/jSpCQaYNew" } ], "hashtags" : [ ], @@ -5710,26 +5676,27 @@ Grailbird.data.tweets_2015_10 = "id" : 651701613149552640, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQtPKg9UAAAp4Mh.jpg", "sizes" : [ { - "h" : 800, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 800, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 453, "resize" : "fit", "w" : 680 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 800, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 800, + "resize" : "fit", + "w" : 1200 }, { "h" : 800, "resize" : "fit", "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/jSpCQaYNew" } ], "hashtags" : [ ], @@ -5750,7 +5717,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "petepachal", "protected" : false, "id_str" : "15536325", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/639835830199029760\/5TrXbA7S_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985233936719732736\/puvqK_Wt_normal.jpg", "id" : 15536325, "verified" : true } @@ -5770,7 +5737,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Lemont washington", + "name" : "Lemont Washington", "screen_name" : "cocoalabs", "indices" : [ 3, 13 ], "id_str" : "689183", @@ -5807,11 +5774,11 @@ Grailbird.data.tweets_2015_10 = "id" : 651637057094180865, "created_at" : "2015-10-07 05:55:55 +0000", "user" : { - "name" : "Lemont washington", + "name" : "Lemont Washington", "screen_name" : "cocoalabs", "protected" : false, "id_str" : "689183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903131024883818496\/h1dkH1bj_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/969701054529994752\/S0DxVozm_normal.jpg", "id" : 689183, "verified" : false } @@ -5930,7 +5897,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "43915380", "id" : 43915380 }, { - "name" : "[joe groff];", + "name" : "Joe Groff", "screen_name" : "jckarter", "indices" : [ 11, 20 ], "id_str" : "18559099", @@ -6224,7 +6191,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "grigs_talks", "protected" : false, "id_str" : "199981342", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1139810855\/jg-cup-noodle-large_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981207767225483264\/eG0HLCUa_normal.jpg", "id" : 199981342, "verified" : false } @@ -6299,7 +6266,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kevin Freaky Fox \uD83E\uDD8A", + "name" : "Kevin Fox \uD83E\uDD8A", "screen_name" : "kfury", "indices" : [ 3, 9 ], "id_str" : "785", @@ -6334,6 +6301,7 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/DzfNMixYrF" } ], "hashtags" : [ ], @@ -6375,6 +6343,7 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/DzfNMixYrF" } ], "hashtags" : [ ], @@ -6386,11 +6355,11 @@ Grailbird.data.tweets_2015_10 = "id" : 531873740200484864, "created_at" : "2014-11-10 18:19:16 +0000", "user" : { - "name" : "Kevin Freaky Fox \uD83E\uDD8A", + "name" : "Kevin Fox \uD83E\uDD8A", "screen_name" : "kfury", "protected" : false, "id_str" : "785", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/833142395738820608\/D7KMdJ8G_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/955311783421427713\/iIflNLI3_normal.jpg", "id" : 785, "verified" : true } @@ -6538,6 +6507,7 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/m9QPImRx3G" } ], "hashtags" : [ ], @@ -6579,6 +6549,7 @@ Grailbird.data.tweets_2015_10 = "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/m9QPImRx3G" } ], "hashtags" : [ ], @@ -6762,26 +6733,27 @@ Grailbird.data.tweets_2015_10 = "id" : 651062731362070529, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQkKGs1U8AECFkG.png", "sizes" : [ { + "h" : 392, + "resize" : "fit", + "w" : 680 + }, { "h" : 974, "resize" : "fit", "w" : 1688 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 392, + "h" : 974, "resize" : "fit", - "w" : 680 + "w" : 1688 }, { "h" : 692, "resize" : "fit", "w" : 1200 }, { - "h" : 974, - "resize" : "fit", - "w" : 1688 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/j1P4z5gF2Y" } ], "hashtags" : [ ], @@ -6882,7 +6854,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Spooky Student Debt", + "name" : "Mark Agee", "screen_name" : "MarkAgee", "indices" : [ 3, 12 ], "id_str" : "70775995", @@ -6897,14 +6869,6 @@ Grailbird.data.tweets_2015_10 = "id" : 648235952679202816, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CP7_KhoUsAAW_IU.jpg", "sizes" : [ { - "h" : 390, - "resize" : "fit", - "w" : 390 - }, { - "h" : 390, - "resize" : "fit", - "w" : 390 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -6916,7 +6880,16 @@ Grailbird.data.tweets_2015_10 = "h" : 390, "resize" : "fit", "w" : 390 + }, { + "h" : 390, + "resize" : "fit", + "w" : 390 + }, { + "h" : 390, + "resize" : "fit", + "w" : 390 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OV7GCloNBv" }, { "expanded_url" : "https:\/\/twitter.com\/MarkAgee\/status\/648235967434719232\/photo\/1", @@ -6927,6 +6900,14 @@ Grailbird.data.tweets_2015_10 = "id" : 648235952385626112, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CP7_KgiVEAAWn1F.jpg", "sizes" : [ { + "h" : 682, + "resize" : "fit", + "w" : 682 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 680, "resize" : "fit", "w" : 680 @@ -6938,15 +6919,8 @@ Grailbird.data.tweets_2015_10 = "h" : 682, "resize" : "fit", "w" : 682 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 682, - "resize" : "fit", - "w" : 682 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OV7GCloNBv" } ], "hashtags" : [ ], @@ -6968,14 +6942,6 @@ Grailbird.data.tweets_2015_10 = "id" : 648235952679202816, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CP7_KhoUsAAW_IU.jpg", "sizes" : [ { - "h" : 390, - "resize" : "fit", - "w" : 390 - }, { - "h" : 390, - "resize" : "fit", - "w" : 390 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -6987,7 +6953,16 @@ Grailbird.data.tweets_2015_10 = "h" : 390, "resize" : "fit", "w" : 390 + }, { + "h" : 390, + "resize" : "fit", + "w" : 390 + }, { + "h" : 390, + "resize" : "fit", + "w" : 390 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OV7GCloNBv" }, { "expanded_url" : "https:\/\/twitter.com\/MarkAgee\/status\/648235967434719232\/photo\/1", @@ -6998,6 +6973,14 @@ Grailbird.data.tweets_2015_10 = "id" : 648235952385626112, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CP7_KgiVEAAWn1F.jpg", "sizes" : [ { + "h" : 682, + "resize" : "fit", + "w" : 682 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 680, "resize" : "fit", "w" : 680 @@ -7009,15 +6992,8 @@ Grailbird.data.tweets_2015_10 = "h" : 682, "resize" : "fit", "w" : 682 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 682, - "resize" : "fit", - "w" : 682 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OV7GCloNBv" } ], "hashtags" : [ ], @@ -7029,7 +7005,7 @@ Grailbird.data.tweets_2015_10 = "id" : 648235967434719232, "created_at" : "2015-09-27 20:41:12 +0000", "user" : { - "name" : "Spooky Student Debt", + "name" : "Mark Agee", "screen_name" : "MarkAgee", "protected" : false, "id_str" : "70775995", @@ -7114,6 +7090,10 @@ Grailbird.data.tweets_2015_10 = "h" : 192, "resize" : "fit", "w" : 270 + }, { + "h" : 192, + "resize" : "fit", + "w" : 270 }, { "h" : 150, "resize" : "crop", @@ -7126,11 +7106,8 @@ Grailbird.data.tweets_2015_10 = "h" : 192, "resize" : "fit", "w" : 270 - }, { - "h" : 192, - "resize" : "fit", - "w" : 270 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OvO4BXvlBU" } ], "hashtags" : [ ], @@ -7849,13 +7826,17 @@ Grailbird.data.tweets_2015_10 = "id" : 650051781829918720, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CQVypsWVAAAry65.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 600, "resize" : "fit", "w" : 1200 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 1200, + "resize" : "fit", + "w" : 2400 }, { "h" : 340, "resize" : "fit", @@ -7864,11 +7845,8 @@ Grailbird.data.tweets_2015_10 = "h" : 1024, "resize" : "fit", "w" : 2048 - }, { - "h" : 1200, - "resize" : "fit", - "w" : 2400 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/rIajGaALNu" } ], "hashtags" : [ { @@ -7994,7 +7972,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Spike \u26CF Rundle", + "name" : "Mike Rundle", "screen_name" : "flyosity", "indices" : [ 0, 9 ], "id_str" : "10545", diff --git a/public/tweets/data/js/tweets/2015_11.js b/public/tweets/data/js/tweets/2015_11.js index bb7d5d6..35fed5b 100755 --- a/public/tweets/data/js/tweets/2015_11.js +++ b/public/tweets/data/js/tweets/2015_11.js @@ -203,6 +203,7 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/uWhqZ3ngWI" } ], "hashtags" : [ ], @@ -249,6 +250,7 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/uWhqZ3ngWI" } ], "hashtags" : [ ], @@ -305,7 +307,7 @@ Grailbird.data.tweets_2015_11 = }, { "indices" : [ 63, 86 ], "url" : "https:\/\/t.co\/aktdLHZkP9", - "expanded_url" : "http:\/\/t.co", + "expanded_url" : "https:\/\/t.co", "display_url" : "t.co" } ] }, @@ -383,26 +385,27 @@ Grailbird.data.tweets_2015_11 = "id" : 667602881281851392, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CUPNSI3VAAALSPB.jpg", "sizes" : [ { - "h" : 446, - "resize" : "fit", - "w" : 768 - }, { - "h" : 446, - "resize" : "fit", - "w" : 768 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 395, "resize" : "fit", "w" : 680 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 446, + "resize" : "fit", + "w" : 768 + }, { + "h" : 446, + "resize" : "fit", + "w" : 768 }, { "h" : 446, "resize" : "fit", "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/dZywyhXPPO" } ], "hashtags" : [ ], @@ -441,9 +444,9 @@ Grailbird.data.tweets_2015_11 = "id" : 667582869624086528, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CUO7FToUYAAW-Fo.jpg", "sizes" : [ { - "h" : 510, + "h" : 768, "resize" : "fit", - "w" : 680 + "w" : 1024 }, { "h" : 150, "resize" : "crop", @@ -457,10 +460,11 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 1024 }, { - "h" : 768, + "h" : 510, "resize" : "fit", - "w" : 1024 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ru5qq3QUZ3" } ], "hashtags" : [ ], @@ -551,6 +555,14 @@ Grailbird.data.tweets_2015_11 = "id" : 667023542332985344, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CUG-YLGUkAAs-Ra.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 576, + "resize" : "fit", + "w" : 1024 + }, { "h" : 576, "resize" : "fit", "w" : 1024 @@ -562,15 +574,8 @@ Grailbird.data.tweets_2015_11 = "h" : 383, "resize" : "fit", "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 576, - "resize" : "fit", - "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/i2WVrHpUTF" } ], "hashtags" : [ ], @@ -608,14 +613,6 @@ Grailbird.data.tweets_2015_11 = "id" : 667006350015139841, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CUGuvcuVEAEkdnq.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -627,7 +624,16 @@ Grailbird.data.tweets_2015_11 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/p9DRUbfyhi" } ], "hashtags" : [ ], @@ -818,7 +824,7 @@ Grailbird.data.tweets_2015_11 = "screen_name" : "iosaaron", "protected" : false, "id_str" : "1968340063", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/865573130349060096\/uPr3m_RE_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/968073603517317125\/EBmhm3go_normal.jpg", "id" : 1968340063, "verified" : false } @@ -864,26 +870,27 @@ Grailbird.data.tweets_2015_11 = "id" : 666414626163318784, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CT-UklmW4AABLiL.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/38Usiwswmz" } ], "hashtags" : [ ], @@ -1222,7 +1229,7 @@ Grailbird.data.tweets_2015_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Lemont washington", + "name" : "Lemont Washington", "screen_name" : "cocoalabs", "indices" : [ 0, 10 ], "id_str" : "689183", @@ -1255,7 +1262,7 @@ Grailbird.data.tweets_2015_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "indices" : [ 3, 19 ], "id_str" : "2436389418", @@ -1270,26 +1277,27 @@ Grailbird.data.tweets_2015_11 = "id" : 663403004649799680, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CTThhJMUAAAIVCq.jpg", "sizes" : [ { - "h" : 547, - "resize" : "fit", - "w" : 839 - }, { - "h" : 547, - "resize" : "fit", - "w" : 839 - }, { - "h" : 547, - "resize" : "fit", - "w" : 839 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 547, + "resize" : "fit", + "w" : 839 + }, { + "h" : 547, + "resize" : "fit", + "w" : 839 }, { "h" : 443, "resize" : "fit", "w" : 680 + }, { + "h" : 547, + "resize" : "fit", + "w" : 839 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/m5E0sYw8Nk" } ], "hashtags" : [ ], @@ -1316,26 +1324,27 @@ Grailbird.data.tweets_2015_11 = "id" : 663403004649799680, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CTThhJMUAAAIVCq.jpg", "sizes" : [ { - "h" : 547, - "resize" : "fit", - "w" : 839 - }, { - "h" : 547, - "resize" : "fit", - "w" : 839 - }, { - "h" : 547, - "resize" : "fit", - "w" : 839 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 547, + "resize" : "fit", + "w" : 839 + }, { + "h" : 547, + "resize" : "fit", + "w" : 839 }, { "h" : 443, "resize" : "fit", "w" : 680 + }, { + "h" : 547, + "resize" : "fit", + "w" : 839 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/m5E0sYw8Nk" } ], "hashtags" : [ ], @@ -1352,11 +1361,11 @@ Grailbird.data.tweets_2015_11 = "id" : 663403012916776960, "created_at" : "2015-11-08 17:09:38 +0000", "user" : { - "name" : "SpookyTayOnSecurity", + "name" : "SwiftOnSecurity", "screen_name" : "SwiftOnSecurity", "protected" : false, "id_str" : "2436389418", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919340959514607616\/-7DZSc_y_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985003054197018625\/irNuSVxr_normal.jpg", "id" : 2436389418, "verified" : false } @@ -1396,15 +1405,16 @@ Grailbird.data.tweets_2015_11 = "h" : 390, "resize" : "fit", "w" : 312 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 390, "resize" : "fit", "w" : 312 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/NQ3MXERJea" } ], "hashtags" : [ ], @@ -1514,23 +1524,24 @@ Grailbird.data.tweets_2015_11 = "h" : 155, "resize" : "fit", "w" : 680 + }, { + "h" : 240, + "resize" : "fit", + "w" : 1052 + }, { + "h" : 240, + "resize" : "fit", + "w" : 1052 + }, { + "h" : 240, + "resize" : "fit", + "w" : 1052 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 240, - "resize" : "fit", - "w" : 1052 - }, { - "h" : 240, - "resize" : "fit", - "w" : 1052 - }, { - "h" : 240, - "resize" : "fit", - "w" : 1052 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RmoL1yRUZg" } ], "hashtags" : [ ], @@ -1555,23 +1566,24 @@ Grailbird.data.tweets_2015_11 = "h" : 155, "resize" : "fit", "w" : 680 + }, { + "h" : 240, + "resize" : "fit", + "w" : 1052 + }, { + "h" : 240, + "resize" : "fit", + "w" : 1052 + }, { + "h" : 240, + "resize" : "fit", + "w" : 1052 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 240, - "resize" : "fit", - "w" : 1052 - }, { - "h" : 240, - "resize" : "fit", - "w" : 1052 - }, { - "h" : 240, - "resize" : "fit", - "w" : 1052 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/RmoL1yRUZg" } ], "hashtags" : [ ], @@ -1649,18 +1661,6 @@ Grailbird.data.tweets_2015_11 = "id" : 662412811490865152, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CTFc8UOUsAACdo9.jpg", "sizes" : [ { - "h" : 207, - "resize" : "fit", - "w" : 615 - }, { - "h" : 207, - "resize" : "fit", - "w" : 615 - }, { - "h" : 207, - "resize" : "fit", - "w" : 615 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1668,7 +1668,20 @@ Grailbird.data.tweets_2015_11 = "h" : 207, "resize" : "fit", "w" : 615 + }, { + "h" : 207, + "resize" : "fit", + "w" : 615 + }, { + "h" : 207, + "resize" : "fit", + "w" : 615 + }, { + "h" : 207, + "resize" : "fit", + "w" : 615 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/yPogPcHeFg" } ], "hashtags" : [ ], @@ -1730,13 +1743,13 @@ Grailbird.data.tweets_2015_11 = "id" : 662309721861283840, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CTD_LtbUYAA2xrG.png", "sizes" : [ { - "h" : 383, - "resize" : "fit", - "w" : 680 - }, { "h" : 576, "resize" : "fit", "w" : 1024 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 }, { "h" : 576, "resize" : "fit", @@ -1750,6 +1763,7 @@ Grailbird.data.tweets_2015_11 = "resize" : "crop", "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Q8SapjwIaX" } ], "hashtags" : [ ], @@ -1958,18 +1972,19 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 480 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 255, + "h" : 360, "resize" : "fit", - "w" : 340 + "w" : 480 }, { "h" : 360, "resize" : "fit", "w" : 480 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/KonK5nXZYT" } ], "hashtags" : [ ], @@ -1999,18 +2014,19 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 480 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 255, + "h" : 360, "resize" : "fit", - "w" : 340 + "w" : 480 }, { "h" : 360, "resize" : "fit", "w" : 480 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/KonK5nXZYT" } ], "hashtags" : [ ], @@ -2026,7 +2042,7 @@ Grailbird.data.tweets_2015_11 = "screen_name" : "gak_pdx", "protected" : false, "id_str" : "7603032", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/522118262868283392\/NUmqKUpc_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951217289944170496\/Qmzb-hYW_normal.jpg", "id" : 7603032, "verified" : false } @@ -2064,23 +2080,24 @@ Grailbird.data.tweets_2015_11 = "h" : 509, "resize" : "fit", "w" : 680 + }, { + "h" : 534, + "resize" : "fit", + "w" : 714 + }, { + "h" : 534, + "resize" : "fit", + "w" : 714 + }, { + "h" : 534, + "resize" : "fit", + "w" : 714 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 534, - "resize" : "fit", - "w" : 714 - }, { - "h" : 534, - "resize" : "fit", - "w" : 714 - }, { - "h" : 534, - "resize" : "fit", - "w" : 714 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xybuqQG2jU" } ], "hashtags" : [ ], @@ -2105,23 +2122,24 @@ Grailbird.data.tweets_2015_11 = "h" : 509, "resize" : "fit", "w" : 680 + }, { + "h" : 534, + "resize" : "fit", + "w" : 714 + }, { + "h" : 534, + "resize" : "fit", + "w" : 714 + }, { + "h" : 534, + "resize" : "fit", + "w" : 714 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 534, - "resize" : "fit", - "w" : 714 - }, { - "h" : 534, - "resize" : "fit", - "w" : 714 - }, { - "h" : 534, - "resize" : "fit", - "w" : 714 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xybuqQG2jU" } ], "hashtags" : [ ], @@ -2557,22 +2575,23 @@ Grailbird.data.tweets_2015_11 = "resize" : "fit", "w" : 528 }, { - "h" : 680, + "h" : 734, "resize" : "fit", - "w" : 489 + "w" : 528 + }, { + "h" : 734, + "resize" : "fit", + "w" : 528 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 734, + "h" : 680, "resize" : "fit", - "w" : 528 - }, { - "h" : 734, - "resize" : "fit", - "w" : 528 + "w" : 489 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Fn3jICrh7F" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2015_12.js b/public/tweets/data/js/tweets/2015_12.js index e82f3a0..39cd9fc 100755 --- a/public/tweets/data/js/tweets/2015_12.js +++ b/public/tweets/data/js/tweets/2015_12.js @@ -287,6 +287,10 @@ Grailbird.data.tweets_2015_12 = "id" : 682104610656391168, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CXdSh4nUkAAxxrT.png", "sizes" : [ { + "h" : 1200, + "resize" : "fit", + "w" : 675 + }, { "h" : 1334, "resize" : "fit", "w" : 750 @@ -302,11 +306,8 @@ Grailbird.data.tweets_2015_12 = "h" : 1334, "resize" : "fit", "w" : 750 - }, { - "h" : 1200, - "resize" : "fit", - "w" : 675 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/2ttuGVgL8r" } ], "hashtags" : [ ], @@ -521,7 +522,7 @@ Grailbird.data.tweets_2015_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 3, 19 ], "id_str" : "15267898", @@ -548,11 +549,11 @@ Grailbird.data.tweets_2015_12 = "id" : 681125702884814848, "created_at" : "2015-12-27 14:53:16 +0000", "user" : { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/923969343087669248\/diAzr2_2_normal.jpg", "id" : 15267898, "verified" : true } @@ -587,14 +588,6 @@ Grailbird.data.tweets_2015_12 = "id" : 680987758085541889, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CXNawgkUEAEXbl3.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -606,7 +599,16 @@ Grailbird.data.tweets_2015_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/mlJNklvUnE" } ], "hashtags" : [ ], @@ -677,14 +679,6 @@ Grailbird.data.tweets_2015_12 = "id" : 680939903266361345, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CXMvO_eUkAElM5s.jpg", "sizes" : [ { - "h" : 768, - "resize" : "fit", - "w" : 1024 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -696,7 +690,16 @@ Grailbird.data.tweets_2015_12 = "h" : 768, "resize" : "fit", "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/CZFBAl0xBv" }, { "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/680939924028145664\/photo\/1", @@ -707,26 +710,27 @@ Grailbird.data.tweets_2015_12 = "id" : 680939920710479872, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CXMvQAdUsAAfyq1.jpg", "sizes" : [ { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 }, { "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/CZFBAl0xBv" } ], "hashtags" : [ ], @@ -803,26 +807,27 @@ Grailbird.data.tweets_2015_12 = "id" : 680781482760122369, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CXKfJtGUsAEylmo.jpg", "sizes" : [ { - "h" : 680, - "resize" : "fit", - "w" : 510 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 2048, + "h" : 3326, "resize" : "fit", - "w" : 1537 + "w" : 2496 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 }, { "h" : 1200, "resize" : "fit", "w" : 901 }, { - "h" : 3326, + "h" : 2048, "resize" : "fit", - "w" : 2496 + "w" : 1537 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/WwH01xcxBB" } ], "hashtags" : [ { @@ -1356,6 +1361,14 @@ Grailbird.data.tweets_2015_12 = "id" : 675314381266280448, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CV8y2g8W4AAtqlw.jpg", "sizes" : [ { + "h" : 682, + "resize" : "fit", + "w" : 1024 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 453, "resize" : "fit", "w" : 680 @@ -1367,15 +1380,8 @@ Grailbird.data.tweets_2015_12 = "h" : 682, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 682, - "resize" : "fit", - "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xEOn44GjJF" }, { "expanded_url" : "https:\/\/twitter.com\/JustinTrudeau\/status\/675314389541629952\/photo\/1", @@ -1386,6 +1392,10 @@ Grailbird.data.tweets_2015_12 = "id" : 675314381543092224, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CV8y2h-WsAABDXY.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 453, "resize" : "fit", "w" : 680 @@ -1393,10 +1403,6 @@ Grailbird.data.tweets_2015_12 = "h" : 682, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 682, "resize" : "fit", @@ -1406,6 +1412,7 @@ Grailbird.data.tweets_2015_12 = "resize" : "fit", "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xEOn44GjJF" }, { "expanded_url" : "https:\/\/twitter.com\/JustinTrudeau\/status\/675314389541629952\/photo\/1", @@ -1427,15 +1434,16 @@ Grailbird.data.tweets_2015_12 = "h" : 682, "resize" : "fit", "w" : 1024 - }, { - "h" : 453, - "resize" : "fit", - "w" : 680 }, { "h" : 682, "resize" : "fit", "w" : 1024 + }, { + "h" : 453, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xEOn44GjJF" } ], "hashtags" : [ ], @@ -1457,6 +1465,14 @@ Grailbird.data.tweets_2015_12 = "id" : 675314381266280448, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CV8y2g8W4AAtqlw.jpg", "sizes" : [ { + "h" : 682, + "resize" : "fit", + "w" : 1024 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 453, "resize" : "fit", "w" : 680 @@ -1468,15 +1484,8 @@ Grailbird.data.tweets_2015_12 = "h" : 682, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 682, - "resize" : "fit", - "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xEOn44GjJF" }, { "expanded_url" : "https:\/\/twitter.com\/JustinTrudeau\/status\/675314389541629952\/photo\/1", @@ -1487,6 +1496,10 @@ Grailbird.data.tweets_2015_12 = "id" : 675314381543092224, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CV8y2h-WsAABDXY.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 453, "resize" : "fit", "w" : 680 @@ -1494,10 +1507,6 @@ Grailbird.data.tweets_2015_12 = "h" : 682, "resize" : "fit", "w" : 1024 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 682, "resize" : "fit", @@ -1507,6 +1516,7 @@ Grailbird.data.tweets_2015_12 = "resize" : "fit", "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xEOn44GjJF" }, { "expanded_url" : "https:\/\/twitter.com\/JustinTrudeau\/status\/675314389541629952\/photo\/1", @@ -1528,15 +1538,16 @@ Grailbird.data.tweets_2015_12 = "h" : 682, "resize" : "fit", "w" : 1024 - }, { - "h" : 453, - "resize" : "fit", - "w" : 680 }, { "h" : 682, "resize" : "fit", "w" : 1024 + }, { + "h" : 453, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/xEOn44GjJF" } ], "hashtags" : [ ], @@ -1552,7 +1563,7 @@ Grailbird.data.tweets_2015_12 = "screen_name" : "JustinTrudeau", "protected" : false, "id_str" : "14260960", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/816404989392211968\/Wv_8ZDrX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/950393608221454336\/NbB_X0TG_normal.jpg", "id" : 14260960, "verified" : true } @@ -1626,13 +1637,17 @@ Grailbird.data.tweets_2015_12 = "id" : 674743701894115328, "media_url_https" : "https:\/\/pbs.twimg.com\/tweet_video_thumb\/CV0r0mnUsAAIQkL.png", "sizes" : [ { + "h" : 68, + "resize" : "fit", + "w" : 680 + }, { + "h" : 68, + "resize" : "fit", + "w" : 680 + }, { "h" : 68, "resize" : "crop", "w" : 68 - }, { - "h" : 60, - "resize" : "fit", - "w" : 600 }, { "h" : 68, "resize" : "fit", @@ -1641,11 +1656,8 @@ Grailbird.data.tweets_2015_12 = "h" : 68, "resize" : "fit", "w" : 680 - }, { - "h" : 34, - "resize" : "fit", - "w" : 340 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/DgRZy5ygdx" } ], "hashtags" : [ ], @@ -1930,7 +1942,7 @@ Grailbird.data.tweets_2015_12 = "screen_name" : "clattner_llvm", "protected" : false, "id_str" : "2543588034", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916821795008688128\/yONBAVaZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/948421391690252288\/e2Ti9PMU_normal.jpg", "id" : 2543588034, "verified" : false } @@ -2439,10 +2451,6 @@ Grailbird.data.tweets_2015_12 = "h" : 378, "resize" : "fit", "w" : 672 - }, { - "h" : 378, - "resize" : "fit", - "w" : 672 }, { "h" : 150, "resize" : "crop", @@ -2455,7 +2463,12 @@ Grailbird.data.tweets_2015_12 = "h" : 378, "resize" : "fit", "w" : 672 + }, { + "h" : 378, + "resize" : "fit", + "w" : 672 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OeiCbrSu7F" } ], "hashtags" : [ { @@ -2483,10 +2496,6 @@ Grailbird.data.tweets_2015_12 = "h" : 378, "resize" : "fit", "w" : 672 - }, { - "h" : 378, - "resize" : "fit", - "w" : 672 }, { "h" : 150, "resize" : "crop", @@ -2499,7 +2508,12 @@ Grailbird.data.tweets_2015_12 = "h" : 378, "resize" : "fit", "w" : 672 + }, { + "h" : 378, + "resize" : "fit", + "w" : 672 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/OeiCbrSu7F" } ], "hashtags" : [ { diff --git a/public/tweets/data/js/tweets/2016_01.js b/public/tweets/data/js/tweets/2016_01.js index 8575b62..b145242 100755 --- a/public/tweets/data/js/tweets/2016_01.js +++ b/public/tweets/data/js/tweets/2016_01.js @@ -36,7 +36,7 @@ Grailbird.data.tweets_2016_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -448,7 +448,7 @@ Grailbird.data.tweets_2016_01 = "screen_name" : "vicpdcanada", "protected" : false, "id_str" : "80139117", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/721560631472562176\/wade5mNL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/933128278671466496\/9F7nlK4k_normal.jpg", "id" : 80139117, "verified" : true } @@ -754,22 +754,23 @@ Grailbird.data.tweets_2016_01 = "resize" : "fit", "w" : 784 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 607, + "resize" : "fit", + "w" : 680 }, { "h" : 700, "resize" : "fit", "w" : 784 }, { - "h" : 536, + "h" : 700, "resize" : "fit", - "w" : 600 + "w" : 784 }, { - "h" : 304, - "resize" : "fit", - "w" : 340 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/LARdAb2Z9O" } ], "hashtags" : [ { @@ -912,7 +913,7 @@ Grailbird.data.tweets_2016_01 = "screen_name" : "ryanflorence", "protected" : false, "id_str" : "16468446", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/864681873984835585\/4eV1BACS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937382461918478336\/AxXNkFRG_normal.jpg", "id" : 16468446, "verified" : false } @@ -968,7 +969,7 @@ Grailbird.data.tweets_2016_01 = "screen_name" : "ryanflorence", "protected" : false, "id_str" : "16468446", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/864681873984835585\/4eV1BACS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937382461918478336\/AxXNkFRG_normal.jpg", "id" : 16468446, "verified" : false } @@ -1010,6 +1011,10 @@ Grailbird.data.tweets_2016_01 = "h" : 529, "resize" : "fit", "w" : 600 + }, { + "h" : 529, + "resize" : "fit", + "w" : 600 }, { "h" : 150, "resize" : "crop", @@ -1018,11 +1023,8 @@ Grailbird.data.tweets_2016_01 = "h" : 529, "resize" : "fit", "w" : 600 - }, { - "h" : 529, - "resize" : "fit", - "w" : 600 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/iiYbprkWb0" } ], "hashtags" : [ ], @@ -1348,26 +1350,27 @@ Grailbird.data.tweets_2016_01 = "id" : 684230421253468160, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CX7f8WNUMAAAp9U.jpg", "sizes" : [ { - "h" : 534, - "resize" : "fit", - "w" : 950 - }, { - "h" : 534, - "resize" : "fit", - "w" : 950 - }, { - "h" : 534, - "resize" : "fit", - "w" : 950 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 534, + "resize" : "fit", + "w" : 950 + }, { + "h" : 534, + "resize" : "fit", + "w" : 950 + }, { + "h" : 534, + "resize" : "fit", + "w" : 950 }, { "h" : 382, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/P4MFgUbJ0B" } ], "hashtags" : [ ], @@ -1394,26 +1397,27 @@ Grailbird.data.tweets_2016_01 = "id" : 684230421253468160, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CX7f8WNUMAAAp9U.jpg", "sizes" : [ { - "h" : 534, - "resize" : "fit", - "w" : 950 - }, { - "h" : 534, - "resize" : "fit", - "w" : 950 - }, { - "h" : 534, - "resize" : "fit", - "w" : 950 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 534, + "resize" : "fit", + "w" : 950 + }, { + "h" : 534, + "resize" : "fit", + "w" : 950 + }, { + "h" : 534, + "resize" : "fit", + "w" : 950 }, { "h" : 382, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/P4MFgUbJ0B" } ], "hashtags" : [ ], @@ -1489,22 +1493,23 @@ Grailbird.data.tweets_2016_01 = "resize" : "fit", "w" : 900 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 450, + "resize" : "fit", + "w" : 900 }, { "h" : 450, "resize" : "fit", "w" : 900 }, { - "h" : 170, + "h" : 340, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 300, - "resize" : "fit", - "w" : 600 + "h" : 150, + "resize" : "crop", + "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/hhMZKd9tD8" } ], "hashtags" : [ ], @@ -1596,6 +1601,14 @@ Grailbird.data.tweets_2016_01 = "h" : 466, "resize" : "fit", "w" : 1270 + }, { + "h" : 440, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 250, + "resize" : "fit", + "w" : 680 }, { "h" : 466, "resize" : "fit", @@ -1604,15 +1617,8 @@ Grailbird.data.tweets_2016_01 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 250, - "resize" : "fit", - "w" : 680 - }, { - "h" : 440, - "resize" : "fit", - "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/aVv6d0s7OY" } ], "hashtags" : [ ], @@ -1703,23 +1709,24 @@ Grailbird.data.tweets_2016_01 = "h" : 117, "resize" : "fit", "w" : 677 - }, { - "h" : 117, - "resize" : "fit", - "w" : 677 - }, { - "h" : 117, - "resize" : "fit", - "w" : 677 - }, { - "h" : 117, - "resize" : "fit", - "w" : 677 }, { "h" : 117, "resize" : "crop", "w" : 117 + }, { + "h" : 117, + "resize" : "fit", + "w" : 677 + }, { + "h" : 117, + "resize" : "fit", + "w" : 677 + }, { + "h" : 117, + "resize" : "fit", + "w" : 677 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ls3VAID0wf" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2016_02.js b/public/tweets/data/js/tweets/2016_02.js index 0d294da..c1744b9 100755 --- a/public/tweets/data/js/tweets/2016_02.js +++ b/public/tweets/data/js/tweets/2016_02.js @@ -199,7 +199,7 @@ Grailbird.data.tweets_2016_02 = "screen_name" : "JustinTrudeau", "protected" : false, "id_str" : "14260960", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/816404989392211968\/Wv_8ZDrX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/950393608221454336\/NbB_X0TG_normal.jpg", "id" : 14260960, "verified" : true } @@ -797,7 +797,7 @@ Grailbird.data.tweets_2016_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 3, 19 ], "id_str" : "15267898", @@ -824,11 +824,11 @@ Grailbird.data.tweets_2016_02 = "id" : 700849276474228736, "created_at" : "2016-02-20 01:07:43 +0000", "user" : { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/923969343087669248\/diAzr2_2_normal.jpg", "id" : 15267898, "verified" : true } @@ -848,7 +848,7 @@ Grailbird.data.tweets_2016_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 3, 19 ], "id_str" : "15267898", @@ -875,11 +875,11 @@ Grailbird.data.tweets_2016_02 = "id" : 700848947816960000, "created_at" : "2016-02-20 01:06:24 +0000", "user" : { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/923969343087669248\/diAzr2_2_normal.jpg", "id" : 15267898, "verified" : true } @@ -899,7 +899,7 @@ Grailbird.data.tweets_2016_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 3, 19 ], "id_str" : "15267898", @@ -926,11 +926,11 @@ Grailbird.data.tweets_2016_02 = "id" : 700848113230159872, "created_at" : "2016-02-20 01:03:05 +0000", "user" : { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "protected" : false, "id_str" : "15267898", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914535586068910081\/Sj94rKBY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/923969343087669248\/diAzr2_2_normal.jpg", "id" : 15267898, "verified" : true } @@ -1003,26 +1003,27 @@ Grailbird.data.tweets_2016_02 = "id" : 700823529051152384, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CbnTSVtUYAAuzWE.jpg", "sizes" : [ { - "h" : 1334, + "h" : 680, "resize" : "fit", - "w" : 750 - }, { - "h" : 1200, - "resize" : "fit", - "w" : 675 + "w" : 382 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 675 }, { "h" : 1334, "resize" : "fit", "w" : 750 }, { - "h" : 680, + "h" : 1334, "resize" : "fit", - "w" : 382 + "w" : 750 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/dmEiwJtRe8" } ], "hashtags" : [ ], @@ -1680,7 +1681,7 @@ Grailbird.data.tweets_2016_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Especially Heinous", + "name" : "Space Force Commander", "screen_name" : "sassy_swaggerty", "indices" : [ 3, 19 ], "id_str" : "177552754", @@ -1695,17 +1696,9 @@ Grailbird.data.tweets_2016_02 = "id" : 696531629838209024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CaqT07NUkAA1svs.jpg", "sizes" : [ { - "h" : 1080, - "resize" : "fit", - "w" : 1440 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 }, { "h" : 900, "resize" : "fit", @@ -1714,7 +1707,16 @@ Grailbird.data.tweets_2016_02 = "h" : 1080, "resize" : "fit", "w" : 1440 + }, { + "h" : 1080, + "resize" : "fit", + "w" : 1440 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/pJhHWiRdqA" } ], "hashtags" : [ { @@ -1739,17 +1741,9 @@ Grailbird.data.tweets_2016_02 = "id" : 696531629838209024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CaqT07NUkAA1svs.jpg", "sizes" : [ { - "h" : 1080, - "resize" : "fit", - "w" : 1440 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 }, { "h" : 900, "resize" : "fit", @@ -1758,7 +1752,16 @@ Grailbird.data.tweets_2016_02 = "h" : 1080, "resize" : "fit", "w" : 1440 + }, { + "h" : 1080, + "resize" : "fit", + "w" : 1440 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/pJhHWiRdqA" } ], "hashtags" : [ { @@ -1773,11 +1776,11 @@ Grailbird.data.tweets_2016_02 = "id" : 696531639804026880, "created_at" : "2016-02-08 03:10:58 +0000", "user" : { - "name" : "Especially Heinous", + "name" : "Space Force Commander", "screen_name" : "sassy_swaggerty", "protected" : false, "id_str" : "177552754", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000728861442\/786edc97d08fc3c375bf3b7a02b0a3ec_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/974862249549615104\/kE5eVJ5l_normal.jpg", "id" : 177552754, "verified" : false } @@ -1973,7 +1976,7 @@ Grailbird.data.tweets_2016_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Nate Cook \uD83C\uDF42", + "name" : "Nate Cook \u2603\uFE0F", "screen_name" : "nnnnnnnn", "indices" : [ 0, 9 ], "id_str" : "4365311", diff --git a/public/tweets/data/js/tweets/2016_03.js b/public/tweets/data/js/tweets/2016_03.js index a11ccac..de3d81e 100755 --- a/public/tweets/data/js/tweets/2016_03.js +++ b/public/tweets/data/js/tweets/2016_03.js @@ -450,7 +450,7 @@ Grailbird.data.tweets_2016_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Joe Fabisevich \uD83D\uDC36\uD83C\uDDF5\uD83C\uDDF7\uD83D\uDC33\u2122", + "name" : "J\u20DDO\u20DDE\u20DD Fabisevich \uD83D\uDC36\uD83D\uDC2F\u26BE\uFE0F\uD83C\uDDF5\uD83C\uDDF7\uD83D\uDC31\uD83D\uDC33\u2122", "screen_name" : "mergesort", "indices" : [ 0, 10 ], "id_str" : "26178841", @@ -495,7 +495,7 @@ Grailbird.data.tweets_2016_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC7B Phlegm Parrot", + "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", "screen_name" : "gembarrett", "indices" : [ 3, 14 ], "id_str" : "43727347", @@ -522,7 +522,7 @@ Grailbird.data.tweets_2016_03 = "id" : 712392149178961920, "created_at" : "2016-03-22 21:34:58 +0000", "user" : { - "name" : "\uD83D\uDC7B Phlegm Parrot", + "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", "screen_name" : "gembarrett", "protected" : false, "id_str" : "43727347", @@ -742,7 +742,7 @@ Grailbird.data.tweets_2016_03 = "screen_name" : "claud_xiao", "protected" : false, "id_str" : "37889864", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937721928\/love_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/961658482574307328\/Hfmup2ug_normal.jpg", "id" : 37889864, "verified" : false } @@ -843,14 +843,6 @@ Grailbird.data.tweets_2016_03 = "id" : 707695130854031360, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CdI8-NPUAAAWBpq.jpg", "sizes" : [ { - "h" : 385, - "resize" : "fit", - "w" : 680 - }, { - "h" : 679, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -858,11 +850,20 @@ Grailbird.data.tweets_2016_03 = "h" : 784, "resize" : "fit", "w" : 1386 + }, { + "h" : 679, + "resize" : "fit", + "w" : 1200 }, { "h" : 784, "resize" : "fit", "w" : 1386 + }, { + "h" : 385, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/W2EiWGELxI" } ], "hashtags" : [ ], @@ -895,14 +896,6 @@ Grailbird.data.tweets_2016_03 = "id" : 707694282627375104, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CdI8M1WUYAACmoY.jpg", "sizes" : [ { - "h" : 132, - "resize" : "crop", - "w" : 132 - }, { - "h" : 132, - "resize" : "fit", - "w" : 880 - }, { "h" : 132, "resize" : "fit", "w" : 880 @@ -914,7 +907,16 @@ Grailbird.data.tweets_2016_03 = "h" : 132, "resize" : "fit", "w" : 880 + }, { + "h" : 132, + "resize" : "crop", + "w" : 132 + }, { + "h" : 132, + "resize" : "fit", + "w" : 880 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/sEjkW7uojG" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2016_04.js b/public/tweets/data/js/tweets/2016_04.js index 2346537..84bf901 100755 --- a/public/tweets/data/js/tweets/2016_04.js +++ b/public/tweets/data/js/tweets/2016_04.js @@ -114,7 +114,7 @@ Grailbird.data.tweets_2016_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "super josh avant x", + "name" : "josh avant", "screen_name" : "joshavant", "indices" : [ 0, 10 ], "id_str" : "123978606", @@ -245,17 +245,17 @@ Grailbird.data.tweets_2016_04 = "id" : 720944262309941248, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CgFO_KHXEAAWQz_.jpg", "sizes" : [ { - "h" : 920, - "resize" : "fit", - "w" : 1397 - }, { - "h" : 920, - "resize" : "fit", - "w" : 1397 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 920, + "resize" : "fit", + "w" : 1397 + }, { + "h" : 920, + "resize" : "fit", + "w" : 1397 }, { "h" : 790, "resize" : "fit", @@ -265,6 +265,7 @@ Grailbird.data.tweets_2016_04 = "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/1l6X31hv3Y" } ], "hashtags" : [ ], @@ -850,7 +851,7 @@ Grailbird.data.tweets_2016_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "indices" : [ 0, 6 ], "id_str" : "1919231", diff --git a/public/tweets/data/js/tweets/2016_05.js b/public/tweets/data/js/tweets/2016_05.js index a4cac14..5f1bbd1 100755 --- a/public/tweets/data/js/tweets/2016_05.js +++ b/public/tweets/data/js/tweets/2016_05.js @@ -249,12 +249,6 @@ Grailbird.data.tweets_2016_05 = "indices" : [ 0, 10 ], "id_str" : "74837444", "id" : 74837444 - }, { - "name" : "Jonathan Zdziarski", - "screen_name" : "JZdziarski", - "indices" : [ 11, 22 ], - "id_str" : "851803288198455297", - "id" : 851803288198455297 } ], "media" : [ ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2016_06.js b/public/tweets/data/js/tweets/2016_06.js index abf191a..ca2f1d4 100755 --- a/public/tweets/data/js/tweets/2016_06.js +++ b/public/tweets/data/js/tweets/2016_06.js @@ -15,14 +15,6 @@ Grailbird.data.tweets_2016_06 = "h" : 240, "resize" : "fit", "w" : 320 - }, { - "h" : 240, - "resize" : "fit", - "w" : 320 - }, { - "h" : 240, - "resize" : "fit", - "w" : 320 }, { "h" : 150, "resize" : "crop", @@ -31,7 +23,16 @@ Grailbird.data.tweets_2016_06 = "h" : 240, "resize" : "fit", "w" : 320 + }, { + "h" : 240, + "resize" : "fit", + "w" : 320 + }, { + "h" : 240, + "resize" : "fit", + "w" : 320 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/bhmGO0N8a0" } ], "hashtags" : [ ], @@ -530,7 +531,7 @@ Grailbird.data.tweets_2016_06 = "screen_name" : "feministy", "protected" : false, "id_str" : "7039892", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/876925277787443200\/8nmwdmMC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/978302557897371649\/0dAQg1WB_normal.jpg", "id" : 7039892, "verified" : false } @@ -697,17 +698,9 @@ Grailbird.data.tweets_2016_06 = "id" : 748006809785491458, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CmF0OvrWYAIqI_m.jpg", "sizes" : [ { - "h" : 1484, - "resize" : "fit", - "w" : 1486 - }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 1484, - "resize" : "fit", - "w" : 1486 }, { "h" : 679, "resize" : "fit", @@ -716,7 +709,16 @@ Grailbird.data.tweets_2016_06 = "h" : 1198, "resize" : "fit", "w" : 1200 + }, { + "h" : 1484, + "resize" : "fit", + "w" : 1486 + }, { + "h" : 1484, + "resize" : "fit", + "w" : 1486 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/dtDdP7Slby" } ], "hashtags" : [ ], @@ -762,14 +764,6 @@ Grailbird.data.tweets_2016_06 = "h" : 335, "resize" : "fit", "w" : 610 - }, { - "h" : 335, - "resize" : "fit", - "w" : 610 - }, { - "h" : 335, - "resize" : "fit", - "w" : 610 }, { "h" : 150, "resize" : "crop", @@ -778,7 +772,16 @@ Grailbird.data.tweets_2016_06 = "h" : 335, "resize" : "fit", "w" : 610 + }, { + "h" : 335, + "resize" : "fit", + "w" : 610 + }, { + "h" : 335, + "resize" : "fit", + "w" : 610 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/okz5A4uxvP" } ], "hashtags" : [ ], @@ -963,7 +966,7 @@ Grailbird.data.tweets_2016_06 = "id_str" : "15219531", "id" : 15219531 }, { - "name" : "Kimchii", + "name" : "thewanderpair", "screen_name" : "Jchap808", "indices" : [ 10, 19 ], "id_str" : "92882724", @@ -1862,10 +1865,6 @@ Grailbird.data.tweets_2016_06 = "id" : 746274725240897536, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CltM6J7WAAAfKqO.jpg", "sizes" : [ { - "h" : 696, - "resize" : "fit", - "w" : 1104 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1873,15 +1872,20 @@ Grailbird.data.tweets_2016_06 = "h" : 696, "resize" : "fit", "w" : 1104 + }, { + "h" : 429, + "resize" : "fit", + "w" : 680 }, { "h" : 696, "resize" : "fit", "w" : 1104 }, { - "h" : 429, + "h" : 696, "resize" : "fit", - "w" : 680 + "w" : 1104 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/cNKCub5dEN" } ], "hashtags" : [ { @@ -1906,10 +1910,6 @@ Grailbird.data.tweets_2016_06 = "id" : 746274725240897536, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CltM6J7WAAAfKqO.jpg", "sizes" : [ { - "h" : 696, - "resize" : "fit", - "w" : 1104 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1917,15 +1917,20 @@ Grailbird.data.tweets_2016_06 = "h" : 696, "resize" : "fit", "w" : 1104 + }, { + "h" : 429, + "resize" : "fit", + "w" : 680 }, { "h" : 696, "resize" : "fit", "w" : 1104 }, { - "h" : 429, + "h" : 696, "resize" : "fit", - "w" : 680 + "w" : 1104 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/cNKCub5dEN" } ], "hashtags" : [ { @@ -1991,7 +1996,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "a sexy brian costume", + "name" : "Brian Gesiak", "screen_name" : "modocache", "indices" : [ 0, 10 ], "id_str" : "192478064", @@ -3055,7 +3060,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "[joe groff];", + "name" : "Joe Groff", "screen_name" : "jckarter", "indices" : [ 3, 12 ], "id_str" : "18559099", @@ -3099,11 +3104,11 @@ Grailbird.data.tweets_2016_06 = "in_reply_to_screen_name" : "fzwob", "in_reply_to_user_id_str" : "383365996", "user" : { - "name" : "[joe groff];", + "name" : "Joe Groff", "screen_name" : "jckarter", "protected" : false, "id_str" : "18559099", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914907528294686721\/nbK0AVfv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/977666852103995392\/JLjTHaRy_normal.jpg", "id" : 18559099, "verified" : false } @@ -3541,9 +3546,9 @@ Grailbird.data.tweets_2016_06 = "id" : 742433097459716097, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Ck2m9_OUUAEdLn6.jpg", "sizes" : [ { - "h" : 680, + "h" : 712, "resize" : "fit", - "w" : 661 + "w" : 692 }, { "h" : 150, "resize" : "crop", @@ -3557,10 +3562,11 @@ Grailbird.data.tweets_2016_06 = "resize" : "fit", "w" : 692 }, { - "h" : 712, + "h" : 680, "resize" : "fit", - "w" : 692 + "w" : 661 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/KraOhWLCVm" } ], "hashtags" : [ { @@ -3702,7 +3708,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tanya's Skeleton", + "name" : "Tanya X. Short", "screen_name" : "tanyaxshort", "indices" : [ 3, 15 ], "id_str" : "477205806", @@ -3729,11 +3735,11 @@ Grailbird.data.tweets_2016_06 = "id" : 741752072257691648, "created_at" : "2016-06-11 22:00:49 +0000", "user" : { - "name" : "Tanya's Skeleton", + "name" : "Tanya X. Short", "screen_name" : "tanyaxshort", "protected" : false, "id_str" : "477205806", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/916848421469868032\/UYw4IiZ6_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925750812671926273\/NZkeVk22_normal.jpg", "id" : 477205806, "verified" : true } @@ -3878,14 +3884,6 @@ Grailbird.data.tweets_2016_06 = "id" : 741705590817181696, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CksRThyUUAA2r8p.jpg", "sizes" : [ { - "h" : 1280, - "resize" : "fit", - "w" : 960 - }, { - "h" : 1200, - "resize" : "fit", - "w" : 900 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3897,7 +3895,16 @@ Grailbird.data.tweets_2016_06 = "h" : 680, "resize" : "fit", "w" : 510 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 900 + }, { + "h" : 1280, + "resize" : "fit", + "w" : 960 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/V5f2Bo8rZI" } ], "hashtags" : [ { @@ -3939,14 +3946,6 @@ Grailbird.data.tweets_2016_06 = "id" : 741700077542998016, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CksMSnPUgAAoQ2e.jpg", "sizes" : [ { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { - "h" : 900, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3958,7 +3957,16 @@ Grailbird.data.tweets_2016_06 = "h" : 1535, "resize" : "fit", "w" : 2048 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/HuofxIYgdA" } ], "hashtags" : [ ], @@ -4002,26 +4010,27 @@ Grailbird.data.tweets_2016_06 = "id" : 741698184603262976, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CksKkbfUYAA6r6f.jpg", "sizes" : [ { - "h" : 675, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 750, - "resize" : "fit", - "w" : 1334 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 382, + "h" : 750, "resize" : "fit", - "w" : 680 + "w" : 1334 }, { "h" : 750, "resize" : "fit", "w" : 1334 + }, { + "h" : 675, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 382, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/sL6WarxazR" } ], "hashtags" : [ ], @@ -4127,12 +4136,6 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tony Pujals", - "screen_name" : "subfuzion", - "indices" : [ 0, 10 ], - "id_str" : "150517734", - "id" : 150517734 - }, { "name" : "Bartender for Mac", "screen_name" : "macbartender", "indices" : [ 11, 24 ], @@ -4157,7 +4160,7 @@ Grailbird.data.tweets_2016_06 = "id" : 741358520637874176, "in_reply_to_status_id" : 741353943171620864, "created_at" : "2016-06-10 19:56:59 +0000", - "in_reply_to_screen_name" : "subfuzion", + "in_reply_to_screen_name" : "tonypujals", "in_reply_to_user_id_str" : "150517734", "user" : { "name" : "Sami Samhuri", @@ -4201,6 +4204,7 @@ Grailbird.data.tweets_2016_06 = "resize" : "fit", "w" : 250 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/qZJ5lJpoA6" } ], "hashtags" : [ ], @@ -4257,7 +4261,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "paolo fragomeni", + "name" : "paolo f.", "screen_name" : "0x00A", "indices" : [ 0, 6 ], "id_str" : "95938827", @@ -4341,7 +4345,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC7B Phlegm Parrot", + "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", diff --git a/public/tweets/data/js/tweets/2016_07.js b/public/tweets/data/js/tweets/2016_07.js index 45dbe7d..f48d9b7 100755 --- a/public/tweets/data/js/tweets/2016_07.js +++ b/public/tweets/data/js/tweets/2016_07.js @@ -298,6 +298,14 @@ Grailbird.data.tweets_2016_07 = "id" : 757423754335121408, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CoLo5D2WcAAusRg.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 510 + }, { "h" : 1200, "resize" : "fit", "w" : 900 @@ -305,19 +313,12 @@ Grailbird.data.tweets_2016_07 = "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 2048, "resize" : "fit", "w" : 1536 - }, { - "h" : 680, - "resize" : "fit", - "w" : 510 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/E85LYQdsP1" } ], "hashtags" : [ ], @@ -384,26 +385,27 @@ Grailbird.data.tweets_2016_07 = "id" : 757420956528893952, "media_url_https" : "https:\/\/pbs.twimg.com\/tweet_video_thumb\/CoLmWNNXYAALs4k.jpg", "sizes" : [ { - "h" : 248, - "resize" : "fit", - "w" : 498 - }, { - "h" : 248, - "resize" : "fit", - "w" : 498 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 169, + "h" : 248, "resize" : "fit", - "w" : 340 + "w" : 498 + }, { + "h" : 248, + "resize" : "fit", + "w" : 498 + }, { + "h" : 248, + "resize" : "fit", + "w" : 498 }, { "h" : 248, "resize" : "fit", "w" : 498 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/KktQQU8brQ" } ], "hashtags" : [ ], @@ -564,14 +566,6 @@ Grailbird.data.tweets_2016_07 = "id" : 757391069289951232, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CoLLKikUsAABza_.jpg", "sizes" : [ { - "h" : 823, - "resize" : "fit", - "w" : 960 - }, { - "h" : 823, - "resize" : "fit", - "w" : 960 - }, { "h" : 583, "resize" : "fit", "w" : 680 @@ -583,7 +577,16 @@ Grailbird.data.tweets_2016_07 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 823, + "resize" : "fit", + "w" : 960 + }, { + "h" : 823, + "resize" : "fit", + "w" : 960 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/pSGnEg3lP9" } ], "hashtags" : [ ], @@ -857,7 +860,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ivan Morgillo \uD83C\uDF55\uD83D\uDECC\uD83D\uDCBB", + "name" : "Ivan Morgillo", "screen_name" : "hamen", "indices" : [ 3, 9 ], "id_str" : "10712162", @@ -894,7 +897,7 @@ Grailbird.data.tweets_2016_07 = "id" : 756507905738809345, "created_at" : "2016-07-22 15:15:14 +0000", "user" : { - "name" : "Ivan Morgillo \uD83C\uDF55\uD83D\uDECC\uD83D\uDCBB", + "name" : "Ivan Morgillo", "screen_name" : "hamen", "protected" : false, "id_str" : "10712162", @@ -966,7 +969,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -1034,7 +1037,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -1230,7 +1233,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -1485,9 +1488,17 @@ Grailbird.data.tweets_2016_07 = "id" : 755037774139580416, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Cnpu2u-XYAAxR7B.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 2448, "resize" : "fit", "w" : 3264 + }, { + "h" : 1536, + "resize" : "fit", + "w" : 2048 }, { "h" : 510, "resize" : "fit", @@ -1496,15 +1507,8 @@ Grailbird.data.tweets_2016_07 = "h" : 900, "resize" : "fit", "w" : 1200 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/3PDJfLZEwd" } ], "hashtags" : [ ], @@ -1777,74 +1781,6 @@ Grailbird.data.tweets_2016_07 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", - "screen_name" : "macatbook", - "indices" : [ 3, 13 ], - "id_str" : "22406953", - "id" : 22406953 - }, { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "indices" : [ 15, 20 ], - "id_str" : "4777951", - "id" : 4777951 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "754003271560245248", - "text" : "RT @macatbook: @_sjs swift namespacing makes it difficult. I've been looking into it", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "indices" : [ 0, 5 ], - "id_str" : "4777951", - "id" : 4777951 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "753999034147155969", - "geo" : { }, - "id_str" : "754002466404839424", - "in_reply_to_user_id" : 4777951, - "text" : "@_sjs swift namespacing makes it difficult. I've been looking into it", - "id" : 754002466404839424, - "in_reply_to_status_id" : 753999034147155969, - "created_at" : "2016-07-15 17:19:31 +0000", - "in_reply_to_screen_name" : "_sjs", - "in_reply_to_user_id_str" : "4777951", - "user" : { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", - "screen_name" : "macatbook", - "protected" : false, - "id_str" : "22406953", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/611069351559458816\/wcCFiz32_normal.png", - "id" : 22406953, - "verified" : false - } - }, - "id" : 754003271560245248, - "created_at" : "2016-07-15 17:22:43 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -1917,7 +1853,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Think\uD83D\uDC7BEEK!", + "name" : "ThinkGeek", "screen_name" : "thinkgeek", "indices" : [ 3, 13 ], "id_str" : "12611642", @@ -1932,14 +1868,6 @@ Grailbird.data.tweets_2016_07 = "id" : 753804537496936449, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CnYNO6eVIAEuGIJ.jpg", "sizes" : [ { - "h" : 591, - "resize" : "fit", - "w" : 589 - }, { - "h" : 591, - "resize" : "fit", - "w" : 589 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1951,7 +1879,16 @@ Grailbird.data.tweets_2016_07 = "h" : 591, "resize" : "fit", "w" : 589 + }, { + "h" : 591, + "resize" : "fit", + "w" : 589 + }, { + "h" : 591, + "resize" : "fit", + "w" : 589 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/remFf5ge1V" } ], "hashtags" : [ ], @@ -1973,14 +1910,6 @@ Grailbird.data.tweets_2016_07 = "id" : 753804537496936449, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CnYNO6eVIAEuGIJ.jpg", "sizes" : [ { - "h" : 591, - "resize" : "fit", - "w" : 589 - }, { - "h" : 591, - "resize" : "fit", - "w" : 589 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1992,7 +1921,16 @@ Grailbird.data.tweets_2016_07 = "h" : 591, "resize" : "fit", "w" : 589 + }, { + "h" : 591, + "resize" : "fit", + "w" : 589 + }, { + "h" : 591, + "resize" : "fit", + "w" : 589 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/remFf5ge1V" } ], "hashtags" : [ ], @@ -2004,11 +1942,11 @@ Grailbird.data.tweets_2016_07 = "id" : 753804541703827456, "created_at" : "2016-07-15 04:13:02 +0000", "user" : { - "name" : "Think\uD83D\uDC7BEEK!", + "name" : "ThinkGeek", "screen_name" : "thinkgeek", "protected" : false, "id_str" : "12611642", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914961266510372864\/T3sx-1lG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/926196995974422528\/tyRNseRZ_normal.jpg", "id" : 12611642, "verified" : true } @@ -2067,7 +2005,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "45653", "id" : 45653 }, { - "name" : "paolo fragomeni", + "name" : "paolo f.", "screen_name" : "0x00A", "indices" : [ 8, 14 ], "id_str" : "95938827", @@ -2133,7 +2071,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "paolo fragomeni", + "name" : "paolo f.", "screen_name" : "0x00A", "indices" : [ 1, 7 ], "id_str" : "95938827", @@ -2166,7 +2104,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "paolo fragomeni", + "name" : "paolo f.", "screen_name" : "0x00A", "indices" : [ 3, 9 ], "id_str" : "95938827", @@ -2210,11 +2148,11 @@ Grailbird.data.tweets_2016_07 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "paolo fragomeni", + "name" : "paolo f.", "screen_name" : "0x00A", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/895001508349128704\/gFxzeC4L_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/936582635010314240\/Mf7nJiWc_normal.jpg", "id" : 95938827, "verified" : false } @@ -2324,7 +2262,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "zii", "protected" : false, "id_str" : "12712742", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/880992273101578240\/ib3GlMDp_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/982615078200426497\/njD6-6iU_normal.jpg", "id" : 12712742, "verified" : false } @@ -2656,14 +2594,6 @@ Grailbird.data.tweets_2016_07 = "h" : 670, "resize" : "fit", "w" : 670 - }, { - "h" : 670, - "resize" : "fit", - "w" : 670 - }, { - "h" : 670, - "resize" : "fit", - "w" : 670 }, { "h" : 150, "resize" : "crop", @@ -2672,7 +2602,16 @@ Grailbird.data.tweets_2016_07 = "h" : 670, "resize" : "fit", "w" : 670 + }, { + "h" : 670, + "resize" : "fit", + "w" : 670 + }, { + "h" : 670, + "resize" : "fit", + "w" : 670 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/z65YpcT3Qc" } ], "hashtags" : [ ], @@ -2749,7 +2688,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "paolo fragomeni", + "name" : "paolo f.", "screen_name" : "0x00A", "indices" : [ 3, 9 ], "id_str" : "95938827", @@ -2786,11 +2725,11 @@ Grailbird.data.tweets_2016_07 = "id" : 751819112314081280, "created_at" : "2016-07-09 16:43:39 +0000", "user" : { - "name" : "paolo fragomeni", + "name" : "paolo f.", "screen_name" : "0x00A", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/895001508349128704\/gFxzeC4L_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/936582635010314240\/Mf7nJiWc_normal.jpg", "id" : 95938827, "verified" : false } @@ -2907,7 +2846,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "wtsnz", "protected" : false, "id_str" : "28287202", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/628054835414175744\/sO4qJ5fW_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/968339360486653952\/51L2dQiP_normal.jpg", "id" : 28287202, "verified" : false } @@ -2975,10 +2914,6 @@ Grailbird.data.tweets_2016_07 = "id" : 750749888078426112, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CmszC6oUMAAfVaZ.jpg", "sizes" : [ { - "h" : 853, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2990,11 +2925,16 @@ Grailbird.data.tweets_2016_07 = "h" : 483, "resize" : "fit", "w" : 680 + }, { + "h" : 853, + "resize" : "fit", + "w" : 1200 }, { "h" : 944, "resize" : "fit", "w" : 1328 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/8iVmK7vMWo" } ], "hashtags" : [ ], @@ -3021,10 +2961,6 @@ Grailbird.data.tweets_2016_07 = "id" : 750749888078426112, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CmszC6oUMAAfVaZ.jpg", "sizes" : [ { - "h" : 853, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3036,11 +2972,16 @@ Grailbird.data.tweets_2016_07 = "h" : 483, "resize" : "fit", "w" : 680 + }, { + "h" : 853, + "resize" : "fit", + "w" : 1200 }, { "h" : 944, "resize" : "fit", "w" : 1328 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/8iVmK7vMWo" } ], "hashtags" : [ ], @@ -3963,7 +3904,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Accidental Tech", + "name" : "Accidental Tech Podcast", "screen_name" : "atpfm", "indices" : [ 78, 84 ], "id_str" : "1253355925", @@ -4127,18 +4068,6 @@ Grailbird.data.tweets_2016_07 = "id" : 749016797978906624, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CmUKzy5VUAAudwV.jpg", "sizes" : [ { - "h" : 3024, - "resize" : "fit", - "w" : 4032 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - }, { - "h" : 900, - "resize" : "fit", - "w" : 1200 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4146,7 +4075,20 @@ Grailbird.data.tweets_2016_07 = "h" : 1536, "resize" : "fit", "w" : 2048 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 3024, + "resize" : "fit", + "w" : 4032 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/yE1kLYYByd" } ], "hashtags" : [ ], @@ -4201,7 +4143,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "stevemoseley", "protected" : false, "id_str" : "15829933", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/58145770\/me_headshot_sq_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/974399344433545216\/kMvXPsgZ_normal.jpg", "id" : 15829933, "verified" : false } @@ -4298,6 +4240,10 @@ Grailbird.data.tweets_2016_07 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1500, + "resize" : "fit", + "w" : 1250 }, { "h" : 1200, "resize" : "fit", @@ -4306,11 +4252,8 @@ Grailbird.data.tweets_2016_07 = "h" : 680, "resize" : "fit", "w" : 567 - }, { - "h" : 1500, - "resize" : "fit", - "w" : 1250 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/pMhlzqLGqh" } ], "hashtags" : [ { @@ -4342,6 +4285,10 @@ Grailbird.data.tweets_2016_07 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 1500, + "resize" : "fit", + "w" : 1250 }, { "h" : 1200, "resize" : "fit", @@ -4350,11 +4297,8 @@ Grailbird.data.tweets_2016_07 = "h" : 680, "resize" : "fit", "w" : 567 - }, { - "h" : 1500, - "resize" : "fit", - "w" : 1250 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/pMhlzqLGqh" } ], "hashtags" : [ { @@ -4451,14 +4395,6 @@ Grailbird.data.tweets_2016_07 = "id" : 748920059116957696, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CmSy02jUsAACgyY.jpg", "sizes" : [ { - "h" : 1600, - "resize" : "fit", - "w" : 1287 - }, { - "h" : 1200, - "resize" : "fit", - "w" : 965 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -4466,11 +4402,20 @@ Grailbird.data.tweets_2016_07 = "h" : 680, "resize" : "fit", "w" : 547 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 965 + }, { + "h" : 1600, + "resize" : "fit", + "w" : 1287 }, { "h" : 1600, "resize" : "fit", "w" : 1287 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/pQzvoZpsNx" } ], "hashtags" : [ ], @@ -4566,14 +4511,6 @@ Grailbird.data.tweets_2016_07 = "h" : 445, "resize" : "fit", "w" : 598 - }, { - "h" : 445, - "resize" : "fit", - "w" : 598 - }, { - "h" : 445, - "resize" : "fit", - "w" : 598 }, { "h" : 150, "resize" : "crop", @@ -4582,7 +4519,16 @@ Grailbird.data.tweets_2016_07 = "h" : 445, "resize" : "fit", "w" : 598 + }, { + "h" : 445, + "resize" : "fit", + "w" : 598 + }, { + "h" : 445, + "resize" : "fit", + "w" : 598 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/LCGnSpRDmC" } ], "hashtags" : [ ], @@ -4607,14 +4553,6 @@ Grailbird.data.tweets_2016_07 = "h" : 445, "resize" : "fit", "w" : 598 - }, { - "h" : 445, - "resize" : "fit", - "w" : 598 - }, { - "h" : 445, - "resize" : "fit", - "w" : 598 }, { "h" : 150, "resize" : "crop", @@ -4623,7 +4561,16 @@ Grailbird.data.tweets_2016_07 = "h" : 445, "resize" : "fit", "w" : 598 + }, { + "h" : 445, + "resize" : "fit", + "w" : 598 + }, { + "h" : 445, + "resize" : "fit", + "w" : 598 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/LCGnSpRDmC" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2016_08.js b/public/tweets/data/js/tweets/2016_08.js index bcf895c..df64295 100755 --- a/public/tweets/data/js/tweets/2016_08.js +++ b/public/tweets/data/js/tweets/2016_08.js @@ -1074,7 +1074,7 @@ Grailbird.data.tweets_2016_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Strangled Badly", + "name" : "Strong Bad", "screen_name" : "StrongBadActual", "indices" : [ 3, 19 ], "id_str" : "382221144", @@ -1112,10 +1112,6 @@ Grailbird.data.tweets_2016_08 = "id" : 766087346873851906, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CqGwYhFWYAInjiN.jpg", "sizes" : [ { - "h" : 680, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1127,11 +1123,16 @@ Grailbird.data.tweets_2016_08 = "h" : 747, "resize" : "fit", "w" : 747 + }, { + "h" : 680, + "resize" : "fit", + "w" : 680 }, { "h" : 747, "resize" : "fit", "w" : 747 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/zJg436X0RP" } ], "hashtags" : [ ], @@ -1143,7 +1144,7 @@ Grailbird.data.tweets_2016_08 = "id" : 766087355174260737, "created_at" : "2016-08-18 01:40:33 +0000", "user" : { - "name" : "Strangled Badly", + "name" : "Strong Bad", "screen_name" : "StrongBadActual", "protected" : false, "id_str" : "382221144", @@ -1273,23 +1274,24 @@ Grailbird.data.tweets_2016_08 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 287, - "resize" : "fit", - "w" : 960 - }, { - "h" : 287, - "resize" : "fit", - "w" : 960 - }, { - "h" : 287, - "resize" : "fit", - "w" : 960 }, { "h" : 203, "resize" : "fit", "w" : 680 + }, { + "h" : 287, + "resize" : "fit", + "w" : 960 + }, { + "h" : 287, + "resize" : "fit", + "w" : 960 + }, { + "h" : 287, + "resize" : "fit", + "w" : 960 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/AVdStdS95a" } ], "hashtags" : [ ], @@ -1586,10 +1588,6 @@ Grailbird.data.tweets_2016_08 = "id" : 764664893408555008, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Cpyiq0_UMAAsHOT.jpg", "sizes" : [ { - "h" : 264, - "resize" : "fit", - "w" : 680 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1605,7 +1603,12 @@ Grailbird.data.tweets_2016_08 = "h" : 586, "resize" : "fit", "w" : 1508 + }, { + "h" : 264, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/mkaZiEfIus" } ], "hashtags" : [ ], @@ -2208,18 +2211,6 @@ Grailbird.data.tweets_2016_08 = "id" : 762415536093421568, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CpSk5AAWYAAwtuV.jpg", "sizes" : [ { - "h" : 605, - "resize" : "fit", - "w" : 644 - }, { - "h" : 605, - "resize" : "fit", - "w" : 644 - }, { - "h" : 605, - "resize" : "fit", - "w" : 644 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2227,7 +2218,20 @@ Grailbird.data.tweets_2016_08 = "h" : 605, "resize" : "fit", "w" : 644 + }, { + "h" : 605, + "resize" : "fit", + "w" : 644 + }, { + "h" : 605, + "resize" : "fit", + "w" : 644 + }, { + "h" : 605, + "resize" : "fit", + "w" : 644 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/nNuSvuynRT" } ], "hashtags" : [ ], @@ -2243,7 +2247,7 @@ Grailbird.data.tweets_2016_08 = "screen_name" : "1SecondEveryday", "protected" : false, "id_str" : "408246807", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/662690256559464448\/M7RzZNyf_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/944295924972396544\/JbwvMdpK_normal.jpg", "id" : 408246807, "verified" : true } @@ -2300,10 +2304,6 @@ Grailbird.data.tweets_2016_08 = "h" : 240, "resize" : "fit", "w" : 680 - }, { - "h" : 424, - "resize" : "fit", - "w" : 1200 }, { "h" : 150, "resize" : "crop", @@ -2312,11 +2312,16 @@ Grailbird.data.tweets_2016_08 = "h" : 523, "resize" : "fit", "w" : 1479 + }, { + "h" : 424, + "resize" : "fit", + "w" : 1200 }, { "h" : 523, "resize" : "fit", "w" : 1479 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/hIRW6usj7N" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2016_09.js b/public/tweets/data/js/tweets/2016_09.js index 22ff0ed..378578d 100755 --- a/public/tweets/data/js/tweets/2016_09.js +++ b/public/tweets/data/js/tweets/2016_09.js @@ -580,14 +580,6 @@ Grailbird.data.tweets_2016_09 = "h" : 400, "resize" : "fit", "w" : 400 - }, { - "h" : 400, - "resize" : "fit", - "w" : 400 - }, { - "h" : 400, - "resize" : "fit", - "w" : 400 }, { "h" : 150, "resize" : "crop", @@ -596,7 +588,16 @@ Grailbird.data.tweets_2016_09 = "h" : 400, "resize" : "fit", "w" : 400 + }, { + "h" : 400, + "resize" : "fit", + "w" : 400 + }, { + "h" : 400, + "resize" : "fit", + "w" : 400 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/G17LUrBZgp" } ], "hashtags" : [ ], @@ -910,14 +911,14 @@ Grailbird.data.tweets_2016_09 = "h" : 796, "resize" : "fit", "w" : 640 - }, { - "h" : 796, - "resize" : "fit", - "w" : 640 }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 796, + "resize" : "fit", + "w" : 640 }, { "h" : 680, "resize" : "fit", @@ -927,6 +928,7 @@ Grailbird.data.tweets_2016_09 = "resize" : "fit", "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/nSbe4jaXdh" }, { "expanded_url" : "https:\/\/twitter.com\/FiloSottile\/status\/780363089510293504\/photo\/1", @@ -937,17 +939,17 @@ Grailbird.data.tweets_2016_09 = "id" : 780363080148586496, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CtRoFjwWEAAzACf.jpg", "sizes" : [ { - "h" : 911, + "h" : 680, "resize" : "fit", - "w" : 640 + "w" : 478 }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 680, + "h" : 911, "resize" : "fit", - "w" : 478 + "w" : 640 }, { "h" : 911, "resize" : "fit", @@ -957,6 +959,7 @@ Grailbird.data.tweets_2016_09 = "resize" : "fit", "w" : 640 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/nSbe4jaXdh" } ], "hashtags" : [ ], @@ -1277,7 +1280,7 @@ Grailbird.data.tweets_2016_09 = "id_str" : "41214150", "id" : 41214150 }, { - "name" : "Sam Stephenson", + "name" : "Sam Stephenson \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "sstephenson", "indices" : [ 13, 25 ], "id_str" : "6707392", @@ -1402,9 +1405,9 @@ Grailbird.data.tweets_2016_09 = "id" : 779346843989905408, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CtDL01DXEAA8HMC.jpg", "sizes" : [ { - "h" : 339, + "h" : 798, "resize" : "fit", - "w" : 680 + "w" : 1602 }, { "h" : 150, "resize" : "crop", @@ -1418,10 +1421,11 @@ Grailbird.data.tweets_2016_09 = "resize" : "fit", "w" : 1200 }, { - "h" : 798, + "h" : 339, "resize" : "fit", - "w" : 1602 + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/L3t2wqbdZm" } ], "hashtags" : [ ], @@ -1442,7 +1446,7 @@ Grailbird.data.tweets_2016_09 = "screen_name" : "IanCutress", "protected" : false, "id_str" : "317150782", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/640505337544581121\/3wYSA4gX_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/960269811623383040\/XF_ZoraP_normal.jpg", "id" : 317150782, "verified" : true } @@ -1824,7 +1828,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "deeje", + "name" : "\uD835\uDD21\uD835\uDD22\uD835\uDD22\uD835\uDD27\uD835\uDD22", "screen_name" : "deeje", "indices" : [ 0, 6 ], "id_str" : "3271", @@ -1929,7 +1933,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -2060,7 +2064,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -2134,7 +2138,7 @@ Grailbird.data.tweets_2016_09 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925763991820836864\/nmUFyJez_normal.jpg", "id" : 36183, "verified" : false } @@ -2185,7 +2189,7 @@ Grailbird.data.tweets_2016_09 = "screen_name" : "chockenberry", "protected" : false, "id_str" : "36183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918169267526238208\/06lyF7FP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925763991820836864\/nmUFyJez_normal.jpg", "id" : 36183, "verified" : false } @@ -2237,7 +2241,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 3, 14 ], "id_str" : "18553922", @@ -2264,11 +2268,11 @@ Grailbird.data.tweets_2016_09 = "id" : 776434568912134144, "created_at" : "2016-09-15 14:56:41 +0000", "user" : { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "protected" : false, "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900845150158630913\/vYNWfyIR_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/931711648661954560\/Js14N7wp_normal.jpg", "id" : 18553922, "verified" : false } @@ -2710,6 +2714,7 @@ Grailbird.data.tweets_2016_09 = "resize" : "fit", "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/kYdh1GK4i0" } ], "hashtags" : [ ], @@ -2760,7 +2765,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Accidental Tech", + "name" : "Accidental Tech Podcast", "screen_name" : "atpfm", "indices" : [ 0, 6 ], "id_str" : "1253355925", @@ -3025,10 +3030,6 @@ Grailbird.data.tweets_2016_09 = "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 169, - "resize" : "fit", - "w" : 750 }, { "h" : 153, "resize" : "fit", @@ -3041,7 +3042,12 @@ Grailbird.data.tweets_2016_09 = "h" : 169, "resize" : "fit", "w" : 750 + }, { + "h" : 169, + "resize" : "fit", + "w" : 750 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/zsmdYpsftj" }, { "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/773201179652165633\/photo\/1", @@ -3052,26 +3058,27 @@ Grailbird.data.tweets_2016_09 = "id" : 773201164812771328, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Crr2XOCVYAAd-wC.jpg", "sizes" : [ { + "h" : 149, + "resize" : "fit", + "w" : 637 + }, { + "h" : 149, + "resize" : "fit", + "w" : 637 + }, { + "h" : 149, + "resize" : "fit", + "w" : 637 + }, { + "h" : 149, + "resize" : "fit", + "w" : 637 + }, { "h" : 149, "resize" : "crop", "w" : 149 - }, { - "h" : 149, - "resize" : "fit", - "w" : 637 - }, { - "h" : 149, - "resize" : "fit", - "w" : 637 - }, { - "h" : 149, - "resize" : "fit", - "w" : 637 - }, { - "h" : 149, - "resize" : "fit", - "w" : 637 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/zsmdYpsftj" } ], "hashtags" : [ ], @@ -3104,10 +3111,6 @@ Grailbird.data.tweets_2016_09 = "id" : 773179657956896769, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CrrizWwUMAEq5EU.jpg", "sizes" : [ { - "h" : 219, - "resize" : "fit", - "w" : 199 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -3123,7 +3126,12 @@ Grailbird.data.tweets_2016_09 = "h" : 219, "resize" : "fit", "w" : 199 + }, { + "h" : 219, + "resize" : "fit", + "w" : 199 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/KBfUDxHU89" } ], "hashtags" : [ ], @@ -3210,26 +3218,27 @@ Grailbird.data.tweets_2016_09 = "id" : 772993734908661760, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Cro5tNbVUAA0wuS.jpg", "sizes" : [ { - "h" : 900, - "resize" : "fit", - "w" : 1200 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 1535, "resize" : "fit", "w" : 2048 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 2048, + "resize" : "fit", + "w" : 2732 + }, { + "h" : 900, + "resize" : "fit", + "w" : 1200 }, { "h" : 510, "resize" : "fit", "w" : 680 - }, { - "h" : 2048, - "resize" : "fit", - "w" : 2732 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/JhKLcpqZLg" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2016_10.js b/public/tweets/data/js/tweets/2016_10.js index 6c36236..fefe894 100755 --- a/public/tweets/data/js/tweets/2016_10.js +++ b/public/tweets/data/js/tweets/2016_10.js @@ -251,18 +251,6 @@ Grailbird.data.tweets_2016_10 = "id" : 792878474507657216, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CwDexY8VIAAKsJg.jpg", "sizes" : [ { - "h" : 323, - "resize" : "fit", - "w" : 357 - }, { - "h" : 323, - "resize" : "fit", - "w" : 357 - }, { - "h" : 323, - "resize" : "fit", - "w" : 357 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -270,7 +258,20 @@ Grailbird.data.tweets_2016_10 = "h" : 323, "resize" : "fit", "w" : 357 + }, { + "h" : 323, + "resize" : "fit", + "w" : 357 + }, { + "h" : 323, + "resize" : "fit", + "w" : 357 + }, { + "h" : 323, + "resize" : "fit", + "w" : 357 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/pS5HCfs4AZ" } ], "hashtags" : [ ], @@ -332,7 +333,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -368,7 +369,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 3, 14 ], "id_str" : "18553922", @@ -400,11 +401,11 @@ Grailbird.data.tweets_2016_10 = "in_reply_to_screen_name" : "zwaldowski", "in_reply_to_user_id_str" : "18553922", "user" : { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "protected" : false, "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900845150158630913\/vYNWfyIR_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/931711648661954560\/Js14N7wp_normal.jpg", "id" : 18553922, "verified" : false } @@ -424,7 +425,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 3, 14 ], "id_str" : "18553922", @@ -451,11 +452,11 @@ Grailbird.data.tweets_2016_10 = "id" : 792791499138301952, "created_at" : "2016-10-30 18:13:17 +0000", "user" : { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "protected" : false, "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/900845150158630913\/vYNWfyIR_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/931711648661954560\/Js14N7wp_normal.jpg", "id" : 18553922, "verified" : false } @@ -526,7 +527,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Offby1 Kenobi", + "name" : "Chris", "screen_name" : "offby1", "indices" : [ 0, 7 ], "id_str" : "37362694", @@ -577,7 +578,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Offby1 Kenobi", + "name" : "Chris", "screen_name" : "offby1", "indices" : [ 0, 7 ], "id_str" : "37362694", @@ -817,7 +818,7 @@ Grailbird.data.tweets_2016_10 = "id_str" : "8362402", "id" : 8362402 }, { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 26, 42 ], "id_str" : "15267898", @@ -859,14 +860,6 @@ Grailbird.data.tweets_2016_10 = "id" : 792236309074980864, "media_url_https" : "https:\/\/pbs.twimg.com\/tweet_video_thumb\/Cv6WucSUsAA9zc4.jpg", "sizes" : [ { - "h" : 155, - "resize" : "fit", - "w" : 340 - }, { - "h" : 228, - "resize" : "fit", - "w" : 500 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -878,7 +871,16 @@ Grailbird.data.tweets_2016_10 = "h" : 228, "resize" : "fit", "w" : 500 + }, { + "h" : 228, + "resize" : "fit", + "w" : 500 + }, { + "h" : 228, + "resize" : "fit", + "w" : 500 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/N3T4PkAUaB" } ], "hashtags" : [ ], @@ -916,6 +918,14 @@ Grailbird.data.tweets_2016_10 = "id" : 792198970504126465, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Cv50xDRUIAEn6kx.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 576, + "resize" : "fit", + "w" : 1024 + }, { "h" : 576, "resize" : "fit", "w" : 1024 @@ -927,15 +937,8 @@ Grailbird.data.tweets_2016_10 = "h" : 383, "resize" : "fit", "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 576, - "resize" : "fit", - "w" : 1024 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/BpnBwzfATt" } ], "hashtags" : [ ], @@ -1173,7 +1176,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jamie Zawinski", + "name" : "j\u0355\u0320\u0326\u032A\u0355\u0313\u035B\u030A\u033E\u0304\u0345w\u0327\u0327\u0333\u032A\u0318\u034A\u030B\u0357\u033E\u0362\u0360z\u0322\u0318\u031E\u0348\u033A\u031E\u0329\u0313\u033D\u0310\u030B\u0357\u0306\u030B\u031A\u035F\u035C", "screen_name" : "jwz", "indices" : [ 15, 19 ], "id_str" : "7190742", @@ -1238,7 +1241,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Yehuda Katz", + "name" : "Yehuda Katz \uD83E\uDD68", "screen_name" : "wycats", "indices" : [ 0, 7 ], "id_str" : "8526432", @@ -1578,13 +1581,9 @@ Grailbird.data.tweets_2016_10 = "id" : 791315074006736896, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CvtQ3gOVYAAw4VR.jpg", "sizes" : [ { - "h" : 560, + "h" : 528, "resize" : "fit", - "w" : 1273 - }, { - "h" : 299, - "resize" : "fit", - "w" : 680 + "w" : 1200 }, { "h" : 150, "resize" : "crop", @@ -1594,10 +1593,15 @@ Grailbird.data.tweets_2016_10 = "resize" : "fit", "w" : 1273 }, { - "h" : 528, + "h" : 560, "resize" : "fit", - "w" : 1200 + "w" : 1273 + }, { + "h" : 299, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/UECTA1OqAQ" } ], "hashtags" : [ ], @@ -1774,14 +1778,6 @@ Grailbird.data.tweets_2016_10 = "id" : 791304156631838720, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CvtG8B1UsAAfr9F.jpg", "sizes" : [ { - "h" : 1058, - "resize" : "fit", - "w" : 745 - }, { - "h" : 680, - "resize" : "fit", - "w" : 479 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1793,7 +1789,16 @@ Grailbird.data.tweets_2016_10 = "h" : 1058, "resize" : "fit", "w" : 745 + }, { + "h" : 1058, + "resize" : "fit", + "w" : 745 + }, { + "h" : 680, + "resize" : "fit", + "w" : 479 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ILSREcRBnl" } ], "hashtags" : [ ], @@ -2122,7 +2127,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Clemens Vasters \uD83C\uDDEA\uD83C\uDDFA", + "name" : "Clemens Vasters \uD83C\uDDEA\uD83C\uDDFA\u2601\uD83D\uDCE8", "screen_name" : "clemensv", "indices" : [ 3, 12 ], "id_str" : "14091119", @@ -2159,11 +2164,11 @@ Grailbird.data.tweets_2016_10 = "id" : 787677713251332096, "created_at" : "2016-10-16 15:32:55 +0000", "user" : { - "name" : "Clemens Vasters \uD83C\uDDEA\uD83C\uDDFA", + "name" : "Clemens Vasters \uD83C\uDDEA\uD83C\uDDFA\u2601\uD83D\uDCE8", "screen_name" : "clemensv", "protected" : false, "id_str" : "14091119", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/870930150866784256\/9dpZ5ysC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/968966233373790210\/sqUfz3b3_normal.jpg", "id" : 14091119, "verified" : false } @@ -2637,10 +2642,6 @@ Grailbird.data.tweets_2016_10 = "id" : 786262838591361024, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Culd4spUEAAqc-5.jpg", "sizes" : [ { - "h" : 392, - "resize" : "fit", - "w" : 578 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2656,7 +2657,12 @@ Grailbird.data.tweets_2016_10 = "h" : 392, "resize" : "fit", "w" : 578 + }, { + "h" : 392, + "resize" : "fit", + "w" : 578 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ynMbpjRpRb" } ], "hashtags" : [ ], @@ -2880,7 +2886,7 @@ Grailbird.data.tweets_2016_10 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -3487,7 +3493,7 @@ Grailbird.data.tweets_2016_10 = "id_str" : "341874816", "id" : 341874816 }, { - "name" : "(craig mod?)", + "name" : "Craig Mod", "screen_name" : "craigmod", "indices" : [ 11, 20 ], "id_str" : "1835951", @@ -3685,7 +3691,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Nathan Fisher", + "name" : "Nathan", "screen_name" : "natbobc", "indices" : [ 0, 8 ], "id_str" : "71807841", @@ -3867,7 +3873,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDCAC", + "name" : "@herval", "screen_name" : "herval", "indices" : [ 0, 7 ], "id_str" : "5498732", @@ -4140,7 +4146,7 @@ Grailbird.data.tweets_2016_10 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } @@ -4196,6 +4202,10 @@ Grailbird.data.tweets_2016_10 = "id" : 783161061839032320, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Ct5Y1hzVUAAP29R.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 1200, "resize" : "fit", "w" : 859 @@ -4203,10 +4213,6 @@ Grailbird.data.tweets_2016_10 = "h" : 1291, "resize" : "fit", "w" : 924 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 }, { "h" : 1291, "resize" : "fit", @@ -4216,6 +4222,7 @@ Grailbird.data.tweets_2016_10 = "resize" : "fit", "w" : 487 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/qhlWdPxzeO" } ], "hashtags" : [ ], @@ -4301,6 +4308,7 @@ Grailbird.data.tweets_2016_10 = "resize" : "fit", "w" : 358 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/3Auoprci54" } ], "hashtags" : [ ], diff --git a/public/tweets/data/js/tweets/2016_11.js b/public/tweets/data/js/tweets/2016_11.js index f32f163..38a104d 100755 --- a/public/tweets/data/js/tweets/2016_11.js +++ b/public/tweets/data/js/tweets/2016_11.js @@ -272,7 +272,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeff Nadeau \uD83D\uDC7B", + "name" : "jeff, denizen of the pond", "screen_name" : "jnadeau", "indices" : [ 3, 11 ], "id_str" : "2741981", @@ -304,7 +304,7 @@ Grailbird.data.tweets_2016_11 = "id" : 799769496068100096, "created_at" : "2016-11-19 00:21:21 +0000", "user" : { - "name" : "Jeff Nadeau \uD83D\uDC7B", + "name" : "jeff, denizen of the pond", "screen_name" : "jnadeau", "protected" : false, "id_str" : "2741981", @@ -328,7 +328,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chai Guy", + "name" : "Chai Guy \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08 \u24CB", "screen_name" : "yaccin", "indices" : [ 0, 7 ], "id_str" : "23505101", @@ -812,7 +812,7 @@ Grailbird.data.tweets_2016_11 = "id_str" : "19745636", "id" : 19745636 }, { - "name" : "Jose Cheyo Jimenez", + "name" : "Ch\u00E9yo Jim\u00E9nez", "screen_name" : "masters3d", "indices" : [ 8, 18 ], "id_str" : "15990332", @@ -1096,6 +1096,7 @@ Grailbird.data.tweets_2016_11 = "resize" : "fit", "w" : 379 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/j4a5htbaKx" } ], "hashtags" : [ ], @@ -1653,7 +1654,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD78\uD835\uDD86\uD835\uDD97\uD835\uDC24 \uD835\uDD6D\uD835\uDD97\uD835\uDD86\uD835\uDD92\uD835\uDD8D\uD835\uDD94\uD835\uDD9C\uD835\uDD91 \uD83C\uDF15\uD83D\uDC3A", + "name" : "Mark Bramhill \uD83D\uDC93", "screen_name" : "mcbramhill", "indices" : [ 31, 42 ], "id_str" : "432194612", diff --git a/public/tweets/data/js/tweets/2016_12.js b/public/tweets/data/js/tweets/2016_12.js index 3b5e9c7..c9f4a95 100755 --- a/public/tweets/data/js/tweets/2016_12.js +++ b/public/tweets/data/js/tweets/2016_12.js @@ -41,26 +41,27 @@ Grailbird.data.tweets_2016_12 = "id" : 815277582396563457, "media_url_https" : "https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/815277582396563457\/pu\/img\/O0fkEMcsHb_wwMX9.jpg", "sizes" : [ { - "h" : 0, - "resize" : "fit", - "w" : 0 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 338, + "h" : 675, "resize" : "fit", - "w" : 600 + "w" : 1200 }, { - "h" : 191, + "h" : 383, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 576, + "h" : 720, "resize" : "fit", - "w" : 1024 + "w" : 1280 + }, { + "h" : 720, + "resize" : "fit", + "w" : 1280 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/k5F10R6KQF" } ], "hashtags" : [ ], @@ -76,7 +77,7 @@ Grailbird.data.tweets_2016_12 = "screen_name" : "1SecondEveryday", "protected" : false, "id_str" : "408246807", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/662690256559464448\/M7RzZNyf_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/944295924972396544\/JbwvMdpK_normal.jpg", "id" : 408246807, "verified" : true } @@ -111,26 +112,27 @@ Grailbird.data.tweets_2016_12 = "id" : 814863507590000641, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/C076ZpPUQAAwPLj.jpg", "sizes" : [ { - "h" : 383, - "resize" : "fit", - "w" : 680 - }, { - "h" : 0, - "resize" : "fit", - "w" : 0 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 675, "resize" : "fit", "w" : 1200 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 }, { "h" : 720, "resize" : "fit", "w" : 1280 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 720, + "resize" : "fit", + "w" : 1280 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ct43QpKcnv" } ], "hashtags" : [ ], @@ -157,26 +159,27 @@ Grailbird.data.tweets_2016_12 = "id" : 814863507590000641, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/C076ZpPUQAAwPLj.jpg", "sizes" : [ { - "h" : 383, - "resize" : "fit", - "w" : 680 - }, { - "h" : 0, - "resize" : "fit", - "w" : 0 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 675, "resize" : "fit", "w" : 1200 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 }, { "h" : 720, "resize" : "fit", "w" : 1280 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 720, + "resize" : "fit", + "w" : 1280 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ct43QpKcnv" } ], "hashtags" : [ ], @@ -197,7 +200,7 @@ Grailbird.data.tweets_2016_12 = "screen_name" : "ProductHunt", "protected" : false, "id_str" : "2208027565", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/875436016428916736\/1WwdUVmB_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/939537169647132672\/8cevfMA8_normal.jpg", "id" : 2208027565, "verified" : true } @@ -492,14 +495,6 @@ Grailbird.data.tweets_2016_12 = "h" : 450, "resize" : "fit", "w" : 450 - }, { - "h" : 450, - "resize" : "fit", - "w" : 450 - }, { - "h" : 450, - "resize" : "fit", - "w" : 450 }, { "h" : 150, "resize" : "crop", @@ -508,7 +503,16 @@ Grailbird.data.tweets_2016_12 = "h" : 450, "resize" : "fit", "w" : 450 + }, { + "h" : 450, + "resize" : "fit", + "w" : 450 + }, { + "h" : 450, + "resize" : "fit", + "w" : 450 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/7hVAATLQUV" } ], "hashtags" : [ ], @@ -533,14 +537,6 @@ Grailbird.data.tweets_2016_12 = "h" : 450, "resize" : "fit", "w" : 450 - }, { - "h" : 450, - "resize" : "fit", - "w" : 450 - }, { - "h" : 450, - "resize" : "fit", - "w" : 450 }, { "h" : 150, "resize" : "crop", @@ -549,7 +545,16 @@ Grailbird.data.tweets_2016_12 = "h" : 450, "resize" : "fit", "w" : 450 + }, { + "h" : 450, + "resize" : "fit", + "w" : 450 + }, { + "h" : 450, + "resize" : "fit", + "w" : 450 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/7hVAATLQUV" } ], "hashtags" : [ ], @@ -627,10 +632,6 @@ Grailbird.data.tweets_2016_12 = "id" : 811255270651281408, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/C0IoXtVVQAAX1RU.jpg", "sizes" : [ { - "h" : 1448, - "resize" : "fit", - "w" : 2102 - }, { "h" : 1411, "resize" : "fit", "w" : 2048 @@ -638,15 +639,20 @@ Grailbird.data.tweets_2016_12 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 468, + "resize" : "fit", + "w" : 680 }, { "h" : 827, "resize" : "fit", "w" : 1200 }, { - "h" : 468, + "h" : 1448, "resize" : "fit", - "w" : 680 + "w" : 2102 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/t70TzjPPxz" } ], "hashtags" : [ ], @@ -685,14 +691,6 @@ Grailbird.data.tweets_2016_12 = "id" : 811249956027629568, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/C0IjiW0UAAADLE8.jpg", "sizes" : [ { - "h" : 107, - "resize" : "fit", - "w" : 680 - }, { - "h" : 190, - "resize" : "fit", - "w" : 1200 - }, { "h" : 308, "resize" : "fit", "w" : 1950 @@ -700,11 +698,20 @@ Grailbird.data.tweets_2016_12 = "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 107, + "resize" : "fit", + "w" : 680 }, { "h" : 308, "resize" : "fit", "w" : 1950 + }, { + "h" : 190, + "resize" : "fit", + "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/WAkEy11RSM" } ], "hashtags" : [ ], @@ -850,18 +857,6 @@ Grailbird.data.tweets_2016_12 = "id" : 809958101877194752, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Cz2MmjFXAAARi_0.jpg", "sizes" : [ { - "h" : 470, - "resize" : "fit", - "w" : 644 - }, { - "h" : 470, - "resize" : "fit", - "w" : 644 - }, { - "h" : 470, - "resize" : "fit", - "w" : 644 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -869,7 +864,20 @@ Grailbird.data.tweets_2016_12 = "h" : 470, "resize" : "fit", "w" : 644 + }, { + "h" : 470, + "resize" : "fit", + "w" : 644 + }, { + "h" : 470, + "resize" : "fit", + "w" : 644 + }, { + "h" : 470, + "resize" : "fit", + "w" : 644 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ctj4UAddQA" } ], "hashtags" : [ ], @@ -891,18 +899,6 @@ Grailbird.data.tweets_2016_12 = "id" : 809958101877194752, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Cz2MmjFXAAARi_0.jpg", "sizes" : [ { - "h" : 470, - "resize" : "fit", - "w" : 644 - }, { - "h" : 470, - "resize" : "fit", - "w" : 644 - }, { - "h" : 470, - "resize" : "fit", - "w" : 644 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -910,7 +906,20 @@ Grailbird.data.tweets_2016_12 = "h" : 470, "resize" : "fit", "w" : 644 + }, { + "h" : 470, + "resize" : "fit", + "w" : 644 + }, { + "h" : 470, + "resize" : "fit", + "w" : 644 + }, { + "h" : 470, + "resize" : "fit", + "w" : 644 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ctj4UAddQA" } ], "hashtags" : [ ], @@ -946,7 +955,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", @@ -994,26 +1003,27 @@ Grailbird.data.tweets_2016_12 = "id" : 809077744604581888, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Czpr7ArUkAA2fIR.jpg", "sizes" : [ { - "h" : 1200, + "h" : 680, "resize" : "fit", - "w" : 675 + "w" : 382 }, { "h" : 150, "resize" : "crop", "w" : 150 - }, { - "h" : 2048, - "resize" : "fit", - "w" : 1152 }, { "h" : 2208, "resize" : "fit", "w" : 1242 }, { - "h" : 680, + "h" : 1200, "resize" : "fit", - "w" : 382 + "w" : 675 + }, { + "h" : 2048, + "resize" : "fit", + "w" : 1152 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/R59pMq2rYO" } ], "hashtags" : [ ], @@ -1227,7 +1237,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Death Nadeau \uD83C\uDF83", + "name" : "jeff, denizen of the pond", "screen_name" : "jnadeau", "indices" : [ 0, 8 ], "id_str" : "2741981", @@ -1275,26 +1285,27 @@ Grailbird.data.tweets_2016_12 = "id" : 808046594419372032, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CzbCGK5UsAALc9x.jpg", "sizes" : [ { - "h" : 241, - "resize" : "fit", - "w" : 550 - }, { - "h" : 241, - "resize" : "fit", - "w" : 550 - }, { - "h" : 241, - "resize" : "fit", - "w" : 550 - }, { - "h" : 241, - "resize" : "fit", - "w" : 550 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 241, + "resize" : "fit", + "w" : 550 + }, { + "h" : 241, + "resize" : "fit", + "w" : 550 + }, { + "h" : 241, + "resize" : "fit", + "w" : 550 + }, { + "h" : 241, + "resize" : "fit", + "w" : 550 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/IzlSXq77sv" } ], "hashtags" : [ ], @@ -1810,7 +1821,7 @@ Grailbird.data.tweets_2016_12 = "screen_name" : "mariofusco", "protected" : false, "id_str" : "142589904", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919473329354010625\/AwG2CHyv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972385686895693824\/OMY3gAst_normal.jpg", "id" : 142589904, "verified" : false } @@ -1879,7 +1890,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "a sexy brian costume", + "name" : "Brian Gesiak", "screen_name" : "modocache", "indices" : [ 3, 13 ], "id_str" : "192478064", @@ -1906,7 +1917,7 @@ Grailbird.data.tweets_2016_12 = "id" : 806706197046755329, "created_at" : "2016-12-08 03:45:19 +0000", "user" : { - "name" : "a sexy brian costume", + "name" : "Brian Gesiak", "screen_name" : "modocache", "protected" : false, "id_str" : "192478064", diff --git a/public/tweets/data/js/tweets/2017_01.js b/public/tweets/data/js/tweets/2017_01.js index 6d657b8..6ea1231 100755 --- a/public/tweets/data/js/tweets/2017_01.js +++ b/public/tweets/data/js/tweets/2017_01.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeffrey Paul \uD83D\uDC17", + "name" : "Jeffrey Paul \uD83E\uDD94", "screen_name" : "sneakdotberlin", "indices" : [ 0, 15 ], "id_str" : "14270439", @@ -122,10 +122,6 @@ Grailbird.data.tweets_2017_01 = "id" : 824006889142820864, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/C2915l_VIAAJ02m.jpg", "sizes" : [ { - "h" : 454, - "resize" : "fit", - "w" : 680 - }, { "h" : 534, "resize" : "fit", "w" : 800 @@ -137,11 +133,16 @@ Grailbird.data.tweets_2017_01 = "h" : 534, "resize" : "fit", "w" : 800 + }, { + "h" : 454, + "resize" : "fit", + "w" : 680 }, { "h" : 534, "resize" : "fit", "w" : 800 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/KjODjyEI9X" } ], "hashtags" : [ ], @@ -215,14 +216,6 @@ Grailbird.data.tweets_2017_01 = "h" : 1224, "resize" : "fit", "w" : 1560 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 534, - "resize" : "fit", - "w" : 680 }, { "h" : 942, "resize" : "fit", @@ -231,7 +224,16 @@ Grailbird.data.tweets_2017_01 = "h" : 1224, "resize" : "fit", "w" : 1560 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 534, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/oUeS5rBO7l" } ], "hashtags" : [ ], @@ -360,13 +362,13 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "indices" : [ 3, 9 ], "id_str" : "1919231", "id" : 1919231 }, { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 122, 138 ], "id_str" : "15267898", @@ -383,7 +385,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 111, 127 ], "id_str" : "15267898", @@ -398,26 +400,27 @@ Grailbird.data.tweets_2017_01 = "id" : 823964053663924224, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/C29O8PZUQAAiVnV.jpg", "sizes" : [ { - "h" : 209, - "resize" : "fit", - "w" : 1027 - }, { - "h" : 209, - "resize" : "fit", - "w" : 1027 - }, { - "h" : 209, - "resize" : "fit", - "w" : 1027 - }, { "h" : 150, "resize" : "crop", "w" : 150 + }, { + "h" : 209, + "resize" : "fit", + "w" : 1027 + }, { + "h" : 209, + "resize" : "fit", + "w" : 1027 + }, { + "h" : 209, + "resize" : "fit", + "w" : 1027 }, { "h" : 138, "resize" : "fit", "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/EdYL7oCzo9" } ], "hashtags" : [ ], @@ -429,7 +432,7 @@ Grailbird.data.tweets_2017_01 = "id" : 823964312368599040, "created_at" : "2017-01-24 18:42:55 +0000", "user" : { - "name" : "Cabel Sasser", + "name" : "Cabel Maxfield Sasser", "screen_name" : "cabel", "protected" : false, "id_str" : "1919231", @@ -707,26 +710,27 @@ Grailbird.data.tweets_2017_01 = "id" : 822642910596386818, "media_url_https" : "https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/822642910596386818\/pu\/img\/2U5Nj4rvZnHG9q3V.jpg", "sizes" : [ { - "h" : 0, - "resize" : "fit", - "w" : 0 - }, { "h" : 150, "resize" : "crop", "w" : 150 }, { - "h" : 338, + "h" : 675, "resize" : "fit", - "w" : 600 + "w" : 1200 }, { - "h" : 191, + "h" : 383, "resize" : "fit", - "w" : 340 + "w" : 680 }, { - "h" : 576, + "h" : 720, "resize" : "fit", - "w" : 1024 + "w" : 1280 + }, { + "h" : 720, + "resize" : "fit", + "w" : 1280 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/SxwIhIInMc" } ], "hashtags" : [ ], @@ -784,7 +788,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC7B Phlegm Parrot", + "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -817,7 +821,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC7B Phlegm Parrot", + "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -850,7 +854,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC7B Phlegm Parrot", + "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -977,13 +981,13 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC7B Phlegm Parrot", + "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", "id" : 43727347 }, { - "name" : "hannah", + "name" : "Hannah", "screen_name" : "oceanseyye", "indices" : [ 12, 23 ], "id_str" : "1201665662", @@ -1243,10 +1247,6 @@ Grailbird.data.tweets_2017_01 = "h" : 449, "resize" : "fit", "w" : 600 - }, { - "h" : 449, - "resize" : "fit", - "w" : 600 }, { "h" : 150, "resize" : "crop", @@ -1259,7 +1259,12 @@ Grailbird.data.tweets_2017_01 = "h" : 449, "resize" : "fit", "w" : 600 + }, { + "h" : 449, + "resize" : "fit", + "w" : 600 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/ohbtqlCuTP" } ], "hashtags" : [ ], @@ -1453,7 +1458,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -1519,7 +1524,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "vixentael \uD83D\uDCBB\uD83E\uDD84", + "name" : "vixentael \uD83E\uDD8A", "screen_name" : "vixentael", "indices" : [ 0, 10 ], "id_str" : "536639805", @@ -1585,7 +1590,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Anis", + "name" : "Anis \u28E2", "screen_name" : "0xUID", "indices" : [ 0, 6 ], "id_str" : "1913804996", @@ -1624,7 +1629,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -1657,7 +1662,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jackal\uD83D\uDD78scarestein\uD83C\uDFC3", + "name" : "jbr", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -1723,7 +1728,7 @@ Grailbird.data.tweets_2017_01 = "id_str" : "2941119764", "id" : 2941119764 }, { - "name" : "\uD835\uDD78\uD835\uDD86\uD835\uDD97\uD835\uDC24 \uD835\uDD6D\uD835\uDD97\uD835\uDD86\uD835\uDD92\uD835\uDD8D\uD835\uDD94\uD835\uDD9C\uD835\uDD91 \uD83C\uDF15\uD83D\uDC3A", + "name" : "Mark Bramhill \uD83D\uDC93", "screen_name" : "mcbramhill", "indices" : [ 43, 54 ], "id_str" : "432194612", @@ -1738,9 +1743,9 @@ Grailbird.data.tweets_2017_01 = "id" : 817897338521800704, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/C1nBS8VUUAAI6Mn.jpg", "sizes" : [ { - "h" : 510, + "h" : 1536, "resize" : "fit", - "w" : 680 + "w" : 2048 }, { "h" : 150, "resize" : "crop", @@ -1749,15 +1754,16 @@ Grailbird.data.tweets_2017_01 = "h" : 3024, "resize" : "fit", "w" : 4032 - }, { - "h" : 1536, - "resize" : "fit", - "w" : 2048 }, { "h" : 900, "resize" : "fit", "w" : 1200 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/HV17xN6YoA" } ], "hashtags" : [ ], @@ -1836,7 +1842,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "[joe groff];", + "name" : "Joe Groff", "screen_name" : "jckarter", "indices" : [ 0, 9 ], "id_str" : "18559099", @@ -1968,6 +1974,10 @@ Grailbird.data.tweets_2017_01 = "id" : 816377533289463808, "media_url_https" : "https:\/\/pbs.twimg.com\/tweet_video_thumb\/C1RbCopUAAAa2mS.jpg", "sizes" : [ { + "h" : 150, + "resize" : "fit", + "w" : 360 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -1983,11 +1993,8 @@ Grailbird.data.tweets_2017_01 = "h" : 150, "resize" : "fit", "w" : 360 - }, { - "h" : 142, - "resize" : "fit", - "w" : 340 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/J02JqWvEQb" } ], "hashtags" : [ ], @@ -2009,6 +2016,10 @@ Grailbird.data.tweets_2017_01 = "id" : 816377533289463808, "media_url_https" : "https:\/\/pbs.twimg.com\/tweet_video_thumb\/C1RbCopUAAAa2mS.jpg", "sizes" : [ { + "h" : 150, + "resize" : "fit", + "w" : 360 + }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -2024,11 +2035,8 @@ Grailbird.data.tweets_2017_01 = "h" : 150, "resize" : "fit", "w" : 360 - }, { - "h" : 142, - "resize" : "fit", - "w" : 340 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/J02JqWvEQb" } ], "hashtags" : [ ], @@ -2109,7 +2117,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", diff --git a/public/tweets/data/js/tweets/2017_02.js b/public/tweets/data/js/tweets/2017_02.js index 7497872..e95fdba 100755 --- a/public/tweets/data/js/tweets/2017_02.js +++ b/public/tweets/data/js/tweets/2017_02.js @@ -140,7 +140,7 @@ Grailbird.data.tweets_2017_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "indices" : [ 3, 19 ], "id_str" : "1263967268", @@ -167,11 +167,11 @@ Grailbird.data.tweets_2017_02 = "id" : 431946978751021056, "created_at" : "2014-02-08 00:25:59 +0000", "user" : { - "name" : "Hacker News Onion", + "name" : "HackerNewsOnion", "screen_name" : "HackerNewsOnion", "protected" : false, "id_str" : "1263967268", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3374120487\/e4f509a5ea232cd5b80f9cbac23d9432_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937618982626037760\/SNb7WO0u_normal.jpg", "id" : 1263967268, "verified" : false } diff --git a/public/tweets/data/js/tweets/2017_04.js b/public/tweets/data/js/tweets/2017_04.js index ff2a8e1..29f140a 100755 --- a/public/tweets/data/js/tweets/2017_04.js +++ b/public/tweets/data/js/tweets/2017_04.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2017_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "2017, but forever", + "name" : "Dan Moren", "screen_name" : "dmoren", "indices" : [ 0, 7 ], "id_str" : "668243", @@ -48,7 +48,7 @@ Grailbird.data.tweets_2017_04 = "id_str" : "2786220516", "id" : 2786220516 }, { - "name" : "2017, but forever", + "name" : "Dan Moren", "screen_name" : "dmoren", "indices" : [ 16, 23 ], "id_str" : "668243", @@ -116,6 +116,7 @@ Grailbird.data.tweets_2017_04 = "resize" : "fit", "w" : 311 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/1EijNLJku2" } ], "hashtags" : [ ], @@ -299,7 +300,7 @@ Grailbird.data.tweets_2017_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "[joe groff];", + "name" : "Joe Groff", "screen_name" : "jckarter", "indices" : [ 3, 12 ], "id_str" : "18559099", @@ -326,11 +327,11 @@ Grailbird.data.tweets_2017_04 = "id" : 854540059197952000, "created_at" : "2017-04-19 03:40:01 +0000", "user" : { - "name" : "[joe groff];", + "name" : "Joe Groff", "screen_name" : "jckarter", "protected" : false, "id_str" : "18559099", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/914907528294686721\/nbK0AVfv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/977666852103995392\/JLjTHaRy_normal.jpg", "id" : 18559099, "verified" : false } @@ -620,13 +621,13 @@ Grailbird.data.tweets_2017_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Nicholas Rempel \uD83C\uDF83", + "name" : "Nicholas Rempel", "screen_name" : "nbrempel", "indices" : [ 0, 9 ], "id_str" : "1400951646", "id" : 1400951646 }, { - "name" : "Jesse Learmonth", + "name" : "Jesse Learmonth \u270C\uD83C\uDFFD\uFE0F", "screen_name" : "jesselearmonth", "indices" : [ 10, 25 ], "id_str" : "16367713", diff --git a/public/tweets/data/js/tweets/2017_05.js b/public/tweets/data/js/tweets/2017_05.js index 16c7db2..ffa605e 100755 --- a/public/tweets/data/js/tweets/2017_05.js +++ b/public/tweets/data/js/tweets/2017_05.js @@ -75,7 +75,7 @@ Grailbird.data.tweets_2017_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", diff --git a/public/tweets/data/js/tweets/2017_06.js b/public/tweets/data/js/tweets/2017_06.js index 0fb915d..c1d934a 100755 --- a/public/tweets/data/js/tweets/2017_06.js +++ b/public/tweets/data/js/tweets/2017_06.js @@ -103,7 +103,7 @@ Grailbird.data.tweets_2017_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve T-S", + "name" : "Steve Troughton-Smith", "screen_name" : "stroughtonsmith", "indices" : [ 0, 16 ], "id_str" : "15267898", @@ -322,26 +322,27 @@ Grailbird.data.tweets_2017_06 = "id" : 874364617086119937, "media_url_https" : "https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/874364617086119937\/pu\/img\/MSVZweA9xrqe2RFD.jpg", "sizes" : [ { - "h" : 604, + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, "resize" : "fit", - "w" : 340 + "w" : 383 }, { "h" : 1280, "resize" : "fit", "w" : 720 }, { - "h" : 0, + "h" : 1200, "resize" : "fit", - "w" : 0 + "w" : 675 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1067, + "h" : 1280, "resize" : "fit", - "w" : 600 + "w" : 720 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/A34j3sTkNl" } ], "hashtags" : [ ], @@ -499,9 +500,9 @@ Grailbird.data.tweets_2017_06 = "id" : 874317687748345856, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DCIzTf8UwAAm8YF.jpg", "sizes" : [ { - "h" : 199, - "resize" : "fit", - "w" : 680 + "h" : 150, + "resize" : "crop", + "w" : 150 }, { "h" : 352, "resize" : "fit", @@ -511,14 +512,15 @@ Grailbird.data.tweets_2017_06 = "resize" : "fit", "w" : 1576 }, { - "h" : 150, - "resize" : "crop", - "w" : 150 + "h" : 199, + "resize" : "fit", + "w" : 680 }, { "h" : 462, "resize" : "fit", "w" : 1576 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/v0ri8DDJ55" } ], "hashtags" : [ ], @@ -548,7 +550,7 @@ Grailbird.data.tweets_2017_06 = "id_str" : "9088822", "id" : 9088822 }, { - "name" : "Black WalDIEski \uD83C\uDF11\u26B0\uFE0F", + "name" : "Squeezer of Cows", "screen_name" : "zwaldowski", "indices" : [ 9, 20 ], "id_str" : "18553922", @@ -647,26 +649,27 @@ Grailbird.data.tweets_2017_06 = "id" : 873210292121071617, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DB5EIlwXcAEUrZH.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 2880, "resize" : "fit", "w" : 5120 - }, { - "h" : 675, - "resize" : "fit", - "w" : 1200 }, { "h" : 383, "resize" : "fit", "w" : 680 + }, { + "h" : 675, + "resize" : "fit", + "w" : 1200 }, { "h" : 1152, "resize" : "fit", "w" : 2048 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/myDddz550G" } ], "hashtags" : [ ], @@ -688,26 +691,27 @@ Grailbird.data.tweets_2017_06 = "id" : 873210292121071617, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DB5EIlwXcAEUrZH.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 2880, "resize" : "fit", "w" : 5120 - }, { - "h" : 675, - "resize" : "fit", - "w" : 1200 }, { "h" : 383, "resize" : "fit", "w" : 680 + }, { + "h" : 675, + "resize" : "fit", + "w" : 1200 }, { "h" : 1152, "resize" : "fit", "w" : 2048 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/myDddz550G" } ], "hashtags" : [ ], @@ -723,7 +727,7 @@ Grailbird.data.tweets_2017_06 = "screen_name" : "arekholko", "protected" : false, "id_str" : "119078936", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/589392297294364672\/P3YuoC8a_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/980958980347453448\/GbfxZNS2_normal.jpg", "id" : 119078936, "verified" : false } @@ -743,7 +747,7 @@ Grailbird.data.tweets_2017_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John Feminella", + "name" : "John Feminella \u232C", "screen_name" : "jxxf", "indices" : [ 3, 8 ], "id_str" : "19463693", @@ -769,14 +773,6 @@ Grailbird.data.tweets_2017_06 = "id" : 871000270569951232, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DBZqIZ6XUAAXkFg.jpg", "sizes" : [ { - "h" : 1200, - "resize" : "fit", - "w" : 911 - }, { - "h" : 680, - "resize" : "fit", - "w" : 516 - }, { "h" : 150, "resize" : "crop", "w" : 150 @@ -788,7 +784,16 @@ Grailbird.data.tweets_2017_06 = "h" : 1896, "resize" : "fit", "w" : 1440 + }, { + "h" : 680, + "resize" : "fit", + "w" : 516 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 911 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/GCYWwBdRIy" }, { "expanded_url" : "https:\/\/twitter.com\/jxxf\/status\/871000661869154304\/photo\/1", @@ -799,9 +804,9 @@ Grailbird.data.tweets_2017_06 = "id" : 871000444553883648, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DBZqSiDXcAAoUoM.jpg", "sizes" : [ { - "h" : 1131, + "h" : 534, "resize" : "fit", - "w" : 1440 + "w" : 680 }, { "h" : 1131, "resize" : "fit", @@ -811,14 +816,15 @@ Grailbird.data.tweets_2017_06 = "resize" : "crop", "w" : 150 }, { - "h" : 534, + "h" : 1131, "resize" : "fit", - "w" : 680 + "w" : 1440 }, { "h" : 943, "resize" : "fit", "w" : 1200 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/GCYWwBdRIy" }, { "expanded_url" : "https:\/\/twitter.com\/jxxf\/status\/871000661869154304\/photo\/1", @@ -829,26 +835,27 @@ Grailbird.data.tweets_2017_06 = "id" : 871000549356965888, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DBZqYoeXkAA1a5s.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { "h" : 696, "resize" : "fit", "w" : 1200 + }, { + "h" : 835, + "resize" : "fit", + "w" : 1440 }, { "h" : 394, "resize" : "fit", "w" : 680 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 835, - "resize" : "fit", - "w" : 1440 }, { "h" : 835, "resize" : "fit", "w" : 1440 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/GCYWwBdRIy" } ], "hashtags" : [ ], @@ -860,7 +867,7 @@ Grailbird.data.tweets_2017_06 = "id" : 871000661869154304, "created_at" : "2017-06-03 13:48:34 +0000", "user" : { - "name" : "John Feminella", + "name" : "John Feminella \u232C", "screen_name" : "jxxf", "protected" : false, "id_str" : "19463693", diff --git a/public/tweets/data/js/tweets/2017_07.js b/public/tweets/data/js/tweets/2017_07.js index 5616694..8b407a3 100755 --- a/public/tweets/data/js/tweets/2017_07.js +++ b/public/tweets/data/js/tweets/2017_07.js @@ -514,7 +514,7 @@ Grailbird.data.tweets_2017_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Vincent Lombardi", + "name" : "CasualDadhole", "screen_name" : "padre_vincent", "indices" : [ 0, 14 ], "id_str" : "395092966", diff --git a/public/tweets/data/js/tweets/2017_08.js b/public/tweets/data/js/tweets/2017_08.js index 556cbfc..62acdaa 100755 --- a/public/tweets/data/js/tweets/2017_08.js +++ b/public/tweets/data/js/tweets/2017_08.js @@ -108,7 +108,7 @@ Grailbird.data.tweets_2017_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -141,7 +141,7 @@ Grailbird.data.tweets_2017_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -174,7 +174,7 @@ Grailbird.data.tweets_2017_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -207,7 +207,7 @@ Grailbird.data.tweets_2017_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -273,7 +273,7 @@ Grailbird.data.tweets_2017_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -300,7 +300,7 @@ Grailbird.data.tweets_2017_08 = "id" : 897912113578082304, "created_at" : "2017-08-16 20:05:04 +0000", "user" : { - "name" : "Slightly Spooky Nate", + "name" : "NSNateParser", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -514,6 +514,18 @@ Grailbird.data.tweets_2017_08 = "id" : 894328842302697472, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DGlLV_3WsAABjNt.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { "h" : 680, "resize" : "fit", "w" : 510 @@ -521,19 +533,8 @@ Grailbird.data.tweets_2017_08 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Nm9jmw0GSL" } ], "hashtags" : [ ], @@ -560,6 +561,18 @@ Grailbird.data.tweets_2017_08 = "id" : 894328842302697472, "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DGlLV_3WsAABjNt.jpg", "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { + "h" : 1024, + "resize" : "fit", + "w" : 768 + }, { "h" : 680, "resize" : "fit", "w" : 510 @@ -567,19 +580,8 @@ Grailbird.data.tweets_2017_08 = "h" : 1024, "resize" : "fit", "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 1024, - "resize" : "fit", - "w" : 768 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 } ], + "media_alt" : "", "display_url" : "pic.twitter.com\/Nm9jmw0GSL" } ], "hashtags" : [ ], @@ -600,7 +602,7 @@ Grailbird.data.tweets_2017_08 = "screen_name" : "raganwald", "protected" : false, "id_str" : "18137723", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/853400781726371840\/QjvdLTYQ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", "id" : 18137723, "verified" : false } diff --git a/public/tweets/data/js/tweets/2017_09.js b/public/tweets/data/js/tweets/2017_09.js index 07e8013..94f71fc 100755 --- a/public/tweets/data/js/tweets/2017_09.js +++ b/public/tweets/data/js/tweets/2017_09.js @@ -108,7 +108,7 @@ Grailbird.data.tweets_2017_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Javi", + "name" : "JaviAir", "screen_name" : "Javi", "indices" : [ 0, 5 ], "id_str" : "7213362", @@ -264,7 +264,7 @@ Grailbird.data.tweets_2017_09 = "id_str" : "20395932", "id" : 20395932 }, { - "name" : "TJ Holowaychuk", + "name" : "TJ Holowaychuk \uD83D\uDC25", "screen_name" : "tjholowaychuk", "indices" : [ 12, 26 ], "id_str" : "29255412", diff --git a/public/tweets/data/js/tweets/2017_10.js b/public/tweets/data/js/tweets/2017_10.js index 3c90dc6..bf63a43 100755 --- a/public/tweets/data/js/tweets/2017_10.js +++ b/public/tweets/data/js/tweets/2017_10.js @@ -1,5 +1,71 @@ Grailbird.data.tweets_2017_10 = -[ { + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Bryn Bodayle", + "screen_name" : "brynbodayle", + "indices" : [ 0, 12 ], + "id_str" : "15204679", + "id" : 15204679 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "923716657746362368", + "geo" : { }, + "id_str" : "923716851103801344", + "in_reply_to_user_id" : 15204679, + "text" : "@brynbodayle I do but only for a couple days and I swear it happened before then too. It\u2019s pretty infrequent for me.", + "id" : 923716851103801344, + "in_reply_to_status_id" : 923716657746362368, + "created_at" : "2017-10-27 01:03:53 +0000", + "in_reply_to_screen_name" : "brynbodayle", + "in_reply_to_user_id_str" : "15204679", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Bryn Bodayle", + "screen_name" : "brynbodayle", + "indices" : [ 0, 12 ], + "id_str" : "15204679", + "id" : 15204679 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "923601283176468480", + "geo" : { }, + "id_str" : "923715946564411393", + "in_reply_to_user_id" : 15204679, + "text" : "@brynbodayle Yes!", + "id" : 923715946564411393, + "in_reply_to_status_id" : 923601283176468480, + "created_at" : "2017-10-27 01:00:18 +0000", + "in_reply_to_screen_name" : "brynbodayle", + "in_reply_to_user_id_str" : "15204679", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { @@ -74,7 +140,7 @@ Grailbird.data.tweets_2017_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Matthias", + "name" : "\uD835\uDD44\uD835\uDD52\uD835\uDD65\uD835\uDD65\uD835\uDD59\uD835\uDD5A\uD835\uDD52\uD835\uDD64", "screen_name" : "arrizer", "indices" : [ 0, 8 ], "id_str" : "10752072", @@ -107,12 +173,6 @@ Grailbird.data.tweets_2017_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Failed Tankie", - "screen_name" : "memefiend2", - "indices" : [ 0, 11 ], - "id_str" : "4846128982", - "id" : 4846128982 - }, { "name" : "CBC Politics", "screen_name" : "CBCPolitics", "indices" : [ 12, 24 ], @@ -136,7 +196,7 @@ Grailbird.data.tweets_2017_10 = "id" : 914612876094038017, "in_reply_to_status_id" : 914586691838525440, "created_at" : "2017-10-01 22:07:57 +0000", - "in_reply_to_screen_name" : "memefiend2", + "in_reply_to_screen_name" : "Nazbolol", "in_reply_to_user_id_str" : "4846128982", "user" : { "name" : "Sami Samhuri", diff --git a/public/tweets/data/js/tweets/2017_11.js b/public/tweets/data/js/tweets/2017_11.js new file mode 100755 index 0000000..eb3b8a3 --- /dev/null +++ b/public/tweets/data/js/tweets/2017_11.js @@ -0,0 +1,703 @@ +Grailbird.data.tweets_2017_11 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Scott Miller", + "screen_name" : "Miller_Geek", + "indices" : [ 0, 12 ], + "id_str" : "235707661", + "id" : 235707661 + }, { + "name" : "jessie frazelle", + "screen_name" : "jessfraz", + "indices" : [ 13, 22 ], + "id_str" : "285428413", + "id" : 285428413 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "935890491551436802", + "geo" : { }, + "id_str" : "935900277164580864", + "in_reply_to_user_id" : 235707661, + "text" : "@Miller_Geek @jessfraz Apple didn\u2019t tout it, some rando in the forum did. You didn\u2019t even look at the damn thread and here you are spouting nonsense.", + "id" : 935900277164580864, + "in_reply_to_status_id" : 935890491551436802, + "created_at" : "2017-11-29 15:56:28 +0000", + "in_reply_to_screen_name" : "Miller_Geek", + "in_reply_to_user_id_str" : "235707661", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Airbnb Help", + "screen_name" : "AirbnbHelp", + "indices" : [ 0, 11 ], + "id_str" : "2688148651", + "id" : 2688148651 + }, { + "name" : "Rustam Aliyev", + "screen_name" : "rstml", + "indices" : [ 12, 18 ], + "id_str" : "46770301", + "id" : 46770301 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "752829250198245376", + "geo" : { }, + "id_str" : "935582192930996224", + "in_reply_to_user_id" : 2688148651, + "text" : "@AirbnbHelp @rstml Well everyone else recommends that you fix your damn website. That\u2019s not how the web works.", + "id" : 935582192930996224, + "in_reply_to_status_id" : 752829250198245376, + "created_at" : "2017-11-28 18:52:31 +0000", + "in_reply_to_screen_name" : "AirbnbHelp", + "in_reply_to_user_id_str" : "2688148651", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "NSNateParser", + "screen_name" : "thenatekirby", + "indices" : [ 0, 13 ], + "id_str" : "1628814223", + "id" : 1628814223 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "935240368840433664", + "geo" : { }, + "id_str" : "935376248255102976", + "in_reply_to_user_id" : 1628814223, + "text" : "@thenatekirby Sentry is pretty good. I don\u2019t have a ton of experience with it but I like it so far. Supports many platforms and lets you log any event.", + "id" : 935376248255102976, + "in_reply_to_status_id" : 935240368840433664, + "created_at" : "2017-11-28 05:14:10 +0000", + "in_reply_to_screen_name" : "thenatekirby", + "in_reply_to_user_id_str" : "1628814223", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Frank A. Krueger", + "screen_name" : "praeclarum", + "indices" : [ 0, 11 ], + "id_str" : "15052455", + "id" : 15052455 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "933516725315760129", + "geo" : { }, + "id_str" : "933548444727119873", + "in_reply_to_user_id" : 15052455, + "text" : "@praeclarum They make really good boilers too. If you always have hot water you can make coffee in a couple of minutes any time. It\u2019s really luxurious.", + "id" : 933548444727119873, + "in_reply_to_status_id" : 933516725315760129, + "created_at" : "2017-11-23 04:11:08 +0000", + "in_reply_to_screen_name" : "praeclarum", + "in_reply_to_user_id_str" : "15052455", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Jurie Horneman", + "screen_name" : "jurieongames", + "indices" : [ 0, 13 ], + "id_str" : "18920834", + "id" : 18920834 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "932284558166450182", + "geo" : { }, + "id_str" : "932287516308226048", + "in_reply_to_user_id" : 18920834, + "text" : "@jurieongames No that\u2019s fair. I\u2019m sure they\u2019re in a support document somewhere but are not discoverable at all. You pretty much have to be told about them to know.", + "id" : 932287516308226048, + "in_reply_to_status_id" : 932284558166450182, + "created_at" : "2017-11-19 16:40:39 +0000", + "in_reply_to_screen_name" : "jurieongames", + "in_reply_to_user_id_str" : "18920834", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Jurie Horneman", + "screen_name" : "jurieongames", + "indices" : [ 0, 13 ], + "id_str" : "18920834", + "id" : 18920834 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 31, 54 ], + "url" : "https:\/\/t.co\/sMzoCkbE3S", + "expanded_url" : "https:\/\/jblevins.org\/log\/kbd", + "display_url" : "jblevins.org\/log\/kbd" + } ] + }, + "in_reply_to_status_id_str" : "932282788270755847", + "geo" : { }, + "id_str" : "932283356330389504", + "in_reply_to_user_id" : 18920834, + "text" : "@jurieongames These ones here: https:\/\/t.co\/sMzoCkbE3S\n\nStackOverflow clobbers at least ctrl-b.", + "id" : 932283356330389504, + "in_reply_to_status_id" : 932282788270755847, + "created_at" : "2017-11-19 16:24:07 +0000", + "in_reply_to_screen_name" : "jurieongames", + "in_reply_to_user_id_str" : "18920834", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "mikeash", + "screen_name" : "mikeash", + "indices" : [ 3, 11 ], + "id_str" : "8142952", + "id" : 8142952 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 67, 90 ], + "url" : "https:\/\/t.co\/3yi2xTMr94", + "expanded_url" : "https:\/\/xkcd.com\/1915\/", + "display_url" : "xkcd.com\/1915\/" + } ] + }, + "geo" : { }, + "id_str" : "930271981349384192", + "text" : "RT @mikeash: Randall Munroe has spyware installed ON MY VERY SOUL. https:\/\/t.co\/3yi2xTMr94", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 54, 77 ], + "url" : "https:\/\/t.co\/3yi2xTMr94", + "expanded_url" : "https:\/\/xkcd.com\/1915\/", + "display_url" : "xkcd.com\/1915\/" + } ] + }, + "geo" : { }, + "id_str" : "930248961859948544", + "text" : "Randall Munroe has spyware installed ON MY VERY SOUL. https:\/\/t.co\/3yi2xTMr94", + "id" : 930248961859948544, + "created_at" : "2017-11-14 01:40:10 +0000", + "user" : { + "name" : "mikeash", + "screen_name" : "mikeash", + "protected" : false, + "id_str" : "8142952", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/568931119077523456\/At7WtWLb_normal.png", + "id" : 8142952, + "verified" : false + } + }, + "id" : 930271981349384192, + "created_at" : "2017-11-14 03:11:38 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Krzysztof Zab\u0142ocki", + "screen_name" : "merowing_", + "indices" : [ 0, 10 ], + "id_str" : "289246577", + "id" : 289246577 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "930122120373272576", + "geo" : { }, + "id_str" : "930122602500177920", + "in_reply_to_user_id" : 4777951, + "text" : "@merowing_ So how\u2019s the phone so far? Heavy but feels really nice right? I love the steel band.", + "id" : 930122602500177920, + "in_reply_to_status_id" : 930122120373272576, + "created_at" : "2017-11-13 17:18:03 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Krzysztof Zab\u0142ocki", + "screen_name" : "merowing_", + "indices" : [ 0, 10 ], + "id_str" : "289246577", + "id" : 289246577 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "930121979583135745", + "geo" : { }, + "id_str" : "930122120373272576", + "in_reply_to_user_id" : 289246577, + "text" : "@merowing_ Nice. I like their watch app for 2fa codes too.", + "id" : 930122120373272576, + "in_reply_to_status_id" : 930121979583135745, + "created_at" : "2017-11-13 17:16:08 +0000", + "in_reply_to_screen_name" : "merowing_", + "in_reply_to_user_id_str" : "289246577", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Krzysztof Zab\u0142ocki", + "screen_name" : "merowing_", + "indices" : [ 0, 10 ], + "id_str" : "289246577", + "id" : 289246577 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "930114772346994689", + "geo" : { }, + "id_str" : "930121882069753857", + "in_reply_to_user_id" : 289246577, + "text" : "@merowing_ You need a better app. Try 1Password or Authy.", + "id" : 930121882069753857, + "in_reply_to_status_id" : 930114772346994689, + "created_at" : "2017-11-13 17:15:12 +0000", + "in_reply_to_screen_name" : "merowing_", + "in_reply_to_user_id_str" : "289246577", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Accidental Tech Podcast", + "screen_name" : "atpfm", + "indices" : [ 203, 209 ], + "id_str" : "1253355925", + "id" : 1253355925 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "929429690158157825", + "text" : "Quickly kill apps on the iPhone X: enter multitasking, tap and hold to show the close icons, but ignore those! Instead, keep your finger down and fling up to kill. You can keep flinging other apps too.\n\n@atpfm", + "id" : 929429690158157825, + "created_at" : "2017-11-11 19:24:40 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Ian McDowell", + "screen_name" : "ian_mcdowell", + "indices" : [ 0, 13 ], + "id_str" : "436117419", + "id" : 436117419 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "928475330033041408", + "geo" : { }, + "id_str" : "928476236342378496", + "in_reply_to_user_id" : 436117419, + "text" : "@ian_mcdowell Yes but you also have to use a launch xib. We were almost spared from dealing with it. Until it wasn\u2019t zero (landscape app so on the sides).", + "id" : 928476236342378496, + "in_reply_to_status_id" : 928475330033041408, + "created_at" : "2017-11-09 04:15:59 +0000", + "in_reply_to_screen_name" : "ian_mcdowell", + "in_reply_to_user_id_str" : "436117419", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/928458241553477632\/photo\/1", + "indices" : [ 135, 158 ], + "url" : "https:\/\/t.co\/7n67GuZBKf", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DOKL2P_VoAMPpNm.jpg", + "id_str" : "928458237313130499", + "id" : 928458237313130499, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DOKL2P_VoAMPpNm.jpg", + "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 500, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 283, + "resize" : "fit", + "w" : 680 + }, { + "h" : 618, + "resize" : "fit", + "w" : 1484 + }, { + "h" : 618, + "resize" : "fit", + "w" : 1484 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/7n67GuZBKf" + } ], + "hashtags" : [ { + "text" : "yolo", + "indices" : [ 122, 127 ] + }, { + "text" : "uikit", + "indices" : [ 128, 134 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "928458241553477632", + "text" : "safeAreaInsets should be zero in the compat mode on the X, but isn\u2019t. Navbars are all wrong. Going nuclear with this one. #yolo #uikit https:\/\/t.co\/7n67GuZBKf", + "id" : 928458241553477632, + "created_at" : "2017-11-09 03:04:29 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Mutwin Kraus", + "screen_name" : "mutle", + "indices" : [ 0, 6 ], + "id_str" : "14088961", + "id" : 14088961 + }, { + "name" : "Neil Cybart", + "screen_name" : "neilcybart", + "indices" : [ 7, 18 ], + "id_str" : "164726768", + "id" : 164726768 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "927315573939298304", + "geo" : { }, + "id_str" : "927371338527817729", + "in_reply_to_user_id" : 14088961, + "text" : "@mutle @neilcybart Objectively, it has worse battery life under load. The other changes I\u2019m mostly fine with.", + "id" : 927371338527817729, + "in_reply_to_status_id" : 927315573939298304, + "created_at" : "2017-11-06 03:05:31 +0000", + "in_reply_to_screen_name" : "mutle", + "in_reply_to_user_id_str" : "14088961", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Benjamin Mayo", + "screen_name" : "bzamayo", + "indices" : [ 0, 8 ], + "id_str" : "167398227", + "id" : 167398227 + }, { + "name" : "Steve Troughton-Smith", + "screen_name" : "stroughtonsmith", + "indices" : [ 9, 25 ], + "id_str" : "15267898", + "id" : 15267898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "927256186017239046", + "geo" : { }, + "id_str" : "927277111554875392", + "in_reply_to_user_id" : 167398227, + "text" : "@bzamayo @stroughtonsmith my girlfriend is dying laughing so something happened... but no hearts here either", + "id" : 927277111554875392, + "in_reply_to_status_id" : 927256186017239046, + "created_at" : "2017-11-05 20:51:06 +0000", + "in_reply_to_screen_name" : "bzamayo", + "in_reply_to_user_id_str" : "167398227", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Cesar Kuriyama", + "screen_name" : "CesarKuriyama", + "indices" : [ 0, 14 ], + "id_str" : "35067687", + "id" : 35067687 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 42, 65 ], + "url" : "https:\/\/t.co\/YV01tkTrrF", + "expanded_url" : "https:\/\/streamable.com\/y69ud", + "display_url" : "streamable.com\/y69ud" + } ] + }, + "in_reply_to_status_id_str" : "926822985943707648", + "geo" : { }, + "id_str" : "926832670599823361", + "in_reply_to_user_id" : 35067687, + "text" : "@CesarKuriyama Some of these are so good! https:\/\/t.co\/YV01tkTrrF", + "id" : 926832670599823361, + "in_reply_to_status_id" : 926822985943707648, + "created_at" : "2017-11-04 15:25:03 +0000", + "in_reply_to_screen_name" : "CesarKuriyama", + "in_reply_to_user_id_str" : "35067687", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "David Tallentire", + "screen_name" : "Tally1971", + "indices" : [ 0, 10 ], + "id_str" : "125282762", + "id" : 125282762 + }, { + "name" : "Guilherme Rambo", + "screen_name" : "_inside", + "indices" : [ 11, 19 ], + "id_str" : "8307912", + "id" : 8307912 + }, { + "name" : "nidstigator", + "screen_name" : "nidstigator", + "indices" : [ 20, 32 ], + "id_str" : "3251463898", + "id" : 3251463898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "925794915182714880", + "geo" : { }, + "id_str" : "925926543464865792", + "in_reply_to_user_id" : 4777951, + "text" : "@Tally1971 @_inside @nidstigator My shipping labels have been created. Searched UPS reference by phone number.", + "id" : 925926543464865792, + "in_reply_to_status_id" : 925794915182714880, + "created_at" : "2017-11-02 03:24:25 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "David Tallentire", + "screen_name" : "Tally1971", + "indices" : [ 0, 10 ], + "id_str" : "125282762", + "id" : 125282762 + }, { + "name" : "Guilherme Rambo", + "screen_name" : "_inside", + "indices" : [ 11, 19 ], + "id_str" : "8307912", + "id" : 8307912 + }, { + "name" : "nidstigator", + "screen_name" : "nidstigator", + "indices" : [ 20, 32 ], + "id_str" : "3251463898", + "id" : 3251463898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "925758884572225536", + "geo" : { }, + "id_str" : "925794915182714880", + "in_reply_to_user_id" : 125282762, + "text" : "@Tally1971 @_inside @nidstigator I\u2019ve had this happen in Canada. 1-2 days before it\u2019s supposed to arrive status changes to Shipped and it originates from \uD83C\uDDE8\uD83C\uDDE6 and not \uD83C\uDDE8\uD83C\uDDF3.", + "id" : 925794915182714880, + "in_reply_to_status_id" : 925758884572225536, + "created_at" : "2017-11-01 18:41:22 +0000", + "in_reply_to_screen_name" : "Tally1971", + "in_reply_to_user_id_str" : "125282762", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2017_12.js b/public/tweets/data/js/tweets/2017_12.js new file mode 100755 index 0000000..ebdfe98 --- /dev/null +++ b/public/tweets/data/js/tweets/2017_12.js @@ -0,0 +1,559 @@ +Grailbird.data.tweets_2017_12 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Klaas", + "screen_name" : "qlaas", + "indices" : [ 0, 6 ], + "id_str" : "784702675418046464", + "id" : 784702675418046464 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "946479173798957056", + "geo" : { }, + "id_str" : "946480417674104832", + "in_reply_to_user_id" : 784702675418046464, + "text" : "@qlaas That is very good! I may have to get one. I have the same iMac so this is the best benchmark result I could have hoped to find.", + "id" : 946480417674104832, + "in_reply_to_status_id" : 946479173798957056, + "created_at" : "2017-12-28 20:38:10 +0000", + "in_reply_to_screen_name" : "qlaas", + "in_reply_to_user_id_str" : "784702675418046464", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Klaas", + "screen_name" : "qlaas", + "indices" : [ 0, 6 ], + "id_str" : "784702675418046464", + "id" : 784702675418046464 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "946475033907654656", + "geo" : { }, + "id_str" : "946475172877410304", + "in_reply_to_user_id" : 784702675418046464, + "text" : "@qlaas Thank you!", + "id" : 946475172877410304, + "in_reply_to_status_id" : 946475033907654656, + "created_at" : "2017-12-28 20:17:20 +0000", + "in_reply_to_screen_name" : "qlaas", + "in_reply_to_user_id_str" : "784702675418046464", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Klaas", + "screen_name" : "qlaas", + "indices" : [ 0, 6 ], + "id_str" : "784702675418046464", + "id" : 784702675418046464 + }, { + "name" : "Krzysztof Zab\u0142ocki", + "screen_name" : "merowing_", + "indices" : [ 7, 17 ], + "id_str" : "289246577", + "id" : 289246577 + }, { + "name" : "Marcin Krzyzanowski", + "screen_name" : "krzyzanowskim", + "indices" : [ 18, 32 ], + "id_str" : "25336778", + "id" : 25336778 + }, { + "name" : "Andreas Linde", + "screen_name" : "therealkerni", + "indices" : [ 33, 46 ], + "id_str" : "5805172", + "id" : 5805172 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "946389100617183232", + "geo" : { }, + "id_str" : "946438739852529664", + "in_reply_to_user_id" : 784702675418046464, + "text" : "@qlaas @merowing_ @krzyzanowskim @therealkerni Fresh build time is pretty underwhelming. Does using the new build system improve it?", + "id" : 946438739852529664, + "in_reply_to_status_id" : 946389100617183232, + "created_at" : "2017-12-28 17:52:34 +0000", + "in_reply_to_screen_name" : "qlaas", + "in_reply_to_user_id_str" : "784702675418046464", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Supertop", + "screen_name" : "supertopsquid", + "indices" : [ 0, 14 ], + "id_str" : "2227377990", + "id" : 2227377990 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "943928521184780288", + "geo" : { }, + "id_str" : "944082958197047297", + "in_reply_to_user_id" : 2227377990, + "text" : "@supertopsquid I\u2019ve seen that OLED black jelly lag effect too. Someone had a black avatar on Twitter and it was very obvious. Unsure if it\u2019s normal, but I\u2019ve seen it several times. Minor issue but I hope they fix it on future displays.", + "id" : 944082958197047297, + "in_reply_to_status_id" : 943928521184780288, + "created_at" : "2017-12-22 05:51:32 +0000", + "in_reply_to_screen_name" : "supertopsquid", + "in_reply_to_user_id_str" : "2227377990", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Doth", + "screen_name" : "DothTheDoth", + "indices" : [ 3, 15 ], + "id_str" : "571963220", + "id" : 571963220 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "944059389136138241", + "text" : "RT @DothTheDoth: In honor of the winter solstice I also will be cold, distant & filled with darkness.", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "943836458779111424", + "text" : "In honor of the winter solstice I also will be cold, distant & filled with darkness.", + "id" : 943836458779111424, + "created_at" : "2017-12-21 13:32:02 +0000", + "user" : { + "name" : "Doth", + "screen_name" : "DothTheDoth", + "protected" : false, + "id_str" : "571963220", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2193401698\/doth_normal.jpg", + "id" : 571963220, + "verified" : false + } + }, + "id" : 944059389136138241, + "created_at" : "2017-12-22 04:17:52 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Ryan Smith", + "screen_name" : "RyanSmithAT", + "indices" : [ 3, 15 ], + "id_str" : "2750837071", + "id" : 2750837071 + }, { + "name" : "Ian Cutress", + "screen_name" : "IanCutress", + "indices" : [ 17, 28 ], + "id_str" : "317150782", + "id" : 317150782 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "944040180536639488", + "text" : "RT @RyanSmithAT: @IanCutress The more we min-max phone performance - the more we ride the edge of what's possible in a phone-sized power a\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Ian Cutress", + "screen_name" : "IanCutress", + "indices" : [ 0, 11 ], + "id_str" : "317150782", + "id" : 317150782 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "943837695402545152", + "geo" : { }, + "id_str" : "943939148477489152", + "in_reply_to_user_id" : 317150782, + "text" : "@IanCutress The more we min-max phone performance - the more we ride the edge of what's possible in a phone-sized power and thermal envelope - the more users are going to see the physics underneath. We've significantly shrunk the buffer that hides these things in order to get better perf.", + "id" : 943939148477489152, + "in_reply_to_status_id" : 943837695402545152, + "created_at" : "2017-12-21 20:20:05 +0000", + "in_reply_to_screen_name" : "IanCutress", + "in_reply_to_user_id_str" : "317150782", + "user" : { + "name" : "Ryan Smith", + "screen_name" : "RyanSmithAT", + "protected" : false, + "id_str" : "2750837071", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/502247461147009024\/YAdIVQvl_normal.jpeg", + "id" : 2750837071, + "verified" : false + } + }, + "id" : 944040180536639488, + "created_at" : "2017-12-22 03:01:33 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "942792869193977856", + "text" : "One of the hardest things when close to shipping something is leaving the well-tested thing alone, even though you\u2019d love to cram in some more polish or features at the last minute.", + "id" : 942792869193977856, + "created_at" : "2017-12-18 16:25:10 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "JaviAir", + "screen_name" : "Javi", + "indices" : [ 0, 5 ], + "id_str" : "7213362", + "id" : 7213362 + }, { + "name" : "Matthias Tretter", + "screen_name" : "myell0w", + "indices" : [ 6, 14 ], + "id_str" : "16004268", + "id" : 16004268 + }, { + "name" : "Michael Langford", + "screen_name" : "mj_langford", + "indices" : [ 15, 27 ], + "id_str" : "136529416", + "id" : 136529416 + }, { + "name" : "Alejandro Martinez", + "screen_name" : "alexito4", + "indices" : [ 28, 37 ], + "id_str" : "14649581", + "id" : 14649581 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "941485958557343744", + "geo" : { }, + "id_str" : "941552415852994560", + "in_reply_to_user_id" : 7213362, + "text" : "@Javi @myell0w @mj_langford @alexito4 I have ended up with that once or twice! I\u2019m sure it doesn\u2019t work for any requirements, but for simple cases I\u2019m digging it.", + "id" : 941552415852994560, + "in_reply_to_status_id" : 941485958557343744, + "created_at" : "2017-12-15 06:16:03 +0000", + "in_reply_to_screen_name" : "Javi", + "in_reply_to_user_id_str" : "7213362", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 118, 141 ], + "url" : "https:\/\/t.co\/1HCP69nyoV", + "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/941441088123944960", + "display_url" : "twitter.com\/_sjs\/status\/94\u2026" + } ] + }, + "in_reply_to_status_id_str" : "941441088123944960", + "geo" : { }, + "id_str" : "941441861268279296", + "in_reply_to_user_id" : 4777951, + "text" : "Maybe I should write up an article about this. Auto-layout tip for nibs that support the X without resorting to code: https:\/\/t.co\/1HCP69nyoV", + "id" : 941441861268279296, + "in_reply_to_status_id" : 941441088123944960, + "created_at" : "2017-12-14 22:56:45 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "JaviAir", + "screen_name" : "Javi", + "indices" : [ 0, 5 ], + "id_str" : "7213362", + "id" : 7213362 + }, { + "name" : "Matthias Tretter", + "screen_name" : "myell0w", + "indices" : [ 6, 14 ], + "id_str" : "16004268", + "id" : 16004268 + }, { + "name" : "Michael Langford", + "screen_name" : "mj_langford", + "indices" : [ 15, 27 ], + "id_str" : "136529416", + "id" : 136529416 + }, { + "name" : "Alejandro Martinez", + "screen_name" : "alexito4", + "indices" : [ 28, 37 ], + "id_str" : "14649581", + "id" : 14649581 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "941339622470180865", + "geo" : { }, + "id_str" : "941441088123944960", + "in_reply_to_user_id" : 7213362, + "text" : "@Javi @myell0w @mj_langford @alexito4 Use multiple constraints with priority, so it\u2019s always >= margin from the bottom (high priority), and also always == bottom of the safe area (medium priority). This will work on any device. Collapses margin on X.\n\n(I hope I explained it clearly, it is a bit tricky.)", + "id" : 941441088123944960, + "in_reply_to_status_id" : 941339622470180865, + "created_at" : "2017-12-14 22:53:41 +0000", + "in_reply_to_screen_name" : "Javi", + "in_reply_to_user_id_str" : "7213362", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Sol", + "screen_name" : "Badgerops", + "indices" : [ 0, 10 ], + "id_str" : "74837444", + "id" : 74837444 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "940427759200776192", + "geo" : { }, + "id_str" : "940743403813269504", + "in_reply_to_user_id" : 74837444, + "text" : "@Badgerops ... oh dear \uD83E\uDD2F", + "id" : 940743403813269504, + "in_reply_to_status_id" : 940427759200776192, + "created_at" : "2017-12-13 00:41:20 +0000", + "in_reply_to_screen_name" : "Badgerops", + "in_reply_to_user_id_str" : "74837444", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Paul Haddad", + "screen_name" : "tapbot_paul", + "indices" : [ 0, 12 ], + "id_str" : "18247541", + "id" : 18247541 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "939150104795189250", + "geo" : { }, + "id_str" : "939158881518854146", + "in_reply_to_user_id" : 18247541, + "text" : "@tapbot_paul Time to use that unfollow instead. Some people are lost causes. Just give up on them and be happier.", + "id" : 939158881518854146, + "in_reply_to_status_id" : 939150104795189250, + "created_at" : "2017-12-08 15:45:00 +0000", + "in_reply_to_screen_name" : "tapbot_paul", + "in_reply_to_user_id_str" : "18247541", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Sol", + "screen_name" : "Badgerops", + "indices" : [ 0, 10 ], + "id_str" : "74837444", + "id" : 74837444 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "937350342903083009", + "geo" : { }, + "id_str" : "937350646033874944", + "in_reply_to_user_id" : 74837444, + "text" : "@Badgerops Fair enough! However you did say \u201CCome at me!\u201D :)", + "id" : 937350646033874944, + "in_reply_to_status_id" : 937350342903083009, + "created_at" : "2017-12-03 15:59:43 +0000", + "in_reply_to_screen_name" : "Badgerops", + "in_reply_to_user_id_str" : "74837444", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Sol", + "screen_name" : "Badgerops", + "indices" : [ 0, 10 ], + "id_str" : "74837444", + "id" : 74837444 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "937201983856844800", + "geo" : { }, + "id_str" : "937349627149352960", + "in_reply_to_user_id" : 74837444, + "text" : "@Badgerops This is a sad celebration of ignorance. There\u2019s no black and white. Capitalism doesn\u2019t work either. You need to come live in the grey area of reason where we have a mix of governing philosophies.\n\nEvery country needs social programs. Every person needs social programs.", + "id" : 937349627149352960, + "in_reply_to_status_id" : 937201983856844800, + "created_at" : "2017-12-03 15:55:40 +0000", + "in_reply_to_screen_name" : "Badgerops", + "in_reply_to_user_id_str" : "74837444", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2018_01.js b/public/tweets/data/js/tweets/2018_01.js new file mode 100755 index 0000000..1dc6718 --- /dev/null +++ b/public/tweets/data/js/tweets/2018_01.js @@ -0,0 +1,885 @@ +Grailbird.data.tweets_2018_01 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Slava Pestov", + "screen_name" : "slava_pestov", + "indices" : [ 0, 13 ], + "id_str" : "3258316237", + "id" : 3258316237 + }, { + "name" : "EwaM", + "screen_name" : "ematejska", + "indices" : [ 14, 24 ], + "id_str" : "824415437496610816", + "id" : 824415437496610816 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "956980409903988736", + "geo" : { }, + "id_str" : "956982991846178818", + "in_reply_to_user_id" : 3258316237, + "text" : "@slava_pestov @ematejska I\u2019m so excited about the gains! Big improvement to my daily work here. \uD83D\uDE4F\uD83C\uDFFC", + "id" : 956982991846178818, + "in_reply_to_status_id" : 956980409903988736, + "created_at" : "2018-01-26 20:11:39 +0000", + "in_reply_to_screen_name" : "slava_pestov", + "in_reply_to_user_id_str" : "3258316237", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "EwaM", + "screen_name" : "ematejska", + "indices" : [ 0, 10 ], + "id_str" : "824415437496610816", + "id" : 824415437496610816 + }, { + "name" : "Slava Pestov", + "screen_name" : "slava_pestov", + "indices" : [ 11, 24 ], + "id_str" : "3258316237", + "id" : 3258316237 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "956952639593357312", + "geo" : { }, + "id_str" : "956959708539006976", + "in_reply_to_user_id" : 824415437496610816, + "text" : "@ematejska @slava_pestov That was a debug build with no optimization, new build system.\n\nInterestingly the release build with WMO had basically no change, from 150s to 155s.\n\nMixed iOS app with 40k Swift lines and 18k ObjC. Fair number of extensions in Swift. And 2 or 3 ObjC Pods that compile in ~15s.", + "id" : 956959708539006976, + "in_reply_to_status_id" : 956952639593357312, + "created_at" : "2018-01-26 18:39:08 +0000", + "in_reply_to_screen_name" : "ematejska", + "in_reply_to_user_id_str" : "824415437496610816", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "EwaM", + "screen_name" : "ematejska", + "indices" : [ 0, 10 ], + "id_str" : "824415437496610816", + "id" : 824415437496610816 + }, { + "name" : "Slava Pestov", + "screen_name" : "slava_pestov", + "indices" : [ 11, 24 ], + "id_str" : "3258316237", + "id" : 3258316237 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "956593985241325568", + "geo" : { }, + "id_str" : "956876563584200704", + "in_reply_to_user_id" : 824415437496610816, + "text" : "@ematejska @slava_pestov Clean build of my project went from 210+ seconds down to 95s!", + "id" : 956876563584200704, + "in_reply_to_status_id" : 956593985241325568, + "created_at" : "2018-01-26 13:08:45 +0000", + "in_reply_to_screen_name" : "ematejska", + "in_reply_to_user_id_str" : "824415437496610816", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Danny Preussler", + "screen_name" : "PreusslerBerlin", + "indices" : [ 0, 16 ], + "id_str" : "2613731759", + "id" : 2613731759 + }, { + "name" : "travis jeffery", + "screen_name" : "travisjeffery", + "indices" : [ 17, 31 ], + "id_str" : "679103", + "id" : 679103 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "956650971307872256", + "geo" : { }, + "id_str" : "956653107282288641", + "in_reply_to_user_id" : 2613731759, + "text" : "@PreusslerBerlin @travisjeffery Yeah that\u2019s fair. A lot of sites aren\u2019t sensitive and don\u2019t necessarily need to do this. I agree that security is a weak argument for the practice.", + "id" : 956653107282288641, + "in_reply_to_status_id" : 956650971307872256, + "created_at" : "2018-01-25 22:20:49 +0000", + "in_reply_to_screen_name" : "PreusslerBerlin", + "in_reply_to_user_id_str" : "2613731759", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Danny Preussler", + "screen_name" : "PreusslerBerlin", + "indices" : [ 0, 16 ], + "id_str" : "2613731759", + "id" : 2613731759 + }, { + "name" : "travis jeffery", + "screen_name" : "travisjeffery", + "indices" : [ 17, 31 ], + "id_str" : "679103", + "id" : 679103 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "956640309546504192", + "geo" : { }, + "id_str" : "956648180543717376", + "in_reply_to_user_id" : 2613731759, + "text" : "@PreusslerBerlin @travisjeffery It\u2019s more about privacy than security. Should I be able to find out if a username or email exists on any website without the password? Think political sites, porn, etc. It\u2019s a privacy hole.", + "id" : 956648180543717376, + "in_reply_to_status_id" : 956640309546504192, + "created_at" : "2018-01-25 22:01:14 +0000", + "in_reply_to_screen_name" : "PreusslerBerlin", + "in_reply_to_user_id_str" : "2613731759", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "\u24BFohannes \u24BBahrenkrug", + "screen_name" : "jfahrenkrug", + "indices" : [ 0, 12 ], + "id_str" : "11559032", + "id" : 11559032 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "953807540927700992", + "geo" : { }, + "id_str" : "953819493976829952", + "in_reply_to_user_id" : 11559032, + "text" : "@jfahrenkrug It\u2019s really good!", + "id" : 953819493976829952, + "in_reply_to_status_id" : 953807540927700992, + "created_at" : "2018-01-18 02:41:03 +0000", + "in_reply_to_screen_name" : "jfahrenkrug", + "in_reply_to_user_id_str" : "11559032", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Louis D'hauwe", + "screen_name" : "LouisDhauwe", + "indices" : [ 0, 12 ], + "id_str" : "87923686", + "id" : 87923686 + }, { + "name" : "Steve Troughton-Smith", + "screen_name" : "stroughtonsmith", + "indices" : [ 13, 29 ], + "id_str" : "15267898", + "id" : 15267898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "953619143219171329", + "geo" : { }, + "id_str" : "953669667125522433", + "in_reply_to_user_id" : 87923686, + "text" : "@LouisDhauwe @stroughtonsmith @BrydgeKeyboards Unless you\u2019re imagining an iOS app \uD83D\uDE1C", + "id" : 953669667125522433, + "in_reply_to_status_id" : 953619143219171329, + "created_at" : "2018-01-17 16:45:41 +0000", + "in_reply_to_screen_name" : "LouisDhauwe", + "in_reply_to_user_id_str" : "87923686", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "James Thomson", + "screen_name" : "jamesthomson", + "indices" : [ 0, 13 ], + "id_str" : "14169916", + "id" : 14169916 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "951872225908490245", + "geo" : { }, + "id_str" : "951872765019107329", + "in_reply_to_user_id" : 14169916, + "text" : "@jamesthomson File \u2192 Project Settings... (or Workspace Settings)", + "id" : 951872765019107329, + "in_reply_to_status_id" : 951872225908490245, + "created_at" : "2018-01-12 17:45:26 +0000", + "in_reply_to_screen_name" : "jamesthomson", + "in_reply_to_user_id_str" : "14169916", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "James Thomson", + "screen_name" : "jamesthomson", + "indices" : [ 0, 13 ], + "id_str" : "14169916", + "id" : 14169916 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "951871197834293249", + "geo" : { }, + "id_str" : "951871589263466497", + "in_reply_to_user_id" : 14169916, + "text" : "@jamesthomson No problem! Be warned that there are good reasons it\u2019s not the default yet. For me it\u2019s been solid in 9.2 though.", + "id" : 951871589263466497, + "in_reply_to_status_id" : 951871197834293249, + "created_at" : "2018-01-12 17:40:46 +0000", + "in_reply_to_screen_name" : "jamesthomson", + "in_reply_to_user_id_str" : "14169916", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "James Thomson", + "screen_name" : "jamesthomson", + "indices" : [ 0, 13 ], + "id_str" : "14169916", + "id" : 14169916 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "951851308742533120", + "geo" : { }, + "id_str" : "951869869238071296", + "in_reply_to_user_id" : 14169916, + "text" : "@jamesthomson I think it helps Swift more than ObjC, but you may see an improvement with the new build system (if you\u2019re not using it already).", + "id" : 951869869238071296, + "in_reply_to_status_id" : 951851308742533120, + "created_at" : "2018-01-12 17:33:56 +0000", + "in_reply_to_screen_name" : "jamesthomson", + "in_reply_to_user_id_str" : "14169916", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Kevin Gisi", + "screen_name" : "cheerskevin", + "indices" : [ 0, 12 ], + "id_str" : "14308739", + "id" : 14308739 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "951845006213566464", + "geo" : { }, + "id_str" : "951869327224930304", + "in_reply_to_user_id" : 14308739, + "text" : "@cheerskevin My understanding is that GPS is receive-only and cannot interfere with anything so it stays on. It\u2019s surpsising but cool!", + "id" : 951869327224930304, + "in_reply_to_status_id" : 951845006213566464, + "created_at" : "2018-01-12 17:31:47 +0000", + "in_reply_to_screen_name" : "cheerskevin", + "in_reply_to_user_id_str" : "14308739", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Evadne W.", + "screen_name" : "evadne", + "indices" : [ 0, 7 ], + "id_str" : "15614100", + "id" : 15614100 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "951510480140554240", + "geo" : { }, + "id_str" : "951514351352991744", + "in_reply_to_user_id" : 15614100, + "text" : "@evadne I do! It blew my mind.", + "id" : 951514351352991744, + "in_reply_to_status_id" : 951510480140554240, + "created_at" : "2018-01-11 18:01:14 +0000", + "in_reply_to_screen_name" : "evadne", + "in_reply_to_user_id_str" : "15614100", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Stats Canada", + "screen_name" : "stats_canada", + "indices" : [ 3, 16 ], + "id_str" : "701267743", + "id" : 701267743 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "949485376799883265", + "text" : "RT @stats_canada: 79% of Canadians just breathed a sigh of relief", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "949480217608966145", + "text" : "79% of Canadians just breathed a sigh of relief", + "id" : 949480217608966145, + "created_at" : "2018-01-06 03:18:19 +0000", + "user" : { + "name" : "Stats Canada", + "screen_name" : "stats_canada", + "protected" : false, + "id_str" : "701267743", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2752781064\/decdee41e5324dfe1af9a1a1c8c9846b_normal.png", + "id" : 701267743, + "verified" : false + } + }, + "id" : 949485376799883265, + "created_at" : "2018-01-06 03:38:49 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Kira-Lynn Ferderber", + "screen_name" : "Cupcakes_n_Rap", + "indices" : [ 3, 18 ], + "id_str" : "146317151", + "id" : 146317151 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "949314825804439552", + "text" : "RT @Cupcakes_n_Rap: There's an insistence that we feel bad for small business owners, that we offer up the underpaid labour of the marginal\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003ETwitter Lite\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "948969479714889728", + "geo" : { }, + "id_str" : "948970087087853573", + "in_reply_to_user_id" : 146317151, + "text" : "There's an insistence that we feel bad for small business owners, that we offer up the underpaid labour of the marginalized to subsidize a small business owner's desire to own a company, to set his own hours, follow his passion.\nI don't care about that. Not more than fair wages.", + "id" : 948970087087853573, + "in_reply_to_status_id" : 948969479714889728, + "created_at" : "2018-01-04 17:31:14 +0000", + "in_reply_to_screen_name" : "Cupcakes_n_Rap", + "in_reply_to_user_id_str" : "146317151", + "user" : { + "name" : "Kira-Lynn Ferderber", + "screen_name" : "Cupcakes_n_Rap", + "protected" : false, + "id_str" : "146317151", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/986249395661402112\/mw_GVQWC_normal.jpg", + "id" : 146317151, + "verified" : false + } + }, + "id" : 949314825804439552, + "created_at" : "2018-01-05 16:21:06 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Kira-Lynn Ferderber", + "screen_name" : "Cupcakes_n_Rap", + "indices" : [ 3, 18 ], + "id_str" : "146317151", + "id" : 146317151 + } ], + "media" : [ ], + "hashtags" : [ { + "text" : "15andFairness", + "indices" : [ 26, 40 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "949314801640992768", + "text" : "RT @Cupcakes_n_Rap: Anti- #15andFairness ppl simultaneously tweet at me \"don't like min wage? Get a better job! Education! Bootstraps!\"\n&\n\"\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003ETwitter Lite\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ { + "text" : "15andFairness", + "indices" : [ 6, 20 ] + } ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "948942199596703745", + "geo" : { }, + "id_str" : "948969479714889728", + "in_reply_to_user_id" : 146317151, + "text" : "Anti- #15andFairness ppl simultaneously tweet at me \"don't like min wage? Get a better job! Education! Bootstraps!\"\n&\n\"The poor small businesses owner. What is he to do?\"\n... maybe he should go get one of these great jobs instead of insisting on his dream of owning a hobby store?", + "id" : 948969479714889728, + "in_reply_to_status_id" : 948942199596703745, + "created_at" : "2018-01-04 17:28:49 +0000", + "in_reply_to_screen_name" : "Cupcakes_n_Rap", + "in_reply_to_user_id_str" : "146317151", + "user" : { + "name" : "Kira-Lynn Ferderber", + "screen_name" : "Cupcakes_n_Rap", + "protected" : false, + "id_str" : "146317151", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/986249395661402112\/mw_GVQWC_normal.jpg", + "id" : 146317151, + "verified" : false + } + }, + "id" : 949314801640992768, + "created_at" : "2018-01-05 16:21:00 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Kira-Lynn Ferderber", + "screen_name" : "Cupcakes_n_Rap", + "indices" : [ 3, 18 ], + "id_str" : "146317151", + "id" : 146317151 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "949314752441868293", + "text" : "RT @Cupcakes_n_Rap: \uD83C\uDDE8\uD83C\uDDE6\nOk, there's a lot of salty randos in my mentions telling me I obviously don't understand basic economics.\nI'll expla\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003ETwitter Lite\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "948616569726398465", + "geo" : { }, + "id_str" : "948942199596703745", + "in_reply_to_user_id" : 146317151, + "text" : "\uD83C\uDDE8\uD83C\uDDE6\nOk, there's a lot of salty randos in my mentions telling me I obviously don't understand basic economics.\nI'll explain again:\nThe minimum wage increase means at most $20 per worker per 8hr shift.\nIf your profit margin is $20 per worker per day, you run a terrible business.", + "id" : 948942199596703745, + "in_reply_to_status_id" : 948616569726398465, + "created_at" : "2018-01-04 15:40:25 +0000", + "in_reply_to_screen_name" : "Cupcakes_n_Rap", + "in_reply_to_user_id_str" : "146317151", + "user" : { + "name" : "Kira-Lynn Ferderber", + "screen_name" : "Cupcakes_n_Rap", + "protected" : false, + "id_str" : "146317151", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/986249395661402112\/mw_GVQWC_normal.jpg", + "id" : 146317151, + "verified" : false + } + }, + "id" : 949314752441868293, + "created_at" : "2018-01-05 16:20:49 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Alan", + "screen_name" : "alanzeino", + "indices" : [ 0, 10 ], + "id_str" : "39398109", + "id" : 39398109 + }, { + "name" : "Robert j Chatfield", + "screen_name" : "rjchatfield", + "indices" : [ 11, 23 ], + "id_str" : "21462293", + "id" : 21462293 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "949050635512463360", + "geo" : { }, + "id_str" : "949050797521645568", + "in_reply_to_user_id" : 39398109, + "text" : "@alanzeino @rjchatfield Good to know. Thanks!", + "id" : 949050797521645568, + "in_reply_to_status_id" : 949050635512463360, + "created_at" : "2018-01-04 22:51:57 +0000", + "in_reply_to_screen_name" : "alanzeino", + "in_reply_to_user_id_str" : "39398109", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dan Mullineux", + "screen_name" : "danmux", + "indices" : [ 0, 7 ], + "id_str" : "19316116", + "id" : 19316116 + }, { + "name" : "Tim Bray", + "screen_name" : "timbray", + "indices" : [ 8, 16 ], + "id_str" : "1235521", + "id" : 1235521 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "948862004130918403", + "geo" : { }, + "id_str" : "948952310029328384", + "in_reply_to_user_id" : 19316116, + "text" : "@danmux @timbray Many of us are here because of an insatiable curiosity about how technology works.", + "id" : 948952310029328384, + "in_reply_to_status_id" : 948862004130918403, + "created_at" : "2018-01-04 16:20:36 +0000", + "in_reply_to_screen_name" : "danmux", + "in_reply_to_user_id_str" : "19316116", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Alan", + "screen_name" : "alanzeino", + "indices" : [ 0, 10 ], + "id_str" : "39398109", + "id" : 39398109 + }, { + "name" : "Robert j Chatfield", + "screen_name" : "rjchatfield", + "indices" : [ 11, 23 ], + "id_str" : "21462293", + "id" : 21462293 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "948626095099670528", + "geo" : { }, + "id_str" : "948818894151561216", + "in_reply_to_user_id" : 39398109, + "text" : "@alanzeino @rjchatfield New build system? WMO?", + "id" : 948818894151561216, + "in_reply_to_status_id" : 948626095099670528, + "created_at" : "2018-01-04 07:30:27 +0000", + "in_reply_to_screen_name" : "alanzeino", + "in_reply_to_user_id_str" : "39398109", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Tuomas Artman", + "screen_name" : "artman", + "indices" : [ 0, 7 ], + "id_str" : "1855381", + "id" : 1855381 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "948634197576396800", + "geo" : { }, + "id_str" : "948816157758308352", + "in_reply_to_user_id" : 1855381, + "text" : "@artman Thank you! \uD83D\uDE4F\uD83C\uDFFC", + "id" : 948816157758308352, + "in_reply_to_status_id" : 948634197576396800, + "created_at" : "2018-01-04 07:19:34 +0000", + "in_reply_to_screen_name" : "artman", + "in_reply_to_user_id_str" : "1855381", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Tuomas Artman", + "screen_name" : "artman", + "indices" : [ 0, 7 ], + "id_str" : "1855381", + "id" : 1855381 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 18, 41 ], + "url" : "https:\/\/t.co\/y4YemlrCaJ", + "expanded_url" : "https:\/\/twitter.com\/tgaul\/status\/948577918535401472", + "display_url" : "twitter.com\/tgaul\/status\/9\u2026" + } ] + }, + "in_reply_to_status_id_str" : "948584641786556416", + "geo" : { }, + "id_str" : "948588780960694272", + "in_reply_to_user_id" : 4777951, + "text" : "@artman and this: https:\/\/t.co\/y4YemlrCaJ", + "id" : 948588780960694272, + "in_reply_to_status_id" : 948584641786556416, + "created_at" : "2018-01-03 16:16:03 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Tuomas Artman", + "screen_name" : "artman", + "indices" : [ 0, 7 ], + "id_str" : "1855381", + "id" : 1855381 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 102, 125 ], + "url" : "https:\/\/t.co\/JYuXxWHoN7", + "expanded_url" : "https:\/\/twitter.com\/qlaas\/status\/946479173798957056", + "display_url" : "twitter.com\/qlaas\/status\/9\u2026" + } ] + }, + "in_reply_to_status_id_str" : "948315697746100224", + "geo" : { }, + "id_str" : "948584641786556416", + "in_reply_to_user_id" : 1855381, + "text" : "@artman Please share more details. How many files? 2016 MBP is close to my 2014 5k iMac in perf, and: https:\/\/t.co\/JYuXxWHoN7", + "id" : 948584641786556416, + "in_reply_to_status_id" : 948315697746100224, + "created_at" : "2018-01-03 15:59:37 +0000", + "in_reply_to_screen_name" : "artman", + "in_reply_to_user_id_str" : "1855381", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2018_02.js b/public/tweets/data/js/tweets/2018_02.js new file mode 100755 index 0000000..18e9e92 --- /dev/null +++ b/public/tweets/data/js/tweets/2018_02.js @@ -0,0 +1,379 @@ +Grailbird.data.tweets_2018_02 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Will Strafach", + "screen_name" : "chronic", + "indices" : [ 3, 11 ], + "id_str" : "86315276", + "id" : 86315276 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "968367541893713920", + "text" : "RT @chronic: I am most curious about this one. iOS apps are generally not supposed to do much in the background, yet the packet tunnel prov\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 269, 292 ], + "url" : "https:\/\/t.co\/eJfuD1rkEu", + "expanded_url" : "https:\/\/twitter.com\/chronic\/status\/968255384401203200", + "display_url" : "twitter.com\/chronic\/status\u2026" + } ] + }, + "geo" : { }, + "id_str" : "968256765744775168", + "text" : "I am most curious about this one. iOS apps are generally not supposed to do much in the background, yet the packet tunnel provider creates a pretty big loophole in this restriction. I am surprised Apple is OK with it being utilized to perform uploads of tracking data. https:\/\/t.co\/eJfuD1rkEu", + "id" : 968256765744775168, + "created_at" : "2018-02-26 22:49:36 +0000", + "user" : { + "name" : "Will Strafach", + "screen_name" : "chronic", + "protected" : false, + "id_str" : "86315276", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000791789535\/2245bcbc880d6f21265bd912b0d15500_normal.jpeg", + "id" : 86315276, + "verified" : true + } + }, + "id" : 968367541893713920, + "created_at" : "2018-02-27 06:09:48 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\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" : "965301484144377856", + "geo" : { }, + "id_str" : "965318111745400832", + "in_reply_to_user_id" : 894911, + "text" : "@JimRoepcke That\u2019s some cartoon luck right there. Hope it\u2019s actually all ok!", + "id" : 965318111745400832, + "in_reply_to_status_id" : 965301484144377856, + "created_at" : "2018-02-18 20:12:27 +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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Jessica Rose", + "screen_name" : "jesslynnrose", + "indices" : [ 0, 13 ], + "id_str" : "1530096708", + "id" : 1530096708 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "964449981070536705", + "geo" : { }, + "id_str" : "964539615980945408", + "in_reply_to_user_id" : 1530096708, + "text" : "@jesslynnrose Writing scripts for pirch and mIRC chat clients in the mid 90s.", + "id" : 964539615980945408, + "in_reply_to_status_id" : 964449981070536705, + "created_at" : "2018-02-16 16:38:59 +0000", + "in_reply_to_screen_name" : "jesslynnrose", + "in_reply_to_user_id_str" : "1530096708", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 256, 279 ], + "url" : "https:\/\/t.co\/q4vg46At47", + "expanded_url" : "https:\/\/twitter.com\/KrauseFx\/status\/964169059204870144", + "display_url" : "twitter.com\/KrauseFx\/statu\u2026" + } ] + }, + "geo" : { }, + "id_str" : "964179685545467904", + "text" : "Even if you\u2019re using open source libraries and the connection is encrypted end-to-end you could be attacked if you\u2019re not auditing the code (and let\u2019s be honest, most of us are not and probably don\u2019t have time to).\n\nDon\u2019t take on new dependencies lightly. https:\/\/t.co\/q4vg46At47", + "id" : 964179685545467904, + "created_at" : "2018-02-15 16:48:45 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Jason Terhorst", + "screen_name" : "jterhorst", + "indices" : [ 0, 10 ], + "id_str" : "856731", + "id" : 856731 + }, { + "name" : "Jeff Atwood", + "screen_name" : "codinghorror", + "indices" : [ 11, 24 ], + "id_str" : "5637652", + "id" : 5637652 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 57, 80 ], + "url" : "https:\/\/t.co\/0CUjKlKfh0", + "expanded_url" : "http:\/\/facebook.com", + "display_url" : "facebook.com" + }, { + "indices" : [ 82, 105 ], + "url" : "https:\/\/t.co\/O2anxXxeh1", + "expanded_url" : "https:\/\/gkoberger.github.io\/stacksort\/", + "display_url" : "gkoberger.github.io\/stacksort\/" + } ] + }, + "in_reply_to_status_id_str" : "963908703064920064", + "geo" : { }, + "id_str" : "963942726214418432", + "in_reply_to_user_id" : 856731, + "text" : "@jterhorst @codinghorror Maybe someone used stacksort on https:\/\/t.co\/0CUjKlKfh0\n\nhttps:\/\/t.co\/O2anxXxeh1", + "id" : 963942726214418432, + "in_reply_to_status_id" : 963908703064920064, + "created_at" : "2018-02-15 01:07:09 +0000", + "in_reply_to_screen_name" : "jterhorst", + "in_reply_to_user_id_str" : "856731", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Benjamin Borowski", + "screen_name" : "typeoneerror", + "indices" : [ 0, 13 ], + "id_str" : "11973362", + "id" : 11973362 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "963873836050497536", + "geo" : { }, + "id_str" : "963879956530024449", + "in_reply_to_user_id" : 11973362, + "text" : "@typeoneerror lol! Perhaps only simple once it\u2019s been explained. I should write a short article on auto-layout tricks.", + "id" : 963879956530024449, + "in_reply_to_status_id" : 963873836050497536, + "created_at" : "2018-02-14 20:57:44 +0000", + "in_reply_to_screen_name" : "typeoneerror", + "in_reply_to_user_id_str" : "11973362", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/963855862295969792\/photo\/1", + "indices" : [ 75, 98 ], + "url" : "https:\/\/t.co\/DpS59moflQ", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DWBNy2hVoAAOSrc.jpg", + "id_str" : "963855856281427968", + "id" : 963855856281427968, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DWBNy2hVoAAOSrc.jpg", + "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 934, + "resize" : "fit", + "w" : 1642 + }, { + "h" : 934, + "resize" : "fit", + "w" : 1642 + }, { + "h" : 683, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 387, + "resize" : "fit", + "w" : 680 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/DpS59moflQ" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "963852828576923649", + "geo" : { }, + "id_str" : "963855862295969792", + "in_reply_to_user_id" : 4777951, + "text" : "The solution is pretty simple too, it\u2019s just knowing how to set it all up. https:\/\/t.co\/DpS59moflQ", + "id" : 963855862295969792, + "in_reply_to_status_id" : 963852828576923649, + "created_at" : "2018-02-14 19:21:59 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "963852828576923649", + "text" : "4 years later I\u2019m still learning auto-layout. Today I figured out how to get a scroll view to hug a multiline label, and have the scroll view expand to fill the available height before scrolling.\n\nAnd the solution is way better than just reverting to manual layout (to me anyway).", + "id" : 963852828576923649, + "created_at" : "2018-02-14 19:09:56 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "\uD83D\uDC2F ece \uD83D\uDC2F", + "screen_name" : "ecetweets", + "indices" : [ 0, 10 ], + "id_str" : "22961921", + "id" : 22961921 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "963118798474752000", + "geo" : { }, + "id_str" : "963118945052995585", + "in_reply_to_user_id" : 22961921, + "text" : "@ecetweets Yowzers!", + "id" : 963118945052995585, + "in_reply_to_status_id" : 963118798474752000, + "created_at" : "2018-02-12 18:33:45 +0000", + "in_reply_to_screen_name" : "ecetweets", + "in_reply_to_user_id_str" : "22961921", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "\uD83D\uDC2F ece \uD83D\uDC2F", + "screen_name" : "ecetweets", + "indices" : [ 0, 10 ], + "id_str" : "22961921", + "id" : 22961921 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "963099381112233985", + "geo" : { }, + "id_str" : "963112562127548416", + "in_reply_to_user_id" : 22961921, + "text" : "@ecetweets I haven\u2019t used one of these personally but at that price you might want to check out waterproof cases for a camera you already have. REI or B&H probably carry them!", + "id" : 963112562127548416, + "in_reply_to_status_id" : 963099381112233985, + "created_at" : "2018-02-12 18:08:23 +0000", + "in_reply_to_screen_name" : "ecetweets", + "in_reply_to_user_id_str" : "22961921", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2018_03.js b/public/tweets/data/js/tweets/2018_03.js new file mode 100755 index 0000000..d673475 --- /dev/null +++ b/public/tweets/data/js/tweets/2018_03.js @@ -0,0 +1,517 @@ +Grailbird.data.tweets_2018_03 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter Cooper", + "screen_name" : "peterc", + "indices" : [ 0, 7 ], + "id_str" : "33493", + "id" : 33493 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "979291880449077248", + "geo" : { }, + "id_str" : "979375105695346688", + "in_reply_to_user_id" : 33493, + "text" : "@peterc You could always spend a small fortune for a black version of Apple\u2019s small keyboard from Colorware.", + "id" : 979375105695346688, + "in_reply_to_status_id" : 979291880449077248, + "created_at" : "2018-03-29 15:09:55 +0000", + "in_reply_to_screen_name" : "peterc", + "in_reply_to_user_id_str" : "33493", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "jbr", + "screen_name" : "jacobrothstein", + "indices" : [ 0, 15 ], + "id_str" : "27302287", + "id" : 27302287 + }, { + "name" : "Luc Perkins", + "screen_name" : "lucperkins", + "indices" : [ 16, 27 ], + "id_str" : "68474641", + "id" : 68474641 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "979045721897762816", + "geo" : { }, + "id_str" : "979156927757340672", + "in_reply_to_user_id" : 27302287, + "text" : "@jacobrothstein @lucperkins Back up and backup. Good luck with that. It\u2019s like trying to get people to stop mixing up homophones.\n\nAlso on a slight tangent there\u2019s \u201Cbeg the question\u201D. An old favourite.", + "id" : 979156927757340672, + "in_reply_to_status_id" : 979045721897762816, + "created_at" : "2018-03-29 00:42:58 +0000", + "in_reply_to_screen_name" : "jacobrothstein", + "in_reply_to_user_id_str" : "27302287", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003ETwitter Lite\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Josh Wingrove", + "screen_name" : "josh_wingrove", + "indices" : [ 3, 17 ], + "id_str" : "164075542", + "id" : 164075542 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "975970837676228613", + "text" : "RT @josh_wingrove: Canada released a report on legal weed today. The authors needed a way to compare the maximum size of a licensed \"micro-\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/josh_wingrove\/status\/975785933005099009\/photo\/1", + "indices" : [ 176, 199 ], + "url" : "https:\/\/t.co\/6LXInrOzuX", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DYqvv8CUQAQRZyh.jpg", + "id_str" : "975785507383689220", + "id" : 975785507383689220, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DYqvv8CUQAQRZyh.jpg", + "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 343, + "resize" : "fit", + "w" : 544 + }, { + "h" : 343, + "resize" : "fit", + "w" : 544 + }, { + "h" : 343, + "resize" : "fit", + "w" : 544 + }, { + "h" : 343, + "resize" : "fit", + "w" : 544 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/6LXInrOzuX" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "975785933005099009", + "text" : "Canada released a report on legal weed today. The authors needed a way to compare the maximum size of a licensed \"micro-cultivation\" area. \n\nAnd lo, in all its Canadian glory: https:\/\/t.co\/6LXInrOzuX", + "id" : 975785933005099009, + "created_at" : "2018-03-19 17:27:50 +0000", + "user" : { + "name" : "Josh Wingrove", + "screen_name" : "josh_wingrove", + "protected" : false, + "id_str" : "164075542", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/955209380894519296\/tj563YJl_normal.jpg", + "id" : 164075542, + "verified" : true + } + }, + "id" : 975970837676228613, + "created_at" : "2018-03-20 05:42:35 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 10, 33 ], + "url" : "https:\/\/t.co\/PBCC5ywvX9", + "expanded_url" : "https:\/\/twitter.com\/jeremyckahn\/status\/968845690175655936", + "display_url" : "twitter.com\/jeremyckahn\/st\u2026" + } ] + }, + "geo" : { }, + "id_str" : "973953715538345984", + "text" : "We drink. https:\/\/t.co\/PBCC5ywvX9", + "id" : 973953715538345984, + "created_at" : "2018-03-14 16:07:15 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "snarfmason", + "screen_name" : "snarfmason", + "indices" : [ 3, 14 ], + "id_str" : "108814849", + "id" : 108814849 + }, { + "name" : "Matthew Lyon", + "screen_name" : "mattly", + "indices" : [ 24, 31 ], + "id_str" : "1768041", + "id" : 1768041 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "973780157080260608", + "text" : "RT @snarfmason: Reading @mattly on timezones was a nice reminder that time zones exist for a reason, concepts of time like \"noon\" are meani\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Matthew Lyon", + "screen_name" : "mattly", + "indices" : [ 8, 15 ], + "id_str" : "1768041", + "id" : 1768041 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 181, 204 ], + "url" : "https:\/\/t.co\/EAJwCLrJ3S", + "expanded_url" : "https:\/\/lyonheart.us\/articles\/understanding-time-zones\/", + "display_url" : "lyonheart.us\/articles\/under\u2026" + } ] + }, + "geo" : { }, + "id_str" : "973612127054213120", + "text" : "Reading @mattly on timezones was a nice reminder that time zones exist for a reason, concepts of time like \"noon\" are meaningful to people beyond being number on a clock. Read it.\n\nhttps:\/\/t.co\/EAJwCLrJ3S", + "id" : 973612127054213120, + "created_at" : "2018-03-13 17:29:54 +0000", + "user" : { + "name" : "snarfmason", + "screen_name" : "snarfmason", + "protected" : false, + "id_str" : "108814849", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/593062358760624128\/kndBP0F3_normal.jpg", + "id" : 108814849, + "verified" : false + } + }, + "id" : 973780157080260608, + "created_at" : "2018-03-14 04:37:36 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 136, 159 ], + "url" : "https:\/\/t.co\/zcQsSpeIv6", + "expanded_url" : "https:\/\/twitter.com\/chriseidhof\/status\/972468057636573184", + "display_url" : "twitter.com\/chriseidhof\/st\u2026" + } ] + }, + "geo" : { }, + "id_str" : "972500605649367040", + "text" : "We have a choice about how to react to things. A lot of the time our reactions only make things worse. Pay attention to your reactions. https:\/\/t.co\/zcQsSpeIv6", + "id" : 972500605649367040, + "created_at" : "2018-03-10 15:53:07 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Will Strafach", + "screen_name" : "chronic", + "indices" : [ 3, 11 ], + "id_str" : "86315276", + "id" : 86315276 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "971202944912666624", + "text" : "RT @chronic: random fun fact: I believe some of the binaries were code signed by Apple employee dev certs in that first build. one was a gu\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 165, 188 ], + "url" : "https:\/\/t.co\/Vv0eNLI51D", + "expanded_url" : "http:\/\/mac.com", + "display_url" : "mac.com" + } ] + }, + "in_reply_to_status_id_str" : "971157315566161920", + "geo" : { }, + "id_str" : "971158111758241794", + "in_reply_to_user_id" : 86315276, + "text" : "random fun fact: I believe some of the binaries were code signed by Apple employee dev certs in that first build. one was a guy named Eric something. I saw it was a https:\/\/t.co\/Vv0eNLI51D address so added him on AIM and he blocked me.", + "id" : 971158111758241794, + "in_reply_to_status_id" : 971157315566161920, + "created_at" : "2018-03-06 22:58:31 +0000", + "in_reply_to_screen_name" : "chronic", + "in_reply_to_user_id_str" : "86315276", + "user" : { + "name" : "Will Strafach", + "screen_name" : "chronic", + "protected" : false, + "id_str" : "86315276", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000791789535\/2245bcbc880d6f21265bd912b0d15500_normal.jpeg", + "id" : 86315276, + "verified" : true + } + }, + "id" : 971202944912666624, + "created_at" : "2018-03-07 01:56:40 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Patrick McCarron", + "screen_name" : "McCarron", + "indices" : [ 0, 9 ], + "id_str" : "770391", + "id" : 770391 + }, { + "name" : "James Thomson", + "screen_name" : "jamesthomson", + "indices" : [ 10, 23 ], + "id_str" : "14169916", + "id" : 14169916 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "971059034198593537", + "geo" : { }, + "id_str" : "971060334214627328", + "in_reply_to_user_id" : 770391, + "text" : "@McCarron @jamesthomson What\u2019s the uncompressed size? Xcode 9 must be at least 4x the size at almost 10 GB these days.", + "id" : 971060334214627328, + "in_reply_to_status_id" : 971059034198593537, + "created_at" : "2018-03-06 16:29:59 +0000", + "in_reply_to_screen_name" : "McCarron", + "in_reply_to_user_id_str" : "770391", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Ole Begemann", + "screen_name" : "olebegemann", + "indices" : [ 0, 12 ], + "id_str" : "231756759", + "id" : 231756759 + }, { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 13, 22 ], + "id_str" : "25401953", + "id" : 25401953 + }, { + "name" : "S\u00E9bastien M.", + "screen_name" : "sebastienmichoy", + "indices" : [ 23, 39 ], + "id_str" : "268163520", + "id" : 268163520 + }, { + "name" : "PSPDFKit", + "screen_name" : "PSPDFKit", + "indices" : [ 40, 49 ], + "id_str" : "731127722", + "id" : 731127722 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "970045215661805569", + "geo" : { }, + "id_str" : "970058679914455040", + "in_reply_to_user_id" : 231756759, + "text" : "@olebegemann @steipete @sebastienmichoy @PSPDFKit Treat people like smart adults. Give them the info and let them decide. This trend of withholding dates is so annoying. Let\u2019s hope it\u2019s a fad.\n\nPeople have been dating writing for centuries. Knowing when things were written is relevant.", + "id" : 970058679914455040, + "in_reply_to_status_id" : 970045215661805569, + "created_at" : "2018-03-03 22:09:46 +0000", + "in_reply_to_screen_name" : "olebegemann", + "in_reply_to_user_id_str" : "231756759", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Guilherme Rambo", + "screen_name" : "_inside", + "indices" : [ 3, 11 ], + "id_str" : "8307912", + "id" : 8307912 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 94, 117 ], + "url" : "https:\/\/t.co\/Dpv2dfGCWk", + "expanded_url" : "https:\/\/medium.com\/@guilhermerambo\/how-i-discovered-instagrams-upcoming-video-calling-feature-on-ios-934d7085da57", + "display_url" : "medium.com\/@guilhermeramb\u2026" + } ] + }, + "geo" : { }, + "id_str" : "969728586318995456", + "text" : "RT @_inside: \uD83E\uDD13 post alert: How I discovered Instagram's upcoming video calling feature on\u00A0iOS https:\/\/t.co\/Dpv2dfGCWk", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 81, 104 ], + "url" : "https:\/\/t.co\/Dpv2dfGCWk", + "expanded_url" : "https:\/\/medium.com\/@guilhermerambo\/how-i-discovered-instagrams-upcoming-video-calling-feature-on-ios-934d7085da57", + "display_url" : "medium.com\/@guilhermeramb\u2026" + } ] + }, + "geo" : { }, + "id_str" : "969617015177662464", + "text" : "\uD83E\uDD13 post alert: How I discovered Instagram's upcoming video calling feature on\u00A0iOS https:\/\/t.co\/Dpv2dfGCWk", + "id" : 969617015177662464, + "created_at" : "2018-03-02 16:54:45 +0000", + "user" : { + "name" : "Guilherme Rambo", + "screen_name" : "_inside", + "protected" : false, + "id_str" : "8307912", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/932637040474316801\/mhtK0Y2u_normal.jpg", + "id" : 8307912, + "verified" : false + } + }, + "id" : 969728586318995456, + "created_at" : "2018-03-03 00:18:06 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 133, 156 ], + "url" : "https:\/\/t.co\/IfQnuu4ERL", + "expanded_url" : "https:\/\/twitter.com\/dmartincy\/status\/969210115806171141", + "display_url" : "twitter.com\/dmartincy\/stat\u2026" + } ] + }, + "geo" : { }, + "id_str" : "969268231386021888", + "text" : "I don\u2019t think I have a use for this right now but what a great idea and execution. Regexes on permissions is a cool and nerdy touch. https:\/\/t.co\/IfQnuu4ERL", + "id" : 969268231386021888, + "created_at" : "2018-03-01 17:48:49 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2018_04.js b/public/tweets/data/js/tweets/2018_04.js new file mode 100755 index 0000000..9afd80c --- /dev/null +++ b/public/tweets/data/js/tweets/2018_04.js @@ -0,0 +1,292 @@ +Grailbird.data.tweets_2018_04 = +[ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "J.P. Wing", + "screen_name" : "ThatJPWing", + "indices" : [ 0, 11 ], + "id_str" : "9083342", + "id" : 9083342 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "983451666300243971", + "geo" : { }, + "id_str" : "983723302945370114", + "in_reply_to_user_id" : 9083342, + "text" : "@ThatJPWing We\u2019re discussing this at my place next week. I\u2019ll shoot you an invite.", + "id" : 983723302945370114, + "in_reply_to_status_id" : 983451666300243971, + "created_at" : "2018-04-10 15:08:06 +0000", + "in_reply_to_screen_name" : "ThatJPWing", + "in_reply_to_user_id_str" : "9083342", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Michael Hansen", + "screen_name" : "MH3129", + "indices" : [ 3, 10 ], + "id_str" : "15738612", + "id" : 15738612 + }, { + "name" : "Twitter", + "screen_name" : "Twitter", + "indices" : [ 13, 21 ], + "id_str" : "783214", + "id" : 783214 + }, { + "name" : "Twitterrific", + "screen_name" : "Twitterrific", + "indices" : [ 70, 83 ], + "id_str" : "643443", + "id" : 643443 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "982511683561111552", + "text" : "RT @MH3129: .@Twitter, I am blind and I rely on third-party apps like @Twitterrific and OpenTween because your website and iOS app are not\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/sourceforge.jp\/projects\/opentween\/\" rel=\"nofollow\"\u003EOpenTween\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Twitter", + "screen_name" : "Twitter", + "indices" : [ 1, 9 ], + "id_str" : "783214", + "id" : 783214 + }, { + "name" : "Twitterrific", + "screen_name" : "Twitterrific", + "indices" : [ 58, 71 ], + "id_str" : "643443", + "id" : 643443 + }, { + "name" : "jack", + "screen_name" : "jack", + "indices" : [ 225, 230 ], + "id_str" : "12", + "id" : 12 + }, { + "name" : "Twitter Dev", + "screen_name" : "TwitterDev", + "indices" : [ 231, 242 ], + "id_str" : "2244994945", + "id" : 2244994945 + } ], + "media" : [ ], + "hashtags" : [ { + "text" : "BreakingMyTwitter", + "indices" : [ 243, 261 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "982336815553241088", + "text" : ".@Twitter, I am blind and I rely on third-party apps like @Twitterrific and OpenTween because your website and iOS app are not fully accessible. Disabling core functionality of third-party apps would shut users like me out. @Jack @TwitterDev #BreakingMyTwitter", + "id" : 982336815553241088, + "created_at" : "2018-04-06 19:18:42 +0000", + "user" : { + "name" : "Michael Hansen", + "screen_name" : "MH3129", + "protected" : false, + "id_str" : "15738612", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/640675029995421696\/oKOIDcuo_normal.jpg", + "id" : 15738612, + "verified" : false + } + }, + "id" : 982511683561111552, + "created_at" : "2018-04-07 06:53:34 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Craig Hockenberry", + "screen_name" : "chockenberry", + "indices" : [ 3, 16 ], + "id_str" : "36183", + "id" : 36183 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 102, 125 ], + "url" : "https:\/\/t.co\/W1C21QSnZW", + "expanded_url" : "http:\/\/apps-of-a-feather.com", + "display_url" : "apps-of-a-feather.com" + } ] + }, + "geo" : { }, + "id_str" : "982294566320525312", + "text" : "RT @chockenberry: If you love your third-party Twitter app, I\u2019ve got some really shitty news for you: https:\/\/t.co\/W1C21QSnZW \n\n#BreakingMy\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ { + "text" : "BreakingMyTwitter", + "indices" : [ 110, 128 ] + } ], + "urls" : [ { + "indices" : [ 84, 107 ], + "url" : "https:\/\/t.co\/W1C21QSnZW", + "expanded_url" : "http:\/\/apps-of-a-feather.com", + "display_url" : "apps-of-a-feather.com" + } ] + }, + "geo" : { }, + "id_str" : "982285605932482560", + "text" : "If you love your third-party Twitter app, I\u2019ve got some really shitty news for you: https:\/\/t.co\/W1C21QSnZW \n\n#BreakingMyTwitter", + "id" : 982285605932482560, + "created_at" : "2018-04-06 15:55:13 +0000", + "user" : { + "name" : "Craig Hockenberry", + "screen_name" : "chockenberry", + "protected" : false, + "id_str" : "36183", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925763991820836864\/nmUFyJez_normal.jpg", + "id" : 36183, + "verified" : false + } + }, + "id" : 982294566320525312, + "created_at" : "2018-04-06 16:30:49 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Twitter Dev", + "screen_name" : "TwitterDev", + "indices" : [ 122, 133 ], + "id_str" : "2244994945", + "id" : 2244994945 + } ], + "media" : [ ], + "hashtags" : [ { + "text" : "BreakingMyTwitter", + "indices" : [ 203, 221 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "982294426306228224", + "text" : "Without 3rd party apps I don\u2019t think I\u2019d really use Twitter anymore. I read tweets in chronological order, not backwards. @TwitterDev: please consider supporting the apps that made you what you are now. #BreakingMyTwitter", + "id" : 982294426306228224, + "created_at" : "2018-04-06 16:30:16 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Nick Lockwood", + "screen_name" : "nicklockwood", + "indices" : [ 0, 13 ], + "id_str" : "22920215", + "id" : 22920215 + }, { + "name" : "Gurpartap Singh", + "screen_name" : "Gurpartap", + "indices" : [ 14, 24 ], + "id_str" : "14830193", + "id" : 14830193 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "981957929791344641", + "geo" : { }, + "id_str" : "982260566520578048", + "in_reply_to_user_id" : 22920215, + "text" : "@nicklockwood @Gurpartap Pretty sure that proposal came from the community, not Apple.", + "id" : 982260566520578048, + "in_reply_to_status_id" : 981957929791344641, + "created_at" : "2018-04-06 14:15:43 +0000", + "in_reply_to_screen_name" : "nicklockwood", + "in_reply_to_user_id_str" : "22920215", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "screen_name" : "macatbook", + "indices" : [ 0, 10 ], + "id_str" : "22406953", + "id" : 22406953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "981226271739990016", + "geo" : { }, + "id_str" : "981325823293603840", + "in_reply_to_user_id" : 22406953, + "text" : "@macatbook They can hold your Aeron too if you\u2019re going to a LAN party.", + "id" : 981325823293603840, + "in_reply_to_status_id" : 981226271739990016, + "created_at" : "2018-04-04 00:21:23 +0000", + "in_reply_to_screen_name" : "macatbook", + "in_reply_to_user_id_str" : "22406953", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/user_details.js b/public/tweets/data/js/user_details.js index 3346e45..25848c9 100755 --- a/public/tweets/data/js/user_details.js +++ b/public/tweets/data/js/user_details.js @@ -2,7 +2,7 @@ var user_details = { "screen_name" : "_sjs", "location" : "Victoria, BC", "full_name" : "Sami Samhuri", - "bio" : "I make computers do things, from servers to phones and back. Mainly with Ruby, JavaScript, Swift, and Objective-C.\n\nProfessional typo spotter.", + "bio" : "I make computers do things, from servers to phones and back. Mainly with Ruby, Swift, and Objective-C.\n\nProfessional typo spotter.", "id" : "4777951", "created_at" : "2007-04-15 17:06:10 +0000" } \ No newline at end of file diff --git a/public/tweets/lib/twt/twt.all.min.js b/public/tweets/lib/twt/twt.all.min.js index ce1888d..b9d26c1 100755 --- a/public/tweets/lib/twt/twt.all.min.js +++ b/public/tweets/lib/twt/twt.all.min.js @@ -29,4 +29,4 @@ * copyright Dustin Diaz & Jacob Thornton 2011 * MIT License */ -;!function(name,definition){typeof module!="undefined"?module.exports=definition():typeof define=="function"&&typeof define.amd=="object"?define(definition):this[name]=definition()}("qwery",function(){function cache(){this.c={}}function flatten(ar){r=[];for(i=0,l=ar.length;i])\s*/g,splitters=/[\s\>\+\~]/,splittersMore=/(?![\s\w\-\/\?\&\=\:\.\(\)\!,@#%<>\{\}\$\*\^'"]*\]|[\s\w\+\-]*\))/,specialChars=/([.*+?\^=!:${}()|\[\]\/\\])/g,simple=/^([a-z0-9]+)?(?:([\.\#]+[\w\-\.#]+)?)/,attr=/\[([\w\-]+)(?:([\|\^\$\*\~]?\=)['"]?([ \w\-\/\?\&\=\:\.\(\)\!,@#%<>\{\}\$\*\^]+)["']?)?\]/,pseudo=/:([\w\-]+)(\(['"]?([\s\w\+\-]+)['"]?\))?/,dividers=new RegExp("("+splitters.source+")"+splittersMore.source,"g"),tokenizr=new RegExp(splitters.source+splittersMore.source),chunker=new RegExp(simple.source+"("+attr.source+")?"+"("+pseudo.source+")?"),walker={" ":function(node){return node&&node!==html&&node.parentNode},">":function(node,contestant){return node&&node.parentNode==contestant.parentNode&&node.parentNode},"~":function(node){return node&&node.previousSibling},"+":function(node,contestant,p1,p2){if(!node)return!1;p1=previous(node);p2=previous(contestant);return p1&&p2&&p1==p2&&p1}};cache.prototype={g:function(k){return this.c[k]||undefined},s:function(k,v){this.c[k]=v;return v}};var classCache=new cache,cleanCache=new cache,attrCache=new cache,tokenCache=new cache,isAncestor="compareDocumentPosition"in html?function(element,container){return(container.compareDocumentPosition(element)&16)==16}:"contains"in html?function(element,container){container=container==doc||container==window?html:container;return container!==element&&container.contains(element)}:function(element,container){while(element=element.parentNode)if(element===container)return 1;return 0},supportsCSS3=function(){if(!doc.querySelector||!doc.querySelectorAll)return!1;try{return doc.querySelectorAll(":nth-of-type(1)").length}catch(e){return!1}}(),select=supportsCSS3?function(selector,root){return doc.getElementsByClassName&&(m=selector.match(classOnly))?flatten(root.getElementsByClassName(m[1])):flatten(root.querySelectorAll(selector))}:function(selector,root){selector=selector.replace(normalizr,"$1");var result=[],element,collection,collections=[],i;if(m=selector.match(tagAndOrClass)){items=root.getElementsByTagName(m[1]||"*");r=classCache.g(m[2])||classCache.s(m[2],new RegExp("(^|\\s+)"+m[2]+"(\\s+|$)"));for(i=0,l=items.length,j=0;i]+)\s*/.exec(node)[1],el=(root||doc).createElement(nodeMap[tag]||"div"),els=[];el.innerHTML=node;var nodes=el.childNodes;el=el.firstChild;el.nodeType==1&&els.push(el);while(el=el.nextSibling)el.nodeType==1&&els.push(el);return els}var q=require("qwery"),table="table",nodeMap={thead:table,tbody:table,tfoot:table,tr:"tbody",th:"tr",td:"tr",fieldset:"form",option:"select"};$._select=function(s,r){return/^\s*1?"timeline":"tweet"].apply(this,arguments)};twt.settings={product:"twt",linkTarget:"_blank"};var Hogan=require("hogan.js-template");twt.templates={border:'
{{{content}}}
',buffer:'
',entityhashtag:'',entityuser:'@{{screen_name}}',entitylink:'{{display_url}}',timeline:'
{{{tweets}}}
',actions:new Hogan.Template(function(c,p,i){i=i||"";var b=i+"",_=this;b+='";return b}),media:new Hogan.Template(function(c,p,i){i=i||"";var b=i+"",_=this;if(_.s(_.f("media",c,p,1),c,p,0,10,416,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" ";b+=_.f("before_media",c,p,0);b+="\n"+i;b+='
';b+="\n"+i;if(_.s(_.f("_type_photo",c,p,1),c,p,0,88,229,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=' ';b+="\n"+i;b+=' ';b+="\n"+i;b+="
";b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}b+=" ";b+="\n"+i;b+=" ";b+=_.f("after_media",c,p,0);b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}return b}),tweet:new Hogan.Template(function(c,p,i){i=i||"";var b=i+"",_=this;b+=_.f("before_tweet_element",c,p,0);b+="\n"+i;b+="<";b+=_.v(_.f("_tweet_element",c,p,0));b+="\n"+i;b+=" ";b+=_.v(_.f("_root_attr",c,p,0));b+="\n"+i;b+=' data-twt-id="';b+=_.v(_.f("id",c,p,0));b+='"';b+="\n"+i;if(_.s(_.f("_web_intents",c,p,1),c,p,0,106,337,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=' data-twt-intents="';b+=_.v(_.f("_enabled",c,p,0));b+='"';b+="\n"+i;b+=" ";if(_.s(_.f("_partner",c,p,1),c,p,0,160,193,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=' data-twt-partner="';b+=_.v(_.f("_partner",c,p,0));b+='" ';return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("_related",c,p,1),c,p,0,224,257,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=' data-twt-related="';b+=_.v(_.f("_related",c,p,0));b+='" ';return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("_product",c,p,1),c,p,0,288,321,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=' data-twt-product="';b+=_.v(_.f("_product",c,p,0));b+='" ';return b});c.pop()}else{b+=_.b;_.b=""}b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}b+=' class="twt-o twt-tweet h-entry';b+="\n"+i;b+=" ";if(_.s(_.f("_as_reply",c,p,1),c,p,0,404,426,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" twt-inline twt-reply ";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("_always_show_actions",c,p,1),c,p,0,468,493,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" twt-always-show-actions ";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("_was_retweeted",c,p,1),c,p,0,540,564,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" tweet-retweeted twt-rt ";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("media",c,p,1),c,p,0,596,607,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" has-photo ";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("_pin_media",c,p,1),c,p,0,635,647,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" twt-pinned ";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("_tweet_not_found",c,p,1),c,p,0,686,697,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" twt-error ";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("_favorited",c,p,1),c,p,0,736,745,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" twt-fav ";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("_format",c,p,1),c,p,0,775,788,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" ";b+=_.v(_.f("_format",c,p,0));b+=" ";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("_touch_device",c,p,1),c,p,0,821,832,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" twt-touch ";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("_rtl",c,p,1),c,p,0,862,989,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" twt-rtl twt-rtl-body";b+="\n"+i;b+=" ";if(_.s(_.f("_as_reply",c,p,1),c,p,0,902,918,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" twt-rtl-inline ";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";if(_.s(_.f("_rtl_format",c,p,1),c,p,0,953,970,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" ";b+=_.v(_.f("_rtl_format",c,p,0));b+=" ";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}b+=' ">';b+="\n"+i;b+='
';b+="\n"+i;b+=" ";b+=_.f("before_username",c,p,0);b+="\n"+i;if(_.s(_.f("user",c,p,1),c,p,0,1081,2451,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";if(_.s(_.f("screen_name",c,p,1),c,p,0,1106,1241,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=' ';if(_.s(_.f("profile_image_url_https",c,p,1),c,p,0,1315,1377,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+='";b+="\n"+i;b+=" ";if(_.s(_.f("name",c,p,1),c,p,0,1430,1466,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+='';b+=_.v(_.f("name",c,p,0));b+="";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;if(_.s(_.f("_has_badges",c,p,1),c,p,0,1500,1852,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+='
    ';b+="\n"+i;b+=" ";b+=_.f("before_badges",c,p,0);b+="\n"+i;b+=" ";if(_.s(_.f("protected",c,p,1),c,p,0,1590,1671,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+='
  • ';return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";b+=_.f("after_badges",c,p,0);b+="\n"+i;b+="
";b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}if(_.s(_.f("screen_name",c,p,1),c,p,0,1893,1979,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=' @';b+=_.v(_.f("screen_name",c,p,0));b+="";b+="\n"+i;b+="
";b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}b+=" ";if(_.s(_.f("in_reply_to",c,p,1),c,p,0,2020,2073,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+='· ';b+=_.f("_in_reply_to",c,p,0);b+="";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;if(_.s(_.f("_show_follow_button",c,p,1),c,p,0,2122,2420,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=' ';b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";b+=_.f("after_username",c,p,0);b+="\n"+i;b+="
";b+="\n"+i;if(_.s(_.f("_as_timeline",c,p,1),c,p,0,2521,2721,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";if(_.s(_.f("rendered_time",c,p,1),c,p,0,2544,2698,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=' ";b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+="\n"+i;if(_.s(_.f("rendered_text",c,p,1),c,p,0,2763,2904,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+='
';b+="\n"+i;b+=" ";b+=_.f("before_tweet",c,p,0);b+="\n"+i;b+='

';b+=_.f("rendered_text",c,p,0);b+="

";b+="\n"+i;b+=" ";b+=_.f("after_tweet",c,p,0);b+="\n"+i;b+="
";b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";b+=_.f("tweet_media",c,p,0);b+="\n"+i;b+="\n"+i;if(!_.s(_.f("_as_reply",c,p,1),c,p,1,0,0,"")){b+=' ";b+="\n"}b+="\n"+i;b+=" ";b+=_.f("timeline_media",c,p,0);b+="\n"+i;b+="\n"+i;if(_.s(_.f("_as_reply",c,p,1),c,p,0,3829,3896,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+='
';b+="\n"+i;b+='
';b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+="";b+="\n"+i;b+=_.f("after_tweet_element",c,p,0);return b}),time:new Hogan.Template(function(c,p,i){i=i||"";var b=i+"",_=this;b+='';b+="\n"+i;b+=" ";b+=_.v(_.f("time",c,p,0));b+="\n"+i;b+="";return b})};twt.urls={base:"https://twitter.com",permalink:"https://twitter.com/{{{screen_name}}}/statuses/{{{tweet_id}}}",profile:"https://twitter.com/{{{screen_name}}}",userIntent:"https://twitter.com/intent/user?screen_name={{screen_name}}",hashtag:"https://twitter.com/search/%23{{hashtag}}"};!function(exports){exports.isType=function(type,obj){return type=={}.toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase()};exports.extend=function(obj){var args=Array.prototype.slice.call(arguments,1),l=args.length,i=0,prop,source;for(;iin reply to @{{screen_name}}":"balasan kepada @{{screen_name}}",AM:"AM",Apr:"Apr",Aug:"Ogo",Dec:"Dis",Favorite:"Gemar",Feb:"Feb",Jan:"Jan",Jul:"Jul",Jun:"Jun",Mar:"Mac",May:"Mei","New Tweets":"Tweet Baru",Nov:"Nov",Oct:"Okt",PM:"PM",Reply:"Balas",Retweet:"Tweet Semula","Retweeted by @{{screen_name}} on {{date}}":"Ditweet semula oleh @{{screen_name}} pada {{date}}","Retweeted by {{{user}}}":"Ditweet semula oleh {{{user}}}",Sep:"Sep","This account is protected":"Akaun ini dilindungi","Verified Account":"Akaun Disahkan","View on Twitter":"Lihat di Twitter",ltr:"ltr",now:"sekarang","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} jam","{{time_minutes}} mins":"{{time_minutes}} minit","{{time_seconds}} secs":"{{time_seconds}} saat"},fr:{"1 day":"1 jour","1 hr":"1 h","1 min":"1 min","in reply to @{{screen_name}}":"en réponse à @{{screen_name}}",AM:"AM",Apr:"Avr",Aug:"Août",Dec:"Déc",Favorite:"Favori",Feb:"Févr",Jan:"Janv",Jul:"Juill",Jun:"Juin",Mar:"Mars",May:"Mai","New Tweets":"Nouveaux Tweets",Nov:"Nov",Oct:"Oct",PM:"PM",Reply:"Répondre",Retweet:"Retweeter","Retweeted by @{{screen_name}} on {{date}}":"Retweeté par @{{screen_name}} le {{date}}","Retweeted by {{{user}}}":"Retweeté par {{{user}}}",Sep:"Sept","This account is protected":"Ce compte est protégé","Verified Account":"Compte certifié","View on Twitter":"Voir sur Twitter",ltr:"ltr",now:"maintenant","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} h","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} s"},"zh-cn":{"1 day":"1天","1 hr":"1小时","1 min":"1分钟","in reply to @{{screen_name}}":"回复给 @{{screen_name}}",AM:"上午",Apr:"4月",Aug:"8月",Dec:"12月",Favorite:"收藏",Feb:"2月",Jan:"1月",Jul:"7月",Jun:"6月",Mar:"3月",May:"5月","New Tweets":"新推文",Nov:"11月",Oct:"10月",PM:"下午",Reply:"回复",Retweet:"转推","Retweeted by @{{screen_name}} on {{date}}":"由 @{{screen_name}} 在 {{date}} 转推","Retweeted by {{{user}}}":"由 {{{user}}} 转推",Sep:"9月","This account is protected":"此账号已被保护","Verified Account":"认证账号","View on Twitter":"在 Twitter 上查看",ltr:"ltr",now:"现在","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{year}}年{{month}}{{date}}日, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_month}}{{time_date}}日","{{time_date}} {{time_month}} {{time_year}}":"{{time_year}}年{{time_month}}{{time_date}}日","{{time_hours}} hrs":"{{time_hours}}小时","{{time_minutes}} mins":"{{time_minutes}}分钟","{{time_seconds}} secs":"{{time_seconds}}秒"},"zh-tw":{"1 day":"1 天","1 hr":"1 小時","1 min":"1分鐘","in reply to @{{screen_name}}":"回覆給 @{{screen_name}}\n ",AM:"上午",Apr:"4月",Aug:"8月",Dec:"12月",Favorite:"收藏",Feb:"2月",Jan:"1月",Jul:"7月",Jun:"6月",Mar:"3月",May:"5月","New Tweets":"新推文",Nov:"11月",Oct:"10月",PM:"下午",Reply:"回覆",Retweet:"轉推","Retweeted by @{{screen_name}} on {{date}}":"在 {{date}} 被 @{{screen_name}} 轉推","Retweeted by {{{user}}}":"被 {{{user}}} 轉推",Sep:"9月","This account is protected":"此帳戶已受保護","Verified Account":"已認證帳戶","View on Twitter":"在 Twitter 顯示",ltr:"ltr",now:"現在","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{year}} {{month}} {{date}}, {{amPm}} {{hour12}}:{{minute}}:{{second}}(世界標準時間)","{{time_date}} {{time_month}}":"{{time_month}}{{time_date}}日","{{time_date}} {{time_month}} {{time_year}}":"{{time_year}}年{{time_month}}{{time_date}}日","{{time_hours}} hrs":"{{time_hours}} 小時","{{time_minutes}} mins":"{{time_minutes}}分","{{time_seconds}} secs":"{{time_seconds}} 秒"},fil:{"1 day":"1 araw","1 hr":"1 oras","1 min":"1 minuto","in reply to @{{screen_name}}":"sagot kay @{{screen_name}}",AM:"AM",Apr:"Abr",Aug:"Aug",Dec:"Dis",Favorite:"Paborito",Feb:"Peb",Jan:"Enero",Jul:"Hul",Jun:"Hun",Mar:"Mar",May:"Mayo","New Tweets":"Mga Bagong Tweet",Nov:"Nob",Oct:"Okt",PM:"PM",Reply:"Sagot",Retweet:"I-retweet","Retweeted by @{{screen_name}} on {{date}}":"Ini-retweet ni @{{screen_name}} noong {{date}}","Retweeted by {{{user}}}":"Ini-retweet ni {{{user}}}",Sep:"Set","This account is protected":"Ang account na ito ay protektado","Verified Account":"Napatunayan na Account","View on Twitter":"Tingnan sa Twitter",ltr:"ltr",now:"ngayon","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} oras","{{time_minutes}} mins":"{{time_minutes}} minuto","{{time_seconds}} secs":"{{time_seconds}} segundo"},hi:{"1 day":"१ दिन","1 hr":"1 घंटा ","1 min":"१ मिनट","in reply to @{{screen_name}}":" @{{screen_name}} के जवाब मे",AM:"पूर्वाह्न",Apr:"अप्रैल",Aug:"अगस्त",Dec:"दिसम्बर",Favorite:"पसंदीदा",Feb:"फरवरी",Jan:"जनवरी",Jul:"जुलाई",Jun:"जून",Mar:"मार्च",May:"मई","New Tweets":"नये ट्वीट्स",Nov:"नवम्बर",Oct:"अक्टूबर",PM:"अपराह्न",Reply:"जवाब",Retweet:"रीट्वीट","Retweeted by @{{screen_name}} on {{date}}":"{{date}} को @{{screen_name}} द्वारा रीट्वीट किया गया","Retweeted by {{{user}}}":"{{{user}}} द्वारा रीट्वीट किया गया",Sep:"सितंबर","This account is protected":"यह खाता संरक्षित है ","Verified Account":"सत्यापित खाता","View on Twitter":"ट्विटर पर देखें",ltr:"Itr",now:"अभी","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} घंटे","{{time_minutes}} mins":"{{time_minutes}} मिनट","{{time_seconds}} secs":"{{time_seconds}} सेकंड"},fi:{"1 day":"1 päivä","1 hr":"1 h","1 min":"1 min","in reply to @{{screen_name}}":"vastauksena käyttäjälle @{{screen_name}}",AM:"a.m.",Apr:"huhtikuu",Aug:"elokuu",Dec:"joulukuu",Favorite:"Suosikki",Feb:"helmikuu",Jan:"tammikuu",Jul:"heinäkuu",Jun:"kesäkuu",Mar:"maaliskuu",May:"toukokuu","New Tweets":"Uudet twiitit",Nov:"marraskuu",Oct:"lokakuu",PM:"p.m.",Reply:"Vastaa",Retweet:"Uudelleentwiittaa","Retweeted by @{{screen_name}} on {{date}}":"Käyttäjän @{{screen_name}} uudelleentwiittaama {{date}}","Retweeted by {{{user}}}":"Käyttäjän {{{user}}} uudelleentwiittaama",Sep:"syyskuu","This account is protected":"Tämä tili on suojattu","Verified Account":"Varmennettu tili","View on Twitter":"Näytä Twitterissä",ltr:"ltr",now:"nyt","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}}. {{month}}ta {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}}. {{time_month}}ta","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}}. {{time_month}}ta {{time_year}}","{{time_hours}} hrs":"{{time_hours}} tuntia","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} s"},sv:{"1 day":"1 dag","1 hr":"1 tim","1 min":"1 minut","in reply to @{{screen_name}}":"i svar till @{{screen_name}}",AM:"F.M.",Apr:"april",Aug:"aug",Dec:"dec",Favorite:"Favoritmarkera",Feb:"feb",Jan:"jan",Jul:"juli",Jun:"juni",Mar:"mars",May:"maj","New Tweets":"Nya Tweets",Nov:"nov",Oct:"okt",PM:"E.M.",Reply:"Svara",Retweet:"Retweeta","Retweeted by @{{screen_name}} on {{date}}":"Retweetat av @{{screen_name}} {{date}} ","Retweeted by {{{user}}}":"Retweetat av {{{user}}}",Sep:"sep","This account is protected":"Detta konto är skyddat","Verified Account":"Verifierat konto","View on Twitter":"Visa på Twitter",ltr:"ltr",now:"nu","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}}, {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} tim","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} sek"},pl:{"1 day":"1 dzień","1 hr":"1 godzina","1 min":"1 min","in reply to @{{screen_name}}":"w odpowiedzi do @{{screen_name}}",AM:"rano",Apr:"kwi",Aug:"sie",Dec:"gru",Favorite:"Ulubione",Feb:"lut",Jan:"sty",Jul:"lip",Jun:"cze",Mar:"mar",May:"maj","New Tweets":"Nowe tweety",Nov:"lis",Oct:"paź.",PM:"po południu",Reply:"Odpowiedź",Retweet:"Podaj dalej","Retweeted by @{{screen_name}} on {{date}}":"Przesłane dalej przez @{{screen_name}}, {{date}}","Retweeted by {{{user}}}":"Podane dalej przez {{{user}}}",Sep:"wrz","This account is protected":"To konto jest chronione","Verified Account":"Konto zweryfikowane","View on Twitter":"Zobacz na Twitterze",ltr:"ltr",now:"teraz","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} godz.","{{time_minutes}} mins":"{{time_minutes}} minut","{{time_seconds}} secs":"{{time_seconds}} sekund"},ja:{"1 day":"1日","1 hr":"1時間","1 min":"1分","in reply to @{{screen_name}}":"@{{screen_name}}さんへの返信",AM:"AM",Apr:"4月",Aug:"8月",Dec:"12月",Favorite:"お気に入りに登録",Feb:"2月",Jan:"1月",Jul:"7月",Jun:"6月",Mar:"3月",May:"5月","New Tweets":"新しいツイート",Nov:"11月",Oct:"10月",PM:"PM",Reply:"返信",Retweet:"リツイート","Retweeted by @{{screen_name}} on {{date}}":"{{date}}日に@{{screen_name}}さんがリツイートしました","Retweeted by {{{user}}}":"{{{user}}}さんがリツイートしました",Sep:"9月","This account is protected":"このアカウントは非公開です","Verified Account":"認証済みアカウント","View on Twitter":"Twitterで表示",ltr:"左横書き",now:"現在","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{year4}}{{month}}{{date}} {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_month}} {{time_date}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_year_full}}年{{time_month}}{{time_date}}日","{{time_hours}} hrs":"{{time_hours}}時間","{{time_minutes}} mins":"{{time_minutes}}分","{{time_seconds}} secs":"{{time_seconds}}秒"},ko:{"1 day":"1일","1 hr":"1시간","1 min":"1분","in reply to @{{screen_name}}":"@{{screen_name}} 님에게 보낸 답글",AM:"AM",Apr:"4월",Aug:"8월",Dec:"12월",Favorite:"관심글 담기",Feb:"2월",Jan:"1월",Jul:"7월",Jun:"6월",Mar:"3월",May:"5월","New Tweets":"새 트윗",Nov:"11월",Oct:"10월",PM:"PM",Reply:"답글",Retweet:"리트윗","Retweeted by @{{screen_name}} on {{date}}":"{{date}}에 @{{screen_name}}님이 리트윗함","Retweeted by {{{user}}}":"{{{user}}} 님이 리트윗했습니다.",Sep:"9월","This account is protected":"이 계정은 비공개 계정입니다","Verified Account":"인증된 계정","View on Twitter":"트위터에서 보기",ltr:"Itr",now:"지금","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{year}} {{month}} {{date}}, {{amPm}} {{hour12}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_month}} {{time_date}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_year}} {{time_month}} {{time_date}}","{{time_hours}} hrs":"{{time_hours}}시간","{{time_minutes}} mins":"{{time_minutes}}분","{{time_seconds}} secs":"{{time_seconds}}초"},de:{"1 day":"1 Tag","1 hr":"1 Std","1 min":"1 Min","in reply to @{{screen_name}}":"als Antwort an @{{screen_name}}",AM:"AM",Apr:"Apr",Aug:"Aug",Dec:"Dez",Favorite:"Favorisieren",Feb:"Feb",Jan:"Jan",Jul:"Jul",Jun:"Jun",Mar:"Mär",May:"Mai","New Tweets":"Neue Tweets",Nov:"Nov",Oct:"Okt",PM:"PM",Reply:"Antworten",Retweet:"Retweeten","Retweeted by @{{screen_name}} on {{date}}":"Retweetet von @{{screen_name}} am {{date}}","Retweeted by {{{user}}}":"Retweetet von {{{user}}}",Sep:"Sep","This account is protected":"Dieser Account ist geschützt","Verified Account":"Verifizierter Account","View on Twitter":"Auf Twitter ansehen",ltr:"ltr",now:"jetzt","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}}. {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} Std","{{time_minutes}} mins":"{{time_minutes}} Min","{{time_seconds}} secs":"{{time_seconds}} Sek"},pt:{"1 day":"1 dia","1 hr":"1 hr","1 min":"1 min","in reply to @{{screen_name}}":"em resposta a @{{screen_name}}",AM:"Manhã",Apr:"abr",Aug:"ago",Dec:"Dez",Favorite:"Favorito",Feb:"Fev",Jan:"Jan",Jul:"Jul",Jun:"jun",Mar:"mar",May:"maio","New Tweets":"Novos Tweets",Nov:"nov",Oct:"out",PM:"PM",Reply:"Responder",Retweet:"Retweetar","Retweeted by @{{screen_name}} on {{date}}":"Retweetado por @{{screen_name}} em {{date}}","Retweeted by {{{user}}}":"Retweetado por {{{user}}}",Sep:"set","This account is protected":"Esta conta é protegida","Verified Account":"Conta Verificada","View on Twitter":"Ver no Twitter",ltr:"ltr",now:"agora","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} hrs","{{time_minutes}} mins":"{{time_minutes}} mins","{{time_seconds}} secs":"{{time_seconds}} segundos"},it:{"1 day":"1 giorno","1 hr":"1 ora","1 min":"1 min","in reply to @{{screen_name}}":"in risposta a @{{screen_name}}",AM:"AM",Apr:"Apr",Aug:"Ago",Dec:"Dic",Favorite:"Aggiungi ai preferiti",Feb:"Feb",Jan:"Gen",Jul:"Lug",Jun:"Giu",Mar:"Mar",May:"Mag","New Tweets":"Nuovi Tweet",Nov:"Nov",Oct:"Ott",PM:"PM",Reply:"Risposta",Retweet:"Retweet","Retweeted by @{{screen_name}} on {{date}}":"Ritwittato da @{{screen_name}} il {{date}}","Retweeted by {{{user}}}":"Ritwittato da {{{user}}}",Sep:"Set","This account is protected":"Questo account è protetto","Verified Account":"Account Verificato","View on Twitter":"Vedi su Twitter",ltr:"ltr",now:"ora","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} ore","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} sec"},es:{"1 day":"1 día","1 hr":"1 hora","1 min":"1 minuto","in reply to @{{screen_name}}":"en respuesta a @{{screen_name}} ",AM:"am",Apr:"abr",Aug:"ago",Dec:"dic",Favorite:"Favorito",Feb:"feb",Jan:"ene",Jul:"jul",Jun:"jun",Mar:"mar",May:"mayo","New Tweets":"Nuevos Tweets",Nov:"nov",Oct:"oct",PM:"pm",Reply:"Responder",Retweet:"Retwittear","Retweeted by @{{screen_name}} on {{date}}":"Retwitteado por @{{screen_name}} el {{date}}","Retweeted by {{{user}}}":"Retwitteado por {{{user}}}",Sep:"sep","This account is protected":"Esta cuenta está protegida","Verified Account":"Cuenta Verificada","View on Twitter":"Ver en Twitter",ltr:"ltr",now:"ahora","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} horas","{{time_minutes}} mins":"{{time_minutes}} minutos","{{time_seconds}} secs":"{{time_seconds}} segundos"},id:{"1 day":"1 hari","1 hr":"1 jam","1 min":"1 menit","in reply to @{{screen_name}}":"sebagai balasan untuk @{{screen_name}}",AM:"AM",Apr:"Apr",Aug:"Ags",Dec:"Des",Favorite:"Favorit",Feb:"Feb",Jan:"Jan",Jul:"Jul",Jun:"Jun",Mar:"Mar",May:"Mei","New Tweets":"Tweet Baru",Nov:"Nov",Oct:"Okt",PM:"PM",Reply:"Balas",Retweet:"Retweet","Retweeted by @{{screen_name}} on {{date}}":"Di-retweet oleh @{{screen_name}} pada {{date}}","Retweeted by {{{user}}}":"Di-retweet oleh {{{user}}}",Sep:"Sep","This account is protected":"Akun ini dilindungi","Verified Account":"Akun Terverifikasi","View on Twitter":"Lihat di Twitter",ltr:"ltr",now:"sekarang","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}.{{minute}}.{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} jam","{{time_minutes}} mins":"{{time_minutes}} menit","{{time_seconds}} secs":"{{time_seconds}} detik"},ru:{"1 day":"1 день","1 hr":"1 ч","1 min":"1 мин","in reply to @{{screen_name}}":"в ответ @{{screen_name}}",AM:"утра",Apr:"апреля",Aug:"августа",Dec:"декабря",Favorite:"В избранное",Feb:"февраля",Jan:"января",Jul:"июля",Jun:"июня",Mar:"марта",May:"мая","New Tweets":"Новые твиты",Nov:"ноября",Oct:"октября",PM:"после полудня",Reply:"Ответить",Retweet:"Ретвитнуть","Retweeted by @{{screen_name}} on {{date}}":"Ретвитнула(а) @{{screen_name}} on {{date}}","Retweeted by {{{user}}}":"Ретвитнул(а) {{{user}}}",Sep:"сентября","This account is protected":"Учётная запись защищена","Verified Account":"Подлинная учётная запись","View on Twitter":"Показать в Твиттере",ltr:"ltr",now:"сейчас","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}}","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} ч","{{time_minutes}} mins":"{{time_minutes}} мин","{{time_seconds}} secs":"{{time_seconds}} сек"},tr:{"1 day":"1 gün","1 hr":"1 sa","1 min":"1 dk","in reply to @{{screen_name}}":"@{{screen_name}} adlı kişiye yanıt olarak",AM:"AM",Apr:"Nisan",Aug:"Ağustos",Dec:"Aralık",Favorite:"Favorilere ekle",Feb:"Şubat",Jan:"Ocak",Jul:"Temmuz",Jun:"Haziran",Mar:"Mart",May:"Mayıs","New Tweets":"Yeni Tweetler",Nov:"Kasım",Oct:"Ekim",PM:"PM",Reply:"Yanıtla",Retweet:"Retweetle","Retweeted by @{{screen_name}} on {{date}}":"@{{screen_name}} {{date}} tarihinde retweetledi","Retweeted by {{{user}}}":"{{{user}}} retweetledi",Sep:"Eylül","This account is protected":"Bu hesap korumalıdır","Verified Account":"Onaylanmış Hesap","View on Twitter":"Twitter'da görüntüle",ltr:"ltr",now:"şimdi","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} saat","{{time_minutes}} mins":"{{time_minutes}} dk","{{time_seconds}} secs":"{{time_seconds}} sn"},da:{"1 day":"1 dag","1 hr":"1 time","1 min":"1 min","in reply to @{{screen_name}}":"som svar til @{{screen_name}}",AM:"AM",Apr:"apr",Aug:"aug",Dec:"dec",Favorite:"Føj til foretrukne",Feb:"feb",Jan:"jan",Jul:"jul",Jun:"jun",Mar:"mar",May:"maj","New Tweets":"Nye tweets",Nov:"nov",Oct:"okt",PM:"PM",Reply:"Svar",Retweet:"Retweet","Retweeted by @{{screen_name}} on {{date}}":"Retweetet af @{{screen_name}} den {{date}}","Retweeted by {{{user}}}":"Retweetet af {{{user}}}",Sep:"sep","This account is protected":"Denne konto er beskyttet","Verified Account":"Verificeret konto","View on Twitter":"Vis på Twitter",ltr:"ltr",now:"nu","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} timer","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} sek"},no:{"1 day":"1 dag","1 hr":"1 t","1 min":"1 min","in reply to @{{screen_name}}":"som svar til @{{screen_name}}",AM:"AM",Apr:"apr",Aug:"aug",Dec:"des",Favorite:"Favoritt",Feb:"feb",Jan:"jan",Jul:"juli",Jun:"juni",Mar:"mar",May:"mai","New Tweets":"Nye tweets",Nov:"nov",Oct:"okt",PM:"PM",Reply:"Svar",Retweet:"Retweet","Retweeted by @{{screen_name}} on {{date}}":"Retweetet av @{{screen_name}} den {{date}}","Retweeted by {{{user}}}":"Retweetet av {{{user}}}",Sep:"sep","This account is protected":"Denne kontoen er beskyttet","Verified Account":"Verifisert konto","View on Twitter":"Vis på Twitter",ltr:"ltr",now:"nå","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} t","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} sek"},nl:{"1 day":"1 dag","1 hr":"1 uur","1 min":"1 minuut","in reply to @{{screen_name}}":"als antwoord op @{{screen_name}}",AM:"'s ochtends",Apr:"april",Aug:"augustus",Dec:"december",Favorite:"Toevoegen aan favorieten",Feb:"februari",Jan:"januari",Jul:"juli",Jun:"juni",Mar:"maart",May:"mei","New Tweets":"Nieuwe tweets",Nov:"november",Oct:"oktober",PM:"'s middags",Reply:"Beantwoorden",Retweet:"Retweeten","Retweeted by @{{screen_name}} on {{date}}":"Geretweet door @{{screen_name}} op {{date}}","Retweeted by {{{user}}}":"Geretweet door {{{user}}}",Sep:"september","This account is protected":"Dit is een afgeschermd account","Verified Account":"Geverifieerd account","View on Twitter":"Op Twitter weergeven",ltr:"Itr",now:"nu","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} uur","{{time_minutes}} mins":"{{time_minutes}} minuten","{{time_seconds}} secs":"{{time_seconds}} seconden"},hu:{"1 day":"1 nap","1 hr":"1 óra","1 min":"1 perc","in reply to @{{screen_name}}":'válasz neki: @{{screen_name}}',AM:"de.",Apr:"Ápr",Aug:"Aug",Dec:"Dec",Favorite:"Kedvenc",Feb:"Feb",Jan:"Jan",Jul:"Júl",Jun:"Jún",Mar:"Márc",May:"Máj","New Tweets":"Új Tweetek",Nov:"Nov",Oct:"Okt",PM:"du.",Reply:"Válasz",Retweet:"Retweet","Retweeted by @{{screen_name}} on {{date}}":"Retweetelte: @{{screen_name}} ekkor: {{date}}","Retweeted by {{{user}}}":"Retweetelte: {{{user}}}",Sep:"Szept","This account is protected":"Ez a fiók védett","Verified Account":"Hitelesített felhasználó","View on Twitter":"Megtekintés Twitteren",ltr:"ltr",now:"most","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{year}} {{month}} {{date}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_month}} {{time_date}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_year}} {{time_month}} {{time_date}}","{{time_hours}} hrs":"{{time_hours}} óra","{{time_minutes}} mins":"{{time_minutes}} perc","{{time_seconds}} secs":"{{time_seconds}} másodperc"},fa:{"1 day":"١ روز","1 hr":"یک ساعت","1 min":"یک دقیقه","in reply to @{{screen_name}}":'در پاسخ به @{{screen_name}}',AM:"ق.ظ",Apr:"آوریل",Aug:"آگوست",Dec:"دسامبر",Favorite:"برگزیدن",Feb:"فوریه",Jan:"ژانویه",Jul:"ژوئیه",Jun:"ژوئن",Mar:"مارس",May:"مه","New Tweets":"توییت‌های تازه",Nov:"نوامبر",Oct:"اکتبر",PM:"ب.ظ",Reply:"پاسخ",Retweet:"بازتوییت","Retweeted by @{{screen_name}} on {{date}}":"بازتوییت شده توسط @{{screen_name}} در {{date}}","Retweeted by {{{user}}}":"بازتوییت شده توسط {{{user}}}",Sep:"سپتامبر","This account is protected":"این حساب حفاظت‌شده است","Verified Account":"حساب تایید شده","View on Twitter":"مشاهده در توییتر",ltr:"rtl",now:"اکنون","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} ساعت","{{time_minutes}} mins":"{{time_minutes}} دقیقه","{{time_seconds}} secs":"{{time_seconds}} ثانیه"},ar:{"1 day":"يوم واحد","1 hr":"ساعة واحدة","1 min":"دقيقة واحدة","in reply to @{{screen_name}}":"ردًا على @{{screen_name}}",AM:"صباحًا",Apr:"أبريل",Aug:"أغسطس",Dec:"ديسمبر",Favorite:"تفضيل",Feb:"فبراير",Jan:"يناير",Jul:"يوليو",Jun:"يونيو",Mar:"مارس",May:"مايو","New Tweets":"تغريدات جديدة",Nov:"نوفمبر",Oct:"أكتوبر",PM:"مساءً",Reply:"رَد",Retweet:"إعادة تغريد","Retweeted by @{{screen_name}} on {{date}}":"مُعاد تغريدها بواسطة @{{screen_name}} في {{date}}","Retweeted by {{{user}}}":"مُعاد تغريدها بواسطة {{{user}}}",Sep:"سبتمبر","This account is protected":"هذا الحساب محميّ","Verified Account":"حساب موثّق","View on Twitter":"الإظهار على تويتر",ltr:"rtl",now:"الآن","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (utc)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} ساعة","{{time_minutes}} mins":"{{time_minutes}} دقيقة","{{time_seconds}} secs":"{{time_seconds}} ثانية"},ur:{"1 day":"ایک دن","1 hr":"ا گھنٹہ","1 min":"ایک منٹ","in reply to @{{screen_name}}":"کے جواب میں @{{screen_name}}",AM:"صبح",Apr:"اپریل",Aug:"اگست",Dec:"دسمبر",Favorite:"پسند کریں",Feb:"فروری",Jan:"جنوری",Jul:"جولائی",Jun:"جون",Mar:"مارچ",May:"مئی","New Tweets":"نئی ٹویٹس",Nov:"نومبر",Oct:"اکتوبر",PM:"شام",Reply:"جواب دیں",Retweet:"ریٹویٹ کریں","Retweeted by @{{screen_name}} on {{date}}":"@{{screen_name}} نے ریٹویٹ کیا بتاریخ {{date}}","Retweeted by {{{user}}}":"{{{user}}} نے ریٹویٹ کیا",Sep:"ستمبر","This account is protected":"یہ اکاؤنٹ محفوظ ہے.","Verified Account":"تصدیق شدہ اکاؤنٹ","View on Twitter":"ٹوئٹر پر دیکھیں",ltr:"rtl",now:"ابھی","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} گھنٹے","{{time_minutes}} mins":"{{time_minutes}} منٹ","{{time_seconds}} secs":"{{time_seconds}} سیکنڈز"},he:{"1 day":"יום אחד","1 hr":"שעה אחת","1 min":"דקה אחת","in reply to @{{screen_name}}":"@{{screen_name}}בתגובה ל־",AM:"לפני הצהריים",Apr:"אפר׳",Aug:"אוג׳",Dec:"דצמ׳",Favorite:"אהוב",Feb:"פבר׳",Jan:"ינו׳",Jul:"יולי",Jun:"יוני",Mar:"מרץ",May:"מאי","New Tweets":"ציוצים חדשים",Nov:"נוב׳",Oct:"אוק׳",PM:"אחר הצהריים",Reply:"תגובה",Retweet:"לצייץ מחדש","Retweeted by @{{screen_name}} on {{date}}":"צויץ מחדש על־ידי @{{screen_name}} ב-{{date}}","Retweeted by {{{user}}}":"צויץ מחדש על־ידי {{{user}}}",Sep:"ספט׳","This account is protected":"חשבון זה נעול","Verified Account":"חשבון מאומת","View on Twitter":"הצגה בטוויטר",ltr:"rtl",now:"כעת","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} ב{{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} ב{{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} ב{{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} שעות","{{time_minutes}} mins":"{{time_minutes}} דקות","{{time_seconds}} secs":"{{time_seconds}} שניות"},th:{"1 day":"1 วัน","1 hr":"1 ชม.","1 min":"1นาที","in reply to @{{screen_name}}":"ตอบกลับถึง @{{screen_name}}",AM:"ก่อนเที่ยง",Apr:"เม.ย.",Aug:"ส.ค.",Dec:"ธ.ค.",Favorite:"ชื่นชอบ",Feb:"ก.พ.",Jan:"ม.ค.",Jul:"ก.ค.",Jun:"มิ.ย.",Mar:"มี.ค.",May:"พ.ค.","New Tweets":"ทวีตใหม่",Nov:"พ.ย.",Oct:"ต.ค.",PM:"หลังเที่ยง",Reply:"ตอบกลับ",Retweet:"รีทวีต","Retweeted by @{{screen_name}} on {{date}}":"ถูกรีทวีตโดย @{{screen_name}} ใน {{date}}","Retweeted by {{{user}}}":"ถูกรีทวีตโดย {{{user}}}",Sep:"ก.ย.","This account is protected":"บัญชีนี้ถูกป้องกันไว้","Verified Account":"บัญชีที่ยืนยันแล้ว","View on Twitter":"ดูบนทวิตเตอร์",ltr:"ltr",now:"ตอนนี้","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}} เวลา {{hour24}}:{{minute}}:{{second}} (เวลาสากล)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} ชม.","{{time_minutes}} mins":"{{time_minutes}} นาที","{{time_seconds}} secs":"{{time_seconds}} วินาที"}},mixins={},emit=$({});!function(exports){function generateEntityReplacements(entities,linkifier,replacements){var i=0,e,l;if(!entities)return;for(l=entities.length;iday&&diff"+(s.before_tweet_element||"");s.after_tweet_element=(s.after_tweet_element||"")+""}if(s.error&&s.request){s._tweet_not_found=!0;s.user={};s._tweet_element="div";return s}s._linkTarget=this.settings.linkTarget;if(s.from_user_id){s.user={id:$.fixedID(s,"from_user_id"),screen_name:s.from_user,name:s.from_user_name,profile_image_url_https:s.profile_image_url_https,"protected":!1,verified:!1};s.in_reply_to_screen_name=s.to_user;s.in_reply_to_user_id=$.fixedID(s,"to_user_id")}if(s.retweeted_status){ogStatus=s;screenNameUrl=_(twt.urls.profile,{screen_name:ogStatus.user.screen_name,user_id:$.fixedID(ogStatus.user,"id")});user=$.to_html("@{{screen_name}}",{screen_name_url:screenNameUrl,screen_name:ogStatus.user.screen_name,link_format:this.settings.linkTarget});s=s.retweeted_status;s._as_timeline=ogStatus._as_timeline;s.before_tweet_element=ogStatus.before_tweet_element||"";s.after_tweet_element=ogStatus.after_tweet_element||"";s._linkTarget=this.settings.linkTarget;s._retweeted=_("Retweeted by {{{user}}}",{user:user});s._retweeted_at=_("Retweeted by @{{screen_name}} on {{date}}",{screen_name:ogStatus.user.screen_name,date:twt.formattedDate(ogStatus.created_at)});s._was_retweeted=globals.userId==$.fixedID(ogStatus.user,"id")}s.user._has_badges=s.user["protected"]||s.user.verified;s._reply=_("Reply");s._retweet=_("Retweet");s._favorite=_("Favorite");s._verified_text=_("Verified Account");s._protected_text=_("This account is protected");this.rtl(s);inReplyToUrl=_(twt.urls.permalink,{screen_name:s.in_reply_to_screen_name||"",tweet_id:$.fixedID(s,"in_reply_to_status_id")});s.in_reply_to_screen_name&&s._as_timeline&&(s._in_reply_to=_("in reply to @{{screen_name}}",{in_reply_to_url:inReplyToUrl,screen_name:inReplyToUrl.screen_name,link_format:this.settings.linkTarget}));s._via_source=_("Tweeted via {{{source}}}",{source:s.source});s=iter&&$.isType("function",iter)?iter(s):s;s._format=s._format||"twt-"+this.settings.format;s._touch_device=twt.isTouchDevice();s.id=$.fixedID(s,"id");s._show_follow_button=!s._as_timeline&&this.settings.showFollowButton;s._web_intents={_enabled:this.settings.popupWebIntents,_related:this.settings.related,_partner:this.settings.partner,_product:this.settings.product};s.rendered_text=s.rendered_text||twt.linkify(s);s.user.profile_image_url_https&&(s.profile_image_url_mini=s.user.profile_image_url_https.replace(/_normal\./,"_mini."));s._actions=s._actions||$.to_html(twt.templates.actions,s);s.rendered_time=$.to_html(twt.templates.time,{time:s.time||twt.timeAgo(s.created_at,this.settings.showRelativeTimes),iso_time:twt.isoDate(s.created_at),formatted_time:twt.formattedDate(s.created_at),relative:this.settings.showRelativeTimes});s._view_permalink=s._as_timeline?_("View on Twitter"):s.rendered_time;s._permalink_url=_(twt.urls.permalink,{screen_name:s.user.screen_name,user_id:s.user.id,tweet_id:s.id});s._screen_name_url=_(twt.urls.profile,{screen_name:s.user.screen_name,user_id:$.fixedID(s.user,"id")});this.settings.showMedia&&this.formatMedia(s)&&(s[(s._as_timeline?"timeline":"tweet")+"_media"]=$.to_html(twt.templates.media,$.extend({_linkTarget:twt.settings.linkTarget},s.entities)));s._show_errors=this.settings.showErrors;s._always_show_actions=this.settings.showActions;s._render_actions=this.settings.renderActions;s._tweet_element=this.settings.tweetElement||"div";"blockquote"==s.tweet_element&&(s._root_attr="cite='https://twitter.com/"+s.user.screen_name+"/status/"+s.id+"'");return s};Tweet.prototype.rtl=function(s){s._rtl=_("ltr")=="rtl";s._fbtn_align=s._rtl?"left":"right";s._rtl_format=s._rtl&&this.settings.format&&"twt-rtl-"+this.settings.format};Tweet.prototype.formatMedia=function(s){var i=0,match,url,id,l;s._pin_media=this.settings.showMedia;if(!s._pin_media||!s.entities)return;if(s.entities.media&&s.entities.media.length){s.entities._permalink_url=s._permalink_url;return s.entities._type_photo=!0}};exports.tweet=function(object,options){return new Tweet(object,options)};exports.tweet.settings={border:!0,lang:null,limit:!1,linkTarget:"_blank",popupWebIntents:!0,showActions:!0,showErrors:!0,showFollowButton:!0,showMedia:!1,showRelativeTimes:!1,format:"auto",related:null,renderActions:!0};exports.tweet.fn=Tweet.prototype}(twt);!function(){function getEventType(element){var classes=element.className.split(" "),type;for(var i=0,l=classes.length;i])\s*/g,splitters=/[\s\>\+\~]/,splittersMore=/(?![\s\w\-\/\?\&\=\:\.\(\)\!,@#%<>\{\}\$\*\^'"]*\]|[\s\w\+\-]*\))/,specialChars=/([.*+?\^=!:${}()|\[\]\/\\])/g,simple=/^([a-z0-9]+)?(?:([\.\#]+[\w\-\.#]+)?)/,attr=/\[([\w\-]+)(?:([\|\^\$\*\~]?\=)['"]?([ \w\-\/\?\&\=\:\.\(\)\!,@#%<>\{\}\$\*\^]+)["']?)?\]/,pseudo=/:([\w\-]+)(\(['"]?([\s\w\+\-]+)['"]?\))?/,dividers=new RegExp("("+splitters.source+")"+splittersMore.source,"g"),tokenizr=new RegExp(splitters.source+splittersMore.source),chunker=new RegExp(simple.source+"("+attr.source+")?"+"("+pseudo.source+")?"),walker={" ":function(node){return node&&node!==html&&node.parentNode},">":function(node,contestant){return node&&node.parentNode==contestant.parentNode&&node.parentNode},"~":function(node){return node&&node.previousSibling},"+":function(node,contestant,p1,p2){if(!node)return!1;p1=previous(node);p2=previous(contestant);return p1&&p2&&p1==p2&&p1}};cache.prototype={g:function(k){return this.c[k]||undefined},s:function(k,v){this.c[k]=v;return v}};var classCache=new cache,cleanCache=new cache,attrCache=new cache,tokenCache=new cache,isAncestor="compareDocumentPosition"in html?function(element,container){return(container.compareDocumentPosition(element)&16)==16}:"contains"in html?function(element,container){container=container==doc||container==window?html:container;return container!==element&&container.contains(element)}:function(element,container){while(element=element.parentNode)if(element===container)return 1;return 0},supportsCSS3=function(){if(!doc.querySelector||!doc.querySelectorAll)return!1;try{return doc.querySelectorAll(":nth-of-type(1)").length}catch(e){return!1}}(),select=supportsCSS3?function(selector,root){return doc.getElementsByClassName&&(m=selector.match(classOnly))?flatten(root.getElementsByClassName(m[1])):flatten(root.querySelectorAll(selector))}:function(selector,root){selector=selector.replace(normalizr,"$1");var result=[],element,collection,collections=[],i;if(m=selector.match(tagAndOrClass)){items=root.getElementsByTagName(m[1]||"*");r=classCache.g(m[2])||classCache.s(m[2],new RegExp("(^|\\s+)"+m[2]+"(\\s+|$)"));for(i=0,l=items.length,j=0;i]+)\s*/.exec(node)[1],el=(root||doc).createElement(nodeMap[tag]||"div"),els=[];el.innerHTML=node;var nodes=el.childNodes;el=el.firstChild;el.nodeType==1&&els.push(el);while(el=el.nextSibling)el.nodeType==1&&els.push(el);return els}var q=require("qwery"),table="table",nodeMap={thead:table,tbody:table,tfoot:table,tr:"tbody",th:"tr",td:"tr",fieldset:"form",option:"select"};$._select=function(s,r){return/^\s*1?"timeline":"tweet"].apply(this,arguments)};twt.settings={product:"twt",linkTarget:"_blank"};var Hogan=require("hogan.js-template");twt.templates={border:'
{{{content}}}
',buffer:'
',entityhashtag:'',entityuser:'@{{screen_name}}',entitylink:'{{display_url}}',timeline:'
{{{tweets}}}
',actions:new Hogan.Template(function(c,p,i){i=i||"";var b=i+"",_=this;b+='";return b}),media:new Hogan.Template(function(c,p,i){i=i||"";var b=i+"",_=this;if(_.s(_.f("media",c,p,1),c,p,0,10,416,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=" ";b+=_.f("before_media",c,p,0);b+="\n"+i;b+='
';b+="\n"+i;if(_.s(_.f("_type_photo",c,p,1),c,p,0,88,229,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=' ';b+="\n"+i;b+=' ';b+="\n"+i;b+=" ";b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}if(_.s(_.f("_type_iframe",c,p,1),c,p,0,267,369,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+='
';b+="\n"+i;b+=' ';b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";b+=_.f("after_username",c,p,0);b+="\n"+i;b+="
";b+="\n"+i;if(_.s(_.f("_as_timeline",c,p,1),c,p,0,2521,2721,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";if(_.s(_.f("rendered_time",c,p,1),c,p,0,2544,2698,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+=' ";b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+="\n"+i;if(_.s(_.f("rendered_text",c,p,1),c,p,0,2763,2904,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+='
';b+="\n"+i;b+=" ";b+=_.f("before_tweet",c,p,0);b+="\n"+i;b+='

';b+=_.f("rendered_text",c,p,0);b+="

";b+="\n"+i;b+=" ";b+=_.f("after_tweet",c,p,0);b+="\n"+i;b+="
";b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+=" ";b+=_.f("tweet_media",c,p,0);b+="\n"+i;b+="\n"+i;if(!_.s(_.f("_as_reply",c,p,1),c,p,1,0,0,"")){b+=' ";b+="\n"}b+="\n"+i;b+=" ";b+=_.f("timeline_media",c,p,0);b+="\n"+i;b+="\n"+i;if(_.s(_.f("_as_reply",c,p,1),c,p,0,3829,3896,"{{ }}")){b+=_.rs(c,p,function(c,p){var b="";b+='
';b+="\n"+i;b+='
';b+="\n";return b});c.pop()}else{b+=_.b;_.b=""}b+="\n"+i;b+="";b+="\n"+i;b+=_.f("after_tweet_element",c,p,0);return b}),time:new Hogan.Template(function(c,p,i){i=i||"";var b=i+"",_=this;b+='';b+="\n"+i;b+=" ";b+=_.v(_.f("time",c,p,0));b+="\n"+i;b+="";return b})};twt.urls={base:"https://twitter.com",permalink:"https://twitter.com/{{{screen_name}}}/statuses/{{{tweet_id}}}",profile:"https://twitter.com/{{{screen_name}}}",userIntent:"https://twitter.com/intent/user?screen_name={{screen_name}}",hashtag:"https://twitter.com/search/%23{{hashtag}}"};!function(exports){exports.isType=function(type,obj){return type=={}.toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase()};exports.extend=function(obj){var args=Array.prototype.slice.call(arguments,1),l=args.length,i=0,prop,source;for(;iin reply to @{{screen_name}}":"balasan kepada @{{screen_name}}",AM:"AM",Apr:"Apr",Aug:"Ogo",Dec:"Dis",Favorite:"Gemar",Feb:"Feb",Jan:"Jan",Jul:"Jul",Jun:"Jun",Mar:"Mac",May:"Mei","New Tweets":"Tweet Baru",Nov:"Nov",Oct:"Okt",PM:"PM",Reply:"Balas",Retweet:"Tweet Semula","Retweeted by @{{screen_name}} on {{date}}":"Ditweet semula oleh @{{screen_name}} pada {{date}}","Retweeted by {{{user}}}":"Ditweet semula oleh {{{user}}}",Sep:"Sep","This account is protected":"Akaun ini dilindungi","Verified Account":"Akaun Disahkan","View on Twitter":"Lihat di Twitter",ltr:"ltr",now:"sekarang","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} jam","{{time_minutes}} mins":"{{time_minutes}} minit","{{time_seconds}} secs":"{{time_seconds}} saat"},fr:{"1 day":"1 jour","1 hr":"1 h","1 min":"1 min","in reply to @{{screen_name}}":"en réponse à @{{screen_name}}",AM:"AM",Apr:"Avr",Aug:"Août",Dec:"Déc",Favorite:"Favori",Feb:"Févr",Jan:"Janv",Jul:"Juill",Jun:"Juin",Mar:"Mars",May:"Mai","New Tweets":"Nouveaux Tweets",Nov:"Nov",Oct:"Oct",PM:"PM",Reply:"Répondre",Retweet:"Retweeter","Retweeted by @{{screen_name}} on {{date}}":"Retweeté par @{{screen_name}} le {{date}}","Retweeted by {{{user}}}":"Retweeté par {{{user}}}",Sep:"Sept","This account is protected":"Ce compte est protégé","Verified Account":"Compte certifié","View on Twitter":"Voir sur Twitter",ltr:"ltr",now:"maintenant","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} h","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} s"},"zh-cn":{"1 day":"1天","1 hr":"1小时","1 min":"1分钟","in reply to @{{screen_name}}":"回复给 @{{screen_name}}",AM:"上午",Apr:"4月",Aug:"8月",Dec:"12月",Favorite:"收藏",Feb:"2月",Jan:"1月",Jul:"7月",Jun:"6月",Mar:"3月",May:"5月","New Tweets":"新推文",Nov:"11月",Oct:"10月",PM:"下午",Reply:"回复",Retweet:"转推","Retweeted by @{{screen_name}} on {{date}}":"由 @{{screen_name}} 在 {{date}} 转推","Retweeted by {{{user}}}":"由 {{{user}}} 转推",Sep:"9月","This account is protected":"此账号已被保护","Verified Account":"认证账号","View on Twitter":"在 Twitter 上查看",ltr:"ltr",now:"现在","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{year}}年{{month}}{{date}}日, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_month}}{{time_date}}日","{{time_date}} {{time_month}} {{time_year}}":"{{time_year}}年{{time_month}}{{time_date}}日","{{time_hours}} hrs":"{{time_hours}}小时","{{time_minutes}} mins":"{{time_minutes}}分钟","{{time_seconds}} secs":"{{time_seconds}}秒"},"zh-tw":{"1 day":"1 天","1 hr":"1 小時","1 min":"1分鐘","in reply to @{{screen_name}}":"回覆給 @{{screen_name}}\n ",AM:"上午",Apr:"4月",Aug:"8月",Dec:"12月",Favorite:"收藏",Feb:"2月",Jan:"1月",Jul:"7月",Jun:"6月",Mar:"3月",May:"5月","New Tweets":"新推文",Nov:"11月",Oct:"10月",PM:"下午",Reply:"回覆",Retweet:"轉推","Retweeted by @{{screen_name}} on {{date}}":"在 {{date}} 被 @{{screen_name}} 轉推","Retweeted by {{{user}}}":"被 {{{user}}} 轉推",Sep:"9月","This account is protected":"此帳戶已受保護","Verified Account":"已認證帳戶","View on Twitter":"在 Twitter 顯示",ltr:"ltr",now:"現在","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{year}} {{month}} {{date}}, {{amPm}} {{hour12}}:{{minute}}:{{second}}(世界標準時間)","{{time_date}} {{time_month}}":"{{time_month}}{{time_date}}日","{{time_date}} {{time_month}} {{time_year}}":"{{time_year}}年{{time_month}}{{time_date}}日","{{time_hours}} hrs":"{{time_hours}} 小時","{{time_minutes}} mins":"{{time_minutes}}分","{{time_seconds}} secs":"{{time_seconds}} 秒"},fil:{"1 day":"1 araw","1 hr":"1 oras","1 min":"1 minuto","in reply to @{{screen_name}}":"sagot kay @{{screen_name}}",AM:"AM",Apr:"Abr",Aug:"Aug",Dec:"Dis",Favorite:"Paborito",Feb:"Peb",Jan:"Enero",Jul:"Hul",Jun:"Hun",Mar:"Mar",May:"Mayo","New Tweets":"Mga Bagong Tweet",Nov:"Nob",Oct:"Okt",PM:"PM",Reply:"Sagot",Retweet:"I-retweet","Retweeted by @{{screen_name}} on {{date}}":"Ini-retweet ni @{{screen_name}} noong {{date}}","Retweeted by {{{user}}}":"Ini-retweet ni {{{user}}}",Sep:"Set","This account is protected":"Ang account na ito ay protektado","Verified Account":"Napatunayan na Account","View on Twitter":"Tingnan sa Twitter",ltr:"ltr",now:"ngayon","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} oras","{{time_minutes}} mins":"{{time_minutes}} minuto","{{time_seconds}} secs":"{{time_seconds}} segundo"},hi:{"1 day":"१ दिन","1 hr":"1 घंटा ","1 min":"१ मिनट","in reply to @{{screen_name}}":" @{{screen_name}} के जवाब मे",AM:"पूर्वाह्न",Apr:"अप्रैल",Aug:"अगस्त",Dec:"दिसम्बर",Favorite:"पसंदीदा",Feb:"फरवरी",Jan:"जनवरी",Jul:"जुलाई",Jun:"जून",Mar:"मार्च",May:"मई","New Tweets":"नये ट्वीट्स",Nov:"नवम्बर",Oct:"अक्टूबर",PM:"अपराह्न",Reply:"जवाब",Retweet:"रीट्वीट","Retweeted by @{{screen_name}} on {{date}}":"{{date}} को @{{screen_name}} द्वारा रीट्वीट किया गया","Retweeted by {{{user}}}":"{{{user}}} द्वारा रीट्वीट किया गया",Sep:"सितंबर","This account is protected":"यह खाता संरक्षित है ","Verified Account":"सत्यापित खाता","View on Twitter":"ट्विटर पर देखें",ltr:"Itr",now:"अभी","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} घंटे","{{time_minutes}} mins":"{{time_minutes}} मिनट","{{time_seconds}} secs":"{{time_seconds}} सेकंड"},fi:{"1 day":"1 päivä","1 hr":"1 h","1 min":"1 min","in reply to @{{screen_name}}":"vastauksena käyttäjälle @{{screen_name}}",AM:"a.m.",Apr:"huhtikuu",Aug:"elokuu",Dec:"joulukuu",Favorite:"Suosikki",Feb:"helmikuu",Jan:"tammikuu",Jul:"heinäkuu",Jun:"kesäkuu",Mar:"maaliskuu",May:"toukokuu","New Tweets":"Uudet twiitit",Nov:"marraskuu",Oct:"lokakuu",PM:"p.m.",Reply:"Vastaa",Retweet:"Uudelleentwiittaa","Retweeted by @{{screen_name}} on {{date}}":"Käyttäjän @{{screen_name}} uudelleentwiittaama {{date}}","Retweeted by {{{user}}}":"Käyttäjän {{{user}}} uudelleentwiittaama",Sep:"syyskuu","This account is protected":"Tämä tili on suojattu","Verified Account":"Varmennettu tili","View on Twitter":"Näytä Twitterissä",ltr:"ltr",now:"nyt","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}}. {{month}}ta {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}}. {{time_month}}ta","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}}. {{time_month}}ta {{time_year}}","{{time_hours}} hrs":"{{time_hours}} tuntia","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} s"},sv:{"1 day":"1 dag","1 hr":"1 tim","1 min":"1 minut","in reply to @{{screen_name}}":"i svar till @{{screen_name}}",AM:"F.M.",Apr:"april",Aug:"aug",Dec:"dec",Favorite:"Favoritmarkera",Feb:"feb",Jan:"jan",Jul:"juli",Jun:"juni",Mar:"mars",May:"maj","New Tweets":"Nya Tweets",Nov:"nov",Oct:"okt",PM:"E.M.",Reply:"Svara",Retweet:"Retweeta","Retweeted by @{{screen_name}} on {{date}}":"Retweetat av @{{screen_name}} {{date}} ","Retweeted by {{{user}}}":"Retweetat av {{{user}}}",Sep:"sep","This account is protected":"Detta konto är skyddat","Verified Account":"Verifierat konto","View on Twitter":"Visa på Twitter",ltr:"ltr",now:"nu","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}}, {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} tim","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} sek"},pl:{"1 day":"1 dzień","1 hr":"1 godzina","1 min":"1 min","in reply to @{{screen_name}}":"w odpowiedzi do @{{screen_name}}",AM:"rano",Apr:"kwi",Aug:"sie",Dec:"gru",Favorite:"Ulubione",Feb:"lut",Jan:"sty",Jul:"lip",Jun:"cze",Mar:"mar",May:"maj","New Tweets":"Nowe tweety",Nov:"lis",Oct:"paź.",PM:"po południu",Reply:"Odpowiedź",Retweet:"Podaj dalej","Retweeted by @{{screen_name}} on {{date}}":"Przesłane dalej przez @{{screen_name}}, {{date}}","Retweeted by {{{user}}}":"Podane dalej przez {{{user}}}",Sep:"wrz","This account is protected":"To konto jest chronione","Verified Account":"Konto zweryfikowane","View on Twitter":"Zobacz na Twitterze",ltr:"ltr",now:"teraz","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} godz.","{{time_minutes}} mins":"{{time_minutes}} minut","{{time_seconds}} secs":"{{time_seconds}} sekund"},ja:{"1 day":"1日","1 hr":"1時間","1 min":"1分","in reply to @{{screen_name}}":"@{{screen_name}}さんへの返信",AM:"AM",Apr:"4月",Aug:"8月",Dec:"12月",Favorite:"お気に入りに登録",Feb:"2月",Jan:"1月",Jul:"7月",Jun:"6月",Mar:"3月",May:"5月","New Tweets":"新しいツイート",Nov:"11月",Oct:"10月",PM:"PM",Reply:"返信",Retweet:"リツイート","Retweeted by @{{screen_name}} on {{date}}":"{{date}}日に@{{screen_name}}さんがリツイートしました","Retweeted by {{{user}}}":"{{{user}}}さんがリツイートしました",Sep:"9月","This account is protected":"このアカウントは非公開です","Verified Account":"認証済みアカウント","View on Twitter":"Twitterで表示",ltr:"左横書き",now:"現在","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{year4}}{{month}}{{date}} {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_month}} {{time_date}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_year_full}}年{{time_month}}{{time_date}}日","{{time_hours}} hrs":"{{time_hours}}時間","{{time_minutes}} mins":"{{time_minutes}}分","{{time_seconds}} secs":"{{time_seconds}}秒"},ko:{"1 day":"1일","1 hr":"1시간","1 min":"1분","in reply to @{{screen_name}}":"@{{screen_name}} 님에게 보낸 답글",AM:"AM",Apr:"4월",Aug:"8월",Dec:"12월",Favorite:"관심글 담기",Feb:"2월",Jan:"1월",Jul:"7월",Jun:"6월",Mar:"3월",May:"5월","New Tweets":"새 트윗",Nov:"11월",Oct:"10월",PM:"PM",Reply:"답글",Retweet:"리트윗","Retweeted by @{{screen_name}} on {{date}}":"{{date}}에 @{{screen_name}}님이 리트윗함","Retweeted by {{{user}}}":"{{{user}}} 님이 리트윗했습니다.",Sep:"9월","This account is protected":"이 계정은 비공개 계정입니다","Verified Account":"인증된 계정","View on Twitter":"트위터에서 보기",ltr:"Itr",now:"지금","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{year}} {{month}} {{date}}, {{amPm}} {{hour12}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_month}} {{time_date}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_year}} {{time_month}} {{time_date}}","{{time_hours}} hrs":"{{time_hours}}시간","{{time_minutes}} mins":"{{time_minutes}}분","{{time_seconds}} secs":"{{time_seconds}}초"},de:{"1 day":"1 Tag","1 hr":"1 Std","1 min":"1 Min","in reply to @{{screen_name}}":"als Antwort an @{{screen_name}}",AM:"AM",Apr:"Apr",Aug:"Aug",Dec:"Dez",Favorite:"Favorisieren",Feb:"Feb",Jan:"Jan",Jul:"Jul",Jun:"Jun",Mar:"Mär",May:"Mai","New Tweets":"Neue Tweets",Nov:"Nov",Oct:"Okt",PM:"PM",Reply:"Antworten",Retweet:"Retweeten","Retweeted by @{{screen_name}} on {{date}}":"Retweetet von @{{screen_name}} am {{date}}","Retweeted by {{{user}}}":"Retweetet von {{{user}}}",Sep:"Sep","This account is protected":"Dieser Account ist geschützt","Verified Account":"Verifizierter Account","View on Twitter":"Auf Twitter ansehen",ltr:"ltr",now:"jetzt","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}}. {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} Std","{{time_minutes}} mins":"{{time_minutes}} Min","{{time_seconds}} secs":"{{time_seconds}} Sek"},pt:{"1 day":"1 dia","1 hr":"1 hr","1 min":"1 min","in reply to @{{screen_name}}":"em resposta a @{{screen_name}}",AM:"Manhã",Apr:"abr",Aug:"ago",Dec:"Dez",Favorite:"Favorito",Feb:"Fev",Jan:"Jan",Jul:"Jul",Jun:"jun",Mar:"mar",May:"maio","New Tweets":"Novos Tweets",Nov:"nov",Oct:"out",PM:"PM",Reply:"Responder",Retweet:"Retweetar","Retweeted by @{{screen_name}} on {{date}}":"Retweetado por @{{screen_name}} em {{date}}","Retweeted by {{{user}}}":"Retweetado por {{{user}}}",Sep:"set","This account is protected":"Esta conta é protegida","Verified Account":"Conta Verificada","View on Twitter":"Ver no Twitter",ltr:"ltr",now:"agora","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} hrs","{{time_minutes}} mins":"{{time_minutes}} mins","{{time_seconds}} secs":"{{time_seconds}} segundos"},it:{"1 day":"1 giorno","1 hr":"1 ora","1 min":"1 min","in reply to @{{screen_name}}":"in risposta a @{{screen_name}}",AM:"AM",Apr:"Apr",Aug:"Ago",Dec:"Dic",Favorite:"Aggiungi ai preferiti",Feb:"Feb",Jan:"Gen",Jul:"Lug",Jun:"Giu",Mar:"Mar",May:"Mag","New Tweets":"Nuovi Tweet",Nov:"Nov",Oct:"Ott",PM:"PM",Reply:"Risposta",Retweet:"Retweet","Retweeted by @{{screen_name}} on {{date}}":"Ritwittato da @{{screen_name}} il {{date}}","Retweeted by {{{user}}}":"Ritwittato da {{{user}}}",Sep:"Set","This account is protected":"Questo account è protetto","Verified Account":"Account Verificato","View on Twitter":"Vedi su Twitter",ltr:"ltr",now:"ora","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} ore","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} sec"},es:{"1 day":"1 día","1 hr":"1 hora","1 min":"1 minuto","in reply to @{{screen_name}}":"en respuesta a @{{screen_name}} ",AM:"am",Apr:"abr",Aug:"ago",Dec:"dic",Favorite:"Favorito",Feb:"feb",Jan:"ene",Jul:"jul",Jun:"jun",Mar:"mar",May:"mayo","New Tweets":"Nuevos Tweets",Nov:"nov",Oct:"oct",PM:"pm",Reply:"Responder",Retweet:"Retwittear","Retweeted by @{{screen_name}} on {{date}}":"Retwitteado por @{{screen_name}} el {{date}}","Retweeted by {{{user}}}":"Retwitteado por {{{user}}}",Sep:"sep","This account is protected":"Esta cuenta está protegida","Verified Account":"Cuenta Verificada","View on Twitter":"Ver en Twitter",ltr:"ltr",now:"ahora","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} horas","{{time_minutes}} mins":"{{time_minutes}} minutos","{{time_seconds}} secs":"{{time_seconds}} segundos"},id:{"1 day":"1 hari","1 hr":"1 jam","1 min":"1 menit","in reply to @{{screen_name}}":"sebagai balasan untuk @{{screen_name}}",AM:"AM",Apr:"Apr",Aug:"Ags",Dec:"Des",Favorite:"Favorit",Feb:"Feb",Jan:"Jan",Jul:"Jul",Jun:"Jun",Mar:"Mar",May:"Mei","New Tweets":"Tweet Baru",Nov:"Nov",Oct:"Okt",PM:"PM",Reply:"Balas",Retweet:"Retweet","Retweeted by @{{screen_name}} on {{date}}":"Di-retweet oleh @{{screen_name}} pada {{date}}","Retweeted by {{{user}}}":"Di-retweet oleh {{{user}}}",Sep:"Sep","This account is protected":"Akun ini dilindungi","Verified Account":"Akun Terverifikasi","View on Twitter":"Lihat di Twitter",ltr:"ltr",now:"sekarang","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}.{{minute}}.{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} jam","{{time_minutes}} mins":"{{time_minutes}} menit","{{time_seconds}} secs":"{{time_seconds}} detik"},ru:{"1 day":"1 день","1 hr":"1 ч","1 min":"1 мин","in reply to @{{screen_name}}":"в ответ @{{screen_name}}",AM:"утра",Apr:"апреля",Aug:"августа",Dec:"декабря",Favorite:"В избранное",Feb:"февраля",Jan:"января",Jul:"июля",Jun:"июня",Mar:"марта",May:"мая","New Tweets":"Новые твиты",Nov:"ноября",Oct:"октября",PM:"после полудня",Reply:"Ответить",Retweet:"Ретвитнуть","Retweeted by @{{screen_name}} on {{date}}":"Ретвитнула(а) @{{screen_name}} on {{date}}","Retweeted by {{{user}}}":"Ретвитнул(а) {{{user}}}",Sep:"сентября","This account is protected":"Учётная запись защищена","Verified Account":"Подлинная учётная запись","View on Twitter":"Показать в Твиттере",ltr:"ltr",now:"сейчас","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}}","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} ч","{{time_minutes}} mins":"{{time_minutes}} мин","{{time_seconds}} secs":"{{time_seconds}} сек"},tr:{"1 day":"1 gün","1 hr":"1 sa","1 min":"1 dk","in reply to @{{screen_name}}":"@{{screen_name}} adlı kişiye yanıt olarak",AM:"AM",Apr:"Nisan",Aug:"Ağustos",Dec:"Aralık",Favorite:"Favorilere ekle",Feb:"Şubat",Jan:"Ocak",Jul:"Temmuz",Jun:"Haziran",Mar:"Mart",May:"Mayıs","New Tweets":"Yeni Tweetler",Nov:"Kasım",Oct:"Ekim",PM:"PM",Reply:"Yanıtla",Retweet:"Retweetle","Retweeted by @{{screen_name}} on {{date}}":"@{{screen_name}} {{date}} tarihinde retweetledi","Retweeted by {{{user}}}":"{{{user}}} retweetledi",Sep:"Eylül","This account is protected":"Bu hesap korumalıdır","Verified Account":"Onaylanmış Hesap","View on Twitter":"Twitter'da görüntüle",ltr:"ltr",now:"şimdi","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} saat","{{time_minutes}} mins":"{{time_minutes}} dk","{{time_seconds}} secs":"{{time_seconds}} sn"},da:{"1 day":"1 dag","1 hr":"1 time","1 min":"1 min","in reply to @{{screen_name}}":"som svar til @{{screen_name}}",AM:"AM",Apr:"apr",Aug:"aug",Dec:"dec",Favorite:"Føj til foretrukne",Feb:"feb",Jan:"jan",Jul:"jul",Jun:"jun",Mar:"mar",May:"maj","New Tweets":"Nye tweets",Nov:"nov",Oct:"okt",PM:"PM",Reply:"Svar",Retweet:"Retweet","Retweeted by @{{screen_name}} on {{date}}":"Retweetet af @{{screen_name}} den {{date}}","Retweeted by {{{user}}}":"Retweetet af {{{user}}}",Sep:"sep","This account is protected":"Denne konto er beskyttet","Verified Account":"Verificeret konto","View on Twitter":"Vis på Twitter",ltr:"ltr",now:"nu","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} timer","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} sek"},no:{"1 day":"1 dag","1 hr":"1 t","1 min":"1 min","in reply to @{{screen_name}}":"som svar til @{{screen_name}}",AM:"AM",Apr:"apr",Aug:"aug",Dec:"des",Favorite:"Favoritt",Feb:"feb",Jan:"jan",Jul:"juli",Jun:"juni",Mar:"mar",May:"mai","New Tweets":"Nye tweets",Nov:"nov",Oct:"okt",PM:"PM",Reply:"Svar",Retweet:"Retweet","Retweeted by @{{screen_name}} on {{date}}":"Retweetet av @{{screen_name}} den {{date}}","Retweeted by {{{user}}}":"Retweetet av {{{user}}}",Sep:"sep","This account is protected":"Denne kontoen er beskyttet","Verified Account":"Verifisert konto","View on Twitter":"Vis på Twitter",ltr:"ltr",now:"nå","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} t","{{time_minutes}} mins":"{{time_minutes}} min","{{time_seconds}} secs":"{{time_seconds}} sek"},nl:{"1 day":"1 dag","1 hr":"1 uur","1 min":"1 minuut","in reply to @{{screen_name}}":"als antwoord op @{{screen_name}}",AM:"'s ochtends",Apr:"april",Aug:"augustus",Dec:"december",Favorite:"Toevoegen aan favorieten",Feb:"februari",Jan:"januari",Jul:"juli",Jun:"juni",Mar:"maart",May:"mei","New Tweets":"Nieuwe tweets",Nov:"november",Oct:"oktober",PM:"'s middags",Reply:"Beantwoorden",Retweet:"Retweeten","Retweeted by @{{screen_name}} on {{date}}":"Geretweet door @{{screen_name}} op {{date}}","Retweeted by {{{user}}}":"Geretweet door {{{user}}}",Sep:"september","This account is protected":"Dit is een afgeschermd account","Verified Account":"Geverifieerd account","View on Twitter":"Op Twitter weergeven",ltr:"Itr",now:"nu","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour24}}:{{minute}}:{{second}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} uur","{{time_minutes}} mins":"{{time_minutes}} minuten","{{time_seconds}} secs":"{{time_seconds}} seconden"},hu:{"1 day":"1 nap","1 hr":"1 óra","1 min":"1 perc","in reply to @{{screen_name}}":'válasz neki: @{{screen_name}}',AM:"de.",Apr:"Ápr",Aug:"Aug",Dec:"Dec",Favorite:"Kedvenc",Feb:"Feb",Jan:"Jan",Jul:"Júl",Jun:"Jún",Mar:"Márc",May:"Máj","New Tweets":"Új Tweetek",Nov:"Nov",Oct:"Okt",PM:"du.",Reply:"Válasz",Retweet:"Retweet","Retweeted by @{{screen_name}} on {{date}}":"Retweetelte: @{{screen_name}} ekkor: {{date}}","Retweeted by {{{user}}}":"Retweetelte: {{{user}}}",Sep:"Szept","This account is protected":"Ez a fiók védett","Verified Account":"Hitelesített felhasználó","View on Twitter":"Megtekintés Twitteren",ltr:"ltr",now:"most","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{year}} {{month}} {{date}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_month}} {{time_date}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_year}} {{time_month}} {{time_date}}","{{time_hours}} hrs":"{{time_hours}} óra","{{time_minutes}} mins":"{{time_minutes}} perc","{{time_seconds}} secs":"{{time_seconds}} másodperc"},fa:{"1 day":"١ روز","1 hr":"یک ساعت","1 min":"یک دقیقه","in reply to @{{screen_name}}":'در پاسخ به @{{screen_name}}',AM:"ق.ظ",Apr:"آوریل",Aug:"آگوست",Dec:"دسامبر",Favorite:"برگزیدن",Feb:"فوریه",Jan:"ژانویه",Jul:"ژوئیه",Jun:"ژوئن",Mar:"مارس",May:"مه","New Tweets":"توییت‌های تازه",Nov:"نوامبر",Oct:"اکتبر",PM:"ب.ظ",Reply:"پاسخ",Retweet:"بازتوییت","Retweeted by @{{screen_name}} on {{date}}":"بازتوییت شده توسط @{{screen_name}} در {{date}}","Retweeted by {{{user}}}":"بازتوییت شده توسط {{{user}}}",Sep:"سپتامبر","This account is protected":"این حساب حفاظت‌شده است","Verified Account":"حساب تایید شده","View on Twitter":"مشاهده در توییتر",ltr:"rtl",now:"اکنون","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} ساعت","{{time_minutes}} mins":"{{time_minutes}} دقیقه","{{time_seconds}} secs":"{{time_seconds}} ثانیه"},ar:{"1 day":"يوم واحد","1 hr":"ساعة واحدة","1 min":"دقيقة واحدة","in reply to @{{screen_name}}":"ردًا على @{{screen_name}}",AM:"صباحًا",Apr:"أبريل",Aug:"أغسطس",Dec:"ديسمبر",Favorite:"تفضيل",Feb:"فبراير",Jan:"يناير",Jul:"يوليو",Jun:"يونيو",Mar:"مارس",May:"مايو","New Tweets":"تغريدات جديدة",Nov:"نوفمبر",Oct:"أكتوبر",PM:"مساءً",Reply:"رَد",Retweet:"إعادة تغريد","Retweeted by @{{screen_name}} on {{date}}":"مُعاد تغريدها بواسطة @{{screen_name}} في {{date}}","Retweeted by {{{user}}}":"مُعاد تغريدها بواسطة {{{user}}}",Sep:"سبتمبر","This account is protected":"هذا الحساب محميّ","Verified Account":"حساب موثّق","View on Twitter":"الإظهار على تويتر",ltr:"rtl",now:"الآن","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (utc)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} ساعة","{{time_minutes}} mins":"{{time_minutes}} دقيقة","{{time_seconds}} secs":"{{time_seconds}} ثانية"},ur:{"1 day":"ایک دن","1 hr":"ا گھنٹہ","1 min":"ایک منٹ","in reply to @{{screen_name}}":"کے جواب میں @{{screen_name}}",AM:"صبح",Apr:"اپریل",Aug:"اگست",Dec:"دسمبر",Favorite:"پسند کریں",Feb:"فروری",Jan:"جنوری",Jul:"جولائی",Jun:"جون",Mar:"مارچ",May:"مئی","New Tweets":"نئی ٹویٹس",Nov:"نومبر",Oct:"اکتوبر",PM:"شام",Reply:"جواب دیں",Retweet:"ریٹویٹ کریں","Retweeted by @{{screen_name}} on {{date}}":"@{{screen_name}} نے ریٹویٹ کیا بتاریخ {{date}}","Retweeted by {{{user}}}":"{{{user}}} نے ریٹویٹ کیا",Sep:"ستمبر","This account is protected":"یہ اکاؤنٹ محفوظ ہے.","Verified Account":"تصدیق شدہ اکاؤنٹ","View on Twitter":"ٹوئٹر پر دیکھیں",ltr:"rtl",now:"ابھی","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} گھنٹے","{{time_minutes}} mins":"{{time_minutes}} منٹ","{{time_seconds}} secs":"{{time_seconds}} سیکنڈز"},he:{"1 day":"יום אחד","1 hr":"שעה אחת","1 min":"דקה אחת","in reply to @{{screen_name}}":"@{{screen_name}}בתגובה ל־",AM:"לפני הצהריים",Apr:"אפר׳",Aug:"אוג׳",Dec:"דצמ׳",Favorite:"אהוב",Feb:"פבר׳",Jan:"ינו׳",Jul:"יולי",Jun:"יוני",Mar:"מרץ",May:"מאי","New Tweets":"ציוצים חדשים",Nov:"נוב׳",Oct:"אוק׳",PM:"אחר הצהריים",Reply:"תגובה",Retweet:"לצייץ מחדש","Retweeted by @{{screen_name}} on {{date}}":"צויץ מחדש על־ידי @{{screen_name}} ב-{{date}}","Retweeted by {{{user}}}":"צויץ מחדש על־ידי {{{user}}}",Sep:"ספט׳","This account is protected":"חשבון זה נעול","Verified Account":"חשבון מאומת","View on Twitter":"הצגה בטוויטר",ltr:"rtl",now:"כעת","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} ב{{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)","{{time_date}} {{time_month}}":"{{time_date}} ב{{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} ב{{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} שעות","{{time_minutes}} mins":"{{time_minutes}} דקות","{{time_seconds}} secs":"{{time_seconds}} שניות"},th:{"1 day":"1 วัน","1 hr":"1 ชม.","1 min":"1นาที","in reply to @{{screen_name}}":"ตอบกลับถึง @{{screen_name}}",AM:"ก่อนเที่ยง",Apr:"เม.ย.",Aug:"ส.ค.",Dec:"ธ.ค.",Favorite:"ชื่นชอบ",Feb:"ก.พ.",Jan:"ม.ค.",Jul:"ก.ค.",Jun:"มิ.ย.",Mar:"มี.ค.",May:"พ.ค.","New Tweets":"ทวีตใหม่",Nov:"พ.ย.",Oct:"ต.ค.",PM:"หลังเที่ยง",Reply:"ตอบกลับ",Retweet:"รีทวีต","Retweeted by @{{screen_name}} on {{date}}":"ถูกรีทวีตโดย @{{screen_name}} ใน {{date}}","Retweeted by {{{user}}}":"ถูกรีทวีตโดย {{{user}}}",Sep:"ก.ย.","This account is protected":"บัญชีนี้ถูกป้องกันไว้","Verified Account":"บัญชีที่ยืนยันแล้ว","View on Twitter":"ดูบนทวิตเตอร์",ltr:"ltr",now:"ตอนนี้","{{date}} {{month}} {{year}}, {{hour12}}:{{minute}}:{{second}} {{amPm}} (UTC)":"{{date}} {{month}} {{year}} เวลา {{hour24}}:{{minute}}:{{second}} (เวลาสากล)","{{time_date}} {{time_month}}":"{{time_date}} {{time_month}}","{{time_date}} {{time_month}} {{time_year}}":"{{time_date}} {{time_month}} {{time_year}}","{{time_hours}} hrs":"{{time_hours}} ชม.","{{time_minutes}} mins":"{{time_minutes}} นาที","{{time_seconds}} secs":"{{time_seconds}} วินาที"}},mixins={},emit=$({});!function(exports){function generateEntityReplacements(entities,linkifier,replacements){var i=0,e,l;if(!entities)return;for(l=entities.length;iday&&diff"+(s.before_tweet_element||"");s.after_tweet_element=(s.after_tweet_element||"")+""}if(s.error&&s.request){s._tweet_not_found=!0;s.user={};s._tweet_element="div";return s}s._linkTarget=this.settings.linkTarget;if(s.from_user_id){s.user={id:$.fixedID(s,"from_user_id"),screen_name:s.from_user,name:s.from_user_name,profile_image_url_https:s.profile_image_url_https,"protected":!1,verified:!1};s.in_reply_to_screen_name=s.to_user;s.in_reply_to_user_id=$.fixedID(s,"to_user_id")}if(s.retweeted_status){ogStatus=s;screenNameUrl=_(twt.urls.profile,{screen_name:ogStatus.user.screen_name,user_id:$.fixedID(ogStatus.user,"id")});user=$.to_html("@{{screen_name}}",{screen_name_url:screenNameUrl,screen_name:ogStatus.user.screen_name,link_format:this.settings.linkTarget});s=s.retweeted_status;s._as_timeline=ogStatus._as_timeline;s.before_tweet_element=ogStatus.before_tweet_element||"";s.after_tweet_element=ogStatus.after_tweet_element||"";s._linkTarget=this.settings.linkTarget;s._retweeted=_("Retweeted by {{{user}}}",{user:user});s._retweeted_at=_("Retweeted by @{{screen_name}} on {{date}}",{screen_name:ogStatus.user.screen_name,date:twt.formattedDate(ogStatus.created_at)});s._was_retweeted=globals.userId==$.fixedID(ogStatus.user,"id")}s.user._has_badges=s.user["protected"]||s.user.verified;s._reply=_("Reply");s._retweet=_("Retweet");s._favorite=_("Favorite");s._verified_text=_("Verified Account");s._protected_text=_("This account is protected");this.rtl(s);inReplyToUrl=_(twt.urls.permalink,{screen_name:s.in_reply_to_screen_name||"",tweet_id:$.fixedID(s,"in_reply_to_status_id")});s.in_reply_to_screen_name&&s._as_timeline&&(s._in_reply_to=_("in reply to @{{screen_name}}",{in_reply_to_url:inReplyToUrl,screen_name:inReplyToUrl.screen_name,link_format:this.settings.linkTarget}));s._via_source=_("Tweeted via {{{source}}}",{source:s.source});s=iter&&$.isType("function",iter)?iter(s):s;s._format=s._format||"twt-"+this.settings.format;s._touch_device=twt.isTouchDevice();s.id=$.fixedID(s,"id");s._show_follow_button=!s._as_timeline&&this.settings.showFollowButton;s._web_intents={_enabled:this.settings.popupWebIntents,_related:this.settings.related,_partner:this.settings.partner,_product:this.settings.product};s.rendered_text=s.rendered_text||twt.linkify(s);s.user.profile_image_url_https&&(s.profile_image_url_mini=s.user.profile_image_url_https.replace(/_normal\./,"_mini."));s._actions=s._actions||$.to_html(twt.templates.actions,s);s.rendered_time=$.to_html(twt.templates.time,{time:s.time||twt.timeAgo(s.created_at,this.settings.showRelativeTimes),iso_time:twt.isoDate(s.created_at),formatted_time:twt.formattedDate(s.created_at),relative:this.settings.showRelativeTimes});s._view_permalink=s._as_timeline?_("View on Twitter"):s.rendered_time;s._permalink_url=_(twt.urls.permalink,{screen_name:s.user.screen_name,user_id:s.user.id,tweet_id:s.id});s._screen_name_url=_(twt.urls.profile,{screen_name:s.user.screen_name,user_id:$.fixedID(s.user,"id")});this.settings.showMedia&&this.formatMedia(s)&&(s[(s._as_timeline?"timeline":"tweet")+"_media"]=$.to_html(twt.templates.media,$.extend({_linkTarget:twt.settings.linkTarget},s.entities)));s._show_errors=this.settings.showErrors;s._always_show_actions=this.settings.showActions;s._render_actions=this.settings.renderActions;s._tweet_element=this.settings.tweetElement||"div";"blockquote"==s.tweet_element&&(s._root_attr="cite='https://twitter.com/"+s.user.screen_name+"/status/"+s.id+"'");return s};Tweet.prototype.rtl=function(s){s._rtl=_("ltr")=="rtl";s._fbtn_align=s._rtl?"left":"right";s._rtl_format=s._rtl&&this.settings.format&&"twt-rtl-"+this.settings.format};Tweet.prototype.formatMedia=function(s){var i=0,match,url,id,l;s._pin_media=this.settings.showMedia;if(!s._pin_media||!s.entities)return;if(s.entities.media&&s.entities.media.length){s.entities._permalink_url=s._permalink_url;return s.entities._type_photo=!0}};exports.tweet=function(object,options){return new Tweet(object,options)};exports.tweet.settings={border:!0,lang:null,limit:!1,linkTarget:"_blank",popupWebIntents:!0,showActions:!0,showErrors:!0,showFollowButton:!0,showMedia:!1,showRelativeTimes:!1,format:"auto",related:null,renderActions:!0};exports.tweet.fn=Tweet.prototype}(twt);!function(){function getEventType(element){var classes=element.className.split(" "),type;for(var i=0,l=classes.length;iTweetbot for iΟS","@ThatJPWing We’re discussing this at my place next week. I’ll shoot you an invite.","","","","" +"982511683561111552","","","2018-04-07 06:53:34 +0000","Tweetbot for iΟS","RT @MH3129: .@Twitter, I am blind and I rely on third-party apps like @Twitterrific and OpenTween because your website and iOS app are not…","982336815553241088","15738612","2018-04-06 19:18:42 +0000","" +"982294566320525312","","","2018-04-06 16:30:49 +0000","Tweetbot for iΟS","RT @chockenberry: If you love your third-party Twitter app, I’ve got some really shitty news for you: https://t.co/W1C21QSnZW + +#BreakingMy…","982285605932482560","36183","2018-04-06 15:55:13 +0000","http://apps-of-a-feather.com,http://apps-of-a-feather.com" +"982294426306228224","","","2018-04-06 16:30:16 +0000","Tweetbot for iΟS","Without 3rd party apps I don’t think I’d really use Twitter anymore. I read tweets in chronological order, not backwards. @TwitterDev: please consider supporting the apps that made you what you are now. #BreakingMyTwitter","","","","" +"982260566520578048","981957929791344641","22920215","2018-04-06 14:15:43 +0000","Tweetbot for iΟS","@nicklockwood @Gurpartap Pretty sure that proposal came from the community, not Apple.","","","","" +"981325823293603840","981226271739990016","22406953","2018-04-04 00:21:23 +0000","Tweetbot for iΟS","@macatbook They can hold your Aeron too if you’re going to a LAN party.","","","","" +"979375105695346688","979291880449077248","33493","2018-03-29 15:09:55 +0000","Tweetbot for iΟS","@peterc You could always spend a small fortune for a black version of Apple’s small keyboard from Colorware.","","","","" +"979156927757340672","979045721897762816","27302287","2018-03-29 00:42:58 +0000","Tweetbot for iΟS","@jacobrothstein @lucperkins Back up and backup. Good luck with that. It’s like trying to get people to stop mixing up homophones. + +Also on a slight tangent there’s “beg the question”. An old favourite.","","","","" +"975970837676228613","","","2018-03-20 05:42:35 +0000","Twitter Lite","RT @josh_wingrove: Canada released a report on legal weed today. The authors needed a way to compare the maximum size of a licensed ""micro-…","975785933005099009","164075542","2018-03-19 17:27:50 +0000","https://twitter.com/josh_wingrove/status/975785933005099009/photo/1" +"973953715538345984","","","2018-03-14 16:07:15 +0000","Tweetbot for iΟS","We drink. https://t.co/PBCC5ywvX9","","","","https://twitter.com/jeremyckahn/status/968845690175655936" +"973780157080260608","","","2018-03-14 04:37:36 +0000","Tweetbot for iΟS","RT @snarfmason: Reading @mattly on timezones was a nice reminder that time zones exist for a reason, concepts of time like ""noon"" are meani…","973612127054213120","108814849","2018-03-13 17:29:54 +0000","https://lyonheart.us/articles/understanding-time-zones/" +"972500605649367040","","","2018-03-10 15:53:07 +0000","Tweetbot for iΟS","We have a choice about how to react to things. A lot of the time our reactions only make things worse. Pay attention to your reactions. https://t.co/zcQsSpeIv6","","","","https://twitter.com/chriseidhof/status/972468057636573184" +"971202944912666624","","","2018-03-07 01:56:40 +0000","Tweetbot for iΟS","RT @chronic: random fun fact: I believe some of the binaries were code signed by Apple employee dev certs in that first build. one was a gu…","971158111758241794","86315276","2018-03-06 22:58:31 +0000","http://mac.com" +"971060334214627328","971059034198593537","770391","2018-03-06 16:29:59 +0000","Tweetbot for iΟS","@McCarron @jamesthomson What’s the uncompressed size? Xcode 9 must be at least 4x the size at almost 10 GB these days.","","","","" +"970058679914455040","970045215661805569","231756759","2018-03-03 22:09:46 +0000","Tweetbot for iΟS","@olebegemann @steipete @sebastienmichoy @PSPDFKit Treat people like smart adults. Give them the info and let them decide. This trend of withholding dates is so annoying. Let’s hope it’s a fad. + +People have been dating writing for centuries. Knowing when things were written is relevant.","","","","" +"969728586318995456","","","2018-03-03 00:18:06 +0000","Tweetbot for iΟS","RT @_inside: 🤓 post alert: How I discovered Instagram's upcoming video calling feature on iOS https://t.co/Dpv2dfGCWk","969617015177662464","8307912","2018-03-02 16:54:45 +0000","https://medium.com/@guilhermerambo/how-i-discovered-instagrams-upcoming-video-calling-feature-on-ios-934d7085da57,https://medium.com/@guilhermerambo/how-i-discovered-instagrams-upcoming-video-calling-feature-on-ios-934d7085da57" +"969268231386021888","","","2018-03-01 17:48:49 +0000","Tweetbot for iΟS","I don’t think I have a use for this right now but what a great idea and execution. Regexes on permissions is a cool and nerdy touch. https://t.co/IfQnuu4ERL","","","","https://twitter.com/dmartincy/status/969210115806171141" +"968367541893713920","","","2018-02-27 06:09:48 +0000","Tweetbot for iΟS","RT @chronic: I am most curious about this one. iOS apps are generally not supposed to do much in the background, yet the packet tunnel prov…","968256765744775168","86315276","2018-02-26 22:49:36 +0000","https://twitter.com/chronic/status/968255384401203200" +"965318111745400832","965301484144377856","894911","2018-02-18 20:12:27 +0000","Tweetbot for iΟS","@JimRoepcke That’s some cartoon luck right there. Hope it’s actually all ok!","","","","" +"964539615980945408","964449981070536705","1530096708","2018-02-16 16:38:59 +0000","Tweetbot for iΟS","@jesslynnrose Writing scripts for pirch and mIRC chat clients in the mid 90s.","","","","" +"964179685545467904","","","2018-02-15 16:48:45 +0000","Tweetbot for iΟS","Even if you’re using open source libraries and the connection is encrypted end-to-end you could be attacked if you’re not auditing the code (and let’s be honest, most of us are not and probably don’t have time to). + +Don’t take on new dependencies lightly. https://t.co/q4vg46At47","","","","https://twitter.com/KrauseFx/status/964169059204870144" +"963942726214418432","963908703064920064","856731","2018-02-15 01:07:09 +0000","Tweetbot for iΟS","@jterhorst @codinghorror Maybe someone used stacksort on https://t.co/0CUjKlKfh0 + +https://t.co/O2anxXxeh1","","","","http://facebook.com,https://gkoberger.github.io/stacksort/" +"963879956530024449","963873836050497536","11973362","2018-02-14 20:57:44 +0000","Tweetbot for iΟS","@typeoneerror lol! Perhaps only simple once it’s been explained. I should write a short article on auto-layout tricks.","","","","" +"963855862295969792","963852828576923649","4777951","2018-02-14 19:21:59 +0000","Tweetbot for Mac","The solution is pretty simple too, it’s just knowing how to set it all up. https://t.co/DpS59moflQ","","","","https://twitter.com/_sjs/status/963855862295969792/photo/1" +"963852828576923649","","","2018-02-14 19:09:56 +0000","Tweetbot for Mac","4 years later I’m still learning auto-layout. Today I figured out how to get a scroll view to hug a multiline label, and have the scroll view expand to fill the available height before scrolling. + +And the solution is way better than just reverting to manual layout (to me anyway).","","","","" +"963118945052995585","963118798474752000","22961921","2018-02-12 18:33:45 +0000","Tweetbot for iΟS","@ecetweets Yowzers!","","","","" +"963112562127548416","963099381112233985","22961921","2018-02-12 18:08:23 +0000","Tweetbot for iΟS","@ecetweets I haven’t used one of these personally but at that price you might want to check out waterproof cases for a camera you already have. REI or B&H probably carry them!","","","","" +"956982991846178818","956980409903988736","3258316237","2018-01-26 20:11:39 +0000","Tweetbot for iΟS","@slava_pestov @ematejska I’m so excited about the gains! Big improvement to my daily work here. 🙏🏼","","","","" +"956959708539006976","956952639593357312","824415437496610816","2018-01-26 18:39:08 +0000","Tweetbot for Mac","@ematejska @slava_pestov That was a debug build with no optimization, new build system. + +Interestingly the release build with WMO had basically no change, from 150s to 155s. + +Mixed iOS app with 40k Swift lines and 18k ObjC. Fair number of extensions in Swift. And 2 or 3 ObjC Pods that compile in ~15s.","","","","" +"956876563584200704","956593985241325568","824415437496610816","2018-01-26 13:08:45 +0000","Tweetbot for iΟS","@ematejska @slava_pestov Clean build of my project went from 210+ seconds down to 95s!","","","","" +"956653107282288641","956650971307872256","2613731759","2018-01-25 22:20:49 +0000","Tweetbot for iΟS","@PreusslerBerlin @travisjeffery Yeah that’s fair. A lot of sites aren’t sensitive and don’t necessarily need to do this. I agree that security is a weak argument for the practice.","","","","" +"956648180543717376","956640309546504192","2613731759","2018-01-25 22:01:14 +0000","Tweetbot for iΟS","@PreusslerBerlin @travisjeffery It’s more about privacy than security. Should I be able to find out if a username or email exists on any website without the password? Think political sites, porn, etc. It’s a privacy hole.","","","","" +"953819493976829952","953807540927700992","11559032","2018-01-18 02:41:03 +0000","Tweetbot for iΟS","@jfahrenkrug It’s really good!","","","","" +"953669667125522433","953619143219171329","87923686","2018-01-17 16:45:41 +0000","Tweetbot for iΟS","@LouisDhauwe @stroughtonsmith @BrydgeKeyboards Unless you’re imagining an iOS app 😜","","","","" +"951872765019107329","951872225908490245","14169916","2018-01-12 17:45:26 +0000","Tweetbot for iΟS","@jamesthomson File → Project Settings... (or Workspace Settings)","","","","" +"951871589263466497","951871197834293249","14169916","2018-01-12 17:40:46 +0000","Tweetbot for iΟS","@jamesthomson No problem! Be warned that there are good reasons it’s not the default yet. For me it’s been solid in 9.2 though.","","","","" +"951869869238071296","951851308742533120","14169916","2018-01-12 17:33:56 +0000","Tweetbot for iΟS","@jamesthomson I think it helps Swift more than ObjC, but you may see an improvement with the new build system (if you’re not using it already).","","","","" +"951869327224930304","951845006213566464","14308739","2018-01-12 17:31:47 +0000","Tweetbot for iΟS","@cheerskevin My understanding is that GPS is receive-only and cannot interfere with anything so it stays on. It’s surpsising but cool!","","","","" +"951514351352991744","951510480140554240","15614100","2018-01-11 18:01:14 +0000","Tweetbot for iΟS","@evadne I do! It blew my mind.","","","","" +"949485376799883265","","","2018-01-06 03:38:49 +0000","Tweetbot for iΟS","RT @stats_canada: 79% of Canadians just breathed a sigh of relief","949480217608966145","701267743","2018-01-06 03:18:19 +0000","" +"949314825804439552","","","2018-01-05 16:21:06 +0000","Tweetbot for iΟS","RT @Cupcakes_n_Rap: There's an insistence that we feel bad for small business owners, that we offer up the underpaid labour of the marginal…","948970087087853573","146317151","2018-01-04 17:31:14 +0000","" +"949314801640992768","","","2018-01-05 16:21:00 +0000","Tweetbot for iΟS","RT @Cupcakes_n_Rap: Anti- #15andFairness ppl simultaneously tweet at me ""don't like min wage? Get a better job! Education! Bootstraps!"" +& +""…","948969479714889728","146317151","2018-01-04 17:28:49 +0000","" +"949314752441868293","","","2018-01-05 16:20:49 +0000","Tweetbot for iΟS","RT @Cupcakes_n_Rap: 🇨🇦 +Ok, there's a lot of salty randos in my mentions telling me I obviously don't understand basic economics. +I'll expla…","948942199596703745","146317151","2018-01-04 15:40:25 +0000","" +"949050797521645568","949050635512463360","39398109","2018-01-04 22:51:57 +0000","Tweetbot for Mac","@alanzeino @rjchatfield Good to know. Thanks!","","","","" +"948952310029328384","948862004130918403","19316116","2018-01-04 16:20:36 +0000","Tweetbot for iΟS","@danmux @timbray Many of us are here because of an insatiable curiosity about how technology works.","","","","" +"948818894151561216","948626095099670528","39398109","2018-01-04 07:30:27 +0000","Tweetbot for iΟS","@alanzeino @rjchatfield New build system? WMO?","","","","" +"948816157758308352","948634197576396800","1855381","2018-01-04 07:19:34 +0000","Tweetbot for iΟS","@artman Thank you! 🙏🏼","","","","" +"948588780960694272","948584641786556416","4777951","2018-01-03 16:16:03 +0000","Tweetbot for iΟS","@artman and this: https://t.co/y4YemlrCaJ","","","","https://twitter.com/tgaul/status/948577918535401472" +"948584641786556416","948315697746100224","1855381","2018-01-03 15:59:37 +0000","Tweetbot for iΟS","@artman Please share more details. How many files? 2016 MBP is close to my 2014 5k iMac in perf, and: https://t.co/JYuXxWHoN7","","","","https://twitter.com/qlaas/status/946479173798957056" +"946480417674104832","946479173798957056","784702675418046464","2017-12-28 20:38:10 +0000","Tweetbot for iΟS","@qlaas That is very good! I may have to get one. I have the same iMac so this is the best benchmark result I could have hoped to find.","","","","" +"946475172877410304","946475033907654656","784702675418046464","2017-12-28 20:17:20 +0000","Tweetbot for iΟS","@qlaas Thank you!","","","","" +"946438739852529664","946389100617183232","784702675418046464","2017-12-28 17:52:34 +0000","Tweetbot for iΟS","@qlaas @merowing_ @krzyzanowskim @therealkerni Fresh build time is pretty underwhelming. Does using the new build system improve it?","","","","" +"944082958197047297","943928521184780288","2227377990","2017-12-22 05:51:32 +0000","Tweetbot for iΟS","@supertopsquid I’ve seen that OLED black jelly lag effect too. Someone had a black avatar on Twitter and it was very obvious. Unsure if it’s normal, but I’ve seen it several times. Minor issue but I hope they fix it on future displays.","","","","" +"944059389136138241","","","2017-12-22 04:17:52 +0000","Tweetbot for iΟS","RT @DothTheDoth: In honor of the winter solstice I also will be cold, distant & filled with darkness.","943836458779111424","571963220","2017-12-21 13:32:02 +0000","" +"944040180536639488","","","2017-12-22 03:01:33 +0000","Tweetbot for iΟS","RT @RyanSmithAT: @IanCutress The more we min-max phone performance - the more we ride the edge of what's possible in a phone-sized power a…","943939148477489152","2750837071","2017-12-21 20:20:05 +0000","" +"942792869193977856","","","2017-12-18 16:25:10 +0000","Tweetbot for iΟS","One of the hardest things when close to shipping something is leaving the well-tested thing alone, even though you’d love to cram in some more polish or features at the last minute.","","","","" +"941552415852994560","941485958557343744","7213362","2017-12-15 06:16:03 +0000","Tweetbot for iΟS","@Javi @myell0w @mj_langford @alexito4 I have ended up with that once or twice! I’m sure it doesn’t work for any requirements, but for simple cases I’m digging it.","","","","" +"941441861268279296","941441088123944960","4777951","2017-12-14 22:56:45 +0000","Tweetbot for iΟS","Maybe I should write up an article about this. Auto-layout tip for nibs that support the X without resorting to code: https://t.co/1HCP69nyoV","","","","https://twitter.com/_sjs/status/941441088123944960" +"941441088123944960","941339622470180865","7213362","2017-12-14 22:53:41 +0000","Tweetbot for iΟS","@Javi @myell0w @mj_langford @alexito4 Use multiple constraints with priority, so it’s always >= margin from the bottom (high priority), and also always == bottom of the safe area (medium priority). This will work on any device. Collapses margin on X. + +(I hope I explained it clearly, it is a bit tricky.)","","","","" +"940743403813269504","940427759200776192","74837444","2017-12-13 00:41:20 +0000","Tweetbot for iΟS","@Badgerops ... oh dear 🤯","","","","" +"939158881518854146","939150104795189250","18247541","2017-12-08 15:45:00 +0000","Tweetbot for iΟS","@tapbot_paul Time to use that unfollow instead. Some people are lost causes. Just give up on them and be happier.","","","","" +"937350646033874944","937350342903083009","74837444","2017-12-03 15:59:43 +0000","Tweetbot for iΟS","@Badgerops Fair enough! However you did say “Come at me!” :)","","","","" +"937349627149352960","937201983856844800","74837444","2017-12-03 15:55:40 +0000","Tweetbot for iΟS","@Badgerops This is a sad celebration of ignorance. There’s no black and white. Capitalism doesn’t work either. You need to come live in the grey area of reason where we have a mix of governing philosophies. + +Every country needs social programs. Every person needs social programs.","","","","" +"935900277164580864","935890491551436802","235707661","2017-11-29 15:56:28 +0000","Tweetbot for iΟS","@Miller_Geek @jessfraz Apple didn’t tout it, some rando in the forum did. You didn’t even look at the damn thread and here you are spouting nonsense.","","","","" +"935582192930996224","752829250198245376","2688148651","2017-11-28 18:52:31 +0000","Tweetbot for iΟS","@AirbnbHelp @rstml Well everyone else recommends that you fix your damn website. That’s not how the web works.","","","","" +"935376248255102976","935240368840433664","1628814223","2017-11-28 05:14:10 +0000","Tweetbot for iΟS","@thenatekirby Sentry is pretty good. I don’t have a ton of experience with it but I like it so far. Supports many platforms and lets you log any event.","","","","" +"933548444727119873","933516725315760129","15052455","2017-11-23 04:11:08 +0000","Tweetbot for iΟS","@praeclarum They make really good boilers too. If you always have hot water you can make coffee in a couple of minutes any time. It’s really luxurious.","","","","" +"932287516308226048","932284558166450182","18920834","2017-11-19 16:40:39 +0000","Tweetbot for iΟS","@jurieongames No that’s fair. I’m sure they’re in a support document somewhere but are not discoverable at all. You pretty much have to be told about them to know.","","","","" +"932283356330389504","932282788270755847","18920834","2017-11-19 16:24:07 +0000","Tweetbot for iΟS","@jurieongames These ones here: https://t.co/sMzoCkbE3S + +StackOverflow clobbers at least ctrl-b.","","","","https://jblevins.org/log/kbd" +"930271981349384192","","","2017-11-14 03:11:38 +0000","Tweetbot for iΟS","RT @mikeash: Randall Munroe has spyware installed ON MY VERY SOUL. https://t.co/3yi2xTMr94","930248961859948544","8142952","2017-11-14 01:40:10 +0000","https://xkcd.com/1915/,https://xkcd.com/1915/" +"930122602500177920","930122120373272576","4777951","2017-11-13 17:18:03 +0000","Tweetbot for iΟS","@merowing_ So how’s the phone so far? Heavy but feels really nice right? I love the steel band.","","","","" +"930122120373272576","930121979583135745","289246577","2017-11-13 17:16:08 +0000","Tweetbot for iΟS","@merowing_ Nice. I like their watch app for 2fa codes too.","","","","" +"930121882069753857","930114772346994689","289246577","2017-11-13 17:15:12 +0000","Tweetbot for iΟS","@merowing_ You need a better app. Try 1Password or Authy.","","","","" +"929429690158157825","","","2017-11-11 19:24:40 +0000","Twitterrific for Mac","Quickly kill apps on the iPhone X: enter multitasking, tap and hold to show the close icons, but ignore those! Instead, keep your finger down and fling up to kill. You can keep flinging other apps too. + +@atpfm","","","","" +"928476236342378496","928475330033041408","436117419","2017-11-09 04:15:59 +0000","Tweetbot for iΟS","@ian_mcdowell Yes but you also have to use a launch xib. We were almost spared from dealing with it. Until it wasn’t zero (landscape app so on the sides).","","","","" +"928458241553477632","","","2017-11-09 03:04:29 +0000","Twitter for iPhone","safeAreaInsets should be zero in the compat mode on the X, but isn’t. Navbars are all wrong. Going nuclear with this one. #yolo #uikit https://t.co/7n67GuZBKf","","","","https://twitter.com/_sjs/status/928458241553477632/photo/1" +"927371338527817729","927315573939298304","14088961","2017-11-06 03:05:31 +0000","Tweetbot for iΟS","@mutle @neilcybart Objectively, it has worse battery life under load. The other changes I’m mostly fine with.","","","","" +"927277111554875392","927256186017239046","167398227","2017-11-05 20:51:06 +0000","Tweetbot for iΟS","@bzamayo @stroughtonsmith my girlfriend is dying laughing so something happened... but no hearts here either","","","","" +"926832670599823361","926822985943707648","35067687","2017-11-04 15:25:03 +0000","Tweetbot for iΟS","@CesarKuriyama Some of these are so good! https://t.co/YV01tkTrrF","","","","https://streamable.com/y69ud" +"925926543464865792","925794915182714880","4777951","2017-11-02 03:24:25 +0000","Tweetbot for iΟS","@Tally1971 @_inside @nidstigator My shipping labels have been created. Searched UPS reference by phone number.","","","","" +"925794915182714880","925758884572225536","125282762","2017-11-01 18:41:22 +0000","Tweetbot for iΟS","@Tally1971 @_inside @nidstigator I’ve had this happen in Canada. 1-2 days before it’s supposed to arrive status changes to Shipped and it originates from 🇨🇦 and not 🇨🇳.","","","","" +"923716851103801344","923716657746362368","15204679","2017-10-27 01:03:53 +0000","Tweetbot for iΟS","@brynbodayle I do but only for a couple days and I swear it happened before then too. It’s pretty infrequent for me.","","","","" +"923715946564411393","923601283176468480","15204679","2017-10-27 01:00:18 +0000","Tweetbot for iΟS","@brynbodayle Yes!","","","","" "918538608616685569","918505627248406528","6738452","2017-10-12 18:07:24 +0000","Tweetbot for iΟS","@peterb What makes it the best for you?","","","","" "915658327517839360","915622086151950336","74837444","2017-10-04 19:22:12 +0000","Tweetbot for iΟS","@Badgerops Apparently it’s an issue interpreting some character encoding of AT&T on iOS. I hit the same thing this summer. https://t.co/NF97YAMu8o","","","","https://www.reddit.com/r/iphone/comments/4p9gwk/i_am_was_just_on_my_phone_and_my_carrier_switched/d6106gt/" "915228190800363522","915184475440664576","10752072","2017-10-03 14:52:59 +0000","Tweetbot for iΟS","@arrizer There are better 3rd party displays than these LGs. Far better.","","","","" @@ -669,7 +780,6 @@ All I needed was 33 years in the industry, nine years of blogging, and five pr "754101813830311937","754099885272539136","4777951","2016-07-15 23:54:17 +0000","Tweetbot for Mac","It has copying everywhere! Diff view, commit view, commit *list*, oh my!","","","","" "754099885272539136","","","2016-07-15 23:46:37 +0000","Twitter Web Client","Went to add copying to GitX and found that @pietbrauer's fork does it already! Guess I should upgrade Git2Go 👏🏼🍻 https://t.co/26s9HlZZKc","","","","https://github.com/nerdishbynature/gitx" "754023046139129856","754014901023023104","385193","2016-07-15 18:41:17 +0000","Tweetbot for Mac","@jim_rutherford Yeah I’ll have to make an effort to hang out with local devs more.","","","","" -"754003271560245248","","","2016-07-15 17:22:43 +0000","Twitter Web Client","RT @macatbook: @_sjs swift namespacing makes it difficult. I've been looking into it","754002466404839424","22406953","2016-07-15 17:19:31 +0000","" "754003244653830144","754002466404839424","22406953","2016-07-15 17:22:36 +0000","Twitter Web Client","@macatbook You act fast :) Do you think it's at least possible with the current version of Swift?","","","","" "753999034147155969","753713758258667521","4777951","2016-07-15 17:05:53 +0000","Tweetbot for Mac","Given the info in this WWDC session https://t.co/MTRBO3vSJL I wonder if Carthage or CocoaPods will be able to combine frameworks for us #iOS","","","","https://developer.apple.com/videos/play/wwdc2016/406/" "753997246346072065","","","2016-07-15 16:58:46 +0000","Tweetbot for Mac","RT @thinkgeek: Shout out to the Sams. Go give yours a hug! https://t.co/remFf5ge1V","753804541703827456","12611642","2016-07-15 04:13:02 +0000","https://twitter.com/thinkgeek/status/753804541703827456/photo/1,https://twitter.com/thinkgeek/status/753804541703827456/photo/1" @@ -1118,7 +1228,7 @@ https://t.co/XLIEY96X…","685905893255442432","21626062","2016-01-09 19:28:03 + "668626628247838722","","","2015-11-23 03:06:25 +0000","Tweetbot for iΟS","RT @magnetbox: Actually, it's pronounced ""jithub""...","668548192443600896","49583","2015-11-22 21:54:44 +0000","" "668113817222516736","","","2015-11-21 17:08:41 +0000","Tweetbot for iΟS","Real life Bastard Operator From Hell https://t.co/J2ANpqk3pH https://t.co/3oGlD7dJOv","","","","http://bofh.ntk.net/BOFH/,https://twitter.com/_pkill/status/667979636710572032" "668113402049396737","","","2015-11-21 17:07:02 +0000","Tweetbot for iΟS","RT @_pkill: Passive aggressive bash automation https://t.co/RnfRGMaM7v https://t.co/uWhqZ3ngWI","667979636710572032","286819419","2015-11-21 08:15:30 +0000","https://www.jitbit.com/alexblog/249-now-thats-what-i-call-a-hacker/,https://twitter.com/_pkill/status/667979636710572032/photo/1,https://www.jitbit.com/alexblog/249-now-thats-what-i-call-a-hacker/,https://twitter.com/_pkill/status/667979636710572032/photo/1" -"667793146437197824","667792725396340736","8142952","2015-11-20 19:54:27 +0000","Tweetbot for Mac","@mikeash I have a similar problem, https://t.co/i4IPVwtjH7 and https://t.co/aktdLHZkP9 links hang loading 90% of the time.","","","","https://twitter.com,http://t.co" +"667793146437197824","667792725396340736","8142952","2015-11-20 19:54:27 +0000","Tweetbot for Mac","@mikeash I have a similar problem, https://t.co/i4IPVwtjH7 and https://t.co/aktdLHZkP9 links hang loading 90% of the time.","","","","https://twitter.com,https://t.co" "667787431270182912","","15292261","2015-11-20 19:31:45 +0000","Tweetbot for Mac","@gregbate @snarfmason tunes for next game weekend https://t.co/PAeWheqrxV","","","","https://www.youtube.com/watch?v=_oUp_JjPJok" "667602881357328385","","","2015-11-20 07:18:25 +0000","iOS","I want something like this that can be operated via keyboard too. https://t.co/dZywyhXPPO","","","","https://twitter.com/_sjs/status/667602881357328385/photo/1" "667582870907555842","","22961921","2015-11-20 05:58:54 +0000","Tweetbot for iΟS","@ecetweets relevant to your canine interests https://t.co/ru5qq3QUZ3","","","","https://twitter.com/_sjs/status/667582870907555842/photo/1" @@ -1192,12 +1302,11 @@ now only pays for stack frame setup if not early re…","662082505579696128","15 "657217272029667328","","","2015-10-22 15:29:42 +0000","Tweetbot for Mac","10.11.1 fixed the bug causing my Mac’s external display to wake slowly and flicker on and off once or twice. Sounds small but was annoying.","","","","" "657019094214946816","655199931460812800","4777951","2015-10-22 02:22:13 +0000","Tweetbot for iΟS","Well @fyrite surprised me and picked up a couple! Woot! 🍺 https://t.co/tHF3uQgVpZ","","","","https://twitter.com/_sjs/status/657019094214946816/photo/1" "656939999854653441","656921205736247297","4777951","2015-10-21 21:07:55 +0000","Tweetbot for Mac","@_sjs Scratch that. Still broken. This is all I have left:🖕🏼","","","","" -"656921205736247297","","","2015-10-21 19:53:15 +0000","Tweetbot for Mac","Yep, same here. https://t.co/aktdLHZkP9 links work in Safari now. My “productivity” just increased 10x. https://t.co/zc3LgMhj7y","","","","http://t.co,https://twitter.com/gak_pdx/status/656913632630968320" +"656921205736247297","","","2015-10-21 19:53:15 +0000","Tweetbot for Mac","Yep, same here. https://t.co/aktdLHZkP9 links work in Safari now. My “productivity” just increased 10x. https://t.co/zc3LgMhj7y","","","","https://t.co,https://twitter.com/gak_pdx/status/656913632630968320" "656920992334286848","","","2015-10-21 19:52:24 +0000","Tweetbot for Mac","Find My Friends on the web before the Mac app (Messages integration doesn’t count). Is this a first for Apple? https://t.co/3r9YTP1Ezr","","","","https://twitter.com/MacRumors/status/656919747703930880" "656853426458882049","","","2015-10-21 15:23:55 +0000","Tweetbot for iΟS","Does the iPhone do HDR with the ISP? Why is it so much faster than other phones (and cameras)?","","","","" "656679670604103680","656661748057964544","14092590","2015-10-21 03:53:28 +0000","Tweetbot for iΟS","@drwave Apps will load resources from the network on demand, like swapping in a vm system. More storage is more cached data, less waiting.","","","","" "656646966856716288","","","2015-10-21 01:43:31 +0000","Tweetbot for iΟS","Got a new battery for my Nexus 5 on eBay. This one actually arrived, and now it’s alive again! Time to check out Android 6.","","","","" -"656637820946149376","","","2015-10-21 01:07:10 +0000","Tweetbot for iΟS","RT @jnadeau: I’ve gone to the liberty of assuming you’ve put infinite side effects into a property setter. Because of course you have.","656632360830537730","2741981","2015-10-21 00:45:29 +0000","" "656577301597974528","656576650176413696","108814849","2015-10-20 21:06:41 +0000","Tweetbot for iΟS","@snarfmason no wonder you drink so much","","","","" "656575412286320640","656574697736241152","108814849","2015-10-20 20:59:11 +0000","Tweetbot for iΟS","@snarfmason what can I say I’m a cheap bastard","","","","" "656573938470772736","","","2015-10-20 20:53:20 +0000","Tweetbot for iΟS","Neat. For the Luddites out there you can triple tap on your rusty old trackpad like me. https://t.co/f5Jkh2cQ26","","","","https://twitter.com/bwebster/status/656548312808448001" @@ -1972,7 +2081,7 @@ http://t.co/FlDm1inPQp http://t.co/dPH9wwY76Y”","","","","http://garfieldminus To me it seems like a purpose-built live streaming Twitter client.","","","","" "576492107172429824","576469626529284096","14538248","2015-03-13 21:16:43 +0000","Tweetbot for Mac","@robynpeterson @gittrich YES! I’m so glad someone got pile of poo 💩","","","","" -"576440863951204352","576440417660469249","8408512","2015-03-13 17:53:06 +0000","Tweetbot for Mac","@mrjjwright Or even something like the plist editor in Xcode. Or a better text format. Lots of better alternatives.","","","","" +"576440863951204352","","","2015-03-13 17:53:06 +0000","Tweetbot for Mac","@mrjjwright Or even something like the plist editor in Xcode. Or a better text format. Lots of better alternatives.","","","","" "576440002436993024","576436765915013120","14308739","2015-03-13 17:49:40 +0000","Tweetbot for Mac","@gisikw TOML looks promising but doesn’t appear to have caught on very much. The TOML gem I tried was really slow.","","","","" "576439758118789120","576436765915013120","14308739","2015-03-13 17:48:42 +0000","Tweetbot for Mac","@gisikw Having loops and such can be nice. I can see that working out well with the optional commas and all that.","","","","" "576435977775755265","","","2015-03-13 17:33:41 +0000","Tweetbot for Mac","JSON is a decent transport but I don’t like this trend of using it for config files and other things edited by humans. It’s not good.","","","","" @@ -2160,7 +2269,6 @@ Cabbie: ""Well let me tell you..."" blah blah blah","","","","" "555426810582691840","555426052424466432","108834413","2015-01-14 18:10:45 +0000","Twitter for iPhone","@karissabe That link doesn't work.","","","","" "555426455245434880","","216808077","2015-01-14 18:09:20 +0000","Twitter for iPhone","@Shawhelp Tried restarting the modem but no change.","","","","" "555426263825784832","","216808077","2015-01-14 18:08:35 +0000","Twitter for iPhone","@Shawhelp Been experiencing frequent connection interruptions of 3-10s the last couple weeks. Ethernet to modem direct on 3 machines. #yyj","","","","" -"555393642269921281","","","2015-01-14 15:58:57 +0000","Twitter for iPhone","RT @tomroyal: So here's a thing. Apple iOS price tier increases have resulted in all subscription auto-renews being canceled. Happy new yea…","555360547735359488","19588740","2015-01-14 13:47:27 +0000","" "555237252083613696","","","2015-01-14 05:37:31 +0000","Twitter for iPhone","RT @VicBeerWeek: Folks, we're already sold out of one of our brewery crawl busses, don't sleep on those tickets. They are moving fast! http…","555201396400615424","2196503131","2015-01-14 03:15:02 +0000","http://Victoriabeerweek.com" "555198845693358080","555196911654019072","22386062","2015-01-14 03:04:54 +0000","Tweetbot for Mac","@steveklabnik http://t.co/Wo7MZImywK","","","","https://twitter.com/_sjs/status/555198845693358080/photo/1" "555068207636037632","555052179669929985","14096763","2015-01-13 18:25:48 +0000","Tweetbot for Mac","@TheStalwart @BenedictEvans Yeah, our local grocery store (Thrifty Foods) has been delivering for over a decade and it’s great.","","","","" @@ -2360,7 +2468,6 @@ cc @gisikw","","","","" "532643917473529857","532643168169496576","14106454","2014-11-12 21:19:40 +0000","Tweetbot for Mac","@srbaker I think it’s related to your last “used” window (however “used” is defined). Opening a tab in your desired window seems to help.","","","","" "532399904061394944","","","2014-11-12 05:10:03 +0000","Twitterrific","Usually last! 👍 RT @arstechnica: Download Android 5.0 Lollipop for the 2012 Nexus 7 (Wi-Fi) right here http://t.co/A5YJz6tEKq by @RonAmadeo","","","","http://ars.to/10TVRSu" "532397512922259456","","","2014-11-12 05:00:33 +0000","iOS","Well, I'm sold. http://t.co/4Hwg6Ue0I6 http://t.co/duYVBQzmPS","","","","http://flashlight.nateparrott.com,https://twitter.com/_sjs/status/532397512922259456/photo/1" -"532282101148942336","","","2014-11-11 21:21:56 +0000","Tweetbot for Mac","RT @garybernhardt: Programmers! Go to this gist and follow its instructions to find out whether you've lost data. Please comment too. https…","532276348744892416","809685","2014-11-11 20:59:05 +0000","https://gist.github.com/garybernhardt/b1a8cc6eacbfa9ea8100" "532230058371743744","532223143868256257","761759","2014-11-11 17:55:08 +0000","Tweetbot for Mac","@bbum No kidding. It bends my mind every time I look at it.","","","","" "532214448275357696","532199169776033792","761759","2014-11-11 16:53:07 +0000","Tweetbot for iΟS","@bbum See also: Duff's device. http://t.co/hUgWYDLLzi","","","","http://en.m.wikipedia.org/wiki/Duff's_device" "531983905113792512","","","2014-11-11 01:37:01 +0000","Twitterrific","RT @phillipsbeer: Hop Drop drops!! Our hop elixir is hitting the shelves in Victoria, Van Island & Metro Van http://t.co/euLkXzslvX http://…","531926795982233600","65141250","2014-11-10 21:50:05 +0000","http://eepurl.com/7NGsP,http://eepurl.com/7NGsP,https://twitter.com/phillipsbeer/status/531926795982233600/photo/1" @@ -2516,7 +2623,6 @@ And yes I have apparently. Fuck you Adobe”","","","","https://haveibeenpwned.c "521556908399132672","521544672015945728","40273","2014-10-13 07:03:51 +0000","Tweetbot for iΟS","@monkbent It is so slippery. Not case love, but drop hate.","","","","" "521333602609795072","521330147367325697","192625645","2014-10-12 16:16:31 +0000","Tweetbot for Mac","@dandigangi Everything from CCR to G’N’R to Pretty Lights to Lady Gaga. Depends on the task and my mood.","","","","" "521051397971013632","","","2014-10-11 21:35:08 +0000","Tweetbot for iΟS","RT @GeorgeTakei: Love of coffee--off the charts. http://t.co/iQJNJ6ylwE","520956600522387456","237845487","2014-10-11 15:18:27 +0000","https://twitter.com/GeorgeTakei/status/520956600522387456/photo/1,https://twitter.com/GeorgeTakei/status/520956600522387456/photo/1" -"520990653862658048","","","2014-10-11 17:33:46 +0000","Tweetbot for iΟS","RT @curtclifton: This is a damning series of quotes when you recognize the authors as among Apple’s biggest fans. http://t.co/0EldDdpGFa","520957411377426432","14355211","2014-10-11 15:21:40 +0000","http://mjtsai.com/blog/2014/10/11/apples-software-quality-decline/,http://mjtsai.com/blog/2014/10/11/apples-software-quality-decline/" "520622752274055169","","","2014-10-10 17:11:51 +0000","iOS","Elon Musk Reveals Tesla D Can Park Itself, Greet Drivers http://t.co/yxxTIxY1PO via @mashable","","","","http://on.mash.to/1smLjq2" "520468161372893184","","","2014-10-10 06:57:34 +0000","Tweetbot for iΟS","RT @hmason: TIL that the phrase software ""patch"" is from a physical patch applied to Mark 1 paper tape to modify the program. http://t.co/v…","520367337925390337","765548","2014-10-10 00:16:55 +0000","https://twitter.com/hmason/status/520367337925390337/photo/1" "520397688295407617","","","2014-10-10 02:17:32 +0000","Tweetbot for Mac","After a few hours the iPhone 6 Plus feels too damn big for me. We’ll see how I feel about it next week.","","","","" @@ -2869,7 +2975,6 @@ http://t.…","494124187423113216","656553","2014-07-29 14:16:01 +0000","http:// "493954521010163712","","","2014-07-29 03:01:49 +0000","Tweetbot for iΟS","I complained about @OvercastFM’s deletion policy. Now it just deleted an unplayed podcast when I tapped on it, and then crashed. Spiteful!","","","","" "493931855997960193","","","2014-07-29 01:31:45 +0000","Twitterrific","RT @mislav: @garybernhardt Oh you mean like Gmail composer view captures and prevents Ctrl-Cmd-Space (OS X character picker)","493891054009987073","7516242","2014-07-28 22:49:37 +0000","" "493885339929280512","","","2014-07-28 22:26:55 +0000","Tweetbot for Mac","RT @typeoneerror: Google Docs trapping keyboard events (so you can't switch tabs) is infuriating. ""Stealing the keyboard"" is an obnoxious d…","493840182937124865","11973362","2014-07-28 19:27:29 +0000","" -"493885322388721664","","","2014-07-28 22:26:51 +0000","Tweetbot for Mac","RT @garybernhardt: Certain web pages capture the Cmd-Tab keystroke and Firefox *lets them do it*, breaking tab switching. The web is awful.","493836754248826880","809685","2014-07-28 19:13:51 +0000","" "493884948768509953","","","2014-07-28 22:25:22 +0000","Tweetbot for Mac","Don’t forget about the network link conditioner and leave it on the Very Bad Network profile. #protip","","","","" "493807086644367361","493806945107595266","15292261","2014-07-28 17:15:58 +0000","Tweetbot for Mac","@gregbate Oh man … I might have to do that.","","","","" "493806825339236353","493806579079073792","15292261","2014-07-28 17:14:56 +0000","Tweetbot for iΟS","@gregbate Heh as long as you didn’t sing along it’s probably cool.","","","","" @@ -3029,7 +3134,6 @@ He also might be taking one to send someone immediately.","","","","" "486912332862619648","486908886427766784","261980725","2014-07-09 16:38:41 +0000","Tweetbot for Mac","@saschaholesch @marcoarment Could be. I’m unsure if the API supports them or not.","","","","" "486907407269130241","486900560289742848","261980725","2014-07-09 16:19:06 +0000","Tweetbot for Mac","@saschaholesch @marcoarment Not in third party apps or their mobile website. Terrible experience. I thought Twitter images were just broken.","","","","" "486603456229425154","486579427900686336","14106454","2014-07-08 20:11:19 +0000","Tweetbot for iΟS","@srbaker SizeUp might fit the bill. I use SizeUp and Divvy. SizeUp is less flexible so it depends on your needs.","","","","" -"486534865656229888","","","2014-07-08 15:38:46 +0000","Tweetbot for Mac","RT @garybernhardt: http://t.co/PH0TGMojVc","486309176746860544","809685","2014-07-08 00:41:57 +0000","https://twitter.com/garybernhardt/status/486309176746860544/photo/1,https://twitter.com/garybernhardt/status/486309176746860544/photo/1" "486260668077600770","","","2014-07-07 21:29:12 +0000","Tweetbot for iΟS","Short guy in the exit row. And I didn’t even choose my seat. @JimRoepcke http://t.co/0ENKFD7f5L","","","","https://twitter.com/_sjs/status/486260668077600770/photo/1" "486259253334663168","486258984509136896","27302287","2014-07-07 21:23:34 +0000","Tweetbot for iΟS","@jacobrothstein Rats.","","","","" "486259131716612098","","","2014-07-07 21:23:05 +0000","Tweetbot for iΟS","RT @jacobrothstein: @_sjs Updated Jun 12, 2014 (screenshot from iTunes books page) http://t.co/fuHG3QVGtY","486258984509136896","27302287","2014-07-07 21:22:30 +0000","https://twitter.com/jacobrothstein/status/486258984509136896/photo/1,https://twitter.com/jacobrothstein/status/486258984509136896/photo/1" @@ -3092,7 +3196,6 @@ Senior Dev: hates computers "482561581557891072","482560618260488192","676363","2014-06-27 16:30:21 +0000","Twitterrific","@brianleroux @jdalton Agreed. That's the best reason to worry that I have heard, though. And it's a legit concern.","","","","" "482559860383301632","482523260576206848","14272162","2014-06-27 16:23:30 +0000","Twitterrific","@jdalton And sometimes one bigger thing can be better than 10 smaller things glued together. Sum of the parts. Everyone knows this.","","","","" "482559573916536834","482523260576206848","14272162","2014-06-27 16:22:22 +0000","Twitterrific","@jdalton Small modules are fine, but you need more than that. Someone has to be looking at the bigger picture. They have to fit together.","","","","" -"482340217370587136","","","2014-06-27 01:50:43 +0000","Twitterrific","RT @garybernhardt: stare into the abyss https://t.co/wFKm035Mhe","482338187243560960","809685","2014-06-27 01:42:39 +0000","https://www.google.com/search?q=goto+between+functions#q=goto+different+functions,https://www.google.com/search?q=goto+between+functions#q=goto+different+functions" "482293203865858048","","","2014-06-26 22:43:55 +0000","Twitterrific","RT @GMinusG: New strip - Breakfast Gnomes. http://t.co/6RebaBaZmp http://t.co/pWmsZYuShR","482281045161943041","16419203","2014-06-26 21:55:36 +0000","http://garfieldminusgarfield.net/post/89998482477/,http://fb.me/3buxesmWM,http://garfieldminusgarfield.net/post/89998482477/,http://fb.me/3buxesmWM" "482278307350585346","482278023043903489","14231571","2014-06-26 21:44:43 +0000","Tweetbot for Mac","@marcoarment Maybe 100 MB? If someone wants to use their last space for podcasts they should be able to do so.","","","","" @@ -3367,7 +3470,6 @@ Yeah, I’m live-tweeting my viewing of the keynote. http://t.co/Ttstidb1l7","", "468954682497728512","468946925258305536","894911","2014-05-21 03:21:23 +0000","Twitterrific","@JimRoepcke I've seen 10-15 second commercials on some sites. They probably need to start at 2-3 seconds though.","","","","" "468914219803754496","","","2014-05-21 00:40:36 +0000","Twitterrific for Mac","RT @jaffathecake: Completed my Rubik's Cube speedrun https://t.co/S3yuo9igPf","468336546073309184","15390783","2014-05-19 10:25:08 +0000","https://www.youtube.com/watch?v=Nxqe1CE8mAc,https://www.youtube.com/watch?v=Nxqe1CE8mAc" "468807051204775936","","","2014-05-20 17:34:45 +0000","Twitterrific for Mac","RT @igrigorik: Script-injected ""async scripts"" considered harmful: http://t.co/820X0sUXQd - tl;dr use <script async>, its time has come.","468803525393137664","9980812","2014-05-20 17:20:45 +0000","http://bit.ly/1i0xbKl,http://bit.ly/1i0xbKl" -"468628482570731520","","","2014-05-20 05:45:11 +0000","Twitterrific for Mac","RT @garybernhardt: Engineering is real. I worked in the midst of it once, then never again. Now I'm in a world where ""truth"" comes from sho…","468573091459637248","809685","2014-05-20 02:05:05 +0000","" "468548495784157185","","","2014-05-20 00:27:21 +0000","Twitterrific","RT @siracusa: @marcoarment http://t.co/72uEiSPLLm","468540528486023169","636923","2014-05-19 23:55:41 +0000","http://cl.ly/image/2C2y3s1g3Q2s,http://cl.ly/image/2C2y3s1g3Q2s" "468447161009840129","","","2014-05-19 17:44:41 +0000","Twitterrific for Mac","RT @MattMickiewicz: SpaceX achieved orbital flight, with less capital than Pinterest has raised to allow people to pin photos ($764 million…","467563459832721408","16349641","2014-05-17 07:13:10 +0000","" "468445105415004161","","","2014-05-19 17:36:31 +0000","Twitterrific for Mac","RT @rob_rix: Victoria Day, traditionally celebrated by waiting ’til nightfall and then scaring all the neighbourhood pets with small but lo…","468393248109920256","14056827","2014-05-19 14:10:27 +0000","" @@ -3631,7 +3733,6 @@ brew upgrade openssl "453366688080089088","452882161599672320","165517420","2014-04-08 03:00:16 +0000","Twitterrific","@BenBrocka @WebReflection Logical fallacy.","","","","" "453366197073891328","","","2014-04-08 02:58:19 +0000","Twitterrific","RT @tomhut: Twitter right now http://t.co/sUaaq29TpG","453339173349773312","1343871","2014-04-08 01:10:56 +0000","https://twitter.com/tomhut/status/453339173349773312/photo/1,https://twitter.com/tomhut/status/453339173349773312/photo/1" "453365760677527552","","","2014-04-08 02:56:35 +0000","Twitterrific","RT @rentzsch: I’ll let you have uppercase *and* lowercase characters. All seven bits. I’m not a monster","453328769785159680","663463","2014-04-08 00:29:35 +0000","" -"452611469809422336","","","2014-04-06 00:59:18 +0000","Twitterrific for Mac","RT @KyleHughes: You can use the timer in the Clock app for iOS, with the alert set to “Stop Playing”, to have a sleep timer for any app.","452515614616461312","10572372","2014-04-05 18:38:24 +0000","" "452488959939977216","","","2014-04-05 16:52:29 +0000","Twitterrific","RT @peterc: ""I wrote a C compiler as a hobby."" http://t.co/HlLWHis6IG .. nice thread for fellow compiler/PL implementation dabblers","452444601593626625","33493","2014-04-05 13:56:13 +0000","http://www.reddit.com/r/programming/comments/2277wu/i_wrote_a_c_compiler_as_a_hobby_currently_targets/,http://www.reddit.com/r/programming/comments/2277wu/i_wrote_a_c_compiler_as_a_hobby_currently_targets/" "452362533349752832","452348656000069632","17088322","2014-04-05 08:30:07 +0000","Twitterrific","@HipwoodDigital Cool, thanks!","","","","" "452344525323632640","452342197245857792","17088322","2014-04-05 07:18:33 +0000","Twitter Web Client","@HipwoodDigital Walking to and from work was about 7-9k steps for me, and I didn't do much else weekdays.","","","","" @@ -3672,7 +3773,6 @@ Newsrooms enlist data scientists ht…","451356582933454848","14538248","2014-04 Reminds me of @github and svn. https://t.co/oczkGUqi7s","","","","https://github.com/blog/626-announcing-svn-support" "451030144593829888","451008262037463040","108814849","2014-04-01 16:15:40 +0000","Twitterrific for Mac","@snarfmason @pete_higgins @srbaker Congrats! Where are you working now? Greg told me but I was drunk and forgot. Story of my life.","","","","" -"451026508505554944","","","2014-04-01 16:01:13 +0000","Twitterrific for Mac","RT @BoredElonMusk: Fake class action lawsuit generator that scares companies advertising fake products on April Fools.","451002057181253632","1666038950","2014-04-01 14:24:04 +0000","" "451026091579154432","450993520304611328","18137723","2014-04-01 15:59:34 +0000","Twitterrific for Mac","@raganwald raise ‘hell’ if shit.looks?(:broken)","","","","" "450872347164024832","450854676246704128","108814849","2014-04-01 05:48:39 +0000","Twitterrific","@snarfmason I'm with you on that. Plus it makes it easy to find dependencies.","","","","" "450765714589114368","","","2014-03-31 22:44:55 +0000","Twitterrific for Mac","It has begun. Happy Ignore-everything-you-see-on-the-Internet day! @@ -3736,8 +3836,8 @@ Appreciate any help!","","","","http://stackoverflow.com/questions/22719767/acti "449231842831372289","","","2014-03-27 17:09:52 +0000","Twitterrific for Mac","RT @eallam: @marcoarment heroku is about an order of magnitude more expensive, for about 50% time savings","449226904068186112","46783","2014-03-27 16:50:14 +0000","" "448952546984357888","448945718607093760","894911","2014-03-26 22:40:03 +0000","Twitterrific for Mac","@JimRoepcke I don’t think it’s a software issue. Either way you should probably contact Apple for support.","","","","" "448897933820182528","","","2014-03-26 19:03:02 +0000","Twitterrific for Mac","ASCII delimited text is neat. But can I import it into Excel, Numbers, or Google Docs? And how does it look in a text editor?","","","","" -"448894677538729984","448881528689684480","171695675","2014-03-26 18:50:05 +0000","Twitterrific for Mac","@icambron @raganwald But I like your perspective on it. I don’t understand how people see it as anything but a donation (even with rewards).","","","","" -"448894481706651648","448881528689684480","171695675","2014-03-26 18:49:19 +0000","Twitterrific for Mac","@icambron @raganwald One difference is that people feel that if they don’t back the Kickstarter campaign then it may never exist at all.","","","","" +"448894677538729984","","","2014-03-26 18:50:05 +0000","Twitterrific for Mac","@icambron @raganwald But I like your perspective on it. I don’t understand how people see it as anything but a donation (even with rewards).","","","","" +"448894481706651648","","","2014-03-26 18:49:19 +0000","Twitterrific for Mac","@icambron @raganwald One difference is that people feel that if they don’t back the Kickstarter campaign then it may never exist at all.","","","","" "448866855264862208","","","2014-03-26 16:59:32 +0000","Twitterrific","RT @Badger32d: Backing a kickstarter gives you precisely zero say in their business practices. It's a kickstarter, not an investment. Don't…","448860595912077312","74837444","2014-03-26 16:34:40 +0000","" "448680163895566336","448615808688586752","11113","2014-03-26 04:37:41 +0000","Twitterrific","@mat @marcoarment It's a donation, not an investment. Everyone who backs a project and pays attention to what they're doing knows that.","","","","" "448657408802320385","448653344051961856","108814849","2014-03-26 03:07:16 +0000","Twitterrific","@snarfmason Oh, yeah that sounds right. I was surprised by it when I started using OS X.","","","","" @@ -3789,7 +3889,6 @@ Suddenly, all 4 Common Lisp developers cried out in agony.","","","","" "444869250591637504","444852196757471233","14231571","2014-03-15 16:14:29 +0000","Twitterrific","@marcoarment I did the same. The microblogging part didn't take off, and if I cared about the other stuff I guess I'd be on Facebook.","","","","" "444868725234089985","","","2014-03-15 16:12:24 +0000","Twitterrific","RT @jaffathecake: Whoa, look how much promises improve testing with Mocha https://t.co/QwphSu49SR http://t.co/MqGLd7AhoE","444409258986070016","15390783","2014-03-14 09:46:38 +0000","https://github.com/domenic/mocha/blob/gh-pages-promises/index.md#asynchronous-code,https://twitter.com/jaffathecake/status/444409258986070016/photo/1,https://github.com/domenic/mocha/blob/gh-pages-promises/index.md#asynchronous-code,https://twitter.com/jaffathecake/status/444409258986070016/photo/1" "444676540891009024","","","2014-03-15 03:28:43 +0000","Twitterrific","RT @DFstyleguide: Woz thinks the game is Yahtzee.","444666228603228160","840829712","2014-03-15 02:47:45 +0000","" -"444647986270699520","","","2014-03-15 01:35:15 +0000","Twitterrific","RT @JoshHelfferich: Hipsters at SXSW professing to love bands that don't exist: http://t.co/xBJdcsdAuz","444612377254719488","563200400","2014-03-14 23:13:45 +0000","http://www.youtube.com/watch?v=frjaQ17yAww,http://www.youtube.com/watch?v=frjaQ17yAww" "444620442536402944","444618008493711362","232701963","2014-03-14 23:45:48 +0000","Twitterrific for Mac","@fyrite Yum!","","","","" "444615585381367810","444611594173947904","4777951","2014-03-14 23:26:30 +0000","Twitterrific for Mac","@marco_org Although, I’m not sure how useful it’d be for those of us outside the USA. e.g. Amazon’s selection is lacking quite a bit.","","","","" "444611594173947904","444609991216234496","477898117","2014-03-14 23:10:39 +0000","Twitterrific for Mac","@marco_org 👍 to the store idea.","","","","" @@ -3968,7 +4067,6 @@ http://t.co/6Va8HmKMZV","437077893907095552","1923374760","2014-02-22 04:14:25 + "436750979422113792","436746164738609152","22196723","2014-02-21 06:35:22 +0000","Twitterrific","@markkolich lulz, start a war! Pipe /dev/zero into a POST request. Content-Length: ∞","","","","" -"436657252447948800","","","2014-02-21 00:22:56 +0000","Twitterrific for Mac","RT @garybernhardt: just gonna rewrite literally everything in Ruby because everything is too slow, don't mind me, black is white, up is dow…","436642791813165056","809685","2014-02-20 23:25:28 +0000","" "436392936951922688","","","2014-02-20 06:52:38 +0000","Twitterrific","RT @joeerl: http://t.co/OEfKeS2c1P #erlang and #WhatsApp - this is what a 55 people company can do with erlang.","436378084049420288","51546468","2014-02-20 05:53:37 +0000","http://ow.ly/tO7kd,http://ow.ly/tO7kd" "436341629603942400","","","2014-02-20 03:28:46 +0000","Twitterrific","RT @BenedictEvans: Flickr: $35m. Youtube: $1.65bn @@ -4129,7 +4227,6 @@ No good?","","","","" "427215463114739713","427197107691216896","22196723","2014-01-25 23:04:38 +0000","Twitterrific","@markkolich Try ""askew"".","","","","" "427106167332958208","","","2014-01-25 15:50:20 +0000","Twitterrific","RT @wwwtxt: I suggest that the net as a whole shutdown for an entire week so that people can see how much we DESIRE to use it. ☯85NOV","427102826591178752","207756340","2014-01-25 15:37:03 +0000","" "426933697732808704","","","2014-01-25 04:25:00 +0000","Twitterrific","Sugar gliders in slow motion http://t.co/KhNAOxV7Zw","","","","http://i.imgur.com/Xo7s3ef.gif" -"426833802631983105","","","2014-01-24 21:48:03 +0000","Twitterrific for Mac","RT @tlrobinson: If you think you have an email problem, just be thankful you’re not David S. Peck: http://t.co/UmCnAJN8E6","426825611978346496","14206068","2014-01-24 21:15:30 +0000","http://techcrunch.com/2014/01/24/gmail-glitch-is-causing-thousands-of-emails-to-be-sent-to-one-mans-hotmail-account/,http://techcrunch.com/2014/01/24/gmail-glitch-is-causing-thousands-of-emails-to-be-sent-to-one-mans-hotmail-account/" "426801449637392384","426797186106417152","894911","2014-01-24 19:39:29 +0000","Twitterrific for Mac","@JimRoepcke I realize they don’t want to say “Gmail is down” because it might not be down for everyone, but I don’t care. For me it’s down.","","","","" "426801110804738048","426797186106417152","894911","2014-01-24 19:38:09 +0000","Twitterrific for Mac","@JimRoepcke The wording of that message is terrible. At first I thought my account was suspended or something.","","","","" "426791965187768320","426791069657735168","11973362","2014-01-24 19:01:48 +0000","Twitterrific for Mac","@typeoneerror Good stuff! Sounds like you’re looking forward to it :) http://t.co/PwHQEI4dn1","","","","http://img.ly/xQLK" @@ -4331,8 +4428,6 @@ Ye…","420013592436436992","2911221","2014-01-06 02:06:58 +0000","" "415156186854334466","415142693312794624","1291711","2013-12-23 16:25:22 +0000","Twitterrific","@trek Kiind might be the next best thing.","","","","" "414857884028002304","414834894422814720","18137723","2013-12-22 20:40:01 +0000","Twitterrific","@raganwald I haven't seen him say anything like that before. But hey, he thinks that god channels him to communicate to the world, so...","","","","" "414324783543615488","414278407095332864","14231571","2013-12-21 09:21:40 +0000","Twitterrific","@marcoarment The Mac Pro is for A/V work. It doesn't make sense for any other use case.","","","","" -"414213277636255744","","","2013-12-21 01:58:35 +0000","Twitterrific","RT @tlrobinson: This is either a really good idea, or a really terrible idea. Either way, Merry Christmas! http://t.co/sihU1ralRm","414198869958733825","14206068","2013-12-21 01:01:20 +0000","https://twitter.com/tlrobinson/status/414198869958733825/photo/1,https://twitter.com/tlrobinson/status/414198869958733825/photo/1" -"414213134849560576","","","2013-12-21 01:58:01 +0000","Twitterrific","RT @alex_gaynor: Your database always has a schema, sometimes it’s just ad-hoc and not enforced by the database software.","414179123079045121","14635493","2013-12-20 23:42:52 +0000","" "414213001479065600","","","2013-12-21 01:57:29 +0000","Twitterrific","It seems like iOS sets the flash to Auto every time you take a photo with Messages. Wtf? Don't do that. Someone get @nerdtalker on the case.","","","","" "414130317423689728","","","2013-12-20 20:28:56 +0000","Twitterrific for Mac","Ruby 2.1-rc1 is out. I like new lambda return semantics, Array/Enumerable#to_h and String#scrub. Haven’t used refinements yet, but should.","","","","" "414122791470788608","414122205513936897","14618863","2013-12-20 19:59:02 +0000","Twitterrific for Mac","@anandshimpi @siracusa But maybe I’m just too cheap for the Mac Pro :)","","","","" @@ -4428,13 +4523,11 @@ http://t.co/SrnhnTzTPH","408132348815745024","16225162","2013-12-04 07:15:09 +00 "404057393371176960","","","2013-11-23 01:22:44 +0000","Twitterrific","Man, HFS+ really stinks. @siracusa","","","","" "404056906794164224","","","2013-11-23 01:20:48 +0000","Twitterrific","Thanks to @siracusa I'm spending my Friday night restoring from backup because Disk Utility found irreparable errors on my boot drive.","","","","" "403960188475957248","","","2013-11-22 18:56:28 +0000","Twitterrific for Mac","RT @siracusa: By popular demand, here's a feed to keep up with my appearances on other podcasts and websites: http://t.co/gJXuhBcQAi","403954283856793600","636923","2013-11-22 18:33:01 +0000","http://hypercritical.co/feeds/appearances,http://hypercritical.co/feeds/appearances" -"403947320657457152","","","2013-11-22 18:05:20 +0000","Twitterrific for Mac","RT @tlrobinson: Rappers can't make it rain Bitcoins, but they can sign a message with a rich Bitcoin address' private key provably attestin…","403923535661236224","14206068","2013-11-22 16:30:50 +0000","" "403923270019211264","403769438597836800","23365210","2013-11-22 16:29:46 +0000","Twitterrific","@flogehring @marcoarment @siracusa @caseyliss Don't forget iPAD. Do you guys see that one too? Grating.","","","","" "403622565131735040","403612296955449345","11973362","2013-11-21 20:34:53 +0000","Twitterrific for Mac","@typeoneerror Seems like a good general rule to me.","","","","" "403612118827556864","403593528632426496","20092406","2013-11-21 19:53:22 +0000","Twitterrific for Mac","@ramsden @typeoneerror I've heard ""you-ee"" ... but blech!","","","","" "403041389723676672","","","2013-11-20 06:05:30 +0000","Twitterrific","RT @raganwald: The thing about “Jumping the Shark?” Happy Days was #1 for three more years after The Fonz jumped the shark.","403027906818895873","18137723","2013-11-20 05:11:55 +0000","" "403017002995814400","","","2013-11-20 04:28:35 +0000","Twitterrific","Sriracha jumped the shark.","","","","" -"402627149854543873","","","2013-11-19 02:39:27 +0000","Twitterrific","RT @tlrobinson: If Bitcoin volatility entertains you, this is entertaining as hell right now: http://t.co/rca33ZjPPx","402614497015115776","14206068","2013-11-19 01:49:10 +0000","http://bitcoinwisdom.com/markets/mtgox/btcusd,http://bitcoinwisdom.com/markets/mtgox/btcusd" "402235486854340610","","","2013-11-18 00:43:07 +0000","Twitterrific","RT @dmost: Noticing the UI elements in XCode. Button looks like text, and text looks like button. http://t.co/uOMDLqTjKc","402208518792417280","16489633","2013-11-17 22:55:58 +0000","https://twitter.com/dmost/status/402208518792417280/photo/1,https://twitter.com/dmost/status/402208518792417280/photo/1" "402137658953973760","","","2013-11-17 18:14:23 +0000","Twitterrific","RT @jesseschell: A truer flowchart was never whiteboarded. http://t.co/RSn7WufBqL","321209685631963136","11591662","2013-04-08 10:35:31 +0000","https://twitter.com/jcolman/status/320917928881033218/photo/1,https://twitter.com/jcolman/status/320917928881033218/photo/1" "402137568105336832","","","2013-11-17 18:14:02 +0000","Twitterrific","RT @substack: task automation with `npm run` http://t.co/iuE0TGOUto","402132695137779712","125027291","2013-11-17 17:54:40 +0000","http://substack.net/task_automation_with_npm_run,http://substack.net/task_automation_with_npm_run" @@ -5494,6 +5587,7 @@ I wanted to switch carriers but nobody had a better deal than 6GB for $60 plus m "223132039967293440","","","2012-07-11 19:09:58 +0000","Tweetbot for iOS","RT @polotek: This is pretty amazing. ""Paid, PAID Vacation"". Pay employees to take a real vacation and NOT work. http://t.co/RhC4ZSpL via ...","223127533837762561","20079975","2012-07-11 18:52:04 +0000","http://www.fullcontact.com/2012/07/10/paid-paid-vacation/,http://www.fullcontact.com/2012/07/10/paid-paid-vacation/" "223076848144355331","","","2012-07-11 15:30:39 +0000","Tweetbot for iOS","RT @RealRonHoward: Arrested Development for Netflix. IT'S ALIVE. This is what the writer's room looks like http://t.co/yhSRZET4","222829875109699584","125481462","2012-07-10 23:09:17 +0000","https://twitter.com/RealRonHoward/status/222829875109699584/photo/1,https://twitter.com/RealRonHoward/status/222829875109699584/photo/1" "223076789461843969","","","2012-07-11 15:30:25 +0000","Tweetbot for iOS","RT @mitchellh: Next up, let's get Vagrant booting up VMWare Fusion instances, shall we? Final touches on this boxes branch, then a merge ...","222936727516491777","12819682","2012-07-11 06:13:52 +0000","" +"222924618497916928","","","2012-07-11 05:25:45 +0000","Tweetbot for iOS","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 ...","222779724567547904","7076492","2012-07-10 19:50:00 +0000","" "220529221741715459","","","2012-07-04 14:47:18 +0000","Twitterrific for Mac","Episode 15, The Bridges of Siracusa County, is the original ""this will be a short show"" that ends up being long. @danbenjamin @siracusa","","","","" "220160115322527744","","","2012-07-03 14:20:36 +0000","Tweetbot for iOS","RT @antirez: some more sentinel in action (agreement using two sentinels to mark a master objectively down): http://t.co/2PqpJtYc","220135260799778816","5813712","2012-07-03 12:41:50 +0000","http://bit.ly/N8f1K4,http://bit.ly/N8f1K4" "220019224402341888","220018943572721664","894911","2012-07-03 05:00:45 +0000","Tweetbot for iOS","@JimRoepcke Ha ha. Fair enough.","","","","" @@ -6909,7 +7003,6 @@ Blog post forthcoming.","64425378097266688","8038312","2011-04-30 20:26:21 +0000 "64060589240098816","64059474113077248","53010195","2011-04-29 20:16:49 +0000","Kiwi","@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","Kiwi","@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","Kiwi","Weird JavaScript bug in v8's generic methods: https://gist.github.com/948901 (article on generic methods: http://j.mp/mMFEWX%0A)","","","","" -"64051050222600192","","","2011-04-29 19:38:55 +0000","Kiwi","RT @skylerslade: seeking/scrubbing coming soon to the @Grooveshark #android app ...","64046758556205057","14052205","2011-04-29 19:21:51 +0000","" "64038964008452096","63950666820894720","6927562","2011-04-29 18:50:53 +0000","Kiwi","@thomasfuchs es5-shim and http://ejohn.org/blog/javascript-micro-templating/","","","","" "64026238955692033","","","2011-04-29 18:00:19 +0000","Seesmic","OH: ""Cats out of the closet""","","","","" "64014551271735296","","","2011-04-29 17:13:53 +0000","Kiwi","Fun in node's repl: 'what?'.indexOf)( '?' ... yup, that works. Expressions must get wrapped in parens on the way to eval.","","","","" @@ -7177,7 +7270,6 @@ Blog post forthcoming.","64425378097266688","8038312","2011-04-30 20:26:21 +0000 "33017098812792832","","","2011-02-03 04:21:04 +0000","Twitter for Mac","OH: ""There are pretty much only 2 things you can do with [misbehaving] electronics: restart them, and hit them.""","","","","" "33016810399862785","","","2011-02-03 04:19:55 +0000","Twitter for Mac","RT @typeoneerror: @_sjs IntelliJ 10 has everything you need for Android built-in. Honestly, much better support than Eclipse. http://yf ...","32883145439191040","11973362","2011-02-02 19:28:47 +0000","" "32985940230148098","","","2011-02-03 02:17:15 +0000","Twitter for Mac","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","","","2011-02-03 01:03:34 +0000","Twitter for Mac","RT @jemerick: Fun about page... http://t.co/5P6jcGL","32835842309357568","3742641","2011-02-02 16:20:49 +0000","http://www.technologywithpassion.com/about-us/team/,http://www.technologywithpassion.com/about-us/team/" "32958840374820864","","","2011-02-03 00:29:34 +0000","Twitter for Android","IntelliJ is so much more responsive than eclipse, it's refreshing.","","","","" "32958305852719105","","","2011-02-03 00:27:27 +0000","Twitter for Android","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","","","2011-02-03 00:24:20 +0000","Twitter for Android","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 ...","32954689918074880","2911221","2011-02-03 00:13:05 +0000","" @@ -7325,6 +7417,7 @@ A. So they can brag about the size of their package.","","","","" "24845247926243328","24737960695959553","894911","2011-01-11 15:09:03 +0000","Twitter for Mac","@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","Twitter for Mac","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","Twitter for Mac","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","","","2011-01-11 01:44:26 +0000","Twitter for Mac","RT @argv0: Riak supports kill-9. #nosql","24570925143818240","6509982","2011-01-10 20:58:59 +0000","" "24636329866305536","","","2011-01-11 01:18:53 +0000","Twitter for Mac","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","Twitter for Mac","Sandy Bridge, Windows on ARM, Nvidia and Intel cooperating, dual-core 1GHz ARM CPUs, Android 3.0 ... the future will be interesting.","","","","" "23189911360249856","","","2011-01-07 01:31:20 +0000","Twitter for Mac","Best thing I've seen in the last 15 minutes: http://t.co/zRwBli2","","","","http://illreallyanimatethat.deviantart.com/art/1-192413771" @@ -7410,7 +7503,6 @@ http://bit.ly/ ...","20105073468112896","887251","2010-12-29 13:13:17 +0000","" "15904633033592832","","","2010-12-17 23:02:14 +0000","Tweetie for Mac","RT @getify: ""I can fix that..."" http://bit.ly/fhR0nu #haha","15891593160560640","16686076","2010-12-17 22:10:25 +0000","" "15884548122345472","15878801028292608","15258949","2010-12-17 21:42:26 +0000","Tweetie for Mac","@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","Tweetie for Mac","$ mongo scale-for-interwebs","","","","" -"15805187683778560","","","2010-12-17 16:27:05 +0000","Tweetie for Mac","RT @sstephenson: Dropbox 1.0: “You now can choose which folders get downloaded to which computers.” Right on. http://blog.dropbox.com/?p=581","15800050101788672","6707392","2010-12-17 16:06:40 +0000","" "15593595394326530","","","2010-12-17 02:26:17 +0000","Tweetie for Mac","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: ...","15592279016218624","894911","2010-12-17 02:21:03 +0000","" "15584538897944577","","","2010-12-17 01:50:18 +0000","Tweetie for Mac","heh ... ""Christmas time is and always has been a good excuse to purchase expensive computer hardware of course -- come on admit it.""","","","","" "15549827970502656","","","2010-12-16 23:32:22 +0000","Twitter Web Client","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:/ ...","15548762025889792","29777587","2010-12-16 23:28:08 +0000","" @@ -7669,7 +7761,6 @@ https://github.com/holman/boom","7512086204645376","11322372","2010-11-24 19:13: "3251880822050816","","","2010-11-13 01:04:43 +0000","Twitter Web Client","RT @tobie: #textmate update. Not a 2.0, but still.","3251026052251648","3167301","2010-11-13 01:01:19 +0000","" "3244719245099008","3217356864098304","12725872","2010-11-13 00:36:16 +0000","Twitter for iPhone","@karlgoldfield you just did. ;-) my email is sami.samhuri+twt@gmail.com","","","","" "2868702638776320","","","2010-11-11 23:42:06 +0000","Tweetie for Mac","printf/sprintf and strftime in JavaScript: http://github.com/samsonjs/format and http://github.com/samsonjs/strftime (both are on npm)","","","","" -"2862699633446913","","","2010-11-11 23:18:15 +0000","Twitter Web Client","RT @tlrobinson: You should never see multiple ""alert()""s from the same JavaScript context on the screen at once, right? http://bit.ly/di ...","2862092545695745","14206068","2010-11-11 23:15:50 +0000","" "2862387883417600","2861144641376256","894911","2010-11-11 23:17:01 +0000","Twitter Web Client","@JimRoepcke omfg #facedesk","","","","" "2860710354751490","2855378404507649","894911","2010-11-11 23:10:21 +0000","Tweetie for Mac",".@JimRoepcke Firefox 4 introduces a major annoyance: basic auth credentials aren't saved. Hitting our staging server w/ Fx4 is infuriating.","","","","" "2785079105421312","","","2010-11-11 18:09:49 +0000","Twitter Web Client","RT @SubtleGradient: NEW appify 2.0! @@ -7714,8 +7805,6 @@ https:/ ...","2768945010446337","14405464","2010-11-11 17:05:42 +0000","" "595016703549441","","894911","2010-11-05 17:07:17 +0000","Tweetie for Mac","@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","Tweetie for Mac","@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","Tweetie for Mac","@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","","","2010-11-05 15:24:34 +0000","Twitter Web Client","RT @sstephenson: The JS that powers Chalk is written in CoffeeScript, compiled and served on-the-fly with Brochure: http://github.com/ss ...","553490682216449","6707392","2010-11-05 14:22:17 +0000","" -"569157116497920","","","2010-11-05 15:24:32 +0000","Twitter Web Client","RT @sstephenson: Spot-on dissection of Chalk by @_sjs: http://samisamhuri.blogspot.com/2010/11/37signals-chalk-dissected.html","551993839976448","6707392","2010-11-05 14:16:20 +0000","" "569053273919489","566423520804865","138082149","2010-11-05 15:24:07 +0000","Tweetie for Mac","@jordymoughtin Tell me about it! No chance for a sunrise photo today :/","","","","" "547556920659968","542037195628544","15045995","2010-11-05 13:58:42 +0000","Tweetie for Mac","@asianmack thanks :)","","","","" "438487950041088","435863469162496","33493","2010-11-05 06:45:18 +0000","Tweetie for Mac","@peterc Sweet! I doubt I said everything so I look forward to reading your post as well :)","","","","" @@ -7742,7 +7831,6 @@ I've been successfully implementing wallet zero for years.","29670293252","14405 "29618498177","29585274512","138082149","2010-11-03 00:00:00 +0000","Twitter for iPhone","@jordymoughtin that sounds like a lot of work.","","","","" "29422458502","","","2010-11-02 00:00:00 +0000","Tweetie for Mac","This is just embarrassing: http://is.gd/gAKuy We've gone too far to correct our path. North America is a joke.","","","","" "29479276705","","","2010-11-02 00:00:00 +0000","Twitter for iPhone","RT @TechmemeFH: Skyfire iOS browser approved by Apple, converts Flash video to HTML5 (Katie Marsal / AppleInsider) http://j.mp/cqAmYH ht ...","29478498377","13302022","2010-11-02 15:10:51 +0000","" -"29483259436","","","2010-11-02 00:00:00 +0000","Twitter Web Client","RT @sstephenson: Chalk is a little iPad app we made for fun: http://bit.ly/c93xN3","29473292480","6707392","2010-11-02 14:12:54 +0000","" "29510496581","29503115600","14206068","2010-11-02 00:00:00 +0000","Tweetie for Mac","@tlrobinson Divvy, SizeUp, Issues, Colloquy, GitX, Chrome, VLC","","","","" "29517895804","","","2010-11-02 00:00:00 +0000","Twitter for iPhone","No luck w/ @grooveshark for iPhone the last few days. Every song pops up an alert saying it can't be played. #sadpanda","","","","" "29328445426","29322081414","14273142","2010-11-01 00:00:00 +0000","Twitter for iPhone","@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.","","","","" @@ -7773,13 +7861,13 @@ I've been successfully implementing wallet zero for years.","29670293252","14405 "29213319101","29167875050","3260971","2010-10-30 00:00:00 +0000","Tweetie for Mac","@niels_bom I'd have test things like turning syntax highlighting off before making an educated guess. Not really sure.","","","","" "29222006056","","","2010-10-30 00:00:00 +0000","Twitter Web Client","RT @rauchg: Replacing submodules in favor of straight checked out code. People were having too much trouble with it.","29215872435","15540222","2010-10-30 20:39:14 +0000","" "29222385497","","","2010-10-30 00:00:00 +0000","Twitter Web Client","RT @rentzsch: @rauchg what about fake submodules? http://j.mp/cr0Lkt","29221983256","663463","2010-10-30 22:20:10 +0000","" +"29132023240","","","2010-10-29 00:00:00 +0000","Twitter for iPhone","Of course this would happen at the end of a Friday. Thanks Murph!","","","","" "29132560231","","","2010-10-29 00:00:00 +0000","Tweetie for Mac","!@#$ MyWi ... if you disable regular Internet Tethering then enable it when you're done! Really annoying.","","","","" "29099362984","29037969539","8038312","2010-10-29 00:00:00 +0000","Twitter for iPhone","@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.","","","","" "29099649182","29040699827","14063149","2010-10-29 00:00:00 +0000","Twitter for iPhone","@miksago I'll take an invite if you have any left.","","","","" "29100155157","29098789600","95698494","2010-10-29 00:00:00 +0000","Twitter for iPhone","@SelfServeApps nice! I'm still working on it. Haven't got 3 stars on all levels on the first one yet either.","","","","" "29111623890","","","2010-10-29 00:00:00 +0000","Tweetie for Mac","Writing scripts with cat, like a boss!","","","","" "29113110200","29111380613","95698494","2010-10-29 00:00:00 +0000","Tweetie for Mac","@SelfServeApps Is she talking on a time phone?! There are no cell towers or satellites back in 1928...","","","","" -"29132023240","","","2010-10-29 00:00:00 +0000","Twitter for iPhone","Of course this would happen at the end of a Friday. Thanks Murph!","","","","" "28951629297","","","2010-10-28 00:00:00 +0000","Tweetie for Mac","Reddit's performance is getting much better. No more >10s page loads. Wasting time is efficient again.","","","","" "28954415306","","","2010-10-28 00:00:00 +0000","Tweetie for Mac","2010 MacBook Pro ""sticky"" trackpad bug is infuriating. Don't like leaving the home row, leaving the keyboard altogether is the worst.","","","","" "28959517536","","","2010-10-28 00:00:00 +0000","Twitter Web Client","RT @pharkmillups: This is basically what it feels like every time you spin up a new riak node @@ -7821,6 +7909,7 @@ I've been successfully implementing wallet zero for years.","29670293252","14405 "28004546747","28004444242","734903","2010-10-20 00:00:00 +0000","Tweetie for Mac","@mjijackson yup","","","","" "28004827036","28004762298","14273142","2010-10-20 00:00:00 +0000","Twitter Web Client","@lunafiko ain't that the truth. i guess i should at least lie on the couch instead of sitting.","","","","" "28005506745","28005077159","14273142","2010-10-20 00:00:00 +0000","Tweetie for Mac","@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","","","","" +"27784410092","27784155226","894911","2010-10-19 00:00:00 +0000","Tweetie for Mac","@JimRoepcke You're gonna be doing a lot of doobie-rolling when you're *living in a van, down by the river!!*","","","","" "27845217037","","","2010-10-19 00:00:00 +0000","Twitter for iPhone","Always nice to hear how early the guys at the coffee shop get up. Makes me feel better about rising at 6am.","","","","" "27868122381","27858424443","33858688","2010-10-19 00:00:00 +0000","Tweetie for Mac","@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...","","","","" "27868228439","27868122381","4777951","2010-10-19 00:00:00 +0000","Tweetie for Mac","@_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.","","","","" @@ -7828,7 +7917,6 @@ I've been successfully implementing wallet zero for years.","29670293252","14405 "27784042904","27783476882","894911","2010-10-19 00:00:00 +0000","Tweetie for Mac","@JimRoepcke Well LA-DI-FREAKIN-DA! We got ourselves a writer! Is that Bill Shakespeare over there?","","","","" "27784150669","","","2010-10-19 00:00:00 +0000","Tweetie for Mac","Am I mistaken in thinking that Google's cathedral style development & manufacturers private forks basically just pay lip service to OSS?","","","","" "27784218121","","","2010-10-19 00:00:00 +0000","Tweetie for Mac","Open source is good, but is only one part of the puzzle. Open development might be just as important (for some projects).","","","","" -"27784410092","27784155226","894911","2010-10-19 00:00:00 +0000","Tweetie for Mac","@JimRoepcke You're gonna be doing a lot of doobie-rolling when you're *living in a van, down by the river!!*","","","","" "27764723878","","","2010-10-18 00:00:00 +0000","Tweetie for Mac","http://enterprise-js.com/4","","","","" "27771978351","27766446321","894911","2010-10-18 00:00:00 +0000","Tweetie for Mac","@JimRoepcke yeah I love comma fir- .... wait a minute now... ;-)","","","","" "27772088254","","","2010-10-18 00:00:00 +0000","Tweetie for Mac","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","","","","" @@ -7868,13 +7956,12 @@ I've been successfully implementing wallet zero for years.","29670293252","14405 "26684288288","26680587033","63803","2010-10-07 00:00:00 +0000","Tweetie for Mac",".@sh1mmer I know you solved it, but fwiw in zsh this kind of stuff is easy, without resorting to find: rm **/*~*.xml~*.js(.)","","","","" "26684336980","","","2010-10-07 00:00:00 +0000","Tweetie for Mac","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.","","","","" "26686470139","","","2010-10-07 00:00:00 +0000","Tweetie for Mac","Ah the elusive monad. Once someone understands them they become incapable of explaining them to those who don't understand. Round and round.","","","","" +"26522561497","","","2010-10-06 00:00:00 +0000","Tweetie for Mac","This might sound weird but is there a vimscript mode for Emacs? #vim #emacs","","","","" "26524284042","26522707679","12819682","2010-10-06 00:00:00 +0000","Tweetie for Mac","@mitchellh Hmmm. Yes, I'll have to seek out other heretics. If it makes a difference I *mostly* use Emacs & TextMate these days :)","","","","" "26554061967","26551571761","6368672","2010-10-06 00:00:00 +0000","Tweetie for Mac","@saurik If you're interested in a k/v store I highly recommend riak. Basho knows what they're doing.","","","","" "26558759424","","","2010-10-06 00:00:00 +0000","Tweetie for Mac","""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","","","","" "26562539734","26559352831","894911","2010-10-06 00:00:00 +0000","Tweetie for Mac","@JimRoepcke Yeah, good read!","","","","" "26582217878","","","2010-10-06 00:00:00 +0000","Tweetie for Mac","Rebooted last night and Instachrome stopped working, perhaps because Chrome updated itself. Reinstalled the extension -> fixed. #instapaper","","","","" -"26588923267","","","2010-10-06 00:00:00 +0000","Twitter Web Client","RT @tlrobinson: Writing recursive asynchronous code makes my head hurt.","26584875031","14206068","2010-10-06 21:04:53 +0000","" -"26522561497","","","2010-10-06 00:00:00 +0000","Tweetie for Mac","This might sound weird but is there a vimscript mode for Emacs? #vim #emacs","","","","" "26363821712","","","2010-10-04 00:00:00 +0000","Twitter for iPhone","Current status http://yfrog.com/n1rrsej","","","","" "26388119295","","","2010-10-04 00:00:00 +0000","Twitter for iPhone","RT @promotejs: Are We First Yet is handcrafted awesomeness made with an infusion of the @jsconfeu post party vom Oktoberfest.","26381111586","195403247","2010-10-04 17:15:34 +0000","" "26388754982","26387819301","138082149","2010-10-04 00:00:00 +0000","Twitter for iPhone","@jordymoughtin me too! Some guy keeps getting me to print stuff for him. What a jerk. ;-)","","","","" @@ -7919,12 +8006,12 @@ I've been successfully implementing wallet zero for years.","29670293252","14405 "25617512077","","","2010-09-26 00:00:00 +0000","Twitter for iPhone","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 ...","25605392653","648873","2010-09-26 16:41:36 +0000","" "25627930531","","","2010-09-26 00:00:00 +0000","Twitter for iPad","RT @wycats: Is it weird that I'm flying through the air and I think the magical part is that I have wifi?","25626080353","8526432","2010-09-26 21:39:07 +0000","" "25451990447","","","2010-09-25 00:00:00 +0000","Tweetie for Mac","Really impressive work by Mozilla. They're almost fast! http://arewefastyet.com/ JM+TM just passed Nitro at v8bench.","","","","" +"25408426670","","","2010-09-24 00:00:00 +0000","Twitter for iPad","RT @newsycombinator: Node.js: a short history http://j.mp/bhqSi7","25368955288","14335498","2010-09-24 03:00:05 +0000","" "25413352553","","","2010-09-24 00:00:00 +0000","Twitter for iPhone","RT @AaronHillegass: We have space in the upcoming Beginning Cocoa class (Oct 9 - 15, Atlanta) so I'm offering you, dear followers, 20% o ...","25413065193","85645271","2010-09-24 15:17:37 +0000","" "25422413735","","","2010-09-24 00:00:00 +0000","Tweetie for Mac","Edit commands in the #nodejs repl with your text editor: `npm install repl-edit && node-repl-edit` or http://github.com/samsonjs/repl-edit","","","","" "25447982924","","","2010-09-24 00:00:00 +0000","Twitter for iPhone","It's pretty lame to be slave to a schedule.","","","","" "25448192081","","","2010-09-24 00:00:00 +0000","Twitter for iPhone","RT @gussynichols: Worried Mom fought for helmets, now BC is getting fatter cause of it. http://t.co/DlNTKRH via @AddThis #bike #bc @bccycle","25350263183","19623488","2010-09-23 22:59:21 +0000","http://www.richmond-news.com/health/Worried+fought+helmets/3449978/story.html,http://www.richmond-news.com/health/Worried+fought+helmets/3449978/story.html" "25383184930","","","2010-09-24 00:00:00 +0000","Tweetie for Mac","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.","","","","" -"25408426670","","","2010-09-24 00:00:00 +0000","Twitter for iPad","RT @newsycombinator: Node.js: a short history http://j.mp/bhqSi7","25368955288","14335498","2010-09-24 03:00:05 +0000","" "25257916765","","","2010-09-23 00:00:00 +0000","Tweetie for Mac","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.","","","","" "25257995885","","","2010-09-23 00:00:00 +0000","Tweetie for Mac","... and if you don't have a phone + data plan get one instead of the usb dongle, the phone is more useful!","","","","" "25316832889","25311801823","14939200","2010-09-23 00:00:00 +0000","Twitter for iPhone","@seancribbs if they have menu items remap them in your Keyboard prefs. I do that with iTerm.","","","","" @@ -7973,8 +8060,8 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", "23123779127","","","2010-09-06 00:00:00 +0000","Tumblr","Periodic Table of the Elements - Josh Duck http://tumblr.com/xzohrggx2","","","","" "22933353307","","","2010-09-04 00:00:00 +0000","Twitter for iPhone","Current status: http://yfrog.com/mga06kj","","","","" "22845345587","","","2010-09-03 00:00:00 +0000","Twitter for iPhone","iPad + MyWi make an hour long commute pretty nice. Mywi 4.0 is much easier on my battery too.","","","","" -"22673362598","","","2010-09-01 00:00:00 +0000","Tweetie for Mac","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 00:00:00 +0000","Tweetie for Mac","Workaround for stuck MBP trackpad: disable Dragging in trackpad prefs, then re-enable. That unstuck it for me just now. Hooray, no reboot.","","","","" +"22673362598","","","2010-09-01 00:00:00 +0000","Tweetie for Mac","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"".","","","","" "22196470498","","","2010-08-26 00:00:00 +0000","Tweetie for Mac","username: samsonjs favourite band: NOFX #GSfriends (via a cool idea from @Grooveshark!)","","","","" "22056046540","22055770179","13192","2010-08-25 00:00:00 +0000","Tweetie for Mac","@avibryant I've had this, horribly annoying! Apparently turning BlueTooth off helps, can't confirm. Also 4-finger swipe might help.","","","","" "22056076156","","","2010-08-25 00:00:00 +0000","Tweetie for Mac","Dear lazy twitter, is there a good, secure wallet app for iOS?","","","","" @@ -8005,7 +8092,6 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", "21088256453","21085789688","17025041","2010-08-13 00:00:00 +0000","Tweetie for Mac","@jtimberman It might be useful for a backup but it certainly shouldn't be the default behaviour. At least the fix is easy!","","","","" "21102824316","","","2010-08-13 00:00:00 +0000","Tweetie for Mac","GoDaddy's UI is horrible or I'm incredibly stupid. Of course those aren't mutually exclusive.","","","","" "21103222767","","","2010-08-13 00:00:00 +0000","Tweetie for Mac","Looks like a bit of column A and a bit of column B.","","","","" -"20939389257","","","2010-08-12 00:00:00 +0000","Twitter for iPhone","RT @sstephenson: Stay looks handy for switching between internal and external displays: http://cordlessdog.com/stay/","20934106284","6707392","2010-08-12 01:30:50 +0000","" "20865440145","","","2010-08-11 00:00:00 +0000","Tweetie for Mac","Another great okcupid blog post. Can't get enough of these. http://blog.okcupid.com/index.php/dont-be-ugly-by-accident/","","","","" "20914578252","","","2010-08-11 00:00:00 +0000","Twitter Web Client","It's nice that chef doesn't make me learn a new language in addition to learning chef itself.","","","","" "20526902352","","","2010-08-07 00:00:00 +0000","Tweetie for Mac","MBP trackpad bug manifested itself with drag lock off, definitely a real bug. It thought the button was down when it wasn't.","","","","" @@ -8023,8 +8109,8 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", "19974275691","","","2010-07-31 00:00:00 +0000","Tweetie for Mac","It's fast.","","","","" "19787619703","19776875582","15481055","2010-07-29 00:00:00 +0000","Tweetie for Mac","@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 00:00:00 +0000","Tweetie for Mac","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 00:00:00 +0000","Tweetie for Mac","@mayolaycamp No interest. Blocked for spam.","","","","" "19533135493","","","2010-07-26 00:00:00 +0000","Twitter for iPhone","YYC -> YYJ ... Back to reality","","","","" +"19606105282","19229094336","159816349","2010-07-26 00:00:00 +0000","Tweetie for Mac","@mayolaycamp No interest. Blocked for spam.","","","","" "19007757579","","","2010-07-20 00:00:00 +0000","Twitter Web Client","RT @lunafiko: Launched my new web app: it sends you text messages when stuff you care about gets updates. Greg's Pulse: http://gregspuls ...","18800856899","14273142","2010-07-18 00:18:26 +0000","" "18750002115","","","2010-07-17 00:00:00 +0000","Twitter Web Client","RT @kn0thing: Did I really just watch a guy on a unicycle playing StarWars on his bagpipes? Awesome. http://youtu.be/fzBvNVNEo3U","18749654267","811350","2010-07-17 07:01:11 +0000","" "18781934785","","","2010-07-17 00:00:00 +0000","Foursquare","I'm at Cora’s Breakfast & Lunch (#360, 5111 North land Drive NW, Calgary). http://4sq.com/8wNEq5","","","","" @@ -8067,6 +8153,8 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", "17303613084","","","2010-06-29 00:00:00 +0000","Tweetie for Mac","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","","","","" "17308681929","","","2010-06-29 00:00:00 +0000","Twitter for iPhone","RT @evanphx: Um... http://bit.ly/cLP73J ... there is a japanese company making a hardware ruby interpreter for embedded programming?","17307981492","5444392","2010-06-29 04:51:46 +0000","" "17360235144","","","2010-06-29 00:00:00 +0000","Twitter for iPhone","RT @me1000: woot!!! RT @nciagra: Rerelease of CappuGeo: CoreLocation and MapKit for Cappuccino. http://github.com/nciagra/CappuGeo","17358269406","8675502","2010-06-29 19:39:40 +0000","" +"17217156178","","","2010-06-28 00:00:00 +0000","Tweetie for Mac","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.","","","","" +"17217461602","","","2010-06-28 00:00:00 +0000","Tweetie for Mac","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.","","","","" "17223783303","17222099807","27302287","2010-06-28 00:00:00 +0000","Tweetie for Mac","@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.","","","","" "17228435251","","","2010-06-28 00:00:00 +0000","Tweetie for Mac","Have I mentioned today that state is evil? Yes, evil. The Devil, Al Shaitan, Lucifer, Azazel, Lord of the Underworld, et cetera.","","","","" "17228472876","","","2010-06-28 00:00:00 +0000","Tweetie for Mac","Most state is essentially caching, i.e. premature optimization. Not to mention that caching is one of the two hard things in comp sci.","","","","" @@ -8074,8 +8162,6 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", "17260055166","17243140070","22406953","2010-06-28 00:00:00 +0000","Tweetie for Mac","@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.","","","","" "17260256743","17243190836","22406953","2010-06-28 00:00:00 +0000","Tweetie for Mac","@mahyarm Tweet some pics! I haven't heard of Ubud before and it looks pretty amazing. How much longer are you traveling for?","","","","" "17268853856","","","2010-06-28 00:00:00 +0000","Tweetie for Mac","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.","","","","" -"17217156178","","","2010-06-28 00:00:00 +0000","Tweetie for Mac","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.","","","","" -"17217461602","","","2010-06-28 00:00:00 +0000","Tweetie for Mac","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.","","","","" "17141713893","","","2010-06-27 00:00:00 +0000","Tweetie for Mac","Ugh, sorry about that noise. Didn't realize every comment on the justin.tv chat was going to be tweeted. Won't happen again!","","","","" "17143720414","","","2010-06-27 00:00:00 +0000","Tweetie for Mac","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.","","","","" "17144545963","","","2010-06-27 00:00:00 +0000","Tweetie for Mac","Sadly katmouse is still required to make scrolling usable in Windows 7. http://ehiti.de/katmouse/ When will MS ever fix this?","","","","" @@ -8122,6 +8208,8 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", "15631525613","15581615212","54403950","2010-06-07 00:00:00 +0000","Twitter Web Client","@Pre101 I hadn't planned on it since I'm not doing webos anymore but I guess we'll see how Wednesday goes!","","","","" "15644274453","","","2010-06-07 00:00:00 +0000","Twitter Web Client","Apple has paid $1 billion to app store developers from 5 billion downloads. #wwdc","","","","" "15645386875","15644224653","668423","2010-06-07 00:00:00 +0000","Twitter Web Client","@mikeal I think it's $428 million","","","","" +"15564749432","","","2010-06-06 00:00:00 +0000","Gowalla","Just Arrived in #sfo from #yyj — at SFO San Francisco International http://gowal.la/r/BUD","","","","" +"15569457675","15563895743","17088322","2010-06-06 00:00:00 +0000","Twitter Web Client","@ChrisNoel_Vic thanks man! Pretty excited. :) We should meet up for beers when I get back.","","","","" "15571337242","","","2010-06-06 00:00:00 +0000","Gowalla","I'm at Marriott in San Francisco, CA http://gowal.la/r/CV9","","","","" "15576860782","","","2010-06-06 00:00:00 +0000","Twitter Web Client","Barely seen a 3g signal since arriving in SF. No wonder AT&T customers are pissed! #ATT #fail","","","","" "15531117225","15529556525","22406953","2010-06-06 00:00:00 +0000","Twitter Web Client","@mahyarm Good idea, I definitely should have looked into that. Hopefully I remember next time.","","","","" @@ -8131,8 +8219,6 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", "15537118785","15536811798","8675502","2010-06-06 00:00:00 +0000","Twitter Web Client","@me1000 er, I meant *list* comprehensions of course, not lisp comps.","","","","" "15537996658","15537136188","894911","2010-06-06 00:00:00 +0000","Twitter Web Client","@JimRoepcke * _sjs slaps JimRoepcke around a bit with a large trout","","","","" "15555265243","","","2010-06-06 00:00:00 +0000","Twitter Web Client","The pilgrimage begins. #wwdc","","","","" -"15564749432","","","2010-06-06 00:00:00 +0000","Gowalla","Just Arrived in #sfo from #yyj — at SFO San Francisco International http://gowal.la/r/BUD","","","","" -"15569457675","15563895743","17088322","2010-06-06 00:00:00 +0000","Twitter Web Client","@ChrisNoel_Vic thanks man! Pretty excited. :) We should meet up for beers when I get back.","","","","" "15514883507","","","2010-06-05 00:00:00 +0000","Twitter Web Client","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","15511815228","33493","2010-06-05 21:16:53 +0000","" "15515872892","","","2010-06-05 00:00:00 +0000","Twitter Web Client","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","","","","" "15395309393","15392972590","894911","2010-06-04 00:00:00 +0000","Twitter Web Client","@JimRoepcke I guess this is old news by now but I hadn't seen it before: http://www.facebook.com/KipDrordy","","","","" @@ -8171,12 +8257,13 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", #nonosql #docdb #nosql","","","","" "14518843441","","","2010-05-22 00:00:00 +0000","Twitter Web Client","About to watch a haggis hurling competition. The record is 190 ft!","","","","" +"14521573978","","","2010-05-22 00:00:00 +0000","Twitter Web Client","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 ...","14521160441","6509982","2010-05-22 23:04:37 +0000","" "14451901173","","","2010-05-21 00:00:00 +0000","Twitter Web Client","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!","","","","" "14451956498","","","2010-05-21 00:00:00 +0000","Twitter Web Client","Well, I can see github again. That was short-lived.","","","","" -"14232765831","14217793600","14358152","2010-05-18 00:00:00 +0000","Twitter Web Client","@mentalguy I remember that feeling. Here are 9 more to blow your mind: http://en.wikipedia.org/wiki/Ontario_(disambiguation)","","","","" -"14200790046","","14174890","2010-05-18 00:00:00 +0000","Twitter Web Client","@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!","","","","" "14203180461","","","2010-05-18 00:00:00 +0000","Twitter Web Client","RT @tirsen: emacs day #2: an abundance of yaks needing shaves.","14202822307","645143","2010-05-18 03:07:59 +0000","" "14232450331","","","2010-05-18 00:00:00 +0000","Twitter Web Client","RT @pharkmillups: thorough, great post from the the mozilla metrics team about choosing a nosql data store http://bit.ly/cgFx7j #cassand ...","14227650848","29777587","2010-05-18 13:30:58 +0000","" +"14232765831","14217793600","14358152","2010-05-18 00:00:00 +0000","Twitter Web Client","@mentalguy I remember that feeling. Here are 9 more to blow your mind: http://en.wikipedia.org/wiki/Ontario_(disambiguation)","","","","" +"14200790046","","14174890","2010-05-18 00:00:00 +0000","Twitter Web Client","@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!","","","","" "14077389539","","","2010-05-16 00:00:00 +0000","Twitter Web Client","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.","","","","" "14121195105","14101734821","22406953","2010-05-16 00:00:00 +0000","Twitter Web Client","@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.","","","","" "14061668953","","","2010-05-15 00:00:00 +0000","Twitter Web Client","Some guy from Lush just said the word cuticle to me. Wtf?! Do I look like a guy who cares about cuticles?","","","","" @@ -8198,7 +8285,6 @@ Victoria! http://twitpic.com/1m7g4b","","","","" "13634872590","","","2010-05-08 00:00:00 +0000","Echofon","I keep forgetting how much downtown sucks in the summer. Have to stick to nature!","","","","" "13556062187","","","2010-05-07 00:00:00 +0000","Echofon","RT @simonw: So apparently Ajax means ""uses JavaScript"" and HTML5 now means ""doesn't use Flash""","13544675482","12497","2010-05-07 12:03:46 +0000","" "13371443876","13369743525","14273142","2010-05-04 00:00:00 +0000","Echofon","@lunafiko good timing it's starting to get nice! Have a good trip.","","","","" -"13217100047","","","2010-05-02 00:00:00 +0000","Echofon","RT @tlrobinson: ""Passing callbacks is the *price* of asynchronous API's, not the benefit.""","13216605013","14206068","2010-05-02 00:33:43 +0000","" "13157669261","","","2010-04-30 00:00:00 +0000","Twitter Web Client","RT @Grooveshark: Now accepting Lala refugees.","","","","" "12614255760","","","2010-04-22 00:00:00 +0000","Twitter Web Client","Got an iPad for the evening. Back on my MacBook now, I want to rotate the display to surf the web.","","","","" "12620508667","12615500462","14273142","2010-04-22 00:00:00 +0000","Twitter Web Client","@lunafiko I think I just found it on twitpic, cool!","","","","" @@ -8211,7 +8297,6 @@ Victoria! http://twitpic.com/1m7g4b","","","","" "12497941010","12495440281","14273142","2010-04-20 00:00:00 +0000","Twitter Web Client","@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","","","","" "12498062927","","","2010-04-20 00:00:00 +0000","Twitter Web Client","html5 makes the browser the best cross-platform toolkit. ironically throwing out native look'n'feel altogether wins. http://is.gd/bA948","","","","" "12499117475","12498442444","14273142","2010-04-20 00:00:00 +0000","Twitter Web Client","@lunafiko heh, sounds like a good time :)","","","","" -"12421964589","","","2010-04-18 00:00:00 +0000","Twitter Web Client","RT @tlrobinson: .@brendaneich at #jsconf talking about awesome new features slated for next edition of JS. Detail on the ECMA wiki: http ...","12419872636","14206068","2010-04-18 21:54:38 +0000","" "12322999305","","","2010-04-17 00:00:00 +0000","Twitter Web Client","""but be warned: it's definitely not for the casual jailbreaker."" http://tinyurl.com/y2vsbnv sounds like a challenge! ;-)","","","","" "12341974008","","","2010-04-17 00:00:00 +0000","Gowalla","Meeting my sister in Van for the day. — at Swartz Bay Foot Passenger Terminal http://gowal.la/s/ecZ","","","","" "12342410195","","","2010-04-17 00:00:00 +0000","Gowalla","Photo: God BC is beautiful! — at The Spirit of British Columbia http://gowal.la/c/BSKC","","","","" @@ -8224,8 +8309,8 @@ Victoria! http://twitpic.com/1m7g4b","","","","" "12090100417","","","2010-04-13 00:00:00 +0000","Twitter Web Client","RT @dalmaer traits.js is a minimal standards-compliant trait composition library for Javascript http://is.gd/bqwux by Tom Cutsem&Mark Miller","","","","" "12110770286","","","2010-04-13 00:00:00 +0000","Twitter Web Client","New MacBook Pros! Now to save up some $$","","","","" "12127055723","12126943664","894911","2010-04-13 00:00:00 +0000","Twitter Web Client","@JimRoepcke wheee!","","","","" -"12065048772","12064718775","14273142","2010-04-12 00:00:00 +0000","Twitter Web Client","@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 00:00:00 +0000","Twitter Web Client","@davidhund It's almost as stable as Grooveshark's RSS feeds. Need to move off of GAE. Scrobbleshark is more popular than I anticipated.","","","","" +"12065048772","12064718775","14273142","2010-04-12 00:00:00 +0000","Twitter Web Client","@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.","","","","" "11971479272","","","2010-04-11 00:00:00 +0000","Gowalla","I'm at Esquimalt Lagoon in Colwood http://gowal.la/s/5H6X","","","","" "11952207220","","","2010-04-10 00:00:00 +0000","Echofon","There's a new version of grooveshark for iPhone! Has free trial and less bugs. Yay :)","","","","" "11858253272","","","2010-04-09 00:00:00 +0000","Twitter Web Client","Any sufficiently complicated web app contains an ad hoc, informally-specified, bug-ridden, slow implementation of half of Webmachine.","","","","" @@ -8274,10 +8359,10 @@ Victoria! http://twitpic.com/1m7g4b","","","","" "11122252439","11122116123","6509982","2010-03-27 00:00:00 +0000","Twitter Web Client","@argv0 lyrics to ""oops i did it again""","","","","" "11122405818","11119924765","14962753","2010-03-27 00:00:00 +0000","Twitter Web Client","@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.","","","","" "11158272640","11141921864","3374231","2010-03-27 00:00:00 +0000","Echofon","@mxcl I've been listening to a bit of Jamiroquai. Pretty good stuff! Nice idea btw. :)","","","","" -"11061811920","","","2010-03-26 00:00:00 +0000","Echofon","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.","11058872352","14561327","2010-03-25 23:19:14 +0000","" -"11062374796","","","2010-03-26 00:00:00 +0000","Twitter Web Client","Idiot users still intentionally opening, clicking on spam http://tinyurl.com/yl2tnzt (great, there is no hope then)","","","","" "11113188838","","","2010-03-26 00:00:00 +0000","Twitter Web Client","For posterity: http://yfrog.com/4ziu0p ... made a few of us here lol on a long Friday afternoon.","","","","" "11115884211","","","2010-03-26 00:00:00 +0000","Twitter Web Client","""The curse of the gifted programmer is apparently the need to deal with occasional direct emails from Eric Raymond."" http://is.gd/b16tf","","","","" +"11061811920","","","2010-03-26 00:00:00 +0000","Echofon","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.","11058872352","14561327","2010-03-25 23:19:14 +0000","" +"11062374796","","","2010-03-26 00:00:00 +0000","Twitter Web Client","Idiot users still intentionally opening, clicking on spam http://tinyurl.com/yl2tnzt (great, there is no hope then)","","","","" "11013057232","11008243181","14962753","2010-03-25 00:00:00 +0000","Echofon","@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.","","","","" "11013651388","","","2010-03-25 00:00:00 +0000","Echofon","Come on #rogers you can do better. 2616ms latency! http://twitpic.com/1aqkff","","","","" "11040209720","11022166757","14130443","2010-03-25 00:00:00 +0000","Echofon","@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.","","","","" @@ -8312,6 +8397,8 @@ Victoria! http://twitpic.com/1m7g4b","","","","" "10327133361","","","2010-03-11 00:00:00 +0000","Twitter Web Client","RT @igrigorik: great start to #nosqllive by @timanglade.. ""nosql as a brand is a liability, it lacks definition and respectability"" - amen.","10324398622","9980812","2010-03-11 14:33:41 +0000","" "10332161723","10068750283","894911","2010-03-11 00:00:00 +0000","Twitter Web Client","@JimRoepcke BC champs eh? not bad, not bad at all! :)","","","","" "10341344052","","","2010-03-11 00:00:00 +0000","Twitter Web Client","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 ...","10339670168","636923","2010-03-11 21:06:00 +0000","" +"10248960220","","14273142","2010-03-10 00:00:00 +0000","Twitter Web Client","@lunafiko online payment systems always shaft non-US folk. hopefully we can get a response from @grooveshark on this... http://is.gd/a5yyB","","","","" +"10254877767","10252944305","22406953","2010-03-10 00:00:00 +0000","Twitter Web Client","@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.","","","","" "10254985784","10252944305","22406953","2010-03-10 00:00:00 +0000","Twitter Web Client","@mahyarm $2600+tax is $3000. ouch! refurb is $2200+tax, still $2500. can get a 15""mbp + 24""LCD for that price.","","","","" "10255145693","","","2010-03-10 00:00:00 +0000","Twitter Web Client","First day at the new job. Great so far! Lots of interesting stuff to learn.","","","","" "10255360972","","","2010-03-10 00:00:00 +0000","Twitter Web Client","Grooveshark has implemented native scrobbling for VIPs! Now if only I could sign up for a VIP account ... *sigh*","","","","" @@ -8324,8 +8411,6 @@ Victoria! http://twitpic.com/1m7g4b","","","","" "10289609392","10289433993","22406953","2010-03-10 00:00:00 +0000","Twitter Web Client","@mahyarm Ah, that makes sense. I wonder how long after the refresh before they were available. Have to wait and see I guess. :)","","","","" "10290426247","","","2010-03-10 00:00:00 +0000","Twitter Web Client","alias chrome='/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --allow-file-access-from-files >/dev/null 2>&1 &!' ... *sigh*","","","","" "10290462351","","","2010-03-10 00:00:00 +0000","Twitter Web Client","Too bad you can't add command line args to Info.plist in an app bundle on OS X ... or can you?","","","","" -"10248960220","","14273142","2010-03-10 00:00:00 +0000","Twitter Web Client","@lunafiko online payment systems always shaft non-US folk. hopefully we can get a response from @grooveshark on this... http://is.gd/a5yyB","","","","" -"10254877767","10252944305","22406953","2010-03-10 00:00:00 +0000","Twitter Web Client","@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.","","","","" "10206297917","","","2010-03-09 00:00:00 +0000","Twitter Web Client","Thinking I might rewrite scrobbleshark completely. Need a good project to learn Erlang, and it fits the bill perfectly.","","","","" "10206646283","","","2010-03-09 00:00:00 +0000","Twitter Web Client","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.","","","","" "10176886617","","","2010-03-08 00:00:00 +0000","Twitter Web Client","@Joachim_Joe nope, once you set it up you can pretty much forget about it. :)","","","","" @@ -8374,9 +8459,9 @@ Soon, soon...","","","","" "9219489240","","","2010-02-17 00:00:00 +0000","Twitter Web Client","Doubles on scrobbleshark should still only be scrobbled once, but tracks might have been missed. Sorry, I thought the feed was fixed!","","","","" "9223267915","","","2010-02-17 00:00:00 +0000","Twitter Web Client","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.","","","","" "9254549932","","","2010-02-17 00:00:00 +0000","Twitter Web Client","#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","","","","" -"9192595443","","","2010-02-16 00:00:00 +0000","Twitter Web Client","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-].","","","","" "9164440350","","","2010-02-16 00:00:00 +0000","Twitter Web Client","[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.","","","","" "9164471810","","","2010-02-16 00:00:00 +0000","Twitter Web Client","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.","","","","" +"9192595443","","","2010-02-16 00:00:00 +0000","Twitter Web Client","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-].","","","","" "9124726962","","","2010-02-15 00:00:00 +0000","Twitter Web Client","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.","","","","" "9127937602","","","2010-02-15 00:00:00 +0000","Twitter Web Client","twitter |ˈtwitər| verb [ intrans. ] @@ -8397,7 +8482,6 @@ verb [ intrans. ] "8813740420","","","2010-02-08 00:00:00 +0000","Twitter Web Client","Just saw a guy with a discman. How retro, very 1999. :p","","","","" "8776771280","8120731163","815869","2010-02-07 00:00:00 +0000","Twitter Web Client","@nocas Thank you! :)","","","","" "8781575552","","","2010-02-07 00:00:00 +0000","Twitter Web Client","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","","","","" -"8705804068","","","2010-02-06 00:00:00 +0000","Twitter Web Client","RT @tlrobinson: I'm not advocating this, but if you wanted to discourage people from using AdBlock you could put goatse, etc behind your ...","8705344653","14206068","2010-02-06 02:38:42 +0000","" "8618301416","8595697827","89704018","2010-02-04 00:00:00 +0000","Twitter Web Client","@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.","","","","" "8642412207","","","2010-02-04 00:00:00 +0000","Twitter Web Client","Today I love Cocoa, especially NSOperationQueue.","","","","" "8574284179","","","2010-02-03 00:00:00 +0000","Twitter Web Client","I often start txting the wrong person due to years of typing the msg *then* choosing the recipient. iPhone's Messages app thinks different.","","","","" @@ -8423,6 +8507,8 @@ verb [ intrans. ] "8328636491","8328395828","14273142","2010-01-28 00:00:00 +0000","Twitter Web Client","@lunafiko Most people getting Apple devices know the limitations. It's kind of a loophole imo. But my next device will run Android anyhow...","","","","" "8337948189","8337127429","14273142","2010-01-28 00:00:00 +0000","Twitter Web Client","@lunafiko Scrobbling rocks! It's always fun to check out listening trends on last.fm and last graph.","","","","" "8340003990","8338672114","14273142","2010-01-28 00:00:00 +0000","Twitter Web Client","@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.","","","","" +"8282849475","","","2010-01-27 00:00:00 +0000","Twitter Web Client","<3 the new @grooveshark so far! previous tracks can be restored. column browser for artist/album. and i thought i was in love before! ;-)","","","","" +"8285026676","8284365682","89704018","2010-01-27 00:00:00 +0000","Twitter Web Client","@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!","","","","" "8285089180","8284227910","14273142","2010-01-27 00:00:00 +0000","Twitter Web Client","@lunafiko I didn't realize how awesome it was for a little while but I'm completely hooked now. I barely use iTunes anymore.","","","","" "8285290988","","","2010-01-27 00:00:00 +0000","Twitter Web Client","@grooveshark new version is snappier in general, but hijacks cmd-shift-t (undo close-tab) in firefox 3.6/os x 10.6.","","","","" "8291013489","","","2010-01-27 00:00:00 +0000","Twitter Web Client","Ok the fun's over ... now where's the fucking SDK?!","","","","" @@ -8432,8 +8518,6 @@ verb [ intrans. ] "8269764295","","","2010-01-27 00:00:00 +0000","Twitter Web Client","#grooveshark's maintenance message: http://twitpic.com/zyrx4 (somehow that never gets old for me)","","","","" "8282119469","","","2010-01-27 00:00:00 +0000","Twitter Web Client","Too dark to get up. wtf am I doing.","","","","" "8282793034","","","2010-01-27 00:00:00 +0000","Twitter Web Client","RT @TUAW: The Onion: Frantic Steve Jobs Stays Up All Night... http://www.theonion.com/%63ontent/news_briefs/frantic_steve_jobs_stays_up","8282485260","678953","2010-01-27 15:16:56 +0000","" -"8282849475","","","2010-01-27 00:00:00 +0000","Twitter Web Client","<3 the new @grooveshark so far! previous tracks can be restored. column browser for artist/album. and i thought i was in love before! ;-)","","","","" -"8285026676","8284365682","89704018","2010-01-27 00:00:00 +0000","Twitter Web Client","@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!","","","","" "8238630886","","","2010-01-26 00:00:00 +0000","Twitter Web Client","Oldie but a goodie ... ""Success"" http://xkcd.com/349/","","","","" "8243648667","","","2010-01-26 00:00:00 +0000","Twitter Web Client","Hard not to smile when you see this on your iPod. http://yfrog.com/4ek1zp","","","","" "8252376329","","","2010-01-26 00:00:00 +0000","Twitter Web Client","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 ...","8252066782","678953","2010-01-26 21:52:50 +0000","" @@ -8475,13 +8559,13 @@ verb [ intrans. ] "7994232609","","","2010-01-20 00:00:00 +0000","Twitter Web Client","Oh how I've wished for this! RT @raganwald: Hammertime is an interactive error console for Ruby: http://bit.ly/4suW1d","","","","" "7995339328","","","2010-01-20 00:00:00 +0000","Twitter Web Client","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","","","","" "8002830057","","","2010-01-20 00:00:00 +0000","Twitter Web Client","RT @avibryant: Beatles fans have to listen to this, right now: http://waxy.org/2009/10/audio_analysis_of_the_beatles_multitrack_masters/","8002023400","13192","2010-01-20 22:16:13 +0000","" +"7893652393","","","2010-01-18 00:00:00 +0000","Twitter Web Client","For once I'm actually a bit sad I'm not still in Ontario.","","","","" +"7893719461","","","2010-01-18 00:00:00 +0000","Twitter Web Client","Done reading and writing about Mach-O for today. I'm starting to go cross-eyed.","","","","" "7907986046","","","2010-01-18 00:00:00 +0000","Twitter Web Client","RT @TUAW: It appears that iTunes Connect (dev's door into App Store) is currently down. We'll update when it's back up.","7907842547","678953","2010-01-18 15:42:23 +0000","" "7915270793","7914960717","1341781","2010-01-18 00:00:00 +0000","Twitter Web Client","@gilesgoatboy +1 for pixelmator, never tried acorn though","","","","" "7884830671","","","2010-01-18 00:00:00 +0000","Twitter Web Client","Aha! Learning about some useful bits in Mach-O load commands. I need read about reloff and nreloc in the ABI docs. Thanks nasm!","","","","" "7885033611","","","2010-01-18 00:00:00 +0000","Twitter Web Client","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.","","","","" "7893631081","","","2010-01-18 00:00:00 +0000","Twitter Web Client","RT @igrigorik: ha! nothing like a RESTful API for your local liquor store (LCBO): http://bit.ly/6ye3nn (for canucks, at least..) :-)","","","","" -"7893652393","","","2010-01-18 00:00:00 +0000","Twitter Web Client","For once I'm actually a bit sad I'm not still in Ontario.","","","","" -"7893719461","","","2010-01-18 00:00:00 +0000","Twitter Web Client","Done reading and writing about Mach-O for today. I'm starting to go cross-eyed.","","","","" "7844208958","","","2010-01-17 00:00:00 +0000","Twitter Web Client","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.","","","","" "7872667977","","","2010-01-17 00:00:00 +0000","Twitter Web Client","Breakfast of champions. Protein. That is all. http://twitpic.com/yj4mq","","","","" "7879453024","","33858688","2010-01-17 00:00:00 +0000","Twitter Web Client","@ehoppe walking by #shawcable. Should I throw something at them for you? ;-)","","","","" @@ -8526,9 +8610,9 @@ verb [ intrans. ] "7357427296","","","2010-01-04 00:00:00 +0000","Twitter Web Client","Messing around with WebSockets (and node.js). Can't wait for mobile browsers to get this API.","","","","" "7373149069","7369580015","14273142","2010-01-04 00:00:00 +0000","Twitter Web Client","@lunafiko oh yes, thanks for leaving a 2nd monitor for me! And possibly a hackintosh for Cailee. You're like santa. :)","","","","" "7381389518","","","2010-01-04 00:00:00 +0000","Twitter Web Client","[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)","","","","" -"7323770241","7319403764","1341781","2010-01-03 00:00:00 +0000","Twitter Web Client","@gilesgoatboy Bad choice of words on my part. I simply meant that the US is predominantly a capitalist society.","","","","" "7317979853","","","2010-01-03 00:00:00 +0000","Twitter Web Client","RT @tlrobinson: Huxley vs. Orwell: http://i.imgur.com/XmNt6.jpg Who was [more] right?","","","","" "7318084854","","","2010-01-03 00:00:00 +0000","Twitter Web Client","Absolute capitalism doesn't work. RT @gilesgoatboy: http://www.good.is/post/cost-of-health-care-by-country-as-compared-to-life-expectancy","","","","" +"7323770241","7319403764","1341781","2010-01-03 00:00:00 +0000","Twitter Web Client","@gilesgoatboy Bad choice of words on my part. I simply meant that the US is predominantly a capitalist society.","","","","" "7255136818","","","2010-01-01 00:00:00 +0000","Twitter Web Client","""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","","","","" "7255400937","","","2010-01-01 00:00:00 +0000","Twitter Web Client","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","","","","" "7256201910","","","2010-01-01 00:00:00 +0000","Twitter Web Client","http://club1994.com The 90s are the new 80s. That's weird.","","","","" @@ -8578,9 +8662,9 @@ http: ...","7250391199","33423","2009-12-31 22:51:29 +0000","" "6535392640","","","2009-12-10 00:00:00 +0000","Twitter Web Client","I need to port #andand to #JavaScript. http://andand.rubyforge.org/ it's not much code but has anyone done it already?","","","","" "6536215603","","","2009-12-10 00:00:00 +0000","Twitter Web Client","In JavaScript null and undefined aren't objects ... Puts a damper on andand.","","","","" "6482146401","6478284057","14273142","2009-12-09 00:00:00 +0000","Twitter Web Client","@lunafiko If it's not too late check out http://is.gd/5gqBU","","","","" -"6469119192","","","2009-12-08 00:00:00 +0000","Twitter Web Client","If the rain stays away I don't mind the cold that much really. It's nice when it's a bit brisk.","","","","" "6451807743","","","2009-12-08 00:00:00 +0000","Twitter Web Client","Looking for a room or apartment in Victoria this month. Lots of good places! Now to make some appointments to see them.","","","","" "6451979179","","","2009-12-08 00:00:00 +0000","Twitter Web Client","ars: Artists' lawsuit: major record labels are the real pirates http://tinyurl.com/y8spqph (about time!)","","","","" +"6469119192","","","2009-12-08 00:00:00 +0000","Twitter Web Client","If the rain stays away I don't mind the cold that much really. It's nice when it's a bit brisk.","","","","" "6293342093","","","2009-12-03 00:00:00 +0000","Twitter Web Client","jailbroken 3.1.2 er, broke. shutdown from apple logo. back to 3.1. #iphone","","","","" "6187652541","","","2009-11-30 00:00:00 +0000","Twitter Web Client","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","","","","" "6178054881","","","2009-11-29 00:00:00 +0000","Twitter Web Client","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","","","","" @@ -8629,9 +8713,9 @@ http: ...","7250391199","33423","2009-12-31 22:51:29 +0000","" "5049167584","","","2009-10-21 00:00:00 +0000","Twitter Web Client","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 00:00:00 +0000","Twitter Web Client","Fall colours. http://bit.ly/aq2nh http://yfrog.com/0b9g8fj","","","","" "4919229991","4906986970","894911","2009-10-16 00:00:00 +0000","Twitter Web Client","@JimRoepcke No lists yet for me either. I don't twitter enough to really need them though.","","","","" +"4877094591","4876200327","894911","2009-10-15 00:00:00 +0000","Twitter Web Client","@JimRoepcke shame! Every solution seems like a hack.","","","","" "4880878300","4877166818","894911","2009-10-15 00:00:00 +0000","Twitter Web Client","@JimRoepcke still in vic! Well colwood anyway, near Esquimalt lagoon.","","","","" "4880997373","","","2009-10-15 00:00:00 +0000","Twitter Web Client","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","","","","" -"4877094591","4876200327","894911","2009-10-15 00:00:00 +0000","Twitter Web Client","@JimRoepcke shame! Every solution seems like a hack.","","","","" "4874316124","","","2009-10-14 00:00:00 +0000","Twitter Web Client","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 00:00:00 +0000","Twitter Web Client","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 00:00:00 +0000","Twitter Web Client","Wrong road down to the beach! http://twitpic.com/ks8wz","","","","" From bfae83019b01d7f6194407b8c2840c64d66f1fcb Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 28 May 2018 18:47:36 -0700 Subject: [PATCH 08/33] add HSTS header --- public/.htaccess | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/.htaccess b/public/.htaccess index ddb785a..3b03fdd 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -23,6 +23,8 @@ ExpiresDefault A259200 Header append Cache-Control "private, must-revalidate" +# Add HSTS header https://tools.ietf.org/html/rfc6797 +Header set Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" env=HTTPS ################ ### Rewrites ### From b04202d4ad634b984b8c4b7a8efed4b07c9a6a7a Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 10 Sep 2018 20:04:18 -0700 Subject: [PATCH 09/33] tighten up security a bit --- public/.htaccess | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/public/.htaccess b/public/.htaccess index 3b03fdd..1e51da7 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -26,6 +26,15 @@ ExpiresDefault A259200 # Add HSTS header https://tools.ietf.org/html/rfc6797 Header set Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" env=HTTPS +# Block pages from loading when they detect reflected XSS attacks +Header set X-XSS-Protection "1; mode=block" + +# Prevent browsers from incorrectly detecting non-scripts as scripts +Header set X-Content-Type-Options "nosniff" + +# Block site from being framed +Header set X-Frame-Options "DENY" + ################ ### Rewrites ### ################ From 0eb0bea3edcc00752252b2f1c9d00534a52424bd Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 10 Sep 2018 20:19:20 -0700 Subject: [PATCH 10/33] remove Google Analytics --- public/_layout.ejs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/public/_layout.ejs b/public/_layout.ejs index 67248f8..e2e23b0 100644 --- a/public/_layout.ejs +++ b/public/_layout.ejs @@ -26,7 +26,6 @@ <% } -%> - <% if (typeof title != 'undefined') { -%> @@ -75,7 +74,6 @@ <% var bodyClasses = current.path -%> -

<%= site %>

@@ -150,22 +148,5 @@ <% for (var i in allScripts) { -%> <% } -%> - - - From 72867fe3fb654b0d62f20f75cac937c35899f1c8 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 10 Sep 2018 20:55:37 -0700 Subject: [PATCH 11/33] add Content-Security-Policy header --- public/.htaccess | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/.htaccess b/public/.htaccess index 1e51da7..52dc021 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -35,6 +35,9 @@ Header set X-Content-Type-Options "nosniff" # Block site from being framed Header set X-Frame-Options "DENY" +# Content Security Policy generated by Mozilla's CSP Toolkit +Header set Content-Security-Policy "default-src 'none'; img-src 'self' https://p.typekit.net; script-src 'self' 'unsafe-inline' https://ajax.googleapis.com https://api.github.com https://gist.github.com https://use.typekit.net; style-src 'unsafe-inline' https://assets-cdn.github.com https://netdna.bootstrapcdn.com" + ################ ### Rewrites ### ################ From 4bf5ce419067100d60b109dd304e747c03c69859 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 10 Sep 2018 21:23:49 -0700 Subject: [PATCH 12/33] update CSP and add Referrer-Policy --- public/.htaccess | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/.htaccess b/public/.htaccess index 52dc021..68d32dd 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -36,7 +36,10 @@ Header set X-Content-Type-Options "nosniff" Header set X-Frame-Options "DENY" # Content Security Policy generated by Mozilla's CSP Toolkit -Header set Content-Security-Policy "default-src 'none'; img-src 'self' https://p.typekit.net; script-src 'self' 'unsafe-inline' https://ajax.googleapis.com https://api.github.com https://gist.github.com https://use.typekit.net; style-src 'unsafe-inline' https://assets-cdn.github.com https://netdna.bootstrapcdn.com" +Header set Content-Security-Policy "default-src 'none'; img-src 'self' https://p.typekit.net; script-src 'self' 'unsafe-inline' https://ajax.googleapis.com https://api.github.com https://gist.github.com https://use.typekit.net; style-src 'unsafe-inline' https://assets-cdn.github.com https://netdna.bootstrapcdn.com; base-uri 'none'; frame-ancestors; form-action 'none'" + +# https://infosec.mozilla.org/guidelines/web_security#referrer-policy +Header set Referrer-Policy "no-referrer, strict-origin-when-cross-origin" ################ ### Rewrites ### From 5e97f43c10f04f24017fe1f652cf6bf37a59e226 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Tue, 11 Sep 2018 19:32:54 -0700 Subject: [PATCH 13/33] add Sub-Resource Integrity attributes on external sources --- public/_layout.ejs | 2 +- .../01/basics-of-the-mach-o-file-format.md | 6 ++-- .../working-with-c-style-structs-in-ruby.md | 4 +-- .../2010/11/37signals-chalk-dissected.md | 30 +++++++++---------- .../12/static-url-shortener-using-htaccess.md | 2 +- 5 files changed, 21 insertions(+), 23 deletions(-) diff --git a/public/_layout.ejs b/public/_layout.ejs index e2e23b0..66b2ef3 100644 --- a/public/_layout.ejs +++ b/public/_layout.ejs @@ -53,7 +53,7 @@ - + +

Segments

@@ -82,7 +82,7 @@ e.g. \_\_DATA or \_\_TEXT

The code exposes some more details about segment commands, but should be easy enough to follow.

- +

Sections

@@ -105,7 +105,7 @@ two underscores, e.g. \_\_bss or \_\_text

Finally, the Ruby code describing section structs:

- +

macho.rb

diff --git a/public/posts/2010/01/working-with-c-style-structs-in-ruby.md b/public/posts/2010/01/working-with-c-style-structs-in-ruby.md index 1b9da3d..8daf26f 100644 --- a/public/posts/2010/01/working-with-c-style-structs-in-ruby.md +++ b/public/posts/2010/01/working-with-c-style-structs-in-ruby.md @@ -28,11 +28,11 @@ supported by Array#pack is fairly easy to add though. First a quick example and then we'll get into the CStruct class itself. In C you may write the following to have one struct "inherit" from another: - + With CStruct in Ruby that translates to: - + CStructs act like Ruby's built-in Struct to a certain extent. They are instantiated the same way, by passing values to #new in the same order they diff --git a/public/posts/2010/11/37signals-chalk-dissected.md b/public/posts/2010/11/37signals-chalk-dissected.md index 86ca8a1..c68b26c 100644 --- a/public/posts/2010/11/37signals-chalk-dissected.md +++ b/public/posts/2010/11/37signals-chalk-dissected.md @@ -27,7 +27,7 @@

2k, 61 lines. 10 of which are Google Analytics JavaScript. Let's glance at some of it.

- +

Standard html5 doctype, and a manifest for application caching.

@@ -35,7 +35,7 @@

The interesting thing about the HTML is that without any JavaScript or CSS the document would be a completely blank white page (except for a strange looking share button w/ no title). Talk about progressive enhancement. Here's a look at the HTML:

- +

Onward.

@@ -59,16 +59,14 @@ background.jpg 1024x946px

The background is the blackboard itself, and is almost square at 1024x946. The cork border and light switch are there too. This is set as the background-image of the html element and is positioned at a negative x or y in order to centre it properly. CSS media queries are used to detect the screen's orientation. This way the same image is used for both orientations, clever.

- +

 

Chalkboard

Just a canvas element positioned over the chalkboard using media queries. There's also an image element called "output" used to render an image for sharing.

- +

 

Sprites

@@ -87,8 +85,7 @@ chalk-sprites.png

The dimmers background color is black at 67% opacity. The shade element fades in using -webkit-transition: on its visibility property while the dimmers use CSS3 transitions on their background. The dimmers are positioned using media queries as well, one on each side of the board. Interestingly their parent shade has a height and width of 0. Rather than each having a unique id they just have the class "dim" and the :nth-child pseudo-class selector is used to position them independently.

- +

If you took a look at the HTML before you'll have noticed there's no shade class defined on the body element. Looks like they're using JavaScript to add the shade class to body, triggering the transitions to the visible shades and setting the dimmers backgrounds to black at the same time, causing the fading effect. The shade fades in while the ledge and share button fade out.

@@ -99,8 +96,7 @@ chalk-sprites.png

There are 2 layers to the tools on the ledge. There are the images of the tools and their indicators, but also an anchor element for each tool that acts as targets to select them. When tools are select the indicators fade in and out using CSS3 transitions on opacity by adding and removing the class "active" on the tool.

- +

There are pattern images for each colour of chalk, and one for the the eraser. The eraser "pattern" is the entire blackboard so erasing it doesn't look ugly. I love that kind of attention to detail.

@@ -126,7 +122,7 @@ chalk-sprites.png

Initialization

 

- +

First we get a handle on all the elements and the canvas' 2d drawing context. I almost want to say views and controls as it really feels just like hooking up a controller and view in a desktop GUI app. Sometimes the line between dynamic web page and web app are blurred, not so here. Chalk is 100% app.

@@ -138,7 +134,7 @@ chalk-sprites.png

Tools

 

- +

createPattern(name, callback) loads one of the pattern images, chalk-tile-*, and then creates a pattern in the drawing context and passes it to the given callback.

@@ -152,7 +148,7 @@ chalk-sprites.png

Drawing

 

- +

Drawing is done by listening for touch events on the canvas element. An array of points to draw is initialized to a 1-element array containing null. Null values make the draw function break up the line being drawn by skipping the next point in the array. x and y coords are initialized in touchstart, points are appended to the points array in touchmove, and the touchend handler appends two points and null to the points array to end the line. I'm not sure why [x, y] is used as the points in the touchend handler rather than coords from the event. Please leave a comment if you know why!

@@ -164,7 +160,8 @@ chalk-sprites.png

Light Switch & Shade

 

- + +

When the light switch is touched (or clicked) the shade class on the body element is toggled. Nothing to it.

@@ -172,7 +169,7 @@ chalk-sprites.png

Sharing

 

- +

The share window is opened after a 10ms delay, just enough time for any drawing to be completed before rendering the image. The image is created by assigning the result of canvas' toDataURL() method to the output image element's src attribute.

@@ -187,7 +184,8 @@ chalk-sprites.png

Have fun drawing. Thanks to 37signals for a beautiful (and useful) example of a few modern web technologies.

- + + + I think this is a pretty neat hack and have not seen this technique anywhere else so I thought I'd share it. Maybe someone else will find it interesting or useful for their blog. How far it scales won't be a concern until I have thousands of posts. That sounds like a good problem for future Sami to solve should it arise. From 0d381ad0dcb4464b5b875ea1cf099ab620da1a13 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Tue, 11 Sep 2018 19:33:27 -0700 Subject: [PATCH 14/33] fix a broken link and a missing image --- public/images/sunset-lol.jpg | Bin 0 -> 5135 bytes .../2007/05/a-new-way-to-look-at-networking.md | 10 ++++------ .../posts/2007/05/gotta-love-the-ferry-ride.md | 2 +- 3 files changed, 5 insertions(+), 7 deletions(-) create mode 100644 public/images/sunset-lol.jpg diff --git a/public/images/sunset-lol.jpg b/public/images/sunset-lol.jpg new file mode 100644 index 0000000000000000000000000000000000000000..302fe6619488b0bdd312c7c8d15879439fc97910 GIT binary patch literal 5135 zcmeHI2~d-F7XKmwiAcFTI8=%fuo^%ygsKr*m|_zQLBJG(KvPIcfRLgb1vX%3gW45P zf&>K&i;#pXB7{Q?Q7e}iQzQw<85C4bfj~HfKsG&grrVkB%VAL@Xlrc*YwK!jYwPNOwRJQ~S0mbBZHVRt>+1ZZ z^$hjE;13|$+WK2fjf{*;OiaLf+f26^n;IIM7=wOJ)ntIRjWw~x|FNha0!Cm^IOv5I zXg9FI2&82MQa1xTH2^nk(E17MKSfsq3A9m1YlFs(G}Jh>K{^|?bhJT`pCdpUv^MH! z8yTD8*fL!ctAks1p9DL8>O+Xxy2tIitm1*V&>$l6z>9$gU1y?aUtZ98yaE?cKZ+t(HKamXA&ix5Y z{(mWHrS%NByaIqs)c{uZYg34afEt*YpVI8ldH|sOn^tx7nm6a2Kg5nmdaDf8OEx!= z<;NGyi_I2O_XV}n)@j|1w5&#a7yp>A^_|B~LG?IUC@zOCbEb^@{-O$^- z$S*K?=~udJyE*T|Dj<9Gm&N9Vh@s-AVJkYt973>3aHPzBUwB_i8D6*mDPe_6YO8Q2 z0UbV9X+-80RZr6TH&Gme5xG-#utXBOI-#7YPy^C-8YL!jlYA9gj4N^eIz1t!bh0_5 zHf(u4E;K^~Q?%{HK<~2+(pZr_gQu7W=1ZGM$~lp9&bUEpP`f;u zO@lsK!ZWM1&P|a&G0LT0M;4wj98{%TZp$=Jt3N!PsmqJ}CT+iYJX214DqAW`lw;5b zD&PeDtaQF#?j%2KH)N?fWE=eSkz@+sJ`@Ked~QRt8=lfzm@2SEtFR8txX=1dWMta;_ML@N_OWRTMWzUL?g|8|2AziUQk1 zp&^Tz(?4b;uQ2?wpUzPt{c^)<*877Ere1TqyKf;0wbjBh+Sz0>yte8MBjW5phuK6c zT5yGKWxpimf87lfOs7b$u}uf4gAuL6iNLocsmioCjC)<^`uZ!HEaCH4=xfDm3@bpdv7CS8GSpDEZHN9k`uY3iARATn%ij6XH-4 zUv)d4TpsfXT1~Xg@2f*0qUcrzr3l@onH|+nZ!Kah(TzN;Z<+oC?s<0?Z(kSPN@!^- zRJHW{)gashrrW0% zC_Rh3)D#IbX6x}t{od?gUJL!oKoM6IgHD8&;XeP%ZRVEpwy@N%rHC$Gj2bYjth2)# z77^nJ6zGw8pY_wvw~{elH-gq!t3*0tbyX{>Xi`w)q6SI`@c0$YMrbK@v0Gj$?G`Ji zLUzeUrOLp_{>Z@cXSJ-#`9TcMu<8MopOlDbHC{eEw~v29EPBI%tqWzes zwLmJuNvJIUsWtPpm$!Jti^~^=H@|CEQlb|iBfgmXLZ+p`v66_HcYc%DanpB!SCp!( zxW6Fi_gWte%Y~V~EK_l7Zj2XdyxoklKlt6r^K1J85tt=XW)JPt+cKn2XT;c6et^TC z9ZBbh97o$L9>AX6Ni*30a*^smbtDt2rB513ZLtp$qz5Q2Pdan2sn@ zG1&ciKlN5KA(11kRh%!#qiu>MRs4NGtSYmz&Z-bV2rjSg=lh57??1RXvbb&?Kck;{S6G<}VXvJ~gDi1oj z9hPtBOf2(4y}r;$fYejgOsw&}i@;$1&gUey{o9Y~@;bQ=uNiRSK=!Kpng#TauUK7^ zM<#A$5`7PhVCrGCz;tYzTse~Gl@rO4Mxn92R+RJB;B`Ih69P$l%+S0nli~ zmn+8tFJ~5_q#S`hESquV%R9 zA9Gdc_UIV6H7R*ECC|-C*9jCnMG$ea*t(8JTg1-jM&h5r;zDefb8fIZvUk>w1m}G8 zhDl9j9=yQmnXU;02yp|xm@ZDS3!B?}x`PUKOYbUehm+e4$k6<`rm;6Cq9qwe`w$4F zosEF)bR>uJ5ehvLMoh24LNt>S$kQK#Ex(xc#mnH6mBBOnShtSG;EXCZb;okMI1Opx ze#_zVHhEBuXwsCTT=K+|Y(pbUdPewx5+29Dzq1IP)69@D;AJRCSe|2BpKG#;uefyX zE9K^-w&V1IM|)5-IXqY^$L#Hg?*I!UZsIotqzSD}PF*2%zE=TfUW_)(TLU(0G4w}E2*q|cK)Who(<)(pRuvjGn!Cty5x5?wdP;b;E3S}G3e~OKFdbPA zf5phHDv1{vq+%=XXo-AhXWW>P->ZSYlJlP%rAM?Pl*K|gO|uGX7T^{ijf5f>ObAN-)8DZ+uPA!jt4lCAQ#^Uz8}wjONve1zhmA1 J=o6&w{RgF*WXb>l literal 0 HcmV?d00001 diff --git a/public/posts/2007/05/a-new-way-to-look-at-networking.md b/public/posts/2007/05/a-new-way-to-look-at-networking.md index c9e2833..469286b 100644 --- a/public/posts/2007/05/a-new-way-to-look-at-networking.md +++ b/public/posts/2007/05/a-new-way-to-look-at-networking.md @@ -1,10 +1,8 @@ -Van Jacobson gave a Google Tech Talk on some of his ideas of how a modern, global network could work more effectively, and with more trust in the data which changes many hands on its journey to its final destination. +Van Jacobson gave a Google Tech Talk on some of his ideas of how a modern, global network could work more effectively, and with more trust in the data which changes many hands on its journey to its final destination. - +

+A New Way to Look at Networking +

The man is very smart and his ideas are fascinating. He has the experience and knowledge to see the big picture and what can be done to solve some of the new problems we have. He starts with the beginning of the phone networks and then goes on to briefly explain the origins of the ARPAnet, which evolved into the modern Internet and TCP/IP and the many other protocols we use daily (often behind the scenes). diff --git a/public/posts/2007/05/gotta-love-the-ferry-ride.md b/public/posts/2007/05/gotta-love-the-ferry-ride.md index e5b5244..313ab56 100644 --- a/public/posts/2007/05/gotta-love-the-ferry-ride.md +++ b/public/posts/2007/05/gotta-love-the-ferry-ride.md @@ -1,3 +1,3 @@ I lived in Victoria for over a year before I ever rode the ferry between Vancouver Island and Tsawwassen (ignoring the time I was in BC with my family about 16 years ago, that is). I always just flew in and out of Victoria directly. The ferry is awesome and the view is incredible, navigating through all those little islands. Last time I rode the ferry I snapped this shot. It's possibly the best picture I've taken on that trip. -Sunset +Sunset From 3e8d71bac968c679e7d1f4969d9d9b01a8b14206 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Tue, 11 Sep 2018 19:46:35 -0700 Subject: [PATCH 15/33] fix Content-Security-Policy for frames --- public/.htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/.htaccess b/public/.htaccess index 68d32dd..3364e4d 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -36,7 +36,7 @@ Header set X-Content-Type-Options "nosniff" Header set X-Frame-Options "DENY" # Content Security Policy generated by Mozilla's CSP Toolkit -Header set Content-Security-Policy "default-src 'none'; img-src 'self' https://p.typekit.net; script-src 'self' 'unsafe-inline' https://ajax.googleapis.com https://api.github.com https://gist.github.com https://use.typekit.net; style-src 'unsafe-inline' https://assets-cdn.github.com https://netdna.bootstrapcdn.com; base-uri 'none'; frame-ancestors; form-action 'none'" +Header set Content-Security-Policy "default-src 'none'; img-src 'self' https://p.typekit.net; script-src 'self' 'unsafe-inline' https://ajax.googleapis.com https://api.github.com https://gist.github.com https://use.typekit.net; style-src 'unsafe-inline' https://assets-cdn.github.com https://netdna.bootstrapcdn.com; base-uri 'none'; frame-ancestors 'none'; form-action 'none'" # https://infosec.mozilla.org/guidelines/web_security#referrer-policy Header set Referrer-Policy "no-referrer, strict-origin-when-cross-origin" From f2ecd6f57c973750da7577f2c6d2cee80fd1de32 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Wed, 17 Oct 2018 10:07:53 -0700 Subject: [PATCH 16/33] update tweet archive --- public/tweets/data/js/payload_details.js | 4 +- public/tweets/data/js/tweet_index.js | 92 +- public/tweets/data/js/tweets/2007_09.js | 2 +- public/tweets/data/js/tweets/2009_10.js | 6 +- public/tweets/data/js/tweets/2009_11.js | 8 +- public/tweets/data/js/tweets/2009_12.js | 64 +- public/tweets/data/js/tweets/2010_01.js | 176 +- public/tweets/data/js/tweets/2010_02.js | 105 +- public/tweets/data/js/tweets/2010_03.js | 68 +- public/tweets/data/js/tweets/2010_04.js | 87 +- public/tweets/data/js/tweets/2010_05.js | 76 +- public/tweets/data/js/tweets/2010_06.js | 36 +- public/tweets/data/js/tweets/2010_07.js | 32 +- public/tweets/data/js/tweets/2010_08.js | 18 +- public/tweets/data/js/tweets/2010_09.js | 28 +- public/tweets/data/js/tweets/2010_10.js | 151 +- public/tweets/data/js/tweets/2010_11.js | 190 +- public/tweets/data/js/tweets/2010_12.js | 242 +- public/tweets/data/js/tweets/2011_01.js | 76 +- public/tweets/data/js/tweets/2011_02.js | 120 +- public/tweets/data/js/tweets/2011_03.js | 108 +- public/tweets/data/js/tweets/2011_04.js | 26 +- public/tweets/data/js/tweets/2011_05.js | 202 +- public/tweets/data/js/tweets/2011_06.js | 38 +- public/tweets/data/js/tweets/2011_07.js | 274 +- public/tweets/data/js/tweets/2011_08.js | 148 +- public/tweets/data/js/tweets/2011_09.js | 22 +- public/tweets/data/js/tweets/2011_10.js | 28 +- public/tweets/data/js/tweets/2011_11.js | 34 +- public/tweets/data/js/tweets/2011_12.js | 87 +- public/tweets/data/js/tweets/2012_01.js | 34 +- public/tweets/data/js/tweets/2012_02.js | 50 +- public/tweets/data/js/tweets/2012_03.js | 76 +- public/tweets/data/js/tweets/2012_04.js | 89 +- public/tweets/data/js/tweets/2012_05.js | 135 +- public/tweets/data/js/tweets/2012_06.js | 108 +- public/tweets/data/js/tweets/2012_07.js | 89 +- public/tweets/data/js/tweets/2012_08.js | 30 +- public/tweets/data/js/tweets/2012_09.js | 50 +- public/tweets/data/js/tweets/2012_10.js | 24 +- public/tweets/data/js/tweets/2012_11.js | 10 +- public/tweets/data/js/tweets/2012_12.js | 10 +- public/tweets/data/js/tweets/2013_01.js | 155 +- public/tweets/data/js/tweets/2013_02.js | 136 +- public/tweets/data/js/tweets/2013_03.js | 138 +- public/tweets/data/js/tweets/2013_04.js | 124 +- public/tweets/data/js/tweets/2013_05.js | 66 +- public/tweets/data/js/tweets/2013_06.js | 48 +- public/tweets/data/js/tweets/2013_07.js | 88 +- public/tweets/data/js/tweets/2013_08.js | 162 +- public/tweets/data/js/tweets/2013_09.js | 415 +- public/tweets/data/js/tweets/2013_10.js | 487 +- public/tweets/data/js/tweets/2013_11.js | 266 +- public/tweets/data/js/tweets/2013_12.js | 423 +- public/tweets/data/js/tweets/2014_01.js | 449 +- public/tweets/data/js/tweets/2014_02.js | 556 +- public/tweets/data/js/tweets/2014_03.js | 698 ++- public/tweets/data/js/tweets/2014_04.js | 518 +- public/tweets/data/js/tweets/2014_05.js | 342 +- public/tweets/data/js/tweets/2014_06.js | 518 +- public/tweets/data/js/tweets/2014_07.js | 490 +- public/tweets/data/js/tweets/2014_08.js | 274 +- public/tweets/data/js/tweets/2014_09.js | 306 +- public/tweets/data/js/tweets/2014_10.js | 208 +- public/tweets/data/js/tweets/2014_11.js | 160 +- public/tweets/data/js/tweets/2014_12.js | 18 +- public/tweets/data/js/tweets/2015_01.js | 102 +- public/tweets/data/js/tweets/2015_02.js | 203 +- public/tweets/data/js/tweets/2015_03.js | 194 +- public/tweets/data/js/tweets/2015_04.js | 198 +- public/tweets/data/js/tweets/2015_05.js | 348 +- public/tweets/data/js/tweets/2015_06.js | 249 +- public/tweets/data/js/tweets/2015_07.js | 122 +- public/tweets/data/js/tweets/2015_08.js | 68 +- public/tweets/data/js/tweets/2015_09.js | 424 +- public/tweets/data/js/tweets/2015_10.js | 329 +- public/tweets/data/js/tweets/2015_11.js | 66 +- public/tweets/data/js/tweets/2015_12.js | 20 +- public/tweets/data/js/tweets/2016_01.js | 28 +- public/tweets/data/js/tweets/2016_02.js | 137 +- public/tweets/data/js/tweets/2016_03.js | 30 +- public/tweets/data/js/tweets/2016_04.js | 12 +- public/tweets/data/js/tweets/2016_05.js | 8 +- public/tweets/data/js/tweets/2016_06.js | 215 +- public/tweets/data/js/tweets/2016_07.js | 164 +- public/tweets/data/js/tweets/2016_08.js | 36 +- public/tweets/data/js/tweets/2016_09.js | 137 +- public/tweets/data/js/tweets/2016_10.js | 254 +- public/tweets/data/js/tweets/2016_11.js | 92 +- public/tweets/data/js/tweets/2016_12.js | 30 +- public/tweets/data/js/tweets/2017_01.js | 50 +- public/tweets/data/js/tweets/2017_03.js | 2 +- public/tweets/data/js/tweets/2017_04.js | 14 +- public/tweets/data/js/tweets/2017_06.js | 22 +- public/tweets/data/js/tweets/2017_07.js | 2 +- public/tweets/data/js/tweets/2017_08.js | 14 +- public/tweets/data/js/tweets/2017_09.js | 4 +- public/tweets/data/js/tweets/2017_10.js | 4 +- public/tweets/data/js/tweets/2017_11.js | 10 +- public/tweets/data/js/tweets/2018_01.js | 10 +- public/tweets/data/js/tweets/2018_02.js | 64 +- public/tweets/data/js/tweets/2018_03.js | 71 +- public/tweets/data/js/tweets/2018_04.js | 8 +- public/tweets/data/js/tweets/2018_05.js | 236 + public/tweets/data/js/tweets/2018_06.js | 711 +++ public/tweets/data/js/tweets/2018_07.js | 658 +++ public/tweets/data/js/tweets/2018_08.js | 1227 +++++ public/tweets/data/js/tweets/2018_09.js | 294 ++ public/tweets/data/js/tweets/2018_10.js | 415 ++ public/tweets/tweets.csv | 5964 +++++++++++----------- 110 files changed, 13004 insertions(+), 10540 deletions(-) create mode 100755 public/tweets/data/js/tweets/2018_05.js create mode 100755 public/tweets/data/js/tweets/2018_06.js create mode 100755 public/tweets/data/js/tweets/2018_07.js create mode 100755 public/tweets/data/js/tweets/2018_08.js create mode 100755 public/tweets/data/js/tweets/2018_09.js create mode 100755 public/tweets/data/js/tweets/2018_10.js diff --git a/public/tweets/data/js/payload_details.js b/public/tweets/data/js/payload_details.js index d2be371..0b43424 100755 --- a/public/tweets/data/js/payload_details.js +++ b/public/tweets/data/js/payload_details.js @@ -1,5 +1,5 @@ var payload_details = { - "tweets" : 8031, - "created_at" : "2018-04-17 23:01:34 +0000", + "tweets" : 8092, + "created_at" : "2018-10-17 16:06:29 +0000", "lang" : "en" } \ No newline at end of file diff --git a/public/tweets/data/js/tweet_index.js b/public/tweets/data/js/tweet_index.js index 2c2799b..63478cf 100755 --- a/public/tweets/data/js/tweet_index.js +++ b/public/tweets/data/js/tweet_index.js @@ -1,4 +1,40 @@ var tweet_index = [ { + "file_name" : "data\/js\/tweets\/2018_10.js", + "year" : 2018, + "var_name" : "tweets_2018_10", + "tweet_count" : 7, + "month" : 10 +}, { + "file_name" : "data\/js\/tweets\/2018_09.js", + "year" : 2018, + "var_name" : "tweets_2018_09", + "tweet_count" : 8, + "month" : 9 +}, { + "file_name" : "data\/js\/tweets\/2018_08.js", + "year" : 2018, + "var_name" : "tweets_2018_08", + "tweet_count" : 28, + "month" : 8 +}, { + "file_name" : "data\/js\/tweets\/2018_07.js", + "year" : 2018, + "var_name" : "tweets_2018_07", + "tweet_count" : 17, + "month" : 7 +}, { + "file_name" : "data\/js\/tweets\/2018_06.js", + "year" : 2018, + "var_name" : "tweets_2018_06", + "tweet_count" : 19, + "month" : 6 +}, { + "file_name" : "data\/js\/tweets\/2018_05.js", + "year" : 2018, + "var_name" : "tweets_2018_05", + "tweet_count" : 6, + "month" : 5 +}, { "file_name" : "data\/js\/tweets\/2018_04.js", "year" : 2018, "var_name" : "tweets_2018_04", @@ -8,13 +44,13 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2018_03.js", "year" : 2018, "var_name" : "tweets_2018_03", - "tweet_count" : 11, + "tweet_count" : 10, "month" : 3 }, { "file_name" : "data\/js\/tweets\/2018_02.js", "year" : 2018, "var_name" : "tweets_2018_02", - "tweet_count" : 10, + "tweet_count" : 9, "month" : 2 }, { "file_name" : "data\/js\/tweets\/2018_01.js", @@ -104,19 +140,19 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2016_11.js", "year" : 2016, "var_name" : "tweets_2016_11", - "tweet_count" : 51, + "tweet_count" : 50, "month" : 11 }, { "file_name" : "data\/js\/tweets\/2016_10.js", "year" : 2016, "var_name" : "tweets_2016_10", - "tweet_count" : 123, + "tweet_count" : 120, "month" : 10 }, { "file_name" : "data\/js\/tweets\/2016_09.js", "year" : 2016, "var_name" : "tweets_2016_09", - "tweet_count" : 92, + "tweet_count" : 91, "month" : 9 }, { "file_name" : "data\/js\/tweets\/2016_08.js", @@ -134,7 +170,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2016_06.js", "year" : 2016, "var_name" : "tweets_2016_06", - "tweet_count" : 125, + "tweet_count" : 124, "month" : 6 }, { "file_name" : "data\/js\/tweets\/2016_05.js", @@ -158,7 +194,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2016_02.js", "year" : 2016, "var_name" : "tweets_2016_02", - "tweet_count" : 51, + "tweet_count" : 50, "month" : 2 }, { "file_name" : "data\/js\/tweets\/2016_01.js", @@ -182,7 +218,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2015_10.js", "year" : 2015, "var_name" : "tweets_2015_10", - "tweet_count" : 199, + "tweet_count" : 200, "month" : 10 }, { "file_name" : "data\/js\/tweets\/2015_09.js", @@ -206,13 +242,13 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2015_06.js", "year" : 2015, "var_name" : "tweets_2015_06", - "tweet_count" : 61, + "tweet_count" : 59, "month" : 6 }, { "file_name" : "data\/js\/tweets\/2015_05.js", "year" : 2015, "var_name" : "tweets_2015_05", - "tweet_count" : 106, + "tweet_count" : 105, "month" : 5 }, { "file_name" : "data\/js\/tweets\/2015_04.js", @@ -230,7 +266,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2015_02.js", "year" : 2015, "var_name" : "tweets_2015_02", - "tweet_count" : 70, + "tweet_count" : 68, "month" : 2 }, { "file_name" : "data\/js\/tweets\/2015_01.js", @@ -272,7 +308,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2014_07.js", "year" : 2014, "var_name" : "tweets_2014_07", - "tweet_count" : 201, + "tweet_count" : 199, "month" : 7 }, { "file_name" : "data\/js\/tweets\/2014_06.js", @@ -290,43 +326,43 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2014_04.js", "year" : 2014, "var_name" : "tweets_2014_04", - "tweet_count" : 172, + "tweet_count" : 173, "month" : 4 }, { "file_name" : "data\/js\/tweets\/2014_03.js", "year" : 2014, "var_name" : "tweets_2014_03", - "tweet_count" : 209, + "tweet_count" : 208, "month" : 3 }, { "file_name" : "data\/js\/tweets\/2014_02.js", "year" : 2014, "var_name" : "tweets_2014_02", - "tweet_count" : 164, + "tweet_count" : 162, "month" : 2 }, { "file_name" : "data\/js\/tweets\/2014_01.js", "year" : 2014, "var_name" : "tweets_2014_01", - "tweet_count" : 150, + "tweet_count" : 151, "month" : 1 }, { "file_name" : "data\/js\/tweets\/2013_12.js", "year" : 2013, "var_name" : "tweets_2013_12", - "tweet_count" : 111, + "tweet_count" : 112, "month" : 12 }, { "file_name" : "data\/js\/tweets\/2013_11.js", "year" : 2013, "var_name" : "tweets_2013_11", - "tweet_count" : 53, + "tweet_count" : 55, "month" : 11 }, { "file_name" : "data\/js\/tweets\/2013_10.js", "year" : 2013, "var_name" : "tweets_2013_10", - "tweet_count" : 101, + "tweet_count" : 97, "month" : 10 }, { "file_name" : "data\/js\/tweets\/2013_09.js", @@ -416,7 +452,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2012_07.js", "year" : 2012, "var_name" : "tweets_2012_07", - "tweet_count" : 25, + "tweet_count" : 24, "month" : 7 }, { "file_name" : "data\/js\/tweets\/2012_06.js", @@ -458,7 +494,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2011_12.js", "year" : 2011, "var_name" : "tweets_2011_12", - "tweet_count" : 59, + "tweet_count" : 58, "month" : 12 }, { "file_name" : "data\/js\/tweets\/2011_11.js", @@ -488,7 +524,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2011_07.js", "year" : 2011, "var_name" : "tweets_2011_07", - "tweet_count" : 268, + "tweet_count" : 269, "month" : 7 }, { "file_name" : "data\/js\/tweets\/2011_06.js", @@ -530,19 +566,19 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2010_12.js", "year" : 2010, "var_name" : "tweets_2010_12", - "tweet_count" : 154, + "tweet_count" : 152, "month" : 12 }, { "file_name" : "data\/js\/tweets\/2010_11.js", "year" : 2010, "var_name" : "tweets_2010_11", - "tweet_count" : 202, + "tweet_count" : 203, "month" : 11 }, { "file_name" : "data\/js\/tweets\/2010_10.js", "year" : 2010, "var_name" : "tweets_2010_10", - "tweet_count" : 137, + "tweet_count" : 138, "month" : 10 }, { "file_name" : "data\/js\/tweets\/2010_09.js", @@ -572,13 +608,13 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2010_05.js", "year" : 2010, "var_name" : "tweets_2010_05", - "tweet_count" : 55, + "tweet_count" : 56, "month" : 5 }, { "file_name" : "data\/js\/tweets\/2010_04.js", "year" : 2010, "var_name" : "tweets_2010_04", - "tweet_count" : 51, + "tweet_count" : 52, "month" : 4 }, { "file_name" : "data\/js\/tweets\/2010_03.js", @@ -590,7 +626,7 @@ var tweet_index = [ { "file_name" : "data\/js\/tweets\/2010_02.js", "year" : 2010, "var_name" : "tweets_2010_02", - "tweet_count" : 55, + "tweet_count" : 56, "month" : 2 }, { "file_name" : "data\/js\/tweets\/2010_01.js", diff --git a/public/tweets/data/js/tweets/2007_09.js b/public/tweets/data/js/tweets/2007_09.js index dc8b859..cecdcfa 100755 --- a/public/tweets/data/js/tweets/2007_09.js +++ b/public/tweets/data/js/tweets/2007_09.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2007_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2009_10.js b/public/tweets/data/js/tweets/2009_10.js index c5e5437..cbdb02e 100755 --- a/public/tweets/data/js/tweets/2009_10.js +++ b/public/tweets/data/js/tweets/2009_10.js @@ -116,7 +116,7 @@ Grailbird.data.tweets_2009_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -149,7 +149,7 @@ Grailbird.data.tweets_2009_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -182,7 +182,7 @@ Grailbird.data.tweets_2009_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2009_11.js b/public/tweets/data/js/tweets/2009_11.js index 59e18a9..73cfeb1 100755 --- a/public/tweets/data/js/tweets/2009_11.js +++ b/public/tweets/data/js/tweets/2009_11.js @@ -470,7 +470,7 @@ Grailbird.data.tweets_2009_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDC30 jonnay \uD83D\uDC30 this bun ain't big, it's LORJ", + "name" : "\uD83D\uDC30 jonnay \uD83D\uDC7B smoopy bunny \uD83D\uDC6F\u200D\u2642\uFE0F", "screen_name" : "jonnay", "indices" : [ 3, 10 ], "id_str" : "817328", @@ -503,11 +503,11 @@ Grailbird.data.tweets_2009_11 = "id" : 5907000124, "created_at" : "2009-11-21 01:38:49 +0000", "user" : { - "name" : "\uD83D\uDC30 jonnay \uD83D\uDC30 this bun ain't big, it's LORJ", + "name" : "\uD83D\uDC30 jonnay \uD83D\uDC7B smoopy bunny \uD83D\uDC6F\u200D\u2642\uFE0F", "screen_name" : "jonnay", "protected" : false, "id_str" : "817328", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/953823068954140673\/vd3Wnmrv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1042562580538044416\/LCfqyQuC_normal.jpg", "id" : 817328, "verified" : false } @@ -1138,7 +1138,7 @@ Grailbird.data.tweets_2009_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2009_12.js b/public/tweets/data/js/tweets/2009_12.js index d8a4712..672bced 100755 --- a/public/tweets/data/js/tweets/2009_12.js +++ b/public/tweets/data/js/tweets/2009_12.js @@ -1,5 +1,36 @@ Grailbird.data.tweets_2009_12 = [ { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "The Beatles Video", + "screen_name" : "TheBeatlesVideo", + "indices" : [ 25, 41 ], + "id_str" : "83535266", + "id" : 83535266 + } ], + "media" : [ ], + "hashtags" : [ { + "text" : "followfriday", + "indices" : [ 123, 136 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "7274724238", + "text" : "Bring in '10 w\/music! RT @TheBeatlesVideo VIDEO: The Beatles - \"Revolution\" (Version 2) http:\/\/bit.ly\/5DoyhL Plz ReTweet & #followfriday us!", + "id" : 7274724238, + "created_at" : "2010-01-01 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { @@ -135,37 +166,6 @@ Grailbird.data.tweets_2009_12 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "The Beatles Video", - "screen_name" : "TheBeatlesVideo", - "indices" : [ 25, 41 ], - "id_str" : "83535266", - "id" : 83535266 - } ], - "media" : [ ], - "hashtags" : [ { - "text" : "followfriday", - "indices" : [ 123, 136 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "7274724238", - "text" : "Bring in '10 w\/music! RT @TheBeatlesVideo VIDEO: The Beatles - \"Revolution\" (Version 2) http:\/\/bit.ly\/5DoyhL Plz ReTweet & #followfriday us!", - "id" : 7274724238, - "created_at" : "2010-01-01 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -275,7 +275,7 @@ Grailbird.data.tweets_2009_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2010_01.js b/public/tweets/data/js/tweets/2010_01.js index c42bd26..a5dab9b 100755 --- a/public/tweets/data/js/tweets/2010_01.js +++ b/public/tweets/data/js/tweets/2010_01.js @@ -516,6 +516,57 @@ Grailbird.data.tweets_2010_01 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "TUAW", + "screen_name" : "TUAW", + "indices" : [ 3, 8 ], + "id_str" : "678953", + "id" : 678953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "8282793034", + "text" : "RT @TUAW: The Onion: Frantic Steve Jobs Stays Up All Night... http:\/\/www.theonion.com\/%63ontent\/news_briefs\/frantic_steve_jobs_stays_up", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "8282485260", + "text" : "The Onion: Frantic Steve Jobs Stays Up All Night... http:\/\/www.theonion.com\/%63ontent\/news_briefs\/frantic_steve_jobs_stays_up", + "id" : 8282485260, + "created_at" : "2010-01-27 15:16:56 +0000", + "user" : { + "name" : "TUAW", + "screen_name" : "TUAW", + "protected" : false, + "id_str" : "678953", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/562857032789659648\/NM9kLUx1_normal.png", + "id" : 678953, + "verified" : true + } + }, + "id" : 8282793034, + "created_at" : "2010-01-27 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -798,57 +849,6 @@ Grailbird.data.tweets_2010_01 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "TUAW", - "screen_name" : "TUAW", - "indices" : [ 3, 8 ], - "id_str" : "678953", - "id" : 678953 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "8282793034", - "text" : "RT @TUAW: The Onion: Frantic Steve Jobs Stays Up All Night... http:\/\/www.theonion.com\/%63ontent\/news_briefs\/frantic_steve_jobs_stays_up", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "8282485260", - "text" : "The Onion: Frantic Steve Jobs Stays Up All Night... http:\/\/www.theonion.com\/%63ontent\/news_briefs\/frantic_steve_jobs_stays_up", - "id" : 8282485260, - "created_at" : "2010-01-27 15:16:56 +0000", - "user" : { - "name" : "TUAW", - "screen_name" : "TUAW", - "protected" : false, - "id_str" : "678953", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/562857032789659648\/NM9kLUx1_normal.png", - "id" : 678953, - "verified" : true - } - }, - "id" : 8282793034, - "created_at" : "2010-01-27 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -1402,7 +1402,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 3, 8 ], "id_str" : "13217612", @@ -1429,7 +1429,7 @@ Grailbird.data.tweets_2010_01 = "id" : 8098350229, "created_at" : "2010-01-23 04:00:30 +0000", "user" : { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "protected" : false, "id_str" : "13217612", @@ -1487,7 +1487,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Lori Todd \uD83D\uDDA4", + "name" : "Lori Todd \uD83C\uDF35", "screen_name" : "loritodd", "indices" : [ 0, 9 ], "id_str" : "9511932", @@ -1762,7 +1762,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2077,6 +2077,34 @@ Grailbird.data.tweets_2010_01 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Ilya Grigorik", + "screen_name" : "igrigorik", + "indices" : [ 3, 13 ], + "id_str" : "9980812", + "id" : 9980812 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "7893631081", + "text" : "RT @igrigorik: ha! nothing like a RESTful API for your local liquor store (LCBO): http:\/\/bit.ly\/6ye3nn (for canucks, at least..) :-)", + "id" : 7893631081, + "created_at" : "2010-01-18 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -2176,7 +2204,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "too much future make it stop", + "name" : "2018", "screen_name" : "gilesgoatboy", "indices" : [ 0, 13 ], "id_str" : "1341781", @@ -2249,34 +2277,6 @@ Grailbird.data.tweets_2010_01 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Ilya Grigorik", - "screen_name" : "igrigorik", - "indices" : [ 3, 13 ], - "id_str" : "9980812", - "id" : 9980812 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "7893631081", - "text" : "RT @igrigorik: ha! nothing like a RESTful API for your local liquor store (LCBO): http:\/\/bit.ly\/6ye3nn (for canucks, at least..) :-)", - "id" : 7893631081, - "created_at" : "2010-01-18 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -2601,7 +2601,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 0, 5 ], "id_str" : "13217612", @@ -3443,7 +3443,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 36, 40 ], "id_str" : "12712742", @@ -3505,7 +3505,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "too much future make it stop", + "name" : "2018", "screen_name" : "gilesgoatboy", "indices" : [ 37, 50 ], "id_str" : "1341781", @@ -3533,7 +3533,7 @@ Grailbird.data.tweets_2010_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "too much future make it stop", + "name" : "2018", "screen_name" : "gilesgoatboy", "indices" : [ 0, 13 ], "id_str" : "1341781", diff --git a/public/tweets/data/js/tweets/2010_02.js b/public/tweets/data/js/tweets/2010_02.js index 246a9ec..44abfa7 100755 --- a/public/tweets/data/js/tweets/2010_02.js +++ b/public/tweets/data/js/tweets/2010_02.js @@ -102,7 +102,7 @@ Grailbird.data.tweets_2010_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "too much future make it stop", + "name" : "2018", "screen_name" : "gilesgoatboy", "indices" : [ 3, 16 ], "id_str" : "1341781", @@ -129,11 +129,11 @@ Grailbird.data.tweets_2010_02 = "id" : 9737046519, "created_at" : "2010-02-27 17:11:16 +0000", "user" : { - "name" : "too much future make it stop", + "name" : "2018", "screen_name" : "gilesgoatboy", "protected" : false, "id_str" : "1341781", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/816146817121337346\/z47aH3kk_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1047497899771215872\/ra9wYYto_normal.jpg", "id" : 1341781, "verified" : false } @@ -751,6 +751,28 @@ Grailbird.data.tweets_2010_02 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "9131085794", + "text" : "Flash\u2122, taking your 2ghz Core Duo back to Pentium 120mhz days where playing music sucks up 100% CPU and skips if you do anything else.", + "id" : 9131085794, + "created_at" : "2010-02-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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -795,28 +817,6 @@ Grailbird.data.tweets_2010_02 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "9131085794", - "text" : "Flash\u2122, taking your 2ghz Core Duo back to Pentium 120mhz days where playing music sucks up 100% CPU and skips if you do anything else.", - "id" : 9131085794, - "created_at" : "2010-02-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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -1041,7 +1041,7 @@ Grailbird.data.tweets_2010_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas W\u00FCrgler", + "name" : "Thomas W", "screen_name" : "trezzer", "indices" : [ 0, 8 ], "id_str" : "3431581", @@ -1096,7 +1096,7 @@ Grailbird.data.tweets_2010_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas W\u00FCrgler", + "name" : "Thomas W", "screen_name" : "trezzer", "indices" : [ 0, 8 ], "id_str" : "3431581", @@ -1208,6 +1208,57 @@ Grailbird.data.tweets_2010_02 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "indices" : [ 3, 14 ], + "id_str" : "14206068", + "id" : 14206068 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "8705804068", + "text" : "RT @tlrobinson: I'm not advocating this, but if you wanted to discourage people from using AdBlock you could put goatse, etc behind your ...", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "8705344653", + "text" : "I'm not advocating this, but if you wanted to discourage people from using AdBlock you could put goatse, etc behind your ads. Just sayin.", + "id" : 8705344653, + "created_at" : "2010-02-06 02:38:42 +0000", + "user" : { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "protected" : false, + "id_str" : "14206068", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", + "id" : 14206068, + "verified" : false + } + }, + "id" : 8705804068, + "created_at" : "2010-02-06 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { diff --git a/public/tweets/data/js/tweets/2010_03.js b/public/tweets/data/js/tweets/2010_03.js index 4122247..bc72cb3 100755 --- a/public/tweets/data/js/tweets/2010_03.js +++ b/public/tweets/data/js/tweets/2010_03.js @@ -422,7 +422,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", @@ -461,7 +461,7 @@ Grailbird.data.tweets_2010_03 = "id" : 11203590289, "created_at" : "2010-03-28 17:16:42 +0000", "user" : { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", @@ -741,6 +741,28 @@ Grailbird.data.tweets_2010_03 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "11062374796", + "text" : "Idiot users still intentionally opening, clicking on spam http:\/\/tinyurl.com\/yl2tnzt (great, there is no hope then)", + "id" : 11062374796, + "created_at" : "2010-03-26 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -836,28 +858,6 @@ Grailbird.data.tweets_2010_03 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "11062374796", - "text" : "Idiot users still intentionally opening, clicking on spam http:\/\/tinyurl.com\/yl2tnzt (great, there is no hope then)", - "id" : 11062374796, - "created_at" : "2010-03-26 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\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", "entities" : { @@ -1329,7 +1329,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", @@ -1380,7 +1380,7 @@ Grailbird.data.tweets_2010_03 = "id" : 10729730792, "created_at" : "2010-03-19 16:18:05 +0000", "user" : { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", @@ -1846,7 +1846,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2324,9 +2324,9 @@ Grailbird.data.tweets_2010_03 = "urls" : [ ] }, "geo" : { }, - "id_str" : "10206297917", - "text" : "Thinking I might rewrite scrobbleshark completely. Need a good project to learn Erlang, and it fits the bill perfectly.", - "id" : 10206297917, + "id_str" : "10206646283", + "text" : "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.", + "id" : 10206646283, "created_at" : "2010-03-09 00:00:00 +0000", "user" : { "name" : "Sami Samhuri", @@ -2346,9 +2346,9 @@ Grailbird.data.tweets_2010_03 = "urls" : [ ] }, "geo" : { }, - "id_str" : "10206646283", - "text" : "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.", - "id" : 10206646283, + "id_str" : "10206297917", + "text" : "Thinking I might rewrite scrobbleshark completely. Need a good project to learn Erlang, and it fits the bill perfectly.", + "id" : 10206297917, "created_at" : "2010-03-09 00:00:00 +0000", "user" : { "name" : "Sami Samhuri", @@ -2475,7 +2475,7 @@ Grailbird.data.tweets_2010_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2010_04.js b/public/tweets/data/js/tweets/2010_04.js index c01df19..b2ab4f2 100755 --- a/public/tweets/data/js/tweets/2010_04.js +++ b/public/tweets/data/js/tweets/2010_04.js @@ -152,11 +152,11 @@ Grailbird.data.tweets_2010_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Z", + "name" : "Enrico Lamperti", "screen_name" : "zimmund", "indices" : [ 0, 8 ], - "id_str" : "6217862", - "id" : 6217862 + "id_str" : "54332899", + "id" : 54332899 } ], "media" : [ ], "hashtags" : [ ], @@ -170,7 +170,7 @@ Grailbird.data.tweets_2010_04 = "id" : 12654628856, "in_reply_to_status_id" : 12654445157, "created_at" : "2010-04-22 00:00:00 +0000", - "in_reply_to_screen_name" : "zimmund", + "in_reply_to_screen_name" : "elamperti", "in_reply_to_user_id_str" : "6217862", "user" : { "name" : "Sami Samhuri", @@ -313,6 +313,75 @@ Grailbird.data.tweets_2010_04 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "indices" : [ 3, 14 ], + "id_str" : "14206068", + "id" : 14206068 + }, { + "name" : "BrendanEich", + "screen_name" : "BrendanEich", + "indices" : [ 17, 29 ], + "id_str" : "9533042", + "id" : 9533042 + } ], + "media" : [ ], + "hashtags" : [ { + "text" : "jsconf", + "indices" : [ 33, 40 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "12421964589", + "text" : "RT @tlrobinson: .@brendaneich at #jsconf talking about awesome new features slated for next edition of JS. Detail on the ECMA wiki: http ...", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "BrendanEich", + "screen_name" : "BrendanEich", + "indices" : [ 1, 13 ], + "id_str" : "9533042", + "id" : 9533042 + } ], + "media" : [ ], + "hashtags" : [ { + "text" : "jsconf", + "indices" : [ 17, 24 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "12419872636", + "text" : ".@brendaneich at #jsconf talking about awesome new features slated for next edition of JS. Detail on the ECMA wiki: http:\/\/is.gd\/bywUR", + "id" : 12419872636, + "created_at" : "2010-04-18 21:54:38 +0000", + "user" : { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "protected" : false, + "id_str" : "14206068", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", + "id" : 14206068, + "verified" : false + } + }, + "id" : 12421964589, + "created_at" : "2010-04-18 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -510,7 +579,7 @@ Grailbird.data.tweets_2010_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -651,7 +720,7 @@ Grailbird.data.tweets_2010_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -838,7 +907,7 @@ Grailbird.data.tweets_2010_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1183,7 +1252,7 @@ Grailbird.data.tweets_2010_04 = "id_str" : "14273142", "id" : 14273142 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 39, 50 ], "id_str" : "894911", @@ -1304,7 +1373,7 @@ Grailbird.data.tweets_2010_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 86, 90 ], "id_str" : "12712742", diff --git a/public/tweets/data/js/tweets/2010_05.js b/public/tweets/data/js/tweets/2010_05.js index 6287a8a..6a4d04a 100755 --- a/public/tweets/data/js/tweets/2010_05.js +++ b/public/tweets/data/js/tweets/2010_05.js @@ -365,7 +365,7 @@ Grailbird.data.tweets_2010_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -398,7 +398,7 @@ Grailbird.data.tweets_2010_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -475,7 +475,7 @@ Grailbird.data.tweets_2010_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -508,7 +508,7 @@ Grailbird.data.tweets_2010_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -591,7 +591,7 @@ Grailbird.data.tweets_2010_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 3, 7 ], "id_str" : "12712742", @@ -630,11 +630,11 @@ Grailbird.data.tweets_2010_05 = "id" : 14652351912, "created_at" : "2010-05-24 22:48:17 +0000", "user" : { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "protected" : false, "id_str" : "12712742", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/982615078200426497\/njD6-6iU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1040277390625140741\/iT3Jsv3j_normal.jpg", "id" : 12712742, "verified" : false } @@ -720,7 +720,7 @@ Grailbird.data.tweets_2010_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -747,7 +747,7 @@ Grailbird.data.tweets_2010_05 = "id" : 14646836334, "created_at" : "2010-05-24 20:57:44 +0000", "user" : { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", @@ -1040,16 +1040,11 @@ Grailbird.data.tweets_2010_05 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "14217793600", "geo" : { }, "id_str" : "14232765831", - "in_reply_to_user_id" : 14358152, "text" : "@mentalguy I remember that feeling. Here are 9 more to blow your mind: http:\/\/en.wikipedia.org\/wiki\/Ontario_(disambiguation)", "id" : 14232765831, - "in_reply_to_status_id" : 14217793600, "created_at" : "2010-05-18 00:00:00 +0000", - "in_reply_to_screen_name" : "visiblecode", - "in_reply_to_user_id_str" : "14358152", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -1474,7 +1469,7 @@ Grailbird.data.tweets_2010_05 = "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1759,4 +1754,55 @@ Grailbird.data.tweets_2010_05 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "indices" : [ 3, 14 ], + "id_str" : "14206068", + "id" : 14206068 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "13217100047", + "text" : "RT @tlrobinson: \"Passing callbacks is the *price* of asynchronous API's, not the benefit.\"", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "13216605013", + "text" : "\"Passing callbacks is the *price* of asynchronous API's, not the benefit.\"", + "id" : 13216605013, + "created_at" : "2010-05-02 00:33:43 +0000", + "user" : { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "protected" : false, + "id_str" : "14206068", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", + "id" : 14206068, + "verified" : false + } + }, + "id" : 13217100047, + "created_at" : "2010-05-02 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } } ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2010_06.js b/public/tweets/data/js/tweets/2010_06.js index 3fe5b0f..90b9b30 100755 --- a/public/tweets/data/js/tweets/2010_06.js +++ b/public/tweets/data/js/tweets/2010_06.js @@ -122,7 +122,7 @@ Grailbird.data.tweets_2010_06 = "screen_name" : "evanphx", "protected" : false, "id_str" : "5444392", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/780900664637464577\/lGIYeaj-_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/987321087900909569\/uh_KIry3_normal.jpg", "id" : 5444392, "verified" : false } @@ -142,7 +142,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 3, 10 ], "id_str" : "8675502", @@ -169,7 +169,7 @@ Grailbird.data.tweets_2010_06 = "id" : 17358269406, "created_at" : "2010-06-29 19:39:40 +0000", "user" : { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "protected" : false, "id_str" : "8675502", @@ -237,7 +237,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -537,7 +537,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -622,7 +622,7 @@ Grailbird.data.tweets_2010_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -644,7 +644,7 @@ Grailbird.data.tweets_2010_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -691,7 +691,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 123, 134 ], "id_str" : "894911", @@ -741,7 +741,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -774,7 +774,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1864,7 +1864,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 0, 7 ], "id_str" : "8675502", @@ -1897,7 +1897,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 0, 7 ], "id_str" : "8675502", @@ -1930,7 +1930,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 0, 7 ], "id_str" : "8675502", @@ -1963,7 +1963,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2058,7 +2058,7 @@ Grailbird.data.tweets_2010_06 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -2103,7 +2103,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2158,7 +2158,7 @@ Grailbird.data.tweets_2010_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Todd Ditchendorf", + "name" : "Todd Deutschendorf", "screen_name" : "iTod", "indices" : [ 3, 8 ], "id_str" : "788245", @@ -2185,7 +2185,7 @@ Grailbird.data.tweets_2010_06 = "id" : 15308081876, "created_at" : "2010-06-03 06:42:45 +0000", "user" : { - "name" : "Todd Ditchendorf", + "name" : "Todd Deutschendorf", "screen_name" : "iTod", "protected" : false, "id_str" : "788245", diff --git a/public/tweets/data/js/tweets/2010_07.js b/public/tweets/data/js/tweets/2010_07.js index cd6c0fc..1346aec 100755 --- a/public/tweets/data/js/tweets/2010_07.js +++ b/public/tweets/data/js/tweets/2010_07.js @@ -188,7 +188,7 @@ Grailbird.data.tweets_2010_07 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/928419904385990657\/tza-LEdZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046532256402006016\/kCncnA_7_normal.jpg", "id" : 14273142, "verified" : false } @@ -235,7 +235,7 @@ Grailbird.data.tweets_2010_07 = "id" : 18749654267, "created_at" : "2010-07-17 07:01:11 +0000", "user" : { - "name" : "Alexis Ohanian Sr.", + "name" : "Alexis Ohanian Sr. \uD83D\uDE80", "screen_name" : "alexisohanian", "protected" : false, "id_str" : "811350", @@ -281,7 +281,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 0, 4 ], "id_str" : "12712742", @@ -314,7 +314,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay: The New Batch", + "name" : "Action Jay: Spooky Boi", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -347,7 +347,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay: The New Batch", + "name" : "Action Jay: Spooky Boi", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -380,7 +380,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay: The New Batch", + "name" : "Action Jay: Spooky Boi", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -468,7 +468,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -495,7 +495,7 @@ Grailbird.data.tweets_2010_07 = "id" : 18553204783, "created_at" : "2010-07-14 22:29:15 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -598,7 +598,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 0, 4 ], "id_str" : "12712742", @@ -675,7 +675,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -736,7 +736,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -769,7 +769,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -796,11 +796,11 @@ Grailbird.data.tweets_2010_07 = "id" : 18171089437, "created_at" : "2010-07-10 04:02:35 +0000", "user" : { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/554130348288643072\/rnI84vFt_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996296780751912961\/vglv97x-_normal.jpg", "id" : 27302287, "verified" : false } @@ -886,7 +886,7 @@ Grailbird.data.tweets_2010_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -950,7 +950,7 @@ Grailbird.data.tweets_2010_07 = "screen_name" : "opera", "protected" : false, "id_str" : "1541461", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/825347670218768385\/70k0cyif_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996741012558106624\/z3vSsJn2_normal.jpg", "id" : 1541461, "verified" : true } diff --git a/public/tweets/data/js/tweets/2010_08.js b/public/tweets/data/js/tweets/2010_08.js index edfc229..49e04c1 100755 --- a/public/tweets/data/js/tweets/2010_08.js +++ b/public/tweets/data/js/tweets/2010_08.js @@ -531,7 +531,7 @@ Grailbird.data.tweets_2010_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -564,7 +564,7 @@ Grailbird.data.tweets_2010_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -689,7 +689,7 @@ Grailbird.data.tweets_2010_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -756,7 +756,7 @@ Grailbird.data.tweets_2010_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 3, 8 ], "id_str" : "13217612", @@ -783,7 +783,7 @@ Grailbird.data.tweets_2010_08 = "id" : 21076393639, "created_at" : "2010-08-13 16:13:36 +0000", "user" : { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "protected" : false, "id_str" : "13217612", @@ -807,7 +807,7 @@ Grailbird.data.tweets_2010_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 0, 4 ], "id_str" : "12712742", @@ -840,7 +840,7 @@ Grailbird.data.tweets_2010_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 1, 5 ], "id_str" : "12712742", @@ -1097,7 +1097,7 @@ Grailbird.data.tweets_2010_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 3, 10 ], "id_str" : "8675502", @@ -1124,7 +1124,7 @@ Grailbird.data.tweets_2010_08 = "id" : 20096336109, "created_at" : "2010-08-01 23:39:09 +0000", "user" : { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "protected" : false, "id_str" : "8675502", diff --git a/public/tweets/data/js/tweets/2010_09.js b/public/tweets/data/js/tweets/2010_09.js index ef5138e..58a960f 100755 --- a/public/tweets/data/js/tweets/2010_09.js +++ b/public/tweets/data/js/tweets/2010_09.js @@ -1467,7 +1467,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "too much future make it stop", + "name" : "2018", "screen_name" : "gilesgoatboy", "indices" : [ 34, 47 ], "id_str" : "1341781", @@ -1542,7 +1542,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "indices" : [ 0, 11 ], "id_str" : "14939200", @@ -1578,7 +1578,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "indices" : [ 0, 11 ], "id_str" : "14939200", @@ -1614,7 +1614,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", @@ -1641,7 +1641,7 @@ Grailbird.data.tweets_2010_09 = "id" : 25317257681, "created_at" : "2010-09-23 15:31:23 +0000", "user" : { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", @@ -1723,7 +1723,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 0, 7 ], "id_str" : "8675502", @@ -1864,7 +1864,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2160,7 +2160,7 @@ Grailbird.data.tweets_2010_09 = "screen_name" : "tqbf", "protected" : false, "id_str" : "9395312", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937809576912601088\/sJbSGoAh_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1042980118157647872\/tTUO9Nse_normal.jpg", "id" : 9395312, "verified" : false } @@ -2180,7 +2180,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "indices" : [ 0, 10 ], "id_str" : "14582359", @@ -2213,7 +2213,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "indices" : [ 3, 12 ], "id_str" : "14658472", @@ -2246,7 +2246,7 @@ Grailbird.data.tweets_2010_09 = "id" : 24785569749, "created_at" : "2010-09-17 19:25:23 +0000", "user" : { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "protected" : false, "id_str" : "14658472", @@ -2851,7 +2851,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2890,7 +2890,7 @@ Grailbird.data.tweets_2010_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 120, 131 ], "id_str" : "894911", @@ -2948,7 +2948,7 @@ Grailbird.data.tweets_2010_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2010_10.js b/public/tweets/data/js/tweets/2010_10.js index 5b5d892..c7f2453 100755 --- a/public/tweets/data/js/tweets/2010_10.js +++ b/public/tweets/data/js/tweets/2010_10.js @@ -38,27 +38,16 @@ Grailbird.data.tweets_2010_10 = }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 0, 10 ], - "id_str" : "3260971", - "id" : 3260971 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "29358745907", "geo" : { }, "id_str" : "29374815208", - "in_reply_to_user_id" : 3260971, "text" : "@niels_bom interesting, who knew people edited files > 1GB with a normal editor. That's massive.", "id" : 29374815208, - "in_reply_to_status_id" : 29358745907, "created_at" : "2010-11-01 00:00:00 +0000", - "in_reply_to_screen_name" : "niels_bom", - "in_reply_to_user_id_str" : "3260971", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -150,7 +139,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "indices" : [ 3, 13 ], "id_str" : "14582359", @@ -177,7 +166,7 @@ Grailbird.data.tweets_2010_10 = "id" : 29373811618, "created_at" : "2010-11-01 13:52:16 +0000", "user" : { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "protected" : false, "id_str" : "14582359", @@ -200,27 +189,16 @@ Grailbird.data.tweets_2010_10 = }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 0, 10 ], - "id_str" : "3260971", - "id" : 3260971 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "29375735737", "geo" : { }, "id_str" : "29377939391", - "in_reply_to_user_id" : 3260971, "text" : "@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.", "id" : 29377939391, - "in_reply_to_status_id" : 29375735737, "created_at" : "2010-11-01 00:00:00 +0000", - "in_reply_to_screen_name" : "niels_bom", - "in_reply_to_user_id_str" : "3260971", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -682,7 +660,7 @@ Grailbird.data.tweets_2010_10 = "id" : 29163351684, "created_at" : "2010-10-30 07:23:23 +0000", "user" : { - "name" : "Emelia", + "name" : "Emelia \uD83D\uDC78\uD83C\uDFFB", "screen_name" : "ThisIsMissEm", "protected" : false, "id_str" : "14063149", @@ -761,27 +739,16 @@ Grailbird.data.tweets_2010_10 = }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 0, 10 ], - "id_str" : "3260971", - "id" : 3260971 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "29167875050", "geo" : { }, "id_str" : "29213269215", - "in_reply_to_user_id" : 3260971, "text" : "@niels_bom Might be syntax hightlighting the whole file at once instead of the visible viewport, difficulty in incremental parsing.", "id" : 29213269215, - "in_reply_to_status_id" : 29167875050, "created_at" : "2010-10-30 00:00:00 +0000", - "in_reply_to_screen_name" : "niels_bom", - "in_reply_to_user_id_str" : "3260971", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -794,27 +761,16 @@ Grailbird.data.tweets_2010_10 = }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 0, 10 ], - "id_str" : "3260971", - "id" : 3260971 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "29167875050", "geo" : { }, "id_str" : "29213319101", - "in_reply_to_user_id" : 3260971, "text" : "@niels_bom I'd have test things like turning syntax highlighting off before making an educated guess. Not really sure.", "id" : 29213319101, - "in_reply_to_status_id" : 29167875050, "created_at" : "2010-10-30 00:00:00 +0000", - "in_reply_to_screen_name" : "niels_bom", - "in_reply_to_user_id_str" : "3260971", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -859,7 +815,7 @@ Grailbird.data.tweets_2010_10 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029230542716264448\/LgLb--Of_normal.jpg", "id" : 15540222, "verified" : true } @@ -994,7 +950,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -1565,7 +1521,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "indices" : [ 3, 12 ], "id_str" : "14658472", @@ -1592,7 +1548,7 @@ Grailbird.data.tweets_2010_10 = "id" : 28791548232, "created_at" : "2010-10-26 13:40:48 +0000", "user" : { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "protected" : false, "id_str" : "14658472", @@ -1785,7 +1741,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -1824,7 +1780,7 @@ Grailbird.data.tweets_2010_10 = "id" : 28726269319, "created_at" : "2010-10-25 21:24:52 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -1928,7 +1884,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -1955,11 +1911,11 @@ Grailbird.data.tweets_2010_10 = "id" : 28541909390, "created_at" : "2010-10-23 23:08:44 +0000", "user" : { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/554130348288643072\/rnI84vFt_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996296780751912961\/vglv97x-_normal.jpg", "id" : 27302287, "verified" : false } @@ -1979,7 +1935,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -2438,7 +2394,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2602,7 +2558,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2701,7 +2657,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2759,7 +2715,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -3017,7 +2973,7 @@ Grailbird.data.tweets_2010_10 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -3137,7 +3093,7 @@ Grailbird.data.tweets_2010_10 = "screen_name" : "cyberdelia", "protected" : false, "id_str" : "82843", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/460624781876797440\/d6Q5-TKx_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/987941002508828672\/jJ5L6AGC_normal.jpg", "id" : 82843, "verified" : false } @@ -3184,7 +3140,7 @@ Grailbird.data.tweets_2010_10 = "id" : 27361842996, "created_at" : "2010-10-14 17:35:41 +0000", "user" : { - "name" : "bobby", + "name" : "wichita onlineman", "screen_name" : "bobby", "protected" : false, "id_str" : "17983820", @@ -3291,7 +3247,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3546,7 +3502,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3604,7 +3560,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 1, 13 ], "id_str" : "6927562", @@ -4016,7 +3972,7 @@ Grailbird.data.tweets_2010_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4070,6 +4026,57 @@ Grailbird.data.tweets_2010_10 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "indices" : [ 3, 14 ], + "id_str" : "14206068", + "id" : 14206068 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "26588923267", + "text" : "RT @tlrobinson: Writing recursive asynchronous code makes my head hurt.", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "26584875031", + "text" : "Writing recursive asynchronous code makes my head hurt.", + "id" : 26584875031, + "created_at" : "2010-10-06 21:04:53 +0000", + "user" : { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "protected" : false, + "id_str" : "14206068", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", + "id" : 14206068, + "verified" : false + } + }, + "id" : 26588923267, + "created_at" : "2010-10-06 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\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { diff --git a/public/tweets/data/js/tweets/2010_11.js b/public/tweets/data/js/tweets/2010_11.js index bbe938c..a84485d 100755 --- a/public/tweets/data/js/tweets/2010_11.js +++ b/public/tweets/data/js/tweets/2010_11.js @@ -107,7 +107,7 @@ Grailbird.data.tweets_2010_11 = "id_str" : "9650317171884032", "text" : "RT @siracusa: What a world! @anandshimpi of @anandtech fame writing for Macworld on the future of Mac CPUs: http:\/\/bit.ly\/ee8V9E", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -156,7 +156,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 85, 96 ], "id_str" : "894911", @@ -707,7 +707,7 @@ Grailbird.data.tweets_2010_11 = "in_reply_to_screen_name" : "BCTransit", "in_reply_to_user_id_str" : "67042447", "user" : { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "protected" : false, "id_str" : "22406953", @@ -731,7 +731,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -767,7 +767,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ChristophePorteneuve", + "name" : "Christophe Porteneuve", "screen_name" : "porteneuve", "indices" : [ 0, 11 ], "id_str" : "16314033", @@ -800,7 +800,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -833,7 +833,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -903,7 +903,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "BCTransit", "protected" : false, "id_str" : "67042447", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/756243724481409024\/rfuvzH1L_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1047222112685940736\/QeHFkjLX_normal.jpg", "id" : 67042447, "verified" : false } @@ -970,7 +970,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1001,7 +1001,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1439,7 +1439,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1472,7 +1472,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1672,7 +1672,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ted Nuget", + "name" : "EVOO Devo", "screen_name" : "moonpolysoft", "indices" : [ 36, 49 ], "id_str" : "14204623", @@ -1700,7 +1700,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1948,7 +1948,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 113, 124 ], "id_str" : "894911", @@ -1998,7 +1998,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 106, 117 ], "id_str" : "894911", @@ -2596,7 +2596,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -2623,7 +2623,7 @@ Grailbird.data.tweets_2010_11 = "id" : 4977897676734464, "created_at" : "2010-11-17 19:23:17 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -3227,7 +3227,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 3, 15 ], "id_str" : "676363", @@ -3254,11 +3254,11 @@ Grailbird.data.tweets_2010_11 = "id" : 4646758718111745, "created_at" : "2010-11-16 21:27:28 +0000", "user" : { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "protected" : false, "id_str" : "676363", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/963494548012916736\/pCrryYUw_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039923377186787328\/7Q0UIR8Q_normal.jpg", "id" : 676363, "verified" : false } @@ -3278,7 +3278,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "indices" : [ 0, 10 ], "id_str" : "14582359", @@ -3314,7 +3314,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 3, 10 ], "id_str" : "8675502", @@ -3344,7 +3344,7 @@ Grailbird.data.tweets_2010_11 = "id" : 4565507432783873, "created_at" : "2010-11-16 16:04:36 +0000", "user" : { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "protected" : false, "id_str" : "8675502", @@ -3790,7 +3790,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3848,7 +3848,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3903,13 +3903,13 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", "id" : 27302287 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 16, 30 ], "id_str" : "29255412", @@ -3942,13 +3942,13 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", "id" : 27302287 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 126, 140 ], "id_str" : "29255412", @@ -3981,7 +3981,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4147,7 +4147,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "indices" : [ 3, 12 ], "id_str" : "14658472", @@ -4191,7 +4191,7 @@ Grailbird.data.tweets_2010_11 = "in_reply_to_screen_name" : "peterc", "in_reply_to_user_id_str" : "33493", "user" : { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "protected" : false, "id_str" : "14658472", @@ -4221,7 +4221,7 @@ Grailbird.data.tweets_2010_11 = "id_str" : "33493", "id" : 33493 }, { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "indices" : [ 12, 21 ], "id_str" : "14658472", @@ -4238,7 +4238,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "indices" : [ 0, 9 ], "id_str" : "14658472", @@ -4263,7 +4263,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -4283,7 +4283,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "indices" : [ 3, 12 ], "id_str" : "14658472", @@ -4310,7 +4310,7 @@ Grailbird.data.tweets_2010_11 = "id" : 3921192981372928, "created_at" : "2010-11-14 21:24:19 +0000", "user" : { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "protected" : false, "id_str" : "14658472", @@ -4578,7 +4578,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -4605,7 +4605,7 @@ Grailbird.data.tweets_2010_11 = "id" : 3545501794304001, "created_at" : "2010-11-13 20:31:28 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -4744,7 +4744,61 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "indices" : [ 3, 14 ], + "id_str" : "14206068", + "id" : 14206068 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "2862699633446913", + "text" : "RT @tlrobinson: You should never see multiple \"alert()\"s from the same JavaScript context on the screen at once, right? http:\/\/bit.ly\/di ...", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ { + "text" : "wtfjs", + "indices" : [ 125, 131 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "2862092545695745", + "text" : "You should never see multiple \"alert()\"s from the same JavaScript context on the screen at once, right? http:\/\/bit.ly\/dir1W7 #wtfjs", + "id" : 2862092545695745, + "created_at" : "2010-11-11 23:15:50 +0000", + "user" : { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "protected" : false, + "id_str" : "14206068", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", + "id" : 14206068, + "verified" : false + } + }, + "id" : 2862699633446913, + "created_at" : "2010-11-11 23:18:15 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4780,7 +4834,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 1, 12 ], "id_str" : "894911", @@ -4844,7 +4898,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "SubtleGradient", "protected" : false, "id_str" : "14405464", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/974751815680983040\/6zOfX-Ls_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1022160768622645250\/CrKK5uDG_normal.jpg", "id" : 14405464, "verified" : false } @@ -4870,13 +4924,13 @@ Grailbird.data.tweets_2010_11 = "id_str" : "795244", "id" : 795244 }, { - "name" : "too much future make it stop", + "name" : "2018", "screen_name" : "gilesgoatboy", "indices" : [ 14, 27 ], "id_str" : "1341781", "id" : 1341781 }, { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 40, 55 ], "id_str" : "27302287", @@ -4893,13 +4947,13 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "too much future make it stop", + "name" : "2018", "screen_name" : "gilesgoatboy", "indices" : [ 0, 13 ], "id_str" : "1341781", "id" : 1341781 }, { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 26, 41 ], "id_str" : "27302287", @@ -4944,7 +4998,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "too much future make it stop", + "name" : "2018", "screen_name" : "gilesgoatboy", "indices" : [ 3, 16 ], "id_str" : "1341781", @@ -4971,11 +5025,11 @@ Grailbird.data.tweets_2010_11 = "id" : 2520070060253184, "created_at" : "2010-11-11 00:36:46 +0000", "user" : { - "name" : "too much future make it stop", + "name" : "2018", "screen_name" : "gilesgoatboy", "protected" : false, "id_str" : "1341781", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/816146817121337346\/z47aH3kk_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1047497899771215872\/ra9wYYto_normal.jpg", "id" : 1341781, "verified" : false } @@ -5026,7 +5080,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1005850629028352000\/jHsNM3wM_normal.jpg", "id" : 14231571, "verified" : true } @@ -5130,7 +5184,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Shaw", + "name" : "Dan Shaw \uD83C\uDF82\u2728", "screen_name" : "dshaw", "indices" : [ 3, 9 ], "id_str" : "806757", @@ -5157,7 +5211,7 @@ Grailbird.data.tweets_2010_11 = "id" : 2201125067423744, "created_at" : "2010-11-10 03:29:23 +0000", "user" : { - "name" : "Dan Shaw", + "name" : "Dan Shaw \uD83C\uDF82\u2728", "screen_name" : "dshaw", "protected" : false, "id_str" : "806757", @@ -5181,7 +5235,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -5208,11 +5262,11 @@ Grailbird.data.tweets_2010_11 = "id" : 2157046266863616, "created_at" : "2010-11-10 00:34:14 +0000", "user" : { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/554130348288643072\/rnI84vFt_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996296780751912961\/vglv97x-_normal.jpg", "id" : 27302287, "verified" : false } @@ -5271,7 +5325,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5304,7 +5358,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5812,7 +5866,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "indices" : [ 0, 9 ], "id_str" : "14658472", @@ -5996,7 +6050,7 @@ Grailbird.data.tweets_2010_11 = "id_str" : "1033055552671744", "text" : "RT @ontwiik: Brendan Eich \u2013 A Brief History of #JavaScript http:\/\/goo.gl\/fb\/Nskh9 @ontwiik #jsconf", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003EGoogle\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.google.com\/\" rel=\"nofollow\"\u003EGoogle\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6039,7 +6093,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -6167,7 +6221,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6396,7 +6450,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve Streza \uD83C\uDF39 (he\/they)", + "name" : "Steve Streza", "screen_name" : "SteveStreza", "indices" : [ 3, 15 ], "id_str" : "658643", @@ -6423,7 +6477,7 @@ Grailbird.data.tweets_2010_11 = "id" : 375969575604224, "created_at" : "2010-11-05 02:36:52 +0000", "user" : { - "name" : "Steve Streza \uD83C\uDF39 (he\/they)", + "name" : "Steve Streza", "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", @@ -6547,7 +6601,7 @@ Grailbird.data.tweets_2010_11 = "screen_name" : "SubtleGradient", "protected" : false, "id_str" : "14405464", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/974751815680983040\/6zOfX-Ls_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1022160768622645250\/CrKK5uDG_normal.jpg", "id" : 14405464, "verified" : false } @@ -6817,7 +6871,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -6856,7 +6910,7 @@ Grailbird.data.tweets_2010_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "indices" : [ 3, 13 ], "id_str" : "14582359", @@ -6883,7 +6937,7 @@ Grailbird.data.tweets_2010_11 = "id" : 29569868391, "created_at" : "2010-11-03 13:14:50 +0000", "user" : { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "protected" : false, "id_str" : "14582359", diff --git a/public/tweets/data/js/tweets/2010_12.js b/public/tweets/data/js/tweets/2010_12.js index 157f351..a0fa5dc 100755 --- a/public/tweets/data/js/tweets/2010_12.js +++ b/public/tweets/data/js/tweets/2010_12.js @@ -129,16 +129,11 @@ Grailbird.data.tweets_2010_12 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "20300822743093248", "geo" : { }, "id_str" : "20301276986216448", - "in_reply_to_user_id" : 14358152, "text" : "@mentalguy Definitely, HN poll is just the lazy way to get a rough idea.", "id" : 20301276986216448, - "in_reply_to_status_id" : 20300822743093248, "created_at" : "2010-12-30 02:12:56 +0000", - "in_reply_to_screen_name" : "visiblecode", - "in_reply_to_user_id_str" : "14358152", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -162,16 +157,11 @@ Grailbird.data.tweets_2010_12 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "20294187253506048", "geo" : { }, "id_str" : "20295292309995521", - "in_reply_to_user_id" : 14358152, "text" : "@mentalguy Interesting, that does make sense in a way. Maybe we should do a hacker news poll to get an idea.", "id" : 20295292309995521, - "in_reply_to_status_id" : 20294187253506048, "created_at" : "2010-12-30 01:49:09 +0000", - "in_reply_to_screen_name" : "visiblecode", - "in_reply_to_user_id_str" : "14358152", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -261,16 +251,11 @@ Grailbird.data.tweets_2010_12 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "20271897430200320", "geo" : { }, "id_str" : "20282096224309249", - "in_reply_to_user_id" : 14358152, "text" : "@mentalguy Heh, so a majority of developers then.", "id" : 20282096224309249, - "in_reply_to_status_id" : 20271897430200320, "created_at" : "2010-12-30 00:56:43 +0000", - "in_reply_to_screen_name" : "visiblecode", - "in_reply_to_user_id_str" : "14358152", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -328,7 +313,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ppk", + "name" : "ppk \uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "ppk", "indices" : [ 3, 7 ], "id_str" : "887251", @@ -355,7 +340,7 @@ Grailbird.data.tweets_2010_12 = "id" : 20105073468112896, "created_at" : "2010-12-29 13:13:17 +0000", "user" : { - "name" : "ppk", + "name" : "ppk \uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "ppk", "protected" : false, "id_str" : "887251", @@ -410,7 +395,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/928419904385990657\/tza-LEdZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046532256402006016\/kCncnA_7_normal.jpg", "id" : 14273142, "verified" : false } @@ -514,7 +499,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -586,7 +571,7 @@ Grailbird.data.tweets_2010_12 = "id_str" : "123323498", "id" : 123323498 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 11, 25 ], "id_str" : "29255412", @@ -658,7 +643,7 @@ Grailbird.data.tweets_2010_12 = "id_str" : "123323498", "id" : 123323498 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 11, 25 ], "id_str" : "29255412", @@ -691,7 +676,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Elliott K", + "name" : "Elliott Kernber,", "screen_name" : "elliottkember", "indices" : [ 0, 14 ], "id_str" : "903351", @@ -724,7 +709,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -757,7 +742,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Elliott K", + "name" : "Elliott Kernber,", "screen_name" : "elliottkember", "indices" : [ 0, 14 ], "id_str" : "903351", @@ -1138,7 +1123,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -1165,7 +1150,7 @@ Grailbird.data.tweets_2010_12 = "id" : 15592279016218624, "created_at" : "2010-12-17 02:21:03 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -1305,7 +1290,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "chef", "protected" : false, "id_str" : "16333852", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881901479623180289\/AGSth7Zv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1013854249241853952\/hvmkWa4N_normal.jpg", "id" : 16333852, "verified" : true } @@ -1381,7 +1366,7 @@ Grailbird.data.tweets_2010_12 = "id_str" : "6707392", "id" : 6707392 }, { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 20, 32 ], "id_str" : "6927562", @@ -1409,7 +1394,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -1442,7 +1427,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -1475,7 +1460,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1614,7 +1599,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1647,7 +1632,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1913,7 +1898,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1942,74 +1927,6 @@ Grailbird.data.tweets_2010_12 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Wil 'Ban the Nazis' Wheaton", - "screen_name" : "wilw", - "indices" : [ 3, 8 ], - "id_str" : "1183041", - "id" : 1183041 - }, { - "name" : "Alexis Ohanian", - "screen_name" : "kn0thing", - "indices" : [ 10, 19 ], - "id_str" : "103352755", - "id" : 103352755 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "14842738600054784", - "text" : "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 ...", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Alexis Ohanian", - "screen_name" : "kn0thing", - "indices" : [ 0, 9 ], - "id_str" : "103352755", - "id" : 103352755 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "14817127970115584", - "geo" : { }, - "id_str" : "14838086244499456", - "in_reply_to_user_id" : 811350, - "text" : "@kn0thing All I want for Christmas is for Social Media Agencies and Social Media Douchebags to ride a rocket into the heart of the Sun.", - "id" : 14838086244499456, - "in_reply_to_status_id" : 14817127970115584, - "created_at" : "2010-12-15 00:24:10 +0000", - "in_reply_to_screen_name" : "alexisohanian", - "in_reply_to_user_id_str" : "811350", - "user" : { - "name" : "Wil 'Ban the Nazis' Wheaton", - "screen_name" : "wilw", - "protected" : false, - "id_str" : "1183041", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/793503013851631616\/55p1uw70_normal.jpg", - "id" : 1183041, - "verified" : true - } - }, - "id" : 14842738600054784, - "created_at" : "2010-12-15 00:42:39 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { @@ -2239,7 +2156,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2294,7 +2211,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2327,7 +2244,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2393,7 +2310,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Elliott K", + "name" : "Elliott Kernber,", "screen_name" : "elliottkember", "indices" : [ 0, 14 ], "id_str" : "903351", @@ -2426,7 +2343,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2462,7 +2379,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2715,7 +2632,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ppk", + "name" : "ppk \uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "ppk", "indices" : [ 0, 4 ], "id_str" : "887251", @@ -2748,7 +2665,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ppk", + "name" : "ppk \uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "ppk", "indices" : [ 0, 4 ], "id_str" : "887251", @@ -2781,7 +2698,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ppk", + "name" : "ppk \uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "ppk", "indices" : [ 0, 4 ], "id_str" : "887251", @@ -2814,7 +2731,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ppk", + "name" : "ppk \uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "ppk", "indices" : [ 0, 4 ], "id_str" : "887251", @@ -2876,62 +2793,11 @@ Grailbird.data.tweets_2010_12 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "BradfordW", - "screen_name" : "bradfordw", - "indices" : [ 3, 13 ], - "id_str" : "14640131", - "id" : 14640131 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "12898562476081153", - "text" : "RT @bradfordw: Pardon my Kanye: \"Yo node.js, Imma let you finish, but Erlang\/OTP is one of the greatest network service languages\/platfo ...", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "12896897178009601", - "text" : "Pardon my Kanye: \"Yo node.js, Imma let you finish, but Erlang\/OTP is one of the greatest network service languages\/platforms of ALL TIME!\"", - "id" : 12896897178009601, - "created_at" : "2010-12-09 15:50:34 +0000", - "user" : { - "name" : "BradfordW", - "screen_name" : "bradfordw", - "protected" : false, - "id_str" : "14640131", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/783099423488405504\/cUKQ6a9-_normal.jpg", - "id" : 14640131, - "verified" : false - } - }, - "id" : 12898562476081153, - "created_at" : "2010-12-09 15:57:11 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2964,7 +2830,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -3212,7 +3078,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 27, 41 ], "id_str" : "29255412", @@ -3394,7 +3260,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Very Stable Subgenius - \u13AC\u13A1\u13A5\u13E6", + "name" : "\u13AC\u13A1\u13A5\u13E6", "screen_name" : "erikcorry", "indices" : [ 3, 13 ], "id_str" : "16100691", @@ -3421,7 +3287,7 @@ Grailbird.data.tweets_2010_12 = "id" : 12265915898925057, "created_at" : "2010-12-07 22:03:16 +0000", "user" : { - "name" : "Very Stable Subgenius - \u13AC\u13A1\u13A5\u13E6", + "name" : "\u13AC\u13A1\u13A5\u13E6", "screen_name" : "erikcorry", "protected" : false, "id_str" : "16100691", @@ -3794,7 +3660,7 @@ Grailbird.data.tweets_2010_12 = "id" : 11851330599518209, "in_reply_to_status_id" : 11851089460592642, "created_at" : "2010-12-06 18:35:52 +0000", - "in_reply_to_screen_name" : "0x00A", + "in_reply_to_screen_name" : "hxoht", "in_reply_to_user_id_str" : "95938827", "user" : { "name" : "Sami Samhuri", @@ -3888,7 +3754,7 @@ Grailbird.data.tweets_2010_12 = "id" : 11841014469763072, "in_reply_to_status_id" : 11836221072347136, "created_at" : "2010-12-06 17:54:52 +0000", - "in_reply_to_screen_name" : "0x00A", + "in_reply_to_screen_name" : "hxoht", "in_reply_to_user_id_str" : "95938827", "user" : { "name" : "Sami Samhuri", @@ -3927,7 +3793,7 @@ Grailbird.data.tweets_2010_12 = "id" : 11835757060694016, "in_reply_to_status_id" : 11834667766390784, "created_at" : "2010-12-06 17:33:59 +0000", - "in_reply_to_screen_name" : "0x00A", + "in_reply_to_screen_name" : "hxoht", "in_reply_to_user_id_str" : "95938827", "user" : { "name" : "Sami Samhuri", @@ -4150,7 +4016,7 @@ Grailbird.data.tweets_2010_12 = "id_str" : "4777951", "id" : 4777951 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 6, 17 ], "id_str" : "894911", @@ -4189,7 +4055,7 @@ Grailbird.data.tweets_2010_12 = "id_str" : "4777951", "id" : 4777951 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 6, 17 ], "id_str" : "894911", @@ -4222,7 +4088,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4429,7 +4295,7 @@ Grailbird.data.tweets_2010_12 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -4449,7 +4315,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4515,7 +4381,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 72, 83 ], "id_str" : "894911", @@ -4543,7 +4409,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4972,7 +4838,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -5005,11 +4871,11 @@ Grailbird.data.tweets_2010_12 = "id" : 10729089954488320, "created_at" : "2010-12-03 16:16:29 +0000", "user" : { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039990224271630338\/Z6BmVyLy_normal.jpg", "id" : 29255412, "verified" : false } @@ -5029,13 +4895,13 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "indices" : [ 3, 14 ], "id_str" : "14939200", "id" : 14939200 }, { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "indices" : [ 16, 25 ], "id_str" : "14658472", @@ -5052,7 +4918,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootsuite\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "indices" : [ 0, 9 ], "id_str" : "14658472", @@ -5073,7 +4939,7 @@ Grailbird.data.tweets_2010_12 = "in_reply_to_screen_name" : "roidrage", "in_reply_to_user_id_str" : "14658472", "user" : { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "protected" : false, "id_str" : "14939200", @@ -5097,7 +4963,7 @@ Grailbird.data.tweets_2010_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "indices" : [ 3, 13 ], "id_str" : "14582359", @@ -5136,7 +5002,7 @@ Grailbird.data.tweets_2010_12 = "id" : 10693851819806720, "created_at" : "2010-12-03 13:56:27 +0000", "user" : { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "protected" : false, "id_str" : "14582359", @@ -5166,7 +5032,7 @@ Grailbird.data.tweets_2010_12 = "id_str" : "14273142", "id" : 14273142 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 10, 21 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2011_01.js b/public/tweets/data/js/tweets/2011_01.js index 13f7bda..3795a01 100755 --- a/public/tweets/data/js/tweets/2011_01.js +++ b/public/tweets/data/js/tweets/2011_01.js @@ -271,7 +271,7 @@ Grailbird.data.tweets_2011_01 = "screen_name" : "SlexAxton", "protected" : false, "id_str" : "12806822", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/653393861453045760\/6paq641-_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1034325028026769408\/hz_G2I3L_normal.jpg", "id" : 12806822, "verified" : false } @@ -367,7 +367,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -766,7 +766,7 @@ Grailbird.data.tweets_2011_01 = "screen_name" : "headius", "protected" : false, "id_str" : "9989362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/910043868791398400\/Y0DqLATy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1047370103933812736\/_oiStlw2_normal.jpg", "id" : 9989362, "verified" : false } @@ -1349,7 +1349,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1407,7 +1407,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1564,7 +1564,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 3, 15 ], "id_str" : "6927562", @@ -1591,11 +1591,11 @@ Grailbird.data.tweets_2011_01 = "id" : 28178429966819328, "created_at" : "2011-01-20 19:53:55 +0000", "user" : { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/934619752768647168\/4ixrnv8S_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046729068559978497\/T5_KOOBN_normal.jpg", "id" : 6927562, "verified" : true } @@ -1755,7 +1755,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steven Shaw", + "name" : "\u26A1teven \u26A1haw", "screen_name" : "steshaw", "indices" : [ 3, 11 ], "id_str" : "18864191", @@ -1782,7 +1782,7 @@ Grailbird.data.tweets_2011_01 = "id" : 27838559314513921, "created_at" : "2011-01-19 21:23:24 +0000", "user" : { - "name" : "Steven Shaw", + "name" : "\u26A1teven \u26A1haw", "screen_name" : "steshaw", "protected" : false, "id_str" : "18864191", @@ -1955,7 +1955,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "indices" : [ 0, 10 ], "id_str" : "14582359", @@ -2032,7 +2032,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "indices" : [ 0, 10 ], "id_str" : "14582359", @@ -2217,7 +2217,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2345,7 +2345,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -2378,7 +2378,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -2411,7 +2411,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -2444,7 +2444,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -2571,7 +2571,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -2752,7 +2752,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -2785,11 +2785,11 @@ Grailbird.data.tweets_2011_01 = "id" : 27516621731930112, "created_at" : "2011-01-19 00:04:08 +0000", "user" : { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/554130348288643072\/rnI84vFt_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996296780751912961\/vglv97x-_normal.jpg", "id" : 27302287, "verified" : false } @@ -2809,7 +2809,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3447,7 +3447,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "@tloh", + "name" : "tloh and 24 others", "screen_name" : "tloh", "indices" : [ 3, 8 ], "id_str" : "15181839", @@ -3474,11 +3474,11 @@ Grailbird.data.tweets_2011_01 = "id" : 25969747354980352, "created_at" : "2011-01-14 17:37:24 +0000", "user" : { - "name" : "@tloh", + "name" : "tloh and 24 others", "screen_name" : "tloh", "protected" : false, "id_str" : "15181839", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/959548695036411904\/OcOpj1Mm_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/993999344247357441\/xZ134157_normal.jpg", "id" : 15181839, "verified" : false } @@ -3573,7 +3573,7 @@ Grailbird.data.tweets_2011_01 = "id_str" : "25978818669838336", "text" : "RT @dsg: Super cool - Interface hardware to iPhone for free via the headphone jack http:\/\/bit.ly\/es29Gh (via @markjnet)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Johnson", @@ -3993,7 +3993,7 @@ Grailbird.data.tweets_2011_01 = "id_str" : "717313", "id" : 717313 }, { - "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Pumpkin Fright\uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 106, 114 ], "id_str" : "11375732", @@ -4015,7 +4015,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Pumpkin Fright\uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 89, 97 ], "id_str" : "11375732", @@ -4321,7 +4321,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 3, 15 ], "id_str" : "5905672", @@ -4370,11 +4370,11 @@ Grailbird.data.tweets_2011_01 = "id" : 24919228675002370, "created_at" : "2011-01-11 20:03:01 +0000", "user" : { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "protected" : false, "id_str" : "5905672", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/971149489892245505\/ziLe5C8m_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1026600271307321344\/BBVmL1Hb_normal.jpg", "id" : 5905672, "verified" : true } @@ -4421,7 +4421,7 @@ Grailbird.data.tweets_2011_01 = "id" : 24942100537671680, "created_at" : "2011-01-11 21:33:54 +0000", "user" : { - "name" : "Kornel", + "name" : "kornel@mastodon.social", "screen_name" : "kornelski", "protected" : false, "id_str" : "69655255", @@ -4472,7 +4472,7 @@ Grailbird.data.tweets_2011_01 = "id" : 24941583744901120, "created_at" : "2011-01-11 21:31:51 +0000", "user" : { - "name" : "Kornel", + "name" : "kornel@mastodon.social", "screen_name" : "kornelski", "protected" : false, "id_str" : "69655255", @@ -4668,7 +4668,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5133,7 +5133,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5366,7 +5366,7 @@ Grailbird.data.tweets_2011_01 = "id_str" : "16686076", "id" : 16686076 }, { - "name" : "Jason Huck", + "name" : "\u1D0A\u1D00\uA731\u1D0F\u0274 \u029C\u1D1C\u1D04\u1D0B", "screen_name" : "jasonhuck", "indices" : [ 8, 18 ], "id_str" : "9142932", @@ -5896,7 +5896,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5929,7 +5929,7 @@ Grailbird.data.tweets_2011_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2011_02.js b/public/tweets/data/js/tweets/2011_02.js index d53bfd2..88a81a6 100755 --- a/public/tweets/data/js/tweets/2011_02.js +++ b/public/tweets/data/js/tweets/2011_02.js @@ -60,7 +60,7 @@ Grailbird.data.tweets_2011_02 = "id_str" : "636923", "id" : 636923 }, { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 41, 52 ], "id_str" : "2911221", @@ -99,7 +99,7 @@ Grailbird.data.tweets_2011_02 = "id_str" : "636923", "id" : 636923 }, { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 10, 21 ], "id_str" : "2911221", @@ -275,7 +275,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "foresmac", "protected" : false, "id_str" : "471323", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/813239950602895360\/04pvLVQA_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046889578567745536\/fd8sUuhZ_normal.jpg", "id" : 471323, "verified" : false } @@ -451,7 +451,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", + "name" : "BAT MANE", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -533,7 +533,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 3, 15 ], "id_str" : "676363", @@ -560,11 +560,11 @@ Grailbird.data.tweets_2011_02 = "id" : 40215306840440832, "created_at" : "2011-02-23 01:04:10 +0000", "user" : { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "protected" : false, "id_str" : "676363", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/963494548012916736\/pCrryYUw_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039923377186787328\/7Q0UIR8Q_normal.jpg", "id" : 676363, "verified" : false } @@ -707,7 +707,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 63, 74 ], "id_str" : "894911", @@ -773,7 +773,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -806,7 +806,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -833,11 +833,11 @@ Grailbird.data.tweets_2011_02 = "id" : 39834931026866177, "created_at" : "2011-02-21 23:52:42 +0000", "user" : { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039990224271630338\/Z6BmVyLy_normal.jpg", "id" : 29255412, "verified" : false } @@ -915,7 +915,7 @@ Grailbird.data.tweets_2011_02 = "id_str" : "39043793386741760", "text" : "RT @TonyClement_MP: I would like to see Macleans' parent Rogers return the annual taxpayer subsidy returned: is that asking too much @ac ...", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andrew Coyne", @@ -938,7 +938,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "TonyclementCPC", "protected" : false, "id_str" : "121483664", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985661696235552768\/fOnw2kBa_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1047566787745914881\/o2-eVKrj_normal.jpg", "id" : 121483664, "verified" : true } @@ -1394,7 +1394,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 0, 11 ], "id_str" : "2911221", @@ -1844,7 +1844,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "indices" : [ 3, 12 ], "id_str" : "14658472", @@ -1871,7 +1871,7 @@ Grailbird.data.tweets_2011_02 = "id" : 37196767728500736, "created_at" : "2011-02-14 17:09:35 +0000", "user" : { - "name" : "Mathias \u00AF\\_(\u30C4)_\/\u00AF Meyer", + "name" : "Mathias\uD83E\uDD18Meyer", "screen_name" : "roidrage", "protected" : false, "id_str" : "14658472", @@ -1895,7 +1895,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Oliver Steele", + "name" : "ows", "screen_name" : "osteele", "indices" : [ 3, 11 ], "id_str" : "13835862", @@ -1922,11 +1922,11 @@ Grailbird.data.tweets_2011_02 = "id" : 37031252255055872, "created_at" : "2011-02-14 06:11:53 +0000", "user" : { - "name" : "Oliver Steele", + "name" : "ows", "screen_name" : "osteele", "protected" : false, "id_str" : "13835862", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/782396513142071296\/xVIO_KF-_normal.jpg", + "profile_image_url_https" : "https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png", "id" : 13835862, "verified" : false } @@ -1946,7 +1946,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve Streza \uD83C\uDF39 (he\/they)", + "name" : "Steve Streza", "screen_name" : "SteveStreza", "indices" : [ 3, 15 ], "id_str" : "658643", @@ -1960,7 +1960,7 @@ Grailbird.data.tweets_2011_02 = "id_str" : "37010133695340544", "text" : "RT @SteveStreza: The Grammy's end, Reddit goes down. Tide goes in, tide goes out. Never a miscommunication.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1973,7 +1973,7 @@ Grailbird.data.tweets_2011_02 = "id" : 37007356093153280, "created_at" : "2011-02-14 04:36:55 +0000", "user" : { - "name" : "Steve Streza \uD83C\uDF39 (he\/they)", + "name" : "Steve Streza", "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", @@ -2028,7 +2028,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "ActuallyNPH", "protected" : false, "id_str" : "90420314", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/794749304003039232\/I1wn8Awo_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045049020794761231\/9EXXIIk6_normal.jpg", "id" : 90420314, "verified" : true } @@ -2081,7 +2081,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2114,7 +2114,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2177,7 +2177,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2241,7 +2241,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -2305,7 +2305,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", + "name" : "BAT MANE", "screen_name" : "CLINT", "indices" : [ 3, 9 ], "id_str" : "45993", @@ -2332,11 +2332,11 @@ Grailbird.data.tweets_2011_02 = "id" : 36117736358678528, "created_at" : "2011-02-11 17:41:54 +0000", "user" : { - "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", + "name" : "BAT MANE", "screen_name" : "CLINT", "protected" : false, "id_str" : "45993", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/943903629597065216\/2Wj3ms6s_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1016503793763176448\/MX6A2iJV_normal.jpg", "id" : 45993, "verified" : false } @@ -2387,7 +2387,7 @@ Grailbird.data.tweets_2011_02 = "screen_name" : "github", "protected" : false, "id_str" : "13334762", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/616309728688238592\/pBeeJQDQ_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1017516299143041024\/fLFdcGsl_normal.jpg", "id" : 13334762, "verified" : true } @@ -2564,7 +2564,7 @@ Grailbird.data.tweets_2011_02 = "id_str" : "4777951", "id" : 4777951 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 6, 17 ], "id_str" : "894911", @@ -2630,7 +2630,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2740,7 +2740,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2773,7 +2773,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bryan Haggerty \u270D\uFE0F", + "name" : "Bryan Haggerty", "screen_name" : "bhaggs", "indices" : [ 0, 7 ], "id_str" : "1692881", @@ -2832,7 +2832,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Robey [Album Version]", + "name" : "\uFF9B\uFF70\uFF8B\uFF9E", "screen_name" : "robey", "indices" : [ 3, 9 ], "id_str" : "9213742", @@ -2859,7 +2859,7 @@ Grailbird.data.tweets_2011_02 = "id" : 35545494906351616, "created_at" : "2011-02-10 03:48:01 +0000", "user" : { - "name" : "Robey [Album Version]", + "name" : "\uFF9B\uFF70\uFF8B\uFF9E", "screen_name" : "robey", "protected" : false, "id_str" : "9213742", @@ -3038,7 +3038,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bryan Haggerty \u270D\uFE0F", + "name" : "Bryan Haggerty", "screen_name" : "bhaggs", "indices" : [ 0, 7 ], "id_str" : "1692881", @@ -3071,7 +3071,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bryan Haggerty \u270D\uFE0F", + "name" : "Bryan Haggerty", "screen_name" : "bhaggs", "indices" : [ 3, 10 ], "id_str" : "1692881", @@ -3115,7 +3115,7 @@ Grailbird.data.tweets_2011_02 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Bryan Haggerty \u270D\uFE0F", + "name" : "Bryan Haggerty", "screen_name" : "bhaggs", "protected" : false, "id_str" : "1692881", @@ -3342,7 +3342,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", + "name" : "BAT MANE", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -3375,7 +3375,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", + "name" : "Alatar the Blue\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 3, 13 ], "id_str" : "6585632", @@ -3402,7 +3402,7 @@ Grailbird.data.tweets_2011_02 = "id" : 35130529372180480, "created_at" : "2011-02-09 00:19:05 +0000", "user" : { - "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", + "name" : "Alatar the Blue\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "protected" : false, "id_str" : "6585632", @@ -3599,7 +3599,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -3631,7 +3631,7 @@ Grailbird.data.tweets_2011_02 = "id" : 34756455840092162, "created_at" : "2011-02-07 23:32:39 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -4110,7 +4110,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -4143,7 +4143,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -4176,7 +4176,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -4209,7 +4209,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -4568,7 +4568,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 3, 16 ], "id_str" : "11973362", @@ -4612,11 +4612,11 @@ Grailbird.data.tweets_2011_02 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "protected" : false, "id_str" : "11973362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/872004130826362881\/9RRxQHYL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1032497574488420353\/y7sRwlhw_normal.jpg", "id" : 11973362, "verified" : false } @@ -4718,7 +4718,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 3, 14 ], "id_str" : "2911221", @@ -4732,7 +4732,7 @@ Grailbird.data.tweets_2011_02 = "id_str" : "32957522725834753", "text" : "RT @wilshipley: Microsoft: \u201CWe didn\u2019t copy Google, unless by \u2018copy\u2019 you mean \u2018watch what they did and then do the same thing.\u2019 Then, yah ...", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4745,11 +4745,11 @@ Grailbird.data.tweets_2011_02 = "id" : 32954689918074880, "created_at" : "2011-02-03 00:13:05 +0000", "user" : { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964058293306970112\/pfc-Jpsc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/993626676302000129\/tjoG13J4_normal.jpg", "id" : 2911221, "verified" : true } @@ -4791,7 +4791,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 126, 139 ], "id_str" : "11973362", @@ -4828,7 +4828,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -4861,7 +4861,7 @@ Grailbird.data.tweets_2011_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", diff --git a/public/tweets/data/js/tweets/2011_03.js b/public/tweets/data/js/tweets/2011_03.js index 5702646..95e2e69 100755 --- a/public/tweets/data/js/tweets/2011_03.js +++ b/public/tweets/data/js/tweets/2011_03.js @@ -104,7 +104,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Malte Ubl", + "name" : "Malte Ubl, Immigrant", "screen_name" : "cramforce", "indices" : [ 3, 13 ], "id_str" : "15534471", @@ -131,7 +131,7 @@ Grailbird.data.tweets_2011_03 = "id" : 53158392818176000, "created_at" : "2011-03-30 18:15:23 +0000", "user" : { - "name" : "Malte Ubl", + "name" : "Malte Ubl, Immigrant", "screen_name" : "cramforce", "protected" : false, "id_str" : "15534471", @@ -155,7 +155,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -270,7 +270,7 @@ Grailbird.data.tweets_2011_03 = "screen_name" : "ChromiumDev", "protected" : false, "id_str" : "113713261", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1320180647\/chromiumchrome_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1052245957750927360\/ZtouEeNE_normal.jpg", "id" : 113713261, "verified" : true } @@ -290,7 +290,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 3, 17 ], "id_str" : "7198302", @@ -317,11 +317,11 @@ Grailbird.data.tweets_2011_03 = "id" : 50950275019702273, "created_at" : "2011-03-24 16:01:06 +0000", "user" : { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "protected" : false, "id_str" : "7198302", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985570923599355905\/BAOq3fBC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1008144272682561537\/29ylvfZl_normal.jpg", "id" : 7198302, "verified" : false } @@ -440,13 +440,13 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", "id" : 894911 }, { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 12, 26 ], "id_str" : "7198302", @@ -479,7 +479,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -512,7 +512,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -545,13 +545,13 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", "id" : 676363 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 13, 24 ], "id_str" : "894911", @@ -848,7 +848,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "2319611", "id" : 2319611 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 8, 19 ], "id_str" : "894911", @@ -881,7 +881,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -914,7 +914,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -947,7 +947,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -980,7 +980,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1013,7 +1013,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1046,7 +1046,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1079,7 +1079,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1112,7 +1112,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -1151,13 +1151,13 @@ Grailbird.data.tweets_2011_03 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 12, 26 ], "id_str" : "29255412", "id" : 29255412 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 27, 38 ], "id_str" : "894911", @@ -1196,13 +1196,13 @@ Grailbird.data.tweets_2011_03 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 12, 26 ], "id_str" : "29255412", "id" : 29255412 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 27, 38 ], "id_str" : "894911", @@ -1235,7 +1235,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1274,7 +1274,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1307,7 +1307,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1340,7 +1340,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1371,7 +1371,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1618,7 +1618,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "776831743508811776", "id" : 776831743508811776 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 9, 23 ], "id_str" : "29255412", @@ -1655,7 +1655,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "776831743508811776", "id" : 776831743508811776 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 9, 23 ], "id_str" : "29255412", @@ -1780,7 +1780,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "indices" : [ 3, 13 ], "id_str" : "14582359", @@ -1807,7 +1807,7 @@ Grailbird.data.tweets_2011_03 = "id" : 46307865056653312, "created_at" : "2011-03-11 20:33:50 +0000", "user" : { - "name" : "Antonio Cangiano", + "name" : "Antonio Cangiano \uD83D\uDC68\u200D\uD83D\uDCBB\uD83E\uDD51", "screen_name" : "acangiano", "protected" : false, "id_str" : "14582359", @@ -1881,7 +1881,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "1452984702", "id" : 1452984702 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 88, 99 ], "id_str" : "894911", @@ -2075,7 +2075,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "9943672", "id" : 9943672 }, { - "name" : "atebits", + "name" : "AteBits.com", "screen_name" : "atebits", "indices" : [ 108, 116 ], "id_str" : "11178592", @@ -2253,7 +2253,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -2292,7 +2292,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -2325,7 +2325,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2364,7 +2364,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2409,7 +2409,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -2442,7 +2442,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2475,7 +2475,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2508,7 +2508,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2541,7 +2541,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2574,7 +2574,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2607,7 +2607,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2895,7 +2895,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ppk", + "name" : "ppk \uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "ppk", "indices" : [ 3, 7 ], "id_str" : "887251", @@ -2922,7 +2922,7 @@ Grailbird.data.tweets_2011_03 = "id" : 45188304525737985, "created_at" : "2011-03-08 18:25:06 +0000", "user" : { - "name" : "ppk", + "name" : "ppk \uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "ppk", "protected" : false, "id_str" : "887251", @@ -3164,7 +3164,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 42, 53 ], "id_str" : "894911", @@ -3583,7 +3583,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -3616,7 +3616,7 @@ Grailbird.data.tweets_2011_03 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 63, 74 ], "id_str" : "894911", @@ -3655,7 +3655,7 @@ Grailbird.data.tweets_2011_03 = "id_str" : "11294", "id" : 11294 }, { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 7, 19 ], "id_str" : "6927562", diff --git a/public/tweets/data/js/tweets/2011_04.js b/public/tweets/data/js/tweets/2011_04.js index 9e8756b..4d8e6b6 100755 --- a/public/tweets/data/js/tweets/2011_04.js +++ b/public/tweets/data/js/tweets/2011_04.js @@ -263,7 +263,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -300,7 +300,7 @@ Grailbird.data.tweets_2011_04 = "id" : 64425378097266688, "created_at" : "2011-04-30 20:26:21 +0000", "user" : { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", @@ -544,7 +544,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 3, 15 ], "id_str" : "676363", @@ -571,11 +571,11 @@ Grailbird.data.tweets_2011_04 = "id" : 64397298414796801, "created_at" : "2011-04-30 18:34:47 +0000", "user" : { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "protected" : false, "id_str" : "676363", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/963494548012916736\/pCrryYUw_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039923377186787328\/7Q0UIR8Q_normal.jpg", "id" : 676363, "verified" : false } @@ -779,7 +779,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -907,7 +907,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "indices" : [ 0, 11 ], "id_str" : "14939200", @@ -946,7 +946,7 @@ Grailbird.data.tweets_2011_04 = "id_str" : "780561", "id" : 780561 }, { - "name" : "sean cribbs", + "name" : "Sean Cribbs", "screen_name" : "seancribbs", "indices" : [ 14, 25 ], "id_str" : "14939200", @@ -1228,7 +1228,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1415,7 +1415,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1448,7 +1448,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1556,7 +1556,7 @@ Grailbird.data.tweets_2011_04 = "screen_name" : "danielbmarkham", "protected" : false, "id_str" : "55648990", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/978885554875064322\/5g6L_UOg_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045894259704967168\/Bpdqbc4h_normal.jpg", "id" : 55648990, "verified" : false } @@ -1737,7 +1737,7 @@ Grailbird.data.tweets_2011_04 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2011_05.js b/public/tweets/data/js/tweets/2011_05.js index 407c1e7..3805574 100755 --- a/public/tweets/data/js/tweets/2011_05.js +++ b/public/tweets/data/js/tweets/2011_05.js @@ -262,7 +262,7 @@ Grailbird.data.tweets_2011_05 = "id_str" : "8308952", "id" : 8308952 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 51, 62 ], "id_str" : "894911", @@ -285,7 +285,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 37, 48 ], "id_str" : "894911", @@ -604,7 +604,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Shannon Goldberg", + "name" : "Shannon", "screen_name" : "goldshan", "indices" : [ 0, 9 ], "id_str" : "15969274", @@ -671,7 +671,7 @@ Grailbird.data.tweets_2011_05 = "id_str" : "12599412", "id" : 12599412 }, { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 84, 96 ], "id_str" : "5905672", @@ -875,7 +875,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ppk", + "name" : "ppk \uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "ppk", "indices" : [ 0, 4 ], "id_str" : "887251", @@ -933,7 +933,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Elliott K", + "name" : "Elliott Kernber,", "screen_name" : "elliottkember", "indices" : [ 3, 17 ], "id_str" : "903351", @@ -960,7 +960,7 @@ Grailbird.data.tweets_2011_05 = "id" : 73149687003226112, "created_at" : "2011-05-24 22:13:39 +0000", "user" : { - "name" : "Elliott K", + "name" : "Elliott Kernber,", "screen_name" : "elliottkember", "protected" : false, "id_str" : "903351", @@ -1017,7 +1017,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bryan Liles", + "name" : "Bryan 'Smokin Barack' Liles", "screen_name" : "bryanl", "indices" : [ 3, 10 ], "id_str" : "659933", @@ -1044,11 +1044,11 @@ Grailbird.data.tweets_2011_05 = "id" : 73751667656495104, "created_at" : "2011-05-26 14:05:42 +0000", "user" : { - "name" : "Bryan Liles", + "name" : "Bryan 'Smokin Barack' Liles", "screen_name" : "bryanl", "protected" : false, "id_str" : "659933", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/984883051174998016\/2hLLNPZP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045841734209609728\/mZ5YAYdj_normal.jpg", "id" : 659933, "verified" : false } @@ -1068,7 +1068,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1101,7 +1101,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1222,7 +1222,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1255,7 +1255,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1591,6 +1591,57 @@ Grailbird.data.tweets_2011_05 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "black", + "screen_name" : "b6n", + "indices" : [ 3, 7 ], + "id_str" : "16031975", + "id" : 16031975 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "73107434562007041", + "text" : "RT @b6n: Early customers are as important as early hires. Recruit both carefully!", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "73107211563433984", + "text" : "Early customers are as important as early hires. Recruit both carefully!", + "id" : 73107211563433984, + "created_at" : "2011-05-24 19:24:52 +0000", + "user" : { + "name" : "black", + "screen_name" : "b6n", + "protected" : false, + "id_str" : "16031975", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029906229173215233\/zYFg1yGR_normal.jpg", + "id" : 16031975, + "verified" : false + } + }, + "id" : 73107434562007041, + "created_at" : "2011-05-24 19:25:45 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { @@ -1819,7 +1870,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1852,7 +1903,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1885,7 +1936,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2216,7 +2267,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2339,57 +2390,6 @@ Grailbird.data.tweets_2011_05 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Chris Wanstrath", - "screen_name" : "defunkt", - "indices" : [ 3, 11 ], - "id_str" : "713263", - "id" : 713263 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "72034991713943552", - "text" : "RT @defunkt: for those who enjoy js golfing: https:\/\/github.com\/jed\/140bytes\/wiki\/Byte-saving-techniques", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "72033452106579970", - "text" : "for those who enjoy js golfing: https:\/\/github.com\/jed\/140bytes\/wiki\/Byte-saving-techniques", - "id" : 72033452106579970, - "created_at" : "2011-05-21 20:18:07 +0000", - "user" : { - "name" : "Chris Wanstrath", - "screen_name" : "defunkt", - "protected" : false, - "id_str" : "713263", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/771512986427068417\/eix-QRXH_normal.jpg", - "id" : 713263, - "verified" : false - } - }, - "id" : 72034991713943552, - "created_at" : "2011-05-21 20:24:15 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { @@ -2419,7 +2419,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -2776,7 +2776,7 @@ Grailbird.data.tweets_2011_05 = "id_str" : "71711086688210944", "text" : "RT @voodootikigod: A minute with brendan is back: http:\/\/www.aminutewithbrendan.com\/pages\/20110520", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2979,7 +2979,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -3128,7 +3128,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -3628,7 +3628,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Malte Ubl", + "name" : "Malte Ubl, Immigrant", "screen_name" : "cramforce", "indices" : [ 3, 13 ], "id_str" : "15534471", @@ -3655,7 +3655,7 @@ Grailbird.data.tweets_2011_05 = "id" : 70368332569780224, "created_at" : "2011-05-17 06:01:32 +0000", "user" : { - "name" : "Malte Ubl", + "name" : "Malte Ubl, Immigrant", "screen_name" : "cramforce", "protected" : false, "id_str" : "15534471", @@ -3754,7 +3754,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 3, 15 ], "id_str" : "6927562", @@ -3781,11 +3781,11 @@ Grailbird.data.tweets_2011_05 = "id" : 69919693791703040, "created_at" : "2011-05-16 00:18:48 +0000", "user" : { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/934619752768647168\/4ixrnv8S_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046729068559978497\/T5_KOOBN_normal.jpg", "id" : 6927562, "verified" : true } @@ -3900,7 +3900,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Malte Ubl", + "name" : "Malte Ubl, Immigrant", "screen_name" : "cramforce", "indices" : [ 3, 13 ], "id_str" : "15534471", @@ -3927,7 +3927,7 @@ Grailbird.data.tweets_2011_05 = "id" : 69814956157186048, "created_at" : "2011-05-15 17:22:37 +0000", "user" : { - "name" : "Malte Ubl", + "name" : "Malte Ubl, Immigrant", "screen_name" : "cramforce", "protected" : false, "id_str" : "15534471", @@ -4172,7 +4172,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4205,7 +4205,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -4255,7 +4255,7 @@ Grailbird.data.tweets_2011_05 = "id" : 68011171441152000, "created_at" : "2011-05-10 17:55:01 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -4469,7 +4469,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 3, 14 ], "id_str" : "2911221", @@ -4496,11 +4496,11 @@ Grailbird.data.tweets_2011_05 = "id" : 67020587352064000, "created_at" : "2011-05-08 00:18:47 +0000", "user" : { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964058293306970112\/pfc-Jpsc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/993626676302000129\/tjoG13J4_normal.jpg", "id" : 2911221, "verified" : true } @@ -4608,7 +4608,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4641,7 +4641,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4686,7 +4686,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5003,7 +5003,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -5036,7 +5036,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -5204,7 +5204,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5237,7 +5237,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5292,7 +5292,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5325,7 +5325,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5358,7 +5358,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5391,7 +5391,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5424,7 +5424,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5490,7 +5490,7 @@ Grailbird.data.tweets_2011_05 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -5520,7 +5520,7 @@ Grailbird.data.tweets_2011_05 = "id" : 65110836884160513, "created_at" : "2011-05-02 17:50:07 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -5861,7 +5861,7 @@ Grailbird.data.tweets_2011_05 = "screen_name" : "vivsharma", "protected" : false, "id_str" : "14148574", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/868463877108924421\/5XzyfOO8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1021372180976762881\/W6dCk0b-_normal.jpg", "id" : 14148574, "verified" : false } diff --git a/public/tweets/data/js/tweets/2011_06.js b/public/tweets/data/js/tweets/2011_06.js index 0492562..5f4e703 100755 --- a/public/tweets/data/js/tweets/2011_06.js +++ b/public/tweets/data/js/tweets/2011_06.js @@ -353,7 +353,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -386,7 +386,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -496,7 +496,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -690,7 +690,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -723,7 +723,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -754,7 +754,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -982,7 +982,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -1651,7 +1651,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1867,7 +1867,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Francis \uD83D\uDCBE Gulotta", + "name" : "Francis \uD83D\uDE80 Gulotta", "screen_name" : "reconbot", "indices" : [ 4, 13 ], "id_str" : "14082200", @@ -1959,7 +1959,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1992,7 +1992,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -2025,7 +2025,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2170,7 +2170,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -2197,7 +2197,7 @@ Grailbird.data.tweets_2011_06 = "id" : 77806627964723200, "created_at" : "2011-06-06 18:38:40 +0000", "user" : { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", @@ -2265,7 +2265,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -2297,7 +2297,7 @@ Grailbird.data.tweets_2011_06 = "id" : 77055588034543616, "created_at" : "2011-06-04 16:54:18 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -2387,7 +2387,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2420,7 +2420,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2453,7 +2453,7 @@ Grailbird.data.tweets_2011_06 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", diff --git a/public/tweets/data/js/tweets/2011_07.js b/public/tweets/data/js/tweets/2011_07.js index 432a1e1..b8cc672 100755 --- a/public/tweets/data/js/tweets/2011_07.js +++ b/public/tweets/data/js/tweets/2011_07.js @@ -147,7 +147,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", + "name" : "Alatar the Blue\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 0, 10 ], "id_str" : "6585632", @@ -231,7 +231,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -264,7 +264,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -297,7 +297,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -352,7 +352,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", + "name" : "Alatar the Blue\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 0, 10 ], "id_str" : "6585632", @@ -385,7 +385,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", + "name" : "Alatar the Blue\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 0, 10 ], "id_str" : "6585632", @@ -451,7 +451,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", + "name" : "Alatar the Blue\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 0, 10 ], "id_str" : "6585632", @@ -484,7 +484,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", + "name" : "Alatar the Blue\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 0, 10 ], "id_str" : "6585632", @@ -517,7 +517,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -572,7 +572,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -644,7 +644,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "724541871788314625", "id" : 724541871788314625 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 19, 30 ], "id_str" : "894911", @@ -829,7 +829,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1114,7 +1114,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1174,7 +1174,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1366,7 +1366,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "96677310228471808", "text" : "RT @siracusa: This is pretty neat: quickly edit text in any app with your favorite text editor with QuickCursor http:\/\/bit.ly\/omHfPT", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2300,7 +2300,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -2333,7 +2333,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -2377,7 +2377,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -2410,7 +2410,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -3167,7 +3167,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -3206,7 +3206,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -3552,7 +3552,7 @@ Grailbird.data.tweets_2011_07 = "screen_name" : "benadida", "protected" : false, "id_str" : "14451083", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/966027154872877056\/I2ZQ1Ojr_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/993308263297961985\/s278Myr0_normal.jpg", "id" : 14451083, "verified" : false } @@ -3605,7 +3605,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3757,7 +3757,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "91916556531019776", "text" : "RT @timbray: Ooh, Shaw is being very VERY bad: http:\/\/goo.gl\/NH3tE (cc @DonDavies)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Don Davies MP", @@ -3828,7 +3828,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "2529071430", "id" : 2529071430 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 14, 25 ], "id_str" : "894911", @@ -3856,7 +3856,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3889,7 +3889,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4025,7 +4025,7 @@ Grailbird.data.tweets_2011_07 = "screen_name" : "jeremyckahn", "protected" : false, "id_str" : "24949617", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/844582252747149312\/NDEcfS7R_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/998547818812923904\/7MeJxc0j_normal.jpg", "id" : 24949617, "verified" : false } @@ -4177,7 +4177,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -4355,7 +4355,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -4589,7 +4589,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4965,7 +4965,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -5158,27 +5158,16 @@ Grailbird.data.tweets_2011_07 = }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 0, 10 ], - "id_str" : "3260971", - "id" : 3260971 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "90894311801094144", "geo" : { }, "id_str" : "90901714579898368", - "in_reply_to_user_id" : 3260971, "text" : "@niels_bom Agreed, as long as they keep working on it I'm happy.", "id" : 90901714579898368, - "in_reply_to_status_id" : 90894311801094144, "created_at" : "2011-07-12 21:53:52 +0000", - "in_reply_to_screen_name" : "niels_bom", - "in_reply_to_user_id_str" : "3260971", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -5191,27 +5180,16 @@ Grailbird.data.tweets_2011_07 = }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 0, 10 ], - "id_str" : "3260971", - "id" : 3260971 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "90892236669190144", "geo" : { }, "id_str" : "90893839451164672", - "in_reply_to_user_id" : 3260971, "text" : "@niels_bom Heh, Google seems committed so I hope it's not that bad. But I'm not holding my breath either.", "id" : 90893839451164672, - "in_reply_to_status_id" : 90892236669190144, "created_at" : "2011-07-12 21:22:34 +0000", - "in_reply_to_screen_name" : "niels_bom", - "in_reply_to_user_id_str" : "3260971", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -5224,27 +5202,16 @@ Grailbird.data.tweets_2011_07 = }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 0, 10 ], - "id_str" : "3260971", - "id" : 3260971 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "90888666129510401", "geo" : { }, "id_str" : "90890873600086016", - "in_reply_to_user_id" : 3260971, "text" : "@niels_bom Google would be wise to make sure the iOS app stands on its own with enough instruction to get started.", "id" : 90890873600086016, - "in_reply_to_status_id" : 90888666129510401, "created_at" : "2011-07-12 21:10:47 +0000", - "in_reply_to_screen_name" : "niels_bom", - "in_reply_to_user_id_str" : "3260971", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -5263,12 +5230,6 @@ Grailbird.data.tweets_2011_07 = "indices" : [ 0, 5 ], "id_str" : "4777951", "id" : 4777951 - }, { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 6, 16 ], - "id_str" : "3260971", - "id" : 3260971 } ], "media" : [ ], "hashtags" : [ ], @@ -5296,27 +5257,16 @@ Grailbird.data.tweets_2011_07 = }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 0, 10 ], - "id_str" : "3260971", - "id" : 3260971 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "90889148398977024", "geo" : { }, "id_str" : "90890184094265344", - "in_reply_to_user_id" : 3260971, "text" : "@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...", "id" : 90890184094265344, - "in_reply_to_status_id" : 90889148398977024, "created_at" : "2011-07-12 21:08:03 +0000", - "in_reply_to_screen_name" : "niels_bom", - "in_reply_to_user_id_str" : "3260971", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -5329,27 +5279,16 @@ Grailbird.data.tweets_2011_07 = }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 0, 10 ], - "id_str" : "3260971", - "id" : 3260971 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "90884175304994817", "geo" : { }, "id_str" : "90886118916108288", - "in_reply_to_user_id" : 3260971, "text" : "@niels_bom I've never used an app like this before so unfortunately I don't have a reference point to compare it to.", "id" : 90886118916108288, - "in_reply_to_status_id" : 90884175304994817, "created_at" : "2011-07-12 20:51:53 +0000", - "in_reply_to_screen_name" : "niels_bom", - "in_reply_to_user_id_str" : "3260971", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -5362,13 +5301,7 @@ Grailbird.data.tweets_2011_07 = }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 0, 10 ], - "id_str" : "3260971", - "id" : 3260971 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ { "text" : "googleplus", @@ -5379,16 +5312,11 @@ Grailbird.data.tweets_2011_07 = } ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "90884175304994817", "geo" : { }, "id_str" : "90885793916256256", - "in_reply_to_user_id" : 3260971, "text" : "@niels_bom A great start, might be confusing for some though. Streams for individual Circles are hidden behind 3 taps. #googleplus #android", "id" : 90885793916256256, - "in_reply_to_status_id" : 90884175304994817, "created_at" : "2011-07-12 20:50:36 +0000", - "in_reply_to_screen_name" : "niels_bom", - "in_reply_to_user_id_str" : "3260971", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -5440,7 +5368,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5512,7 +5440,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5545,7 +5473,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5578,7 +5506,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5611,7 +5539,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -5644,7 +5572,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5768,7 +5696,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -5801,7 +5729,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -5834,7 +5762,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5867,7 +5795,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5900,7 +5828,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -6002,16 +5930,11 @@ Grailbird.data.tweets_2011_07 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "90127568828768256", "geo" : { }, "id_str" : "90130568754364416", - "in_reply_to_user_id" : 14358152, "text" : "@mentalguy Sent. After being invited I checked back the next morning and got in, ymmv.", "id" : 90130568754364416, - "in_reply_to_status_id" : 90127568828768256, "created_at" : "2011-07-10 18:49:36 +0000", - "in_reply_to_screen_name" : "visiblecode", - "in_reply_to_user_id_str" : "14358152", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -6052,7 +5975,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6590,6 +6513,57 @@ Grailbird.data.tweets_2011_07 = "id" : 4777951, "verified" : false } +}, { + "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "black", + "screen_name" : "b6n", + "indices" : [ 3, 7 ], + "id_str" : "16031975", + "id" : 16031975 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "89497363021971457", + "text" : "RT @b6n: For me, it's either false dichotomies or nothing at all.", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "89497134390460416", + "text" : "For me, it's either false dichotomies or nothing at all.", + "id" : 89497134390460416, + "created_at" : "2011-07-09 00:52:34 +0000", + "user" : { + "name" : "black", + "screen_name" : "b6n", + "protected" : false, + "id_str" : "16031975", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029906229173215233\/zYFg1yGR_normal.jpg", + "id" : 16031975, + "verified" : false + } + }, + "id" : 89497363021971457, + "created_at" : "2011-07-09 00:53:28 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } }, { "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { @@ -6667,7 +6641,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7036,7 +7010,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7069,7 +7043,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7102,7 +7076,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7168,7 +7142,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7421,7 +7395,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7454,7 +7428,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7553,7 +7527,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7822,7 +7796,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -7855,7 +7829,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -7908,11 +7882,11 @@ Grailbird.data.tweets_2011_07 = "id" : 88055999612727296, "created_at" : "2011-07-05 01:26:00 +0000", "user" : { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039990224271630338\/Z6BmVyLy_normal.jpg", "id" : 29255412, "verified" : false } @@ -7963,7 +7937,7 @@ Grailbird.data.tweets_2011_07 = "screen_name" : "saroy", "protected" : false, "id_str" : "6120952", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/338175447\/avatar_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/989661372748255232\/gYhDO_7i_normal.jpg", "id" : 6120952, "verified" : false } @@ -7989,7 +7963,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "745792987", "id" : 745792987 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 65, 76 ], "id_str" : "894911", @@ -8065,7 +8039,7 @@ Grailbird.data.tweets_2011_07 = "screen_name" : "vicpdcanada", "protected" : false, "id_str" : "80139117", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/933128278671466496\/9F7nlK4k_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1031602904027688960\/2mkn8VFH_normal.jpg", "id" : 80139117, "verified" : true } @@ -8181,7 +8155,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "668423", "id" : 668423 }, { - "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", + "name" : "Alatar the Blue\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 8, 18 ], "id_str" : "6585632", @@ -8242,7 +8216,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -8275,7 +8249,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 38, 49 ], "id_str" : "894911", @@ -8389,7 +8363,7 @@ Grailbird.data.tweets_2011_07 = "id_str" : "86892066013057024", "text" : "RT @siracusa: My review of the new http:\/\/bit.ly\/l1ibnI \"Preview (Dense)\" Gmail theme: not dense enough.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -8426,7 +8400,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -8459,7 +8433,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 0, 4 ], "id_str" : "12712742", @@ -8514,7 +8488,7 @@ Grailbird.data.tweets_2011_07 = "source" : "\u003Ca href=\"http:\/\/seesmic.com\/\" rel=\"nofollow\"\u003ESeesmic\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -8616,7 +8590,7 @@ Grailbird.data.tweets_2011_07 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1005850629028352000\/jHsNM3wM_normal.jpg", "id" : 14231571, "verified" : true } diff --git a/public/tweets/data/js/tweets/2011_08.js b/public/tweets/data/js/tweets/2011_08.js index 8d036cc..44d77e5 100755 --- a/public/tweets/data/js/tweets/2011_08.js +++ b/public/tweets/data/js/tweets/2011_08.js @@ -9,7 +9,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "14231571", "id" : 14231571 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 24, 35 ], "id_str" : "894911", @@ -140,7 +140,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -906,7 +906,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -939,7 +939,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -990,11 +990,11 @@ Grailbird.data.tweets_2011_08 = "id_str" : "752673", "id" : 752673 }, { - "name" : "ender", + "name" : "ethan", "screen_name" : "ender", "indices" : [ 14, 20 ], - "id_str" : "823938", - "id" : 823938 + "id_str" : "1032867964381356032", + "id" : 1032867964381356032 } ], "media" : [ ], "hashtags" : [ ], @@ -1364,7 +1364,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 0, 7 ], "id_str" : "8675502", @@ -1403,7 +1403,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 0, 7 ], "id_str" : "8675502", @@ -1447,7 +1447,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 0, 7 ], "id_str" : "8675502", @@ -1486,7 +1486,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 87, 94 ], "id_str" : "8675502", @@ -1520,7 +1520,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 0, 7 ], "id_str" : "8675502", @@ -1559,7 +1559,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 0, 7 ], "id_str" : "8675502", @@ -1598,7 +1598,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 0, 7 ], "id_str" : "8675502", @@ -1786,7 +1786,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1878,7 +1878,7 @@ Grailbird.data.tweets_2011_08 = "screen_name" : "_JamesNielsen", "protected" : false, "id_str" : "220909573", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/973036289170710528\/tWoevzM__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1033136847344492546\/oEBFOZsW_normal.jpg", "id" : 220909573, "verified" : false } @@ -1929,7 +1929,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "288383647", "id" : 288383647 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -2077,7 +2077,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2132,7 +2132,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2644,7 +2644,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2887,7 +2887,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "3655191", "id" : 3655191 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 8, 19 ], "id_str" : "894911", @@ -3024,7 +3024,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "101690437831622657", "text" : "RT @bryan_kyle: Text Editors in The Lord of the Rings - The title says it all. http:\/\/tumblr.com\/xre4188hid", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3331,7 +3331,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3364,7 +3364,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3397,7 +3397,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3430,7 +3430,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3463,7 +3463,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3496,7 +3496,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3529,7 +3529,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3899,7 +3899,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -3944,7 +3944,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -3983,7 +3983,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -4038,7 +4038,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4071,7 +4071,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4104,7 +4104,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4137,7 +4137,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4396,7 +4396,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -4433,11 +4433,11 @@ Grailbird.data.tweets_2011_08 = "id" : 100760690448543745, "created_at" : "2011-08-09 02:49:55 +0000", "user" : { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039990224271630338\/Z6BmVyLy_normal.jpg", "id" : 29255412, "verified" : false } @@ -4560,7 +4560,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "70596949", "id" : 70596949 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 12, 26 ], "id_str" : "29255412", @@ -4599,7 +4599,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "70596949", "id" : 70596949 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 12, 26 ], "id_str" : "29255412", @@ -4632,7 +4632,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -4738,7 +4738,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4776,7 +4776,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4881,7 +4881,7 @@ Grailbird.data.tweets_2011_08 = "id_str" : "645143", "id" : 645143 }, { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 12, 24 ], "id_str" : "6927562", @@ -4898,7 +4898,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -4943,7 +4943,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 3, 15 ], "id_str" : "6927562", @@ -4970,11 +4970,11 @@ Grailbird.data.tweets_2011_08 = "id" : 99769913161416704, "created_at" : "2011-08-06 09:12:55 +0000", "user" : { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/934619752768647168\/4ixrnv8S_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046729068559978497\/T5_KOOBN_normal.jpg", "id" : 6927562, "verified" : true } @@ -5105,7 +5105,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5138,7 +5138,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5292,7 +5292,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5325,7 +5325,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5358,7 +5358,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5434,7 +5434,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5467,7 +5467,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 3, 7 ], "id_str" : "12712742", @@ -5511,11 +5511,11 @@ Grailbird.data.tweets_2011_08 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "protected" : false, "id_str" : "12712742", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/982615078200426497\/njD6-6iU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1040277390625140741\/iT3Jsv3j_normal.jpg", "id" : 12712742, "verified" : false } @@ -5535,7 +5535,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5790,7 +5790,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5823,7 +5823,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5856,7 +5856,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5889,7 +5889,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -5933,7 +5933,7 @@ Grailbird.data.tweets_2011_08 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -6025,7 +6025,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -6069,7 +6069,7 @@ Grailbird.data.tweets_2011_08 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -6093,7 +6093,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6571,7 +6571,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6626,7 +6626,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6659,7 +6659,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6697,7 +6697,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6730,7 +6730,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6763,7 +6763,7 @@ Grailbird.data.tweets_2011_08 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6969,7 +6969,7 @@ Grailbird.data.tweets_2011_08 = "screen_name" : "SubtleGradient", "protected" : false, "id_str" : "14405464", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/974751815680983040\/6zOfX-Ls_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1022160768622645250\/CrKK5uDG_normal.jpg", "id" : 14405464, "verified" : false } diff --git a/public/tweets/data/js/tweets/2011_09.js b/public/tweets/data/js/tweets/2011_09.js index e5cd487..f14ded8 100755 --- a/public/tweets/data/js/tweets/2011_09.js +++ b/public/tweets/data/js/tweets/2011_09.js @@ -31,13 +31,13 @@ Grailbird.data.tweets_2011_09 = "id_str" : "20079975", "id" : 20079975 }, { - "name" : "Kris Kowal\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", + "name" : "Alatar the Blue\u00A0\uD83E\uDDD9\uD83C\uDFFB\u200D\u2642\uFE0F\uD83E\uDDDD\uD83C\uDFFB\u200D\u2640\uFE0F", "screen_name" : "kriskowal", "indices" : [ 9, 19 ], "id_str" : "6585632", "id" : 6585632 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 57, 68 ], "id_str" : "894911", @@ -377,7 +377,7 @@ Grailbird.data.tweets_2011_09 = "id_str" : "118483384472313857", "text" : "RT @siracusa: Christmas comes early for TextMate fans: http:\/\/t.co\/6oBSQ2Ay", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -685,7 +685,7 @@ Grailbird.data.tweets_2011_09 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1310,7 +1310,7 @@ Grailbird.data.tweets_2011_09 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1343,7 +1343,7 @@ Grailbird.data.tweets_2011_09 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1376,7 +1376,7 @@ Grailbird.data.tweets_2011_09 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1409,7 +1409,7 @@ Grailbird.data.tweets_2011_09 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1448,7 +1448,7 @@ Grailbird.data.tweets_2011_09 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -1487,7 +1487,7 @@ Grailbird.data.tweets_2011_09 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -1592,7 +1592,7 @@ Grailbird.data.tweets_2011_09 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2011_10.js b/public/tweets/data/js/tweets/2011_10.js index 840099d..5dcea1c 100755 --- a/public/tweets/data/js/tweets/2011_10.js +++ b/public/tweets/data/js/tweets/2011_10.js @@ -266,7 +266,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -305,7 +305,7 @@ Grailbird.data.tweets_2011_10 = "id_str" : "820694", "id" : 820694 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 21, 32 ], "id_str" : "894911", @@ -365,7 +365,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -403,7 +403,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -436,7 +436,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -469,7 +469,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -502,7 +502,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -535,7 +535,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -571,7 +571,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -637,7 +637,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -709,7 +709,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -770,7 +770,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -803,7 +803,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1011,7 +1011,7 @@ Grailbird.data.tweets_2011_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", diff --git a/public/tweets/data/js/tweets/2011_11.js b/public/tweets/data/js/tweets/2011_11.js index cbb79d3..225a832 100755 --- a/public/tweets/data/js/tweets/2011_11.js +++ b/public/tweets/data/js/tweets/2011_11.js @@ -189,7 +189,7 @@ Grailbird.data.tweets_2011_11 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -464,7 +464,7 @@ Grailbird.data.tweets_2011_11 = "id" : 138013579570978816, "in_reply_to_status_id" : 138008405016190976, "created_at" : "2011-11-19 21:59:36 +0000", - "in_reply_to_screen_name" : "0x00A", + "in_reply_to_screen_name" : "hxoht", "in_reply_to_user_id_str" : "95938827", "user" : { "name" : "Sami Samhuri", @@ -542,7 +542,7 @@ Grailbird.data.tweets_2011_11 = "id" : 137970989844795392, "in_reply_to_status_id" : 137966803002466304, "created_at" : "2011-11-19 19:10:22 +0000", - "in_reply_to_screen_name" : "0x00A", + "in_reply_to_screen_name" : "hxoht", "in_reply_to_user_id_str" : "95938827", "user" : { "name" : "Sami Samhuri", @@ -586,7 +586,7 @@ Grailbird.data.tweets_2011_11 = "id" : 137970445608697857, "in_reply_to_status_id" : 137966803002466304, "created_at" : "2011-11-19 19:08:12 +0000", - "in_reply_to_screen_name" : "0x00A", + "in_reply_to_screen_name" : "hxoht", "in_reply_to_user_id_str" : "95938827", "user" : { "name" : "Sami Samhuri", @@ -601,7 +601,7 @@ Grailbird.data.tweets_2011_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -628,7 +628,7 @@ Grailbird.data.tweets_2011_11 = "id" : 137327194912464896, "created_at" : "2011-11-18 00:32:09 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -652,7 +652,7 @@ Grailbird.data.tweets_2011_11 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -703,7 +703,7 @@ Grailbird.data.tweets_2011_11 = "id" : 137206481815748608, "in_reply_to_status_id" : 137141796827435008, "created_at" : "2011-11-17 16:32:29 +0000", - "in_reply_to_screen_name" : "0x00A", + "in_reply_to_screen_name" : "hxoht", "in_reply_to_user_id_str" : "95938827", "user" : { "name" : "Sami Samhuri", @@ -732,7 +732,7 @@ Grailbird.data.tweets_2011_11 = "id_str" : "137204693947518976", "text" : "RT @CodeWisdom: \"A clever person solves a problem. A wise person avoids it.\" - Einstein", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1263,7 +1263,7 @@ Grailbird.data.tweets_2011_11 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029230542716264448\/LgLb--Of_normal.jpg", "id" : 15540222, "verified" : true } @@ -1283,7 +1283,7 @@ Grailbird.data.tweets_2011_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1463,7 +1463,7 @@ Grailbird.data.tweets_2011_11 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1496,7 +1496,7 @@ Grailbird.data.tweets_2011_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -1523,7 +1523,7 @@ Grailbird.data.tweets_2011_11 = "id" : 133796375480639488, "created_at" : "2011-11-08 06:41:56 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -1726,7 +1726,7 @@ Grailbird.data.tweets_2011_11 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1005850629028352000\/jHsNM3wM_normal.jpg", "id" : 14231571, "verified" : true } @@ -1746,7 +1746,7 @@ Grailbird.data.tweets_2011_11 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1868,7 +1868,7 @@ Grailbird.data.tweets_2011_11 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2011_12.js b/public/tweets/data/js/tweets/2011_12.js index 425692d..684e61a 100755 --- a/public/tweets/data/js/tweets/2011_12.js +++ b/public/tweets/data/js/tweets/2011_12.js @@ -131,67 +131,6 @@ Grailbird.data.tweets_2011_12 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "annika backstrom", - "screen_name" : "abackstrom", - "indices" : [ 3, 14 ], - "id_str" : "3621751", - "id" : 3621751 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 48, 68 ], - "url" : "http:\/\/t.co\/KeqlGTPz", - "expanded_url" : "http:\/\/www.youtube.com\/watch?v=o1-ndsRPxbM&feature=share", - "display_url" : "youtube.com\/watch?v=o1-nds\u2026" - } ] - }, - "geo" : { }, - "id_str" : "151782151803772928", - "text" : "RT @abackstrom: How to Pronounce Hors d'oeuvres http:\/\/t.co\/KeqlGTPz", - "retweeted_status" : { - "source" : "\u003Ca href=\"https:\/\/dev.twitter.com\/docs\/tfw\" rel=\"nofollow\"\u003ETwitter for Websites\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 32, 52 ], - "url" : "http:\/\/t.co\/KeqlGTPz", - "expanded_url" : "http:\/\/www.youtube.com\/watch?v=o1-ndsRPxbM&feature=share", - "display_url" : "youtube.com\/watch?v=o1-nds\u2026" - } ] - }, - "geo" : { }, - "id_str" : "151504628784185344", - "text" : "How to Pronounce Hors d'oeuvres http:\/\/t.co\/KeqlGTPz", - "id" : 151504628784185344, - "created_at" : "2011-12-27 03:28:12 +0000", - "user" : { - "name" : "annika backstrom", - "screen_name" : "abackstrom", - "protected" : false, - "id_str" : "3621751", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918671102427193344\/fEBI8wyY_normal.jpg", - "id" : 3621751, - "verified" : false - } - }, - "id" : 151782151803772928, - "created_at" : "2011-12-27 21:50:59 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { @@ -308,7 +247,7 @@ Grailbird.data.tweets_2011_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -443,7 +382,7 @@ Grailbird.data.tweets_2011_12 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -544,7 +483,7 @@ Grailbird.data.tweets_2011_12 = "screen_name" : "ChromiumDev", "protected" : false, "id_str" : "113713261", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1320180647\/chromiumchrome_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1052245957750927360\/ZtouEeNE_normal.jpg", "id" : 113713261, "verified" : true } @@ -625,7 +564,7 @@ Grailbird.data.tweets_2011_12 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1085,7 +1024,7 @@ Grailbird.data.tweets_2011_12 = "id_str" : "148070457940254721", "text" : "RT @macromates: Tip: You can click on an icon in the sidebar to open it instantly. \/cc @gregorysean", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Cox", @@ -1128,7 +1067,7 @@ Grailbird.data.tweets_2011_12 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tane Piper\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74\uDB40\uDC7F\uD83C\uDDF3\uD83C\uDDF1\uD83C\uDDEA\uD83C\uDDFA", + "name" : "Tane Piper", "screen_name" : "tanepiper", "indices" : [ 0, 10 ], "id_str" : "20693", @@ -1180,7 +1119,7 @@ Grailbird.data.tweets_2011_12 = "id_str" : "147811105903882240", "text" : "RT @macromates: Learn all about the new .tm_properties config files: http:\/\/t.co\/338jaq39", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1242,7 +1181,7 @@ Grailbird.data.tweets_2011_12 = "id_str" : "147811090984747010", "text" : "RT @macromates: @_sjs \u2303\u2318T \u2192 \u23184 \u2192 enter the shortcut (This isn't new in 2.0, works in 1.x as well, though without the \u23184 shortcut.)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -1988,7 +1927,7 @@ Grailbird.data.tweets_2011_12 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2021,7 +1960,7 @@ Grailbird.data.tweets_2011_12 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2054,7 +1993,7 @@ Grailbird.data.tweets_2011_12 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2218,7 +2157,7 @@ Grailbird.data.tweets_2011_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -2250,7 +2189,7 @@ Grailbird.data.tweets_2011_12 = "id" : 142348849950896129, "created_at" : "2011-12-01 21:06:25 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2012_01.js b/public/tweets/data/js/tweets/2012_01.js index 710ecec..ecce2f3 100755 --- a/public/tweets/data/js/tweets/2012_01.js +++ b/public/tweets/data/js/tweets/2012_01.js @@ -113,7 +113,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -383,7 +383,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -585,7 +585,7 @@ Grailbird.data.tweets_2012_01 = "screen_name" : "ncb000gt", "protected" : false, "id_str" : "7955612", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/968596915439984641\/IoZbCMvy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1003673804210692096\/vI5mjNBE_normal.jpg", "id" : 7955612, "verified" : false } @@ -706,7 +706,7 @@ Grailbird.data.tweets_2012_01 = "screen_name" : "viticci", "protected" : false, "id_str" : "20904050", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/854328515939926016\/OQ8mun9e_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1005494943677235200\/NArzJ6fT_normal.jpg", "id" : 20904050, "verified" : true } @@ -918,7 +918,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Elliott K", + "name" : "Elliott Kernber,", "screen_name" : "elliottkember", "indices" : [ 3, 17 ], "id_str" : "903351", @@ -945,7 +945,7 @@ Grailbird.data.tweets_2012_01 = "id" : 162639322581966848, "created_at" : "2012-01-26 20:53:30 +0000", "user" : { - "name" : "Elliott K", + "name" : "Elliott Kernber,", "screen_name" : "elliottkember", "protected" : false, "id_str" : "903351", @@ -1104,7 +1104,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1170,7 +1170,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1382,7 +1382,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 3, 17 ], "id_str" : "7198302", @@ -1431,11 +1431,11 @@ Grailbird.data.tweets_2012_01 = "id" : 161976836321058816, "created_at" : "2012-01-25 01:01:01 +0000", "user" : { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "protected" : false, "id_str" : "7198302", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985570923599355905\/BAOq3fBC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1008144272682561537\/29ylvfZl_normal.jpg", "id" : 7198302, "verified" : false } @@ -2271,7 +2271,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2304,7 +2304,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2458,7 +2458,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 3, 17 ], "id_str" : "7198302", @@ -2485,11 +2485,11 @@ Grailbird.data.tweets_2012_01 = "id" : 156450422159187970, "created_at" : "2012-01-09 19:01:02 +0000", "user" : { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "protected" : false, "id_str" : "7198302", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985570923599355905\/BAOq3fBC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1008144272682561537\/29ylvfZl_normal.jpg", "id" : 7198302, "verified" : false } @@ -2721,7 +2721,7 @@ Grailbird.data.tweets_2012_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2012_02.js b/public/tweets/data/js/tweets/2012_02.js index ce82f7a..981e6fc 100755 --- a/public/tweets/data/js/tweets/2012_02.js +++ b/public/tweets/data/js/tweets/2012_02.js @@ -134,7 +134,7 @@ Grailbird.data.tweets_2012_02 = "screen_name" : "DioVayne", "protected" : false, "id_str" : "19019338", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964162749457747969\/jLQvxYUe_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1002113722528223232\/j6l-VtQg_normal.jpg", "id" : 19019338, "verified" : false } @@ -253,7 +253,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -374,7 +374,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -587,7 +587,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -620,7 +620,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -653,7 +653,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1243,7 +1243,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1276,7 +1276,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1496,7 +1496,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1529,7 +1529,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1562,7 +1562,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1598,7 +1598,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1631,7 +1631,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1664,7 +1664,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1697,7 +1697,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1735,7 +1735,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2095,7 +2095,7 @@ Grailbird.data.tweets_2012_02 = "screen_name" : "chartier", "protected" : false, "id_str" : "35383", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/955617750642253824\/OzBckq0i_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1041721358030438400\/fdsvZ7_h_normal.jpg", "id" : 35383, "verified" : true } @@ -2115,7 +2115,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 3, 16 ], "id_str" : "11973362", @@ -2152,11 +2152,11 @@ Grailbird.data.tweets_2012_02 = "id" : 165535517616766977, "created_at" : "2012-02-03 20:41:57 +0000", "user" : { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "protected" : false, "id_str" : "11973362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/872004130826362881\/9RRxQHYL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1032497574488420353\/y7sRwlhw_normal.jpg", "id" : 11973362, "verified" : false } @@ -2227,7 +2227,7 @@ Grailbird.data.tweets_2012_02 = "id_str" : "2313826428", "id" : 2313826428 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 77, 91 ], "id_str" : "29255412", @@ -2255,7 +2255,7 @@ Grailbird.data.tweets_2012_02 = "id_str" : "2313826428", "id" : 2313826428 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 63, 77 ], "id_str" : "29255412", @@ -2356,10 +2356,10 @@ Grailbird.data.tweets_2012_02 = "created_at" : "2012-02-03 04:22:48 +0000", "user" : { "name" : "paolo f.", - "screen_name" : "0x00A", + "screen_name" : "hxoht", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/936582635010314240\/Mf7nJiWc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1048105602029944832\/8gWKHraT_normal.jpg", "id" : 95938827, "verified" : false } @@ -2571,7 +2571,7 @@ Grailbird.data.tweets_2012_02 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2012_03.js b/public/tweets/data/js/tweets/2012_03.js index 5238e0c..de175bd 100755 --- a/public/tweets/data/js/tweets/2012_03.js +++ b/public/tweets/data/js/tweets/2012_03.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2012_03 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daine Trinidad", @@ -33,7 +33,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bootstrap", @@ -94,7 +94,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Yehuda Katz \uD83E\uDD68", @@ -167,7 +167,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Frommer", @@ -218,7 +218,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -251,7 +251,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "BrendanEich", @@ -302,7 +302,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "BrendanEich", @@ -363,7 +363,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sean Toohey", @@ -424,7 +424,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "2%Jazz Coffee", @@ -462,7 +462,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -495,10 +495,10 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Oscar Godson", + "name" : "Oscar Godson (\uD55C\uAE00 \uD559\uC0DD)", "screen_name" : "oscargodson", "indices" : [ 0, 12 ], "id_str" : "10138412", @@ -528,7 +528,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Norman Walsh", @@ -642,7 +642,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "andy", @@ -751,7 +751,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Merlin Mann", @@ -802,7 +802,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tom Dale", @@ -835,7 +835,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Account has moved!", @@ -867,7 +867,7 @@ Grailbird.data.tweets_2012_03 = "id" : 183351729692213248, "in_reply_to_status_id" : 183341372198232064, "created_at" : "2012-03-24 00:37:13 +0000", - "in_reply_to_screen_name" : "0x00A", + "in_reply_to_screen_name" : "hxoht", "in_reply_to_user_id_str" : "95938827", "user" : { "name" : "Sami Samhuri", @@ -879,10 +879,10 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -917,7 +917,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jason Grigsby, \u26014", @@ -984,7 +984,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -1017,7 +1017,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Devon Govett", @@ -1068,7 +1068,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -1101,10 +1101,10 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -1123,7 +1123,7 @@ Grailbird.data.tweets_2012_03 = "id_str" : "182592321391566848", "text" : "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", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1141,7 +1141,7 @@ Grailbird.data.tweets_2012_03 = "id" : 182541492265553920, "created_at" : "2012-03-21 18:57:37 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -1162,7 +1162,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1184,7 +1184,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Hipwood", @@ -1217,7 +1217,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1239,10 +1239,10 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1277,10 +1277,10 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1315,7 +1315,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1342,7 +1342,7 @@ Grailbird.data.tweets_2012_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1636,7 +1636,7 @@ Grailbird.data.tweets_2012_03 = "screen_name" : "hellogeri", "protected" : false, "id_str" : "12069912", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/647398562565869572\/VMZCz4iz_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029041879436808211\/WOn-P3WF_normal.jpg", "id" : 12069912, "verified" : false } diff --git a/public/tweets/data/js/tweets/2012_04.js b/public/tweets/data/js/tweets/2012_04.js index 3e016b1..5ba060d 100755 --- a/public/tweets/data/js/tweets/2012_04.js +++ b/public/tweets/data/js/tweets/2012_04.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2012_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Garry #BUIDL Tan", + "name" : "Garry BUIDL Tan", "screen_name" : "garrytan", "indices" : [ 3, 12 ], "id_str" : "11768582", @@ -30,13 +30,13 @@ Grailbird.data.tweets_2012_04 = "id" : 197134998548119552, "created_at" : "2012-05-01 01:27:00 +0000", "user" : { - "name" : "Garry #BUIDL Tan", + "name" : "Garry BUIDL Tan", "screen_name" : "garrytan", "protected" : false, "id_str" : "11768582", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/943716237682421760\/0sBqTJhG_normal.jpg", "id" : 11768582, - "verified" : false + "verified" : true } }, "id" : 197147908364181504, @@ -87,7 +87,7 @@ Grailbird.data.tweets_2012_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -184,7 +184,7 @@ Grailbird.data.tweets_2012_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -275,7 +275,7 @@ Grailbird.data.tweets_2012_04 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1005850629028352000\/jHsNM3wM_normal.jpg", "id" : 14231571, "verified" : true } @@ -292,7 +292,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Teix", @@ -331,7 +331,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Teix", @@ -397,7 +397,7 @@ Grailbird.data.tweets_2012_04 = "id_str" : "195881613580705792", "text" : "RT @siracusa: Go Right. http:\/\/t.co\/GFS0kDya (via @jchutchins)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -469,7 +469,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Jordens", @@ -507,7 +507,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Jordens", @@ -609,13 +609,7 @@ Grailbird.data.tweets_2012_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "niels bom", - "screen_name" : "niels_bom", - "indices" : [ 0, 10 ], - "id_str" : "3260971", - "id" : 3260971 - }, { - "name" : "Steve Streza \uD83C\uDF39 (he\/they)", + "name" : "Steve Streza", "screen_name" : "SteveStreza", "indices" : [ 76, 88 ], "id_str" : "658643", @@ -625,16 +619,11 @@ Grailbird.data.tweets_2012_04 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "195172903074004993", "geo" : { }, "id_str" : "195179308334067712", - "in_reply_to_user_id" : 3260971, "text" : "@niels_bom Yes, it is! I would love to take credit but I must tip my hat to @SteveStreza (iirc)", "id" : 195179308334067712, - "in_reply_to_status_id" : 195172903074004993, "created_at" : "2012-04-25 15:55:48 +0000", - "in_reply_to_screen_name" : "niels_bom", - "in_reply_to_user_id_str" : "3260971", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -648,7 +637,7 @@ Grailbird.data.tweets_2012_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "i see by my outfit that i am a cowboy", + "name" : "Omelas County Chamber of Commerce", "screen_name" : "coda", "indices" : [ 3, 8 ], "id_str" : "637533", @@ -675,7 +664,7 @@ Grailbird.data.tweets_2012_04 = "id" : 194509470561349632, "created_at" : "2012-04-23 19:34:06 +0000", "user" : { - "name" : "i see by my outfit that i am a cowboy", + "name" : "Omelas County Chamber of Commerce", "screen_name" : "coda", "protected" : false, "id_str" : "637533", @@ -729,7 +718,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Jordens", @@ -762,7 +751,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Jordens", @@ -830,7 +819,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -852,7 +841,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Alex MacCaw", @@ -861,7 +850,7 @@ Grailbird.data.tweets_2012_04 = "id_str" : "1345494948", "id" : 1345494948 }, { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 127, 139 ], "id_str" : "6927562", @@ -947,7 +936,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mitchell Hashimoto", @@ -1020,7 +1009,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -1051,7 +1040,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Bazinet", @@ -1074,7 +1063,7 @@ Grailbird.data.tweets_2012_04 = "id_str" : "193469088733986816", "text" : "RT @aaronbazinet: I can no longer hear \u201Cturns out\u201D in a normal conversation without immediately hearing @hotdogsladies repeat it in my h ...", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Merlin Mann", @@ -1223,7 +1212,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1245,7 +1234,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chrome Developers", @@ -1476,7 +1465,7 @@ Grailbird.data.tweets_2012_04 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -1526,7 +1515,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sam Soffes", @@ -1587,7 +1576,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1614,7 +1603,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -1647,7 +1636,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1669,11 +1658,11 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daniel and 10 others", - "screen_name" : "TechWraith", + "screen_name" : "techwraith", "indices" : [ 3, 14 ], "id_str" : "14063139", "id" : 14063139 @@ -1728,10 +1717,10 @@ Grailbird.data.tweets_2012_04 = "created_at" : "2012-04-04 02:16:32 +0000", "user" : { "name" : "Daniel and 10 others", - "screen_name" : "TechWraith", + "screen_name" : "techwraith", "protected" : false, "id_str" : "14063139", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/670352823960211457\/J9rmFp9o_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1049849637585080320\/QtgKw9uH_normal.jpg", "id" : 14063139, "verified" : false } @@ -1748,7 +1737,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1770,7 +1759,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ImmigrantPeter", @@ -1814,7 +1803,7 @@ Grailbird.data.tweets_2012_04 = "screen_name" : "petervandijck", "protected" : false, "id_str" : "823036", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/770774215209476096\/cIRrCVrZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1023973131931791360\/J9lB4YEC_normal.jpg", "id" : 823036, "verified" : false } @@ -1831,7 +1820,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter van der Zee", @@ -1864,7 +1853,7 @@ Grailbird.data.tweets_2012_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter van der Zee", diff --git a/public/tweets/data/js/tweets/2012_05.js b/public/tweets/data/js/tweets/2012_05.js index d1eb336..26958bd 100755 --- a/public/tweets/data/js/tweets/2012_05.js +++ b/public/tweets/data/js/tweets/2012_05.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -72,7 +72,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "207492612859506689", "text" : "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.\"", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -194,7 +194,7 @@ Grailbird.data.tweets_2012_05 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/928419904385990657\/tza-LEdZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046532256402006016\/kCncnA_7_normal.jpg", "id" : 14273142, "verified" : false } @@ -214,7 +214,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -251,7 +251,7 @@ Grailbird.data.tweets_2012_05 = "id" : 207196009498025984, "created_at" : "2012-05-28 19:45:52 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -275,7 +275,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -308,7 +308,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -341,7 +341,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -467,7 +467,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "The Talk Show", @@ -498,7 +498,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "The Talk Show", @@ -532,7 +532,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "I'd Like to Add you to My Professional Network on", + "name" : "brianloveswords", "screen_name" : "brianloveswords", "indices" : [ 3, 19 ], "id_str" : "17177251", @@ -559,7 +559,7 @@ Grailbird.data.tweets_2012_05 = "id" : 206109094338232320, "created_at" : "2012-05-25 19:46:52 +0000", "user" : { - "name" : "I'd Like to Add you to My Professional Network on", + "name" : "brianloveswords", "screen_name" : "brianloveswords", "protected" : false, "id_str" : "17177251", @@ -580,7 +580,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -607,10 +607,10 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -640,10 +640,10 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -955,10 +955,10 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -992,7 +992,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter van der Zee", @@ -1025,7 +1025,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gavin Gilmour", @@ -1067,7 +1067,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "33423", "id" : 33423 }, { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 60, 72 ], "id_str" : "5905672", @@ -1294,7 +1294,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "203649125420498945", "text" : "RT @siracusa: This is why I still pay attention to \"old man of the web\" @zeldman: boldness with purpose. http:\/\/t.co\/x2w38heA", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "zeldman", @@ -1342,7 +1342,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1372,10 +1372,10 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1405,10 +1405,10 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1562,7 +1562,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1589,7 +1589,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1681,10 +1681,10 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1780,10 +1780,10 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1824,7 +1824,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tap for Tap", @@ -1857,10 +1857,10 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2013,7 +2013,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Webb", @@ -2046,7 +2046,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2068,7 +2068,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2216,7 +2216,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2238,10 +2238,10 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2290,16 +2290,11 @@ Grailbird.data.tweets_2012_05 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "200470898447360002", "geo" : { }, "id_str" : "200620249916248065", - "in_reply_to_user_id" : 549709310, "text" : "@say_eye @2percentjazz Great video, and the place looks amazing! I'll have to stop by soon.", "id" : 200620249916248065, - "in_reply_to_status_id" : 200470898447360002, "created_at" : "2012-05-10 16:16:09 +0000", - "in_reply_to_screen_name" : "corleyco", - "in_reply_to_user_id_str" : "549709310", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -2379,7 +2374,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2445,7 +2440,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", + "name" : "BAT MANE", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -2484,7 +2479,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDC6A\uD835\uDC73\uD835\uDC70\uD835\uDC75\uD835\uDC7B \uD835\uDC6C\uD835\uDC6A\uD835\uDC72\uD835\uDC6C\uD835\uDC79", + "name" : "BAT MANE", "screen_name" : "CLINT", "indices" : [ 0, 6 ], "id_str" : "45993", @@ -2520,10 +2515,10 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2675,7 +2670,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "mikeash", @@ -2851,7 +2846,7 @@ Grailbird.data.tweets_2012_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "kyle pulver", + "name" : "kyle pulver \u2B50", "screen_name" : "kylepulver", "indices" : [ 3, 14 ], "id_str" : "50850314", @@ -2878,7 +2873,7 @@ Grailbird.data.tweets_2012_05 = "id" : 199405059694542848, "created_at" : "2012-05-07 07:47:25 +0000", "user" : { - "name" : "kyle pulver", + "name" : "kyle pulver \u2B50", "screen_name" : "kylepulver", "protected" : false, "id_str" : "50850314", @@ -2983,7 +2978,7 @@ Grailbird.data.tweets_2012_05 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -3194,7 +3189,7 @@ Grailbird.data.tweets_2012_05 = "screen_name" : "MattBloomFilms", "protected" : false, "id_str" : "32591490", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985801976712781824\/Y_5Kg2FG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/999071945411837954\/WGYk_kuJ_normal.jpg", "id" : 32591490, "verified" : false } @@ -3289,7 +3284,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -3322,7 +3317,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -3512,7 +3507,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "198445128870924288", "text" : "RT @siracusa: That last tweet probably means I am now officially my mother on the Internet.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3568,7 +3563,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "198445105512849408", "text" : "RT @siracusa: Never give up: http:\/\/t.co\/ICeQgDGW", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3668,7 +3663,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3690,7 +3685,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3712,7 +3707,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3734,7 +3729,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3756,7 +3751,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Jordens", @@ -3870,7 +3865,7 @@ Grailbird.data.tweets_2012_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ryan Florence", @@ -3979,7 +3974,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "197555626950406145", "text" : "RT @siracusa: .txt, .tif, .tmp\u2026just wait until the .xt, .if, and .mp compression algorithms are introduced.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4030,7 +4025,7 @@ Grailbird.data.tweets_2012_05 = "id_str" : "197555614937923585", "text" : "RT @siracusa: Looking at an app distributed as a .tbz2 file, I find myself marveling at how tar has assumed ownership of all extensions ...", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2012_06.js b/public/tweets/data/js/tweets/2012_06.js index 1e242f9..7c6a3ec 100755 --- a/public/tweets/data/js/tweets/2012_06.js +++ b/public/tweets/data/js/tweets/2012_06.js @@ -87,7 +87,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -120,7 +120,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -157,11 +157,11 @@ Grailbird.data.tweets_2012_06 = "id" : 218558453164150785, "created_at" : "2012-06-29 04:16:10 +0000", "user" : { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039990224271630338\/Z6BmVyLy_normal.jpg", "id" : 29255412, "verified" : false } @@ -220,7 +220,7 @@ Grailbird.data.tweets_2012_06 = "id_str" : "11222", "id" : 11222 }, { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 3, 16 ], "id_str" : "11973362", @@ -253,7 +253,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -395,10 +395,10 @@ Grailbird.data.tweets_2012_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -473,7 +473,7 @@ Grailbird.data.tweets_2012_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -501,7 +501,7 @@ Grailbird.data.tweets_2012_06 = "id_str" : "215232090927673345", "text" : "RT @siracusa: WWDC session videos are up! https:\/\/t.co\/HTcPB6bS (via @Jury, of course)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Jurewitz", @@ -546,7 +546,7 @@ Grailbird.data.tweets_2012_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Picnic Coffee", @@ -612,10 +612,10 @@ Grailbird.data.tweets_2012_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -957,7 +957,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "the second hardest problem in computer science", + "name" : "std::mem::transmute_copy(steve, lol)", "screen_name" : "steveklabnik", "indices" : [ 3, 16 ], "id_str" : "22386062", @@ -1000,11 +1000,11 @@ Grailbird.data.tweets_2012_06 = "id" : 212981330538020864, "created_at" : "2012-06-13 18:54:40 +0000", "user" : { - "name" : "the second hardest problem in computer science", + "name" : "std::mem::transmute_copy(steve, lol)", "screen_name" : "steveklabnik", "protected" : false, "id_str" : "22386062", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/906224108547002368\/31Zsh018_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1014189595418857472\/aE6vph7N_normal.jpg", "id" : 22386062, "verified" : false } @@ -1038,7 +1038,7 @@ Grailbird.data.tweets_2012_06 = "id_str" : "213080977357017088", "text" : "RT @wwwtxt: I don't think anyone's going to release a laptop with a\u2014or even a powered-portable\u2014optical disk system (they're not small no ...", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1232,7 +1232,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1265,7 +1265,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1298,7 +1298,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1331,7 +1331,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -1370,7 +1370,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -1409,7 +1409,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1442,7 +1442,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1475,7 +1475,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1508,7 +1508,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -1544,7 +1544,7 @@ Grailbird.data.tweets_2012_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1574,7 +1574,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1607,7 +1607,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1891,7 +1891,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1924,7 +1924,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1957,7 +1957,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1990,7 +1990,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2023,7 +2023,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2056,7 +2056,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2089,7 +2089,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2122,7 +2122,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2155,7 +2155,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2257,7 +2257,7 @@ Grailbird.data.tweets_2012_06 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1005850629028352000\/jHsNM3wM_normal.jpg", "id" : 14231571, "verified" : true } @@ -2277,7 +2277,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2307,7 +2307,7 @@ Grailbird.data.tweets_2012_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2335,10 +2335,10 @@ Grailbird.data.tweets_2012_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jonathan Stark \uD83D\uDE0E\uD83D\uDC4D", + "name" : "Jonathan Stark \uD83E\uDD4B", "screen_name" : "jonathanstark", "indices" : [ 0, 14 ], "id_str" : "7198302", @@ -2368,10 +2368,10 @@ Grailbird.data.tweets_2012_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve Streza \uD83C\uDF39 (he\/they)", + "name" : "Steve Streza", "screen_name" : "SteveStreza", "indices" : [ 3, 15 ], "id_str" : "658643", @@ -2415,7 +2415,7 @@ Grailbird.data.tweets_2012_06 = "in_reply_to_screen_name" : "marcoarment", "in_reply_to_user_id_str" : "14231571", "user" : { - "name" : "Steve Streza \uD83C\uDF39 (he\/they)", + "name" : "Steve Streza", "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", @@ -2436,7 +2436,7 @@ Grailbird.data.tweets_2012_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2525,7 +2525,7 @@ Grailbird.data.tweets_2012_06 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1005850629028352000\/jHsNM3wM_normal.jpg", "id" : 14231571, "verified" : true } @@ -2542,7 +2542,7 @@ Grailbird.data.tweets_2012_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2564,10 +2564,10 @@ Grailbird.data.tweets_2012_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -2594,7 +2594,7 @@ Grailbird.data.tweets_2012_06 = "id" : 208709983024590848, "created_at" : "2012-06-02 00:01:52 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -2675,7 +2675,7 @@ Grailbird.data.tweets_2012_06 = "id_str" : "217829531", "id" : 217829531 }, { - "name" : "Dave Herman", + "name" : "David S Herm-kins", "screen_name" : "littlecalculist", "indices" : [ 60, 76 ], "id_str" : "104245499", @@ -2697,7 +2697,7 @@ Grailbird.data.tweets_2012_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dave Herman", + "name" : "David S Herm-kins", "screen_name" : "littlecalculist", "indices" : [ 43, 59 ], "id_str" : "104245499", diff --git a/public/tweets/data/js/tweets/2012_07.js b/public/tweets/data/js/tweets/2012_07.js index 463ccc5..cd2a53d 100755 --- a/public/tweets/data/js/tweets/2012_07.js +++ b/public/tweets/data/js/tweets/2012_07.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2012_07 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tap for Tap", @@ -39,7 +39,7 @@ Grailbird.data.tweets_2012_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Grisha Kruglov", @@ -83,7 +83,7 @@ Grailbird.data.tweets_2012_07 = "screen_name" : "lunafiko", "protected" : false, "id_str" : "14273142", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/928419904385990657\/tza-LEdZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046532256402006016\/kCncnA_7_normal.jpg", "id" : 14273142, "verified" : false } @@ -128,7 +128,7 @@ Grailbird.data.tweets_2012_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -150,7 +150,7 @@ Grailbird.data.tweets_2012_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -172,7 +172,7 @@ Grailbird.data.tweets_2012_07 = "id_str" : "228309946507329536", "text" : "RT @siracusa: Nerds\u2026 http:\/\/t.co\/aP38wtln", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -264,7 +264,7 @@ Grailbird.data.tweets_2012_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Wynn Netherland", @@ -319,7 +319,7 @@ Grailbird.data.tweets_2012_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ANTIREZ", @@ -373,7 +373,7 @@ Grailbird.data.tweets_2012_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -552,7 +552,7 @@ Grailbird.data.tweets_2012_07 = "id_str" : "224595246779088897", "text" : "RT @peterc: A story about a useful *zero* byte program that sold for \u00A35 a go in the 80s: http:\/\/t.co\/obmLPff3 (I loved the Tatung Einstein!)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -574,7 +574,7 @@ Grailbird.data.tweets_2012_07 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -590,57 +590,6 @@ Grailbird.data.tweets_2012_07 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Chris Beckmann", - "screen_name" : "ChrisBeckmann", - "indices" : [ 3, 17 ], - "id_str" : "55486012", - "id" : 55486012 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "224163617682096128", - "text" : "RT @ChrisBeckmann: The 1989 Game Boy has 0.23% the display resolution of an iPhone 4S. It sold 117.69 million units.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "223996324792635394", - "text" : "The 1989 Game Boy has 0.23% the display resolution of an iPhone 4S. It sold 117.69 million units.", - "id" : 223996324792635394, - "created_at" : "2012-07-14 04:24:20 +0000", - "user" : { - "name" : "Chris Beckmann", - "screen_name" : "ChrisBeckmann", - "protected" : false, - "id_str" : "55486012", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937707630444781568\/Iq2Btkgi_normal.jpg", - "id" : 55486012, - "verified" : true - } - }, - "id" : 224163617682096128, - "created_at" : "2012-07-14 15:29:05 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { @@ -805,7 +754,7 @@ Grailbird.data.tweets_2012_07 = "screen_name" : "RealRonHoward", "protected" : false, "id_str" : "125481462", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/966039590464180224\/msPw4BjW_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1012088938440212480\/sqKBvT7y_normal.jpg", "id" : 125481462, "verified" : true } @@ -924,10 +873,10 @@ Grailbird.data.tweets_2012_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 113, 125 ], "id_str" : "5905672", @@ -1022,7 +971,7 @@ Grailbird.data.tweets_2012_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1055,7 +1004,7 @@ Grailbird.data.tweets_2012_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1085,10 +1034,10 @@ Grailbird.data.tweets_2012_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1131,7 +1080,7 @@ Grailbird.data.tweets_2012_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2012_08.js b/public/tweets/data/js/tweets/2012_08.js index c94c300..e1fe107 100755 --- a/public/tweets/data/js/tweets/2012_08.js +++ b/public/tweets/data/js/tweets/2012_08.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2012_08 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RogersHelps", @@ -66,7 +66,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RogersHelps", @@ -99,7 +99,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RogersHelps", @@ -132,7 +132,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RogersHelps", @@ -163,7 +163,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RogersHelps", @@ -196,7 +196,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -218,7 +218,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -240,7 +240,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RogersHelps", @@ -268,7 +268,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Cooper", @@ -304,7 +304,7 @@ Grailbird.data.tweets_2012_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -337,7 +337,7 @@ Grailbird.data.tweets_2012_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 78, 89 ], "id_str" : "894911", @@ -362,7 +362,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -471,7 +471,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -557,7 +557,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -584,7 +584,7 @@ Grailbird.data.tweets_2012_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mobile17", diff --git a/public/tweets/data/js/tweets/2012_09.js b/public/tweets/data/js/tweets/2012_09.js index 630d85c..15fb6ae 100755 --- a/public/tweets/data/js/tweets/2012_09.js +++ b/public/tweets/data/js/tweets/2012_09.js @@ -66,10 +66,10 @@ Grailbird.data.tweets_2012_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -102,7 +102,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -138,7 +138,7 @@ Grailbird.data.tweets_2012_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -163,7 +163,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -193,10 +193,10 @@ Grailbird.data.tweets_2012_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -226,10 +226,10 @@ Grailbird.data.tweets_2012_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -259,7 +259,7 @@ Grailbird.data.tweets_2012_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -361,7 +361,7 @@ Grailbird.data.tweets_2012_09 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -400,7 +400,7 @@ Grailbird.data.tweets_2012_09 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -436,7 +436,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -469,7 +469,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -502,7 +502,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -535,7 +535,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -573,7 +573,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -615,7 +615,7 @@ Grailbird.data.tweets_2012_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Colt45", @@ -741,7 +741,7 @@ Grailbird.data.tweets_2012_09 = "id_str" : "18605897", "id" : 18605897 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 10, 21 ], "id_str" : "894911", @@ -891,7 +891,7 @@ Grailbird.data.tweets_2012_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -930,7 +930,7 @@ Grailbird.data.tweets_2012_09 = "id" : 246445796814385153, "created_at" : "2012-09-14 03:10:31 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -1098,7 +1098,7 @@ Grailbird.data.tweets_2012_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Amazon.com", @@ -1126,7 +1126,7 @@ Grailbird.data.tweets_2012_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1165,7 +1165,7 @@ Grailbird.data.tweets_2012_09 = "id_str" : "244286596105519104", "text" : "RT @jjustice: Objective C always reminds me of nursery rhymes. -(id)doYouKnowTheMuffinMan:(TheMuffinMan *)theMuffinMan;", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1414,7 +1414,7 @@ Grailbird.data.tweets_2012_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tap for Tap", diff --git a/public/tweets/data/js/tweets/2012_10.js b/public/tweets/data/js/tweets/2012_10.js index ecd555a..ce7ff72 100755 --- a/public/tweets/data/js/tweets/2012_10.js +++ b/public/tweets/data/js/tweets/2012_10.js @@ -30,7 +30,7 @@ Grailbird.data.tweets_2012_10 = "id" : 263771862125928448, "created_at" : "2012-10-31 22:38:07 +0000", "user" : { - "name" : "Miss Tobey", + "name" : "Runaway Goroutine in Prod", "screen_name" : "MissAmyTobey", "protected" : false, "id_str" : "146248951", @@ -51,7 +51,7 @@ Grailbird.data.tweets_2012_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -78,7 +78,7 @@ Grailbird.data.tweets_2012_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GitHub", @@ -148,7 +148,7 @@ Grailbird.data.tweets_2012_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -192,7 +192,7 @@ Grailbird.data.tweets_2012_10 = "id" : 258702456060538880, "created_at" : "2012-10-17 22:54:06 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -311,7 +311,7 @@ Grailbird.data.tweets_2012_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "The Doodle \uD83C\uDDE8\uD83C\uDDE6", + "name" : "Aspiring \u201CSpace Force\u201D Cadet", "screen_name" : "the_webhamster", "indices" : [ 3, 18 ], "id_str" : "207536489", @@ -338,7 +338,7 @@ Grailbird.data.tweets_2012_10 = "id" : 256954058131267584, "created_at" : "2012-10-13 03:06:36 +0000", "user" : { - "name" : "The Doodle \uD83C\uDDE8\uD83C\uDDE6", + "name" : "Aspiring \u201CSpace Force\u201D Cadet", "screen_name" : "the_webhamster", "protected" : false, "id_str" : "207536489", @@ -425,7 +425,7 @@ Grailbird.data.tweets_2012_10 = "source" : "\u003Ca href=\"http:\/\/kiwi-app.net\" rel=\"nofollow\"\u003EKiwi\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -610,7 +610,7 @@ Grailbird.data.tweets_2012_10 = "id_str" : "9533042", "id" : 9533042 }, { - "name" : "Dustin Dawes \uD83C\uDF55", + "name" : "Dustin Dawes \uD83D\uDCA4", "screen_name" : "gu3st", "indices" : [ 13, 19 ], "id_str" : "18702069", @@ -649,7 +649,7 @@ Grailbird.data.tweets_2012_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dustin Dawes \uD83C\uDF55", + "name" : "Dustin Dawes \uD83D\uDCA4", "screen_name" : "gu3st", "indices" : [ 0, 6 ], "id_str" : "18702069", @@ -701,7 +701,7 @@ Grailbird.data.tweets_2012_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -718,7 +718,7 @@ Grailbird.data.tweets_2012_10 = "id_str" : "252893730447699969", "text" : "RT @siracusa: That's it, I'm moving all my status updates to UUCP.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2012_11.js b/public/tweets/data/js/tweets/2012_11.js index b8e855b..68e6330 100755 --- a/public/tweets/data/js/tweets/2012_11.js +++ b/public/tweets/data/js/tweets/2012_11.js @@ -170,7 +170,7 @@ Grailbird.data.tweets_2012_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "atebits", + "name" : "AteBits.com", "screen_name" : "atebits", "indices" : [ 0, 8 ], "id_str" : "11178592", @@ -246,7 +246,7 @@ Grailbird.data.tweets_2012_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -276,7 +276,7 @@ Grailbird.data.tweets_2012_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -298,10 +298,10 @@ Grailbird.data.tweets_2012_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2012_12.js b/public/tweets/data/js/tweets/2012_12.js index 2cb6333..1565cdb 100755 --- a/public/tweets/data/js/tweets/2012_12.js +++ b/public/tweets/data/js/tweets/2012_12.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2012_12 = "source" : "\u003Ca href=\"http:\/\/www.apple.com\/\" rel=\"nofollow\"\u003EOS X\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "atebits", + "name" : "AteBits.com", "screen_name" : "atebits", "indices" : [ 53, 61 ], "id_str" : "11178592", @@ -31,7 +31,7 @@ Grailbird.data.tweets_2012_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -306,7 +306,7 @@ Grailbird.data.tweets_2012_12 = "id_str" : "14231571", "id" : 14231571 }, { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 13, 25 ], "id_str" : "5905672", @@ -381,7 +381,7 @@ Grailbird.data.tweets_2012_12 = "id_str" : "372982253", "id" : 372982253 }, { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 66, 78 ], "id_str" : "5905672", @@ -555,7 +555,7 @@ Grailbird.data.tweets_2012_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Colt45", diff --git a/public/tweets/data/js/tweets/2013_01.js b/public/tweets/data/js/tweets/2013_01.js index 0d98cdb..2eeef37 100755 --- a/public/tweets/data/js/tweets/2013_01.js +++ b/public/tweets/data/js/tweets/2013_01.js @@ -247,7 +247,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -256,7 +256,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "2833665322", "id" : 2833665322 }, { - "name" : "Terry", + "name" : "Terry (Spooky)", "screen_name" : "terrycavanagh", "indices" : [ 23, 37 ], "id_str" : "36457353", @@ -273,7 +273,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/www.myplume.com\/\" rel=\"nofollow\"\u003EPlume\u00A0for\u00A0Android\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Terry", + "name" : "Terry (Spooky)", "screen_name" : "terrycavanagh", "indices" : [ 8, 22 ], "id_str" : "36457353", @@ -376,7 +376,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mahyar Mj", @@ -409,7 +409,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mahyar Mj", @@ -594,7 +594,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -621,7 +621,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ajHecky", @@ -810,7 +810,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -843,7 +843,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -909,7 +909,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -940,7 +940,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -973,7 +973,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1011,7 +1011,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1044,7 +1044,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1077,7 +1077,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1110,7 +1110,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1143,7 +1143,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1176,7 +1176,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1209,7 +1209,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1242,7 +1242,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1281,7 +1281,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "11442522", "id" : 11442522 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 11, 22 ], "id_str" : "894911", @@ -1320,7 +1320,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "11442522", "id" : 11442522 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 11, 22 ], "id_str" : "894911", @@ -1359,7 +1359,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "834501828620537856", "id" : 834501828620537856 }, { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 68, 72 ], "id_str" : "8038312", @@ -1376,7 +1376,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 52, 56 ], "id_str" : "8038312", @@ -1392,7 +1392,7 @@ Grailbird.data.tweets_2013_01 = "id" : 294851428722282496, "created_at" : "2013-01-25 16:57:13 +0000", "user" : { - "name" : "invisible chaotic self-modifying biomachine", + "name" : "*mut \"invisible chaotic self-modifying biomachine\"", "screen_name" : "edefic", "protected" : false, "id_str" : "15734539", @@ -1430,7 +1430,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "294852037655527424", "text" : "RT @siracusa: OS X: always one step ahead of me in its mission to destroy my carefully arranged windows.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1945,10 +1945,10 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1978,10 +1978,10 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -2011,10 +2011,10 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -2044,10 +2044,10 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -2077,10 +2077,10 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dave Herman", + "name" : "David S Herm-kins", "screen_name" : "littlecalculist", "indices" : [ 3, 19 ], "id_str" : "104245499", @@ -2107,11 +2107,11 @@ Grailbird.data.tweets_2013_01 = "id" : 293474371270475777, "created_at" : "2013-01-21 21:45:17 +0000", "user" : { - "name" : "Dave Herman", + "name" : "David S Herm-kins", "screen_name" : "littlecalculist", "protected" : false, "id_str" : "104245499", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917612132002283520\/6DxhJzV6_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1048454829910048768\/E4oyNiLZ_normal.jpg", "id" : 104245499, "verified" : false } @@ -2164,7 +2164,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "2833665322", "id" : 2833665322 }, { - "name" : "Terry", + "name" : "Terry (Spooky)", "screen_name" : "terrycavanagh", "indices" : [ 11, 25 ], "id_str" : "36457353", @@ -2318,7 +2318,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "substack", @@ -2327,7 +2327,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "125027291", "id" : 125027291 }, { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 10, 14 ], "id_str" : "8038312", @@ -2357,7 +2357,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -2390,16 +2390,16 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve\uD83C\uDDE8\uD83C\uDDE6", + "name" : "Steve", "screen_name" : "tewha", "indices" : [ 0, 6 ], "id_str" : "14058316", "id" : 14058316 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 7, 18 ], "id_str" : "894911", @@ -2429,16 +2429,16 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", "id" : 894911 }, { - "name" : "Steve\uD83C\uDDE8\uD83C\uDDE6", + "name" : "Steve", "screen_name" : "tewha", "indices" : [ 12, 18 ], "id_str" : "14058316", @@ -2466,16 +2466,16 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", "id" : 894911 }, { - "name" : "Steve\uD83C\uDDE8\uD83C\uDDE6", + "name" : "Steve", "screen_name" : "tewha", "indices" : [ 12, 18 ], "id_str" : "14058316", @@ -2505,7 +2505,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Allen Wirfs-Brock", @@ -2566,16 +2566,16 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve\uD83C\uDDE8\uD83C\uDDE6", + "name" : "Steve", "screen_name" : "tewha", "indices" : [ 0, 6 ], "id_str" : "14058316", "id" : 14058316 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 7, 18 ], "id_str" : "894911", @@ -2608,7 +2608,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/www.apple.com\/\" rel=\"nofollow\"\u003EOS X\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 11, 26 ], "id_str" : "27302287", @@ -2643,7 +2643,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Bray", @@ -2704,7 +2704,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -2737,7 +2737,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -2770,7 +2770,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mobile17", @@ -2798,7 +2798,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Instapaper", @@ -2826,7 +2826,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "EricAlanDyck", @@ -2906,7 +2906,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2936,7 +2936,7 @@ Grailbird.data.tweets_2013_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Android Holo\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Windows\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -3077,7 +3077,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3867,7 +3867,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3901,10 +3901,10 @@ Grailbird.data.tweets_2013_01 = "entities" : { "user_mentions" : [ { "name" : "Matt Langer", - "screen_name" : "mattlanger", + "screen_name" : "MattLanger", "indices" : [ 0, 11 ], - "id_str" : "14606202", - "id" : 14606202 + "id_str" : "1039572454761357312", + "id" : 1039572454761357312 }, { "name" : "Marco Arment", "screen_name" : "marcoarment", @@ -3916,16 +3916,11 @@ Grailbird.data.tweets_2013_01 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "287626809435095041", "geo" : { }, "id_str" : "287715561004216321", - "in_reply_to_user_id" : 14606202, "text" : "@mattlanger @marcoarment Buy one of those silicone roller things. Or mash it like everyone else said. Both work well enough.", "id" : 287715561004216321, - "in_reply_to_status_id" : 287626809435095041, "created_at" : "2013-01-06 00:21:49 +0000", - "in_reply_to_screen_name" : "mattlanger", - "in_reply_to_user_id_str" : "14606202", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -3939,7 +3934,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3978,7 +3973,7 @@ Grailbird.data.tweets_2013_01 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "atebits", + "name" : "AteBits.com", "screen_name" : "atebits", "indices" : [ 12, 20 ], "id_str" : "11178592", @@ -4099,7 +4094,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4132,7 +4127,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4313,7 +4308,7 @@ Grailbird.data.tweets_2013_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -4340,7 +4335,7 @@ Grailbird.data.tweets_2013_01 = "id" : 287043930107805696, "created_at" : "2013-01-04 03:53:00 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2013_02.js b/public/tweets/data/js/tweets/2013_02.js index c022b35..72053cf 100755 --- a/public/tweets/data/js/tweets/2013_02.js +++ b/public/tweets/data/js/tweets/2013_02.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2013_02 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Picnic Coffee", @@ -36,7 +36,7 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Leatherman", + "name" : "Zach IT IS OCTOBER Leatherman", "screen_name" : "zachleat", "indices" : [ 0, 9 ], "id_str" : "96383", @@ -302,7 +302,7 @@ Grailbird.data.tweets_2013_02 = "id_str" : "306594714843496448", "text" : "RT @wwwtxt: How much of a 3D printer might be printed by a 3D printer? Could it print a robot to assemble the new 3D printer and another ...", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -336,7 +336,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "iApologist", @@ -375,7 +375,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -408,7 +408,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Yukihiro Matsumoto", @@ -459,7 +459,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -514,7 +514,7 @@ Grailbird.data.tweets_2013_02 = "id_str" : "304514118289854464", "text" : "RT @PiCNiC_Coffee: Photo: Once again it\u2019s on \u2014- PiCNiC Too. http:\/\/t.co\/yMn6Th90se", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -553,10 +553,10 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -570,7 +570,7 @@ Grailbird.data.tweets_2013_02 = "id_str" : "304436043132841985", "text" : "RT @JimRoepcke: I\u2019m currently available for iOS development projects and mentoring. Please RT, thanks!", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -583,7 +583,7 @@ Grailbird.data.tweets_2013_02 = "id" : 304323209019392000, "created_at" : "2013-02-20 20:14:41 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -604,7 +604,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -637,7 +637,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GitHub API", @@ -665,7 +665,7 @@ Grailbird.data.tweets_2013_02 = "id_str" : "303568400939106304", "text" : "RT @GitHubAPI: @_sjs The API Changes blog: http:\/\/t.co\/Ytf5NkiA", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -715,7 +715,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GitHub API", @@ -748,7 +748,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GitHub", @@ -851,7 +851,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Judd Vinet", @@ -925,7 +925,7 @@ Grailbird.data.tweets_2013_02 = "id_str" : "198093", "id" : 198093 }, { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 14, 27 ], "id_str" : "11973362", @@ -1045,7 +1045,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "2%Jazz Coffee", @@ -1084,7 +1084,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -1213,7 +1213,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Wynn Netherland", @@ -1251,7 +1251,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Wynn Netherland", @@ -1381,7 +1381,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -1414,7 +1414,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -1447,10 +1447,10 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -1477,7 +1477,7 @@ Grailbird.data.tweets_2013_02 = "id" : 294501215033761793, "created_at" : "2013-01-24 17:45:35 +0000", "user" : { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", @@ -1700,7 +1700,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1722,7 +1722,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -1755,10 +1755,10 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1788,10 +1788,10 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1821,7 +1821,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "1Password", @@ -1854,7 +1854,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -1893,7 +1893,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -1938,7 +1938,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -1971,7 +1971,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1993,7 +1993,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mike McGally", @@ -2061,7 +2061,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -2097,7 +2097,7 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2130,7 +2130,7 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2160,7 +2160,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -2177,7 +2177,7 @@ Grailbird.data.tweets_2013_02 = "id_str" : "298968684586729473", "text" : "RT @pdenya: The Developer Cycle:\n1) \u201CWhoever built this is an asshole\u201D\n2) \u201CDammit! I\u2019m the asshole!\u201D", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2211,7 +2211,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -2250,7 +2250,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -2325,11 +2325,11 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tim Oxley", + "name" : "Tim Oxley (new: @timkevinoxley)", "screen_name" : "secoif", "indices" : [ 0, 7 ], - "id_str" : "17609423", - "id" : 17609423 + "id_str" : "1050328477486919680", + "id" : 1050328477486919680 }, { "name" : "HBO", "screen_name" : "HBO", @@ -2349,7 +2349,7 @@ Grailbird.data.tweets_2013_02 = "id" : 298705422364332032, "in_reply_to_status_id" : 298704388313210880, "created_at" : "2013-02-05 08:11:37 +0000", - "in_reply_to_screen_name" : "secoif", + "in_reply_to_screen_name" : "timkevinoxley", "in_reply_to_user_id_str" : "17609423", "user" : { "name" : "Sami Samhuri", @@ -2364,11 +2364,11 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tim Oxley", + "name" : "Tim Oxley (new: @timkevinoxley)", "screen_name" : "secoif", "indices" : [ 0, 7 ], - "id_str" : "17609423", - "id" : 17609423 + "id_str" : "1050328477486919680", + "id" : 1050328477486919680 }, { "name" : "HBO", "screen_name" : "HBO", @@ -2388,7 +2388,7 @@ Grailbird.data.tweets_2013_02 = "id" : 298703103241367552, "in_reply_to_status_id" : 298699812671479808, "created_at" : "2013-02-05 08:02:24 +0000", - "in_reply_to_screen_name" : "secoif", + "in_reply_to_screen_name" : "timkevinoxley", "in_reply_to_user_id_str" : "17609423", "user" : { "name" : "Sami Samhuri", @@ -2403,11 +2403,11 @@ Grailbird.data.tweets_2013_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tim Oxley", + "name" : "Tim Oxley (new: @timkevinoxley)", "screen_name" : "secoif", "indices" : [ 0, 7 ], - "id_str" : "17609423", - "id" : 17609423 + "id_str" : "1050328477486919680", + "id" : 1050328477486919680 }, { "name" : "HBO", "screen_name" : "HBO", @@ -2427,7 +2427,7 @@ Grailbird.data.tweets_2013_02 = "id" : 298702599580954625, "in_reply_to_status_id" : 298699812671479808, "created_at" : "2013-02-05 08:00:24 +0000", - "in_reply_to_screen_name" : "secoif", + "in_reply_to_screen_name" : "timkevinoxley", "in_reply_to_user_id_str" : "17609423", "user" : { "name" : "Sami Samhuri", @@ -2589,7 +2589,7 @@ Grailbird.data.tweets_2013_02 = "screen_name" : "elagerway", "protected" : false, "id_str" : "3436771", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972236246876499968\/flU5BOYy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1028330762175635456\/XTSewVmB_normal.jpg", "id" : 3436771, "verified" : false } @@ -2687,7 +2687,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kent Fenwick \uD83D\uDCC8", @@ -2720,7 +2720,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2742,7 +2742,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -2808,7 +2808,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "EricAlanDyck", @@ -2841,7 +2841,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -2874,7 +2874,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -2912,7 +2912,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tap for Tap", @@ -2945,7 +2945,7 @@ Grailbird.data.tweets_2013_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", diff --git a/public/tweets/data/js/tweets/2013_03.js b/public/tweets/data/js/tweets/2013_03.js index a39677f..2633dab 100755 --- a/public/tweets/data/js/tweets/2013_03.js +++ b/public/tweets/data/js/tweets/2013_03.js @@ -22,7 +22,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Caswell", @@ -73,7 +73,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Wynn Netherland", @@ -106,7 +106,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Wynn Netherland", @@ -133,7 +133,7 @@ Grailbird.data.tweets_2013_03 = "id_str" : "317343282030080000", "text" : "RT @pengwynn: zsh URL quote magic is magical: http:\/\/t.co\/NMEHHenRNa Put this in your .zshrc: http:\/\/t.co\/lBEBu7lyvE", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -177,7 +177,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -238,10 +238,10 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -271,10 +271,10 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -304,10 +304,10 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -342,10 +342,10 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -440,7 +440,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -530,7 +530,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Scott Hanselman", @@ -547,7 +547,7 @@ Grailbird.data.tweets_2013_03 = "id_str" : "314801324782931969", "text" : "RT @shanselman: The Internet needs a timeout to go its\nroom to think about what it's done.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tweetlogix.com\" rel=\"nofollow\"\u003ETweetlogix\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/onloft.com\/tweetlogix\" rel=\"nofollow\"\u003ETweetlogix\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -598,7 +598,7 @@ Grailbird.data.tweets_2013_03 = "id_str" : "314787203706400770", "text" : "RT @tomdale: Good morning everyone!\n*opens HN and Twitter*\nNOPE\n*closes HN and Twitter, throws computer out window*", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -635,7 +635,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "indices" : [ 3, 10 ], "id_str" : "8675502", @@ -672,7 +672,7 @@ Grailbird.data.tweets_2013_03 = "id" : 314757691539091458, "created_at" : "2013-03-21 15:17:36 +0000", "user" : { - "name" : "Randy Luecke", + "name" : "Randy Luecke\uD83E\uDD26\uD83C\uDFFC\u200D\u2642\uFE0F", "screen_name" : "me1000", "protected" : false, "id_str" : "8675502", @@ -872,7 +872,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ANTIREZ", @@ -923,7 +923,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -940,7 +940,7 @@ Grailbird.data.tweets_2013_03 = "id_str" : "314413898772135939", "text" : "RT @wwwtxt: I want my old news reader back, please, can I have my news reader back? \u262F93OCT", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1084,7 +1084,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "[\u00A3\u20AC\u00A5\u20A9\u00A4o:-)]. \\(\u2022_ \u2022", @@ -1120,7 +1120,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1153,7 +1153,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1211,7 +1211,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Colt45", @@ -1293,7 +1293,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Yannick Croissant", @@ -1406,7 +1406,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -1440,7 +1440,7 @@ Grailbird.data.tweets_2013_03 = "id_str" : "312289090143936514", "text" : "RT @marcoarment: I\u2019m calling on @reederapp and @blackpixel to make a simple change to their RSS readers: http:\/\/t.co\/jh2cFAR0tb", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reeder", @@ -1474,7 +1474,7 @@ Grailbird.data.tweets_2013_03 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1005850629028352000\/jHsNM3wM_normal.jpg", "id" : 14231571, "verified" : true } @@ -1491,7 +1491,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -1524,7 +1524,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GitHub", @@ -1586,7 +1586,7 @@ Grailbird.data.tweets_2013_03 = "screen_name" : "_DavidSmith", "protected" : false, "id_str" : "46800814", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/458691881669378048\/8NnA3UpD_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1016557703978717184\/lA-NUwdm_normal.jpg", "id" : 46800814, "verified" : true } @@ -1606,7 +1606,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Pinboard", + "name" : "Dork Money Defeats Dark Money", "screen_name" : "Pinboard", "indices" : [ 3, 12 ], "id_str" : "55525953", @@ -1633,7 +1633,7 @@ Grailbird.data.tweets_2013_03 = "id" : 311993204557877249, "created_at" : "2013-03-14 00:12:31 +0000", "user" : { - "name" : "Pinboard", + "name" : "Dork Money Defeats Dark Money", "screen_name" : "Pinboard", "protected" : false, "id_str" : "55525953", @@ -1704,7 +1704,7 @@ Grailbird.data.tweets_2013_03 = "id_str" : "312031069148946432", "text" : "RT @siracusa: 1. Drive competing services out of business with a free service (subsidized by a profitable product).\n2. Cancel free servi ...", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1738,7 +1738,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benjamin Fox", @@ -1799,7 +1799,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -1884,7 +1884,7 @@ Grailbird.data.tweets_2013_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 3, 15 ], "id_str" : "5905672", @@ -1935,11 +1935,11 @@ Grailbird.data.tweets_2013_03 = "id" : 311334268016148480, "created_at" : "2013-03-12 04:34:08 +0000", "user" : { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "protected" : false, "id_str" : "5905672", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/971149489892245505\/ziLe5C8m_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1026600271307321344\/BBVmL1Hb_normal.jpg", "id" : 5905672, "verified" : true } @@ -2011,10 +2011,10 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2044,10 +2044,10 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2077,10 +2077,10 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2110,10 +2110,10 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "the second hardest problem in computer science", + "name" : "std::mem::transmute_copy(steve, lol)", "screen_name" : "steveklabnik", "indices" : [ 3, 16 ], "id_str" : "22386062", @@ -2150,11 +2150,11 @@ Grailbird.data.tweets_2013_03 = "id" : 311186820950020099, "created_at" : "2013-03-11 18:48:14 +0000", "user" : { - "name" : "the second hardest problem in computer science", + "name" : "std::mem::transmute_copy(steve, lol)", "screen_name" : "steveklabnik", "protected" : false, "id_str" : "22386062", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/906224108547002368\/31Zsh018_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1014189595418857472\/aE6vph7N_normal.jpg", "id" : 22386062, "verified" : false } @@ -2355,10 +2355,10 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2388,7 +2388,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -2405,7 +2405,7 @@ Grailbird.data.tweets_2013_03 = "id_str" : "310129725597175808", "text" : "RT @pdenya: Vine should drop the sound and turn the videos into gifs:\n- I could see them from tweetbot\n- I wouldn\u2019t have to listen to you", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2472,7 +2472,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -2559,7 +2559,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "emacs", @@ -2592,7 +2592,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Erich Menge \uD83C\uDF78", @@ -3000,7 +3000,7 @@ Grailbird.data.tweets_2013_03 = "id_str" : "309512200857481216", "text" : "RT @siracusa: Life was such a wheel that no technology could stand upon it for long\u2026 http:\/\/t.co\/5mAK1fYEp6 http:\/\/t.co\/I1u4f0PH6C", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3044,7 +3044,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3104,10 +3104,10 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Letterboxd", + "name" : "LetterBOOxd \uD83D\uDC7B", "screen_name" : "letterboxd", "indices" : [ 28, 39 ], "id_str" : "26981455", @@ -3336,7 +3336,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3358,7 +3358,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -3380,7 +3380,7 @@ Grailbird.data.tweets_2013_03 = "id_str" : "307624931049480192", "text" : "RT @pdenya: Unstoppable: http:\/\/t.co\/vjzFJ3xHv5", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3419,7 +3419,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GitHub API", @@ -3452,7 +3452,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daine Trinidad", @@ -3501,7 +3501,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -3534,7 +3534,7 @@ Grailbird.data.tweets_2013_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", diff --git a/public/tweets/data/js/tweets/2013_04.js b/public/tweets/data/js/tweets/2013_04.js index abef60d..3916f40 100755 --- a/public/tweets/data/js/tweets/2013_04.js +++ b/public/tweets/data/js/tweets/2013_04.js @@ -9,7 +9,7 @@ Grailbird.data.tweets_2013_04 = "id_str" : "1260231", "id" : 1260231 }, { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 11, 24 ], "id_str" : "11973362", @@ -39,7 +39,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guillermo Rauch", @@ -72,7 +72,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guillermo Rauch", @@ -105,7 +105,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "The Node", @@ -156,7 +156,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ilya Grigorik", @@ -217,10 +217,10 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -250,10 +250,10 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -305,7 +305,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -495,10 +495,10 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Oscar Godson", + "name" : "Oscar Godson (\uD55C\uAE00 \uD559\uC0DD)", "screen_name" : "oscargodson", "indices" : [ 3, 15 ], "id_str" : "10138412", @@ -525,7 +525,7 @@ Grailbird.data.tweets_2013_04 = "id" : 324993266120536064, "created_at" : "2013-04-18 21:10:07 +0000", "user" : { - "name" : "Oscar Godson", + "name" : "Oscar Godson (\uD55C\uAE00 \uD559\uC0DD)", "screen_name" : "oscargodson", "protected" : false, "id_str" : "10138412", @@ -590,14 +590,14 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tim Oxley", + "name" : "Tim Oxley (new: @timkevinoxley)", "screen_name" : "secoif", "indices" : [ 3, 10 ], - "id_str" : "17609423", - "id" : 17609423 + "id_str" : "1050328477486919680", + "id" : 1050328477486919680 } ], "media" : [ ], "hashtags" : [ ], @@ -620,8 +620,8 @@ Grailbird.data.tweets_2013_04 = "id" : 324198722412093440, "created_at" : "2013-04-16 16:32:53 +0000", "user" : { - "name" : "Tim Oxley", - "screen_name" : "secoif", + "name" : "Tim Kevin Oxley", + "screen_name" : "timkevinoxley", "protected" : false, "id_str" : "17609423", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/671226206033829889\/6bqxgFJA_normal.png", @@ -731,7 +731,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Colt45", @@ -759,7 +759,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ilya Grigorik", @@ -853,7 +853,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -886,7 +886,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -919,7 +919,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -996,7 +996,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -1029,7 +1029,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeremy Kahn", @@ -1063,7 +1063,7 @@ Grailbird.data.tweets_2013_04 = "screen_name" : "jeremyckahn", "protected" : false, "id_str" : "24949617", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/844582252747149312\/NDEcfS7R_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/998547818812923904\/7MeJxc0j_normal.jpg", "id" : 24949617, "verified" : false } @@ -1080,7 +1080,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Colt45", @@ -1114,10 +1114,10 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "indices" : [ 3, 9 ], "id_str" : "1919231", @@ -1149,7 +1149,7 @@ Grailbird.data.tweets_2013_04 = "id" : 322087418419351552, "created_at" : "2013-04-10 20:43:19 +0000", "user" : { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "protected" : false, "id_str" : "1919231", @@ -1170,10 +1170,10 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "radical al-Jabraist", + "name" : "division by zero (non-Riemannian)", "screen_name" : "mathpunk", "indices" : [ 3, 12 ], "id_str" : "7621482", @@ -1200,7 +1200,7 @@ Grailbird.data.tweets_2013_04 = "id" : 322062896148410368, "created_at" : "2013-04-10 19:05:52 +0000", "user" : { - "name" : "radical al-Jabraist", + "name" : "division by zero (non-Riemannian)", "screen_name" : "mathpunk", "protected" : false, "id_str" : "7621482", @@ -1221,7 +1221,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -1243,7 +1243,7 @@ Grailbird.data.tweets_2013_04 = "id_str" : "322075508009476096", "text" : "RT @siracusa: Related developer shame: http:\/\/t.co\/DRpnrtvvAz", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1282,7 +1282,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daine Trinidad", @@ -1315,7 +1315,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daine Trinidad", @@ -1349,7 +1349,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daine Trinidad", @@ -1377,7 +1377,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -1410,7 +1410,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -1443,7 +1443,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Colt45", @@ -1493,7 +1493,7 @@ Grailbird.data.tweets_2013_04 = "id_str" : "320989259039404032", "text" : "RT @felixge: Looking for an iOS dev to pair with me on some fun open source stuff! https:\/\/t.co\/GMT2CRmW6o - plz RT.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1582,7 +1582,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -1615,7 +1615,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -1648,7 +1648,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -1681,7 +1681,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -1764,7 +1764,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -1781,7 +1781,7 @@ Grailbird.data.tweets_2013_04 = "id_str" : "320189774637985793", "text" : "RT @wwwtxt: I can type faster than I can use a stupid mouse. Maybe I'm just uncoordinated. \u262F93NOV", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1815,7 +1815,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "App.net", @@ -1854,7 +1854,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -1905,7 +1905,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Wynn Netherland", @@ -1938,7 +1938,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Wynn Netherland", @@ -2027,7 +2027,7 @@ Grailbird.data.tweets_2013_04 = "id_str" : "319837338199023616", "text" : "RT @LodsysLLC: Thinking of suing @siracusa to make him start doing Hypercritical again. Our lawyers say it\u2019s as legit as every other law ...", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -2100,7 +2100,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -2138,7 +2138,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -2147,7 +2147,7 @@ Grailbird.data.tweets_2013_04 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -2177,10 +2177,10 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2216,10 +2216,10 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2255,7 +2255,7 @@ Grailbird.data.tweets_2013_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", diff --git a/public/tweets/data/js/tweets/2013_05.js b/public/tweets/data/js/tweets/2013_05.js index 91769da..38181df 100755 --- a/public/tweets/data/js/tweets/2013_05.js +++ b/public/tweets/data/js/tweets/2013_05.js @@ -85,7 +85,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jacob Schwartz", @@ -136,7 +136,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -191,10 +191,10 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -227,7 +227,7 @@ Grailbird.data.tweets_2013_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -257,7 +257,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeremiah Lee", @@ -320,10 +320,10 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -359,7 +359,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dalai Lama In Bed", @@ -410,7 +410,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -483,7 +483,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Command Line Magic", @@ -534,7 +534,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mikeal Rogers", @@ -557,7 +557,7 @@ Grailbird.data.tweets_2013_05 = "id_str" : "335504866631876608", "text" : "RT @mikeal: I think @polotek is the Ralph Nadar of node.js. Mad at everyone but hasn\u2019t published anything in years :) Also happens to be ri\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -619,7 +619,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -658,7 +658,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "decktonic", @@ -697,7 +697,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -725,7 +725,7 @@ Grailbird.data.tweets_2013_05 = "id_str" : "334719416950456320", "text" : "RT @siracusa: Apple's new Objective-C-to-JavaScript bridge in WebKit: http:\/\/t.co\/BtWyYfreyI (via @apike)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Allen Pike", @@ -792,10 +792,10 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -825,10 +825,10 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -920,7 +920,7 @@ Grailbird.data.tweets_2013_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -953,7 +953,7 @@ Grailbird.data.tweets_2013_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -983,10 +983,10 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1014,10 +1014,10 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1045,10 +1045,10 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "I'd Like to Add you to My Professional Network on", + "name" : "brianloveswords", "screen_name" : "brianloveswords", "indices" : [ 0, 16 ], "id_str" : "17177251", @@ -1084,7 +1084,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "EricAlanDyck", @@ -1117,7 +1117,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "EricAlanDyck", @@ -1262,7 +1262,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marc Harter", @@ -1300,7 +1300,7 @@ Grailbird.data.tweets_2013_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marc Harter", diff --git a/public/tweets/data/js/tweets/2013_06.js b/public/tweets/data/js/tweets/2013_06.js index 44a6dc3..0abea74 100755 --- a/public/tweets/data/js/tweets/2013_06.js +++ b/public/tweets/data/js/tweets/2013_06.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2013_06 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fbina PP", @@ -33,7 +33,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Irmi Salles", @@ -139,7 +139,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Scout", @@ -248,7 +248,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Todd Dunlop", @@ -358,7 +358,7 @@ Grailbird.data.tweets_2013_06 = "id_str" : "17088322", "id" : 17088322 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 16, 27 ], "id_str" : "894911", @@ -506,7 +506,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -539,7 +539,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -599,7 +599,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rackspace", @@ -676,7 +676,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Caswell", @@ -720,7 +720,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -753,7 +753,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -786,7 +786,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -819,10 +819,10 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -857,10 +857,10 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -890,10 +890,10 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -923,7 +923,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -945,7 +945,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mahyar Mj", @@ -978,7 +978,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -1011,7 +1011,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1041,7 +1041,7 @@ Grailbird.data.tweets_2013_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -1076,7 +1076,7 @@ Grailbird.data.tweets_2013_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kris & Brake", diff --git a/public/tweets/data/js/tweets/2013_07.js b/public/tweets/data/js/tweets/2013_07.js index 9021ce0..77d7e87 100755 --- a/public/tweets/data/js/tweets/2013_07.js +++ b/public/tweets/data/js/tweets/2013_07.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2013_07 = [ { - "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Android Holo\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Windows\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -9,7 +9,7 @@ Grailbird.data.tweets_2013_07 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 10, 22 ], "id_str" : "5905672", @@ -42,7 +42,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Stephen Caudill", @@ -87,7 +87,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -138,7 +138,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -160,7 +160,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -191,7 +191,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -213,7 +213,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -240,7 +240,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Stuffanie", @@ -291,7 +291,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -340,7 +340,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guillermo Rauch", @@ -396,7 +396,7 @@ Grailbird.data.tweets_2013_07 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029230542716264448\/LgLb--Of_normal.jpg", "id" : 15540222, "verified" : true } @@ -413,7 +413,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guillermo Rauch", @@ -447,7 +447,7 @@ Grailbird.data.tweets_2013_07 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029230542716264448\/LgLb--Of_normal.jpg", "id" : 15540222, "verified" : true } @@ -486,7 +486,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guillermo Rauch", @@ -520,7 +520,7 @@ Grailbird.data.tweets_2013_07 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029230542716264448\/LgLb--Of_normal.jpg", "id" : 15540222, "verified" : true } @@ -537,7 +537,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -610,7 +610,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joe McCullough", @@ -643,7 +643,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -660,7 +660,7 @@ Grailbird.data.tweets_2013_07 = "id_str" : "358309097650655232", "text" : "RT @chockenberry: I just sent an email to Phil Schiller about the Dev Centers. If you're affected by the downtime, let him know:\n\nhttps:\/\/t\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -726,7 +726,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Command Line Magic", @@ -764,10 +764,10 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "F.O.G.U.S", + "name" : "Folog", "screen_name" : "fogus", "indices" : [ 0, 6 ], "id_str" : "14375110", @@ -803,15 +803,9 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Oleg Shaldybin", - "screen_name" : "olegshaldybin", - "indices" : [ 0, 14 ], - "id_str" : "9156692", - "id" : 9156692 - }, { "name" : "Mark Kolich", "screen_name" : "markkolich", "indices" : [ 15, 26 ], @@ -842,7 +836,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -893,7 +887,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mobile17", @@ -944,7 +938,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Instapaper", @@ -977,7 +971,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Colt45", @@ -1005,7 +999,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Colt45", @@ -1033,7 +1027,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Colt45", @@ -1061,10 +1055,10 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1100,10 +1094,10 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -1128,7 +1122,7 @@ Grailbird.data.tweets_2013_07 = "id_str" : "355532276869763075", "text" : "RT @JimRoepcke: YES! @DrawQuest 2.0 has launched! This is a huge update, go get it! https:\/\/t.co\/VQ2XQvHX91", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "DrawQuest", @@ -1152,7 +1146,7 @@ Grailbird.data.tweets_2013_07 = "id" : 355354026575011843, "created_at" : "2013-07-11 15:52:56 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -1173,7 +1167,7 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Account has moved!", @@ -1214,10 +1208,10 @@ Grailbird.data.tweets_2013_07 = "created_at" : "2013-07-09 16:03:15 +0000", "user" : { "name" : "paolo f.", - "screen_name" : "0x00A", + "screen_name" : "hxoht", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/936582635010314240\/Mf7nJiWc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1048105602029944832\/8gWKHraT_normal.jpg", "id" : 95938827, "verified" : false } @@ -1265,10 +1259,10 @@ Grailbird.data.tweets_2013_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ged Maheux", + "name" : "Ged-quatch Maheux", "screen_name" : "gedeon", "indices" : [ 0, 7 ], "id_str" : "38003", diff --git a/public/tweets/data/js/tweets/2013_08.js b/public/tweets/data/js/tweets/2013_08.js index 6fdbff7..7740cdc 100755 --- a/public/tweets/data/js/tweets/2013_08.js +++ b/public/tweets/data/js/tweets/2013_08.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2013_08 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reeder", @@ -51,10 +51,10 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -84,7 +84,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daniel Jalkut", @@ -101,7 +101,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "373660347443318784", "text" : "RT @danielpunkass: The secret to Twitter is always take the high road and avoid inflammatory comments.\n\nAfter you\u2019ve had your say.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -162,7 +162,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse iOS", @@ -179,7 +179,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "373633234476601344", "text" : "RT @Horse_iOS: git reset head --hard -f origin master --head --reallyhard --just fucking undo the stupid shit i did", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -213,7 +213,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sebastiaan de With", @@ -269,7 +269,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -349,7 +349,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -400,7 +400,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -461,7 +461,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -488,7 +488,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -505,7 +505,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "372066602688069632", "text" : "RT @wwwtxt: I hope Madonna had fun. She had her breasts groped three times by male dancers, plus she had them running hands up under her dr\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -539,7 +539,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -556,7 +556,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "372066311615967232", "text" : "RT @wwwtxt: Was it just me or did the VMAs last night suck? \u262F92SEP", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -590,7 +590,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Heilmann", @@ -634,7 +634,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jacqui Cheng", @@ -685,7 +685,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jacqui Cheng", @@ -736,10 +736,10 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -769,10 +769,10 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -802,10 +802,10 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Neven Mrgan", + "name" : "NE7EN", "screen_name" : "mrgan", "indices" : [ 3, 9 ], "id_str" : "35293", @@ -822,7 +822,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "371484466243309568", "text" : "RT @mrgan: My best #blackbar tip: if you get seriously stuck, loudly and angrily declare that this is freakin' IMPOSSIBLE. You'll immediate\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -838,11 +838,11 @@ Grailbird.data.tweets_2013_08 = "id" : 371478284736790529, "created_at" : "2013-08-25 03:44:59 +0000", "user" : { - "name" : "Neven Mrgan", + "name" : "NE7EN", "screen_name" : "mrgan", "protected" : false, "id_str" : "35293", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925719886457847808\/Vuf2uyPY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046808674239315972\/zdrGiEr3_normal.jpg", "id" : 35293, "verified" : true } @@ -859,7 +859,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daine Trinidad", @@ -902,7 +902,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "dondi", @@ -947,7 +947,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "dondi", @@ -992,7 +992,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "dondi", @@ -1042,7 +1042,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Charlie Robbins", @@ -1075,7 +1075,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -1108,7 +1108,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Timothy B. Lee", @@ -1117,7 +1117,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "14165170", "id" : 14165170 }, { - "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Pumpkin Fright\uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 12, 20 ], "id_str" : "11375732", @@ -1147,7 +1147,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -1164,7 +1164,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "370947912705900545", "text" : "RT @wwwtxt: I reckon the best person to play Batman is Tom Selleck. He's tall, muscular, and can play the part of a playboy very well. \u262F89M\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1198,7 +1198,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -1215,7 +1215,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "370947796532084736", "text" : "RT @wwwtxt: Michael Keaton. A guy with no chin and the voice of Mickey Mouse says \u201CI'm Batman\u201D and the bad guy is supposed to be scared? \u262F8\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1249,7 +1249,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -1282,7 +1282,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Griffin", @@ -1328,7 +1328,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -1361,7 +1361,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "dondi", @@ -1406,7 +1406,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "notb", @@ -1457,7 +1457,7 @@ Grailbird.data.tweets_2013_08 = "screen_name" : "brycebot", "protected" : false, "id_str" : "28501846", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/905899227695300608\/F0Gjg7VL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/988678767030820864\/_sfgD_lP_normal.jpg", "id" : 28501846, "verified" : false } @@ -1474,7 +1474,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Nathan Rajlich", @@ -1508,7 +1508,7 @@ Grailbird.data.tweets_2013_08 = "screen_name" : "TooTallNate", "protected" : false, "id_str" : "277724842", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/931234424468803584\/8JZJj4I1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1028344002787958785\/sTRT7xfP_normal.jpg", "id" : 277724842, "verified" : false } @@ -1525,16 +1525,16 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", "id" : 29255412 }, { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 15, 19 ], "id_str" : "8038312", @@ -1569,7 +1569,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -1602,7 +1602,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -1635,10 +1635,10 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Neven Mrgan", + "name" : "NE7EN", "screen_name" : "mrgan", "indices" : [ 0, 6 ], "id_str" : "35293", @@ -1668,7 +1668,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -1701,7 +1701,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -1734,7 +1734,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -1751,7 +1751,7 @@ Grailbird.data.tweets_2013_08 = "id_str" : "369914870554050560", "text" : "RT @bryan_kyle: How to Quickly Open a Site in 1Password on iOS - 1Password for iOS by Agilebits is a great app that you can... http:\/\/t.co\/\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1790,7 +1790,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -1823,10 +1823,10 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1856,10 +1856,10 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "atebits", + "name" : "AteBits.com", "screen_name" : "atebits", "indices" : [ 34, 42 ], "id_str" : "11178592", @@ -1915,7 +1915,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1947,7 +1947,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -2008,7 +2008,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jacob Schwartz", @@ -2053,7 +2053,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Cooper", @@ -2124,7 +2124,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Panic Inc", @@ -2157,7 +2157,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Panic Inc", @@ -2188,7 +2188,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -2239,7 +2239,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -2272,7 +2272,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -2305,7 +2305,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -2338,7 +2338,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Jordens", @@ -2377,7 +2377,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ajHecky", @@ -2410,7 +2410,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ajHecky", @@ -2443,10 +2443,10 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2476,7 +2476,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Instapaper", @@ -2507,7 +2507,7 @@ Grailbird.data.tweets_2013_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", diff --git a/public/tweets/data/js/tweets/2013_09.js b/public/tweets/data/js/tweets/2013_09.js index 4f1574f..33da7cd 100755 --- a/public/tweets/data/js/tweets/2013_09.js +++ b/public/tweets/data/js/tweets/2013_09.js @@ -1,9 +1,9 @@ Grailbird.data.tweets_2013_09 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jessie", + "name" : "Jessie Char", "screen_name" : "jessiechar", "indices" : [ 3, 14 ], "id_str" : "8552602", @@ -30,11 +30,11 @@ Grailbird.data.tweets_2013_09 = "id" : 384807382112415745, "created_at" : "2013-09-30 22:30:03 +0000", "user" : { - "name" : "Jessie", + "name" : "Jessie Char", "screen_name" : "jessiechar", "protected" : false, "id_str" : "8552602", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855493106820464640\/A2TA_K1V_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1035751905790545920\/lFApOcO__normal.jpg", "id" : 8552602, "verified" : true } @@ -51,7 +51,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -73,7 +73,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -95,10 +95,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -128,10 +128,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -161,10 +161,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -194,7 +194,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -227,7 +227,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Scout", @@ -320,7 +320,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -358,7 +358,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -391,7 +391,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -424,7 +424,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Loren Brichter", @@ -457,7 +457,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Loren Brichter", @@ -485,7 +485,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Federico Viticci", @@ -518,7 +518,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "CTV News VI", @@ -572,7 +572,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -597,7 +597,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dieter Bohn", @@ -658,7 +658,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -691,7 +691,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fraser Speirs", @@ -700,7 +700,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "644603", "id" : 644603 }, { - "name" : "Rich Siegel", + "name" : "Down Here, We All Float, Georgie", "screen_name" : "siegel", "indices" : [ 14, 21 ], "id_str" : "8021722", @@ -730,7 +730,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dionysis Zindros", @@ -769,7 +769,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -802,7 +802,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -835,7 +835,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -899,7 +899,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Anderson", @@ -908,7 +908,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "110233945", "id" : 110233945 }, { - "name" : "MD", + "name" : "No Comment", "screen_name" : "drance", "indices" : [ 20, 27 ], "id_str" : "7440462", @@ -922,10 +922,10 @@ Grailbird.data.tweets_2013_09 = "id_str" : "383394437310595073", "text" : "RT @SimplyImagined: @drance If I use NSInteger or CGFloat I don't want to think about the underlying architecture unless absolutely necessa\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "MD", + "name" : "No Comment", "screen_name" : "drance", "indices" : [ 0, 7 ], "id_str" : "7440462", @@ -967,7 +967,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "TechCrunch Onion", @@ -1018,7 +1018,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Clayton Morris", @@ -1051,7 +1051,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven Frank", @@ -1084,7 +1084,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Grant Custer", @@ -1120,7 +1120,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Dalrymple", @@ -1153,7 +1153,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Instapaper", @@ -1218,7 +1218,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven Levy", @@ -1257,7 +1257,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "InstapaperHelp", @@ -1290,7 +1290,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "InstapaperHelp", @@ -1357,7 +1357,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Diego Perini", @@ -1408,7 +1408,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rene Ritchie", @@ -1447,7 +1447,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -1515,7 +1515,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "InstapaperHelp", @@ -1582,7 +1582,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -1615,7 +1615,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "DHH", @@ -1648,7 +1648,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Phillips Beer", @@ -1687,7 +1687,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1709,7 +1709,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -1742,7 +1742,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Smith", @@ -1806,7 +1806,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Parker", @@ -1857,7 +1857,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Parker", @@ -1901,7 +1901,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse iOS", @@ -1918,7 +1918,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "381232511956680705", "text" : "RT @Horse_iOS: As of 4:57pm PST today, two days after its release, iOS 7 is now installed on every iPhone and iPad in the entire world", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1952,7 +1952,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -1985,7 +1985,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Abdel Ibrahim", @@ -2061,10 +2061,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2094,7 +2094,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -2132,10 +2132,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2168,7 +2168,7 @@ Grailbird.data.tweets_2013_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2208,10 +2208,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2241,7 +2241,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Todd Dunlop", @@ -2279,7 +2279,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Stamatiou \uD83D\uDCF7", @@ -2351,10 +2351,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2384,10 +2384,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2417,10 +2417,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2450,10 +2450,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2486,7 +2486,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -2519,7 +2519,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -2587,7 +2587,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -2609,7 +2609,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "380837546130825216", "text" : "RT @nerdtalker: It\u2019s a lot of files: http:\/\/t.co\/qDsn8AoOzw", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2648,7 +2648,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -2665,7 +2665,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "380837533812146176", "text" : "RT @nerdtalker: So I downloaded all of the .ipsw restore images that Apple makes available online, all in all 228 GB.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2699,7 +2699,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -2732,11 +2732,11 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 0, 14 ], "id_str" : "1236101", "id" : 1236101 @@ -2753,7 +2753,7 @@ Grailbird.data.tweets_2013_09 = "id" : 380798077310730240, "in_reply_to_status_id" : 380792977293312000, "created_at" : "2013-09-19 20:58:31 +0000", - "in_reply_to_screen_name" : "BenedictEvans", + "in_reply_to_screen_name" : "benedictevans", "in_reply_to_user_id_str" : "1236101", "user" : { "name" : "Sami Samhuri", @@ -2765,7 +2765,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -2798,7 +2798,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -2831,7 +2831,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tom Dale", @@ -2864,7 +2864,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rene Ritchie", @@ -2897,7 +2897,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rene Ritchie", @@ -2930,7 +2930,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -2963,7 +2963,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -2996,7 +2996,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -3029,7 +3029,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Federico Viticci", @@ -3074,7 +3074,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kierra Krzcuik", @@ -3125,10 +3125,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3158,17 +3158,11 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Paul Burford \uD83C\uDDEA\uD83C\uDDFA #FBPE", - "screen_name" : "pburford", - "indices" : [ 0, 9 ], - "id_str" : "155408489", - "id" : 155408489 - }, { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 10, 24 ], "id_str" : "1236101", "id" : 1236101 @@ -3177,16 +3171,11 @@ Grailbird.data.tweets_2013_09 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "380299629684076545", "geo" : { }, "id_str" : "380364914985930753", - "in_reply_to_user_id" : 155408489, "text" : "@pburford @BenedictEvans You may miss quality apps made by devs who don't rush things. I'd plan to revisit that in 3-6 months.", "id" : 380364914985930753, - "in_reply_to_status_id" : 380299629684076545, "created_at" : "2013-09-18 16:17:17 +0000", - "in_reply_to_screen_name" : "pburford", - "in_reply_to_user_id_str" : "155408489", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -3197,7 +3186,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rocksauce Studios", @@ -3230,7 +3219,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3252,7 +3241,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -3308,7 +3297,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Wildstrom", @@ -3318,7 +3307,7 @@ Grailbird.data.tweets_2013_09 = "id" : 14090245 }, { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 12, 26 ], "id_str" : "1236101", "id" : 1236101 @@ -3347,7 +3336,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3369,7 +3358,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3391,7 +3380,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -3430,7 +3419,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3462,7 +3451,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -3523,7 +3512,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rene Ritchie", @@ -3556,7 +3545,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Nathan Rajlich", @@ -3589,7 +3578,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Nathan Rajlich", @@ -3622,7 +3611,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "AJ S\u00E1nchez", @@ -3661,7 +3650,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -3678,7 +3667,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "379444376084021248", "text" : "RT @wwwtxt: Considering that prices start at $799, not including a fax modem\u2014Apple Newtons will only fit in deep pockets, in more ways than\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3712,7 +3701,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -3729,7 +3718,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "379444345528541184", "text" : "RT @wwwtxt: The MessagePad weighs less than a pound and is about the size of a videocassette. \u262F93AUG", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3763,7 +3752,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -3780,7 +3769,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "379444328424148992", "text" : "RT @wwwtxt: It seems as if everyone here in Silicon Valley is salivating over the new Apple Newton MessagePad. Not me. \u262F93AUG", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3814,7 +3803,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ilya Grigorik", @@ -3875,7 +3864,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "HTTP\/2", @@ -3900,7 +3889,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "379444229623123968", "text" : "RT @HTTP_2: We now have *three* implementations of #HTTP2 draft -06, if you include Wireshark. https:\/\/t.co\/TB3InG8r8z", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3942,7 +3931,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "AJ S\u00E1nchez", @@ -3981,7 +3970,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "AJ S\u00E1nchez", @@ -4020,10 +4009,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4053,7 +4042,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -4092,7 +4081,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Martin McKeay", @@ -4131,10 +4120,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4164,7 +4153,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Panic Inc", @@ -4219,7 +4208,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse iOS", @@ -4236,7 +4225,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "378576924802445312", "text" : "RT @Horse_iOS: Many plan to sell their iPhone 5s to upgrade to the new iPhone 5s. Demand for iPhone 5ses is high, due to their appealing pl\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4270,7 +4259,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dave Shroder", @@ -4279,7 +4268,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "61536181", "id" : 61536181 }, { - "name" : "F.O.G.U.S", + "name" : "Folog", "screen_name" : "fogus", "indices" : [ 13, 19 ], "id_str" : "14375110", @@ -4309,7 +4298,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -4348,10 +4337,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4381,7 +4370,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -4420,7 +4409,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -4458,7 +4447,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Cooper", @@ -4491,7 +4480,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "HackerNewsOnion", @@ -4542,7 +4531,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "mai ishikawa sutton", @@ -4667,7 +4656,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -4700,10 +4689,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Shaw", + "name" : "Dan Shaw \uD83C\uDF82\u2728", "screen_name" : "dshaw", "indices" : [ 0, 6 ], "id_str" : "806757", @@ -4733,7 +4722,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4755,7 +4744,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4777,7 +4766,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Federico Viticci", @@ -4810,7 +4799,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse iOS", @@ -4827,7 +4816,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "378045374180519936", "text" : "RT @Horse_iOS: As we were designing iPhone\u00A05c, we were also designing the case. We designed them together to ensure \u201Chon\u201D shows through one\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4861,7 +4850,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rico Sta. Cruz", @@ -4894,7 +4883,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rocksauce Studios", @@ -4927,7 +4916,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rocksauce Studios", @@ -4960,7 +4949,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Casey Johnston", @@ -4993,7 +4982,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -5026,7 +5015,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -5059,7 +5048,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kontra", @@ -5110,7 +5099,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -5143,7 +5132,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -5181,7 +5170,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -5214,7 +5203,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Cooper", @@ -5252,7 +5241,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ParisLemon", @@ -5307,7 +5296,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -5329,7 +5318,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "377487552220917760", "text" : "RT @nerdtalker: 64-bit A7 http:\/\/t.co\/JSwQrNHwrp", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5368,7 +5357,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ParisLemon", @@ -5402,7 +5391,7 @@ Grailbird.data.tweets_2013_09 = "screen_name" : "mgsiegler", "protected" : false, "id_str" : "652193", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981045814729392129\/VCDJBsEx_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1048613216757022720\/L6trLycD_normal.jpg", "id" : 652193, "verified" : true } @@ -5419,7 +5408,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -5436,7 +5425,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "377482346082992128", "text" : "RT @tapbot_paul: I want a refund!", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5453,7 +5442,7 @@ Grailbird.data.tweets_2013_09 = "screen_name" : "tapbot_paul", "protected" : false, "id_str" : "18247541", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849243635178778624\/JXnBOvr__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996375435234570240\/AobDpgxZ_normal.jpg", "id" : 18247541, "verified" : false } @@ -5470,7 +5459,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -5510,10 +5499,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "* # * # C H E C K I N # * # *", + "name" : "Child\u2019s Safety Cactus", "screen_name" : "dsandler", "indices" : [ 3, 12 ], "id_str" : "656863", @@ -5540,11 +5529,11 @@ Grailbird.data.tweets_2013_09 = "id" : 376201587154092032, "created_at" : "2013-09-07 04:33:42 +0000", "user" : { - "name" : "* # * # C H E C K I N # * # *", + "name" : "Child\u2019s Safety Cactus", "screen_name" : "dsandler", "protected" : false, "id_str" : "656863", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/980199258057068545\/J4Kv_nPK_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050207529148538883\/q3AFpvpx_normal.jpg", "id" : 656863, "verified" : false } @@ -5561,7 +5550,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Loren Brichter", @@ -5624,7 +5613,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -5657,11 +5646,11 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -5674,7 +5663,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "375460159192985601", "text" : "RT @BenedictEvans: So did Samsung announce a wablet, a wone or a phatch?", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5688,7 +5677,7 @@ Grailbird.data.tweets_2013_09 = "created_at" : "2013-09-04 21:44:23 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -5708,7 +5697,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -5741,7 +5730,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Domenic Denicola", @@ -5780,7 +5769,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "getify", @@ -5813,7 +5802,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -5846,7 +5835,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -5869,7 +5858,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "375103365039939585", "text" : "RT @siracusa: @Jury I'm selecting the pint of gelato in the freezer for update. Deal with it.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Jurewitz", @@ -5914,7 +5903,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Jurewitz", @@ -5965,7 +5954,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "InstapaperHelp", @@ -5996,7 +5985,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "InstapaperHelp", @@ -6033,7 +6022,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Wynn Netherland", @@ -6061,7 +6050,7 @@ Grailbird.data.tweets_2013_09 = "id_str" : "374940728796798976", "text" : "RT @pengwynn: Love this little git-conflicts script from @rtomayko https:\/\/t.co\/ZQAeMSjclQ", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "rtomayko", @@ -6106,7 +6095,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Wynn Netherland", @@ -6145,7 +6134,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -6178,7 +6167,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jacqui Cheng", @@ -6211,7 +6200,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "getify", @@ -6244,7 +6233,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -6277,7 +6266,7 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -6310,10 +6299,10 @@ Grailbird.data.tweets_2013_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2013_10.js b/public/tweets/data/js/tweets/2013_10.js index 5205622..be41df9 100755 --- a/public/tweets/data/js/tweets/2013_10.js +++ b/public/tweets/data/js/tweets/2013_10.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2013_10 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mikeal Rogers", @@ -22,7 +22,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "396145398470815744", "text" : "RT @mikeal: why node\u2019s module system is winning https:\/\/t.co\/tinUvsNedP", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -61,7 +61,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -106,7 +106,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -151,7 +151,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -196,7 +196,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -229,7 +229,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -262,7 +262,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "DHH", @@ -295,7 +295,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -323,7 +323,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ANTIREZ", @@ -384,7 +384,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -417,11 +417,11 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 0, 14 ], "id_str" : "1236101", "id" : 1236101 @@ -444,7 +444,7 @@ Grailbird.data.tweets_2013_10 = "id" : 394960884914978816, "in_reply_to_status_id" : 394960747442499584, "created_at" : "2013-10-28 22:56:27 +0000", - "in_reply_to_screen_name" : "BenedictEvans", + "in_reply_to_screen_name" : "benedictevans", "in_reply_to_user_id_str" : "1236101", "user" : { "name" : "Sami Samhuri", @@ -456,11 +456,11 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 0, 14 ], "id_str" : "1236101", "id" : 1236101 @@ -483,7 +483,7 @@ Grailbird.data.tweets_2013_10 = "id" : 394960529346662401, "in_reply_to_status_id" : 394958518257975296, "created_at" : "2013-10-28 22:55:02 +0000", - "in_reply_to_screen_name" : "BenedictEvans", + "in_reply_to_screen_name" : "benedictevans", "in_reply_to_user_id_str" : "1236101", "user" : { "name" : "Sami Samhuri", @@ -495,7 +495,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tweetbot by Tapbots", @@ -528,7 +528,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -545,7 +545,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "394904255183609856", "text" : "RT @nerdtalker: Phone includes microSD, I comment about how I won\u2019t have to hear bitching about it, comments proceed to bitch about it. \n\nS\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -579,7 +579,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -612,7 +612,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Mortensen", @@ -649,7 +649,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -702,11 +702,11 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -795,7 +795,7 @@ Grailbird.data.tweets_2013_10 = "created_at" : "2013-10-27 00:49:05 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -815,10 +815,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -848,7 +848,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -881,7 +881,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -958,7 +958,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jacob Schwartz", @@ -991,7 +991,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ajHecky", @@ -1030,7 +1030,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jacob Schwartz", @@ -1063,10 +1063,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "JayJay", + "name" : "JaySan", "screen_name" : "JaySan25", "indices" : [ 29, 38 ], "id_str" : "1891485739", @@ -1128,7 +1128,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Felix Geisend\u00F6rfer", @@ -1161,68 +1161,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Evan Doll", - "screen_name" : "edog1203", - "indices" : [ 3, 12 ], - "id_str" : "14305022", - "id" : 14305022 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 85, 107 ], - "url" : "http:\/\/t.co\/E6BaS2qRHK", - "expanded_url" : "http:\/\/coverscreen.tumblr.com\/post\/64965314790\/introducing-cover", - "display_url" : "coverscreen.tumblr.com\/post\/649653147\u2026" - } ] - }, - "geo" : { }, - "id_str" : "393631844563824640", - "text" : "RT @edog1203: Cover looks pretty great. Wish this sort of thing was possible on iOS! http:\/\/t.co\/E6BaS2qRHK", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003ESafari on iOS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 71, 93 ], - "url" : "http:\/\/t.co\/E6BaS2qRHK", - "expanded_url" : "http:\/\/coverscreen.tumblr.com\/post\/64965314790\/introducing-cover", - "display_url" : "coverscreen.tumblr.com\/post\/649653147\u2026" - } ] - }, - "geo" : { }, - "id_str" : "393587990213046273", - "text" : "Cover looks pretty great. Wish this sort of thing was possible on iOS! http:\/\/t.co\/E6BaS2qRHK", - "id" : 393587990213046273, - "created_at" : "2013-10-25 04:01:04 +0000", - "user" : { - "name" : "Evan Doll", - "screen_name" : "edog1203", - "protected" : false, - "id_str" : "14305022", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/461765914321358848\/Vp6XymAZ_normal.jpeg", - "id" : 14305022, - "verified" : false - } - }, - "id" : 393631844563824640, - "created_at" : "2013-10-25 06:55:19 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Taylor", @@ -1279,7 +1218,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "file transporter", @@ -1319,7 +1258,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Bergmayer", @@ -1387,10 +1326,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 0, 12 ], "id_str" : "5905672", @@ -1420,7 +1359,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kontra", @@ -1459,7 +1398,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -1525,7 +1464,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -1558,7 +1497,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -1591,7 +1530,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -1624,7 +1563,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "rands", @@ -1641,7 +1580,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "392736161187123201", "text" : "RT @rands: This is a really expensive Apple event.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1675,7 +1614,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -1708,7 +1647,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -1745,57 +1684,6 @@ Grailbird.data.tweets_2013_10 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Steven Frank", - "screen_name" : "stevenf", - "indices" : [ 3, 11 ], - "id_str" : "733813", - "id" : 733813 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "392699459588481024", - "text" : "RT @stevenf: lol get your wallets out for apple, sheeple *notices own wallet is out* hey what in the", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "392692594393616384", - "text" : "lol get your wallets out for apple, sheeple *notices own wallet is out* hey what in the", - "id" : 392692594393616384, - "created_at" : "2013-10-22 16:43:05 +0000", - "user" : { - "name" : "Steven Frank", - "screen_name" : "stevenf", - "protected" : false, - "id_str" : "733813", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838378818\/avatar_normal.png", - "id" : 733813, - "verified" : true - } - }, - "id" : 392699459588481024, - "created_at" : "2013-10-22 17:10:21 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/www.apple.com\/\" rel=\"nofollow\"\u003EOS X\u003C\/a\u003E", "entities" : { @@ -1819,11 +1707,11 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -1836,7 +1724,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "392671108761001985", "text" : "RT @BenedictEvans: Nokia continues to create great products from a parallel universe in which Windows was the right OS choice.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1850,7 +1738,7 @@ Grailbird.data.tweets_2013_10 = "created_at" : "2013-10-22 12:05:13 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -1870,7 +1758,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -1893,7 +1781,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "392462345697390593", "text" : "RT @chockenberry: It's like I'm @siracusa, but with bugs instead of screenshots.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -1933,7 +1821,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "dilvie", @@ -1942,7 +1830,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "2419654592", "id" : 2419654592 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 8, 22 ], "id_str" : "29255412", @@ -1972,7 +1860,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "dilvie", @@ -1981,7 +1869,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "2419654592", "id" : 2419654592 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 8, 22 ], "id_str" : "29255412", @@ -2011,7 +1899,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -2044,7 +1932,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -2083,7 +1971,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -2116,7 +2004,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rene Ritchie", @@ -2213,7 +2101,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2246,7 +2134,7 @@ Grailbird.data.tweets_2013_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2276,10 +2164,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2309,7 +2197,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -2326,7 +2214,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "391281742293635072", "text" : "RT @wwwtxt: I make no apologies for screening calls. It's my home, and if I decline to be tyrannized by the machines in it, it's my preroga\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2360,7 +2248,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -2377,7 +2265,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "391281735582752768", "text" : "RT @wwwtxt: AARGH! Please don't leave your answering machines on all the time when you are home. Humans deserve more respect than that! \u262F90\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2411,7 +2299,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -2444,7 +2332,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Bray", @@ -2483,7 +2371,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -2516,7 +2404,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jacob Schwartz", @@ -2554,10 +2442,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2587,10 +2475,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2620,7 +2508,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Jurewitz", @@ -2665,7 +2553,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Instapaper", @@ -2698,7 +2586,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "The Macalope", @@ -2715,7 +2603,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "390142365551185920", "text" : "RT @TheMacalope: Steve Jobs never would have hired a senior vice president of retail.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2749,7 +2637,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -2782,11 +2670,11 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 0, 14 ], "id_str" : "1236101", "id" : 1236101 @@ -2803,7 +2691,7 @@ Grailbird.data.tweets_2013_10 = "id" : 389800379372023808, "in_reply_to_status_id" : 389788818486099968, "created_at" : "2013-10-14 17:10:27 +0000", - "in_reply_to_screen_name" : "BenedictEvans", + "in_reply_to_screen_name" : "benedictevans", "in_reply_to_user_id_str" : "1236101", "user" : { "name" : "Sami Samhuri", @@ -2815,7 +2703,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2860,10 +2748,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dave Herman", + "name" : "David S Herm-kins", "screen_name" : "littlecalculist", "indices" : [ 0, 16 ], "id_str" : "104245499", @@ -2893,10 +2781,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dave Herman", + "name" : "David S Herm-kins", "screen_name" : "littlecalculist", "indices" : [ 0, 16 ], "id_str" : "104245499", @@ -2926,7 +2814,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guillermo Rauch", @@ -2970,7 +2858,7 @@ Grailbird.data.tweets_2013_10 = "screen_name" : "rauchg", "protected" : false, "id_str" : "15540222", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/871555682608136205\/yMs8Gnot_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029230542716264448\/LgLb--Of_normal.jpg", "id" : 15540222, "verified" : true } @@ -2987,7 +2875,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3009,7 +2897,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Feedbin", @@ -3060,7 +2948,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Hacker News", @@ -3098,57 +2986,6 @@ Grailbird.data.tweets_2013_10 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Fraser Speirs", - "screen_name" : "fraserspeirs", - "indices" : [ 3, 16 ], - "id_str" : "644603", - "id" : 644603 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "388678731432075265", - "text" : "RT @fraserspeirs: The four-finger swipe up for multitasking makes no sense at all with iOS 7\u2019s multitasking UI.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "388567019731558400", - "text" : "The four-finger swipe up for multitasking makes no sense at all with iOS 7\u2019s multitasking UI.", - "id" : 388567019731558400, - "created_at" : "2013-10-11 07:29:31 +0000", - "user" : { - "name" : "Fraser Speirs", - "screen_name" : "fraserspeirs", - "protected" : false, - "id_str" : "644603", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/918781223677259776\/BNUM1rhT_normal.jpg", - "id" : 644603, - "verified" : false - } - }, - "id" : 388678731432075265, - "created_at" : "2013-10-11 14:53:25 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { @@ -3215,7 +3052,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -3248,7 +3085,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Jurewitz", @@ -3281,7 +3118,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "DHH", @@ -3314,14 +3151,14 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Isabelle Bowers", + "name" : "Louis C.K.", "screen_name" : "louisck", "indices" : [ 0, 8 ], - "id_str" : "4282335075", - "id" : 4282335075 + "id_str" : "185359318", + "id" : 185359318 } ], "media" : [ ], "hashtags" : [ ], @@ -3342,10 +3179,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Rich Siegel", + "name" : "Down Here, We All Float, Georgie", "screen_name" : "siegel", "indices" : [ 0, 7 ], "id_str" : "8021722", @@ -3375,7 +3212,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rene Ritchie", @@ -3408,7 +3245,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rene Ritchie", @@ -3441,7 +3278,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Florian Gilcher", @@ -3463,7 +3300,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "387719748584103936", "text" : "RT @Argorak: Homebrew users, be aware of this before Mavericks hits you:\n\nhttps:\/\/t.co\/5qk2oKNeHk", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3502,10 +3339,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3535,69 +3372,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Earl Galleher", - "screen_name" : "BashoT", - "indices" : [ 3, 10 ], - "id_str" : "25982757", - "id" : 25982757 - } ], - "media" : [ ], - "hashtags" : [ { - "text" : "Riak", - "indices" : [ 99, 104 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "387627705883054080", - "text" : "RT @BashoT: Basho throws out Oracle for National Health System of UK Database of Record. It's now #Riak. That is big. http:\/\/t.co\/VBMqrm9\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ { - "text" : "Riak", - "indices" : [ 87, 92 ] - } ], - "urls" : [ { - "indices" : [ 108, 130 ], - "url" : "http:\/\/t.co\/VBMqrm9SF3", - "expanded_url" : "http:\/\/bit.ly\/16vbss3", - "display_url" : "bit.ly\/16vbss3" - } ] - }, - "geo" : { }, - "id_str" : "387581162761109504", - "text" : "Basho throws out Oracle for National Health System of UK Database of Record. It's now #Riak. That is big. http:\/\/t.co\/VBMqrm9SF3", - "id" : 387581162761109504, - "created_at" : "2013-10-08 14:12:04 +0000", - "user" : { - "name" : "Earl Galleher", - "screen_name" : "BashoT", - "protected" : false, - "id_str" : "25982757", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/685682503412142080\/NbXfJYF1_normal.jpg", - "id" : 25982757, - "verified" : false - } - }, - "id" : 387627705883054080, - "created_at" : "2013-10-08 17:17:01 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mathias Bynens", @@ -3658,7 +3433,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -3675,7 +3450,7 @@ Grailbird.data.tweets_2013_10 = "id_str" : "387313149340184576", "text" : "RT @wwwtxt: If Cyberspace is going to be for the masses, the masses will use it for whatever they see fit (mostly \u2018junk-talk\u2019 + \u2018stupid-gam\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3709,7 +3484,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -3748,7 +3523,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jan Lehnardt", @@ -3793,10 +3568,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3857,10 +3632,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3890,10 +3665,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -3923,7 +3698,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -3976,10 +3751,10 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4009,7 +3784,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Caswell", @@ -4128,7 +3903,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Caswell", @@ -4226,7 +4001,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Shaw Help", @@ -4257,7 +4032,7 @@ Grailbird.data.tweets_2013_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Patrick Collison", diff --git a/public/tweets/data/js/tweets/2013_11.js b/public/tweets/data/js/tweets/2013_11.js index 2848090..e691915 100755 --- a/public/tweets/data/js/tweets/2013_11.js +++ b/public/tweets/data/js/tweets/2013_11.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2013_11 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Hacker News", @@ -61,7 +61,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -117,7 +117,7 @@ Grailbird.data.tweets_2013_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "David Hicks", + "name" : "\uD83C\uDF83David Ghost Dicks\uD83C\uDF83", "screen_name" : "ALL_CAPS", "indices" : [ 0, 9 ], "id_str" : "35745942", @@ -153,7 +153,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -181,7 +181,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -209,7 +209,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -231,7 +231,7 @@ Grailbird.data.tweets_2013_11 = "id_str" : "403960188475957248", "text" : "RT @siracusa: By popular demand, here's a feed to keep up with my appearances on other podcasts and websites: http:\/\/t.co\/gJXuhBcQAi", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -270,7 +270,58 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "indices" : [ 3, 14 ], + "id_str" : "14206068", + "id" : 14206068 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "403947320657457152", + "text" : "RT @tlrobinson: Rappers can't make it rain Bitcoins, but they can sign a message with a rich Bitcoin address' private key provably attestin\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "403923535661236224", + "text" : "Rappers can't make it rain Bitcoins, but they can sign a message with a rich Bitcoin address' private key provably attesting to their wealth", + "id" : 403923535661236224, + "created_at" : "2013-11-22 16:30:50 +0000", + "user" : { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "protected" : false, + "id_str" : "14206068", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", + "id" : 14206068, + "verified" : false + } + }, + "id" : 403947320657457152, + "created_at" : "2013-11-22 18:05:20 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Flo Gehring", @@ -321,10 +372,10 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -354,7 +405,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Ramsden", @@ -363,7 +414,7 @@ Grailbird.data.tweets_2013_11 = "id_str" : "20092406", "id" : 20092406 }, { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 9, 22 ], "id_str" : "11973362", @@ -393,7 +444,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -444,7 +495,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -466,7 +517,68 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "indices" : [ 3, 14 ], + "id_str" : "14206068", + "id" : 14206068 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 94, 116 ], + "url" : "http:\/\/t.co\/rca33ZjPPx", + "expanded_url" : "http:\/\/bitcoinwisdom.com\/markets\/mtgox\/btcusd", + "display_url" : "bitcoinwisdom.com\/markets\/mtgox\/\u2026" + } ] + }, + "geo" : { }, + "id_str" : "402627149854543873", + "text" : "RT @tlrobinson: If Bitcoin volatility entertains you, this is entertaining as hell right now: http:\/\/t.co\/rca33ZjPPx", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 78, 100 ], + "url" : "http:\/\/t.co\/rca33ZjPPx", + "expanded_url" : "http:\/\/bitcoinwisdom.com\/markets\/mtgox\/btcusd", + "display_url" : "bitcoinwisdom.com\/markets\/mtgox\/\u2026" + } ] + }, + "geo" : { }, + "id_str" : "402614497015115776", + "text" : "If Bitcoin volatility entertains you, this is entertaining as hell right now: http:\/\/t.co\/rca33ZjPPx", + "id" : 402614497015115776, + "created_at" : "2013-11-19 01:49:10 +0000", + "user" : { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "protected" : false, + "id_str" : "14206068", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", + "id" : 14206068, + "verified" : false + } + }, + "id" : 402627149854543873, + "created_at" : "2013-11-19 02:39:27 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "April 7, 2015", @@ -579,7 +691,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "JesseSchell", @@ -692,7 +804,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "substack", @@ -753,7 +865,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Account has moved!", @@ -774,7 +886,7 @@ Grailbird.data.tweets_2013_11 = "id" : 401819098755002368, "in_reply_to_status_id" : 401804100653678592, "created_at" : "2013-11-16 21:08:33 +0000", - "in_reply_to_screen_name" : "0x00A", + "in_reply_to_screen_name" : "hxoht", "in_reply_to_user_id_str" : "95938827", "user" : { "name" : "Sami Samhuri", @@ -786,7 +898,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Android Holo\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.dwdesign.tweetings\" rel=\"nofollow\"\u003ETweetings for Windows\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jake Archibald", @@ -837,7 +949,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sally Kohn", @@ -876,7 +988,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mx. Evan Phoenix", @@ -909,7 +1021,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -942,7 +1054,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco.org", @@ -981,7 +1093,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -990,7 +1102,7 @@ Grailbird.data.tweets_2013_11 = "id_str" : "4777951", "id" : 4777951 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 6, 17 ], "id_str" : "894911", @@ -1020,10 +1132,10 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1084,7 +1196,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -1117,7 +1229,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gus Mueller", @@ -1150,7 +1262,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rene Ritchie", @@ -1183,7 +1295,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -1251,7 +1363,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cielo Adomako", @@ -1284,7 +1396,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Scott Johnson", @@ -1355,7 +1467,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1377,7 +1489,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dropbox", @@ -1405,7 +1517,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1427,7 +1539,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tom Dale", @@ -1436,7 +1548,7 @@ Grailbird.data.tweets_2013_11 = "id_str" : "668863", "id" : 668863 }, { - "name" : "Machty_Sx", + "name" : "machteld_samuel_", "screen_name" : "machty", "indices" : [ 24, 31 ], "id_str" : "961332937064157187", @@ -1450,10 +1562,10 @@ Grailbird.data.tweets_2013_11 = "id_str" : "398889557908660224", "text" : "RT @tomdale: So I think @machty may have come up with the single best answer to the pros and cons between Ember.js and Angular: http:\/\/t.co\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Machty_Sx", + "name" : "machteld_samuel_", "screen_name" : "machty", "indices" : [ 11, 18 ], "id_str" : "961332937064157187", @@ -1495,7 +1607,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -1528,7 +1640,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -1616,7 +1728,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -1649,7 +1761,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rasmus Andersson", @@ -1694,7 +1806,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jason\u2122", @@ -1727,7 +1839,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jason\u2122", @@ -1741,6 +1853,18 @@ Grailbird.data.tweets_2013_11 = "indices" : [ 14, 19 ], "id_str" : "4777951", "id" : 4777951 + }, { + "name" : "Picture Of Life", + "screen_name" : "PictureLife", + "indices" : [ 20, 32 ], + "id_str" : "992281334574792709", + "id" : 992281334574792709 + }, { + "name" : "Loom", + "screen_name" : "TeamLoom", + "indices" : [ 33, 42 ], + "id_str" : "1375739545", + "id" : 1375739545 } ], "media" : [ ], "hashtags" : [ ], @@ -1758,6 +1882,12 @@ Grailbird.data.tweets_2013_11 = "indices" : [ 0, 5 ], "id_str" : "4777951", "id" : 4777951 + }, { + "name" : "Picture Of Life", + "screen_name" : "PictureLife", + "indices" : [ 6, 18 ], + "id_str" : "992281334574792709", + "id" : 992281334574792709 }, { "name" : "Loom", "screen_name" : "TeamLoom", @@ -1807,9 +1937,15 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { + "name" : "Picture Of Life", + "screen_name" : "PictureLife", + "indices" : [ 7, 19 ], + "id_str" : "992281334574792709", + "id" : 992281334574792709 + }, { "name" : "Loom", "screen_name" : "TeamLoom", "indices" : [ 40, 49 ], @@ -1841,7 +1977,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Everpix", @@ -1861,6 +1997,12 @@ Grailbird.data.tweets_2013_11 = "indices" : [ 95, 104 ], "id_str" : "1375739545", "id" : 1375739545 + }, { + "name" : "Picture Of Life", + "screen_name" : "PictureLife", + "indices" : [ 106, 118 ], + "id_str" : "992281334574792709", + "id" : 992281334574792709 } ], "media" : [ ], "hashtags" : [ ], @@ -1881,7 +2023,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Lozano", @@ -1920,7 +2062,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Zac Wasielewski", @@ -1959,7 +2101,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -1992,7 +2134,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -2015,7 +2157,7 @@ Grailbird.data.tweets_2013_11 = "id_str" : "397796763823644672", "text" : "RT @siracusa: Everything about @everpix worked except the business model. Apple can fix that by making it part of a profitable overall pac\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Everpix", @@ -2055,7 +2197,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -2088,7 +2230,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Everpix", @@ -2121,7 +2263,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "HackerNewsOnion", @@ -2172,7 +2314,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2194,7 +2336,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rosyna Keller", @@ -2239,7 +2381,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "I Am Devloper", @@ -2290,7 +2432,7 @@ Grailbird.data.tweets_2013_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -2324,7 +2466,7 @@ Grailbird.data.tweets_2013_11 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1005850629028352000\/jHsNM3wM_normal.jpg", "id" : 14231571, "verified" : true } diff --git a/public/tweets/data/js/tweets/2013_12.js b/public/tweets/data/js/tweets/2013_12.js index 5a9b1af..cbb9b7e 100755 --- a/public/tweets/data/js/tweets/2013_12.js +++ b/public/tweets/data/js/tweets/2013_12.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2013_12 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -39,7 +39,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -83,7 +83,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joel Spolsky", @@ -92,7 +92,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "15948437", "id" : 15948437 }, { - "name" : "ari v. \uD83C\uDF39\uD83C\uDF2F", + "name" : "ari v. \uD83C\uDF2F", "screen_name" : "roxaloxa", "indices" : [ 13, 22 ], "id_str" : "14467421", @@ -115,7 +115,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ari v. \uD83C\uDF39\uD83C\uDF2F", + "name" : "ari v. \uD83C\uDF2F", "screen_name" : "roxaloxa", "indices" : [ 0, 9 ], "id_str" : "14467421", @@ -163,10 +163,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ari v. \uD83C\uDF39\uD83C\uDF2F", + "name" : "ari v. \uD83C\uDF2F", "screen_name" : "roxaloxa", "indices" : [ 0, 9 ], "id_str" : "14467421", @@ -208,7 +208,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -241,10 +241,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Trek Glowacki", + "name" : "\uD83D\uDC7B Javas Crypt Keeper \uD83C\uDF83", "screen_name" : "trek", "indices" : [ 3, 8 ], "id_str" : "1291711", @@ -271,7 +271,7 @@ Grailbird.data.tweets_2013_12 = "id" : 418082875339059200, "created_at" : "2013-12-31 18:14:59 +0000", "user" : { - "name" : "Trek Glowacki", + "name" : "\uD83D\uDC7B Javas Crypt Keeper \uD83C\uDF83", "screen_name" : "trek", "protected" : false, "id_str" : "1291711", @@ -292,7 +292,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -325,7 +325,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kontra", @@ -376,7 +376,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matt Helm", @@ -427,10 +427,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDF9B\uFE0FBen Prunty\uD83C\uDF9B\uFE0F", + "name" : "Ben Haunty wants you to VOTE", "screen_name" : "benprunty", "indices" : [ 11, 21 ], "id_str" : "15810488", @@ -460,7 +460,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -493,7 +493,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse iOS", @@ -510,7 +510,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "417487252554387456", "text" : "RT @Horse_iOS: A last-minute change has opened up next week\u2019s Horse_iOS sponsorship. For only $9500 you can get a sarcastic oblique referen\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -580,7 +580,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "History In Pictures", @@ -628,7 +628,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "417130316575162368", "text" : "RT @HistoryInPics: Behind the scene of 2001: A Space Odyssey http:\/\/t.co\/XvgWgPcjJu", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -693,7 +693,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -726,7 +726,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Barnaby Edwards", @@ -839,7 +839,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -872,10 +872,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "F.O.G.U.S", + "name" : "Folog", "screen_name" : "fogus", "indices" : [ 3, 9 ], "id_str" : "14375110", @@ -902,7 +902,7 @@ Grailbird.data.tweets_2013_12 = "id" : 416597972818731008, "created_at" : "2013-12-27 15:54:31 +0000", "user" : { - "name" : "F.O.G.U.S", + "name" : "Folog", "screen_name" : "fogus", "protected" : false, "id_str" : "14375110", @@ -923,7 +923,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Casey Johnston", @@ -1036,7 +1036,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -1161,7 +1161,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -1194,7 +1194,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "McDonald's", @@ -1222,7 +1222,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -1255,7 +1255,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -1291,7 +1291,7 @@ Grailbird.data.tweets_2013_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -1321,10 +1321,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -1354,10 +1354,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -1387,10 +1387,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "luke oneil", + "name" : "luke oneil \uD83D\uDEBD", "screen_name" : "lukeoneil47", "indices" : [ 3, 15 ], "id_str" : "108338399", @@ -1417,11 +1417,11 @@ Grailbird.data.tweets_2013_12 = "id" : 415347426795343872, "created_at" : "2013-12-24 05:05:17 +0000", "user" : { - "name" : "luke oneil", + "name" : "luke oneil \uD83D\uDEBD", "screen_name" : "lukeoneil47", "protected" : false, "id_str" : "108338399", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985945357149442048\/6iBYSrKO_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1051896896556535809\/82oAzF7a_normal.jpg", "id" : 108338399, "verified" : true } @@ -1438,7 +1438,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "dave bonner", @@ -1477,7 +1477,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -1550,7 +1550,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -1589,7 +1589,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "The Node", @@ -1702,7 +1702,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -1735,7 +1735,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1757,7 +1757,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kim Dotcom", @@ -1785,7 +1785,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "George RR Martin", @@ -1904,10 +1904,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Trek Glowacki", + "name" : "\uD83D\uDC7B Javas Crypt Keeper \uD83C\uDF83", "screen_name" : "trek", "indices" : [ 0, 5 ], "id_str" : "1291711", @@ -1937,7 +1937,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -1970,7 +1970,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -2003,7 +2003,120 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "indices" : [ 3, 14 ], + "id_str" : "14206068", + "id" : 14206068 + } ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/tlrobinson\/status\/414198869958733825\/photo\/1", + "indices" : [ 107, 129 ], + "url" : "http:\/\/t.co\/sihU1ralRm", + "media_url" : "http:\/\/pbs.twimg.com\/media\/Bb-HrXRCAAAEeYU.jpg", + "id_str" : "414198869790949376", + "id" : 414198869790949376, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bb-HrXRCAAAEeYU.jpg", + "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/sihU1ralRm" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "414213277636255744", + "text" : "RT @tlrobinson: This is either a really good idea, or a really terrible idea. Either way, Merry Christmas! http:\/\/t.co\/sihU1ralRm", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/tlrobinson\/status\/414198869958733825\/photo\/1", + "indices" : [ 91, 113 ], + "url" : "http:\/\/t.co\/sihU1ralRm", + "media_url" : "http:\/\/pbs.twimg.com\/media\/Bb-HrXRCAAAEeYU.jpg", + "id_str" : "414198869790949376", + "id" : 414198869790949376, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Bb-HrXRCAAAEeYU.jpg", + "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 + }, { + "h" : 510, + "resize" : "fit", + "w" : 680 + }, { + "h" : 768, + "resize" : "fit", + "w" : 1024 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/sihU1ralRm" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "414198869958733825", + "text" : "This is either a really good idea, or a really terrible idea. Either way, Merry Christmas! http:\/\/t.co\/sihU1ralRm", + "id" : 414198869958733825, + "created_at" : "2013-12-21 01:01:20 +0000", + "user" : { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "protected" : false, + "id_str" : "14206068", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", + "id" : 14206068, + "verified" : false + } + }, + "id" : 414213277636255744, + "created_at" : "2013-12-21 01:58:35 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -2031,7 +2144,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2053,7 +2166,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -2092,7 +2205,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -2131,7 +2244,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -2170,10 +2283,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 3, 15 ], "id_str" : "6927562", @@ -2265,11 +2378,11 @@ Grailbird.data.tweets_2013_12 = "id" : 414091191211532288, "created_at" : "2013-12-20 17:53:28 +0000", "user" : { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/934619752768647168\/4ixrnv8S_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046729068559978497\/T5_KOOBN_normal.jpg", "id" : 6927562, "verified" : true } @@ -2286,7 +2399,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ember Sherpa", @@ -2319,7 +2432,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Frakes", @@ -2358,7 +2471,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -2397,7 +2510,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -2431,7 +2544,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "tapbot_paul", "protected" : false, "id_str" : "18247541", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849243635178778624\/JXnBOvr__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996375435234570240\/AobDpgxZ_normal.jpg", "id" : 18247541, "verified" : false } @@ -2448,7 +2561,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -2513,7 +2626,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "tapbot_paul", "protected" : false, "id_str" : "18247541", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849243635178778624\/JXnBOvr__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996375435234570240\/AobDpgxZ_normal.jpg", "id" : 18247541, "verified" : false } @@ -2530,10 +2643,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2563,10 +2676,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2596,7 +2709,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "IsTheAppleStoreDown", @@ -2657,7 +2770,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Resig", @@ -2708,7 +2821,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mike Beltzner", @@ -2753,7 +2866,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -2792,7 +2905,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tarikh Korula", @@ -2870,7 +2983,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2892,7 +3005,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2919,7 +3032,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -2952,7 +3065,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Charlie Somerville", @@ -3008,7 +3121,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Carcassonne", @@ -3059,7 +3172,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -3137,7 +3250,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -3203,7 +3316,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -3236,7 +3349,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -3269,7 +3382,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Ga\u00DFton", @@ -3357,7 +3470,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andreas Bovens", @@ -3396,7 +3509,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "andreasbovens", "protected" : false, "id_str" : "15736487", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/794219661109956608\/jWXIywwl_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1042209412717273088\/fWKNO0RT_normal.jpg", "id" : 15736487, "verified" : false } @@ -3413,10 +3526,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3446,7 +3559,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Liam McArdle", @@ -3491,7 +3604,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Yehuda Katz \uD83E\uDD68", @@ -3524,7 +3637,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Yehuda Katz \uD83E\uDD68", @@ -3557,7 +3670,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Love", @@ -3596,7 +3709,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -3629,7 +3742,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -3662,7 +3775,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -3726,7 +3839,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Love", @@ -3765,10 +3878,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -3782,7 +3895,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "412094430993055744", "text" : "RT @JimRoepcke: One reason I didn\u2019t release it is it doesn\u2019t have (IMHO) sufficient docs or sample code, but better this than keeping it hi\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3795,7 +3908,7 @@ Grailbird.data.tweets_2013_12 = "id" : 411968028436209664, "created_at" : "2013-12-14 21:16:46 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -3816,10 +3929,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -3833,7 +3946,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "412094417676144640", "text" : "RT @JimRoepcke: In the spirit of that blog post, I\u2019ve finally made RCSTableKit public. I should have done this years ago. https:\/\/t.co\/s9I0\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3851,7 +3964,7 @@ Grailbird.data.tweets_2013_12 = "id" : 411967147057758208, "created_at" : "2013-12-14 21:13:16 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -3872,7 +3985,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adolfo Builes", @@ -3905,7 +4018,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adolfo Builes", @@ -3944,7 +4057,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -3953,7 +4066,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "14761655", "id" : 14761655 }, { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 12, 24 ], "id_str" : "6927562", @@ -3983,7 +4096,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Neil deGrasse Tyson", @@ -4034,7 +4147,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Carol Nichols", @@ -4073,7 +4186,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ryan Florence", @@ -4125,7 +4238,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "ryanflorence", "protected" : false, "id_str" : "16468446", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937382461918478336\/AxXNkFRG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1030536508321591296\/pTLoN1_y_normal.jpg", "id" : 16468446, "verified" : false } @@ -4142,7 +4255,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -4175,9 +4288,15 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { - "user_mentions" : [ ], + "user_mentions" : [ { + "name" : "Gotham", + "screen_name" : "Gotham3", + "indices" : [ 3, 11 ], + "id_str" : "986745014326788096", + "id" : 986745014326788096 + } ], "media" : [ { "expanded_url" : "https:\/\/twitter.com\/Gotham3\/status\/401120129137655810\/photo\/1", "indices" : [ 79, 101 ], @@ -4259,13 +4378,13 @@ Grailbird.data.tweets_2013_12 = "id_str" : "401120129137655810", "text" : "Allow me to play with your mind by showing you 4 perfect circles. http:\/\/t.co\/b05qncGs8v", "id" : 401120129137655810, - "created_at" : "2013-11-14 22:51:06 +0000", + "created_at" : "2013-11-14 22:51:05 +0000", "user" : { "name" : "Gautam Trivedi", "screen_name" : "KaptanHindustan", "protected" : false, "id_str" : "126903716", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985999659901640705\/RPsM1oYM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1051824930118094849\/IIWkktMT_normal.jpg", "id" : 126903716, "verified" : false } @@ -4282,7 +4401,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Irish", @@ -4343,10 +4462,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "indices" : [ 3, 9 ], "id_str" : "1919231", @@ -4404,7 +4523,7 @@ Grailbird.data.tweets_2013_12 = "id" : 410201956120928256, "created_at" : "2013-12-10 00:19:02 +0000", "user" : { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "protected" : false, "id_str" : "1919231", @@ -4425,10 +4544,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "indices" : [ 0, 6 ], "id_str" : "1919231", @@ -4440,7 +4559,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "41783", "id" : 41783 }, { - "name" : "Alexbot 2018", + "name" : "Raaaarlex PasBOO \uD83D\uDC7B", "screen_name" : "alexpalex", "indices" : [ 15, 25 ], "id_str" : "787158", @@ -4470,7 +4589,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -4492,7 +4611,7 @@ Grailbird.data.tweets_2013_12 = "id_str" : "409880774926540801", "text" : "RT @tapbot_paul: Pretty impressive tech\/design for a speaker.\nhttp:\/\/t.co\/8Tn4qgZiWP", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4514,7 +4633,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "tapbot_paul", "protected" : false, "id_str" : "18247541", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849243635178778624\/JXnBOvr__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996375435234570240\/AobDpgxZ_normal.jpg", "id" : 18247541, "verified" : false } @@ -4531,7 +4650,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -4564,7 +4683,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -4597,7 +4716,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -4630,7 +4749,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -4663,7 +4782,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brett Fitzner", @@ -4696,7 +4815,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4788,7 +4907,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -4821,7 +4940,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -4860,7 +4979,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -4899,7 +5018,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Caswell", @@ -4955,10 +5074,10 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -4988,7 +5107,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matt Pardee", @@ -5049,7 +5168,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Doug Pawl", @@ -5120,7 +5239,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -5159,7 +5278,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -5192,7 +5311,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "So-called \"Barry\"", @@ -5288,7 +5407,7 @@ Grailbird.data.tweets_2013_12 = "screen_name" : "QuantumPirate", "protected" : false, "id_str" : "161373868", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/939944812760924160\/n4mBWk0s_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1018127598478610433\/Z1da2oLm_normal.jpg", "id" : 161373868, "verified" : false } @@ -5305,7 +5424,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -5338,7 +5457,7 @@ Grailbird.data.tweets_2013_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", diff --git a/public/tweets/data/js/tweets/2014_01.js b/public/tweets/data/js/tweets/2014_01.js index 34542fc..3422fb0 100755 --- a/public/tweets/data/js/tweets/2014_01.js +++ b/public/tweets/data/js/tweets/2014_01.js @@ -55,7 +55,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -95,7 +95,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -123,10 +123,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Machty_Sx", + "name" : "machteld_samuel_", "screen_name" : "machty", "indices" : [ 0, 7 ], "id_str" : "961332937064157187", @@ -195,7 +195,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ryan", @@ -243,7 +243,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "429350895659126784", "text" : "RT @ryan: This is by far the best bit of user interface design I have ever seen. Ever. EVER. http:\/\/t.co\/zrRs4bDRH3", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -308,7 +308,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Gebhardt", @@ -347,7 +347,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -392,10 +392,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Oscar Godson", + "name" : "Oscar Godson (\uD55C\uAE00 \uD559\uC0DD)", "screen_name" : "oscargodson", "indices" : [ 3, 15 ], "id_str" : "10138412", @@ -449,7 +449,7 @@ Grailbird.data.tweets_2014_01 = "in_reply_to_screen_name" : "tomdale", "in_reply_to_user_id_str" : "668863", "user" : { - "name" : "Oscar Godson", + "name" : "Oscar Godson (\uD55C\uAE00 \uD559\uC0DD)", "screen_name" : "oscargodson", "protected" : false, "id_str" : "10138412", @@ -470,7 +470,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "kangax", @@ -503,7 +503,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "jquery", @@ -571,7 +571,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "elrick \uD83C\uDDF2\uD83C\uDDF8", @@ -610,10 +610,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -643,7 +643,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -676,7 +676,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -693,7 +693,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "427106167332958208", "text" : "RT @wwwtxt: I suggest that the net as a whole shutdown for an entire week so that people can see how much we DESIRE to use it. \u262F85NOV", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -727,7 +727,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -754,10 +754,71 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "indices" : [ 3, 14 ], + "id_str" : "14206068", + "id" : 14206068 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 99, 121 ], + "url" : "http:\/\/t.co\/UmCnAJN8E6", + "expanded_url" : "http:\/\/techcrunch.com\/2014\/01\/24\/gmail-glitch-is-causing-thousands-of-emails-to-be-sent-to-one-mans-hotmail-account\/", + "display_url" : "techcrunch.com\/2014\/01\/24\/gma\u2026" + } ] + }, + "geo" : { }, + "id_str" : "426833802631983105", + "text" : "RT @tlrobinson: If you think you have an email problem, just be thankful you\u2019re not David S. Peck: http:\/\/t.co\/UmCnAJN8E6", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 83, 105 ], + "url" : "http:\/\/t.co\/UmCnAJN8E6", + "expanded_url" : "http:\/\/techcrunch.com\/2014\/01\/24\/gmail-glitch-is-causing-thousands-of-emails-to-be-sent-to-one-mans-hotmail-account\/", + "display_url" : "techcrunch.com\/2014\/01\/24\/gma\u2026" + } ] + }, + "geo" : { }, + "id_str" : "426825611978346496", + "text" : "If you think you have an email problem, just be thankful you\u2019re not David S. Peck: http:\/\/t.co\/UmCnAJN8E6", + "id" : 426825611978346496, + "created_at" : "2014-01-24 21:15:30 +0000", + "user" : { + "name" : "tom robinson", + "screen_name" : "tlrobinson", + "protected" : false, + "id_str" : "14206068", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000853310157\/a0e3b1296ad4bad4a668803a54a79afd_normal.jpeg", + "id" : 14206068, + "verified" : false + } + }, + "id" : 426833802631983105, + "created_at" : "2014-01-24 21:48:03 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -787,10 +848,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -820,10 +881,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -858,10 +919,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -891,7 +952,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "kangax", @@ -929,7 +990,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -956,10 +1017,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 64, 75 ], "id_str" : "894911", @@ -984,7 +1045,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -1017,7 +1078,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -1050,7 +1111,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -1083,7 +1144,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -1116,7 +1177,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -1149,7 +1210,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -1182,7 +1243,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -1227,7 +1288,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -1288,7 +1349,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1310,7 +1371,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "dan barker", @@ -1361,7 +1422,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jo\u00E3o Figueiredo", @@ -1406,10 +1467,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u23B7", + "name" : "Viktor Klang", "screen_name" : "viktorklang", "indices" : [ 3, 15 ], "id_str" : "52061552", @@ -1453,7 +1514,7 @@ Grailbird.data.tweets_2014_01 = "in_reply_to_screen_name" : "prasinous", "in_reply_to_user_id_str" : "90640376", "user" : { - "name" : "\u23B7", + "name" : "Viktor Klang", "screen_name" : "viktorklang", "protected" : false, "id_str" : "52061552", @@ -1626,7 +1687,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -1643,7 +1704,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1665,7 +1726,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "adam j. sontag", @@ -1721,7 +1782,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Lance Jones", @@ -1760,7 +1821,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Jordens", @@ -1769,7 +1830,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "2262091", "id" : 2262091 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 31, 42 ], "id_str" : "894911", @@ -1798,7 +1859,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 17, 28 ], "id_str" : "894911", @@ -1847,7 +1908,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "NitrousIO", @@ -1887,7 +1948,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "425779772656873472", "text" : "RT @NitrousIO: The new Mac App is built on node.js and ember.js! \/cc @wycats @tomdale @raingrove \n\nhttp:\/\/t.co\/48VuijesL7", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Yehuda Katz \uD83E\uDD68", @@ -1944,7 +2005,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robert Jackson", @@ -1953,7 +2014,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "156361232", "id" : 156361232 }, { - "name" : "Machty_Sx", + "name" : "machteld_samuel_", "screen_name" : "machty", "indices" : [ 9, 16 ], "id_str" : "961332937064157187", @@ -1989,7 +2050,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2011,7 +2072,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Richard Heath", @@ -2056,7 +2117,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -2089,7 +2150,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -2139,7 +2200,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2161,7 +2222,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Phillips Beer", @@ -2189,7 +2250,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2211,7 +2272,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "JonathonW", @@ -2250,7 +2311,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -2283,7 +2344,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Nick Momrik", @@ -2333,10 +2394,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Machty_Sx", + "name" : "machteld_samuel_", "screen_name" : "machty", "indices" : [ 0, 7 ], "id_str" : "961332937064157187", @@ -2348,7 +2409,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "156361232", "id" : 156361232 }, { - "name" : "bad dream", + "name" : "sir la table", "screen_name" : "fivetanley", "indices" : [ 17, 28 ], "id_str" : "306497372", @@ -2384,7 +2445,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Parsons", @@ -2497,7 +2558,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -2530,10 +2591,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2563,7 +2624,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -2586,7 +2647,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "424316727745196032", "text" : "RT @siracusa: @marcoarment Doing nothing\u2014pah! ABC: Always Be Compiling.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -2631,10 +2692,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2672,7 +2733,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2705,7 +2766,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2738,7 +2799,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2768,7 +2829,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Erik Bryn", @@ -2791,7 +2852,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "424291062195036160", "text" : "RT @ebryn: . @floydophone Ember.js will be the #1 JS framework for spinning circles", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Pete Hunt", @@ -2836,10 +2897,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -2861,7 +2922,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "424290460413095936", "text" : "RT @JimRoepcke: (repost) Looking for a senior \/ lead iOS Developer or Mentor? I\u2019m available. http:\/\/t.co\/8Zu6lsrmST\n\nPlease retweet! #iOS", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2882,7 +2943,7 @@ Grailbird.data.tweets_2014_01 = "id" : 424249514187186176, "created_at" : "2014-01-17 18:39:01 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -2903,7 +2964,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Erik Bryn", @@ -2925,7 +2986,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "424290405656449024", "text" : "RT @ebryn: We\u2019re getting close to raw JS speed here with Ember.js + HTMLBars: http:\/\/t.co\/eZaU8HPPJa Faster than React.js now at least :)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2964,7 +3025,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2986,7 +3047,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3008,7 +3069,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3030,7 +3091,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Anton Arhipov", @@ -3074,7 +3135,7 @@ Grailbird.data.tweets_2014_01 = "screen_name" : "antonarhipov", "protected" : false, "id_str" : "94757717", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/841913756137451522\/R7c9IqgH_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039537764902088704\/kx0dSwm5_normal.jpg", "id" : 94757717, "verified" : false } @@ -3091,7 +3152,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "New Relic", @@ -3204,10 +3265,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ButtCohen", + "name" : "Buttcoin", "screen_name" : "ButtCoin", "indices" : [ 3, 12 ], "id_str" : "305854715", @@ -3234,7 +3295,7 @@ Grailbird.data.tweets_2014_01 = "id" : 423959384780070913, "created_at" : "2014-01-16 23:26:08 +0000", "user" : { - "name" : "ButtCohen", + "name" : "Buttcoin", "screen_name" : "ButtCoin", "protected" : false, "id_str" : "305854715", @@ -3255,7 +3316,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven Frank", @@ -3293,7 +3354,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -3406,7 +3467,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -3439,7 +3500,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Casey Liss", @@ -3478,7 +3539,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3500,7 +3561,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -3517,7 +3578,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "422953732775493632", "text" : "RT @chockenberry: IS THERE A TRIPPIN BALLS EMOJI ASKING FOR A FRIEND", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3551,7 +3612,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -3584,7 +3645,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -3622,7 +3683,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3644,7 +3705,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3666,7 +3727,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -3699,7 +3760,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -3732,7 +3793,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -3765,7 +3826,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jed Schmidt", @@ -3793,7 +3854,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jed Schmidt", @@ -3861,7 +3922,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3883,7 +3944,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3905,7 +3966,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3927,7 +3988,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3949,7 +4010,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3971,7 +4032,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Landon Fuller", @@ -4032,7 +4093,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse iOS", @@ -4049,7 +4110,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "422193152124919809", "text" : "RT @Horse_iOS: nil, NULL, and NSNull walk into a bar", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4083,7 +4144,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "JonathonW", @@ -4119,7 +4180,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay: The New Batch", + "name" : "Action Jay: Spooky Boi", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -4149,7 +4210,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Jordens", @@ -4202,7 +4263,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay: The New Batch", + "name" : "Action Jay: Spooky Boi", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -4235,7 +4296,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay: The New Batch", + "name" : "Action Jay: Spooky Boi", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -4268,7 +4329,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Action Jay: The New Batch", + "name" : "Action Jay: Spooky Boi", "screen_name" : "action_jay", "indices" : [ 0, 11 ], "id_str" : "6608642", @@ -4298,7 +4359,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robert", @@ -4337,7 +4398,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -4405,7 +4466,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robert", @@ -4444,7 +4505,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "JonathonW", @@ -4483,7 +4544,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matthew Inman", @@ -4544,7 +4605,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tom Dale", @@ -4577,7 +4638,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -4610,7 +4671,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brett Fitzner", @@ -4643,7 +4704,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4665,7 +4726,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -4698,11 +4759,11 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -4791,7 +4852,7 @@ Grailbird.data.tweets_2014_01 = "created_at" : "2014-01-11 14:45:41 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -4811,7 +4872,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brett Fitzner", @@ -4847,7 +4908,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tane Piper\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74\uDB40\uDC7F\uD83C\uDDF3\uD83C\uDDF1\uD83C\uDDEA\uD83C\uDDFA", + "name" : "Tane Piper", "screen_name" : "tanepiper", "indices" : [ 0, 10 ], "id_str" : "20693", @@ -4859,7 +4920,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "815114", "id" : 815114 }, { - "name" : "jenn schiffer", + "name" : "jenn \uD83C\uDF83\u2019lantern", "screen_name" : "jennschiffer", "indices" : [ 23, 36 ], "id_str" : "12524622", @@ -4898,7 +4959,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "815114", "id" : 815114 }, { - "name" : "jenn schiffer", + "name" : "jenn \uD83C\uDF83\u2019lantern", "screen_name" : "jennschiffer", "indices" : [ 53, 66 ], "id_str" : "12524622", @@ -4918,7 +4979,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jenn schiffer", + "name" : "jenn \uD83C\uDF83\u2019lantern", "screen_name" : "jennschiffer", "indices" : [ 37, 50 ], "id_str" : "12524622", @@ -4958,7 +5019,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "PressFriendly", @@ -5019,7 +5080,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "StockFinds", @@ -5132,10 +5193,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Felix Gnass \uD83D\uDD73\uFE0F\uD83D\uDEB6", + "name" : "Felix Gnass", "screen_name" : "fgnass", "indices" : [ 0, 7 ], "id_str" : "15208068", @@ -5165,10 +5226,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Felix Gnass \uD83D\uDD73\uFE0F\uD83D\uDEB6", + "name" : "Felix Gnass", "screen_name" : "fgnass", "indices" : [ 3, 10 ], "id_str" : "15208068", @@ -5222,7 +5283,7 @@ Grailbird.data.tweets_2014_01 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Felix Gnass \uD83D\uDD73\uFE0F\uD83D\uDEB6", + "name" : "Felix Gnass", "screen_name" : "fgnass", "protected" : false, "id_str" : "15208068", @@ -5243,7 +5304,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -5344,7 +5405,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5417,7 +5478,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Yehuda Katz \uD83E\uDD68", @@ -5497,7 +5558,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -5597,7 +5658,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Jurewitz", @@ -5614,7 +5675,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "421086078322630656", "text" : "RT @Jury: Are you a fan of custom keybindings? Keyboard Shortcuts supports MenuTitle->SubmenuTitle syntax if you ever need to particularly \u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5723,7 +5784,7 @@ Grailbird.data.tweets_2014_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -5742,7 +5803,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "421057701213257729", "text" : "RT @JimRoepcke: Rogers charges for \u201Cdata usage\u201D for traffic *between devices on a local home network*! http:\/\/t.co\/IH1DVSt5WK (Please RT to\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5760,7 +5821,7 @@ Grailbird.data.tweets_2014_01 = "id" : 420974351161122817, "created_at" : "2014-01-08 17:44:41 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -5781,7 +5842,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -5838,7 +5899,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5868,7 +5929,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -5901,7 +5962,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -5934,7 +5995,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5956,7 +6017,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -5984,7 +6045,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "420227497033080835", "text" : "RT @siracusa: If I reposted this with a new date, I wonder if anyone would notice: http:\/\/t.co\/ZcWkBrWs4H \/cc @counternotions", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kontra", @@ -6034,10 +6095,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 0, 11 ], "id_str" : "2911221", @@ -6073,10 +6134,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 3, 14 ], "id_str" : "2911221", @@ -6115,11 +6176,11 @@ Grailbird.data.tweets_2014_01 = "id" : 420013592436436992, "created_at" : "2014-01-06 02:06:58 +0000", "user" : { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964058293306970112\/pfc-Jpsc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/993626676302000129\/tjoG13J4_normal.jpg", "id" : 2911221, "verified" : true } @@ -6136,7 +6197,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -6169,7 +6230,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tom Dale", @@ -6197,7 +6258,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "419512634388389889", "text" : "RT @tomdale: Literally the best error message I\u2019ve ever seen, from @slackhq. https:\/\/t.co\/NNZiAce90G", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Slack", @@ -6242,7 +6303,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse JS", @@ -6293,7 +6354,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6315,7 +6376,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -6324,7 +6385,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "5637652", "id" : 5637652 }, { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 14, 25 ], "id_str" : "2911221", @@ -6354,10 +6415,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brent Simmons", + "name" : "inessential.com", "screen_name" : "brentsimmons", "indices" : [ 0, 13 ], "id_str" : "652293", @@ -6385,7 +6446,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fernando Briano", @@ -6430,7 +6491,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6452,7 +6513,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6474,10 +6535,10 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -6504,11 +6565,11 @@ Grailbird.data.tweets_2014_01 = "id" : 418838732528029696, "created_at" : "2014-01-02 20:18:30 +0000", "user" : { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/554130348288643072\/rnI84vFt_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996296780751912961\/vglv97x-_normal.jpg", "id" : 27302287, "verified" : false } @@ -6525,7 +6586,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Cook", @@ -6558,7 +6619,7 @@ Grailbird.data.tweets_2014_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -6575,7 +6636,7 @@ Grailbird.data.tweets_2014_01 = "id_str" : "418297611464867840", "text" : "RT @wwwtxt: If you're a long-distance telephone company and want me to switch to your service, please hang up and try again in the year 201\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2014_02.js b/public/tweets/data/js/tweets/2014_02.js index 972683e..7dbd789 100755 --- a/public/tweets/data/js/tweets/2014_02.js +++ b/public/tweets/data/js/tweets/2014_02.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2014_02 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daring Fireball", @@ -61,7 +61,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -100,7 +100,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robert Jackson", @@ -133,7 +133,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -166,7 +166,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -202,7 +202,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -224,7 +224,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -251,7 +251,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ziv Unger", @@ -327,7 +327,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "mikeash", @@ -344,7 +344,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "439251816438444032", "text" : "RT @mikeash: \"Apple designed the iOS platform with security at its core, which is why it took us a year to notice that we didn't validate T\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -378,10 +378,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "-J-u-h-a-", + "name" : "Juha", "screen_name" : "juhasaarinen", "indices" : [ 3, 16 ], "id_str" : "15829574", @@ -470,11 +470,11 @@ Grailbird.data.tweets_2014_02 = "id" : 439176400696659969, "created_at" : "2014-02-27 23:13:08 +0000", "user" : { - "name" : "-J-u-h-a-", + "name" : "Juha", "screen_name" : "juhasaarinen", "protected" : false, "id_str" : "15829574", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/983568291112280064\/0cl734Gj_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1043983841717866503\/K-9-RK29_normal.jpg", "id" : 15829574, "verified" : true } @@ -491,7 +491,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kontra", @@ -524,7 +524,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -549,7 +549,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Feedbin", @@ -582,7 +582,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -604,7 +604,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Feedbin", @@ -637,7 +637,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GminusG", @@ -708,7 +708,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michelle Tilley \uD83C\uDFCD\uFE0F\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", @@ -717,7 +717,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "5511322", "id" : 5511322 }, { - "name" : "Trek Glowacki", + "name" : "\uD83D\uDC7B Javas Crypt Keeper \uD83C\uDF83", "screen_name" : "trek", "indices" : [ 12, 17 ], "id_str" : "1291711", @@ -753,7 +753,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fedor Indutny", @@ -786,7 +786,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Shit SO says", @@ -837,7 +837,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -870,7 +870,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joseph Martel", @@ -903,7 +903,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -934,11 +934,11 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 0, 14 ], "id_str" : "1236101", "id" : 1236101 @@ -955,7 +955,7 @@ Grailbird.data.tweets_2014_02 = "id" : 438757727334965249, "in_reply_to_status_id" : 438754106195582976, "created_at" : "2014-02-26 19:29:28 +0000", - "in_reply_to_screen_name" : "BenedictEvans", + "in_reply_to_screen_name" : "benedictevans", "in_reply_to_user_id_str" : "1236101", "user" : { "name" : "Sami Samhuri", @@ -967,7 +967,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "HackerNewsOnion", @@ -1018,7 +1018,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1040,7 +1040,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1067,10 +1067,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 3, 7 ], "id_str" : "8038312", @@ -1138,7 +1138,7 @@ Grailbird.data.tweets_2014_02 = "in_reply_to_screen_name" : "indutny", "in_reply_to_user_id_str" : "92915570", "user" : { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "protected" : false, "id_str" : "8038312", @@ -1159,7 +1159,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1181,7 +1181,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -1237,7 +1237,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1264,10 +1264,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -1281,7 +1281,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "438448327810494464", "text" : "RT @JimRoepcke: Amber Alert: RCMP looking for 4-door, light brown 2010 Dodge Ram stolen in Grand Prairie containing 7 month old girl. http:\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1299,7 +1299,7 @@ Grailbird.data.tweets_2014_02 = "id" : 438427660507566080, "created_at" : "2014-02-25 21:37:54 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -1320,7 +1320,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -1337,7 +1337,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "438388242979622912", "text" : "RT @tapbot_paul: When is Apple going to fix this security bug I feel totally unsafe.\n\n\"OS X Update 10.9.2\"\n\nRestart Required? Screw it, it'\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1354,7 +1354,7 @@ Grailbird.data.tweets_2014_02 = "screen_name" : "tapbot_paul", "protected" : false, "id_str" : "18247541", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849243635178778624\/JXnBOvr__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996375435234570240\/AobDpgxZ_normal.jpg", "id" : 18247541, "verified" : false } @@ -1371,7 +1371,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "JetBrains AppCode", @@ -1484,7 +1484,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1533,7 +1533,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -1569,7 +1569,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Erik Bryn", @@ -1608,10 +1608,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -1641,10 +1641,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -1671,7 +1671,7 @@ Grailbird.data.tweets_2014_02 = "id" : 437271378492809216, "created_at" : "2014-02-22 17:03:15 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -1692,7 +1692,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -1725,7 +1725,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Langley", @@ -1758,7 +1758,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Exponent Podcast", @@ -1819,7 +1819,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "tom robinson", @@ -1852,58 +1852,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Christopher Soghoian", - "screen_name" : "csoghoian", - "indices" : [ 3, 13 ], - "id_str" : "14669471", - "id" : 14669471 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "437008832548466688", - "text" : "RT @csoghoian: Don't worry. The security update used to patch Apple's iOS SSL authentication flaw will be delivered to you securely via a S\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "436997563343200256", - "text" : "Don't worry. The security update used to patch Apple's iOS SSL authentication flaw will be delivered to you securely via a SSL connection.", - "id" : 436997563343200256, - "created_at" : "2014-02-21 22:55:12 +0000", - "user" : { - "name" : "Christopher Soghoian", - "screen_name" : "csoghoian", - "protected" : false, - "id_str" : "14669471", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000723950844\/386b29d0ac8506a0d916f7fa6634e4c8_normal.jpeg", - "id" : 14669471, - "verified" : false - } - }, - "id" : 437008832548466688, - "created_at" : "2014-02-21 23:39:59 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Maria Ignatova", @@ -2016,10 +1965,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -2049,7 +1998,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven Frank", @@ -2082,7 +2031,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven Frank", @@ -2115,7 +2064,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -2138,7 +2087,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "436933930915098624", "text" : "RT @fyrite: @_sjs yup, one of the reasons I've come to prefer sublime text over Textpad", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -2183,7 +2132,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2210,7 +2159,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Resig", @@ -2248,7 +2197,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Richard Dawkins", @@ -2304,7 +2253,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Richard Dawkins", @@ -2355,7 +2304,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -2388,7 +2337,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joe Armstrong", @@ -2461,11 +2410,11 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -2492,7 +2441,7 @@ Grailbird.data.tweets_2014_02 = "created_at" : "2014-02-19 22:48:13 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -2512,7 +2461,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -2545,7 +2494,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -2578,7 +2527,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Topher Bullock", @@ -2646,7 +2595,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Schwarz", @@ -2707,7 +2656,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bob O'Donnell", @@ -2746,7 +2695,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bob O'Donnell", @@ -2819,7 +2768,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -2852,7 +2801,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -2885,7 +2834,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -2918,7 +2867,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -2949,7 +2898,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tyler Hunt", @@ -3010,7 +2959,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Anil Dash", @@ -3044,7 +2993,7 @@ Grailbird.data.tweets_2014_02 = "screen_name" : "anildash", "protected" : false, "id_str" : "36823", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964333187328491520\/nPt-GBf5_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1040592282032984071\/RC8We7BG_normal.jpg", "id" : 36823, "verified" : true } @@ -3061,7 +3010,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3083,10 +3032,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Trek Glowacki", + "name" : "\uD83D\uDC7B Javas Crypt Keeper \uD83C\uDF83", "screen_name" : "trek", "indices" : [ 3, 8 ], "id_str" : "1291711", @@ -3123,7 +3072,7 @@ Grailbird.data.tweets_2014_02 = "id" : 435502536808611841, "created_at" : "2014-02-17 19:54:30 +0000", "user" : { - "name" : "Trek Glowacki", + "name" : "\uD83D\uDC7B Javas Crypt Keeper \uD83C\uDF83", "screen_name" : "trek", "protected" : false, "id_str" : "1291711", @@ -3144,7 +3093,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -3177,7 +3126,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jan-Michael Cart", @@ -3290,7 +3239,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -3351,7 +3300,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Computer Science", @@ -3424,7 +3373,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -3457,7 +3406,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -3490,7 +3439,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -3523,7 +3472,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -3556,7 +3505,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -3589,7 +3538,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -3622,7 +3571,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Casey Johnston", @@ -3655,7 +3604,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -3688,7 +3637,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -3721,7 +3670,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Casey Johnston", @@ -3754,7 +3703,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3776,7 +3725,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3798,7 +3747,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -3831,7 +3780,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brock Whitten", @@ -3864,10 +3813,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Trek Glowacki", + "name" : "\uD83D\uDC7B Javas Crypt Keeper \uD83C\uDF83", "screen_name" : "trek", "indices" : [ 0, 5 ], "id_str" : "1291711", @@ -3897,7 +3846,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -3930,7 +3879,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dom Hazael-Massieux", @@ -3987,7 +3936,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dom Hazael-Massieux", @@ -3997,7 +3946,7 @@ Grailbird.data.tweets_2014_02 = "id" : 19218240 }, { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 15, 29 ], "id_str" : "1236101", "id" : 1236101 @@ -4026,7 +3975,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4048,7 +3997,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4070,7 +4019,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -4121,7 +4070,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -4234,7 +4183,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fitzgerald Steele", @@ -4288,7 +4237,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "434411478800535552", "text" : "RT @fjsteele: My 7yo daughter captured the essence of programming after an hour with @hopscotch http:\/\/t.co\/693pMHmZFX", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Hopscotch", @@ -4460,7 +4409,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4482,7 +4431,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4504,7 +4453,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4526,7 +4475,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -4559,10 +4508,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -4599,7 +4548,7 @@ Grailbird.data.tweets_2014_02 = "id" : 434130588744699904, "created_at" : "2014-02-14 01:02:52 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -4620,123 +4569,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steven Frank", - "screen_name" : "stevenf", - "indices" : [ 3, 11 ], - "id_str" : "733813", - "id" : 733813 - } ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/stevenf\/status\/434112678445846529\/photo\/1", - "indices" : [ 17, 39 ], - "url" : "http:\/\/t.co\/aqlxzTEwhq", - "media_url" : "http:\/\/pbs.twimg.com\/media\/BgZHLkzCMAAXfDA.png", - "id_str" : "434112678269693952", - "id" : 434112678269693952, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BgZHLkzCMAAXfDA.png", - "sizes" : [ { - "h" : 504, - "resize" : "fit", - "w" : 740 - }, { - "h" : 504, - "resize" : "fit", - "w" : 740 - }, { - "h" : 504, - "resize" : "fit", - "w" : 740 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 463, - "resize" : "fit", - "w" : 680 - } ], - "media_alt" : "", - "display_url" : "pic.twitter.com\/aqlxzTEwhq" - } ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "434133250932367360", - "text" : "RT @stevenf: lol http:\/\/t.co\/aqlxzTEwhq", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/stevenf\/status\/434112678445846529\/photo\/1", - "indices" : [ 4, 26 ], - "url" : "http:\/\/t.co\/aqlxzTEwhq", - "media_url" : "http:\/\/pbs.twimg.com\/media\/BgZHLkzCMAAXfDA.png", - "id_str" : "434112678269693952", - "id" : 434112678269693952, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BgZHLkzCMAAXfDA.png", - "sizes" : [ { - "h" : 504, - "resize" : "fit", - "w" : 740 - }, { - "h" : 504, - "resize" : "fit", - "w" : 740 - }, { - "h" : 504, - "resize" : "fit", - "w" : 740 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 463, - "resize" : "fit", - "w" : 680 - } ], - "media_alt" : "", - "display_url" : "pic.twitter.com\/aqlxzTEwhq" - } ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "434112678445846529", - "text" : "lol http:\/\/t.co\/aqlxzTEwhq", - "id" : 434112678445846529, - "created_at" : "2014-02-13 23:51:42 +0000", - "user" : { - "name" : "Steven Frank", - "screen_name" : "stevenf", - "protected" : false, - "id_str" : "733813", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838378818\/avatar_normal.png", - "id" : 733813, - "verified" : true - } - }, - "id" : 434133250932367360, - "created_at" : "2014-02-14 01:13:27 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Machty_Sx", + "name" : "machteld_samuel_", "screen_name" : "machty", "indices" : [ 0, 7 ], "id_str" : "961332937064157187", @@ -4766,10 +4602,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -4799,7 +4635,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -4850,7 +4686,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -4901,7 +4737,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -4952,7 +4788,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -5015,7 +4851,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -5088,7 +4924,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -5139,7 +4975,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5166,7 +5002,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -5199,7 +5035,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -5232,7 +5068,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jerel Unruh", @@ -5271,7 +5107,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Bray", @@ -5384,7 +5220,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -5417,7 +5253,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Arq Backup", @@ -5478,7 +5314,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -5511,7 +5347,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -5544,7 +5380,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5571,7 +5407,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -5622,10 +5458,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5655,7 +5491,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -5689,7 +5525,7 @@ Grailbird.data.tweets_2014_02 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1005850629028352000\/jHsNM3wM_normal.jpg", "id" : 14231571, "verified" : true } @@ -5706,7 +5542,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -5739,7 +5575,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -5772,7 +5608,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -5840,7 +5676,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -5878,7 +5714,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "HackerNewsOnion", @@ -5929,7 +5765,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5951,7 +5787,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5973,7 +5809,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5995,7 +5831,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6044,7 +5880,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6071,7 +5907,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -6088,7 +5924,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "431895590524313601", "text" : "RT @wwwtxt: At any moment, I could lose my connectivity and disappear. Some would wonder what happened, some may cheer, most would never no\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6122,7 +5958,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -6194,7 +6030,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -6222,7 +6058,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -6244,7 +6080,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "431471169510703104", "text" : "RT @tapbot_paul: NBC should be ashamed of itself for running this story.\nhttp:\/\/t.co\/XBiIuOCwBz\n\nDetails on what actually happened.\nhttp:\/\/\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6271,7 +6107,7 @@ Grailbird.data.tweets_2014_02 = "screen_name" : "tapbot_paul", "protected" : false, "id_str" : "18247541", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849243635178778624\/JXnBOvr__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996375435234570240\/AobDpgxZ_normal.jpg", "id" : 18247541, "verified" : false } @@ -6321,7 +6157,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -6354,7 +6190,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Twitterrific", @@ -6405,7 +6241,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "88489441", "id" : 88489441 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 24, 38 ], "id_str" : "29255412", @@ -6435,10 +6271,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6474,7 +6310,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -6507,7 +6343,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6539,7 +6375,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -6582,7 +6418,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Axel Rauschmayer", @@ -6625,7 +6461,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ember Sherpa", @@ -6663,7 +6499,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian", @@ -6696,7 +6532,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Axel Rauschmayer", @@ -6729,7 +6565,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ember Sherpa", @@ -6752,7 +6588,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "430381629412892673", "text" : "RT @EmberSherpa: @_sjs arrow from controller to view should have events because events are handled within the Views.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -6797,7 +6633,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ember Sherpa", @@ -6820,7 +6656,7 @@ Grailbird.data.tweets_2014_02 = "id_str" : "430381620399316992", "text" : "RT @EmberSherpa: @_sjs your diagram shows views and components sending actions to the route directly, which doesn\u2019t happen. It goes through\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -6865,7 +6701,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -6898,7 +6734,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian", @@ -6937,7 +6773,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ember Watch", @@ -6982,10 +6818,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7015,7 +6851,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -7066,7 +6902,7 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -7119,10 +6955,10 @@ Grailbird.data.tweets_2014_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Trek Glowacki", + "name" : "\uD83D\uDC7B Javas Crypt Keeper \uD83C\uDF83", "screen_name" : "trek", "indices" : [ 0, 5 ], "id_str" : "1291711", diff --git a/public/tweets/data/js/tweets/2014_03.js b/public/tweets/data/js/tweets/2014_03.js index 08d66bf..552166c 100755 --- a/public/tweets/data/js/tweets/2014_03.js +++ b/public/tweets/data/js/tweets/2014_03.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2014_03 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -33,7 +33,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -60,7 +60,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Hipwood", @@ -75,7 +75,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "972651", "id" : 972651 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 26, 37 ], "id_str" : "894911", @@ -105,10 +105,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -134,7 +134,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "450723590485188608", "text" : "RT @JimRoepcke: Very excited that @_sjs has joined @Mashable! Thrilled to have Sami on our mobile development team. :-)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -159,7 +159,7 @@ Grailbird.data.tweets_2014_03 = "id" : 450720443045912576, "created_at" : "2014-03-31 19:45:02 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -180,7 +180,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mashable", @@ -189,7 +189,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "972651", "id" : 972651 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 47, 58 ], "id_str" : "894911", @@ -214,7 +214,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -236,10 +236,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -274,7 +274,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Shaw Help", @@ -302,7 +302,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -324,10 +324,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -347,7 +347,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "449735545548066816", "text" : "RT @JimRoepcke: @_sjs *deletes hockey tweet he was writing*", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -371,7 +371,7 @@ Grailbird.data.tweets_2014_03 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -392,7 +392,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -417,7 +417,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -450,7 +450,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -583,10 +583,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "fitzgen", + "name" : "_pext_u64(fitzgen, \uD83C\uDF83mask)", "screen_name" : "fitzgen", "indices" : [ 3, 11 ], "id_str" : "182855710", @@ -629,7 +629,7 @@ Grailbird.data.tweets_2014_03 = "id" : 449641605461331968, "created_at" : "2014-03-28 20:18:07 +0000", "user" : { - "name" : "fitzgen", + "name" : "_pext_u64(fitzgen, \uD83C\uDF83mask)", "screen_name" : "fitzgen", "protected" : false, "id_str" : "182855710", @@ -650,7 +650,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Cook", @@ -723,7 +723,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -732,7 +732,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "108814849", "id" : 108814849 }, { - "name" : "tef's locked account", + "name" : "this is not my beautiful wife", "screen_name" : "tef", "indices" : [ 12, 16 ], "id_str" : "16681276", @@ -762,10 +762,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "tef's locked account", + "name" : "this is not my beautiful wife", "screen_name" : "tef", "indices" : [ 0, 4 ], "id_str" : "16681276", @@ -801,7 +801,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -834,7 +834,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -867,7 +867,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -900,7 +900,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -933,7 +933,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -966,7 +966,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -1032,7 +1032,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Stack Overflow", @@ -1065,7 +1065,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -1145,7 +1145,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -1178,7 +1178,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1200,7 +1200,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -1233,7 +1233,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Shaw Help", @@ -1266,7 +1266,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1288,7 +1288,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1310,7 +1310,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1332,7 +1332,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RogersHelps", @@ -1363,7 +1363,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RogersHelps", @@ -1394,7 +1394,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Shaw Help", @@ -1422,7 +1422,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Shaw Help", @@ -1450,7 +1450,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marcelo Somers", @@ -1489,7 +1489,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marcelo Somers", @@ -1594,7 +1594,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Feedbin", @@ -1625,10 +1625,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 0, 4 ], "id_str" : "12712742", @@ -1663,7 +1663,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -1696,7 +1696,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -1729,7 +1729,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -1767,7 +1767,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -1828,7 +1828,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Patrick Walton", @@ -1889,7 +1889,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -1967,7 +1967,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -2006,78 +2006,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Eric Allam \u26A1\uFE0F", - "screen_name" : "eallam", - "indices" : [ 3, 10 ], - "id_str" : "46783", - "id" : 46783 - }, { - "name" : "Marco Arment", - "screen_name" : "marcoarment", - "indices" : [ 12, 24 ], - "id_str" : "14231571", - "id" : 14231571 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "449231842831372289", - "text" : "RT @eallam: @marcoarment heroku is about an order of magnitude more expensive, for about 50% time savings", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Marco Arment", - "screen_name" : "marcoarment", - "indices" : [ 0, 12 ], - "id_str" : "14231571", - "id" : 14231571 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "449213712759787521", - "geo" : { }, - "id_str" : "449226904068186112", - "in_reply_to_user_id" : 14231571, - "text" : "@marcoarment heroku is about an order of magnitude more expensive, for about 50% time savings", - "id" : 449226904068186112, - "in_reply_to_status_id" : 449213712759787521, - "created_at" : "2014-03-27 16:50:14 +0000", - "in_reply_to_screen_name" : "marcoarment", - "in_reply_to_user_id_str" : "14231571", - "user" : { - "name" : "Eric Allam \u26A1\uFE0F", - "screen_name" : "eallam", - "protected" : false, - "id_str" : "46783", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/598438412555833344\/wpsQ6eoN_normal.jpg", - "id" : 46783, - "verified" : false - } - }, - "id" : 449231842831372289, - "created_at" : "2014-03-27 17:09:52 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2107,7 +2039,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2129,9 +2061,15 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { + "name" : "Isidro \u00C1valos Cambr\u00F3n", + "screen_name" : "ICambron", + "indices" : [ 0, 9 ], + "id_str" : "1015749522499104768", + "id" : 1015749522499104768 + }, { "name" : "Reginald Braithwaite", "screen_name" : "raganwald", "indices" : [ 10, 20 ], @@ -2157,9 +2095,15 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { + "name" : "Isidro \u00C1valos Cambr\u00F3n", + "screen_name" : "ICambron", + "indices" : [ 0, 9 ], + "id_str" : "1015749522499104768", + "id" : 1015749522499104768 + }, { "name" : "Reginald Braithwaite", "screen_name" : "raganwald", "indices" : [ 10, 20 ], @@ -2185,7 +2129,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -2236,10 +2180,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mat Honan \uD83D\uDCF0", + "name" : "Mat Honan", "screen_name" : "mat", "indices" : [ 0, 4 ], "id_str" : "11113", @@ -2275,7 +2219,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2308,10 +2252,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -2336,7 +2280,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "448642516447801344", "text" : "RT @JimRoepcke: Tweaks looks extremely cool and useful. Thanks for open-sourcing it @chpwn! https:\/\/t.co\/9q3DIa87Dk", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Grant Paul", @@ -2360,7 +2304,7 @@ Grailbird.data.tweets_2014_03 = "id" : 448512746439852033, "created_at" : "2014-03-25 17:32:26 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -2381,7 +2325,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2414,7 +2358,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "DHH", @@ -2475,7 +2419,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -2508,7 +2452,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -2544,7 +2488,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -2577,7 +2521,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -2610,7 +2554,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2632,58 +2576,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Steven Frank", - "screen_name" : "stevenf", - "indices" : [ 3, 11 ], - "id_str" : "733813", - "id" : 733813 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "447053819147329536", - "text" : "RT @stevenf: Is the whole exercise moot if I\u2019m still pushing all my passwords and a copy of my entire hard drive up to a mystery server?", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "447039574120742912", - "text" : "Is the whole exercise moot if I\u2019m still pushing all my passwords and a copy of my entire hard drive up to a mystery server?", - "id" : 447039574120742912, - "created_at" : "2014-03-21 15:58:34 +0000", - "user" : { - "name" : "Steven Frank", - "screen_name" : "stevenf", - "protected" : false, - "id_str" : "733813", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838378818\/avatar_normal.png", - "id" : 733813, - "verified" : true - } - }, - "id" : 447053819147329536, - "created_at" : "2014-03-21 16:55:11 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rico Sta. Cruz", @@ -2734,7 +2627,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kiran Jonnalagadda", @@ -2773,7 +2666,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rico Sta. Cruz", @@ -2806,7 +2699,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2844,7 +2737,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2877,7 +2770,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2916,10 +2809,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2949,10 +2842,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -2982,7 +2875,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -3015,7 +2908,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Denya", @@ -3083,7 +2976,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3105,7 +2998,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horace Dediu", @@ -3156,7 +3049,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "JF Bastien", @@ -3207,7 +3100,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3229,7 +3122,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3251,7 +3144,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "James Whatley", @@ -3295,7 +3188,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -3304,7 +3197,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "636923", "id" : 636923 }, { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 14, 25 ], "id_str" : "2911221", @@ -3318,10 +3211,10 @@ Grailbird.data.tweets_2014_03 = "id_str" : "446136955441405952", "text" : "RT @siracusa: @wilshipley Why no alt text button for people who read by tapping links to the non-mobile site in tweets on iOS? Drives me cr\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 0, 11 ], "id_str" : "2911221", @@ -3363,7 +3256,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeff Atwood", @@ -3396,7 +3289,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -3434,7 +3327,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -3467,7 +3360,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -3500,7 +3393,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -3533,7 +3426,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -3566,7 +3459,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -3605,7 +3498,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -3644,7 +3537,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -3683,7 +3576,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -3722,7 +3615,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sacha Sayan", @@ -3761,7 +3654,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sacha Sayan", @@ -3800,7 +3693,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sacha Sayan", @@ -3839,7 +3732,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -3848,7 +3741,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "3140856846", "id" : 3140856846 }, { - "name" : "MD", + "name" : "No Comment", "screen_name" : "drance", "indices" : [ 10, 17 ], "id_str" : "7440462", @@ -3878,7 +3771,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -3887,7 +3780,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "3140856846", "id" : 3140856846 }, { - "name" : "MD", + "name" : "No Comment", "screen_name" : "drance", "indices" : [ 10, 17 ], "id_str" : "7440462", @@ -3917,7 +3810,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -3950,7 +3843,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jake Archibald", @@ -4073,7 +3966,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "DF Styleguide", @@ -4090,7 +3983,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "444676540891009024", "text" : "RT @DFstyleguide: Woz thinks the game is Yahtzee.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4124,7 +4017,68 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Josh Helfferich", + "screen_name" : "JoshHelfferich", + "indices" : [ 3, 18 ], + "id_str" : "563200400", + "id" : 563200400 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 80, 102 ], + "url" : "http:\/\/t.co\/xBJdcsdAuz", + "expanded_url" : "http:\/\/www.youtube.com\/watch?v=frjaQ17yAww", + "display_url" : "youtube.com\/watch?v=frjaQ1\u2026" + } ] + }, + "geo" : { }, + "id_str" : "444647986270699520", + "text" : "RT @JoshHelfferich: Hipsters at SXSW professing to love bands that don't exist: http:\/\/t.co\/xBJdcsdAuz", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 60, 82 ], + "url" : "http:\/\/t.co\/xBJdcsdAuz", + "expanded_url" : "http:\/\/www.youtube.com\/watch?v=frjaQ17yAww", + "display_url" : "youtube.com\/watch?v=frjaQ1\u2026" + } ] + }, + "geo" : { }, + "id_str" : "444612377254719488", + "text" : "Hipsters at SXSW professing to love bands that don't exist: http:\/\/t.co\/xBJdcsdAuz", + "id" : 444612377254719488, + "created_at" : "2014-03-14 23:13:45 +0000", + "user" : { + "name" : "Josh Helfferich", + "screen_name" : "JoshHelfferich", + "protected" : false, + "id_str" : "563200400", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/501786728563093504\/H7lzbmtW_normal.jpeg", + "id" : 563200400, + "verified" : false + } + }, + "id" : 444647986270699520, + "created_at" : "2014-03-15 01:35:15 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -4157,7 +4111,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco.org", @@ -4190,7 +4144,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco.org", @@ -4223,7 +4177,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4256,7 +4210,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4294,7 +4248,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4327,7 +4281,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4360,7 +4314,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4398,7 +4352,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4437,7 +4391,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Phillips Beer", @@ -4465,7 +4419,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ars Technica", @@ -4504,7 +4458,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -4537,7 +4491,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "J Cornelius", @@ -4650,7 +4604,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4672,7 +4626,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Computer Science", @@ -4723,7 +4677,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -4774,7 +4728,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "DHH", @@ -4819,7 +4773,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -4870,7 +4824,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4892,7 +4846,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "DHH", @@ -5009,7 +4963,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5060,7 +5014,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5120,7 +5074,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5153,7 +5107,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5186,7 +5140,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5219,7 +5173,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5252,7 +5206,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ember Sherpa", @@ -5296,7 +5250,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5329,7 +5283,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5362,7 +5316,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5395,7 +5349,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Feedbin", @@ -5428,7 +5382,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Feedbin", @@ -5489,7 +5443,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5572,7 +5526,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Glenn Fleishman", @@ -5581,7 +5535,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "8315692", "id" : 8315692 }, { - "name" : "Jenni Leder\uD83D\uDC69\uD83C\uDFFB\u200D\uD83C\uDFA4", + "name" : "\uD83D\uDC80 Jennilator 2 : Judgement Day \uD83E\uDD16", "screen_name" : "thoughtbrain", "indices" : [ 8, 21 ], "id_str" : "14303235", @@ -5623,7 +5577,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Glenn Fleishman", @@ -5632,7 +5586,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "8315692", "id" : 8315692 }, { - "name" : "Jenni Leder\uD83D\uDC69\uD83C\uDFFB\u200D\uD83C\uDFA4", + "name" : "\uD83D\uDC80 Jennilator 2 : Judgement Day \uD83E\uDD16", "screen_name" : "thoughtbrain", "indices" : [ 8, 21 ], "id_str" : "14303235", @@ -5674,7 +5628,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5696,7 +5650,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "mikeash", @@ -5729,7 +5683,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5751,7 +5705,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "BrendanEich", @@ -5789,7 +5743,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Parker", @@ -5857,10 +5811,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5890,10 +5844,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5929,10 +5883,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5999,10 +5953,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6072,7 +6026,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6111,7 +6065,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6152,10 +6106,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6191,7 +6145,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jonas Bon\u00E9r", @@ -6224,7 +6178,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Wilander", @@ -6263,10 +6217,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6296,7 +6250,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6318,7 +6272,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -6351,7 +6305,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -6389,7 +6343,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -6440,7 +6394,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Erik Bryn", @@ -6473,10 +6427,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6506,10 +6460,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6544,7 +6498,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6566,7 +6520,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Khaos Tian", @@ -6620,7 +6574,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "441813405192581120", "text" : "RT @KhaosT: @marcoarment OS X 10.9.3 brings official option for upscale resolution and full MST support. http:\/\/t.co\/GjKYJZBYZi", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -6694,7 +6648,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Toran Billups", @@ -6750,7 +6704,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Erik Bryn", @@ -6781,7 +6735,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kontra", @@ -6814,10 +6768,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tony Arcieri", + "name" : "Spooky Public Key Info (SPKI)", "screen_name" : "bascule", "indices" : [ 0, 8 ], "id_str" : "6083342", @@ -6853,7 +6807,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jason Snell", @@ -6904,10 +6858,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brent Simmons", + "name" : "inessential.com", "screen_name" : "brentsimmons", "indices" : [ 0, 13 ], "id_str" : "652293", @@ -6937,10 +6891,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brent Simmons", + "name" : "inessential.com", "screen_name" : "brentsimmons", "indices" : [ 0, 13 ], "id_str" : "652293", @@ -6975,10 +6929,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brent Simmons", + "name" : "inessential.com", "screen_name" : "brentsimmons", "indices" : [ 0, 13 ], "id_str" : "652293", @@ -7046,7 +7000,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -7109,7 +7063,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -7142,7 +7096,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "matt h", @@ -7210,7 +7164,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Brown \uD83D\uDCCE", @@ -7278,10 +7232,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7316,7 +7270,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -7349,7 +7303,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Erik Bryn", @@ -7372,7 +7326,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "441272019703693315", "text" : "RT @ebryn: I treat my Ember.js apps just like my iOS app. It has it\u2019s own repo. Nobody sticks their iOS code in their backend @delwynd @bca\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Delwyn de Villiers", @@ -7423,7 +7377,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Chidgey", @@ -7462,7 +7416,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -7495,7 +7449,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -7534,7 +7488,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7556,7 +7510,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Parker", @@ -7595,10 +7549,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7628,7 +7582,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -7661,7 +7615,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7688,7 +7642,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeremy Daer", @@ -7727,7 +7681,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jeremy Daer", @@ -7788,7 +7742,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "HackerNewsOnion", @@ -7839,7 +7793,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jacob Terry", @@ -7893,7 +7847,7 @@ Grailbird.data.tweets_2014_03 = "screen_name" : "jerkob", "protected" : false, "id_str" : "15427589", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/838882925735211010\/70KZ9SWS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1048237792390795264\/Qc--nqUe_normal.jpg", "id" : 15427589, "verified" : false } @@ -7910,7 +7864,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Radley Balko", @@ -7919,7 +7873,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "15816595", "id" : 15816595 }, { - "name" : "MD", + "name" : "No Comment", "screen_name" : "drance", "indices" : [ 13, 20 ], "id_str" : "7440462", @@ -7949,10 +7903,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 3, 15 ], "id_str" : "6927562", @@ -7979,11 +7933,11 @@ Grailbird.data.tweets_2014_03 = "id" : 439973109341224961, "created_at" : "2014-03-02 03:58:58 +0000", "user" : { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "protected" : false, "id_str" : "6927562", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/934619752768647168\/4ixrnv8S_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046729068559978497\/T5_KOOBN_normal.jpg", "id" : 6927562, "verified" : true } @@ -8000,7 +7954,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "yan", @@ -8009,7 +7963,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "968881477", "id" : 968881477 }, { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 8, 12 ], "id_str" : "12712742", @@ -8045,7 +7999,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -8068,7 +8022,7 @@ Grailbird.data.tweets_2014_03 = "id_str" : "440381672043716608", "text" : "RT @siracusa: @caseyjohnston Hush now, important people are tweeting.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Casey Johnston", @@ -8113,7 +8067,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -8135,7 +8089,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "jalbertbowdenii", @@ -8168,7 +8122,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "jalbertbowdenii", @@ -8201,7 +8155,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -8256,7 +8210,7 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -8281,7 +8235,7 @@ Grailbird.data.tweets_2014_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -8323,10 +8277,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -8368,10 +8322,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -8413,10 +8367,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", @@ -8463,10 +8417,10 @@ Grailbird.data.tweets_2014_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD40\uD835\uDD64\uD835\uDD52\uD835\uDD52\uD835\uDD54 \u2124. \uD835\uDD4A\uD835\uDD54\uD835\uDD59\uD835\uDD5D\uD835\uDD66\uD835\uDD56\uD835\uDD65\uD835\uDD56\uD835\uDD63 \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", + "name" : "isaacspooky \uD83D\uDC99\uD83D\uDC9C\uD83D\uDC96\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", "screen_name" : "izs", "indices" : [ 0, 4 ], "id_str" : "8038312", diff --git a/public/tweets/data/js/tweets/2014_04.js b/public/tweets/data/js/tweets/2014_04.js index f1a4523..e0840bd 100755 --- a/public/tweets/data/js/tweets/2014_04.js +++ b/public/tweets/data/js/tweets/2014_04.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2014_04 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mashable Tech", @@ -33,7 +33,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -72,7 +72,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -105,7 +105,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Union Pacific Coffee", @@ -133,7 +133,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -190,7 +190,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GetCloak.com", @@ -223,7 +223,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -256,7 +256,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -289,7 +289,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -322,7 +322,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -375,7 +375,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -402,7 +402,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0645\u062D\u0630\u0648\u0641~", @@ -504,7 +504,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "KarynStepien", "protected" : false, "id_str" : "15954961", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/979325330975473665\/qJqncJaW_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1042452292320997376\/EQZFzUmF_normal.jpg", "id" : 15954961, "verified" : false } @@ -521,7 +521,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Drake", @@ -594,7 +594,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0645\u062D\u0630\u0648\u0641~", @@ -702,7 +702,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "KarynStepien", "protected" : false, "id_str" : "15954961", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/979325330975473665\/qJqncJaW_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1042452292320997376\/EQZFzUmF_normal.jpg", "id" : 15954961, "verified" : false } @@ -719,7 +719,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -744,7 +744,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -797,7 +797,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -836,7 +836,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -875,7 +875,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "DHH", @@ -936,7 +936,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "DHH", @@ -987,7 +987,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joel Irwin", @@ -1047,7 +1047,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "460965855254167554", "text" : "RT @irwindigital: @marcoarment John\u2019s \u201Crelatively speaking\u201D approval T-shirt. cc: @siracusa http:\/\/t.co\/esTSCPzw9U", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -1129,7 +1129,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -1152,7 +1152,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "460965334564868096", "text" : "RT @siracusa: @marcoarment That seems unlikely.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -1197,7 +1197,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -1288,7 +1288,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1315,7 +1315,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tom Maes", @@ -1436,14 +1436,14 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sarah Frumento", - "screen_name" : "Sarah_SLP", + "name" : "Sarah F", + "screen_name" : "sarah_slp", "indices" : [ 0, 10 ], - "id_str" : "222358903", - "id" : 222358903 + "id_str" : "1872176288", + "id" : 1872176288 } ], "media" : [ ], "hashtags" : [ ], @@ -1457,7 +1457,7 @@ Grailbird.data.tweets_2014_04 = "id" : 460475858155610113, "in_reply_to_status_id" : 460475750395572224, "created_at" : "2014-04-27 17:49:34 +0000", - "in_reply_to_screen_name" : "Sarah_SLP", + "in_reply_to_screen_name" : "SarahFrumento", "in_reply_to_user_id_str" : "222358903", "user" : { "name" : "Sami Samhuri", @@ -1469,7 +1469,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1494,7 +1494,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matt Brubeck", @@ -1545,7 +1545,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Spacecat Mushrooms", @@ -1596,7 +1596,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1621,7 +1621,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -1654,7 +1654,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -1767,7 +1767,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1794,7 +1794,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1821,7 +1821,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Hacker News", @@ -1854,7 +1854,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Anthony Nystr\u00F6m", @@ -1887,7 +1887,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "lawblob", @@ -1904,7 +1904,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "459826388963688449", "text" : "RT @lawblob: a cool thing about conference calls working from home is nobody knows I\u2019m shirtless, so it gives me a great ice-breaker to bri\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1947,7 +1947,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "14538248", "id" : 14538248 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 15, 26 ], "id_str" : "894911", @@ -1977,10 +1977,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2010,7 +2010,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "3eanuts", @@ -2032,7 +2032,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "459759708346142720", "text" : "RT @3eanuts: September 8, 1985 \u2014 \"He said to be there!\" http:\/\/t.co\/bRZcvJLYnd", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2071,7 +2071,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2104,7 +2104,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2137,10 +2137,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2170,7 +2170,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gregory Gisi", @@ -2201,7 +2201,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2234,7 +2234,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2267,7 +2267,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2297,12 +2297,6 @@ Grailbird.data.tweets_2014_04 = "indices" : [ 3, 13 ], "id_str" : "128721761", "id" : 128721761 - }, { - "name" : "Mario Antonetti", - "screen_name" : "thetrendycyborg", - "indices" : [ 103, 119 ], - "id_str" : "146300928", - "id" : 146300928 } ], "media" : [ ], "hashtags" : [ ], @@ -2314,13 +2308,7 @@ Grailbird.data.tweets_2014_04 = "retweeted_status" : { "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Mario Antonetti", - "screen_name" : "thetrendycyborg", - "indices" : [ 88, 104 ], - "id_str" : "146300928", - "id" : 146300928 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -2335,7 +2323,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "rexytseng", "protected" : false, "id_str" : "128721761", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/967562540585594881\/GLYYO0Xt_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1024299913864048640\/hLuuTWt5_normal.jpg", "id" : 128721761, "verified" : false } @@ -2456,7 +2444,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -2487,7 +2475,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2509,7 +2497,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Irish", @@ -2591,7 +2579,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse iOS", @@ -2608,7 +2596,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "459400776834490368", "text" : "RT @Horse_iOS: In addition, the new MacBooks feature a unique keyboard that prevents the user from comprehending whether or not they\u2019re hol\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2642,7 +2630,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Loom", @@ -2689,6 +2677,12 @@ Grailbird.data.tweets_2014_04 = "indices" : [ 71, 79 ], "id_str" : "325814484", "id" : 325814484 + }, { + "name" : "Picture Of Life", + "screen_name" : "PictureLife", + "indices" : [ 91, 103 ], + "id_str" : "992281334574792709", + "id" : 992281334574792709 } ], "media" : [ ], "hashtags" : [ ], @@ -2709,10 +2703,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "indices" : [ 3, 14 ], "id_str" : "2911221", @@ -2773,11 +2767,11 @@ Grailbird.data.tweets_2014_04 = "id" : 459132347313430529, "created_at" : "2014-04-24 00:50:56 +0000", "user" : { - "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE91\uD835\uDE92\uD835\uDE99\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", + "name" : "\uD835\uDEA0\uD835\uDE92\uD835\uDE95 \uD835\uDE9C\uD835\uDE99\uD835\uDE98\uD835\uDE98\uD835\uDE94\uD835\uDE95\uD835\uDE8E\uD835\uDEA2", "screen_name" : "wilshipley", "protected" : false, "id_str" : "2911221", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964058293306970112\/pfc-Jpsc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/993626676302000129\/tjoG13J4_normal.jpg", "id" : 2911221, "verified" : true } @@ -2858,7 +2852,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Casey Johnston", @@ -2981,7 +2975,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -3014,7 +3008,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Stats Canada", @@ -3065,7 +3059,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Leduc", @@ -3094,7 +3088,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "457177145505116160", "text" : "RT @paulleduc_5: @_sjs I'm not late to this whole facetweet thing am I? #kony2012 #yolo", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -3145,7 +3139,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Leduc", @@ -3178,7 +3172,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -3211,7 +3205,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -3249,7 +3243,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u0411\u0443\u0434\u0438\u043B\u043E\u0432\u0441\u043A\u0430\u044F \u0412\u0435\u0440\u0430", @@ -3282,7 +3276,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -3335,7 +3329,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andy Matuschak", @@ -3357,10 +3351,10 @@ Grailbird.data.tweets_2014_04 = "id_str" : "456861266225934336", "text" : "RT @andy_matuschak: \"Do not feed RSA private key information to the random subsystem as entropy.\" ahhh ahhh ahhkljs\n\nhttp:\/\/t.co\/QVrmlbfZy6\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ariadne auf paxos", + "name" : "worlds greatest dud", "screen_name" : "dijkstracula", "indices" : [ 126, 139 ], "id_str" : "14216743", @@ -3402,7 +3396,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -3435,7 +3429,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -3558,7 +3552,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Shaw Help", @@ -3589,10 +3583,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -3622,10 +3616,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -3655,7 +3649,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Shit SO says", @@ -3706,10 +3700,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -3739,7 +3733,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bob Beck", @@ -3802,7 +3796,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -3853,7 +3847,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Klug", @@ -3886,7 +3880,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -3903,7 +3897,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "455990928528777216", "text" : "RT @wwwtxt: I wonder if people living on the moon would think of tonight as a solar eclipse? \u262F89MAY", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3937,7 +3931,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3959,7 +3953,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3981,7 +3975,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4003,7 +3997,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4025,7 +4019,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4052,7 +4046,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4085,7 +4079,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -4118,7 +4112,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4151,7 +4145,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4184,7 +4178,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4206,7 +4200,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ars Technica", @@ -4245,7 +4239,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4272,7 +4266,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -4305,7 +4299,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -4366,7 +4360,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4434,7 +4428,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Samuel Ford", @@ -4442,6 +4436,12 @@ Grailbird.data.tweets_2014_04 = "indices" : [ 0, 12 ], "id_str" : "21505836", "id" : 21505836 + }, { + "name" : "Nate", + "screen_name" : "Nacran", + "indices" : [ 13, 20 ], + "id_str" : "1048282793917202432", + "id" : 1048282793917202432 }, { "name" : "Guy English", "screen_name" : "gte", @@ -4479,9 +4479,15 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { + "name" : "Nate", + "screen_name" : "Nacran", + "indices" : [ 0, 7 ], + "id_str" : "1048282793917202432", + "id" : 1048282793917202432 + }, { "name" : "Guy English", "screen_name" : "gte", "indices" : [ 8, 12 ], @@ -4513,7 +4519,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -4552,7 +4558,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -4632,7 +4638,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Samuel Ford", @@ -4640,6 +4646,12 @@ Grailbird.data.tweets_2014_04 = "indices" : [ 0, 12 ], "id_str" : "21505836", "id" : 21505836 + }, { + "name" : "Nate", + "screen_name" : "Nacran", + "indices" : [ 13, 20 ], + "id_str" : "1048282793917202432", + "id" : 1048282793917202432 }, { "name" : "Guy English", "screen_name" : "gte", @@ -4677,7 +4689,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -4716,7 +4728,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "rentzsch", @@ -4780,7 +4792,7 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003ETwitter Lite\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tony Arnold", + "name" : "2 Tony 2 Arnold", "screen_name" : "tonyarnold", "indices" : [ 3, 14 ], "id_str" : "640903", @@ -4823,7 +4835,7 @@ Grailbird.data.tweets_2014_04 = "id" : 454841192404881408, "created_at" : "2014-04-12 04:39:25 +0000", "user" : { - "name" : "Tony Arnold", + "name" : "2 Tony 2 Arnold", "screen_name" : "tonyarnold", "protected" : false, "id_str" : "640903", @@ -4844,16 +4856,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Iain Delaney", - "screen_name" : "IainDelaney", - "indices" : [ 0, 12 ], - "id_str" : "11346922", - "id" : 11346922 - }, { - "name" : "Brent Simmons", + "name" : "inessential.com", "screen_name" : "brentsimmons", "indices" : [ 13, 26 ], "id_str" : "652293", @@ -4863,16 +4869,11 @@ Grailbird.data.tweets_2014_04 = "hashtags" : [ ], "urls" : [ ] }, - "in_reply_to_status_id_str" : "454836087962099712", "geo" : { }, "id_str" : "454837846994464769", - "in_reply_to_user_id" : 11346922, "text" : "@IainDelaney @brentsimmons TextMate, Sublime, vim, and Emacs each do both of those things with 2 keystrokes.", "id" : 454837846994464769, - "in_reply_to_status_id" : 454836087962099712, "created_at" : "2014-04-12 04:26:07 +0000", - "in_reply_to_screen_name" : "IainDelaney", - "in_reply_to_user_id_str" : "11346922", "user" : { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -4883,7 +4884,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "HackerNewsOnion", @@ -4934,7 +4935,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "pete higgins", @@ -4973,7 +4974,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daring Fireball", @@ -5012,7 +5013,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daring Fireball", @@ -5045,10 +5046,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5078,7 +5079,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5100,7 +5101,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5133,7 +5134,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brandon Caplan", @@ -5263,7 +5264,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Macworld", @@ -5319,7 +5320,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5346,7 +5347,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5368,10 +5369,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 99, 110 ], "id_str" : "894911", @@ -5423,7 +5424,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -5461,7 +5462,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mashable", @@ -5500,7 +5501,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "mashable", "protected" : false, "id_str" : "972651", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/941796662770651137\/cDtLVz1j_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1013772445243895808\/jk7SUWdn_normal.jpg", "id" : 972651, "verified" : true } @@ -5517,7 +5518,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5544,7 +5545,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adobe ExperienceCare", @@ -5572,7 +5573,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andy Baio", @@ -5623,7 +5624,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5645,7 +5646,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adobe ExperienceCare", @@ -5711,7 +5712,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -5750,7 +5751,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5819,14 +5820,14 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Tim Oxley", + "name" : "Tim Oxley (new: @timkevinoxley)", "screen_name" : "secoif", "indices" : [ 0, 7 ], - "id_str" : "17609423", - "id" : 17609423 + "id_str" : "1050328477486919680", + "id" : 1050328477486919680 } ], "media" : [ ], "hashtags" : [ ], @@ -5840,7 +5841,7 @@ Grailbird.data.tweets_2014_04 = "id" : 453919391780843520, "in_reply_to_status_id" : 453885811885228034, "created_at" : "2014-04-09 15:36:31 +0000", - "in_reply_to_screen_name" : "secoif", + "in_reply_to_screen_name" : "timkevinoxley", "in_reply_to_user_id_str" : "17609423", "user" : { "name" : "Sami Samhuri", @@ -5852,7 +5853,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kevin Yank", @@ -5872,7 +5873,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "453778527599341568", "text" : "RT @sentience: Mac-toting backend devs, you probably also want to do this on your machine:\n\nbrew update\nbrew upgrade openssl\n\n#heartbleed", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5909,10 +5910,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5948,10 +5949,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5987,7 +5988,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Erik Hallander", @@ -6127,7 +6128,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -6178,7 +6179,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Brocka", @@ -6217,7 +6218,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tom Hutchinson", @@ -6265,7 +6266,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "453366197073891328", "text" : "RT @tomhut: Twitter right now http:\/\/t.co\/sUaaq29TpG", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -6330,7 +6331,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "rentzsch", @@ -6381,7 +6382,58 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Kyle Hughes", + "screen_name" : "KyleHughes", + "indices" : [ 3, 14 ], + "id_str" : "10572372", + "id" : 10572372 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "452611469809422336", + "text" : "RT @KyleHughes: You can use the timer in the Clock app for iOS, with the alert set to \u201CStop Playing\u201D, to have a sleep timer for any app.", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "452515614616461312", + "text" : "You can use the timer in the Clock app for iOS, with the alert set to \u201CStop Playing\u201D, to have a sleep timer for any app.", + "id" : 452515614616461312, + "created_at" : "2014-04-05 18:38:24 +0000", + "user" : { + "name" : "Kyle Hughes", + "screen_name" : "KyleHughes", + "protected" : false, + "id_str" : "10572372", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039039346584633344\/2tCPS86Z_normal.jpg", + "id" : 10572372, + "verified" : false + } + }, + "id" : 452611469809422336, + "created_at" : "2014-04-06 00:59:18 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Cooper", @@ -6403,7 +6455,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "452488959939977216", "text" : "RT @peterc: \"I wrote a C compiler as a hobby.\" http:\/\/t.co\/HlLWHis6IG .. nice thread for fellow compiler\/PL implementation dabblers", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6425,7 +6477,7 @@ Grailbird.data.tweets_2014_04 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -6442,7 +6494,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Hipwood", @@ -6508,7 +6560,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -6561,7 +6613,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Anthony Nystr\u00F6m", @@ -6594,7 +6646,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "DHH", @@ -6627,7 +6679,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Anthony Nystr\u00F6m", @@ -6660,7 +6712,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Macworld", @@ -6669,7 +6721,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "611823", "id" : 611823 }, { - "name" : "rstevens \uD83D\uDC33\uD83D\uDCA8", + "name" : "rstevens 666 \uD83D\uDC33\uD83D\uDCA8", "screen_name" : "rstevens", "indices" : [ 120, 129 ], "id_str" : "643653", @@ -6683,10 +6735,10 @@ Grailbird.data.tweets_2014_04 = "id_str" : "452169186450497537", "text" : "RT @macworld: You may not need to buy the most powerful Mac anymore, but that's okay. A cartoon on Mac Pros and cons by @rstevens. http:\/\/t\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "rstevens \uD83D\uDC33\uD83D\uDCA8", + "name" : "rstevens 666 \uD83D\uDC33\uD83D\uDCA8", "screen_name" : "rstevens", "indices" : [ 106, 115 ], "id_str" : "643653", @@ -6728,7 +6780,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -6761,7 +6813,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -6868,7 +6920,7 @@ Grailbird.data.tweets_2014_04 = "id_str" : "140569932", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/666383954178650112\/BEWqyFzf_normal.jpg", "id" : 140569932, - "verified" : false + "verified" : true } }, "id" : 452107709773406209, @@ -6886,11 +6938,11 @@ Grailbird.data.tweets_2014_04 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sarah Frumento", - "screen_name" : "Sarah_SLP", + "name" : "Sarah F", + "screen_name" : "sarah_slp", "indices" : [ 0, 10 ], - "id_str" : "222358903", - "id" : 222358903 + "id_str" : "1872176288", + "id" : 1872176288 } ], "media" : [ ], "hashtags" : [ ], @@ -6904,7 +6956,7 @@ Grailbird.data.tweets_2014_04 = "id" : 452095912672641024, "in_reply_to_status_id" : 451987651252322305, "created_at" : "2014-04-04 14:50:39 +0000", - "in_reply_to_screen_name" : "Sarah_SLP", + "in_reply_to_screen_name" : "SarahFrumento", "in_reply_to_user_id_str" : "222358903", "user" : { "name" : "Sami Samhuri", @@ -6916,7 +6968,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6938,7 +6990,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dave Wiskus", @@ -6971,7 +7023,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ANTIREZ", @@ -7022,7 +7074,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -7055,7 +7107,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -7088,7 +7140,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -7133,7 +7185,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Merlin Mann", @@ -7184,7 +7236,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -7217,7 +7269,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -7262,7 +7314,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horace Dediu", @@ -7323,7 +7375,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horace Dediu", @@ -7384,7 +7436,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul S-H", @@ -7507,10 +7559,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -7559,7 +7611,7 @@ Grailbird.data.tweets_2014_04 = "id" : 451417219163910144, "created_at" : "2014-04-02 17:53:46 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -7699,10 +7751,10 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7738,7 +7790,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ars Technica", @@ -7777,7 +7829,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -7815,7 +7867,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -7848,7 +7900,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -7892,7 +7944,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -7937,7 +7989,7 @@ Grailbird.data.tweets_2014_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", diff --git a/public/tweets/data/js/tweets/2014_05.js b/public/tweets/data/js/tweets/2014_05.js index 6eaa992..8a09837 100755 --- a/public/tweets/data/js/tweets/2014_05.js +++ b/public/tweets/data/js/tweets/2014_05.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2014_05 = [ { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mike Falzone", @@ -38,7 +38,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -65,10 +65,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -151,7 +151,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Wozniak Gates", @@ -184,7 +184,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Frakes", @@ -235,7 +235,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Roustem Karimov", @@ -274,7 +274,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Roustem Karimov", @@ -313,7 +313,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GonzoHacker", @@ -347,7 +347,7 @@ Grailbird.data.tweets_2014_05 = "screen_name" : "GonzoHacker", "protected" : false, "id_str" : "773009000", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920078035533090816\/qM6ROxQX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1044414153828569093\/f61BZnkt_normal.jpg", "id" : 773009000, "verified" : false } @@ -364,7 +364,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Stats Canada", @@ -415,7 +415,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -570,7 +570,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -603,7 +603,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -669,7 +669,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -708,7 +708,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -741,7 +741,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -780,7 +780,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -813,7 +813,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -835,7 +835,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Kaminsky", @@ -981,7 +981,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -1014,7 +1014,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "SMBC Comics", @@ -1081,7 +1081,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "HackerNewsOnion", @@ -1132,10 +1132,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -1171,7 +1171,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "mikeash", @@ -1204,7 +1204,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "mikeash", @@ -1237,7 +1237,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Anthony Nystr\u00F6m", @@ -1512,7 +1512,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kenzi fka Tim Connor", @@ -1563,7 +1563,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1663,7 +1663,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cappuccino", @@ -1701,7 +1701,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -1732,7 +1732,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horace Dediu", @@ -1845,7 +1845,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Accidental Tech Podcast", @@ -1878,10 +1878,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -1908,7 +1908,7 @@ Grailbird.data.tweets_2014_05 = "id" : 470281318886940673, "created_at" : "2014-05-24 19:12:58 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -1956,10 +1956,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -1973,7 +1973,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "469676357383753728", "text" : "RT @JimRoepcke: We have a reduced test case that shows GADBannerView deadlocks the main thread when a view controller containing a UIWebVie\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1986,7 +1986,7 @@ Grailbird.data.tweets_2014_05 = "id" : 469612466230423554, "created_at" : "2014-05-22 22:55:11 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -2007,7 +2007,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Holt", @@ -2040,7 +2040,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "dlin71", @@ -2088,7 +2088,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "469587774577070080", "text" : "RT @DLin71: Fascinating map shows what the United States would look like if it were a dachshund. http:\/\/t.co\/ccFoJFt0mK", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2153,7 +2153,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2202,10 +2202,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -2235,7 +2235,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mashable", @@ -2268,7 +2268,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2301,7 +2301,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Anthony Nystr\u00F6m", @@ -2339,7 +2339,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2372,7 +2372,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Anthony Nystr\u00F6m", @@ -2405,7 +2405,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2438,7 +2438,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2525,10 +2525,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2558,7 +2558,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jake Archibald", @@ -2619,7 +2619,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ilya Grigorik", @@ -2680,7 +2680,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -2708,7 +2708,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "468548495784157185", "text" : "RT @siracusa: @marcoarment http:\/\/t.co\/72uEiSPLLm", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -2758,7 +2758,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matt Mickiewicz", @@ -2775,7 +2775,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "468447161009840129", "text" : "RT @MattMickiewicz: SpaceX achieved orbital flight, with less capital than Pinterest has raised to allow people to pin photos ($764 million\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2809,7 +2809,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rob Rix\u200E", @@ -2843,7 +2843,7 @@ Grailbird.data.tweets_2014_05 = "screen_name" : "rob_rix", "protected" : false, "id_str" : "14056827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/822100326538878976\/683uW-lH_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/999994812576092162\/uO3412GC_normal.jpg", "id" : 14056827, "verified" : false } @@ -2860,7 +2860,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2893,7 +2893,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2926,7 +2926,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GminusG", @@ -2987,7 +2987,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -3010,7 +3010,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "468131078419386368", "text" : "RT @siracusa: I apologize for the capital \"Of\" in this week's @atpfm title. I was not consulted.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Accidental Tech Podcast", @@ -3050,7 +3050,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u2202an pd piponi", @@ -3111,7 +3111,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3144,7 +3144,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daring Fireball", @@ -3183,16 +3183,16 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", "id" : 27302287 }, { - "name" : "Sam Livingston-Gray", + "name" : "Sam Deadstone-Grave", "screen_name" : "geeksam", "indices" : [ 21, 29 ], "id_str" : "38699900", @@ -3209,7 +3209,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Livingston-Gray", + "name" : "Sam Deadstone-Grave", "screen_name" : "geeksam", "indices" : [ 1, 9 ], "id_str" : "38699900", @@ -3230,11 +3230,11 @@ Grailbird.data.tweets_2014_05 = "in_reply_to_screen_name" : "geeksam", "in_reply_to_user_id_str" : "38699900", "user" : { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/554130348288643072\/rnI84vFt_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996296780751912961\/vglv97x-_normal.jpg", "id" : 27302287, "verified" : false } @@ -3251,7 +3251,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daniel Barlow", @@ -3260,7 +3260,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "19567770", "id" : 19567770 }, { - "name" : "Sam Livingston-Gray", + "name" : "Sam Deadstone-Grave", "screen_name" : "geeksam", "indices" : [ 16, 24 ], "id_str" : "38699900", @@ -3277,7 +3277,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003Etwicca\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Livingston-Gray", + "name" : "Sam Deadstone-Grave", "screen_name" : "geeksam", "indices" : [ 0, 8 ], "id_str" : "38699900", @@ -3319,10 +3319,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Livingston-Gray", + "name" : "Sam Deadstone-Grave", "screen_name" : "geeksam", "indices" : [ 3, 11 ], "id_str" : "38699900", @@ -3336,7 +3336,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "467592798514860033", "text" : "RT @geeksam: Memo to all web developers everywhere: \u201CLogin\u201D is a noun. \u201CLog in\u201D is a verb phrase. KNOW THE DIFFERENCE.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3349,7 +3349,7 @@ Grailbird.data.tweets_2014_05 = "id" : 467393114395918336, "created_at" : "2014-05-16 19:56:16 +0000", "user" : { - "name" : "Sam Livingston-Gray", + "name" : "Sam Deadstone-Grave", "screen_name" : "geeksam", "protected" : false, "id_str" : "38699900", @@ -3370,16 +3370,16 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sam Livingston-Gray", + "name" : "Sam Deadstone-Grave", "screen_name" : "geeksam", "indices" : [ 0, 8 ], "id_str" : "38699900", "id" : 38699900 }, { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 9, 24 ], "id_str" : "27302287", @@ -3409,7 +3409,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Don Melton", @@ -3432,7 +3432,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "467536443074547712", "text" : "RT @donmelton: @gte Of course, that never went anywhere. Much like the \u201CChildren\u2019s Finder\u201D (or whatever they called it). DOA.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -3477,7 +3477,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Don Melton", @@ -3500,7 +3500,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "467536407095820288", "text" : "RT @donmelton: @gte We talked about hiding the file system, not just \/Applications, several times at The Fruit Company. And this was before\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -3545,10 +3545,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3583,7 +3583,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3616,7 +3616,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3649,7 +3649,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -3702,10 +3702,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -3725,7 +3725,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "467018069593034753", "text" : "RT @JimRoepcke: @myell0w and if you have a UIWebView inside a UIWebView, you're going to have a bad time.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matthias Tretter", @@ -3749,7 +3749,7 @@ Grailbird.data.tweets_2014_05 = "in_reply_to_screen_name" : "myell0w", "in_reply_to_user_id_str" : "16004268", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -3770,7 +3770,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3836,7 +3836,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3902,7 +3902,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matthias Tretter", @@ -3911,7 +3911,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "16004268", "id" : 16004268 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 13, 24 ], "id_str" : "894911", @@ -3928,7 +3928,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3953,7 +3953,7 @@ Grailbird.data.tweets_2014_05 = "screen_name" : "myell0w", "protected" : false, "id_str" : "16004268", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919286934555512832\/yC2o08yo_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1049728132356431872\/YIjAcPqh_normal.jpg", "id" : 16004268, "verified" : false } @@ -3970,10 +3970,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -3987,7 +3987,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "467013084649775104", "text" : "RT @JimRoepcke: So far two have said they've resized UIWebView to fit its content and made it a subview of a UIScrollView with no ill effec\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4000,7 +4000,7 @@ Grailbird.data.tweets_2014_05 = "id" : 466993868001800192, "created_at" : "2014-05-15 17:29:49 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -4021,7 +4021,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -4074,10 +4074,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -4091,7 +4091,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "466989377428529152", "text" : "RT @JimRoepcke: How bad of an idea is it to resize a UIWebView to the size of its content, disable scrolling and stick it in a UIScrollView?", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4104,7 +4104,7 @@ Grailbird.data.tweets_2014_05 = "id" : 466988264142807040, "created_at" : "2014-05-15 17:07:33 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -4125,7 +4125,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brewery & The Beast", @@ -4153,7 +4153,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RogersHelps", @@ -4214,7 +4214,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", @@ -4247,7 +4247,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Justin Miller", @@ -4378,7 +4378,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4411,7 +4411,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -4462,10 +4462,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4501,7 +4501,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4534,7 +4534,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4567,7 +4567,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4604,7 +4604,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Atlassian Hipchat", @@ -4637,7 +4637,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4670,7 +4670,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4703,7 +4703,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4725,7 +4725,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mashable Tech", @@ -4822,7 +4822,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vesper", @@ -4850,7 +4850,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -4883,7 +4883,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -4925,7 +4925,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4952,7 +4952,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4974,7 +4974,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5012,7 +5012,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5045,7 +5045,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Stats Canada", @@ -5096,7 +5096,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -5135,7 +5135,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5174,7 +5174,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -5207,7 +5207,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -5240,7 +5240,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5262,7 +5262,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5284,7 +5284,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -5337,10 +5337,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "indices" : [ 3, 9 ], "id_str" : "1919231", @@ -5367,7 +5367,7 @@ Grailbird.data.tweets_2014_05 = "id" : 462373107903107072, "created_at" : "2014-05-02 23:28:34 +0000", "user" : { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "protected" : false, "id_str" : "1919231", @@ -5388,7 +5388,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5415,7 +5415,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5442,7 +5442,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Sternbergh", @@ -5555,7 +5555,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -5588,7 +5588,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -5621,7 +5621,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -5654,7 +5654,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -5687,7 +5687,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -5720,7 +5720,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -5753,10 +5753,10 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Alexandria Neonakis", + "name" : "Ale\u2620\uFE0Fandria Ne\uD83C\uDF83nakis", "screen_name" : "Beavs", "indices" : [ 3, 9 ], "id_str" : "19007577", @@ -5788,11 +5788,11 @@ Grailbird.data.tweets_2014_05 = "id" : 462236896886673408, "created_at" : "2014-05-02 14:27:18 +0000", "user" : { - "name" : "Alexandria Neonakis", + "name" : "Ale\u2620\uFE0Fandria Ne\uD83C\uDF83nakis", "screen_name" : "Beavs", "protected" : false, "id_str" : "19007577", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951934734648557568\/zr-ShdDq_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1047343401836761088\/5SmOWMU3_normal.jpg", "id" : 19007577, "verified" : false } @@ -5809,7 +5809,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -5826,7 +5826,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "462272758303309824", "text" : "RT @chockenberry: Protip: Menlo, a standard font on iOS and OS X, has a lot of good glyphs for UI controls. Use them as placeholder or fina\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5860,7 +5860,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Ferguson", @@ -5957,7 +5957,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Secret No More", @@ -5990,7 +5990,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ars Technica", @@ -5999,7 +5999,7 @@ Grailbird.data.tweets_2014_05 = "id_str" : "717313", "id" : 717313 }, { - "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Pumpkin Fright\uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 97, 105 ], "id_str" : "11375732", @@ -6021,7 +6021,7 @@ Grailbird.data.tweets_2014_05 = "source" : "\u003Ca href=\"http:\/\/arstechnica.com\" rel=\"nofollow\"\u003EArs tweetbot\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Pumpkin Fright\uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 80, 88 ], "id_str" : "11375732", @@ -6063,7 +6063,7 @@ Grailbird.data.tweets_2014_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2014_06.js b/public/tweets/data/js/tweets/2014_06.js index e642350..2b60458 100755 --- a/public/tweets/data/js/tweets/2014_06.js +++ b/public/tweets/data/js/tweets/2014_06.js @@ -160,7 +160,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -248,7 +248,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -275,7 +275,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -308,7 +308,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Hunter S. Thompson", @@ -359,7 +359,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Relative Sanity", @@ -376,7 +376,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "482695057955229696", "text" : "RT @relativesanity: Reminder:\n\nJunior Dev: thinks they know everything\nRegular Dev: thinks they know nothing\nSenior Dev: hates computers\n\n-\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Philip Roberts", @@ -447,7 +447,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -480,10 +480,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Malte Ubl", + "name" : "Malte Ubl, Immigrant", "screen_name" : "cramforce", "indices" : [ 3, 13 ], "id_str" : "15534471", @@ -520,7 +520,7 @@ Grailbird.data.tweets_2014_06 = "id" : 482600971562803200, "created_at" : "2014-06-27 19:06:52 +0000", "user" : { - "name" : "Malte Ubl", + "name" : "Malte Ubl, Immigrant", "screen_name" : "cramforce", "protected" : false, "id_str" : "15534471", @@ -541,7 +541,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -574,7 +574,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Backblaze", @@ -631,7 +631,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -653,7 +653,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -675,10 +675,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -714,7 +714,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -747,7 +747,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -780,7 +780,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GminusG", @@ -851,7 +851,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -884,7 +884,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -942,7 +942,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -1051,7 +1051,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1104,11 +1104,11 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -1197,7 +1197,7 @@ Grailbird.data.tweets_2014_06 = "created_at" : "2014-06-25 19:00:36 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -1217,7 +1217,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -1250,7 +1250,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -1272,7 +1272,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "481831282226102272", "text" : "RT @siracusa: At least he didn't use a \"\/\" https:\/\/t.co\/pGUXJImDsS", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1311,7 +1311,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Cook", @@ -1344,7 +1344,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michelle V", @@ -1438,7 +1438,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -1461,7 +1461,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "481584689300271104", "text" : "RT @siracusa: @Catfish_Man Luckily, Clang has excellent dead code elimination.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Smith", @@ -1506,7 +1506,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Smith", @@ -1523,7 +1523,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "481584679007449089", "text" : "RT @Catfish_Man: OH: \u201CActually, if you assume our codebase is haunted it explains an awful lot\u201D", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1557,7 +1557,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Frakes", @@ -1596,7 +1596,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1628,7 +1628,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1655,7 +1655,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -1688,7 +1688,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Darren Tome", @@ -1721,7 +1721,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dave Methvin", @@ -1852,7 +1852,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1874,7 +1874,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "kangax", @@ -1949,7 +1949,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1971,7 +1971,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1998,7 +1998,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -2049,7 +2049,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2076,7 +2076,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -2137,7 +2137,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -2173,7 +2173,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2241,7 +2241,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2508,7 +2508,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Noel", @@ -2616,7 +2616,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2638,7 +2638,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2715,7 +2715,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2849,7 +2849,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Beats Music", @@ -2877,7 +2877,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2910,7 +2910,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2943,7 +2943,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2965,7 +2965,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2998,7 +2998,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3034,7 +3034,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Neven Mrgan", + "name" : "NE7EN", "screen_name" : "mrgan", "indices" : [ 3, 9 ], "id_str" : "35293", @@ -3048,7 +3048,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "479287973234503681", "text" : "RT @mrgan: \"In iOS 8 beta 2 it's possible to leave reviews in the App Store again, a feature unavailable in beta 1 due to a bug\" Noooo you \u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3061,11 +3061,11 @@ Grailbird.data.tweets_2014_06 = "id" : 478978311041736706, "created_at" : "2014-06-17 19:11:43 +0000", "user" : { - "name" : "Neven Mrgan", + "name" : "NE7EN", "screen_name" : "mrgan", "protected" : false, "id_str" : "35293", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925719886457847808\/Vuf2uyPY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046808674239315972\/zdrGiEr3_normal.jpg", "id" : 35293, "verified" : true } @@ -3082,7 +3082,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3115,7 +3115,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mahyar Mj", @@ -3153,7 +3153,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3175,7 +3175,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -3228,7 +3228,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3363,7 +3363,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3396,7 +3396,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3448,7 +3448,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Holt", @@ -3457,7 +3457,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "14180235", "id" : 14180235 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 9, 20 ], "id_str" : "894911", @@ -3493,7 +3493,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "patrick thomson", @@ -3510,7 +3510,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "477552162898063360", "text" : "RT @importantshock: Protip: use \/\/\/ for method\/class\/function-level comments in Swift. Xcode will display the comments inline in autocomple\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3530,7 +3530,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "importantshock", "protected" : false, "id_str" : "7611992", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/913524488066695168\/_vAF9Hd9_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/994304468501061632\/xu3CUDrA_normal.jpg", "id" : 7611992, "verified" : false } @@ -3547,10 +3547,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3586,7 +3586,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -3619,7 +3619,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -3691,7 +3691,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "GonzoHacker", "protected" : false, "id_str" : "773009000", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920078035533090816\/qM6ROxQX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1044414153828569093\/f61BZnkt_normal.jpg", "id" : 773009000, "verified" : false } @@ -3708,7 +3708,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Elon Musk", @@ -3759,10 +3759,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3797,7 +3797,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3827,7 +3827,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3857,7 +3857,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Twitterrific", @@ -3877,7 +3877,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "477164462797901824", "text" : "RT @Twitterrific: Drag left\/right on a gif to scrub through the animation. #T5Tips", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3914,10 +3914,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3947,7 +3947,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3969,7 +3969,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3991,7 +3991,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Christopher Anderson", @@ -4054,7 +4054,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "ishra", "protected" : false, "id_str" : "5537792", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/906658866443767808\/9Rqr0XHZ_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1006559198941937665\/iYjaSe0j_normal.jpg", "id" : 5537792, "verified" : false } @@ -4074,7 +4074,7 @@ Grailbird.data.tweets_2014_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 3, 16 ], "id_str" : "11973362", @@ -4129,11 +4129,11 @@ Grailbird.data.tweets_2014_06 = "id" : 476806771747848192, "created_at" : "2014-06-11 19:22:47 +0000", "user" : { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "protected" : false, "id_str" : "11973362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/872004130826362881\/9RRxQHYL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1032497574488420353\/y7sRwlhw_normal.jpg", "id" : 11973362, "verified" : false } @@ -4150,7 +4150,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4183,7 +4183,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4216,7 +4216,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4249,7 +4249,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Eidhof", @@ -4271,7 +4271,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "476770552087330816", "text" : "RT @chriseidhof: My first steps in Swift: A QuickCheck proof of concept (with Playground!): http:\/\/t.co\/cRJw9tB4yR", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4310,7 +4310,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4332,7 +4332,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mashable HQ", @@ -4414,7 +4414,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "140569932", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/666383954178650112\/BEWqyFzf_normal.jpg", "id" : 140569932, - "verified" : false + "verified" : true } }, "id" : 476409384491155456, @@ -4429,7 +4429,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4456,10 +4456,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dustin Dawes \uD83C\uDF55", + "name" : "Dustin Dawes \uD83D\uDCA4", "screen_name" : "gu3st", "indices" : [ 0, 6 ], "id_str" : "18702069", @@ -4495,7 +4495,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4528,7 +4528,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4561,7 +4561,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4600,7 +4600,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Julian Kussman", @@ -4623,7 +4623,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "476122085165522946", "text" : "RT @jkuss: @gruber that\u2019s called a tweeticle", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -4668,7 +4668,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4701,10 +4701,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4739,7 +4739,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -4756,7 +4756,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "476086684480962560", "text" : "RT @stroughtonsmith: So\u2026 just in case there was any doubt left\u2026 iOS 8\u2019s SpringBoard has code to run two apps side-by-side. 1\/4 size, 1\/2 si\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4790,7 +4790,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse iOS", @@ -4807,7 +4807,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "476061159796117504", "text" : "RT @Horse_iOS: According to multiple sources, Tapbots have delayed Tweetbot 3 for iPad in order to rewrite it in Swift and build a new UI d\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4841,7 +4841,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4874,7 +4874,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4913,7 +4913,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Walt\uD83E\uDD14\uD83D\uDDFD", @@ -4928,40 +4928,14 @@ Grailbird.data.tweets_2014_06 = "id_str" : "168436347", "id" : 168436347 } ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/semibogan\/status\/472945650468810752\/photo\/1", + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { "indices" : [ 108, 130 ], "url" : "http:\/\/t.co\/Kjq3QmPiGx", - "media_url" : "http:\/\/pbs.twimg.com\/media\/BpA9j9pIUAACBP6.jpg", - "id_str" : "472945648925691904", - "id" : 472945648925691904, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BpA9j9pIUAACBP6.jpg", - "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 293, - "resize" : "fit", - "w" : 680 - }, { - "h" : 422, - "resize" : "fit", - "w" : 980 - }, { - "h" : 422, - "resize" : "fit", - "w" : 980 - }, { - "h" : 422, - "resize" : "fit", - "w" : 980 - } ], - "media_alt" : "", + "expanded_url" : "https:\/\/twitter.com\/semibogan\/status\/472945650468810752\/photo\/1", "display_url" : "pic.twitter.com\/Kjq3QmPiGx" - } ], - "hashtags" : [ ], - "urls" : [ ] + } ] }, "geo" : { }, "id_str" : "474995299292045312", @@ -4976,40 +4950,14 @@ Grailbird.data.tweets_2014_06 = "id_str" : "168436347", "id" : 168436347 } ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/semibogan\/status\/472945650468810752\/photo\/1", + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { "indices" : [ 92, 114 ], "url" : "http:\/\/t.co\/Kjq3QmPiGx", - "media_url" : "http:\/\/pbs.twimg.com\/media\/BpA9j9pIUAACBP6.jpg", - "id_str" : "472945648925691904", - "id" : 472945648925691904, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/BpA9j9pIUAACBP6.jpg", - "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 293, - "resize" : "fit", - "w" : 680 - }, { - "h" : 422, - "resize" : "fit", - "w" : 980 - }, { - "h" : 422, - "resize" : "fit", - "w" : 980 - }, { - "h" : 422, - "resize" : "fit", - "w" : 980 - } ], - "media_alt" : "", + "expanded_url" : "https:\/\/twitter.com\/semibogan\/status\/472945650468810752\/photo\/1", "display_url" : "pic.twitter.com\/Kjq3QmPiGx" - } ], - "hashtags" : [ ], - "urls" : [ ] + } ] }, "in_reply_to_status_id_str" : "472945650468810752", "geo" : { }, @@ -5043,7 +4991,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matt Gemmell", @@ -5094,7 +5042,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Henry Taylor", @@ -5260,10 +5208,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5298,7 +5246,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5320,7 +5268,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -5358,7 +5306,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5391,7 +5339,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5463,7 +5411,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dark_Matter\u2122", @@ -5502,7 +5450,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5525,7 +5473,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "474639376106782720", "text" : "RT @snarfmason: Working from home milestone! Having a beer before I have showered. Partly for the benefit of @_sjs", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -5565,7 +5513,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -5603,7 +5551,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5630,7 +5578,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Lattner", @@ -5703,7 +5651,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "AnandTech", @@ -5782,7 +5730,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5804,10 +5752,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "indices" : [ 3, 9 ], "id_str" : "1919231", @@ -5834,7 +5782,7 @@ Grailbird.data.tweets_2014_06 = "id" : 474264692009861120, "created_at" : "2014-06-04 19:01:28 +0000", "user" : { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "protected" : false, "id_str" : "1919231", @@ -5855,7 +5803,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "best friend", @@ -5889,10 +5837,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5922,7 +5870,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -5955,7 +5903,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andy Matuschak", @@ -6018,7 +5966,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -6041,7 +5989,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "473863616316571648", "text" : "RT @chockenberry: I've been hearing people say there's \"no NDA\" this year at WWDC. @olebegemann found what's changed for the better: http:\/\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ole Begemann", @@ -6086,7 +6034,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "mikeash", @@ -6103,7 +6051,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "473862208556789760", "text" : "RT @mikeash: TestFlight beta testing requires app review. What the fuck.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6215,7 +6163,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Smith", @@ -6272,7 +6220,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Smith", @@ -6317,7 +6265,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Smith", @@ -6362,7 +6310,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Justin Spahr-Summers", @@ -6395,7 +6343,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "JaviAir", @@ -6492,10 +6440,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ariadne auf paxos", + "name" : "worlds greatest dud", "screen_name" : "dijkstracula", "indices" : [ 3, 16 ], "id_str" : "14216743", @@ -6522,7 +6470,7 @@ Grailbird.data.tweets_2014_06 = "id" : 473588378131132416, "created_at" : "2014-06-02 22:14:02 +0000", "user" : { - "name" : "ariadne auf paxos", + "name" : "worlds greatest dud", "screen_name" : "dijkstracula", "protected" : false, "id_str" : "14216743", @@ -6543,10 +6491,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "ariadne auf paxos", + "name" : "worlds greatest dud", "screen_name" : "dijkstracula", "indices" : [ 0, 13 ], "id_str" : "14216743", @@ -6576,7 +6524,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Notifyr", @@ -6609,10 +6557,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6647,10 +6595,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -6680,7 +6628,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mahyar Mj", @@ -6713,7 +6661,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Shit SO says", @@ -6764,7 +6712,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mahyar Mj", @@ -6797,7 +6745,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -6833,7 +6781,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6855,7 +6803,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -6968,7 +6916,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Cook", @@ -6996,7 +6944,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -7029,7 +6977,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -7057,7 +7005,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andy Matuschak", @@ -7074,7 +7022,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "473536622567235584", "text" : "RT @andy_matuschak: Basically exploding with excitement over here to finally be able to talk about Swift. LET\u2019S DO THIS \uD83C\uDF08\uD83C\uDF89\u2728", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7108,7 +7056,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7130,7 +7078,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7157,7 +7105,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kieran Huggins", @@ -7208,7 +7156,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7230,7 +7178,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7252,7 +7200,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -7261,7 +7209,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "14538248", "id" : 14538248 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 15, 26 ], "id_str" : "894911", @@ -7291,7 +7239,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -7308,7 +7256,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "473528003792629760", "text" : "RT @siracusa: Apple acknowledges the existence of family! Finally.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7342,10 +7290,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -7359,7 +7307,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "473526966927499264", "text" : "RT @JimRoepcke: 3rd party cloud drive integration - Apple gets it.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7372,7 +7320,7 @@ Grailbird.data.tweets_2014_06 = "id" : 473526877185773568, "created_at" : "2014-06-02 18:09:39 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -7393,7 +7341,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7415,10 +7363,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7448,7 +7396,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7470,10 +7418,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7509,10 +7457,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7542,7 +7490,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7564,7 +7512,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -7581,7 +7529,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "473522126306041856", "text" : "RT @marcoarment: Where\u2019s Phil?", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7598,7 +7546,7 @@ Grailbird.data.tweets_2014_06 = "screen_name" : "marcoarment", "protected" : false, "id_str" : "14231571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/917397034294038528\/mCGc9IjP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1005850629028352000\/jHsNM3wM_normal.jpg", "id" : 14231571, "verified" : true } @@ -7615,7 +7563,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7637,7 +7585,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7668,7 +7616,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", @@ -7698,7 +7646,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -7732,7 +7680,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7754,7 +7702,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -7771,7 +7719,7 @@ Grailbird.data.tweets_2014_06 = "id_str" : "473515333257404416", "text" : "RT @siracusa: Apple finally realized that Quicksilver has existed for a decade.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7805,7 +7753,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7827,7 +7775,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -7860,7 +7808,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7882,7 +7830,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7904,7 +7852,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7926,7 +7874,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7953,10 +7901,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7986,10 +7934,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -8092,10 +8040,10 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -8125,7 +8073,7 @@ Grailbird.data.tweets_2014_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2014_07.js b/public/tweets/data/js/tweets/2014_07.js index 046c641..396b273 100755 --- a/public/tweets/data/js/tweets/2014_07.js +++ b/public/tweets/data/js/tweets/2014_07.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2014_07 = [ { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -44,7 +44,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Leonardo Borges", @@ -83,7 +83,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -110,7 +110,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "1Password", @@ -159,7 +159,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "1Password", "protected" : false, "id_str" : "793926", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981326545179439104\/jPhaQEQv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1016336590136856576\/gFgL1sh1_normal.jpg", "id" : 793926, "verified" : true } @@ -176,7 +176,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -198,7 +198,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -231,7 +231,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -264,7 +264,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Nolen", @@ -325,7 +325,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -380,7 +380,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -407,7 +407,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rob Foster", @@ -463,7 +463,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -546,7 +546,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John", @@ -591,7 +591,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John", @@ -636,7 +636,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John", @@ -681,7 +681,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John", @@ -753,7 +753,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -775,10 +775,10 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Faruk Ate\u015F", + "name" : "Faruk Ate\u015F, Supernova", "screen_name" : "KuraFire", "indices" : [ 3, 12 ], "id_str" : "22253", @@ -797,7 +797,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "494188168900407296", "text" : "RT @KuraFire: The iOS Indie That Could http:\/\/t.co\/O1avXUwRJd", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -815,7 +815,7 @@ Grailbird.data.tweets_2014_07 = "id" : 494186099838050304, "created_at" : "2014-07-29 18:22:02 +0000", "user" : { - "name" : "Faruk Ate\u015F", + "name" : "Faruk Ate\u015F, Supernova", "screen_name" : "KuraFire", "protected" : false, "id_str" : "22253", @@ -869,7 +869,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -919,7 +919,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mislav Marohni\u0107", @@ -942,7 +942,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "493931855997960193", "text" : "RT @mislav: @garybernhardt Oh you mean like Gmail composer view captures and prevents Ctrl-Cmd-Space (OS X character picker)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -987,10 +987,10 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 3, 16 ], "id_str" : "11973362", @@ -1017,11 +1017,11 @@ Grailbird.data.tweets_2014_07 = "id" : 493840182937124865, "created_at" : "2014-07-28 19:27:29 +0000", "user" : { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "protected" : false, "id_str" : "11973362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/872004130826362881\/9RRxQHYL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1032497574488420353\/y7sRwlhw_normal.jpg", "id" : 11973362, "verified" : false } @@ -1038,7 +1038,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1063,7 +1063,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -1129,7 +1129,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Steinberger", @@ -1151,7 +1151,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "493802452152381441", "text" : "RT @steipete: The number on Unread\u2019s app are quite saddening. Being Indie in the App Store is really hard. http:\/\/t.co\/yQJa2l4e7W", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1193,7 +1193,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1226,7 +1226,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1281,7 +1281,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter van der Zee", @@ -1348,7 +1348,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1436,7 +1436,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dr. Drang", @@ -1504,7 +1504,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -1527,7 +1527,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "493473840517763072", "text" : "RT @siracusa: @marcoarment A \"delete after\u2026\" setting with possible values between 0 and infinity covers a lot of bases.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -1572,7 +1572,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -1605,7 +1605,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "History Pics", @@ -1641,7 +1641,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1671,7 +1671,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Grisha Kruglov", @@ -1855,7 +1855,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -1888,7 +1888,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "pourmecoffee", @@ -2023,7 +2023,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horace Dediu", @@ -2056,7 +2056,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rexy Tseng", @@ -2089,7 +2089,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benjamin Mayo", @@ -2214,10 +2214,10 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "israel edits", + "name" : "israel-edits", "screen_name" : "israeledits", "indices" : [ 0, 12 ], "id_str" : "2646180810", @@ -2274,7 +2274,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2307,7 +2307,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2329,7 +2329,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2356,7 +2356,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -2389,7 +2389,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Minton", @@ -2440,7 +2440,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Minton", @@ -2491,7 +2491,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Thom \uD83C\uDF84\u2744\uFE0F\u26C4\uFE0F Holwerda", @@ -2570,7 +2570,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Binyamin Appelbaum", @@ -2662,10 +2662,10 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Below Freezing", + "name" : "Below is the script", "screen_name" : "avbelow", "indices" : [ 0, 8 ], "id_str" : "18763491", @@ -2756,7 +2756,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "491617954476224514", "text" : "RT @danielpunkass: On Yosemite? \n\n1. Open TextEdit.\n2. Select File -> Open\u2026\n3. Drag in a file from the Finder.\n4. Cry like a baby.\n\nRadar #\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2907,7 +2907,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Manu Carrasco Molina", @@ -2977,7 +2977,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Governement of Canada Wikipedia edits", @@ -3010,7 +3010,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -3043,7 +3043,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Richard Wong", @@ -3052,7 +3052,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "5488172", "id" : 5488172 }, { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 12, 17 ], "id_str" : "13217612", @@ -3088,7 +3088,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Richard Wong", @@ -3097,7 +3097,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "5488172", "id" : 5488172 }, { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 12, 17 ], "id_str" : "13217612", @@ -3142,7 +3142,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "5488172", "id" : 5488172 }, { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 12, 17 ], "id_str" : "13217612", @@ -3187,7 +3187,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "5488172", "id" : 5488172 }, { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 12, 17 ], "id_str" : "13217612", @@ -3223,10 +3223,10 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 0, 5 ], "id_str" : "13217612", @@ -3268,7 +3268,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Richard Wong", @@ -3319,7 +3319,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3346,7 +3346,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Phillips Beer", @@ -3407,7 +3407,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ars Technica", @@ -3480,7 +3480,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -3513,7 +3513,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "oil-edits", @@ -3574,7 +3574,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -3607,7 +3607,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -3616,7 +3616,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "14106454", "id" : 14106454 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 9, 20 ], "id_str" : "894911", @@ -3646,7 +3646,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -3655,7 +3655,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "14106454", "id" : 14106454 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 71, 82 ], "id_str" : "894911", @@ -3685,7 +3685,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -3718,7 +3718,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Erik Lagerway", @@ -3751,7 +3751,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Erik Lagerway", @@ -3784,7 +3784,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Erik Lagerway", @@ -3856,7 +3856,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3878,7 +3878,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -3906,7 +3906,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3933,7 +3933,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Overcast", @@ -3961,7 +3961,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4105,7 +4105,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Christopher Mims \uD83C\uDF86", @@ -4143,7 +4143,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rexy Tseng", @@ -4199,7 +4199,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "489279103778824193", "text" : "RT @drwave: My family uses emoji so much in texts, I wish I could zoom in in Messages so I could make them out...", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4272,7 +4272,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GetCloak.com", @@ -4305,7 +4305,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GetCloak.com", @@ -4338,7 +4338,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4360,7 +4360,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4387,7 +4387,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Holt", @@ -4420,7 +4420,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Cook", @@ -4448,7 +4448,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "seaotters.com", @@ -4504,7 +4504,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Irish", @@ -4596,7 +4596,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Governement of Canada Wikipedia edits", @@ -4657,7 +4657,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Governement of Canada Wikipedia edits", @@ -4718,7 +4718,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rob Rix\u200E", @@ -4751,7 +4751,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rob Rix\u200E", @@ -4784,7 +4784,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Stolt", @@ -4823,7 +4823,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -4868,7 +4868,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5100,129 +5100,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "congress-edits", - "screen_name" : "congressedits", - "indices" : [ 3, 17 ], - "id_str" : "2612261960", - "id" : 2612261960 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 103, 125 ], - "url" : "http:\/\/t.co\/VJcfyTQyL4", - "expanded_url" : "http:\/\/en.wikipedia.org\/w\/index.php?diff=616911804&oldid=615306532", - "display_url" : "en.wikipedia.org\/w\/index.php?di\u2026" - } ] - }, - "geo" : { }, - "id_str" : "488704523121074176", - "text" : "RT @congressedits: Lyndon LaRouche Wikipedia article edited anonymously by US House of Representatives http:\/\/t.co\/VJcfyTQyL4", - "retweeted_status" : { - "source" : "\u003Ca href=\"https:\/\/tools.wmflabs.org\/anon\/\" rel=\"nofollow\"\u003Eanon-wikipedia\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 84, 106 ], - "url" : "http:\/\/t.co\/VJcfyTQyL4", - "expanded_url" : "http:\/\/en.wikipedia.org\/w\/index.php?diff=616911804&oldid=615306532", - "display_url" : "en.wikipedia.org\/w\/index.php?di\u2026" - } ] - }, - "geo" : { }, - "id_str" : "488681176862056449", - "text" : "Lyndon LaRouche Wikipedia article edited anonymously by US House of Representatives http:\/\/t.co\/VJcfyTQyL4", - "id" : 488681176862056449, - "created_at" : "2014-07-14 13:47:26 +0000", - "user" : { - "name" : "congress-edits", - "screen_name" : "congressedits", - "protected" : false, - "id_str" : "2612261960", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/486684605655703552\/cHJI5dOc_normal.png", - "id" : 2612261960, - "verified" : false - } - }, - "id" : 488704523121074176, - "created_at" : "2014-07-14 15:20:12 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "congress-edits", - "screen_name" : "congressedits", - "indices" : [ 3, 17 ], - "id_str" : "2612261960", - "id" : 2612261960 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 102, 124 ], - "url" : "http:\/\/t.co\/kxC4yLCKcK", - "expanded_url" : "http:\/\/en.wikipedia.org\/w\/index.php?diff=616911728&oldid=616095553", - "display_url" : "en.wikipedia.org\/w\/index.php?di\u2026" - } ] - }, - "geo" : { }, - "id_str" : "488704339238584320", - "text" : "RT @congressedits: Bohemian Grove Wikipedia article edited anonymously by US House of Representatives http:\/\/t.co\/kxC4yLCKcK", - "retweeted_status" : { - "source" : "\u003Ca href=\"https:\/\/tools.wmflabs.org\/anon\/\" rel=\"nofollow\"\u003Eanon-wikipedia\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 83, 105 ], - "url" : "http:\/\/t.co\/kxC4yLCKcK", - "expanded_url" : "http:\/\/en.wikipedia.org\/w\/index.php?diff=616911728&oldid=616095553", - "display_url" : "en.wikipedia.org\/w\/index.php?di\u2026" - } ] - }, - "geo" : { }, - "id_str" : "488680962688307202", - "text" : "Bohemian Grove Wikipedia article edited anonymously by US House of Representatives http:\/\/t.co\/kxC4yLCKcK", - "id" : 488680962688307202, - "created_at" : "2014-07-14 13:46:35 +0000", - "user" : { - "name" : "congress-edits", - "screen_name" : "congressedits", - "protected" : false, - "id_str" : "2612261960", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/486684605655703552\/cHJI5dOc_normal.png", - "id" : 2612261960, - "verified" : false - } - }, - "id" : 488704339238584320, - "created_at" : "2014-07-14 15:19:28 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Capps", @@ -5329,11 +5207,11 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sarah Frumento", - "screen_name" : "Sarah_SLP", + "name" : "Sarah F", + "screen_name" : "sarah_slp", "indices" : [ 0, 10 ], - "id_str" : "222358903", - "id" : 222358903 + "id_str" : "1872176288", + "id" : 1872176288 } ], "media" : [ ], "hashtags" : [ ], @@ -5347,7 +5225,7 @@ Grailbird.data.tweets_2014_07 = "id" : 488340157464997889, "in_reply_to_status_id" : 488113018085990400, "created_at" : "2014-07-13 15:12:21 +0000", - "in_reply_to_screen_name" : "Sarah_SLP", + "in_reply_to_screen_name" : "SarahFrumento", "in_reply_to_user_id_str" : "222358903", "user" : { "name" : "Sami Samhuri", @@ -5431,7 +5309,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -5539,7 +5417,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5561,10 +5439,10 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -5607,7 +5485,7 @@ Grailbird.data.tweets_2014_07 = "id" : 487822243670405120, "created_at" : "2014-07-12 04:54:20 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -5628,7 +5506,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -5667,7 +5545,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -5700,7 +5578,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -5738,7 +5616,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dave Wiskus", @@ -5760,7 +5638,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "487820229943513089", "text" : "RT @dwiskus: An absolute requirement: http:\/\/t.co\/l6P3LSCAzF", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5799,7 +5677,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Nejc \u017Dorga Dulmin", @@ -5838,7 +5716,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Don Brisson", @@ -6046,7 +5924,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joefrey Kibuule, MD", @@ -6085,7 +5963,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -6113,7 +5991,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rob Rix\u200E", @@ -6181,7 +6059,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "rob_rix", "protected" : false, "id_str" : "14056827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/822100326538878976\/683uW-lH_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/999994812576092162\/uO3412GC_normal.jpg", "id" : 14056827, "verified" : false } @@ -6198,7 +6076,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -6251,7 +6129,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -6284,7 +6162,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -6317,7 +6195,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -6350,7 +6228,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -6383,7 +6261,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6410,7 +6288,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Darren Tome", @@ -6471,7 +6349,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "XKCD", @@ -6532,7 +6410,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "History Pics", @@ -6565,7 +6443,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GonzoHacker", @@ -6599,7 +6477,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "GonzoHacker", "protected" : false, "id_str" : "773009000", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920078035533090816\/qM6ROxQX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1044414153828569093\/f61BZnkt_normal.jpg", "id" : 773009000, "verified" : false } @@ -6616,7 +6494,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GonzoHacker", @@ -6650,7 +6528,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "GonzoHacker", "protected" : false, "id_str" : "773009000", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920078035533090816\/qM6ROxQX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1044414153828569093\/f61BZnkt_normal.jpg", "id" : 773009000, "verified" : false } @@ -6667,7 +6545,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rexy Tseng", @@ -6723,7 +6601,7 @@ Grailbird.data.tweets_2014_07 = "screen_name" : "rexytseng", "protected" : false, "id_str" : "128721761", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/967562540585594881\/GLYYO0Xt_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1024299913864048640\/hLuuTWt5_normal.jpg", "id" : 128721761, "verified" : false } @@ -6740,7 +6618,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -6793,7 +6671,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -6877,7 +6755,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u30B5\u30FC\u30B7\u30E3\u30FB\uFF2D\u30FB\u30DB\u30EC\u30B7\u30E5", @@ -6916,7 +6794,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\u30B5\u30FC\u30B7\u30E3\u30FB\uFF2D\u30FB\u30DB\u30EC\u30B7\u30E5", @@ -6991,7 +6869,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 61, 72 ], "id_str" : "894911", @@ -7050,7 +6928,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -7083,7 +6961,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 3, 18 ], "id_str" : "27302287", @@ -7189,11 +7067,11 @@ Grailbird.data.tweets_2014_07 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "protected" : false, "id_str" : "27302287", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/554130348288643072\/rnI84vFt_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996296780751912961\/vglv97x-_normal.jpg", "id" : 27302287, "verified" : false } @@ -7210,7 +7088,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7232,10 +7110,10 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -7279,7 +7157,7 @@ Grailbird.data.tweets_2014_07 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -7300,7 +7178,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7322,7 +7200,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7405,7 +7283,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -7511,7 +7389,7 @@ Grailbird.data.tweets_2014_07 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -7535,7 +7413,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -7565,7 +7443,7 @@ Grailbird.data.tweets_2014_07 = "id" : 486254242697842688, "created_at" : "2014-07-07 21:03:40 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -7611,7 +7489,7 @@ Grailbird.data.tweets_2014_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -7658,7 +7536,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "486252563075850240", "text" : "RT @siracusa: Happy Revised Array Semantics Day, everyone! (Not so sure about ..<, but at least it's clear\u2026)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7800,7 +7678,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "486213299638632448", "text" : "RT @wwwtxt: Has anyone else here seen the World Wide Web? It's one of the best new things on Internet. \u262F94MAY", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7873,7 +7751,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7895,7 +7773,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -7933,7 +7811,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -7966,7 +7844,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -7999,10 +7877,10 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -8030,7 +7908,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -8057,7 +7935,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -8084,7 +7962,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Luke Wroblewski", @@ -8123,7 +8001,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -8145,7 +8023,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -8172,7 +8050,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "3eanuts", @@ -8194,7 +8072,7 @@ Grailbird.data.tweets_2014_07 = "id_str" : "484364591653064705", "text" : "RT @3eanuts: April 24, 1986 \u2014 \"Do you?\" http:\/\/t.co\/jnj57gsY1f", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -8288,7 +8166,7 @@ Grailbird.data.tweets_2014_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2014_08.js b/public/tweets/data/js/tweets/2014_08.js index 2fa2354..8110598 100755 --- a/public/tweets/data/js/tweets/2014_08.js +++ b/public/tweets/data/js/tweets/2014_08.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2014_08 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -22,7 +22,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "506207219936137216", "text" : "RT @siracusa: The kid's got fashion sense after all! http:\/\/t.co\/jnUKRt6YUz", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -61,7 +61,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Harpole", @@ -84,7 +84,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "506207179754733569", "text" : "RT @harpaa01: @siracusa hopefully he can convince Apple to make sure the iPhone 6 has 2 GB of memory.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -129,7 +129,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -162,7 +162,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -230,7 +230,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -279,7 +279,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Phillips", @@ -312,7 +312,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joe Armstrong", @@ -363,7 +363,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joe Armstrong", @@ -414,7 +414,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -559,7 +559,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Emojli", @@ -587,7 +587,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -620,7 +620,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "James Thomson", @@ -655,7 +655,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "505384782021529600", "text" : "RT @jamesthomson: Interesting\u2026 UIImage on iOS 8b5 will load a @3x image in preference to an @2x one, even on a @2x device. Not so on iOS 7.\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "mojed", @@ -690,7 +690,7 @@ Grailbird.data.tweets_2014_08 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050713686229360641\/M7Kszw-a_normal.jpg", "id" : 14169916, "verified" : false } @@ -707,7 +707,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Max Howell", @@ -740,7 +740,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -762,7 +762,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Donohue", @@ -802,7 +802,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -855,7 +855,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -882,7 +882,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Discourse", @@ -926,7 +926,7 @@ Grailbird.data.tweets_2014_08 = "screen_name" : "discourse", "protected" : false, "id_str" : "1187955571", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/3264780953\/6c9a2cd7bb2efcb4c53d32900e52c8ac_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1006736538686967820\/oIC5fRth_normal.jpg", "id" : 1187955571, "verified" : false } @@ -943,7 +943,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -970,7 +970,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1023,7 +1023,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "The Sweet Setup", @@ -1183,7 +1183,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1258,7 +1258,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -1297,7 +1297,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1319,7 +1319,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -1355,7 +1355,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1408,7 +1408,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -1441,7 +1441,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1516,7 +1516,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1543,7 +1543,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -1581,7 +1581,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Max Howell", @@ -1614,7 +1614,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Homer J. Simpson", @@ -1648,15 +1648,9 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Dave", - "screen_name" : "thebouridentity", - "indices" : [ 0, 16 ], - "id_str" : "962819970404143105", - "id" : 962819970404143105 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ { @@ -1713,7 +1707,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -1746,7 +1740,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Computer Science", @@ -1800,7 +1794,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "lee", + "name" : "leedo", "screen_name" : "leed0", "indices" : [ 3, 9 ], "id_str" : "20949743", @@ -1839,7 +1833,7 @@ Grailbird.data.tweets_2014_08 = "id" : 501808584632827905, "created_at" : "2014-08-19 19:11:04 +0000", "user" : { - "name" : "lee", + "name" : "leedo", "screen_name" : "leed0", "protected" : false, "id_str" : "20949743", @@ -1893,7 +1887,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -1926,7 +1920,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1948,7 +1942,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1970,7 +1964,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1992,7 +1986,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2031,7 +2025,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2053,7 +2047,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -2086,7 +2080,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Parker", @@ -2137,7 +2131,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2170,7 +2164,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2203,7 +2197,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2241,7 +2235,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2264,7 +2258,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "501502573552340992", "text" : "RT @snarfmason: @_sjs what on earth did you build a hackintosh for man?", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -2375,7 +2369,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2397,7 +2391,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2419,10 +2413,10 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zev Eisenberg", + "name" : "Zev Eisenboo \uD83D\uDC7B", "screen_name" : "ZevEisenberg", "indices" : [ 3, 16 ], "id_str" : "16005703", @@ -2442,7 +2436,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "501432327390916608", "text" : "RT @ZevEisenberg: @_sjs oops, wrong command. Try this:\n\ncd \/path\/to\/Xcode; find . -exec xattr -d com.apple.quarantine \u007B\u007D \\;", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -2466,11 +2460,11 @@ Grailbird.data.tweets_2014_08 = "in_reply_to_screen_name" : "ZevEisenberg", "in_reply_to_user_id_str" : "16005703", "user" : { - "name" : "Zev Eisenberg", + "name" : "Zev Eisenboo \uD83D\uDC7B", "screen_name" : "ZevEisenberg", "protected" : false, "id_str" : "16005703", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925744375115796487\/3RexVN67_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046936025380065280\/9kzWIMZJ_normal.jpg", "id" : 16005703, "verified" : false } @@ -2487,7 +2481,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Cohen", @@ -2520,7 +2514,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Cohen", @@ -2568,7 +2562,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "501429408134352898", "text" : "RT @AirspeedSwift: Now, how have I managed to screw this up\u2026 http:\/\/t.co\/M4GHB2f5RS", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2633,7 +2627,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2655,7 +2649,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2677,7 +2671,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2710,7 +2704,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2829,7 +2823,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2905,7 +2899,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "500862546258448384", "text" : "RT @fyrite: Devoured by Shub-Niggurath. Fun times!", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3026,11 +3020,11 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Sarah Frumento", - "screen_name" : "Sarah_SLP", + "name" : "Sarah F", + "screen_name" : "sarah_slp", "indices" : [ 0, 10 ], - "id_str" : "222358903", - "id" : 222358903 + "id_str" : "1872176288", + "id" : 1872176288 } ], "media" : [ ], "hashtags" : [ ], @@ -3044,7 +3038,7 @@ Grailbird.data.tweets_2014_08 = "id" : 500722476822048768, "in_reply_to_status_id" : 500721245630255104, "created_at" : "2014-08-16 19:15:16 +0000", - "in_reply_to_screen_name" : "Sarah_SLP", + "in_reply_to_screen_name" : "SarahFrumento", "in_reply_to_user_id_str" : "222358903", "user" : { "name" : "Sami Samhuri", @@ -3109,7 +3103,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ars Technica", @@ -3118,7 +3112,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "717313", "id" : 717313 }, { - "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Pumpkin Fright\uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 115, 123 ], "id_str" : "11375732", @@ -3140,7 +3134,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/arstechnica.com\" rel=\"nofollow\"\u003EArs tweetbot\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Pumpkin Fright\uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 98, 106 ], "id_str" : "11375732", @@ -3182,7 +3176,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3257,7 +3251,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Frakes", @@ -3318,7 +3312,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3345,7 +3339,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3417,7 +3411,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GonzoHacker", @@ -3437,7 +3431,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "500293790415220736", "text" : "RT @GonzoHacker: First, make it simple. Then, make it simpler. Then, don't make it at all. #simple", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3457,7 +3451,7 @@ Grailbird.data.tweets_2014_08 = "screen_name" : "GonzoHacker", "protected" : false, "id_str" : "773009000", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/920078035533090816\/qM6ROxQX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1044414153828569093\/f61BZnkt_normal.jpg", "id" : 773009000, "verified" : false } @@ -3507,7 +3501,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Retronaut", @@ -3540,7 +3534,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3573,15 +3567,9 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ { - "name" : "Dave", - "screen_name" : "thebouridentity", - "indices" : [ 0, 16 ], - "id_str" : "962819970404143105", - "id" : 962819970404143105 - } ], + "user_mentions" : [ ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -3623,7 +3611,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -3656,7 +3644,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -3719,7 +3707,7 @@ Grailbird.data.tweets_2014_08 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "tom", + "name" : "Tom", "screen_name" : "Inferis", "indices" : [ 3, 11 ], "id_str" : "66573", @@ -3733,7 +3721,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "499378886762061824", "text" : "RT @Inferis: Oh. Xcode6 is *finally* smart enough to remove the \/\/ from a commented out block *even* if they are preceded by whitespace.\n\nF\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3746,11 +3734,11 @@ Grailbird.data.tweets_2014_08 = "id" : 491866917784002560, "created_at" : "2014-07-23 08:46:26 +0000", "user" : { - "name" : "tom", + "name" : "Tom", "screen_name" : "Inferis", "protected" : false, "id_str" : "66573", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/926578520028889088\/VmEnLJ56_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1042306854951387136\/0FGhnu77_normal.jpg", "id" : 66573, "verified" : false } @@ -3767,7 +3755,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "mikeash", @@ -3784,7 +3772,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "499007173553586176", "text" : "RT @mikeash: Since when did browsers decide to not even give me the option of bypassing SSL cert warnings, and how do I convince them to le\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3818,7 +3806,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -3856,7 +3844,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mashable HQ", @@ -3920,7 +3908,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "140569932", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/666383954178650112\/BEWqyFzf_normal.jpg", "id" : 140569932, - "verified" : false + "verified" : true } }, "id" : 498941892630179840, @@ -3935,7 +3923,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3968,7 +3956,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4001,7 +3989,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4034,7 +4022,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4067,7 +4055,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andy Molloy", @@ -4088,7 +4076,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "636923", "id" : 636923 }, { - "name" : "Brent Simmons", + "name" : "inessential.com", "screen_name" : "brentsimmons", "indices" : [ 34, 47 ], "id_str" : "652293", @@ -4118,7 +4106,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Annie Colbert", @@ -4285,7 +4273,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "2550058153", "id" : 2550058153 }, { - "name" : "Zachary Michael Scott Orr", + "name" : "\uD83C\uDF83 Tweek Tweak \u2615\uFE0F", "screen_name" : "ZacharyOrr", "indices" : [ 38, 49 ], "id_str" : "100290468", @@ -4304,10 +4292,10 @@ Grailbird.data.tweets_2014_08 = "id_str" : "498146438292205568", "text" : "RT @AirspeedSwift: I love that error. @ZacharyOrr: I had a snarky Obj-C moment yesterday! https:\/\/t.co\/vGSmenYCI6", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zachary Michael Scott Orr", + "name" : "\uD83C\uDF83 Tweek Tweak \u2615\uFE0F", "screen_name" : "ZacharyOrr", "indices" : [ 19, 30 ], "id_str" : "100290468", @@ -4349,7 +4337,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Cooper", @@ -4388,7 +4376,7 @@ Grailbird.data.tweets_2014_08 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -4535,7 +4523,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Cohen", @@ -4734,7 +4722,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4756,10 +4744,10 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -4773,7 +4761,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "496344819158228992", "text" : "RT @JimRoepcke: YES! \"[A few] classes have been audited for optional conformance, removing most implicitly unwrapped optionals from their i\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4789,7 +4777,7 @@ Grailbird.data.tweets_2014_08 = "id" : 496342902881419264, "created_at" : "2014-08-04 17:12:24 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -4810,7 +4798,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4827,7 +4815,7 @@ Grailbird.data.tweets_2014_08 = "id_str" : "495350434950037504", "text" : "RT @snarfmason: Just saw a job posting for a \u201CDevOps Engineer\u201D. Welcome to the ranks of not-really-engineers my DevOps friends!", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4861,7 +4849,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -4983,10 +4971,10 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ed Zitron", + "name" : "Ed Dead Redemption 2", "screen_name" : "edzitron", "indices" : [ 3, 12 ], "id_str" : "18359716", @@ -5023,11 +5011,11 @@ Grailbird.data.tweets_2014_08 = "id" : 495239173922492416, "created_at" : "2014-08-01 16:06:34 +0000", "user" : { - "name" : "Ed Zitron", + "name" : "Ed Dead Redemption 2", "screen_name" : "edzitron", "protected" : false, "id_str" : "18359716", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/948789160881528833\/1Q7K6ubj_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1012366175915925506\/4mlna0dz_normal.jpg", "id" : 18359716, "verified" : true } @@ -5044,16 +5032,16 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ed Zitron", + "name" : "Ed Dead Redemption 2", "screen_name" : "edzitron", "indices" : [ 0, 9 ], "id_str" : "18359716", "id" : 18359716 }, { - "name" : "Christina Warren", + "name" : "Christscreama Warren", "screen_name" : "film_girl", "indices" : [ 10, 20 ], "id_str" : "9866582", @@ -5083,7 +5071,7 @@ Grailbird.data.tweets_2014_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", diff --git a/public/tweets/data/js/tweets/2014_09.js b/public/tweets/data/js/tweets/2014_09.js index 18d77b7..f980cb9 100755 --- a/public/tweets/data/js/tweets/2014_09.js +++ b/public/tweets/data/js/tweets/2014_09.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2014_09 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -22,7 +22,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -44,7 +44,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dr. Drang", @@ -107,7 +107,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -129,7 +129,7 @@ Grailbird.data.tweets_2014_09 = "id_str" : "517007156273754112", "text" : "RT @siracusa: \"It is fiction, not fact even though it contains facts.\" http:\/\/t.co\/u9Jjjjm6KG", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -168,7 +168,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "anandshimpi", @@ -233,7 +233,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Nathan Rajlich", @@ -266,10 +266,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -326,7 +326,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -348,7 +348,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -406,7 +406,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -486,7 +486,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "WWWTXT (1980-94)", @@ -503,7 +503,7 @@ Grailbird.data.tweets_2014_09 = "id_str" : "515875006115770368", "text" : "RT @wwwtxt: Do you talk to the computer as if it could hear you? Does it ever talk back? \u262F92JAN", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -537,7 +537,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -570,7 +570,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -597,7 +597,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "James Hague", @@ -648,10 +648,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chelsea Stark", + "name" : "Nightmare on Chel Street", "screen_name" : "chelseabot", "indices" : [ 0, 11 ], "id_str" : "3863181", @@ -681,7 +681,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -714,7 +714,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -736,10 +736,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Your Pal Al", + "name" : "t", "screen_name" : "Twitteriffic", "indices" : [ 0, 13 ], "id_str" : "18609272", @@ -767,7 +767,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -794,7 +794,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -816,7 +816,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "MacRumors.com", @@ -855,7 +855,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -888,7 +888,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -926,7 +926,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -986,7 +986,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1008,7 +1008,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1030,7 +1030,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1052,7 +1052,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1105,7 +1105,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dr. Drang", @@ -1156,7 +1156,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daniel Silva", @@ -1195,7 +1195,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "MacRumors.com", @@ -1246,7 +1246,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1268,7 +1268,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dr. Drang", @@ -1329,7 +1329,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Holt", @@ -1362,7 +1362,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Holt", @@ -1430,7 +1430,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1452,10 +1452,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1485,7 +1485,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1512,7 +1512,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1534,7 +1534,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -1567,7 +1567,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Gruber", @@ -1605,10 +1605,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1638,7 +1638,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Fyrite", @@ -1805,7 +1805,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2029,7 +2029,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2187,7 +2187,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -2262,7 +2262,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2295,7 +2295,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2407,7 +2407,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2429,7 +2429,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2451,7 +2451,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2537,7 +2537,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2559,7 +2559,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -2576,7 +2576,7 @@ Grailbird.data.tweets_2014_09 = "id_str" : "513067681843793920", "text" : "RT @chockenberry: Apple should put Xcode, iCloud, Portal & TestFlight developers in a room for a week to release an app.\n\nThe risk is they'\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2610,7 +2610,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2637,7 +2637,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2670,7 +2670,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2697,7 +2697,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mashable HQ", @@ -2766,7 +2766,7 @@ Grailbird.data.tweets_2014_09 = "id_str" : "140569932", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/666383954178650112\/BEWqyFzf_normal.jpg", "id" : 140569932, - "verified" : false + "verified" : true } }, "id" : 512983138931576832, @@ -2781,7 +2781,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -2814,7 +2814,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2871,7 +2871,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2904,7 +2904,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2937,7 +2937,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2990,7 +2990,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3012,7 +3012,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kristina McKay", @@ -3088,7 +3088,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RingPartner", @@ -3103,7 +3103,7 @@ Grailbird.data.tweets_2014_09 = "id_str" : "135727142", "id" : 135727142 }, { - "name" : "UpDesk", + "name" : "UPDESK", "screen_name" : "UpDesk", "indices" : [ 25, 32 ], "id_str" : "587861211", @@ -3133,7 +3133,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RingPartner", @@ -3148,7 +3148,7 @@ Grailbird.data.tweets_2014_09 = "id_str" : "135727142", "id" : 135727142 }, { - "name" : "UpDesk", + "name" : "UPDESK", "screen_name" : "UpDesk", "indices" : [ 54, 61 ], "id_str" : "587861211", @@ -3207,7 +3207,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -3260,7 +3260,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3293,7 +3293,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -3326,7 +3326,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3359,7 +3359,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3392,7 +3392,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Instapaper", @@ -3426,7 +3426,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3470,7 +3470,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -3503,10 +3503,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 0, 5 ], "id_str" : "13217612", @@ -3536,7 +3536,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "1Password", @@ -3553,7 +3553,7 @@ Grailbird.data.tweets_2014_09 = "id_str" : "512292349524058113", "text" : "RT @1Password: I\u2019ve been bursting at the pixels to tell you, and now I can finally share the big news about iOS 8 and my destiny! http:\/\/t.\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3575,7 +3575,7 @@ Grailbird.data.tweets_2014_09 = "screen_name" : "1Password", "protected" : false, "id_str" : "793926", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981326545179439104\/jPhaQEQv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1016336590136856576\/gFgL1sh1_normal.jpg", "id" : 793926, "verified" : true } @@ -3592,7 +3592,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andrew Yang", @@ -3664,7 +3664,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Buckleup", @@ -3766,7 +3766,7 @@ Grailbird.data.tweets_2014_09 = "screen_name" : "buckleup", "protected" : false, "id_str" : "14828972", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/741798868241682432\/8H0Ssdt4_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1013609989242404864\/d2MJLr24_normal.jpg", "id" : 14828972, "verified" : false } @@ -3783,7 +3783,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3838,7 +3838,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -3965,7 +3965,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3987,7 +3987,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\uD83D\uDC2F ece \uD83D\uDC2F", @@ -4060,7 +4060,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4093,7 +4093,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4132,10 +4132,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4165,7 +4165,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horace Dediu", @@ -4278,7 +4278,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4358,7 +4358,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -4394,7 +4394,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4490,7 +4490,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -4642,10 +4642,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 0, 5 ], "id_str" : "13217612", @@ -4675,10 +4675,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 0, 5 ], "id_str" : "13217612", @@ -4708,7 +4708,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4816,7 +4816,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Donohue", @@ -4852,7 +4852,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4885,7 +4885,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4915,7 +4915,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Donohue", @@ -4948,7 +4948,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4970,7 +4970,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "IsTheAppleStoreDown", @@ -5003,7 +5003,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Max Howell", @@ -5036,7 +5036,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "App Store", @@ -5069,7 +5069,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -5133,10 +5133,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Pascal Hartig", + "name" : "Pascal \u00BBSpineless Headless G-Machine\u00AB Hartig", "screen_name" : "passy", "indices" : [ 3, 9 ], "id_str" : "14383077", @@ -5287,7 +5287,7 @@ Grailbird.data.tweets_2014_09 = "id" : 509711664543838209, "created_at" : "2014-09-10 14:35:05 +0000", "user" : { - "name" : "Pascal Hartig", + "name" : "Pascal \u00BBSpineless Headless G-Machine\u00AB Hartig", "screen_name" : "passy", "protected" : false, "id_str" : "14383077", @@ -5308,7 +5308,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5335,7 +5335,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5368,7 +5368,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5401,7 +5401,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -5434,7 +5434,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5456,10 +5456,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5494,7 +5494,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -5527,7 +5527,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "TV Truck Schedule", @@ -5578,10 +5578,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -5611,7 +5611,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Justin Spahr-Summers", @@ -5633,7 +5633,7 @@ Grailbird.data.tweets_2014_09 = "id_str" : "509005436054671360", "text" : "RT @jspahrsummers: http:\/\/t.co\/Re5URbDlpe is a fascinating list of things that GHC\u2019s optimizer does, including some passes that depend upon\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5675,7 +5675,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5705,7 +5705,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5727,10 +5727,10 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5760,7 +5760,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5790,7 +5790,7 @@ Grailbird.data.tweets_2014_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dilan Dane", + "name" : "Dilan Dane\uD83C\uDF88", "screen_name" : "dilan", "indices" : [ 0, 6 ], "id_str" : "6396722", @@ -5820,7 +5820,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "AnandTech", @@ -5853,7 +5853,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -5862,11 +5862,11 @@ Grailbird.data.tweets_2014_09 = "id_str" : "15292261", "id" : 15292261 }, { - "name" : "Sarah Frumento", - "screen_name" : "Sarah_SLP", + "name" : "Sarah F", + "screen_name" : "sarah_slp", "indices" : [ 11, 21 ], - "id_str" : "222358903", - "id" : 222358903 + "id_str" : "1872176288", + "id" : 1872176288 }, { "name" : "snarfmason", "screen_name" : "snarfmason", @@ -5907,7 +5907,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "James Hague", @@ -5943,7 +5943,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -6014,7 +6014,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6039,7 +6039,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Noel Randewich", @@ -6112,7 +6112,7 @@ Grailbird.data.tweets_2014_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bryan Kyle", diff --git a/public/tweets/data/js/tweets/2014_10.js b/public/tweets/data/js/tweets/2014_10.js index 5f022b4..46ffce7 100755 --- a/public/tweets/data/js/tweets/2014_10.js +++ b/public/tweets/data/js/tweets/2014_10.js @@ -1,9 +1,9 @@ Grailbird.data.tweets_2014_10 = [ { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -86,7 +86,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Richard Gaywood", @@ -232,7 +232,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -285,7 +285,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "dan barker", @@ -389,7 +389,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mahyar Mj", @@ -455,7 +455,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Todd Dunlop", @@ -494,7 +494,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Barnard", @@ -550,7 +550,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Pebble", @@ -611,7 +611,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -764,7 +764,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -817,7 +817,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -850,7 +850,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -883,7 +883,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ed Wynne", @@ -944,7 +944,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "James Thomson", @@ -961,7 +961,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "527506652803903489", "text" : "RT @jamesthomson: I spent a really long time working on the PCalc widgets and making them perfect, so this is pretty crushing news.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -978,7 +978,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050713686229360641\/M7Kszw-a_normal.jpg", "id" : 14169916, "verified" : false } @@ -995,7 +995,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "James Thomson", @@ -1012,7 +1012,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "527506640564932608", "text" : "RT @jamesthomson: Apple has told me that Notification Center widgets on iOS cannot perform any calculations, and the current PCalc widget m\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1029,7 +1029,7 @@ Grailbird.data.tweets_2014_10 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050713686229360641\/M7Kszw-a_normal.jpg", "id" : 14169916, "verified" : false } @@ -1068,7 +1068,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam", @@ -1136,10 +1136,10 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Andy Ngo", + "name" : "Andy Ngo @ \uD83C\uDDF2\uD83C\uDDFE", "screen_name" : "andyngo", "indices" : [ 3, 11 ], "id_str" : "11009532", @@ -1183,11 +1183,11 @@ Grailbird.data.tweets_2014_10 = "in_reply_to_screen_name" : "mike_matas", "in_reply_to_user_id_str" : "51518017", "user" : { - "name" : "Andy Ngo", + "name" : "Andy Ngo @ \uD83C\uDDF2\uD83C\uDDFE", "screen_name" : "andyngo", "protected" : false, "id_str" : "11009532", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/884588774159548417\/IqPaneGc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1006813739113418754\/0qvVZ6ij_normal.jpg", "id" : 11009532, "verified" : false } @@ -1240,7 +1240,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1273,7 +1273,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1303,7 +1303,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Barnard", @@ -1370,7 +1370,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dalia Ezzat", @@ -1452,10 +1452,10 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1485,7 +1485,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1540,7 +1540,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -1591,7 +1591,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -1683,7 +1683,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1705,7 +1705,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1727,7 +1727,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1749,7 +1749,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1771,7 +1771,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Barnard", @@ -1964,7 +1964,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Donohue", @@ -1997,7 +1997,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Donohue", @@ -2036,7 +2036,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Anthony Johnson", @@ -2075,7 +2075,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Justin Spahr-Summers", @@ -2147,7 +2147,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Justin Spahr-Summers", @@ -2180,7 +2180,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ilya Grigorik", @@ -2247,7 +2247,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andy Matuschak", @@ -2286,7 +2286,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -2319,10 +2319,10 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Radek Pietruszewski", + "name" : "Radek Pietruszewski \uD83C\uDF49", "screen_name" : "radexp", "indices" : [ 0, 7 ], "id_str" : "107770370", @@ -2389,7 +2389,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2411,10 +2411,10 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2444,7 +2444,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -2477,7 +2477,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -2510,7 +2510,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -2543,7 +2543,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -2576,7 +2576,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -2609,7 +2609,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -2642,7 +2642,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -2710,7 +2710,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -2743,7 +2743,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -2776,7 +2776,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -2809,7 +2809,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -2842,7 +2842,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -2875,7 +2875,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Jordens", @@ -2884,7 +2884,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "2262091", "id" : 2262091 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 10, 21 ], "id_str" : "894911", @@ -2984,10 +2984,10 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Drug Monkey", + "name" : "Drug WereMonkey", "screen_name" : "drugmonkeyblog", "indices" : [ 3, 18 ], "id_str" : "26589498", @@ -3014,11 +3014,11 @@ Grailbird.data.tweets_2014_10 = "id" : 522961302252445696, "created_at" : "2014-10-17 04:04:25 +0000", "user" : { - "name" : "Drug Monkey", + "name" : "Drug WereMonkey", "screen_name" : "drugmonkeyblog", "protected" : false, "id_str" : "26589498", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/911960280610910208\/F0ay9ioS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050423062959554561\/jYbbKsv3_normal.jpg", "id" : 26589498, "verified" : false } @@ -3354,7 +3354,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "522990128097411072", "text" : "RT @Catfish_Man: NSXMLParser should be a good bit faster and smaller in Yosemite\/iOS 8. Would be interested in hearing if that\u2019s holding tr\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3391,7 +3391,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"https:\/\/dev.twitter.com\/docs\/tfw\" rel=\"nofollow\"\u003ETwitter for Websites\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan Benjamin \uD83E\uDD85\uD83D\uDC0D", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE71\uD835\uDE8E\uD835\uDE97\uD835\uDE93\uD835\uDE8A\uD835\uDE96\uD835\uDE92\uD835\uDE97", "screen_name" : "danbenjamin", "indices" : [ 15, 27 ], "id_str" : "5905672", @@ -3427,7 +3427,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jason Snell", @@ -3460,7 +3460,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter", @@ -3528,7 +3528,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matthew Panzarino", @@ -3579,7 +3579,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -3596,7 +3596,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "522816879258517505", "text" : "RT @siracusa: Now seeking Radeon R9 M295X comparative benchmarks\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4057,7 +4057,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dr. Drang", @@ -4090,10 +4090,10 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Neven Mrgan", + "name" : "NE7EN", "screen_name" : "mrgan", "indices" : [ 3, 9 ], "id_str" : "35293", @@ -4125,11 +4125,11 @@ Grailbird.data.tweets_2014_10 = "id" : 521751633823555584, "created_at" : "2014-10-13 19:57:37 +0000", "user" : { - "name" : "Neven Mrgan", + "name" : "NE7EN", "screen_name" : "mrgan", "protected" : false, "id_str" : "35293", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925719886457847808\/Vuf2uyPY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046808674239315972\/zdrGiEr3_normal.jpg", "id" : 35293, "verified" : true } @@ -4179,10 +4179,10 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dan DiGangi \uD83D\uDCA1", + "name" : "\uD835\uDE73\uD835\uDE8A\uD835\uDE97 \uD835\uDE73\uD835\uDE92\uD835\uDE76\uD835\uDE8A\uD835\uDE97\uD835\uDE90\uD835\uDE92 \u21C4", "screen_name" : "dandigangi", "indices" : [ 0, 11 ], "id_str" : "192625645", @@ -4440,7 +4440,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4462,7 +4462,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Dawe", @@ -4485,7 +4485,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "520102880117026816", "text" : "RT @ctdawe: Wireshark dev version 1.99.0 for Mac is now a native app that no longer requires X11! (h\/t @mike_albano) https:\/\/t.co\/eOlOvkIKg\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mike Albano", @@ -4753,7 +4753,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Frakes", @@ -4835,7 +4835,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "14868897", "id" : 14868897 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 13, 24 ], "id_str" : "894911", @@ -4868,7 +4868,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -4988,7 +4988,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Lynch", @@ -5058,7 +5058,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5097,7 +5097,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5133,7 +5133,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Lynch", @@ -5193,7 +5193,7 @@ Grailbird.data.tweets_2014_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5274,7 +5274,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5329,7 +5329,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5356,7 +5356,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Darren Tome", @@ -5429,7 +5429,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5489,7 +5489,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Phillips Beer", @@ -5581,7 +5581,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John-David \u201Cjust works\u201D Dalton", @@ -5641,7 +5641,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5663,7 +5663,7 @@ Grailbird.data.tweets_2014_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -5685,7 +5685,7 @@ Grailbird.data.tweets_2014_10 = "id_str" : "517330341653409792", "text" : "RT @siracusa: Strike a pose. http:\/\/t.co\/9sJWUpBZVi", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2014_11.js b/public/tweets/data/js/tweets/2014_11.js index 994e062..b30375f 100755 --- a/public/tweets/data/js/tweets/2014_11.js +++ b/public/tweets/data/js/tweets/2014_11.js @@ -77,7 +77,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -296,7 +296,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -318,7 +318,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Smith", @@ -459,7 +459,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -489,7 +489,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -660,7 +660,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -900,7 +900,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Anthony Nystr\u00F6m", @@ -1070,7 +1070,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dave Rutledge", @@ -1181,10 +1181,10 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -1219,10 +1219,10 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 1, 14 ], "id_str" : "11973362", @@ -1293,7 +1293,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vincent Roy", @@ -1443,7 +1443,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Donohue", @@ -1494,7 +1494,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Donohue", @@ -1545,7 +1545,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -1601,7 +1601,7 @@ Grailbird.data.tweets_2014_11 = "id_str" : "535115391148625920", "text" : "RT @merowing_: I\u2019m very excited to announce that I\u2019ll be joining some really cool and crazy smart people at @mashable", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mashable", @@ -1624,7 +1624,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "merowing_", "protected" : false, "id_str" : "289246577", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619395184082714624\/oTl1W51O_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1036876946448232449\/yqhZsnBS_normal.jpg", "id" : 289246577, "verified" : true } @@ -1707,7 +1707,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Leggett", @@ -1757,7 +1757,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -1808,7 +1808,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Tofias", @@ -1864,7 +1864,7 @@ Grailbird.data.tweets_2014_11 = "id_str" : "534381632715620352", "text" : "RT @drwave: I open it, noting the ease with which the lid comes off. \u201CThese are excellent, well-designed boxes\u201D \/\/ cc @jonronson\nhttp:\/\/t.c\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "jon ronson", @@ -1909,7 +1909,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -1951,7 +1951,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1984,7 +1984,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2151,7 +2151,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2173,7 +2173,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -2224,7 +2224,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Six Colors", @@ -2257,10 +2257,10 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "indices" : [ 0, 13 ], "id_str" : "1628814223", @@ -2290,7 +2290,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2323,7 +2323,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2356,7 +2356,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2389,7 +2389,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2422,7 +2422,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2444,7 +2444,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2466,7 +2466,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -2499,7 +2499,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -2532,7 +2532,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -2565,7 +2565,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -2598,7 +2598,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -2636,7 +2636,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2658,7 +2658,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ustwo games", @@ -2692,7 +2692,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "ustwogames", "protected" : false, "id_str" : "899902687", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/943469724868009984\/cr8BMsJM_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1015224468174761984\/VvEnNTms_normal.jpg", "id" : 899902687, "verified" : true } @@ -2709,7 +2709,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -2742,7 +2742,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ars Technica", @@ -2839,7 +2839,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bill Bumgarner", @@ -2910,7 +2910,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Phillips Beer", @@ -3350,7 +3350,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Blanchard", @@ -3359,7 +3359,7 @@ Grailbird.data.tweets_2014_11 = "id_str" : "56364530", "id" : 56364530 }, { - "name" : "JamieDMJ", + "name" : "Jamie Jones", "screen_name" : "JamieDMJ", "indices" : [ 108, 117 ], "id_str" : "59426484", @@ -3407,7 +3407,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "JamieDMJ", + "name" : "Jamie Jones", "screen_name" : "JamieDMJ", "indices" : [ 87, 96 ], "id_str" : "59426484", @@ -3475,7 +3475,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3533,7 +3533,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -3560,7 +3560,7 @@ Grailbird.data.tweets_2014_11 = "id" : 530938608426164224, "created_at" : "2014-11-08 04:23:23 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -3581,7 +3581,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3614,7 +3614,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Beats Music", @@ -3648,7 +3648,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -3684,7 +3684,7 @@ Grailbird.data.tweets_2014_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3731,7 +3731,7 @@ Grailbird.data.tweets_2014_11 = "id_str" : "530577748595851264", "text" : "RT @tapbot_paul: Helping oldest with homework.\nMe: Go download Calcbot, you can put in the parenthesis just like the problem.\nHim: Oh cool,\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3751,7 +3751,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "tapbot_paul", "protected" : false, "id_str" : "18247541", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849243635178778624\/JXnBOvr__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996375435234570240\/AobDpgxZ_normal.jpg", "id" : 18247541, "verified" : false } @@ -3768,7 +3768,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3790,7 +3790,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Anil Dash", @@ -3841,7 +3841,7 @@ Grailbird.data.tweets_2014_11 = "screen_name" : "anildash", "protected" : false, "id_str" : "36823", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/964333187328491520\/nPt-GBf5_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1040592282032984071\/RC8We7BG_normal.jpg", "id" : 36823, "verified" : true } @@ -3858,7 +3858,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3891,7 +3891,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3924,10 +3924,10 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -3954,7 +3954,7 @@ Grailbird.data.tweets_2014_11 = "id" : 530464423341985792, "created_at" : "2014-11-06 20:59:08 +0000", "user" : { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -3975,10 +3975,10 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "indices" : [ 0, 13 ], "id_str" : "1628814223", @@ -4008,10 +4008,10 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "indices" : [ 0, 13 ], "id_str" : "1628814223", @@ -4041,7 +4041,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "CGP Grey", @@ -4079,7 +4079,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4154,7 +4154,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dr. Drang", @@ -4220,7 +4220,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4264,7 +4264,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4286,7 +4286,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4325,7 +4325,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4385,7 +4385,7 @@ Grailbird.data.tweets_2014_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Smith", diff --git a/public/tweets/data/js/tweets/2014_12.js b/public/tweets/data/js/tweets/2014_12.js index 30be8b0..8666111 100755 --- a/public/tweets/data/js/tweets/2014_12.js +++ b/public/tweets/data/js/tweets/2014_12.js @@ -979,7 +979,7 @@ Grailbird.data.tweets_2014_12 = "id_str" : "547787406775042048", "text" : "RT @AirspeedSwift: My attempt to advocate optionals in everyday code, not just for dealing with Cocoa frameworks: http:\/\/t.co\/CipyG1nC1n", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1707,7 +1707,7 @@ Grailbird.data.tweets_2014_12 = "screen_name" : "Jordan_D", "protected" : false, "id_str" : "43960973", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/978360504325427200\/x6REye4B_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1037394885152784393\/m0zkZQVd_normal.jpg", "id" : 43960973, "verified" : false } @@ -2015,7 +2015,7 @@ Grailbird.data.tweets_2014_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Don Melton", @@ -2076,7 +2076,7 @@ Grailbird.data.tweets_2014_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2103,7 +2103,7 @@ Grailbird.data.tweets_2014_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2142,7 +2142,7 @@ Grailbird.data.tweets_2014_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -2175,7 +2175,7 @@ Grailbird.data.tweets_2014_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -2208,7 +2208,7 @@ Grailbird.data.tweets_2014_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -2697,7 +2697,7 @@ Grailbird.data.tweets_2014_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2015_01.js b/public/tweets/data/js/tweets/2015_01.js index 057470c..ba1808c 100755 --- a/public/tweets/data/js/tweets/2015_01.js +++ b/public/tweets/data/js/tweets/2015_01.js @@ -132,7 +132,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Overcast", @@ -193,9 +193,15 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { - "user_mentions" : [ ], + "user_mentions" : [ { + "name" : "Picture Of Life", + "screen_name" : "PictureLife", + "indices" : [ 0, 12 ], + "id_str" : "992281334574792709", + "id" : 992281334574792709 + } ], "media" : [ ], "hashtags" : [ ], "urls" : [ ] @@ -215,9 +221,15 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { + "name" : "Picture Of Life", + "screen_name" : "PictureLife", + "indices" : [ 3, 15 ], + "id_str" : "992281334574792709", + "id" : 992281334574792709 + }, { "name" : "Dropbox", "screen_name" : "Dropbox", "indices" : [ 101, 109 ], @@ -299,7 +311,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Loren Brichter", @@ -436,10 +448,10 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Christina Warren", + "name" : "Christscreama Warren", "screen_name" : "film_girl", "indices" : [ 0, 10 ], "id_str" : "9866582", @@ -569,10 +581,10 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -802,7 +814,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -835,7 +847,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Otto", @@ -1152,7 +1164,7 @@ Grailbird.data.tweets_2015_01 = "id_str" : "556117168329195520", "text" : "RT @danielpunkass: Wisdom for the ages from @ccgus, in wake of @marcoarment\u2019s financial results. App not selling? \"Maybe it just sucks?\" ht\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gus Mueller", @@ -1311,7 +1323,7 @@ Grailbird.data.tweets_2015_01 = "screen_name" : "ThatsOurWaldo", "protected" : false, "id_str" : "237944041", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981161258828300288\/vPz5Tood_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1037393441179803648\/hdANfpWZ_normal.jpg", "id" : 237944041, "verified" : false } @@ -1367,7 +1379,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -1400,7 +1412,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gary Bernhardt", @@ -1438,7 +1450,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Heilmann", @@ -1674,7 +1686,7 @@ Grailbird.data.tweets_2015_01 = "screen_name" : "VicBeerWeek", "protected" : false, "id_str" : "2196503131", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/935578895893479424\/bTJybeAr_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1004837109046185984\/hO5P4MiM_normal.jpg", "id" : 2196503131, "verified" : false } @@ -1691,10 +1703,10 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "the second hardest problem in computer science", + "name" : "std::mem::transmute_copy(steve, lol)", "screen_name" : "steveklabnik", "indices" : [ 0, 13 ], "id_str" : "22386062", @@ -1755,7 +1767,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joe Weisenthal", @@ -1765,7 +1777,7 @@ Grailbird.data.tweets_2015_01 = "id" : 14096763 }, { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 13, 27 ], "id_str" : "1236101", "id" : 1236101 @@ -1794,7 +1806,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andy Ihnatko", @@ -2082,7 +2094,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Cohen", @@ -2091,7 +2103,7 @@ Grailbird.data.tweets_2015_01 = "id_str" : "2960721", "id" : 2960721 }, { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 8, 13 ], "id_str" : "13217612", @@ -2121,7 +2133,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Pierce", @@ -2154,7 +2166,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Cohen", @@ -2163,7 +2175,7 @@ Grailbird.data.tweets_2015_01 = "id_str" : "2960721", "id" : 2960721 }, { - "name" : "Chuq Von Rospach", + "name" : "Chuq \"Artisanal Gerunds\" Von Rospach", "screen_name" : "chuq", "indices" : [ 8, 13 ], "id_str" : "13217612", @@ -2193,7 +2205,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Picnic Coffee", @@ -2226,7 +2238,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Nitin Ganatra", @@ -2277,7 +2289,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Karissa Bell", @@ -2361,7 +2373,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2388,7 +2400,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horace Dediu", @@ -2604,7 +2616,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "rentzsch", @@ -2677,7 +2689,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joshua Topolsky", @@ -2748,7 +2760,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Krzysztof Zab\u0142ocki", @@ -2765,7 +2777,7 @@ Grailbird.data.tweets_2015_01 = "id_str" : "552552121761923073", "text" : "RT @merowing_: While I\u2019m in NYC, is there any iOS meetup happening 10th-15th February? I\u2019d be happy to speak at one :)", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2782,7 +2794,7 @@ Grailbird.data.tweets_2015_01 = "screen_name" : "merowing_", "protected" : false, "id_str" : "289246577", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619395184082714624\/oTl1W51O_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1036876946448232449\/yqhZsnBS_normal.jpg", "id" : 289246577, "verified" : true } @@ -2799,7 +2811,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2838,7 +2850,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Troy Surrett", @@ -2902,7 +2914,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3109,7 +3121,7 @@ Grailbird.data.tweets_2015_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -3203,7 +3215,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mink ette", + "name" : "Mink ette \uD83D\uDD1C Indiecade Europe", "screen_name" : "mink_ette", "indices" : [ 3, 13 ], "id_str" : "24217237", @@ -3233,7 +3245,7 @@ Grailbird.data.tweets_2015_01 = "id" : 550573723317968896, "created_at" : "2015-01-01 08:46:19 +0000", "user" : { - "name" : "Mink ette", + "name" : "Mink ette \uD83D\uDD1C Indiecade Europe", "screen_name" : "mink_ette", "protected" : false, "id_str" : "24217237", @@ -3257,7 +3269,7 @@ Grailbird.data.tweets_2015_01 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Steve Streza \uD83C\uDF39 (he\/they)", + "name" : "Steve Streza", "screen_name" : "SteveStreza", "indices" : [ 3, 15 ], "id_str" : "658643", @@ -3284,7 +3296,7 @@ Grailbird.data.tweets_2015_01 = "id" : 550563414586580994, "created_at" : "2015-01-01 08:05:21 +0000", "user" : { - "name" : "Steve Streza \uD83C\uDF39 (he\/they)", + "name" : "Steve Streza", "screen_name" : "SteveStreza", "protected" : false, "id_str" : "658643", diff --git a/public/tweets/data/js/tweets/2015_02.js b/public/tweets/data/js/tweets/2015_02.js index 8f52d8e..47b9a4f 100755 --- a/public/tweets/data/js/tweets/2015_02.js +++ b/public/tweets/data/js/tweets/2015_02.js @@ -22,7 +22,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "RingPartner", @@ -137,7 +137,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brands Saying Bae", @@ -173,10 +173,10 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Squeezer of Cows", + "name" : "Zach Waldowski", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -206,75 +206,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Squeezer of Cows", - "screen_name" : "zwaldowski", - "indices" : [ 3, 14 ], - "id_str" : "18553922", - "id" : 18553922 - }, { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "indices" : [ 16, 21 ], - "id_str" : "4777951", - "id" : 4777951 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "571001538891554816", - "text" : "RT @zwaldowski: @_sjs It\u2019s a bad interaction with Bartender. From what I understand it\u2019s fixed in the next beta.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "indices" : [ 0, 5 ], - "id_str" : "4777951", - "id" : 4777951 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "570999978379718656", - "geo" : { }, - "id_str" : "571001432192581632", - "in_reply_to_user_id" : 4777951, - "text" : "@_sjs It\u2019s a bad interaction with Bartender. From what I understand it\u2019s fixed in the next beta.", - "id" : 571001432192581632, - "in_reply_to_status_id" : 570999978379718656, - "created_at" : "2015-02-26 17:38:44 +0000", - "in_reply_to_screen_name" : "_sjs", - "in_reply_to_user_id_str" : "4777951", - "user" : { - "name" : "Squeezer of Cows", - "screen_name" : "zwaldowski", - "protected" : false, - "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/931711648661954560\/Js14N7wp_normal.jpg", - "id" : 18553922, - "verified" : false - } - }, - "id" : 571001538891554816, - "created_at" : "2015-02-26 17:39:10 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -296,7 +228,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -323,7 +255,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -350,7 +282,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -372,10 +304,10 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -525,7 +457,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -558,7 +490,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -591,7 +523,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -629,7 +561,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -690,7 +622,7 @@ Grailbird.data.tweets_2015_02 = "screen_name" : "SubtleGradient", "protected" : false, "id_str" : "14405464", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/974751815680983040\/6zOfX-Ls_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1022160768622645250\/CrKK5uDG_normal.jpg", "id" : 14405464, "verified" : false } @@ -838,7 +770,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Nihilist Apple", @@ -889,7 +821,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1118,57 +1050,6 @@ Grailbird.data.tweets_2015_02 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Mike Monteiro wants @jack fired.", - "screen_name" : "monteiro", - "indices" : [ 3, 12 ], - "id_str" : "2426", - "id" : 2426 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "567539783216279552", - "text" : "RT @monteiro: Fuck geese. And double fuck swans. Fucking assholes.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "567515617914134528", - "text" : "Fuck geese. And double fuck swans. Fucking assholes.", - "id" : 567515617914134528, - "created_at" : "2015-02-17 02:47:21 +0000", - "user" : { - "name" : "Mike Monteiro wants @jack fired.", - "screen_name" : "monteiro", - "protected" : false, - "id_str" : "2426", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/803718083864989696\/HmANkE-1_normal.jpg", - "id" : 2426, - "verified" : true - } - }, - "id" : 567539783216279552, - "created_at" : "2015-02-17 04:23:23 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { @@ -1179,7 +1060,7 @@ Grailbird.data.tweets_2015_02 = "id_str" : "31353077", "id" : 31353077 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 16, 28 ], "id_str" : "676363", @@ -1346,7 +1227,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matthew Panzarino", @@ -1379,7 +1260,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1406,7 +1287,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Moren", @@ -1575,7 +1456,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1630,7 +1511,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1717,7 +1598,7 @@ Grailbird.data.tweets_2015_02 = "id_str" : "289246577", "id" : 289246577 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 11, 22 ], "id_str" : "894911", @@ -1762,7 +1643,7 @@ Grailbird.data.tweets_2015_02 = "id_str" : "140569932", "id" : 140569932 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 58, 69 ], "id_str" : "894911", @@ -1791,7 +1672,7 @@ Grailbird.data.tweets_2015_02 = "id_str" : "140569932", "id" : 140569932 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 43, 54 ], "id_str" : "894911", @@ -1817,7 +1698,7 @@ Grailbird.data.tweets_2015_02 = "screen_name" : "merowing_", "protected" : false, "id_str" : "289246577", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619395184082714624\/oTl1W51O_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1036876946448232449\/yqhZsnBS_normal.jpg", "id" : 289246577, "verified" : true } @@ -1837,7 +1718,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -1900,7 +1781,7 @@ Grailbird.data.tweets_2015_02 = "id" : 566407769054797825, "created_at" : "2015-02-14 01:25:10 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -2057,7 +1938,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -2139,7 +2020,7 @@ Grailbird.data.tweets_2015_02 = "id" : 565391238980173828, "created_at" : "2015-02-11 06:05:50 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -2208,7 +2089,7 @@ Grailbird.data.tweets_2015_02 = "id_str" : "14977224", "id" : 14977224 }, { - "name" : "snipe, mother of assets \uD83D\uDC3E", + "name" : "votey mcvoteface \uD83D\uDC3E", "screen_name" : "snipeyhead", "indices" : [ 26, 37 ], "id_str" : "14246782", @@ -2344,7 +2225,7 @@ Grailbird.data.tweets_2015_02 = "id_str" : "564539622043029505", "text" : "RT @johnchidgey: Total time to convert 200Gb library from iPhoto to Photos: 21hrs 13mins.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2378,7 +2259,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2527,7 +2408,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2552,7 +2433,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brett \uD835\uDCBE\uD835\uDC54\uD835\uDCC3\uD835\uDC5C\uD835\uDCC7\uD835\uDC52 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCC2\uD835\uDCB6\uD835\uDCC3 \uD835\uDCB7\uD835\uDC52\uD835\uDCBD\uD835\uDCBE\uD835\uDCC3\uD835\uDCB9 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCB8\uD835\uDCCA\uD835\uDCC7\uD835\uDCC9\uD835\uDCB6\uD835\uDCBE\uD835\uDCC3 Terpstra", + "name" : "Brett Terpstra anthropomorphizes your pets, too.", "screen_name" : "ttscoff", "indices" : [ 3, 11 ], "id_str" : "777908", @@ -2579,7 +2460,7 @@ Grailbird.data.tweets_2015_02 = "id" : 563370850867748866, "created_at" : "2015-02-05 16:17:32 +0000", "user" : { - "name" : "Brett \uD835\uDCBE\uD835\uDC54\uD835\uDCC3\uD835\uDC5C\uD835\uDCC7\uD835\uDC52 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCC2\uD835\uDCB6\uD835\uDCC3 \uD835\uDCB7\uD835\uDC52\uD835\uDCBD\uD835\uDCBE\uD835\uDCC3\uD835\uDCB9 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCB8\uD835\uDCCA\uD835\uDCC7\uD835\uDCC9\uD835\uDCB6\uD835\uDCBE\uD835\uDCC3 Terpstra", + "name" : "Brett Terpstra anthropomorphizes your pets, too.", "screen_name" : "ttscoff", "protected" : false, "id_str" : "777908", @@ -2600,7 +2481,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -2651,7 +2532,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -2766,7 +2647,7 @@ Grailbird.data.tweets_2015_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2791,7 +2672,7 @@ Grailbird.data.tweets_2015_02 = "source" : "\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Christina Warren", + "name" : "Christscreama Warren", "screen_name" : "film_girl", "indices" : [ 62, 72 ], "id_str" : "9866582", @@ -2849,7 +2730,7 @@ Grailbird.data.tweets_2015_02 = "id_str" : "562640886098452481", "text" : "RT @olebegemann: You couldn\u2019t pick a better example to demo IBInspectable\/IBDesignable: http:\/\/t.co\/vbX3zpScps", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2015_03.js b/public/tweets/data/js/tweets/2015_03.js index 13004d6..0752929 100755 --- a/public/tweets/data/js/tweets/2015_03.js +++ b/public/tweets/data/js/tweets/2015_03.js @@ -51,7 +51,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "SwiftOnSecurity", "protected" : false, "id_str" : "2436389418", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985003054197018625\/irNuSVxr_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1047392190257946624\/Pc2yxY4U_normal.jpg", "id" : 2436389418, "verified" : false } @@ -119,7 +119,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "notch", "protected" : false, "id_str" : "63485337", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/855193282841907204\/aVwHE5Fw_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1019548245326852097\/Q3giU2_S_normal.jpg", "id" : 63485337, "verified" : true } @@ -182,7 +182,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "SwiftOnSecurity", "protected" : false, "id_str" : "2436389418", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985003054197018625\/irNuSVxr_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1047392190257946624\/Pc2yxY4U_normal.jpg", "id" : 2436389418, "verified" : false } @@ -216,7 +216,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "583011452274917376", "text" : "RT @dmoren: Need a button for when I run out of Amazon Dash Buttons and have to order more.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -615,7 +615,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "potch", + "name" : "skeleton potch", "screen_name" : "potch", "indices" : [ 3, 9 ], "id_str" : "15334840", @@ -642,11 +642,11 @@ Grailbird.data.tweets_2015_03 = "id" : 292403281349705729, "created_at" : "2013-01-18 22:49:09 +0000", "user" : { - "name" : "potch", + "name" : "skeleton potch", "screen_name" : "potch", "protected" : false, "id_str" : "15334840", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919024849132986369\/lFPxE7Hj_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1032804751878967296\/8NAA_fLN_normal.jpg", "id" : 15334840, "verified" : false } @@ -734,7 +734,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -817,7 +817,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "580084460575678464", "text" : "RT @mikeash: @saniul LAContext's localizedFallbackTitle property.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "saniul", @@ -885,7 +885,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "580084448747753476", "text" : "RT @mikeash: @gte New in iOS 8\/10.10 too, so there's no mitigating factor in terms of age or compatibility.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Guy English", @@ -947,7 +947,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "580084426434052096", "text" : "RT @mikeash: THIS IS NOT HOW YOU DESIGN APIs. A default... is used when this property is left nil. If set to empty string, the button will \u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -981,7 +981,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1034,7 +1034,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rene Ritchie", @@ -1105,7 +1105,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1160,7 +1160,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1182,7 +1182,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1204,7 +1204,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "@rem", @@ -1237,7 +1237,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1259,7 +1259,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1281,7 +1281,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1303,7 +1303,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Josh Centers", @@ -1336,7 +1336,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Josh Centers", @@ -1369,7 +1369,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -1498,7 +1498,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "@rem", @@ -1604,7 +1604,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -1667,7 +1667,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Farhad Manjoo: taint team", + "name" : "Farhad Manjoo", "screen_name" : "fmanjoo", "indices" : [ 0, 8 ], "id_str" : "2195241", @@ -1697,7 +1697,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ian G. Clifton", @@ -1730,7 +1730,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1752,7 +1752,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rowan Pope", @@ -1820,7 +1820,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1847,7 +1847,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1869,7 +1869,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1891,7 +1891,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "iFixit", @@ -1924,7 +1924,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ars Technica", @@ -1933,7 +1933,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "717313", "id" : 717313 }, { - "name" : "Andrew Cunningham", + "name" : "AnDREAD PUMPKINgham \uD83D\uDC7B", "screen_name" : "AndrewWrites", "indices" : [ 120, 133 ], "id_str" : "181395652", @@ -2421,7 +2421,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2452,7 +2452,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "9660102", "id" : 9660102 }, { - "name" : "Ash Furrow (or is it?) (it is.)", + "name" : "Ash Furrow", "screen_name" : "ashfurrow", "indices" : [ 14, 24 ], "id_str" : "15536268", @@ -2567,7 +2567,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeremy Tregunna", + "name" : "Jeremy Tregunna \uD83C\uDF41", "screen_name" : "jtregunna", "indices" : [ 0, 10 ], "id_str" : "18367814", @@ -2658,7 +2658,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Neil Cybart", @@ -2691,7 +2691,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2713,7 +2713,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -2746,7 +2746,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Casey Liss", @@ -2785,7 +2785,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -2824,7 +2824,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2846,7 +2846,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2873,7 +2873,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2900,7 +2900,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2922,7 +2922,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matthew Panzarino", @@ -2955,7 +2955,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matthew Panzarino", @@ -3078,7 +3078,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "mashable", "protected" : false, "id_str" : "972651", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/941796662770651137\/cDtLVz1j_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1013772445243895808\/jk7SUWdn_normal.jpg", "id" : 972651, "verified" : true } @@ -3245,7 +3245,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "isaiah", @@ -3278,7 +3278,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rene Ritchie", @@ -3311,7 +3311,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Instapaper", @@ -3375,7 +3375,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3408,7 +3408,7 @@ Grailbird.data.tweets_2015_03 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -3481,7 +3481,7 @@ Grailbird.data.tweets_2015_03 = "id" : 855277615 }, { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 14, 28 ], "id_str" : "1236101", "id" : 1236101 @@ -3532,7 +3532,7 @@ Grailbird.data.tweets_2015_03 = "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 0, 14 ], "id_str" : "1236101", "id" : 1236101 @@ -3583,7 +3583,7 @@ Grailbird.data.tweets_2015_03 = "id" : 575483384392118273, "in_reply_to_status_id" : 575481445977735169, "created_at" : "2015-03-11 02:28:25 +0000", - "in_reply_to_screen_name" : "BenedictEvans", + "in_reply_to_screen_name" : "benedictevans", "in_reply_to_user_id_str" : "1236101", "user" : { "name" : "Adam Vitale", @@ -3611,7 +3611,7 @@ Grailbird.data.tweets_2015_03 = "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -3638,7 +3638,7 @@ Grailbird.data.tweets_2015_03 = "created_at" : "2015-03-11 02:20:43 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -3658,7 +3658,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sean Heber", @@ -3697,10 +3697,10 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brett \uD835\uDCBE\uD835\uDC54\uD835\uDCC3\uD835\uDC5C\uD835\uDCC7\uD835\uDC52 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCC2\uD835\uDCB6\uD835\uDCC3 \uD835\uDCB7\uD835\uDC52\uD835\uDCBD\uD835\uDCBE\uD835\uDCC3\uD835\uDCB9 \uD835\uDCC9\uD835\uDCBD\uD835\uDC52 \uD835\uDCB8\uD835\uDCCA\uD835\uDCC7\uD835\uDCC9\uD835\uDCB6\uD835\uDCBE\uD835\uDCC3 Terpstra", + "name" : "Brett Terpstra anthropomorphizes your pets, too.", "screen_name" : "ttscoff", "indices" : [ 0, 8 ], "id_str" : "777908", @@ -3730,7 +3730,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Merlin Mann", @@ -3763,7 +3763,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3785,7 +3785,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Accidental Tech Podcast", @@ -3821,7 +3821,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3843,7 +3843,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -3876,7 +3876,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Never", @@ -3909,7 +3909,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", @@ -3942,7 +3942,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Accidental Tech Podcast", @@ -3984,7 +3984,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4006,10 +4006,10 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\u1DB0\u1D52\u1D57 Jony Ive", + "name" : "\u1D3A\u1D3C\u1D40 Jony Ive", "screen_name" : "JonyIveParody", "indices" : [ 3, 17 ], "id_str" : "1197619002", @@ -4039,11 +4039,11 @@ Grailbird.data.tweets_2015_03 = "id" : 574981932993282051, "created_at" : "2015-03-09 17:15:50 +0000", "user" : { - "name" : "\u1DB0\u1D52\u1D57 Jony Ive", + "name" : "\u1D3A\u1D3C\u1D40 Jony Ive", "screen_name" : "JonyIveParody", "protected" : false, "id_str" : "1197619002", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/968825533604728832\/srBlQNQ6_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1040652098973696000\/AKu_Us-K_normal.jpg", "id" : 1197619002, "verified" : false } @@ -4060,7 +4060,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sean Heber", @@ -4077,7 +4077,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "574981498945712128", "text" : "RT @BigZaphod: Cheaper AppleTV is nice and all, but what about a new one that does cool new things?!", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4111,7 +4111,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -4128,7 +4128,7 @@ Grailbird.data.tweets_2015_03 = "id_str" : "574981474295803905", "text" : "RT @siracusa: I wanted a new Apple TV, not a cheaper Apple TV :(", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4162,7 +4162,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Cook", @@ -4190,7 +4190,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -4250,7 +4250,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4277,7 +4277,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4304,7 +4304,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Fitzpatrick", @@ -4417,7 +4417,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rob Rix\u200E", @@ -4451,7 +4451,7 @@ Grailbird.data.tweets_2015_03 = "screen_name" : "rob_rix", "protected" : false, "id_str" : "14056827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/822100326538878976\/683uW-lH_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/999994812576092162\/uO3412GC_normal.jpg", "id" : 14056827, "verified" : false } @@ -4468,7 +4468,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4490,7 +4490,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4675,7 +4675,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4697,7 +4697,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "9to5Mac \uF8FF", @@ -4730,7 +4730,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4752,7 +4752,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4774,7 +4774,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "rektide de la fey", @@ -4807,7 +4807,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4861,7 +4861,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4894,7 +4894,7 @@ Grailbird.data.tweets_2015_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2015_04.js b/public/tweets/data/js/tweets/2015_04.js index 4611747..100167e 100755 --- a/public/tweets/data/js/tweets/2015_04.js +++ b/public/tweets/data/js/tweets/2015_04.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2015_04 = [ { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "MacRumors.com", @@ -104,7 +104,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daniel Pasco", @@ -154,57 +154,6 @@ Grailbird.data.tweets_2015_04 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "CGP Grey", - "screen_name" : "cgpgrey", - "indices" : [ 3, 11 ], - "id_str" : "176774540", - "id" : 176774540 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "593749884773257216", - "text" : "RT @cgpgrey: There are no words to express how much I hate, and how user unfriendly, the YouTube autoplay feature is.", - "retweeted_status" : { - "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "593693675777040384", - "text" : "There are no words to express how much I hate, and how user unfriendly, the YouTube autoplay feature is.", - "id" : 593693675777040384, - "created_at" : "2015-04-30 08:29:37 +0000", - "user" : { - "name" : "CGP Grey", - "screen_name" : "cgpgrey", - "protected" : false, - "id_str" : "176774540", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/953635851212349440\/RvV5aFNp_normal.jpg", - "id" : 176774540, - "verified" : true - } - }, - "id" : 593749884773257216, - "created_at" : "2015-04-30 12:12:58 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { @@ -245,7 +194,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -267,7 +216,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jelly", @@ -284,7 +233,7 @@ Grailbird.data.tweets_2015_04 = "id_str" : "593541082773852161", "text" : "RT @jellybeansoup: i just don\u2019t see a way that the interaction would make sense. dense apps are the worst experience.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -323,7 +272,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jelly", @@ -346,7 +295,7 @@ Grailbird.data.tweets_2015_04 = "id_str" : "593541073017958400", "text" : "RT @jellybeansoup: not 24 hours after getting my apple watch, i can all but guarantee that @gifwrapped won\u2019t be getting a watch app.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "GIFwrapped", @@ -687,7 +636,7 @@ Grailbird.data.tweets_2015_04 = "id_str" : "591779224857366529", "text" : "RT @settern: Two-tone glory. http:\/\/t.co\/P4Cp1OwKD6", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -790,7 +739,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -829,7 +778,7 @@ Grailbird.data.tweets_2015_04 = "id_str" : "591499436288643074", "text" : "RT @stroughtonsmith: The Watch\u2019s armv7k CPU was added to the dev tools in 2011, which fits with the timeline. I imagine it\u2019s something here\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -866,7 +815,7 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Charlotte Jackson", + "name" : "Charlotte Louise Jackson \uD83E\uDD84", "screen_name" : "lottejackson", "indices" : [ 0, 13 ], "id_str" : "50288691", @@ -905,12 +854,6 @@ Grailbird.data.tweets_2015_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Adrian Linares", - "screen_name" : "Adriansweather", - "indices" : [ 3, 18 ], - "id_str" : "129245360", - "id" : 129245360 - }, { "name" : "Joaqu\u00EDn L\u00F3pez-D\u00F3riga", "screen_name" : "lopezdoriga", "indices" : [ 95, 107 ], @@ -1007,7 +950,7 @@ Grailbird.data.tweets_2015_04 = "created_at" : "2015-04-23 03:09:53 +0000", "user" : { "name" : "Adrian Linares", - "screen_name" : "Adriansweather", + "screen_name" : "AdrianLinares28", "protected" : false, "id_str" : "129245360", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/455867549276594176\/WHaZF_HS_normal.png", @@ -1132,6 +1075,12 @@ Grailbird.data.tweets_2015_04 = "indices" : [ 3, 15 ], "id_str" : "717313", "id" : 717313 + }, { + "name" : "exmamaku", + "screen_name" : "exmamaku", + "indices" : [ 94, 103 ], + "id_str" : "990847993866792960", + "id" : 990847993866792960 } ], "media" : [ ], "hashtags" : [ ], @@ -1148,7 +1097,13 @@ Grailbird.data.tweets_2015_04 = "retweeted_status" : { "source" : "\u003Ca href=\"http:\/\/arstechnica.com\" rel=\"nofollow\"\u003EArs tweetbot\u003C\/a\u003E", "entities" : { - "user_mentions" : [ ], + "user_mentions" : [ { + "name" : "exmamaku", + "screen_name" : "exmamaku", + "indices" : [ 77, 86 ], + "id_str" : "990847993866792960", + "id" : 990847993866792960 + } ], "media" : [ ], "hashtags" : [ ], "urls" : [ { @@ -1358,7 +1313,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ars Technica", @@ -1419,7 +1374,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -1452,7 +1407,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -1485,7 +1440,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "9to5Mac \uF8FF", @@ -1608,7 +1563,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -1728,7 +1683,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Reginald Braithwaite", @@ -1980,7 +1935,7 @@ Grailbird.data.tweets_2015_04 = "id_str" : "588360858931073024", "text" : "RT @awalker_srs: @jamesthomson I believe they call that \"live streaming\".", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "James Thomson", @@ -2042,7 +1997,7 @@ Grailbird.data.tweets_2015_04 = "id_str" : "588360815557746688", "text" : "RT @jamesthomson: I want the WWDC Sport\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2059,7 +2014,7 @@ Grailbird.data.tweets_2015_04 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050713686229360641\/M7Kszw-a_normal.jpg", "id" : 14169916, "verified" : false } @@ -2093,7 +2048,7 @@ Grailbird.data.tweets_2015_04 = "id_str" : "588360795685134338", "text" : "RT @jamesthomson: Did a costing of two people going to WWDC, and with flights and hotels, it\u2019s basically in the same price range as the App\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2110,7 +2065,7 @@ Grailbird.data.tweets_2015_04 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050713686229360641\/M7Kszw-a_normal.jpg", "id" : 14169916, "verified" : false } @@ -2213,7 +2168,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2235,7 +2190,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -2498,7 +2453,7 @@ Grailbird.data.tweets_2015_04 = "id_str" : "587980494320447489", "text" : "RT @rilan: Ads in \"free\" apps drain your phone\u2019s battery faster, cause it to run slower, & use more data. http:\/\/t.co\/rDLbfHJ2zA http:\/\/t.c\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2836,7 +2791,64 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Mark", + "screen_name" : "mdhughes", + "indices" : [ 3, 12 ], + "id_str" : "14200945", + "id" : 14200945 + } ], + "media" : [ ], + "hashtags" : [ { + "text" : "applewatch", + "indices" : [ 50, 61 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "586694460026658816", + "text" : "RT @mdhughes: Watchhole: Jerk who stares at their #applewatch in social interactions.\nWatchdinger: Jerk who has audible alerts from their w\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ { + "text" : "applewatch", + "indices" : [ 36, 47 ] + } ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "586672322209189889", + "text" : "Watchhole: Jerk who stares at their #applewatch in social interactions.\nWatchdinger: Jerk who has audible alerts from their watch.", + "id" : 586672322209189889, + "created_at" : "2015-04-10 23:29:16 +0000", + "user" : { + "name" : "Mark", + "screen_name" : "mdhughes", + "protected" : false, + "id_str" : "14200945", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/854290493718450176\/SzqdDh_Y_normal.jpg", + "id" : 14200945, + "verified" : false + } + }, + "id" : 586694460026658816, + "created_at" : "2015-04-11 00:57:14 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2858,7 +2870,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3012,7 +3024,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3154,7 +3166,7 @@ Grailbird.data.tweets_2015_04 = "id_str" : "385193", "id" : 385193 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 16, 27 ], "id_str" : "894911", @@ -3184,7 +3196,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mashable", @@ -3217,7 +3229,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3325,7 +3337,7 @@ Grailbird.data.tweets_2015_04 = "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -3352,7 +3364,7 @@ Grailbird.data.tweets_2015_04 = "created_at" : "2015-04-02 03:32:29 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -3372,7 +3384,7 @@ Grailbird.data.tweets_2015_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2015_05.js b/public/tweets/data/js/tweets/2015_05.js index 4c1a70f..495afe1 100755 --- a/public/tweets/data/js/tweets/2015_05.js +++ b/public/tweets/data/js/tweets/2015_05.js @@ -1,9 +1,9 @@ Grailbird.data.tweets_2015_05 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", + "name" : "\uD83D\uDC8E not Jen or Jem", "screen_name" : "gembarrett", "indices" : [ 3, 14 ], "id_str" : "43727347", @@ -35,11 +35,11 @@ Grailbird.data.tweets_2015_05 = "in_reply_to_screen_name" : "gembarrett", "in_reply_to_user_id_str" : "43727347", "user" : { - "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", + "name" : "\uD83D\uDC8E not Jen or Jem", "screen_name" : "gembarrett", "protected" : false, "id_str" : "43727347", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/820806575430504448\/JhIS2Mtd_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1000030066951311360\/0GzKoAqh_normal.jpg", "id" : 43727347, "verified" : false } @@ -56,7 +56,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -78,7 +78,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andy Ihnatko", @@ -111,7 +111,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Andy Ihnatko", @@ -144,7 +144,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -200,7 +200,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -256,7 +256,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -312,7 +312,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Rogers", @@ -456,7 +456,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Pierce", @@ -488,122 +488,6 @@ Grailbird.data.tweets_2015_05 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Lars Anderson", - "screen_name" : "theonlylars", - "indices" : [ 3, 15 ], - "id_str" : "80921954", - "id" : 80921954 - } ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/theonlylars\/status\/603610088675246082\/photo\/1", - "indices" : [ 93, 115 ], - "url" : "http:\/\/t.co\/793aFmqtr5", - "media_url" : "http:\/\/pbs.twimg.com\/media\/CGB0LUrVAAAQF_j.jpg", - "id_str" : "603610087945469952", - "id" : 603610087945469952, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CGB0LUrVAAAQF_j.jpg", - "sizes" : [ { - "h" : 2048, - "resize" : "fit", - "w" : 1225 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1200, - "resize" : "fit", - "w" : 718 - }, { - "h" : 2508, - "resize" : "fit", - "w" : 1500 - }, { - "h" : 680, - "resize" : "fit", - "w" : 407 - } ], - "media_alt" : "", - "display_url" : "pic.twitter.com\/793aFmqtr5" - } ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "603612417235386368", - "text" : "RT @theonlylars: OMG i just decoded the obfuscated session names in the 2015 WWDC app update http:\/\/t.co\/793aFmqtr5", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/theonlylars\/status\/603610088675246082\/photo\/1", - "indices" : [ 76, 98 ], - "url" : "http:\/\/t.co\/793aFmqtr5", - "media_url" : "http:\/\/pbs.twimg.com\/media\/CGB0LUrVAAAQF_j.jpg", - "id_str" : "603610087945469952", - "id" : 603610087945469952, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CGB0LUrVAAAQF_j.jpg", - "sizes" : [ { - "h" : 2048, - "resize" : "fit", - "w" : 1225 - }, { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 1200, - "resize" : "fit", - "w" : 718 - }, { - "h" : 2508, - "resize" : "fit", - "w" : 1500 - }, { - "h" : 680, - "resize" : "fit", - "w" : 407 - } ], - "media_alt" : "", - "display_url" : "pic.twitter.com\/793aFmqtr5" - } ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { - "type" : "Point", - "coordinates" : [ 29.74482274768042, -95.3451382389049 ] - }, - "id_str" : "603610088675246082", - "text" : "OMG i just decoded the obfuscated session names in the 2015 WWDC app update http:\/\/t.co\/793aFmqtr5", - "id" : 603610088675246082, - "created_at" : "2015-05-27 17:13:54 +0000", - "user" : { - "name" : "Lars Anderson", - "screen_name" : "theonlylars", - "protected" : false, - "id_str" : "80921954", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/570325987528876032\/ST0kIRVH_normal.jpeg", - "id" : 80921954, - "verified" : false - } - }, - "id" : 603612417235386368, - "created_at" : "2015-05-27 17:23:09 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/www.instapaper.com\/\" rel=\"nofollow\"\u003EInstapaper\u003C\/a\u003E", "entities" : { @@ -704,7 +588,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "I Am Devloper", @@ -752,7 +636,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "603284807439659008", "text" : "RT @iamdevloper: I guess that\u2019s another way to rank JavaScript frameworks\u2026 http:\/\/t.co\/u9MpucaegI", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -817,7 +701,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -868,7 +752,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -919,7 +803,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse JS", @@ -975,7 +859,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse JS", @@ -1026,7 +910,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Royal Dutch Airlines", @@ -1049,7 +933,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "602023108401180672", "text" : "RT @KLM: @tenderlove Well, rubber bands also. Just magnets would obviously not work.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.radian6.com\" rel=\"nofollow\"\u003ERadian6 -Social Media Management\u003C\/a\u003E", + "source" : "\u003Ca href=\"http:\/\/www.salesforce.com\" rel=\"nofollow\"\u003ESalesforce - Social Studio\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -1094,7 +978,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1116,7 +1000,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1138,7 +1022,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jason Snell", @@ -1206,7 +1090,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Merlin Mann", @@ -1257,7 +1141,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -1290,7 +1174,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1312,7 +1196,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Leach", @@ -1404,7 +1288,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1431,7 +1315,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1517,10 +1401,10 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Lemont Washington", + "name" : "Lemont", "screen_name" : "cocoalabs", "indices" : [ 3, 13 ], "id_str" : "689183", @@ -1534,7 +1418,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "601494102107095040", "text" : "RT @cocoalabs: Pro tip: In the terminal (on OS X) type any unix command in the search field and get back a man page.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1547,11 +1431,11 @@ Grailbird.data.tweets_2015_05 = "id" : 601491823803109376, "created_at" : "2015-05-21 20:56:40 +0000", "user" : { - "name" : "Lemont Washington", + "name" : "Lemont", "screen_name" : "cocoalabs", "protected" : false, "id_str" : "689183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/969701054529994752\/S0DxVozm_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1043695600162680833\/IoNlIIF1_normal.jpg", "id" : 689183, "verified" : false } @@ -1568,7 +1452,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark", @@ -1631,7 +1515,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ole Begemann", @@ -1653,7 +1537,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "600994228446076928", "text" : "RT @olebegemann: Attention to detail: http:\/\/t.co\/4ciRlUA48D.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1719,7 +1603,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1804,7 +1688,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rob Pike", @@ -1855,7 +1739,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jed Schmidt", @@ -1923,7 +1807,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1948,7 +1832,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Hogben", @@ -2094,7 +1978,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2116,7 +2000,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2169,7 +2053,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Julian Viereck", @@ -2178,7 +2062,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "90029379", "id" : 90029379 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 14, 26 ], "id_str" : "676363", @@ -2195,7 +2079,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2237,7 +2121,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Eric Clemmons", @@ -2246,7 +2130,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "14457722", "id" : 14457722 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 18, 30 ], "id_str" : "676363", @@ -2263,7 +2147,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2305,7 +2189,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Kalair", @@ -2314,7 +2198,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "10909152", "id" : 10909152 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 17, 29 ], "id_str" : "676363", @@ -2331,7 +2215,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2373,7 +2257,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Justin Woo", @@ -2382,7 +2266,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "1361017273", "id" : 1361017273 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 14, 26 ], "id_str" : "676363", @@ -2399,7 +2283,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2441,7 +2325,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Di Palma", @@ -2450,7 +2334,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "1732200428", "id" : 1732200428 }, { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 19, 31 ], "id_str" : "676363", @@ -2467,7 +2351,7 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2509,7 +2393,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Bell", @@ -2536,7 +2420,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "599962650953453568", "text" : "RT @b3ll: Click Wheel Keyboard is now available on the App Store (for free! Yay free!)! \uD83C\uDF89\n\nhttps:\/\/t.co\/ejkNDIgDuM\n\nhttps:\/\/t.co\/uXFD6zU9wH", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2563,7 +2447,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "b3ll", "protected" : false, "id_str" : "17611623", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/840056426760290304\/KFzxiJUn_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/987198064006807552\/2bOQk5m5_normal.jpg", "id" : 17611623, "verified" : false } @@ -2580,10 +2464,10 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 3, 15 ], "id_str" : "676363", @@ -2610,11 +2494,11 @@ Grailbird.data.tweets_2015_05 = "id" : 599942305118846978, "created_at" : "2015-05-17 14:19:26 +0000", "user" : { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "protected" : false, "id_str" : "676363", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/963494548012916736\/pCrryYUw_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039923377186787328\/7Q0UIR8Q_normal.jpg", "id" : 676363, "verified" : false } @@ -2631,10 +2515,10 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83D\uDC8E", + "name" : "xno\u0279\u01DD\u0283 u\u0250\u0131\u0279q \uD83C\uDF83", "screen_name" : "brianleroux", "indices" : [ 0, 12 ], "id_str" : "676363", @@ -2664,7 +2548,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "CN Tower\/La Tour CN", @@ -2756,7 +2640,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2809,7 +2693,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2831,7 +2715,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2853,7 +2737,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Saved You A Click", @@ -2921,7 +2805,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "I Am Devloper", @@ -2938,7 +2822,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "599198752138629120", "text" : "RT @iamdevloper: \u201CSo what do you do?\u201D,\n\n\u201CI\u2019m actually an architect\u201D,\n\n\u201CThat\u2019s awesome, what sorts of things do you architect?\u201D,\n\n\u201CExperienc\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2972,7 +2856,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2994,10 +2878,10 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 0, 12 ], "id_str" : "6927562", @@ -3027,7 +2911,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3052,10 +2936,10 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Dave Rupert", + "name" : "Dave SPOOPert", "screen_name" : "davatron5000", "indices" : [ 3, 16 ], "id_str" : "14839862", @@ -3082,7 +2966,7 @@ Grailbird.data.tweets_2015_05 = "id" : 598854150911369217, "created_at" : "2015-05-14 14:15:30 +0000", "user" : { - "name" : "Dave Rupert", + "name" : "Dave SPOOPert", "screen_name" : "davatron5000", "protected" : false, "id_str" : "14839862", @@ -3103,7 +2987,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Honest Status Page", @@ -3154,7 +3038,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Heald", @@ -3187,7 +3071,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Heald", @@ -3223,7 +3107,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Cohen", @@ -3240,7 +3124,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "598369365541593088", "text" : "RT @AirspeedSwift: And the prize for built-in type with most novelty behaviour goes to\u2026 doubly nested implicit optionals. http:\/\/t.co\/dk9co\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -3305,7 +3189,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -3338,7 +3222,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Channing Walton", @@ -3372,7 +3256,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "channingwalton", "protected" : false, "id_str" : "17779075", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2816038231\/fecd9155e791ec04f956276585e179d8_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045939564542652416\/gIidFLbD_normal.jpg", "id" : 17779075, "verified" : false } @@ -3422,7 +3306,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -3483,7 +3367,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Amazing Maps", @@ -3651,7 +3535,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Slack", @@ -3717,7 +3601,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3772,7 +3656,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kevin Gisi", @@ -3805,7 +3689,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kevin Gisi", @@ -3838,10 +3722,10 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -3861,7 +3745,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "596058540621467648", "text" : "RT @thenatekirby: @_sjs that\u2019s WELL above the average ad network scumbaggery.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -3885,7 +3769,7 @@ Grailbird.data.tweets_2015_05 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -3906,7 +3790,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kevin Gisi", @@ -3939,7 +3823,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3961,7 +3845,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4006,7 +3890,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "596051911087759360", "text" : "RT @AppCamp4Girls: @Padraig There are still a few spots left for App Camp Vancouver July 6-10. Can you help us spread the word? :-) http:\/\/\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "P\u00E1draig", @@ -4037,7 +3921,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "AppCamp4Girls", "protected" : false, "id_str" : "633308082", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2675756169\/0786bdd88dc14fe934063c7f49a681f9_normal.png", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1006231446934118400\/-HAuoBd1_normal.jpg", "id" : 633308082, "verified" : false } @@ -4071,7 +3955,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "595963599455064064", "text" : "RT @bwebster: New 10.10 API discovery of the day: os_trace(). Record small strings which are included in crash reports. Track activities ac\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4108,13 +3992,13 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", "id" : 894911 }, { - "name" : "Bailey X- LA Kings", + "name" : "Bailey LA Kings", "screen_name" : "BaileyLAKings", "indices" : [ 12, 26 ], "id_str" : "205938397", @@ -4147,13 +4031,13 @@ Grailbird.data.tweets_2015_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Bailey X- LA Kings", + "name" : "Bailey LA Kings", "screen_name" : "BaileyLAKings", "indices" : [ 0, 14 ], "id_str" : "205938397", "id" : 205938397 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 15, 26 ], "id_str" : "894911", @@ -4476,7 +4360,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "NerdyAndQuirky", "protected" : false, "id_str" : "295418725", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/903617970320048128\/NiRBOuw__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1027323109668311041\/6ByO_GMk_normal.jpg", "id" : 295418725, "verified" : false } @@ -4493,7 +4377,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4598,7 +4482,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "594720562913550338", "text" : "RT @isaiah: financial institution: \"your password must be between 6 and 8 characters and contain no symbols\"\n\nwhy isn't this illegal yet?", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4693,7 +4577,7 @@ Grailbird.data.tweets_2015_05 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -4755,7 +4639,7 @@ Grailbird.data.tweets_2015_05 = "id_str" : "193929442", "id" : 193929442 }, { - "name" : "Peter Bright \uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", + "name" : "Pumpkin Fright\uD83D\uDC68\u200D\u2695\uFE0F\uD83C\uDF55", "screen_name" : "DrPizza", "indices" : [ 16, 24 ], "id_str" : "11375732", @@ -4878,7 +4762,7 @@ Grailbird.data.tweets_2015_05 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } diff --git a/public/tweets/data/js/tweets/2015_06.js b/public/tweets/data/js/tweets/2015_06.js index 722695c..8dcfae1 100755 --- a/public/tweets/data/js/tweets/2015_06.js +++ b/public/tweets/data/js/tweets/2015_06.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2015_06 = [ { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -17,7 +17,7 @@ Grailbird.data.tweets_2015_06 = "id_str" : "615943139937796096", "text" : "RT @chockenberry: SO HOW DO I RE ENABLE DISCOVERYD", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -142,7 +142,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "fastlane", @@ -164,7 +164,7 @@ Grailbird.data.tweets_2015_06 = "id_str" : "614811894805721088", "text" : "RT @FastlaneTools: [fastlane 1.6.0] New Template System, backup\/restore file actions and more: https:\/\/t.co\/yAeXBb7ffK http:\/\/t.co\/kNDiZNik\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -234,7 +234,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -309,7 +309,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -331,7 +331,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -353,7 +353,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -375,7 +375,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -397,7 +397,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mahyar Mj", @@ -435,7 +435,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Koenig", @@ -457,7 +457,7 @@ Grailbird.data.tweets_2015_06 = "id_str" : "611798139691864064", "text" : "RT @gak_pdx: This is f-ing crazy smooth machinery: \nhttps:\/\/t.co\/PeRdJMhRaP", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -496,7 +496,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -549,7 +549,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "CTB", @@ -594,7 +594,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Todd Thomas", @@ -611,7 +611,7 @@ Grailbird.data.tweets_2015_06 = "id_str" : "611417111982817282", "text" : "RT @toddthomas: I can't be the only Mac user that always pinches to zoom on a google map only to have Safari display the expanded tab view.\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -645,7 +645,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mahyar Mj", @@ -678,7 +678,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "rektide de la fey", @@ -754,75 +754,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "CGP Grey", - "screen_name" : "cgpgrey", - "indices" : [ 3, 11 ], - "id_str" : "176774540", - "id" : 176774540 - }, { - "name" : "Mark Aiken", - "screen_name" : "royalaid", - "indices" : [ 15, 24 ], - "id_str" : "21265205", - "id" : 21265205 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "610701807346544640", - "text" : "RT @cgpgrey: . @royalaid ALL of it. Having non-actionable badges on your phone would be to live in crazy town.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Mark Aiken", - "screen_name" : "royalaid", - "indices" : [ 2, 11 ], - "id_str" : "21265205", - "id" : 21265205 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "610694574890217472", - "geo" : { }, - "id_str" : "610695079095857152", - "in_reply_to_user_id" : 21265205, - "text" : ". @royalaid ALL of it. Having non-actionable badges on your phone would be to live in crazy town.", - "id" : 610695079095857152, - "in_reply_to_status_id" : 610694574890217472, - "created_at" : "2015-06-16 06:27:07 +0000", - "in_reply_to_screen_name" : "royalaid", - "in_reply_to_user_id_str" : "21265205", - "user" : { - "name" : "CGP Grey", - "screen_name" : "cgpgrey", - "protected" : false, - "id_str" : "176774540", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/953635851212349440\/RvV5aFNp_normal.jpg", - "id" : 176774540, - "verified" : true - } - }, - "id" : 610701807346544640, - "created_at" : "2015-06-16 06:53:51 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -875,7 +807,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "mikeash", @@ -892,7 +824,7 @@ Grailbird.data.tweets_2015_06 = "id_str" : "610207640128335872", "text" : "RT @mikeash: The FaceTime incoming call alert steals focus and treats the spacebar as \"accept this call\"! Delightful.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -926,7 +858,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -959,7 +891,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Eidhof", @@ -981,7 +913,7 @@ Grailbird.data.tweets_2015_06 = "id_str" : "610153698312871937", "text" : "RT @chriseidhof: TIL: when reading Apple\u2019s documentation (e.g. https:\/\/t.co\/FNPE1X7h13 ), you can press \u2018A\u2019 to expand all symbols.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1020,7 +952,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Carl Woodfin", @@ -1059,10 +991,10 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1092,10 +1024,10 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Monica Dinculescu", + "name" : "Meownica Spookysaurescu", "screen_name" : "notwaldorf", "indices" : [ 3, 14 ], "id_str" : "167834639", @@ -1132,7 +1064,7 @@ Grailbird.data.tweets_2015_06 = "id" : 609402400152096768, "created_at" : "2015-06-12 16:50:29 +0000", "user" : { - "name" : "Monica Dinculescu", + "name" : "Meownica Spookysaurescu", "screen_name" : "notwaldorf", "protected" : false, "id_str" : "167834639", @@ -1153,7 +1085,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -1186,7 +1118,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1208,7 +1140,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1230,7 +1162,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -1281,7 +1213,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Christopher Pickslay", @@ -1335,7 +1267,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1357,7 +1289,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1379,7 +1311,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Krzysztof Zab\u0142ocki", @@ -1412,7 +1344,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "dan seifert", @@ -1451,7 +1383,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -1484,10 +1416,10 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Pascal Hartig", + "name" : "Pascal \u00BBSpineless Headless G-Machine\u00AB Hartig", "screen_name" : "passy", "indices" : [ 0, 6 ], "id_str" : "14383077", @@ -1517,7 +1449,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1572,7 +1504,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -1581,7 +1513,7 @@ Grailbird.data.tweets_2015_06 = "id_str" : "385193", "id" : 385193 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 16, 27 ], "id_str" : "894911", @@ -1611,7 +1543,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -1644,7 +1576,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Horse JS", @@ -1695,7 +1627,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1717,7 +1649,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Lattner", @@ -1768,7 +1700,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1790,7 +1722,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1812,10 +1744,10 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Nate Cook \u2603\uFE0F", + "name" : "Nate Oooooooo \uD83D\uDC7B", "screen_name" : "nnnnnnnn", "indices" : [ 3, 12 ], "id_str" : "4365311", @@ -1842,7 +1774,7 @@ Grailbird.data.tweets_2015_06 = "id" : 607986574391934977, "created_at" : "2015-06-08 19:04:29 +0000", "user" : { - "name" : "Nate Cook \u2603\uFE0F", + "name" : "Nate Oooooooo \uD83D\uDC7B", "screen_name" : "nnnnnnnn", "protected" : false, "id_str" : "4365311", @@ -1863,7 +1795,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1885,58 +1817,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Patrick McCarron", - "screen_name" : "McCarron", - "indices" : [ 3, 12 ], - "id_str" : "770391", - "id" : 770391 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "607969682851651585", - "text" : "RT @McCarron: UICrazyLittleJigglyThing", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "607969625880424448", - "text" : "UICrazyLittleJigglyThing", - "id" : 607969625880424448, - "created_at" : "2015-06-08 17:57:08 +0000", - "user" : { - "name" : "Patrick McCarron", - "screen_name" : "McCarron", - "protected" : false, - "id_str" : "770391", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/979385010145976321\/Z-kDGNfZ_normal.jpg", - "id" : 770391, - "verified" : false - } - }, - "id" : 607969682851651585, - "created_at" : "2015-06-08 17:57:22 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1958,7 +1839,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter B", @@ -2098,7 +1979,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -2152,7 +2033,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -2185,10 +2066,10 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Chelsea Stark", + "name" : "Nightmare on Chel Street", "screen_name" : "chelseabot", "indices" : [ 0, 11 ], "id_str" : "3863181", @@ -2218,7 +2099,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Paczkowski", @@ -2274,7 +2155,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mike Fischer", @@ -2307,7 +2188,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Laurie", @@ -2422,7 +2303,7 @@ Grailbird.data.tweets_2015_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Saved You A Click", diff --git a/public/tweets/data/js/tweets/2015_07.js b/public/tweets/data/js/tweets/2015_07.js index 1aa165a..1882960 100755 --- a/public/tweets/data/js/tweets/2015_07.js +++ b/public/tweets/data/js/tweets/2015_07.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2015_07 = [ { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kristian V\u00E4tt\u00F6", @@ -51,16 +51,16 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Stephan Seidt", + "name" : "Evil @seidtgeist", "screen_name" : "evilhackerdude", "indices" : [ 0, 15 ], - "id_str" : "15150116", - "id" : 15150116 + "id_str" : "844898562257375237", + "id" : 844898562257375237 }, { - "name" : "Monica Dinculescu", + "name" : "Meownica Spookysaurescu", "screen_name" : "notwaldorf", "indices" : [ 16, 27 ], "id_str" : "167834639", @@ -115,7 +115,7 @@ Grailbird.data.tweets_2015_07 = "id" : 626907381599830016, "in_reply_to_status_id" : 626897728384167936, "created_at" : "2015-07-31 00:09:01 +0000", - "in_reply_to_screen_name" : "evilhackerdude", + "in_reply_to_screen_name" : "seidtgeist", "in_reply_to_user_id_str" : "15150116", "user" : { "name" : "Sami Samhuri", @@ -127,7 +127,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Daniel Jalkut", @@ -144,7 +144,7 @@ Grailbird.data.tweets_2015_07 = "id_str" : "626906811023560704", "text" : "RT @danielpunkass: Terminal in 10.11 betas adds new \"Clear to Bookmark\" behavior that will flummox you if you\u2019re used to old Cmd-K. Look in\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -231,7 +231,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -253,7 +253,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Twitterrific", @@ -284,7 +284,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Little Big Details", @@ -306,7 +306,7 @@ Grailbird.data.tweets_2015_07 = "id_str" : "626398588017381376", "text" : "RT @littlebigdetail: Google shows the difference between versions of their privacy policy http:\/\/t.co\/mcIhOZdruS", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -345,7 +345,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -372,7 +372,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -399,7 +399,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brewery & The Beast", @@ -461,7 +461,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Robyn Peterson", @@ -505,7 +505,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -514,7 +514,7 @@ Grailbird.data.tweets_2015_07 = "id_str" : "385193", "id" : 385193 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 16, 27 ], "id_str" : "894911", @@ -549,7 +549,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -571,7 +571,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brewery & The Beast", @@ -604,7 +604,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ars Technica", @@ -613,7 +613,7 @@ Grailbird.data.tweets_2015_07 = "id_str" : "717313", "id" : 717313 }, { - "name" : "Andrew Cunningham", + "name" : "AnDREAD PUMPKINgham \uD83D\uDC7B", "screen_name" : "AndrewWrites", "indices" : [ 109, 122 ], "id_str" : "181395652", @@ -635,7 +635,7 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/arstechnica.com\" rel=\"nofollow\"\u003EArs tweetbot\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Andrew Cunningham", + "name" : "AnDREAD PUMPKINgham \uD83D\uDC7B", "screen_name" : "AndrewWrites", "indices" : [ 92, 105 ], "id_str" : "181395652", @@ -737,7 +737,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "jmattheij", @@ -798,7 +798,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -820,7 +820,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -842,7 +842,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Casper", @@ -912,7 +912,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Casper", @@ -977,7 +977,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -999,10 +999,10 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1032,10 +1032,10 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1065,7 +1065,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1087,7 +1087,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1109,7 +1109,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1136,7 +1136,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1161,7 +1161,7 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1194,7 +1194,7 @@ Grailbird.data.tweets_2015_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1224,7 +1224,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1246,7 +1246,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1268,7 +1268,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Caff\u00E8 Fantastico", @@ -1296,10 +1296,10 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -1319,7 +1319,7 @@ Grailbird.data.tweets_2015_07 = "id_str" : "618591827688583168", "text" : "RT @thenatekirby: @bthdonohue seriously. Swift\u2019s unicode support? Great. NSString? Also great. The two together. God fucking awful.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Brian Donohue", @@ -1343,7 +1343,7 @@ Grailbird.data.tweets_2015_07 = "in_reply_to_screen_name" : "bthdonohue", "in_reply_to_user_id_str" : "337167459", "user" : { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -1364,10 +1364,10 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -1381,7 +1381,7 @@ Grailbird.data.tweets_2015_07 = "id_str" : "618591816401600512", "text" : "RT @thenatekirby: Unicode + Swift + NSAttributedString = pain. Lots and lots of pain.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1394,7 +1394,7 @@ Grailbird.data.tweets_2015_07 = "id" : 618581390213316608, "created_at" : "2015-07-08 00:44:30 +0000", "user" : { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", @@ -1415,7 +1415,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1468,7 +1468,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Markus M\u00FCller-Simhofer", @@ -1516,7 +1516,7 @@ Grailbird.data.tweets_2015_07 = "id_str" : "617001366574108672", "text" : "RT @fafner: This review is a \u201Cgreat\u201D example of the problems developers of paid software face right now. http:\/\/t.co\/raKrZnVqWm", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1564,7 +1564,7 @@ Grailbird.data.tweets_2015_07 = "screen_name" : "MuellerSimhofer", "protected" : false, "id_str" : "11227512", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/947090460262174720\/WtmATW4K_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1014532478948839424\/1Z8fpT19_normal.jpg", "id" : 11227512, "verified" : false } @@ -1614,7 +1614,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Hamza Sood", @@ -1739,7 +1739,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jared Sinclair", @@ -1817,7 +1817,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Heald", @@ -1895,7 +1895,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kevin Gisi", @@ -1946,7 +1946,7 @@ Grailbird.data.tweets_2015_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "1Password", @@ -1980,7 +1980,7 @@ Grailbird.data.tweets_2015_07 = "screen_name" : "1Password", "protected" : false, "id_str" : "793926", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981326545179439104\/jPhaQEQv_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1016336590136856576\/gFgL1sh1_normal.jpg", "id" : 793926, "verified" : true } diff --git a/public/tweets/data/js/tweets/2015_08.js b/public/tweets/data/js/tweets/2015_08.js index 33592b7..e3c97f9 100755 --- a/public/tweets/data/js/tweets/2015_08.js +++ b/public/tweets/data/js/tweets/2015_08.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2015_08 = [ { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -150,7 +150,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -183,7 +183,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -216,7 +216,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -238,7 +238,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -260,7 +260,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -293,7 +293,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Patrick Walton", @@ -406,7 +406,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jason Fried", @@ -462,7 +462,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -484,7 +484,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kevin Gisi", @@ -517,7 +517,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Startup L. Jackson", @@ -573,7 +573,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -595,7 +595,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -617,7 +617,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -639,7 +639,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -661,7 +661,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -683,7 +683,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -736,7 +736,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -789,7 +789,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Steinberger", @@ -869,7 +869,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "YC", @@ -920,7 +920,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "YC", @@ -971,10 +971,10 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Scott Owen", + "name" : "Scott HallOwen", "screen_name" : "scottmowen", "indices" : [ 3, 14 ], "id_str" : "15009581", @@ -1028,11 +1028,11 @@ Grailbird.data.tweets_2015_08 = "in_reply_to_screen_name" : "dejager", "in_reply_to_user_id_str" : "805062", "user" : { - "name" : "Scott Owen", + "name" : "Scott HallOwen", "screen_name" : "scottmowen", "protected" : false, "id_str" : "15009581", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/919940420238417921\/UcPql8gV_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046913240402341888\/OtWFa_8t_normal.jpg", "id" : 15009581, "verified" : false } @@ -1049,7 +1049,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Travis Tilley", @@ -1077,7 +1077,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "JetBrains AppCode", @@ -1116,7 +1116,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "JetBrains AppCode", @@ -1155,7 +1155,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joel Levin", @@ -1188,7 +1188,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Little Big Details", @@ -1205,7 +1205,7 @@ Grailbird.data.tweets_2015_08 = "id_str" : "628572816523198464", "text" : "RT @littlebigdetail: Photo: Instagram \u2014 On any video if you press the volume up button on your iPhone a \u201Ctap video for sound\u201D... http:\/\/t.c\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1244,7 +1244,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Saved You A Click", @@ -1277,7 +1277,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1304,7 +1304,7 @@ Grailbird.data.tweets_2015_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Arment", diff --git a/public/tweets/data/js/tweets/2015_09.js b/public/tweets/data/js/tweets/2015_09.js index 1c281b4..323cce9 100755 --- a/public/tweets/data/js/tweets/2015_09.js +++ b/public/tweets/data/js/tweets/2015_09.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2015_09 = [ { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -33,7 +33,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -66,7 +66,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -93,7 +93,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ars Technica", @@ -166,7 +166,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Aaron Patterson", @@ -181,7 +181,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "627213", "id" : 627213 }, { - "name" : "Thomas Fuchs \uD83E\uDD95", + "name" : "Thomas Fuchs \uD83D\uDD77", "screen_name" : "thomasfuchs", "indices" : [ 20, 32 ], "id_str" : "6927562", @@ -211,7 +211,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Holt", @@ -244,7 +244,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ryan Florence", @@ -277,7 +277,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Drew McLellan", @@ -328,7 +328,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "649222466229936129", "text" : "RT @drewm: With every what now? \n\nOh. \n\n#keming http:\/\/t.co\/ch15uNSu3Z", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -396,7 +396,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -449,7 +449,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -482,7 +482,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Francisco Tolmasky", @@ -515,7 +515,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -542,7 +542,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Vyacheslav Egorov", @@ -624,7 +624,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark", @@ -657,7 +657,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark", @@ -690,7 +690,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -729,7 +729,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Cooper", @@ -804,7 +804,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "peterc", "protected" : false, "id_str" : "33493", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/951912849839882241\/8jDqFjFS_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1045829946801889285\/LPnqEESi_normal.jpg", "id" : 33493, "verified" : false } @@ -821,7 +821,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jared Sinclair", @@ -860,7 +860,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "jaredsinclair", "protected" : false, "id_str" : "15004156", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/946925048434253824\/vfj5syhY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1021262190681075712\/lSAR3GcN_normal.jpg", "id" : 15004156, "verified" : false } @@ -877,7 +877,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Felix Krause", @@ -921,10 +921,10 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Squeezer of Cows", + "name" : "Zach Waldowski", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -936,7 +936,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "43915380", "id" : 43915380 }, { - "name" : "_ = unsafeBitCast(Float80(0), to: type(of: \u007B0\u007D))()", + "name" : "let \uD83C\uDF83=unsafeBitCast(Float80(0),to:type(of:\u007B0\u007D))()", "screen_name" : "NeoNacho", "indices" : [ 23, 32 ], "id_str" : "10341052", @@ -966,10 +966,10 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -999,7 +999,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1021,10 +1021,10 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1054,10 +1054,10 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1087,7 +1087,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1109,7 +1109,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Poole", @@ -1170,7 +1170,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benjamin Mayo", @@ -1221,10 +1221,10 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kyle \uD83C\uDF7B\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08\uD83C\uDFC3\uD83C\uDFFC", + "name" : "Kyle", "screen_name" : "kyleve", "indices" : [ 0, 7 ], "id_str" : "14680556", @@ -1254,7 +1254,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Koenig", @@ -1302,7 +1302,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "647834883637817344", "text" : "RT @gak_pdx: Hard drive keyring is best keyring: http:\/\/t.co\/xN9hl70JQB", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1367,7 +1367,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1422,7 +1422,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1444,7 +1444,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -1477,7 +1477,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Koenig", @@ -1510,7 +1510,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Koenig", @@ -1543,7 +1543,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1570,7 +1570,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jason Snell", @@ -1603,7 +1603,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1625,7 +1625,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Felix Krause", @@ -1647,7 +1647,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "646836977845702656", "text" : "RT @KrauseFx: Developers writing reviews for \uF8FF SDK methods and why they like\/dislike certain things http:\/\/t.co\/OJubAtuNXJ http:\/\/t.co\/6vvw\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1717,7 +1717,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Chris Lattner", @@ -1773,7 +1773,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -1790,7 +1790,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "646491403145449472", "text" : "RT @acorscadden: Also, after spending 2 days in Swift all my objc code feels old.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1827,7 +1827,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -1844,7 +1844,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "646491393687293953", "text" : "RT @acorscadden: The \uF8FFTV is a pretty compelling device. I\u2019m now thinking that it is a bigger opportunity for devs than the watch.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1881,7 +1881,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1903,7 +1903,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1925,10 +1925,10 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1958,10 +1958,10 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1991,7 +1991,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mashable", @@ -2024,7 +2024,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cynthia B. Meyers", @@ -2034,7 +2034,7 @@ Grailbird.data.tweets_2015_09 = "id" : 125085076 }, { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 18, 32 ], "id_str" : "1236101", "id" : 1236101 @@ -2082,7 +2082,7 @@ Grailbird.data.tweets_2015_09 = "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 1, 15 ], "id_str" : "1236101", "id" : 1236101 @@ -2130,7 +2130,7 @@ Grailbird.data.tweets_2015_09 = "id" : 645780225150877696, "in_reply_to_status_id" : 645774710924382208, "created_at" : "2015-09-21 02:02:58 +0000", - "in_reply_to_screen_name" : "BenedictEvans", + "in_reply_to_screen_name" : "benedictevans", "in_reply_to_user_id_str" : "1236101", "user" : { "name" : "Cynthia B. Meyers", @@ -2154,11 +2154,11 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -2247,7 +2247,7 @@ Grailbird.data.tweets_2015_09 = "created_at" : "2015-09-21 01:41:03 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -2267,7 +2267,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Henry Birdseye", @@ -2456,7 +2456,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kevin Gisi", @@ -2489,10 +2489,10 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Garry #BUIDL Tan", + "name" : "Garry BUIDL Tan", "screen_name" : "garrytan", "indices" : [ 3, 12 ], "id_str" : "11768582", @@ -2581,13 +2581,13 @@ Grailbird.data.tweets_2015_09 = "id" : 645434276029161473, "created_at" : "2015-09-20 03:08:17 +0000", "user" : { - "name" : "Garry #BUIDL Tan", + "name" : "Garry BUIDL Tan", "screen_name" : "garrytan", "protected" : false, "id_str" : "11768582", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/943716237682421760\/0sBqTJhG_normal.jpg", "id" : 11768582, - "verified" : false + "verified" : true } }, "id" : 645617457021845505, @@ -2602,7 +2602,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2624,7 +2624,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dr. Drang", @@ -2641,7 +2641,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "645286308886134788", "text" : "RT @drdrang: Backup success came after I signed out of my iCloud account on my phone and then signed back in again. Cause and effect? I hav\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2675,7 +2675,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -2698,7 +2698,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "645286247066238976", "text" : "RT @chockenberry: @drdrang Mine didn\u2019t backup either because iOS 9 decided to turn on photo library and there wasn\u2019t enough space.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dr. Drang", @@ -2770,7 +2770,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dr. Drang", @@ -2831,7 +2831,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -2864,7 +2864,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -2897,7 +2897,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -2930,7 +2930,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -2963,7 +2963,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marc Edwards", @@ -2985,7 +2985,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "644304976026570752", "text" : "RT @marcedwards: iOS 9 home screen page indicator dot centring test: \uD83D\uDC4C\uD83C\uDFFD\n\nhttp:\/\/t.co\/akCX2cOvDT", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3024,7 +3024,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "saniul", @@ -3041,7 +3041,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "644273279457361920", "text" : "RT @saniul: func foo() \u007B\n\u00A0\u00A0\u00A0\u00A0var foo = 0 \u007B\n\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0didSet \u007B\n\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0println(foo)\n\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u007D\n\u00A0\u00A0\u00A0\u00A0\u007D\n\u00A0\u00A0\u00A0\u00A0foo = 3\n\u00A0\u00A0\u00A0\u00A0foo = 6\n\u007D", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3080,7 +3080,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3102,7 +3102,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steve Troughton-Smith", @@ -3135,10 +3135,10 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 3, 17 ], "id_str" : "29255412", @@ -3175,11 +3175,11 @@ Grailbird.data.tweets_2015_09 = "id" : 643187949987721220, "created_at" : "2015-09-13 22:22:11 +0000", "user" : { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "protected" : false, "id_str" : "29255412", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/909953369694859265\/BOakwKQY_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1039990224271630338\/Z6BmVyLy_normal.jpg", "id" : 29255412, "verified" : false } @@ -3196,7 +3196,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dave Nanian", @@ -3229,7 +3229,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dave Nanian", @@ -3293,7 +3293,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3315,7 +3315,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mike Fischer", @@ -3348,7 +3348,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3370,7 +3370,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Karissa Bell", @@ -3403,7 +3403,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mark Kolich", @@ -3436,7 +3436,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -3489,7 +3489,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ole Begemann", @@ -3602,7 +3602,68 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Mark", + "screen_name" : "mdhughes", + "indices" : [ 3, 12 ], + "id_str" : "14200945", + "id" : 14200945 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 53, 75 ], + "url" : "http:\/\/t.co\/TQOYRuTXmq", + "expanded_url" : "https:\/\/twitter.com\/TheNextWeb\/status\/641725177018089472", + "display_url" : "twitter.com\/TheNextWeb\/sta\u2026" + } ] + }, + "geo" : { }, + "id_str" : "641751256734699522", + "text" : "RT @mdhughes: Best new feature of iOS 9.1: FUCK YOU. http:\/\/t.co\/TQOYRuTXmq", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 39, 61 ], + "url" : "http:\/\/t.co\/TQOYRuTXmq", + "expanded_url" : "https:\/\/twitter.com\/TheNextWeb\/status\/641725177018089472", + "display_url" : "twitter.com\/TheNextWeb\/sta\u2026" + } ] + }, + "geo" : { }, + "id_str" : "641749006788378624", + "text" : "Best new feature of iOS 9.1: FUCK YOU. http:\/\/t.co\/TQOYRuTXmq", + "id" : 641749006788378624, + "created_at" : "2015-09-09 23:04:20 +0000", + "user" : { + "name" : "Mark", + "screen_name" : "mdhughes", + "protected" : false, + "id_str" : "14200945", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/854290493718450176\/SzqdDh_Y_normal.jpg", + "id" : 14200945, + "verified" : false + } + }, + "id" : 641751256734699522, + "created_at" : "2015-09-09 23:13:17 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -3635,7 +3696,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -3668,7 +3729,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -3701,7 +3762,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -3734,7 +3795,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Haddad", @@ -3782,7 +3843,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "641716407156146176", "text" : "RT @tapbot_paul: All I wanted to do was install a Mac App. http:\/\/t.co\/FazZKdKxCF", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -3830,7 +3891,7 @@ Grailbird.data.tweets_2015_09 = "screen_name" : "tapbot_paul", "protected" : false, "id_str" : "18247541", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849243635178778624\/JXnBOvr__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996375435234570240\/AobDpgxZ_normal.jpg", "id" : 18247541, "verified" : false } @@ -3847,7 +3908,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3869,7 +3930,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3891,7 +3952,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -3913,7 +3974,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "641700661252390912", "text" : "RT @jim_rutherford: TVML <oh_my\/>\n\nhttps:\/\/t.co\/NTpaqSrFof", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3952,7 +4013,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3973,119 +4034,6 @@ Grailbird.data.tweets_2015_09 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Eric Allam \u26A1\uFE0F", - "screen_name" : "eallam", - "indices" : [ 3, 10 ], - "id_str" : "46783", - "id" : 46783 - } ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/eallam\/status\/641591318695780352\/photo\/1", - "indices" : [ 116, 138 ], - "url" : "http:\/\/t.co\/YuQ98OFfhr", - "media_url" : "http:\/\/pbs.twimg.com\/media\/COdj52AWwAAkQpD.jpg", - "id_str" : "641591317324283904", - "id" : 641591317324283904, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/COdj52AWwAAkQpD.jpg", - "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 381, - "resize" : "fit", - "w" : 283 - }, { - "h" : 381, - "resize" : "fit", - "w" : 283 - }, { - "h" : 381, - "resize" : "fit", - "w" : 283 - }, { - "h" : 381, - "resize" : "fit", - "w" : 283 - } ], - "media_alt" : "", - "display_url" : "pic.twitter.com\/YuQ98OFfhr" - } ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "641618379040669697", - "text" : "RT @eallam: In Interface Builder, when tapping on a view hold down ctrl+shift to select any view underneath the tap http:\/\/t.co\/YuQ98OFfhr", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/eallam\/status\/641591318695780352\/photo\/1", - "indices" : [ 104, 126 ], - "url" : "http:\/\/t.co\/YuQ98OFfhr", - "media_url" : "http:\/\/pbs.twimg.com\/media\/COdj52AWwAAkQpD.jpg", - "id_str" : "641591317324283904", - "id" : 641591317324283904, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/COdj52AWwAAkQpD.jpg", - "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 381, - "resize" : "fit", - "w" : 283 - }, { - "h" : 381, - "resize" : "fit", - "w" : 283 - }, { - "h" : 381, - "resize" : "fit", - "w" : 283 - }, { - "h" : 381, - "resize" : "fit", - "w" : 283 - } ], - "media_alt" : "", - "display_url" : "pic.twitter.com\/YuQ98OFfhr" - } ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "641591318695780352", - "text" : "In Interface Builder, when tapping on a view hold down ctrl+shift to select any view underneath the tap http:\/\/t.co\/YuQ98OFfhr", - "id" : 641591318695780352, - "created_at" : "2015-09-09 12:37:45 +0000", - "user" : { - "name" : "Eric Allam \u26A1\uFE0F", - "screen_name" : "eallam", - "protected" : false, - "id_str" : "46783", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/598438412555833344\/wpsQ6eoN_normal.jpg", - "id" : 46783, - "verified" : false - } - }, - "id" : 641618379040669697, - "created_at" : "2015-09-09 14:25:16 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E", "entities" : { @@ -4120,7 +4068,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Izzy", @@ -4129,7 +4077,7 @@ Grailbird.data.tweets_2015_09 = "id_str" : "642263", "id" : 642263 }, { - "name" : "Lemont Washington", + "name" : "Lemont", "screen_name" : "cocoalabs", "indices" : [ 13, 23 ], "id_str" : "689183", @@ -4159,7 +4107,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -4192,7 +4140,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4214,7 +4162,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4236,7 +4184,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4258,7 +4206,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4280,7 +4228,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4302,7 +4250,7 @@ Grailbird.data.tweets_2015_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2015_10.js b/public/tweets/data/js/tweets/2015_10.js index 29a8983..c4f1f37 100755 --- a/public/tweets/data/js/tweets/2015_10.js +++ b/public/tweets/data/js/tweets/2015_10.js @@ -17,7 +17,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "660593248373637122", "text" : "RT @siracusa: First Left Shark of the evening spotted.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -114,7 +114,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "indices" : [ 0, 6 ], "id_str" : "1919231", @@ -147,7 +147,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brent Simmons", + "name" : "inessential.com", "screen_name" : "brentsimmons", "indices" : [ 36, 49 ], "id_str" : "652293", @@ -199,7 +199,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "657653720096739328", "text" : "RT @Catfish_Man: It is occasionally frustrating to see apps bragging about quality when the only reason they launch at all is that I worked\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -272,7 +272,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -299,7 +299,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sebastian Markb\u00E5ge", @@ -338,7 +338,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -365,7 +365,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Karissa Bell", @@ -479,7 +479,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -565,7 +565,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -598,7 +598,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -630,7 +630,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -860,7 +860,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Legends Of Gaming", @@ -902,7 +902,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Lemont Washington", + "name" : "Lemont", "screen_name" : "cocoalabs", "indices" : [ 0, 10 ], "id_str" : "689183", @@ -954,7 +954,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "655205527832518656", "text" : "RT @dangoor: Friday night seems like the wrong time to introduce my new podcast. I\u2019ll wait until Monday. http:\/\/t.co\/GrMwkx5EFr", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1047,7 +1047,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -1086,7 +1086,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dave Verwer", @@ -1255,7 +1255,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1282,7 +1282,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Honest Status Page", @@ -1299,7 +1299,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "655061254344589312", "text" : "RT @honest_update: Turns out the real database is different from SQLite in non-trivial ways. We're investigating query failures now\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1333,7 +1333,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dave Verwer", @@ -1366,7 +1366,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -1422,7 +1422,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -1514,7 +1514,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1541,7 +1541,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joel Levin", @@ -1637,7 +1637,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "joeldev", "protected" : false, "id_str" : "14130572", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/633718260459008001\/EKs-gfe4_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1004183704967581696\/QVm3dQY2_normal.jpg", "id" : 14130572, "verified" : false } @@ -1654,7 +1654,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "SwiftOnSecurity", @@ -1815,7 +1815,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "654711701959413760", "text" : "RT @lilbitesofcocoa: #104: Interactive Collection View Re-ordering \uD83D\uDC46\uD83D\uDD22\n\nWeb version: https:\/\/t.co\/rThbh1tVRG http:\/\/t.co\/7k5RQJF6D1", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1885,7 +1885,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "zeynep tufekci", @@ -1924,7 +1924,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "zeynep", "protected" : false, "id_str" : "65375759", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/852492056798916608\/bydhBkye_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1042040726534668288\/z-TxsjAw_normal.jpg", "id" : 65375759, "verified" : true } @@ -1958,7 +1958,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "654477286570246144", "text" : "RT @merowing_: TIL: If you need to debug, it\u2019s good to import Frameworks into lldb. But it\u2019s nicer when you automate it, like this: http:\/\/\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2006,7 +2006,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "merowing_", "protected" : false, "id_str" : "289246577", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619395184082714624\/oTl1W51O_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1036876946448232449\/yqhZsnBS_normal.jpg", "id" : 289246577, "verified" : true } @@ -2023,7 +2023,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -2084,7 +2084,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2139,7 +2139,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "j\u0355\u0320\u0326\u032A\u0355\u0313\u035B\u030A\u033E\u0304\u0345w\u0327\u0327\u0333\u032A\u0318\u034A\u030B\u0357\u033E\u0362\u0360z\u0322\u0318\u031E\u0348\u033A\u031E\u0329\u0313\u033D\u0310\u030B\u0357\u0306\u030B\u031A\u035F\u035C", @@ -2226,7 +2226,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2282,7 +2282,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Beat it creep", + "name" : "Tricaratops", "screen_name" : "ilikeprettycode", "indices" : [ 0, 16 ], "id_str" : "3245500824", @@ -2315,7 +2315,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", + "name" : "\uD83D\uDC8E not Jen or Jem", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -2345,7 +2345,70 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Mark", + "screen_name" : "mdhughes", + "indices" : [ 3, 12 ], + "id_str" : "14200945", + "id" : 14200945 + }, { + "name" : "Craig Hockenberry", + "screen_name" : "chockenberry", + "indices" : [ 24, 37 ], + "id_str" : "36183", + "id" : 36183 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "654123649780191232", + "text" : "RT @mdhughes: I grabbed @chockenberry's Clicker, I'm using it to count drinks. 2 so far.", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Craig Hockenberry", + "screen_name" : "chockenberry", + "indices" : [ 10, 23 ], + "id_str" : "36183", + "id" : 36183 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "654122184562970627", + "text" : "I grabbed @chockenberry's Clicker, I'm using it to count drinks. 2 so far.", + "id" : 654122184562970627, + "created_at" : "2015-10-14 02:30:56 +0000", + "user" : { + "name" : "Mark", + "screen_name" : "mdhughes", + "protected" : false, + "id_str" : "14200945", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/854290493718450176\/SzqdDh_Y_normal.jpg", + "id" : 14200945, + "verified" : false + } + }, + "id" : 654123649780191232, + "created_at" : "2015-10-14 02:36:45 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Cooper", @@ -2378,7 +2441,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2400,7 +2463,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2422,7 +2485,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Koenig", @@ -2473,7 +2536,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Josh Abernathy", @@ -2599,7 +2662,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Matthew Hankins #FBPE", + "name" : "Matthew Hankins", "screen_name" : "mc_hankins", "indices" : [ 3, 14 ], "id_str" : "298729878", @@ -2688,11 +2751,11 @@ Grailbird.data.tweets_2015_10 = "id" : 653621441053753344, "created_at" : "2015-10-12 17:21:09 +0000", "user" : { - "name" : "Matthew Hankins #FBPE", + "name" : "Matthew Hankins", "screen_name" : "mc_hankins", "protected" : false, "id_str" : "298729878", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/972903760308686848\/TBasXQyg_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046469751684452352\/_7C9Hxfe_normal.jpg", "id" : 298729878, "verified" : false } @@ -2922,7 +2985,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ari Weinstein", @@ -2967,7 +3030,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joshua Topolsky", @@ -3235,7 +3298,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "jkw", @@ -3274,7 +3337,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Two Cows", @@ -3463,7 +3526,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "10188712", "id" : 10188712 }, { - "name" : "Brent Simmons", + "name" : "inessential.com", "screen_name" : "brentsimmons", "indices" : [ 6, 19 ], "id_str" : "652293", @@ -3493,7 +3556,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kevin Gisi", @@ -3920,7 +3983,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jenna Ipcar", + "name" : "50 Jenna Ipcar Fans Can't Be Wrong!", "screen_name" : "agreeablecar", "indices" : [ 3, 16 ], "id_str" : "550210137", @@ -3947,7 +4010,7 @@ Grailbird.data.tweets_2015_10 = "id" : 626774355641434113, "created_at" : "2015-07-30 15:20:25 +0000", "user" : { - "name" : "Jenna Ipcar", + "name" : "50 Jenna Ipcar Fans Can't Be Wrong!", "screen_name" : "agreeablecar", "protected" : false, "id_str" : "550210137", @@ -4323,7 +4386,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "The Rebound", @@ -4351,7 +4414,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -4384,7 +4447,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -4417,7 +4480,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Startup L. Jackson", @@ -4499,7 +4562,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kontra", @@ -4622,7 +4685,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4644,7 +4707,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4671,7 +4734,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Frommer", @@ -4704,7 +4767,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Dan Frommer", @@ -4737,7 +4800,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Smith", @@ -4754,7 +4817,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "652181984920342528", "text" : "RT @Catfish_Man: Pro tip: don\u2019t block waiting for user input inside of -drawRect:. Especially don\u2019t pop up a modal dialog.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4821,7 +4884,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -4893,10 +4956,10 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "let \u007Borta\u007D = therox", + "name" : ".\/orta", "screen_name" : "orta", "indices" : [ 0, 5 ], "id_str" : "2569881", @@ -4907,12 +4970,6 @@ Grailbird.data.tweets_2015_10 = "indices" : [ 6, 13 ], "id_str" : "14259737", "id" : 14259737 - }, { - "name" : "Cornelius", - "screen_name" : "ccoryoso", - "indices" : [ 14, 23 ], - "id_str" : "18798471", - "id" : 18798471 } ], "media" : [ ], "hashtags" : [ ], @@ -4938,16 +4995,16 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "let \u007Borta\u007D = therox", + "name" : ".\/orta", "screen_name" : "orta", "indices" : [ 0, 5 ], "id_str" : "2569881", "id" : 2569881 }, { - "name" : "Brent Simmons", + "name" : "inessential.com", "screen_name" : "brentsimmons", "indices" : [ 24, 37 ], "id_str" : "652293", @@ -4982,7 +5039,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -5192,7 +5249,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ed Bott", + "name" : "Ed Bott [404: Halloween Name Not Found]", "screen_name" : "edbott", "indices" : [ 0, 7 ], "id_str" : "12199652", @@ -5233,7 +5290,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -5250,7 +5307,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "651765771153055744", "text" : "RT @siracusa: Responses to sham treatments have become stronger over time making it harder to prove a drug\u2019s advantage over placebo http:\/\/\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5289,7 +5346,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Federico Viticci", @@ -5331,7 +5388,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "14864447", "id" : 14864447 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 16, 27 ], "id_str" : "894911", @@ -5354,7 +5411,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -5402,7 +5459,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5737,7 +5794,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Lemont Washington", + "name" : "Lemont", "screen_name" : "cocoalabs", "indices" : [ 3, 13 ], "id_str" : "689183", @@ -5774,11 +5831,11 @@ Grailbird.data.tweets_2015_10 = "id" : 651637057094180865, "created_at" : "2015-10-07 05:55:55 +0000", "user" : { - "name" : "Lemont Washington", + "name" : "Lemont", "screen_name" : "cocoalabs", "protected" : false, "id_str" : "689183", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/969701054529994752\/S0DxVozm_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1043695600162680833\/IoNlIIF1_normal.jpg", "id" : 689183, "verified" : false } @@ -5861,7 +5918,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -5888,7 +5945,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Nacho Soto", @@ -5897,7 +5954,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "43915380", "id" : 43915380 }, { - "name" : "Joe Groff", + "name" : "reabstraction thunk golem", "screen_name" : "jckarter", "indices" : [ 11, 20 ], "id_str" : "18559099", @@ -5927,7 +5984,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "IsTheAppleStoreDown", @@ -5960,7 +6017,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adam Crouch", @@ -5983,7 +6040,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "651440492954132480", "text" : "RT @adamcrouch: @toddthomas Mine was already on natural. I turned it off and back on again and now the swipe gestures are back to normal.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Todd Thomas", @@ -6028,7 +6085,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\uD83D\uDC2F ece \uD83D\uDC2F", @@ -6090,7 +6147,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kristian V\u00E4tt\u00F6", @@ -6141,7 +6198,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jason Grigsby Talks", @@ -6208,7 +6265,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6230,7 +6287,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Pete Pachal", @@ -6473,7 +6530,7 @@ Grailbird.data.tweets_2015_10 = "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -6562,7 +6619,7 @@ Grailbird.data.tweets_2015_10 = "created_at" : "2015-10-06 02:38:49 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -6615,7 +6672,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Patrick Collison", @@ -6666,7 +6723,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Pierce", @@ -6699,7 +6756,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Barnard", @@ -6721,7 +6778,7 @@ Grailbird.data.tweets_2015_10 = "id_str" : "651063047763697664", "text" : "RT @drbarnard: Apple making \u201CShare with Developers\u201D the default choice in iOS 9 (https:\/\/t.co\/ezwKgQZkhY) has increased opt-in rate http:\/\/\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -6791,7 +6848,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -6824,7 +6881,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -6854,7 +6911,7 @@ Grailbird.data.tweets_2015_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mark Agee", + "name" : "The Monster Rash", "screen_name" : "MarkAgee", "indices" : [ 3, 12 ], "id_str" : "70775995", @@ -7005,7 +7062,7 @@ Grailbird.data.tweets_2015_10 = "id" : 648235967434719232, "created_at" : "2015-09-27 20:41:12 +0000", "user" : { - "name" : "Mark Agee", + "name" : "The Monster Rash", "screen_name" : "MarkAgee", "protected" : false, "id_str" : "70775995", @@ -7026,7 +7083,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7075,7 +7132,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -7128,7 +7185,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7423,7 +7480,7 @@ Grailbird.data.tweets_2015_10 = "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -7450,7 +7507,7 @@ Grailbird.data.tweets_2015_10 = "created_at" : "2015-10-03 15:42:37 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -7504,7 +7561,7 @@ Grailbird.data.tweets_2015_10 = "screen_name" : "rob_rix", "protected" : false, "id_str" : "14056827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/822100326538878976\/683uW-lH_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/999994812576092162\/uO3412GC_normal.jpg", "id" : 14056827, "verified" : false } @@ -7525,7 +7582,7 @@ Grailbird.data.tweets_2015_10 = "entities" : { "user_mentions" : [ { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "indices" : [ 3, 17 ], "id_str" : "1236101", "id" : 1236101 @@ -7562,7 +7619,7 @@ Grailbird.data.tweets_2015_10 = "created_at" : "2015-10-03 07:12:52 +0000", "user" : { "name" : "Benedict Evans", - "screen_name" : "BenedictEvans", + "screen_name" : "benedictevans", "protected" : false, "id_str" : "1236101", "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/845396356579508224\/1ruiOPLI_normal.jpg", @@ -7582,10 +7639,10 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 78, 89 ], "id_str" : "894911", @@ -7622,7 +7679,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mahyar Mj", @@ -7655,10 +7712,10 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Scott Westerfeld", + "name" : "Scott Wes\uD83D\uDDE1\uFE0Ferfeld", "screen_name" : "ScottWesterfeld", "indices" : [ 3, 19 ], "id_str" : "43822174", @@ -7685,7 +7742,7 @@ Grailbird.data.tweets_2015_10 = "id" : 446805144781348865, "created_at" : "2014-03-21 00:27:02 +0000", "user" : { - "name" : "Scott Westerfeld", + "name" : "Scott Wes\uD83D\uDDE1\uFE0Ferfeld", "screen_name" : "ScottWesterfeld", "protected" : false, "id_str" : "43822174", @@ -7706,7 +7763,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7728,7 +7785,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7750,10 +7807,10 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83E\uDDC0\uD83E\uDDC0\uD83E\uDDC0", + "name" : "\uD83E\uDDC0\uD83E\uDDC0\uD83E\uDDC0Jonathan Hays", "screen_name" : "cheesemaker", "indices" : [ 0, 12 ], "id_str" : "60145233", @@ -7887,7 +7944,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Krzysztof Zab\u0142ocki", @@ -7920,7 +7977,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7942,7 +7999,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -7969,10 +8026,10 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mike Rundle", + "name" : "Spike \u26CF Rundle", "screen_name" : "flyosity", "indices" : [ 0, 9 ], "id_str" : "10545", @@ -8041,7 +8098,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "rabble", @@ -8074,7 +8131,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "rabble", @@ -8107,7 +8164,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ian Cutress", @@ -8146,7 +8203,7 @@ Grailbird.data.tweets_2015_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Evan Doll", diff --git a/public/tweets/data/js/tweets/2015_11.js b/public/tweets/data/js/tweets/2015_11.js index 35fed5b..1b3ae30 100755 --- a/public/tweets/data/js/tweets/2015_11.js +++ b/public/tweets/data/js/tweets/2015_11.js @@ -288,7 +288,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "mikeash", @@ -331,7 +331,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Bate", @@ -521,7 +521,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -654,7 +654,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -681,7 +681,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -714,7 +714,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -747,7 +747,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael B. Johnson", @@ -783,7 +783,7 @@ Grailbird.data.tweets_2015_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Aaron Stephenson", + "name" : "Aaron", "screen_name" : "iosaaron", "indices" : [ 3, 12 ], "id_str" : "1968340063", @@ -820,11 +820,11 @@ Grailbird.data.tweets_2015_11 = "id" : 666503355859009536, "created_at" : "2015-11-17 06:29:17 +0000", "user" : { - "name" : "Aaron Stephenson", + "name" : "Aaron", "screen_name" : "iosaaron", "protected" : false, "id_str" : "1968340063", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/968073603517317125\/EBmhm3go_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1041089667028856832\/0o4shj0-_normal.jpg", "id" : 1968340063, "verified" : false } @@ -844,7 +844,7 @@ Grailbird.data.tweets_2015_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Maximiliano Firtman", + "name" : "Maximiliano Firtman @ \uD83C\uDDF7\uD83C\uDDF8 Belgrade", "screen_name" : "firt", "indices" : [ 3, 8 ], "id_str" : "17509972", @@ -902,7 +902,7 @@ Grailbird.data.tweets_2015_11 = "id" : 666414635390795776, "created_at" : "2015-11-17 00:36:45 +0000", "user" : { - "name" : "Maximiliano Firtman", + "name" : "Maximiliano Firtman @ \uD83C\uDDF7\uD83C\uDDF8 Belgrade", "screen_name" : "firt", "protected" : false, "id_str" : "17509972", @@ -995,7 +995,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tara", @@ -1028,7 +1028,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Mahyar Mj", @@ -1076,7 +1076,7 @@ Grailbird.data.tweets_2015_11 = "id_str" : "18532832", "id" : 18532832 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 69, 80 ], "id_str" : "894911", @@ -1105,7 +1105,7 @@ Grailbird.data.tweets_2015_11 = "id_str" : "18532832", "id" : 18532832 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 54, 65 ], "id_str" : "894911", @@ -1153,7 +1153,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jason Snell", @@ -1229,7 +1229,7 @@ Grailbird.data.tweets_2015_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Lemont Washington", + "name" : "Lemont", "screen_name" : "cocoalabs", "indices" : [ 0, 10 ], "id_str" : "689183", @@ -1365,7 +1365,7 @@ Grailbird.data.tweets_2015_11 = "screen_name" : "SwiftOnSecurity", "protected" : false, "id_str" : "2436389418", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/985003054197018625\/irNuSVxr_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1047392190257946624\/Pc2yxY4U_normal.jpg", "id" : 2436389418, "verified" : false } @@ -1458,7 +1458,7 @@ Grailbird.data.tweets_2015_11 = "id_str" : "662816202033512449", "text" : "RT @siracusa: @jsnell It is madness. Madness! It is literally more work to make that error message than to do it right.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jason Snell", @@ -1616,7 +1616,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "kangax", @@ -1702,7 +1702,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\uD83D\uDC2F ece \uD83D\uDC2F", @@ -1796,7 +1796,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Smith", @@ -1813,7 +1813,7 @@ Grailbird.data.tweets_2015_11 = "id_str" : "662083420625833985", "text" : "RT @Catfish_Man: (TLDR: code like\nfoo() \u007B\n if (someCondition) return;\n \/*work*\/\n\u007D\nnow only pays for stack frame setup if not early re\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1852,7 +1852,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Smith", @@ -1874,7 +1874,7 @@ Grailbird.data.tweets_2015_11 = "id_str" : "662083398144409601", "text" : "RT @Catfish_Man: This is some good shit: https:\/\/t.co\/KA36GdPSQ5", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1913,7 +1913,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Koenig", @@ -1946,7 +1946,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Koenig", @@ -2228,7 +2228,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Holt", @@ -2283,7 +2283,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Joel Levin", @@ -2515,7 +2515,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2559,7 +2559,7 @@ Grailbird.data.tweets_2015_11 = "id_str" : "660923658458689536", "text" : "RT @zackkanter: Amazing, real, and accurate: the CIA's Simple Sabotage Field Manual (1944) describes how to sabotage organizations. https:\/\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2624,7 +2624,7 @@ Grailbird.data.tweets_2015_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2015_12.js b/public/tweets/data/js/tweets/2015_12.js index 39cd9fc..3eca285 100755 --- a/public/tweets/data/js/tweets/2015_12.js +++ b/public/tweets/data/js/tweets/2015_12.js @@ -190,7 +190,7 @@ Grailbird.data.tweets_2015_12 = "screen_name" : "MitchHawes", "protected" : false, "id_str" : "32311137", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000550437325\/698593f5f14bd6f461effd34419026a5_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1001217741620101121\/HiSk5a1Y_normal.jpg", "id" : 32311137, "verified" : false } @@ -536,7 +536,7 @@ Grailbird.data.tweets_2015_12 = "id_str" : "681145970214612992", "text" : "RT @stroughtonsmith: All the App Store problems are 100% fixable. None of it is hardware, none of it is software; all ideology & respect is\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -783,7 +783,7 @@ Grailbird.data.tweets_2015_12 = "id_str" : "680914235203825664", "text" : "RT @fyrite: Stoked I got a @EdmontonOilers @Nail10_1993 jersey for Xmas - and will be at the game tonight in Van! #GoOilers https:\/\/t.co\/Ww\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Edmonton Oilers", @@ -1052,7 +1052,7 @@ Grailbird.data.tweets_2015_12 = "id_str" : "679906255385694208", "text" : "RT @evadne: https:\/\/t.co\/eywoJchYTR my head spins. Complexity begets workaround. Workaround begets suffering. Suffering begets fancy blog p\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1563,7 +1563,7 @@ Grailbird.data.tweets_2015_12 = "screen_name" : "JustinTrudeau", "protected" : false, "id_str" : "14260960", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/950393608221454336\/NbB_X0TG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1049800491381665792\/roFCXYgS_normal.jpg", "id" : 14260960, "verified" : true } @@ -1829,7 +1829,7 @@ Grailbird.data.tweets_2015_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1859,7 +1859,7 @@ Grailbird.data.tweets_2015_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "s \u029C \uF8FF \u1D18 s", @@ -2103,7 +2103,7 @@ Grailbird.data.tweets_2015_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2346,7 +2346,7 @@ Grailbird.data.tweets_2015_12 = "id_str" : "672073706974285825", "text" : "RT @merowing_: Sometimes we can achieve desired effect with little code, I wrote about Headspace dot https:\/\/t.co\/QMleREQDBB", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2368,7 +2368,7 @@ Grailbird.data.tweets_2015_12 = "screen_name" : "merowing_", "protected" : false, "id_str" : "289246577", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619395184082714624\/oTl1W51O_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1036876946448232449\/yqhZsnBS_normal.jpg", "id" : 289246577, "verified" : true } diff --git a/public/tweets/data/js/tweets/2016_01.js b/public/tweets/data/js/tweets/2016_01.js index b145242..be1cafe 100755 --- a/public/tweets/data/js/tweets/2016_01.js +++ b/public/tweets/data/js/tweets/2016_01.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2016_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "let \u007Borta\u007D = therox", + "name" : ".\/orta", "screen_name" : "orta", "indices" : [ 0, 5 ], "id_str" : "2569881", @@ -36,7 +36,7 @@ Grailbird.data.tweets_2016_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -225,7 +225,7 @@ Grailbird.data.tweets_2016_01 = "id_str" : "14136484", "id" : 14136484 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 13, 24 ], "id_str" : "894911", @@ -296,7 +296,7 @@ Grailbird.data.tweets_2016_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -365,7 +365,7 @@ Grailbird.data.tweets_2016_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -448,7 +448,7 @@ Grailbird.data.tweets_2016_01 = "screen_name" : "vicpdcanada", "protected" : false, "id_str" : "80139117", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/933128278671466496\/9F7nlK4k_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1031602904027688960\/2mkn8VFH_normal.jpg", "id" : 80139117, "verified" : true } @@ -468,7 +468,7 @@ Grailbird.data.tweets_2016_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -913,7 +913,7 @@ Grailbird.data.tweets_2016_01 = "screen_name" : "ryanflorence", "protected" : false, "id_str" : "16468446", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937382461918478336\/AxXNkFRG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1030536508321591296\/pTLoN1_y_normal.jpg", "id" : 16468446, "verified" : false } @@ -969,7 +969,7 @@ Grailbird.data.tweets_2016_01 = "screen_name" : "ryanflorence", "protected" : false, "id_str" : "16468446", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/937382461918478336\/AxXNkFRG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1030536508321591296\/pTLoN1_y_normal.jpg", "id" : 16468446, "verified" : false } @@ -1145,7 +1145,7 @@ Grailbird.data.tweets_2016_01 = "id_str" : "685907877291134976", "text" : "RT @irace: I love @khanlou\u2019s \u201Ccoordinator\u201D pattern. Here\u2019s how I use it in conjunction with UINavigationController: \n\nhttps:\/\/t.co\/XLIEY96X\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "soroush", @@ -1173,7 +1173,7 @@ Grailbird.data.tweets_2016_01 = "screen_name" : "irace", "protected" : false, "id_str" : "21626062", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/840688981234737152\/sEHJPbGm_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1035337613278887938\/XEj-GES5_normal.jpg", "id" : 21626062, "verified" : false } @@ -1207,7 +1207,7 @@ Grailbird.data.tweets_2016_01 = "id_str" : "685586201865097217", "text" : "RT @BigZaphod: Why do the worst bugs only happen on other people\u2019s devices?", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1263,7 +1263,7 @@ Grailbird.data.tweets_2016_01 = "id_str" : "684938006579445760", "text" : "RT @acorscadden: An iOS screen capturing app got by app review. Get it before it gets taken down. https:\/\/t.co\/imAGT3mAgm", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1642,7 +1642,7 @@ Grailbird.data.tweets_2016_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2016_02.js b/public/tweets/data/js/tweets/2016_02.js index c1744b9..959df2e 100755 --- a/public/tweets/data/js/tweets/2016_02.js +++ b/public/tweets/data/js/tweets/2016_02.js @@ -199,7 +199,7 @@ Grailbird.data.tweets_2016_02 = "screen_name" : "JustinTrudeau", "protected" : false, "id_str" : "14260960", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/950393608221454336\/NbB_X0TG_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1049800491381665792\/roFCXYgS_normal.jpg", "id" : 14260960, "verified" : true } @@ -811,7 +811,7 @@ Grailbird.data.tweets_2016_02 = "id_str" : "700866707716308992", "text" : "RT @stroughtonsmith: I\u2019d really love to know why they picked a caps lock key over an escape key. ChromeOS (for instance) does away with cap\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -862,7 +862,7 @@ Grailbird.data.tweets_2016_02 = "id_str" : "700866635511369732", "text" : "RT @stroughtonsmith: Not having an escape key also means that any apps that implement an esc keyboard shortcut need to add a second way to \u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -913,7 +913,7 @@ Grailbird.data.tweets_2016_02 = "id_str" : "700866608047099904", "text" : "RT @stroughtonsmith: Not putting an escape button on the iPad Pro Smart Keyboard is another bizarre choice - it leaves users no universal \u2018\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1560,7 +1560,7 @@ Grailbird.data.tweets_2016_02 = "id_str" : "699257124468056064", "text" : "RT @siracusa: As you watch the churn in the Swift language and the many source-incompatible changes, remember stories like this: https:\/\/t.\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1661,7 +1661,7 @@ Grailbird.data.tweets_2016_02 = "screen_name" : "terhechte", "protected" : false, "id_str" : "6473172", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/470279059084025857\/zLklF_WF_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1016338328235532293\/5Nwff3FT_normal.jpg", "id" : 6473172, "verified" : false } @@ -1677,125 +1677,6 @@ Grailbird.data.tweets_2016_02 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Space Force Commander", - "screen_name" : "sassy_swaggerty", - "indices" : [ 3, 19 ], - "id_str" : "177552754", - "id" : 177552754 - } ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/sassy_swaggerty\/status\/696531639804026880\/photo\/1", - "indices" : [ 76, 99 ], - "url" : "https:\/\/t.co\/pJhHWiRdqA", - "media_url" : "http:\/\/pbs.twimg.com\/media\/CaqT07NUkAA1svs.jpg", - "id_str" : "696531629838209024", - "id" : 696531629838209024, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CaqT07NUkAA1svs.jpg", - "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 900, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 1080, - "resize" : "fit", - "w" : 1440 - }, { - "h" : 1080, - "resize" : "fit", - "w" : 1440 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - } ], - "media_alt" : "", - "display_url" : "pic.twitter.com\/pJhHWiRdqA" - } ], - "hashtags" : [ { - "text" : "SuperBowl50", - "indices" : [ 63, 75 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "696532020084641792", - "text" : "RT @sassy_swaggerty: Old Eli lookin like he bet against Peyton #SuperBowl50 https:\/\/t.co\/pJhHWiRdqA", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ { - "expanded_url" : "https:\/\/twitter.com\/sassy_swaggerty\/status\/696531639804026880\/photo\/1", - "indices" : [ 55, 78 ], - "url" : "https:\/\/t.co\/pJhHWiRdqA", - "media_url" : "http:\/\/pbs.twimg.com\/media\/CaqT07NUkAA1svs.jpg", - "id_str" : "696531629838209024", - "id" : 696531629838209024, - "media_url_https" : "https:\/\/pbs.twimg.com\/media\/CaqT07NUkAA1svs.jpg", - "sizes" : [ { - "h" : 150, - "resize" : "crop", - "w" : 150 - }, { - "h" : 900, - "resize" : "fit", - "w" : 1200 - }, { - "h" : 1080, - "resize" : "fit", - "w" : 1440 - }, { - "h" : 1080, - "resize" : "fit", - "w" : 1440 - }, { - "h" : 510, - "resize" : "fit", - "w" : 680 - } ], - "media_alt" : "", - "display_url" : "pic.twitter.com\/pJhHWiRdqA" - } ], - "hashtags" : [ { - "text" : "SuperBowl50", - "indices" : [ 42, 54 ] - } ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "696531639804026880", - "text" : "Old Eli lookin like he bet against Peyton #SuperBowl50 https:\/\/t.co\/pJhHWiRdqA", - "id" : 696531639804026880, - "created_at" : "2016-02-08 03:10:58 +0000", - "user" : { - "name" : "Space Force Commander", - "screen_name" : "sassy_swaggerty", - "protected" : false, - "id_str" : "177552754", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/974862249549615104\/kE5eVJ5l_normal.jpg", - "id" : 177552754, - "verified" : false - } - }, - "id" : 696532020084641792, - "created_at" : "2016-02-08 03:12:29 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { @@ -1817,7 +1698,7 @@ Grailbird.data.tweets_2016_02 = "id_str" : "696531822847471616", "text" : "RT @fyrite: Looks like Eli bet on the Panthers #SuperBowl50", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1976,7 +1857,7 @@ Grailbird.data.tweets_2016_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Nate Cook \u2603\uFE0F", + "name" : "Nate Oooooooo \uD83D\uDC7B", "screen_name" : "nnnnnnnn", "indices" : [ 0, 9 ], "id_str" : "4365311", @@ -2109,7 +1990,7 @@ Grailbird.data.tweets_2016_02 = "id_str" : "22022613", "id" : 22022613 }, { - "name" : "\u262D\uD83D\uDE80\uD83D\uDC15 Bodil \uD83D\uDC15\uD83D\uDE80\u262D", + "name" : "Bodil", "screen_name" : "bodil", "indices" : [ 9, 15 ], "id_str" : "12503922", diff --git a/public/tweets/data/js/tweets/2016_03.js b/public/tweets/data/js/tweets/2016_03.js index de3d81e..1eca7bd 100755 --- a/public/tweets/data/js/tweets/2016_03.js +++ b/public/tweets/data/js/tweets/2016_03.js @@ -104,7 +104,7 @@ Grailbird.data.tweets_2016_03 = "id_str" : "75079616", "id" : 75079616 }, { - "name" : "Pinboard", + "name" : "Dork Money Defeats Dark Money", "screen_name" : "Pinboard", "indices" : [ 63, 72 ], "id_str" : "55525953", @@ -144,7 +144,7 @@ Grailbird.data.tweets_2016_03 = "id_str" : "75079616", "id" : 75079616 }, { - "name" : "Pinboard", + "name" : "Dork Money Defeats Dark Money", "screen_name" : "Pinboard", "indices" : [ 51, 60 ], "id_str" : "55525953", @@ -266,7 +266,7 @@ Grailbird.data.tweets_2016_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -299,7 +299,7 @@ Grailbird.data.tweets_2016_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Pinboard", + "name" : "Dork Money Defeats Dark Money", "screen_name" : "Pinboard", "indices" : [ 3, 12 ], "id_str" : "55525953", @@ -326,7 +326,7 @@ Grailbird.data.tweets_2016_03 = "id" : 713778334774140928, "created_at" : "2016-03-26 17:23:11 +0000", "user" : { - "name" : "Pinboard", + "name" : "Dork Money Defeats Dark Money", "screen_name" : "Pinboard", "protected" : false, "id_str" : "55525953", @@ -450,7 +450,7 @@ Grailbird.data.tweets_2016_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "J\u20DDO\u20DDE\u20DD Fabisevich \uD83D\uDC36\uD83D\uDC2F\u26BE\uFE0F\uD83C\uDDF5\uD83C\uDDF7\uD83D\uDC31\uD83D\uDC33\u2122", + "name" : "Joe Fabisevich \uD83D\uDC26\uD83D\uDC2F\uD83D\uDC33\u2122", "screen_name" : "mergesort", "indices" : [ 0, 10 ], "id_str" : "26178841", @@ -495,7 +495,7 @@ Grailbird.data.tweets_2016_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", + "name" : "\uD83D\uDC8E not Jen or Jem", "screen_name" : "gembarrett", "indices" : [ 3, 14 ], "id_str" : "43727347", @@ -522,11 +522,11 @@ Grailbird.data.tweets_2016_03 = "id" : 712392149178961920, "created_at" : "2016-03-22 21:34:58 +0000", "user" : { - "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", + "name" : "\uD83D\uDC8E not Jen or Jem", "screen_name" : "gembarrett", "protected" : false, "id_str" : "43727347", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/820806575430504448\/JhIS2Mtd_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1000030066951311360\/0GzKoAqh_normal.jpg", "id" : 43727347, "verified" : false } @@ -571,7 +571,7 @@ Grailbird.data.tweets_2016_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -598,10 +598,10 @@ Grailbird.data.tweets_2016_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -631,7 +631,7 @@ Grailbird.data.tweets_2016_03 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Stephen Hackett", @@ -762,7 +762,7 @@ Grailbird.data.tweets_2016_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -801,7 +801,7 @@ Grailbird.data.tweets_2016_03 = "id_str" : "22961921", "id" : 22961921 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 77, 88 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2016_04.js b/public/tweets/data/js/tweets/2016_04.js index 84bf901..708fe65 100755 --- a/public/tweets/data/js/tweets/2016_04.js +++ b/public/tweets/data/js/tweets/2016_04.js @@ -298,7 +298,7 @@ Grailbird.data.tweets_2016_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Ben Thompson", @@ -621,7 +621,7 @@ Grailbird.data.tweets_2016_04 = "id_str" : "718541967450251264", "text" : "RT @merowing_: I\u2019m now available for hire, I\u2019ve been making iOS apps since first iPhone, shipping a lot of apps - https:\/\/t.co\/96Gw8uJtsD\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -643,7 +643,7 @@ Grailbird.data.tweets_2016_04 = "screen_name" : "merowing_", "protected" : false, "id_str" : "289246577", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619395184082714624\/oTl1W51O_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1036876946448232449\/yqhZsnBS_normal.jpg", "id" : 289246577, "verified" : true } @@ -663,7 +663,7 @@ Grailbird.data.tweets_2016_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -690,7 +690,7 @@ Grailbird.data.tweets_2016_04 = "id" : 718180141902368768, "created_at" : "2016-04-07 20:54:23 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -851,7 +851,7 @@ Grailbird.data.tweets_2016_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "indices" : [ 0, 6 ], "id_str" : "1919231", diff --git a/public/tweets/data/js/tweets/2016_05.js b/public/tweets/data/js/tweets/2016_05.js index 5f1bbd1..ca4a172 100755 --- a/public/tweets/data/js/tweets/2016_05.js +++ b/public/tweets/data/js/tweets/2016_05.js @@ -249,6 +249,12 @@ Grailbird.data.tweets_2016_05 = "indices" : [ 0, 10 ], "id_str" : "74837444", "id" : 74837444 + }, { + "name" : "Cody", + "screen_name" : "JZdziarski", + "indices" : [ 11, 22 ], + "id_str" : "993447848577454080", + "id" : 993447848577454080 } ], "media" : [ ], "hashtags" : [ ], @@ -277,7 +283,7 @@ Grailbird.data.tweets_2016_05 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", diff --git a/public/tweets/data/js/tweets/2016_06.js b/public/tweets/data/js/tweets/2016_06.js index ca2f1d4..488a69c 100755 --- a/public/tweets/data/js/tweets/2016_06.js +++ b/public/tweets/data/js/tweets/2016_06.js @@ -1,6 +1,6 @@ Grailbird.data.tweets_2016_06 = [ { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -53,7 +53,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -75,7 +75,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -182,7 +182,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -209,7 +209,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -239,7 +239,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -274,7 +274,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Lauren Fisher", @@ -500,7 +500,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "liz abinante!", + "name" : "feminasty", "screen_name" : "feministy", "indices" : [ 3, 13 ], "id_str" : "7039892", @@ -527,11 +527,11 @@ Grailbird.data.tweets_2016_06 = "id" : 747991691274002433, "created_at" : "2016-06-29 03:14:50 +0000", "user" : { - "name" : "liz abinante!", + "name" : "feminasty", "screen_name" : "feministy", "protected" : false, "id_str" : "7039892", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/978302557897371649\/0dAQg1WB_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1007766571761012736\/FAEYGEbW_normal.jpg", "id" : 7039892, "verified" : false } @@ -686,7 +686,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -749,7 +749,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -869,7 +869,7 @@ Grailbird.data.tweets_2016_06 = "id_str" : "747602411393409024", "text" : "RT @wwwtxt: It remains my opinion that pretending to be an asshole on the net and actually being one are not as far apart as some people th\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -957,7 +957,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Nick Frey", @@ -1018,7 +1018,7 @@ Grailbird.data.tweets_2016_06 = "id_str" : "747424321312690176", "text" : "RT @merowing_: My talk about iOS Architecture is now live, would love to hear some feedback :) https:\/\/t.co\/3K6u6hG8dl", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1040,7 +1040,7 @@ Grailbird.data.tweets_2016_06 = "screen_name" : "merowing_", "protected" : false, "id_str" : "289246577", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619395184082714624\/oTl1W51O_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1036876946448232449\/yqhZsnBS_normal.jpg", "id" : 289246577, "verified" : true } @@ -1295,7 +1295,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ivan Andriollo \uD83C\uDDEA\uD83C\uDDFA", + "name" : "Ivan Andriollo", "screen_name" : "ivanandriollo", "indices" : [ 0, 14 ], "id_str" : "22913041", @@ -1339,7 +1339,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ivan Andriollo \uD83C\uDDEA\uD83C\uDDFA", + "name" : "Ivan Andriollo", "screen_name" : "ivanandriollo", "indices" : [ 0, 14 ], "id_str" : "22913041", @@ -1378,7 +1378,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ivan Andriollo \uD83C\uDDEA\uD83C\uDDFA", + "name" : "Ivan Andriollo", "screen_name" : "ivanandriollo", "indices" : [ 0, 14 ], "id_str" : "22913041", @@ -1417,7 +1417,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ivan Andriollo \uD83C\uDDEA\uD83C\uDDFA", + "name" : "Ivan Andriollo", "screen_name" : "ivanandriollo", "indices" : [ 0, 14 ], "id_str" : "22913041", @@ -1456,7 +1456,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ivan Andriollo \uD83C\uDDEA\uD83C\uDDFA", + "name" : "Ivan Andriollo", "screen_name" : "ivanandriollo", "indices" : [ 0, 14 ], "id_str" : "22913041", @@ -1495,7 +1495,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ivan Andriollo \uD83C\uDDEA\uD83C\uDDFA", + "name" : "Ivan Andriollo", "screen_name" : "ivanandriollo", "indices" : [ 0, 14 ], "id_str" : "22913041", @@ -1534,7 +1534,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ivan Andriollo \uD83C\uDDEA\uD83C\uDDFA", + "name" : "Ivan Andriollo", "screen_name" : "ivanandriollo", "indices" : [ 0, 14 ], "id_str" : "22913041", @@ -1625,7 +1625,7 @@ Grailbird.data.tweets_2016_06 = "id_str" : "746681146851926016", "text" : "RT @macdevnet: With great trepidation I have documented why I voted \u201Cleave\u201D https:\/\/t.co\/qUzSacMAj6", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1664,10 +1664,10 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1697,7 +1697,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1727,10 +1727,10 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -1760,10 +1760,10 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1793,7 +1793,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2092,7 +2092,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Let's Encrypt", @@ -2125,7 +2125,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Let's Encrypt", @@ -2158,7 +2158,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Paul Goracke", @@ -2192,7 +2192,7 @@ Grailbird.data.tweets_2016_06 = "screen_name" : "pgor", "protected" : false, "id_str" : "10188712", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/417767767681417216\/v_aYVi_t_normal.jpeg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/991446587598516225\/9l0VktxV_normal.jpg", "id" : 10188712, "verified" : false } @@ -2226,7 +2226,7 @@ Grailbird.data.tweets_2016_06 = "id_str" : "744875496622727168", "text" : "RT @olebegemann: \u201CXcode 8 takes build settings set in xcconfig files into account when suggesting updates to your build settings.\u201D Nice.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2444,7 +2444,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2483,7 +2483,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2516,7 +2516,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2856,7 +2856,7 @@ Grailbird.data.tweets_2016_06 = "id_str" : "742797463724003328", "text" : "RT @snarfmason: Can I enable APFS on a macOS 10.12 beta install? I was looking for an excuse to bust open my mini and put an SSD in it.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2923,7 +2923,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2956,7 +2956,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2989,7 +2989,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -3022,7 +3022,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3060,13 +3060,13 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Joe Groff", + "name" : "reabstraction thunk golem", "screen_name" : "jckarter", "indices" : [ 3, 12 ], "id_str" : "18559099", "id" : 18559099 }, { - "name" : "Friedrich Markgraf", + "name" : "Friedrich \uD574\uBBFC Markgraf", "screen_name" : "fzwob", "indices" : [ 14, 20 ], "id_str" : "383365996", @@ -3083,7 +3083,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Friedrich Markgraf", + "name" : "Friedrich \uD574\uBBFC Markgraf", "screen_name" : "fzwob", "indices" : [ 0, 6 ], "id_str" : "383365996", @@ -3104,11 +3104,11 @@ Grailbird.data.tweets_2016_06 = "in_reply_to_screen_name" : "fzwob", "in_reply_to_user_id_str" : "383365996", "user" : { - "name" : "Joe Groff", + "name" : "reabstraction thunk golem", "screen_name" : "jckarter", "protected" : false, "id_str" : "18559099", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/977666852103995392\/JLjTHaRy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1047539884141961216\/_VvMpnNX_normal.jpg", "id" : 18559099, "verified" : false } @@ -3125,7 +3125,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3182,7 +3182,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3217,68 +3217,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Anna Shtengelova", - "screen_name" : "ashtengelova", - "indices" : [ 3, 16 ], - "id_str" : "2792599332", - "id" : 2792599332 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 39, 62 ], - "url" : "https:\/\/t.co\/jKKdVEjYvX", - "expanded_url" : "https:\/\/developer.apple.com\/ios\/human-interface-guidelines\/", - "display_url" : "developer.apple.com\/ios\/human-inte\u2026" - } ] - }, - "geo" : { }, - "id_str" : "742445881387929600", - "text" : "RT @ashtengelova: Shiny new iOS HIG! \uD83C\uDF1F https:\/\/t.co\/jKKdVEjYvX", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 21, 44 ], - "url" : "https:\/\/t.co\/jKKdVEjYvX", - "expanded_url" : "https:\/\/developer.apple.com\/ios\/human-interface-guidelines\/", - "display_url" : "developer.apple.com\/ios\/human-inte\u2026" - } ] - }, - "geo" : { }, - "id_str" : "742445532593823744", - "text" : "Shiny new iOS HIG! \uD83C\uDF1F https:\/\/t.co\/jKKdVEjYvX", - "id" : 742445532593823744, - "created_at" : "2016-06-13 19:56:23 +0000", - "user" : { - "name" : "Anna Shtengelova", - "screen_name" : "ashtengelova", - "protected" : false, - "id_str" : "2792599332", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/608702116509540352\/dHRr4_oo_normal.jpg", - "id" : 2792599332, - "verified" : false - } - }, - "id" : 742445881387929600, - "created_at" : "2016-06-13 19:57:46 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Gianluca Bertani", @@ -3317,7 +3256,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -3350,7 +3289,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "John Siracusa", @@ -3367,7 +3306,7 @@ Grailbird.data.tweets_2016_06 = "id_str" : "742436066292944896", "text" : "RT @siracusa: The new file system is real, and it's\u2026spectacular?", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/ios\" rel=\"nofollow\"\u003ETwitterrific for iOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3401,7 +3340,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3436,7 +3375,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3471,7 +3410,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3501,7 +3440,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Steven R. Baker", @@ -3534,7 +3473,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -3590,7 +3529,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3620,7 +3559,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3650,7 +3589,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3680,7 +3619,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3739,7 +3678,7 @@ Grailbird.data.tweets_2016_06 = "screen_name" : "tanyaxshort", "protected" : false, "id_str" : "477205806", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/925750812671926273\/NZkeVk22_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1032414710027542528\/1XxL4ql0_normal.jpg", "id" : 477205806, "verified" : true } @@ -4142,7 +4081,7 @@ Grailbird.data.tweets_2016_06 = "id_str" : "921389774", "id" : 921389774 }, { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 25, 35 ], "id_str" : "22406953", @@ -4225,7 +4164,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Bartender for Mac", @@ -4261,11 +4200,11 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "paolo f.", + "name" : "hxwk", "screen_name" : "0x00A", "indices" : [ 0, 6 ], - "id_str" : "95938827", - "id" : 95938827 + "id_str" : "1032640982431539200", + "id" : 1032640982431539200 } ], "media" : [ ], "hashtags" : [ ], @@ -4279,7 +4218,7 @@ Grailbird.data.tweets_2016_06 = "id" : 740921697457475584, "in_reply_to_status_id" : 740917841235316736, "created_at" : "2016-06-09 15:01:12 +0000", - "in_reply_to_screen_name" : "0x00A", + "in_reply_to_screen_name" : "hxoht", "in_reply_to_user_id_str" : "95938827", "user" : { "name" : "Sami Samhuri", @@ -4345,7 +4284,7 @@ Grailbird.data.tweets_2016_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", + "name" : "\uD83D\uDC8E not Jen or Jem", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -4375,10 +4314,10 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Brent Simmons", + "name" : "inessential.com", "screen_name" : "brentsimmons", "indices" : [ 0, 13 ], "id_str" : "652293", @@ -4414,7 +4353,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "The Rebound", @@ -4447,7 +4386,7 @@ Grailbird.data.tweets_2016_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "The Rebound", diff --git a/public/tweets/data/js/tweets/2016_07.js b/public/tweets/data/js/tweets/2016_07.js index f48d9b7..d3c7bc4 100755 --- a/public/tweets/data/js/tweets/2016_07.js +++ b/public/tweets/data/js/tweets/2016_07.js @@ -176,7 +176,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -203,7 +203,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -339,7 +339,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "RebeccaSlatkin", "protected" : false, "id_str" : "20249612", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/798601813259915264\/TZyUWpiE_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1049146786873593856\/A4t_Kl5w_normal.jpg", "id" : 20249612, "verified" : false } @@ -421,7 +421,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "RebeccaSlatkin", "protected" : false, "id_str" : "20249612", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/798601813259915264\/TZyUWpiE_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1049146786873593856\/A4t_Kl5w_normal.jpg", "id" : 20249612, "verified" : false } @@ -715,7 +715,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -860,7 +860,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Ivan Morgillo", + "name" : "Ivan Morgillo \uD83D\uDC15\uD83D\uDCBB\uD83C\uDF54 \u2694\uFE0F", "screen_name" : "hamen", "indices" : [ 3, 9 ], "id_str" : "10712162", @@ -897,7 +897,7 @@ Grailbird.data.tweets_2016_07 = "id" : 756507905738809345, "created_at" : "2016-07-22 15:15:14 +0000", "user" : { - "name" : "Ivan Morgillo", + "name" : "Ivan Morgillo \uD83D\uDC15\uD83D\uDCBB\uD83C\uDF54 \u2694\uFE0F", "screen_name" : "hamen", "protected" : false, "id_str" : "10712162", @@ -927,7 +927,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "18137723", "id" : 18137723 }, { - "name" : "Pager Dave", + "name" : "Dave, \u00E0 Maison", "screen_name" : "Cliffehangers", "indices" : [ 16, 30 ], "id_str" : "2343043428", @@ -944,7 +944,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Pager Dave", + "name" : "Dave, \u00E0 Maison", "screen_name" : "Cliffehangers", "indices" : [ 1, 15 ], "id_str" : "2343043428", @@ -995,7 +995,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "18137723", "id" : 18137723 }, { - "name" : "Pager Dave", + "name" : "Dave, \u00E0 Maison", "screen_name" : "Cliffehangers", "indices" : [ 16, 30 ], "id_str" : "2343043428", @@ -1012,7 +1012,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Pager Dave", + "name" : "Dave, \u00E0 Maison", "screen_name" : "Cliffehangers", "indices" : [ 1, 15 ], "id_str" : "2343043428", @@ -1096,7 +1096,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1267,7 +1267,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "755085922408861696", "text" : "RT @merowing_: A lot of cool things I built for the community or in my own apps would be impossible to do if this happens. https:\/\/t.co\/KIP\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1289,7 +1289,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "merowing_", "protected" : false, "id_str" : "289246577", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619395184082714624\/oTl1W51O_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1036876946448232449\/yqhZsnBS_normal.jpg", "id" : 289246577, "verified" : true } @@ -1323,7 +1323,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "755072947065237504", "text" : "RT @jamesthomson: So, I think I figured it out! viewWillTransitionToSize in widget is initially getting called with the screen size causing\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1340,7 +1340,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050713686229360641\/M7Kszw-a_normal.jpg", "id" : 14169916, "verified" : false } @@ -1374,7 +1374,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "755071569756499968", "text" : "RT @jamesthomson: My best guess at the moment is that the cost of a UIView is a lot higher on iOS 10 vs 9, and that\u2019s why I\u2019m hitting the l\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1391,7 +1391,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050713686229360641\/M7Kszw-a_normal.jpg", "id" : 14169916, "verified" : false } @@ -1425,7 +1425,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "755071513049505793", "text" : "RT @jamesthomson: So, forget the last tweet - it looks like available memory might actually higher on iOS 10, even with the higher base res\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1442,7 +1442,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050713686229360641\/M7Kszw-a_normal.jpg", "id" : 14169916, "verified" : false } @@ -1524,7 +1524,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "jamesthomson", "protected" : false, "id_str" : "14169916", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/881251728292761600\/9GemFPkX_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050713686229360641\/M7Kszw-a_normal.jpg", "id" : 14169916, "verified" : false } @@ -1596,10 +1596,10 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1632,7 +1632,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1662,7 +1662,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1689,7 +1689,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1749,7 +1749,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jim Rutherford", @@ -1785,7 +1785,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1815,7 +1815,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1850,7 +1850,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "ThinkGeek", @@ -1898,7 +1898,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "753997246346072065", "text" : "RT @thinkgeek: Shout out to the Sams. Go give yours a hug! https:\/\/t.co\/remFf5ge1V", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/sproutsocial.com\" rel=\"nofollow\"\u003ESprout Social\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003ESprout Social\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1963,7 +1963,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "J Wynia", @@ -1996,7 +1996,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "J Wynia", @@ -2005,11 +2005,11 @@ Grailbird.data.tweets_2016_07 = "id_str" : "45653", "id" : 45653 }, { - "name" : "paolo f.", + "name" : "hxwk", "screen_name" : "0x00A", "indices" : [ 8, 14 ], - "id_str" : "95938827", - "id" : 95938827 + "id_str" : "1032640982431539200", + "id" : 1032640982431539200 }, { "name" : "Kevin Gisi", "screen_name" : "cheerskevin", @@ -2041,7 +2041,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2068,14 +2068,14 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "paolo f.", + "name" : "hxwk", "screen_name" : "0x00A", "indices" : [ 1, 7 ], - "id_str" : "95938827", - "id" : 95938827 + "id_str" : "1032640982431539200", + "id" : 1032640982431539200 } ], "media" : [ ], "hashtags" : [ ], @@ -2089,7 +2089,7 @@ Grailbird.data.tweets_2016_07 = "id" : 753990408355483648, "in_reply_to_status_id" : 753990077743763457, "created_at" : "2016-07-15 16:31:36 +0000", - "in_reply_to_screen_name" : "0x00A", + "in_reply_to_screen_name" : "hxoht", "in_reply_to_user_id_str" : "95938827", "user" : { "name" : "Sami Samhuri", @@ -2101,14 +2101,14 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "paolo f.", + "name" : "hxwk", "screen_name" : "0x00A", "indices" : [ 3, 9 ], - "id_str" : "95938827", - "id" : 95938827 + "id_str" : "1032640982431539200", + "id" : 1032640982431539200 }, { "name" : "Sami Samhuri", "screen_name" : "_sjs", @@ -2149,10 +2149,10 @@ Grailbird.data.tweets_2016_07 = "in_reply_to_user_id_str" : "4777951", "user" : { "name" : "paolo f.", - "screen_name" : "0x00A", + "screen_name" : "hxoht", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/936582635010314240\/Mf7nJiWc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1048105602029944832\/8gWKHraT_normal.jpg", "id" : 95938827, "verified" : false } @@ -2169,7 +2169,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2196,7 +2196,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2221,7 +2221,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "indices" : [ 3, 7 ], "id_str" : "12712742", @@ -2258,11 +2258,11 @@ Grailbird.data.tweets_2016_07 = "id" : 753851945014538240, "created_at" : "2016-07-15 07:21:24 +0000", "user" : { - "name" : "Zach Carter", + "name" : "zach carter", "screen_name" : "zii", "protected" : false, "id_str" : "12712742", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/982615078200426497\/njD6-6iU_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1040277390625140741\/iT3Jsv3j_normal.jpg", "id" : 12712742, "verified" : false } @@ -2279,7 +2279,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2309,7 +2309,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2331,7 +2331,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2383,7 +2383,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 3, 16 ], "id_str" : "11973362", @@ -2427,11 +2427,11 @@ Grailbird.data.tweets_2016_07 = "in_reply_to_screen_name" : "_sjs", "in_reply_to_user_id_str" : "4777951", "user" : { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "protected" : false, "id_str" : "11973362", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/872004130826362881\/9RRxQHYL_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1032497574488420353\/y7sRwlhw_normal.jpg", "id" : 11973362, "verified" : false } @@ -2484,7 +2484,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 1, 14 ], "id_str" : "11973362", @@ -2517,7 +2517,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 1, 14 ], "id_str" : "11973362", @@ -2688,11 +2688,11 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "paolo f.", + "name" : "hxwk", "screen_name" : "0x00A", "indices" : [ 3, 9 ], - "id_str" : "95938827", - "id" : 95938827 + "id_str" : "1032640982431539200", + "id" : 1032640982431539200 } ], "media" : [ ], "hashtags" : [ ], @@ -2726,10 +2726,10 @@ Grailbird.data.tweets_2016_07 = "created_at" : "2016-07-09 16:43:39 +0000", "user" : { "name" : "paolo f.", - "screen_name" : "0x00A", + "screen_name" : "hxoht", "protected" : false, "id_str" : "95938827", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/936582635010314240\/Mf7nJiWc_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1048105602029944832\/8gWKHraT_normal.jpg", "id" : 95938827, "verified" : false } @@ -2749,7 +2749,7 @@ Grailbird.data.tweets_2016_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 3, 14 ], "id_str" : "894911", @@ -2763,7 +2763,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "751788896954966021", "text" : "RT @JimRoepcke: It\u2019s great to see more people talking about the benefits of clean iOS app architecture and the pitfalls with segues. https:\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2781,7 +2781,7 @@ Grailbird.data.tweets_2016_07 = "id" : 751620467287429120, "created_at" : "2016-07-09 03:34:18 +0000", "user" : { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "protected" : true, "id_str" : "894911", @@ -2824,7 +2824,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "751788344959315968", "text" : "RT @vfxguynz: \u201Ca view controller can be perceived as just a view\u201D https:\/\/t.co\/Vc9uksW5PT", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2846,7 +2846,7 @@ Grailbird.data.tweets_2016_07 = "screen_name" : "wtsnz", "protected" : false, "id_str" : "28287202", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/968339360486653952\/51L2dQiP_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1004164187981926400\/w7CTTZzA_normal.jpg", "id" : 28287202, "verified" : false } @@ -3217,7 +3217,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3247,7 +3247,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Peter Steinberger", @@ -3307,7 +3307,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3416,7 +3416,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Krzysztof Zab\u0142ocki", @@ -3464,7 +3464,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "749332912038752256", "text" : "RT @wwwtxt: Who else is on the net this summer? \u262F93JUN", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3548,7 +3548,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "749302762962161664", "text" : "RT @acorscadden: @_sjs wow\u2026and I have trouble with Xcode project files on a project with 2 devs", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -3835,7 +3835,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3862,7 +3862,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Victoria Police", @@ -4126,7 +4126,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "749004881084559361", "text" : "RT @stevemoseley: Folks, please don\u2019t do this:\n\n[[[UIDevice currentDevice] systemVersion] substringToIndex:1]", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -4383,7 +4383,7 @@ Grailbird.data.tweets_2016_07 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -4453,7 +4453,7 @@ Grailbird.data.tweets_2016_07 = "id_str" : "748893650860412928", "text" : "RT @acorscadden: apfs troll? \u2026copy of a friends entire hdd in some random folder\u2026they\u2019ll now mysteriously use up space at twice the rate as\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2016_08.js b/public/tweets/data/js/tweets/2016_08.js index df64295..442af4e 100755 --- a/public/tweets/data/js/tweets/2016_08.js +++ b/public/tweets/data/js/tweets/2016_08.js @@ -54,7 +54,7 @@ Grailbird.data.tweets_2016_08 = "id_str" : "770662503487418368", "text" : "RT @Catfish_Man: The fact that turning it off and then turning it on again works is because most bugs are state related", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -352,7 +352,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -396,7 +396,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -423,7 +423,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -455,7 +455,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -477,7 +477,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -499,7 +499,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -666,7 +666,7 @@ Grailbird.data.tweets_2016_08 = "screen_name" : "antimatter15", "protected" : false, "id_str" : "15407883", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1052311489\/penguin-chick2_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1046343588722835457\/c6fsjgot_normal.jpg", "id" : 15407883, "verified" : false } @@ -934,7 +934,7 @@ Grailbird.data.tweets_2016_08 = "id_str" : "766323337773527040", "text" : "RT @_sjs: Friends don\u2019t let friends build Hackintoshes.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1165,7 +1165,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Shit SO says", @@ -1549,7 +1549,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1576,7 +1576,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1685,7 +1685,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matt Galloway", @@ -1724,7 +1724,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -1850,7 +1850,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -1883,7 +1883,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "snarfmason", @@ -2193,7 +2193,7 @@ Grailbird.data.tweets_2016_08 = "id_str" : "762416984654880769", "text" : "RT @1SecondEveryday: We'd like to welcome our newest team member, Sami Samhuri. He's the one with the maple leaf shirt. GO \uD83C\uDDE8\uD83C\uDDE6 and @_sjs! h\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -2342,7 +2342,7 @@ Grailbird.data.tweets_2016_08 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Krzysztof Zab\u0142ocki", diff --git a/public/tweets/data/js/tweets/2016_09.js b/public/tweets/data/js/tweets/2016_09.js index 378578d..c86ffe0 100755 --- a/public/tweets/data/js/tweets/2016_09.js +++ b/public/tweets/data/js/tweets/2016_09.js @@ -17,7 +17,7 @@ Grailbird.data.tweets_2016_09 = "id_str" : "782054368459706369", "text" : "RT @Catfish_Man: Two people were excited to learn about this tonight, so tweeting about it again: native Swift KVC-style reflection: https:\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -90,7 +90,7 @@ Grailbird.data.tweets_2016_09 = "screen_name" : "schoneck", "protected" : false, "id_str" : "236151665", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/846786311902023682\/V2CVFol1_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1049728076995805184\/xdQ6etUC_normal.jpg", "id" : 236151665, "verified" : false } @@ -107,7 +107,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -234,7 +234,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Tsai", @@ -267,7 +267,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Tsai", @@ -295,7 +295,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -327,7 +327,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -360,7 +360,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -387,7 +387,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -424,7 +424,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -504,7 +504,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -526,7 +526,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -679,7 +679,7 @@ Grailbird.data.tweets_2016_09 = "id_str" : "780902652146176001", "text" : "RT @acorscadden: @_sjs I turn on my monitors while my watch unlocks my computer.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Sami Samhuri", @@ -724,7 +724,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -746,7 +746,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "David Holt", @@ -830,7 +830,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -852,7 +852,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -980,7 +980,7 @@ Grailbird.data.tweets_2016_09 = "screen_name" : "FiloSottile", "protected" : false, "id_str" : "51049452", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/796495993487302656\/K6rX3ZSn_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1028703543174225920\/3cm3bMWC_normal.jpg", "id" : 51049452, "verified" : true } @@ -1126,7 +1126,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rhythmic Fistman", @@ -1529,7 +1529,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -1562,7 +1562,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1584,7 +1584,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -1623,7 +1623,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1650,7 +1650,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1732,7 +1732,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Didats Triadi", @@ -1765,7 +1765,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Didats Triadi", @@ -1798,7 +1798,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1825,7 +1825,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "\uD835\uDD21\uD835\uDD22\uD835\uDD22\uD835\uDD27\uD835\uDD22", @@ -1834,7 +1834,7 @@ Grailbird.data.tweets_2016_09 = "id_str" : "3271", "id" : 3271 }, { - "name" : "Leonty Deriglazov", + "name" : "Leon Deriglazov", "screen_name" : "Leontiy", "indices" : [ 7, 15 ], "id_str" : "14305203", @@ -1886,7 +1886,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1908,7 +1908,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1933,7 +1933,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Squeezer of Cows", + "name" : "Zach Waldowski", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -2064,7 +2064,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Squeezer of Cows", + "name" : "Zach Waldowski", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -2094,7 +2094,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -2111,7 +2111,7 @@ Grailbird.data.tweets_2016_09 = "id_str" : "776523059452792832", "text" : "RT @chockenberry: So many backend developers are going to be learning about color management in the coming months.\n\nFor example: https:\/\/t.\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2155,7 +2155,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Craig Hockenberry", @@ -2172,7 +2172,7 @@ Grailbird.data.tweets_2016_09 = "id_str" : "776523045242408960", "text" : "RT @chockenberry: Starting tomorrow:\n\n1) \u201COMFG these iPhone 7 pics look so great!\u201D\n2) Post to Twitter\n3) ???\n\nThat\u2019s when you realize color\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2237,57 +2237,6 @@ Grailbird.data.tweets_2016_09 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Squeezer of Cows", - "screen_name" : "zwaldowski", - "indices" : [ 3, 14 ], - "id_str" : "18553922", - "id" : 18553922 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "776439700860968960", - "text" : "RT @zwaldowski: If I were in charge of surveying people at Apple I\u2019d ask questions like \u201CHow often do you use the screen?\u201D just to fuck wit\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "776434568912134144", - "text" : "If I were in charge of surveying people at Apple I\u2019d ask questions like \u201CHow often do you use the screen?\u201D just to fuck with people.", - "id" : 776434568912134144, - "created_at" : "2016-09-15 14:56:41 +0000", - "user" : { - "name" : "Squeezer of Cows", - "screen_name" : "zwaldowski", - "protected" : false, - "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/931711648661954560\/Js14N7wp_normal.jpg", - "id" : 18553922, - "verified" : false - } - }, - "id" : 776439700860968960, - "created_at" : "2016-09-15 15:17:04 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { @@ -2319,7 +2268,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2352,7 +2301,7 @@ Grailbird.data.tweets_2016_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -2448,7 +2397,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2633,7 +2582,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2660,7 +2609,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2938,7 +2887,7 @@ Grailbird.data.tweets_2016_09 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2016_10.js b/public/tweets/data/js/tweets/2016_10.js index fefe894..9a76882 100755 --- a/public/tweets/data/js/tweets/2016_10.js +++ b/public/tweets/data/js/tweets/2016_10.js @@ -161,10 +161,10 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -200,7 +200,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Rene Ritchie", @@ -233,7 +233,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Tim Bray", @@ -300,7 +300,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -333,7 +333,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Squeezer of Cows", + "name" : "Zach Waldowski", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -365,113 +365,6 @@ Grailbird.data.tweets_2016_10 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Squeezer of Cows", - "screen_name" : "zwaldowski", - "indices" : [ 3, 14 ], - "id_str" : "18553922", - "id" : 18553922 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "792802309319237632", - "text" : "RT @zwaldowski: Likewise, a post from the Grubers of the world asserting how good do-anything ports would be. How would you do that without\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "in_reply_to_status_id_str" : "792791877896564736", - "geo" : { }, - "id_str" : "792792284349759491", - "in_reply_to_user_id" : 18553922, - "text" : "Likewise, a post from the Grubers of the world asserting how good do-anything ports would be. How would you do that without dongles? Magic?", - "id" : 792792284349759491, - "in_reply_to_status_id" : 792791877896564736, - "created_at" : "2016-10-30 18:16:24 +0000", - "in_reply_to_screen_name" : "zwaldowski", - "in_reply_to_user_id_str" : "18553922", - "user" : { - "name" : "Squeezer of Cows", - "screen_name" : "zwaldowski", - "protected" : false, - "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/931711648661954560\/Js14N7wp_normal.jpg", - "id" : 18553922, - "verified" : false - } - }, - "id" : 792802309319237632, - "created_at" : "2016-10-30 18:56:14 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Squeezer of Cows", - "screen_name" : "zwaldowski", - "indices" : [ 3, 14 ], - "id_str" : "18553922", - "id" : 18553922 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "792802279447420929", - "text" : "RT @zwaldowski: The current furor and theme of \u201CI didn't ask for this\u201D makes me think tech people can't abide the implications of the thing\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "792791499138301952", - "text" : "The current furor and theme of \u201CI didn't ask for this\u201D makes me think tech people can't abide the implications of the things they DO ask for", - "id" : 792791499138301952, - "created_at" : "2016-10-30 18:13:17 +0000", - "user" : { - "name" : "Squeezer of Cows", - "screen_name" : "zwaldowski", - "protected" : false, - "id_str" : "18553922", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/931711648661954560\/Js14N7wp_normal.jpg", - "id" : 18553922, - "verified" : false - } - }, - "id" : 792802279447420929, - "created_at" : "2016-10-30 18:56:07 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { @@ -507,7 +400,7 @@ Grailbird.data.tweets_2016_10 = "screen_name" : "tapbot_paul", "protected" : false, "id_str" : "18247541", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849243635178778624\/JXnBOvr__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996375435234570240\/AobDpgxZ_normal.jpg", "id" : 18247541, "verified" : false } @@ -1066,7 +959,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1143,7 +1036,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1293,10 +1186,10 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1467,7 +1360,7 @@ Grailbird.data.tweets_2016_10 = "id_str" : "385193", "id" : 385193 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 22, 33 ], "id_str" : "894911", @@ -1819,7 +1712,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kevin Gisi", @@ -1857,7 +1750,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1962,7 +1855,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1995,7 +1888,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -2025,10 +1918,10 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -2058,10 +1951,10 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -2094,7 +1987,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -2127,7 +2020,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Clemens Vasters \uD83C\uDDEA\uD83C\uDDFA\u2601\uD83D\uDCE8", + "name" : "Clemens Vasters \uD83C\uDDEA\uD83C\uDDFA\u2601\uD83D\uDCE8, Messenger", "screen_name" : "clemensv", "indices" : [ 3, 12 ], "id_str" : "14091119", @@ -2164,7 +2057,7 @@ Grailbird.data.tweets_2016_10 = "id" : 787677713251332096, "created_at" : "2016-10-16 15:32:55 +0000", "user" : { - "name" : "Clemens Vasters \uD83C\uDDEA\uD83C\uDDFA\u2601\uD83D\uDCE8", + "name" : "Clemens Vasters \uD83C\uDDEA\uD83C\uDDFA\u2601\uD83D\uDCE8, Messenger", "screen_name" : "clemensv", "protected" : false, "id_str" : "14091119", @@ -2276,7 +2169,7 @@ Grailbird.data.tweets_2016_10 = "id_str" : "14136484", "id" : 14136484 }, { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 13, 24 ], "id_str" : "894911", @@ -2372,7 +2265,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -2405,7 +2298,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -2438,7 +2331,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -2471,7 +2364,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -2504,7 +2397,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -2608,7 +2501,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -2630,7 +2523,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2688,7 +2581,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Cocoanetics \uF8FF", @@ -3037,7 +2930,7 @@ Grailbird.data.tweets_2016_10 = "id_str" : "785649267708825600", "text" : "RT @tapbot_paul: Apple just updated App Store Review Guidelines. Looks like all future communications will be done via Snapchat.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3059,7 +2952,7 @@ Grailbird.data.tweets_2016_10 = "screen_name" : "tapbot_paul", "protected" : false, "id_str" : "18247541", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/849243635178778624\/JXnBOvr__normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996375435234570240\/AobDpgxZ_normal.jpg", "id" : 18247541, "verified" : false } @@ -3249,57 +3142,6 @@ Grailbird.data.tweets_2016_10 = "id" : 4777951, "verified" : false } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Brent Simmons", - "screen_name" : "brentsimmons", - "indices" : [ 3, 16 ], - "id_str" : "652293", - "id" : 652293 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "784231148671029248", - "text" : "RT @brentsimmons: Apple is within their rights to run a Kafkaesque bureaucracy. I just don\u2019t know why they want to.", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "784087254004183040", - "text" : "Apple is within their rights to run a Kafkaesque bureaucracy. I just don\u2019t know why they want to.", - "id" : 784087254004183040, - "created_at" : "2016-10-06 17:45:43 +0000", - "user" : { - "name" : "Brent Simmons", - "screen_name" : "brentsimmons", - "protected" : false, - "id_str" : "652293", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1608701783\/GoldenGardens_Cropped_normal.png", - "id" : 652293, - "verified" : false - } - }, - "id" : 784231148671029248, - "created_at" : "2016-10-07 03:17:30 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } }, { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { @@ -3487,13 +3329,13 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Eric Meltzer", + "name" : "Eric\/", "screen_name" : "wheatpond", "indices" : [ 0, 10 ], "id_str" : "341874816", "id" : 341874816 }, { - "name" : "Craig Mod", + "name" : "Craig \"subscribe to my mailing list\" Mod", "screen_name" : "craigmod", "indices" : [ 11, 20 ], "id_str" : "1835951", @@ -3545,7 +3387,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -3589,7 +3431,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Nori", @@ -3622,7 +3464,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Nori", @@ -3655,7 +3497,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Nori", @@ -3688,7 +3530,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Nathan", @@ -3771,7 +3613,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Kevin Gisi", @@ -3804,7 +3646,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Nori", @@ -3837,7 +3679,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Marco Nori", @@ -3873,7 +3715,7 @@ Grailbird.data.tweets_2016_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "@herval", + "name" : "\/\/ TODO define a new name", "screen_name" : "herval", "indices" : [ 0, 7 ], "id_str" : "5498732", @@ -4395,7 +4237,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jesper L. Andersen", @@ -4463,7 +4305,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Jesper L. Andersen", @@ -4496,7 +4338,7 @@ Grailbird.data.tweets_2016_10 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2016_11.js b/public/tweets/data/js/tweets/2016_11.js index 38a104d..3138b74 100755 --- a/public/tweets/data/js/tweets/2016_11.js +++ b/public/tweets/data/js/tweets/2016_11.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -36,7 +36,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -69,7 +69,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -201,7 +201,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -234,7 +234,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -272,63 +272,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jeff, denizen of the pond", - "screen_name" : "jnadeau", - "indices" : [ 3, 11 ], - "id_str" : "2741981", - "id" : 2741981 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "799822666739765248", - "text" : "RT @jnadeau: Ugh.\n\nPSA: \u201Csecure text input\u201D is way more than just drawing bullets on screen\u2026 don\u2019t try to fake it, use NSSecureTextField ht\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 124, 147 ], - "url" : "https:\/\/t.co\/JzsZPEN9TO", - "expanded_url" : "https:\/\/twitter.com\/luke_dot_js\/status\/799271787133403136", - "display_url" : "twitter.com\/luke_dot_js\/st\u2026" - } ] - }, - "geo" : { }, - "id_str" : "799769496068100096", - "text" : "Ugh.\n\nPSA: \u201Csecure text input\u201D is way more than just drawing bullets on screen\u2026 don\u2019t try to fake it, use NSSecureTextField https:\/\/t.co\/JzsZPEN9TO", - "id" : 799769496068100096, - "created_at" : "2016-11-19 00:21:21 +0000", - "user" : { - "name" : "jeff, denizen of the pond", - "screen_name" : "jnadeau", - "protected" : false, - "id_str" : "2741981", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/867891485915664384\/IXsBQxbF_normal.jpg", - "id" : 2741981, - "verified" : false - } - }, - "id" : 799822666739765248, - "created_at" : "2016-11-19 03:52:38 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Chai Guy \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08 \u24CB", + "name" : "Chai Guy \uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08 \uD83C\uDF31 \uD83C\uDF3F \u24CB", "screen_name" : "yaccin", "indices" : [ 0, 7 ], "id_str" : "23505101", @@ -373,7 +317,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -572,7 +516,7 @@ Grailbird.data.tweets_2016_11 = "id_str" : "2573880420", "id" : 2573880420 }, { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 23, 33 ], "id_str" : "22406953", @@ -629,10 +573,10 @@ Grailbird.data.tweets_2016_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -662,10 +606,10 @@ Grailbird.data.tweets_2016_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -698,7 +642,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -845,7 +789,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -947,7 +891,7 @@ Grailbird.data.tweets_2016_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Welcome to Macintosh", @@ -1011,7 +955,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Kelsey Q kq", + "name" : "HEY KELS!", "screen_name" : "ts_kq", "indices" : [ 0, 6 ], "id_str" : "3116467667", @@ -1218,7 +1162,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -1251,7 +1195,7 @@ Grailbird.data.tweets_2016_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2016_12.js b/public/tweets/data/js/tweets/2016_12.js index c9f4a95..b0229f1 100755 --- a/public/tweets/data/js/tweets/2016_12.js +++ b/public/tweets/data/js/tweets/2016_12.js @@ -97,7 +97,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Product Hunt", + "name" : "Product Haunt \uD83D\uDC7B", "screen_name" : "ProductHunt", "indices" : [ 3, 15 ], "id_str" : "2208027565", @@ -196,11 +196,11 @@ Grailbird.data.tweets_2016_12 = "id" : 814878748386336768, "created_at" : "2016-12-30 17:00:07 +0000", "user" : { - "name" : "Product Hunt", + "name" : "Product Haunt \uD83D\uDC7B", "screen_name" : "ProductHunt", "protected" : false, "id_str" : "2208027565", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/939537169647132672\/8cevfMA8_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1050833661552144384\/hpSvrkLC_normal.jpg", "id" : 2208027565, "verified" : true } @@ -614,7 +614,7 @@ Grailbird.data.tweets_2016_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Michael Tsai", @@ -887,7 +887,7 @@ Grailbird.data.tweets_2016_12 = "id_str" : "810003468605800448", "text" : "RT @evadne: Good UI detail: in Cocoa menus the keyboard shortcuts are not right-justified; they are aligned by \u2318. https:\/\/t.co\/ctj4UAddQA", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -1047,7 +1047,7 @@ Grailbird.data.tweets_2016_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -1080,7 +1080,7 @@ Grailbird.data.tweets_2016_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Adrian Corscadden", @@ -1116,7 +1116,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1149,7 +1149,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1179,7 +1179,7 @@ Grailbird.data.tweets_2016_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -1237,7 +1237,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jeff, denizen of the pond", + "name" : "Jeff Nadeau \uD83C\uDF83", "screen_name" : "jnadeau", "indices" : [ 0, 8 ], "id_str" : "2741981", @@ -1600,7 +1600,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -1790,7 +1790,7 @@ Grailbird.data.tweets_2016_12 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Mario Fusco", + "name" : "Mario Fusco \uD83C\uDDFA\uD83C\uDDF3\uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "mariofusco", "indices" : [ 3, 14 ], "id_str" : "142589904", @@ -1817,7 +1817,7 @@ Grailbird.data.tweets_2016_12 = "id" : 806937903733608448, "created_at" : "2016-12-08 19:06:03 +0000", "user" : { - "name" : "Mario Fusco", + "name" : "Mario Fusco \uD83C\uDDFA\uD83C\uDDF3\uD83C\uDDEA\uD83C\uDDFA", "screen_name" : "mariofusco", "protected" : false, "id_str" : "142589904", @@ -1865,7 +1865,7 @@ Grailbird.data.tweets_2016_12 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2017_01.js b/public/tweets/data/js/tweets/2017_01.js index 6ea1231..52e56f6 100755 --- a/public/tweets/data/js/tweets/2017_01.js +++ b/public/tweets/data/js/tweets/2017_01.js @@ -3,7 +3,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jeffrey Paul \uD83E\uDD94", + "name" : "twiterated prisoner\u2019s dilemma", "screen_name" : "sneakdotberlin", "indices" : [ 0, 15 ], "id_str" : "14270439", @@ -74,7 +74,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "your friend alex", + "name" : "purveyor of happiness", "screen_name" : "omiotaco", "indices" : [ 0, 9 ], "id_str" : "445150610", @@ -168,10 +168,10 @@ Grailbird.data.tweets_2017_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -201,7 +201,7 @@ Grailbird.data.tweets_2017_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -259,7 +259,7 @@ Grailbird.data.tweets_2017_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -281,7 +281,7 @@ Grailbird.data.tweets_2017_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -308,7 +308,7 @@ Grailbird.data.tweets_2017_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Greg Pierce", @@ -325,7 +325,7 @@ Grailbird.data.tweets_2017_01 = "id_str" : "823997067609587713", "text" : "RT @agiletortoise: \u2605\u2606\u2606\u2606\u2606 Selfish developer never replies to my reviews.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -359,10 +359,10 @@ Grailbird.data.tweets_2017_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "indices" : [ 3, 9 ], "id_str" : "1919231", @@ -432,7 +432,7 @@ Grailbird.data.tweets_2017_01 = "id" : 823964312368599040, "created_at" : "2017-01-24 18:42:55 +0000", "user" : { - "name" : "Cabel Maxfield Sasser", + "name" : "Cabel", "screen_name" : "cabel", "protected" : false, "id_str" : "1919231", @@ -453,7 +453,7 @@ Grailbird.data.tweets_2017_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -475,7 +475,7 @@ Grailbird.data.tweets_2017_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -788,7 +788,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", + "name" : "\uD83D\uDC8E not Jen or Jem", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -821,7 +821,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", + "name" : "\uD83D\uDC8E not Jen or Jem", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -854,7 +854,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", + "name" : "\uD83D\uDC8E not Jen or Jem", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -981,7 +981,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83D\uDD95\uD83E\uDDD0\uD83D\uDD95", + "name" : "\uD83D\uDC8E not Jen or Jem", "screen_name" : "gembarrett", "indices" : [ 0, 11 ], "id_str" : "43727347", @@ -1458,7 +1458,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Squeezer of Cows", + "name" : "Zach Waldowski", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -1629,7 +1629,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -1662,7 +1662,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -1842,7 +1842,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Joe Groff", + "name" : "reabstraction thunk golem", "screen_name" : "jckarter", "indices" : [ 0, 9 ], "id_str" : "18559099", @@ -2004,7 +2004,7 @@ Grailbird.data.tweets_2017_01 = "id_str" : "816696277794627584", "text" : "RT @ThingsWork: This is how computers generate curved lines using 5 points https:\/\/t.co\/J02JqWvEQb", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003EBuffer\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -2117,7 +2117,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Squeezer of Cows", + "name" : "Zach Waldowski", "screen_name" : "zwaldowski", "indices" : [ 0, 11 ], "id_str" : "18553922", @@ -2150,7 +2150,7 @@ Grailbird.data.tweets_2017_01 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "teaneedz", + "name" : "teaneedz \uD83E\uDD51", "screen_name" : "teaneedz", "indices" : [ 0, 9 ], "id_str" : "37215250", diff --git a/public/tweets/data/js/tweets/2017_03.js b/public/tweets/data/js/tweets/2017_03.js index f9b338d..d3d92c3 100755 --- a/public/tweets/data/js/tweets/2017_03.js +++ b/public/tweets/data/js/tweets/2017_03.js @@ -143,7 +143,7 @@ Grailbird.data.tweets_2017_03 = "source" : "\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EiOS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 12, 23 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2017_04.js b/public/tweets/data/js/tweets/2017_04.js index 29f140a..f425886 100755 --- a/public/tweets/data/js/tweets/2017_04.js +++ b/public/tweets/data/js/tweets/2017_04.js @@ -142,7 +142,7 @@ Grailbird.data.tweets_2017_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "narwhal for reddit", @@ -170,7 +170,7 @@ Grailbird.data.tweets_2017_04 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Frank A. Krueger", @@ -267,7 +267,7 @@ Grailbird.data.tweets_2017_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", @@ -300,7 +300,7 @@ Grailbird.data.tweets_2017_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Joe Groff", + "name" : "reabstraction thunk golem", "screen_name" : "jckarter", "indices" : [ 3, 12 ], "id_str" : "18559099", @@ -327,11 +327,11 @@ Grailbird.data.tweets_2017_04 = "id" : 854540059197952000, "created_at" : "2017-04-19 03:40:01 +0000", "user" : { - "name" : "Joe Groff", + "name" : "reabstraction thunk golem", "screen_name" : "jckarter", "protected" : false, "id_str" : "18559099", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/977666852103995392\/JLjTHaRy_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1047539884141961216\/_VvMpnNX_normal.jpg", "id" : 18559099, "verified" : false } @@ -627,7 +627,7 @@ Grailbird.data.tweets_2017_04 = "id_str" : "1400951646", "id" : 1400951646 }, { - "name" : "Jesse Learmonth \u270C\uD83C\uDFFD\uFE0F", + "name" : "Jesse Learmonth \u270C\uD83C\uDFFD\uFE0F\uD83C\uDDE8\uD83C\uDDE6", "screen_name" : "jesselearmonth", "indices" : [ 10, 25 ], "id_str" : "16367713", diff --git a/public/tweets/data/js/tweets/2017_06.js b/public/tweets/data/js/tweets/2017_06.js index c1d934a..eb95814 100755 --- a/public/tweets/data/js/tweets/2017_06.js +++ b/public/tweets/data/js/tweets/2017_06.js @@ -78,7 +78,7 @@ Grailbird.data.tweets_2017_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -380,7 +380,7 @@ Grailbird.data.tweets_2017_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -402,7 +402,7 @@ Grailbird.data.tweets_2017_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -434,7 +434,7 @@ Grailbird.data.tweets_2017_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -461,7 +461,7 @@ Grailbird.data.tweets_2017_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -488,7 +488,7 @@ Grailbird.data.tweets_2017_06 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -550,7 +550,7 @@ Grailbird.data.tweets_2017_06 = "id_str" : "9088822", "id" : 9088822 }, { - "name" : "Squeezer of Cows", + "name" : "Zach Waldowski", "screen_name" : "zwaldowski", "indices" : [ 9, 20 ], "id_str" : "18553922", @@ -679,7 +679,7 @@ Grailbird.data.tweets_2017_06 = "id_str" : "873369828328787968", "text" : "RT @arekholko: TIL you can temporarily override User Defaults\u2019 values through \u201CArguments Passed on Launch\u201D. https:\/\/t.co\/myDddz550G", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -747,7 +747,7 @@ Grailbird.data.tweets_2017_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "John Feminella \u232C", + "name" : "\uD83C\uDF83 John Feminella \u23E3", "screen_name" : "jxxf", "indices" : [ 3, 8 ], "id_str" : "19463693", @@ -867,7 +867,7 @@ Grailbird.data.tweets_2017_06 = "id" : 871000661869154304, "created_at" : "2017-06-03 13:48:34 +0000", "user" : { - "name" : "John Feminella \u232C", + "name" : "\uD83C\uDF83 John Feminella \u23E3", "screen_name" : "jxxf", "protected" : false, "id_str" : "19463693", @@ -891,7 +891,7 @@ Grailbird.data.tweets_2017_06 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", diff --git a/public/tweets/data/js/tweets/2017_07.js b/public/tweets/data/js/tweets/2017_07.js index 8b407a3..69235c8 100755 --- a/public/tweets/data/js/tweets/2017_07.js +++ b/public/tweets/data/js/tweets/2017_07.js @@ -97,7 +97,7 @@ Grailbird.data.tweets_2017_07 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", diff --git a/public/tweets/data/js/tweets/2017_08.js b/public/tweets/data/js/tweets/2017_08.js index 62acdaa..cf8f459 100755 --- a/public/tweets/data/js/tweets/2017_08.js +++ b/public/tweets/data/js/tweets/2017_08.js @@ -108,7 +108,7 @@ Grailbird.data.tweets_2017_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -141,7 +141,7 @@ Grailbird.data.tweets_2017_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -174,7 +174,7 @@ Grailbird.data.tweets_2017_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -207,7 +207,7 @@ Grailbird.data.tweets_2017_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 0, 14 ], "id_str" : "29255412", @@ -273,7 +273,7 @@ Grailbird.data.tweets_2017_08 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "indices" : [ 3, 16 ], "id_str" : "1628814223", @@ -287,7 +287,7 @@ Grailbird.data.tweets_2017_08 = "id_str" : "897927398410334208", "text" : "RT @thenatekirby: Most people will never know how much work I\u2019ve put into making a view scroll well today. But I will.", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -300,7 +300,7 @@ Grailbird.data.tweets_2017_08 = "id" : 897912113578082304, "created_at" : "2017-08-16 20:05:04 +0000", "user" : { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "protected" : false, "id_str" : "1628814223", diff --git a/public/tweets/data/js/tweets/2017_09.js b/public/tweets/data/js/tweets/2017_09.js index 94f71fc..0747537 100755 --- a/public/tweets/data/js/tweets/2017_09.js +++ b/public/tweets/data/js/tweets/2017_09.js @@ -258,13 +258,13 @@ Grailbird.data.tweets_2017_09 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Norris", + "name" : "justnorris", "screen_name" : "justnorris", "indices" : [ 0, 11 ], "id_str" : "20395932", "id" : 20395932 }, { - "name" : "TJ Holowaychuk \uD83D\uDC25", + "name" : "TJ Holowaychuk \uD83D\uDE43", "screen_name" : "tjholowaychuk", "indices" : [ 12, 26 ], "id_str" : "29255412", diff --git a/public/tweets/data/js/tweets/2017_10.js b/public/tweets/data/js/tweets/2017_10.js index bf63a43..36fb37c 100755 --- a/public/tweets/data/js/tweets/2017_10.js +++ b/public/tweets/data/js/tweets/2017_10.js @@ -140,7 +140,7 @@ Grailbird.data.tweets_2017_10 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD835\uDD44\uD835\uDD52\uD835\uDD65\uD835\uDD65\uD835\uDD59\uD835\uDD5A\uD835\uDD52\uD835\uDD64", + "name" : "Matthias", "screen_name" : "arrizer", "indices" : [ 0, 8 ], "id_str" : "10752072", @@ -196,7 +196,7 @@ Grailbird.data.tweets_2017_10 = "id" : 914612876094038017, "in_reply_to_status_id" : 914586691838525440, "created_at" : "2017-10-01 22:07:57 +0000", - "in_reply_to_screen_name" : "Nazbolol", + "in_reply_to_screen_name" : "warsnortle", "in_reply_to_user_id_str" : "4846128982", "user" : { "name" : "Sami Samhuri", diff --git a/public/tweets/data/js/tweets/2017_11.js b/public/tweets/data/js/tweets/2017_11.js index eb3b8a3..2c19a49 100755 --- a/public/tweets/data/js/tweets/2017_11.js +++ b/public/tweets/data/js/tweets/2017_11.js @@ -9,7 +9,7 @@ Grailbird.data.tweets_2017_11 = "id_str" : "235707661", "id" : 235707661 }, { - "name" : "jessie frazelle", + "name" : "jessie frazelle \uD83D\uDC69\uD83C\uDFFC\u200D\uD83D\uDE80", "screen_name" : "jessfraz", "indices" : [ 13, 22 ], "id_str" : "285428413", @@ -81,7 +81,7 @@ Grailbird.data.tweets_2017_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "NSNateParser", + "name" : "Nate, but slightly spookier", "screen_name" : "thenatekirby", "indices" : [ 0, 13 ], "id_str" : "1628814223", @@ -147,7 +147,7 @@ Grailbird.data.tweets_2017_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jurie Horneman", + "name" : "Lurid Tortureman \uD83E\uDDDB\uD83C\uDFFB\u200D\u2642\uFE0F", "screen_name" : "jurieongames", "indices" : [ 0, 13 ], "id_str" : "18920834", @@ -180,7 +180,7 @@ Grailbird.data.tweets_2017_11 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Jurie Horneman", + "name" : "Lurid Tortureman", "screen_name" : "jurieongames", "indices" : [ 0, 13 ], "id_str" : "18920834", @@ -375,7 +375,7 @@ Grailbird.data.tweets_2017_11 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Accidental Tech Podcast", diff --git a/public/tweets/data/js/tweets/2018_01.js b/public/tweets/data/js/tweets/2018_01.js index 1dc6718..d147777 100755 --- a/public/tweets/data/js/tweets/2018_01.js +++ b/public/tweets/data/js/tweets/2018_01.js @@ -39,7 +39,7 @@ Grailbird.data.tweets_2018_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "EwaM", @@ -522,7 +522,7 @@ Grailbird.data.tweets_2018_01 = "screen_name" : "Cupcakes_n_Rap", "protected" : false, "id_str" : "146317151", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/986249395661402112\/mw_GVQWC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029938486718210049\/CZWoRBXU_normal.jpg", "id" : 146317151, "verified" : false } @@ -584,7 +584,7 @@ Grailbird.data.tweets_2018_01 = "screen_name" : "Cupcakes_n_Rap", "protected" : false, "id_str" : "146317151", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/986249395661402112\/mw_GVQWC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029938486718210049\/CZWoRBXU_normal.jpg", "id" : 146317151, "verified" : false } @@ -640,7 +640,7 @@ Grailbird.data.tweets_2018_01 = "screen_name" : "Cupcakes_n_Rap", "protected" : false, "id_str" : "146317151", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/986249395661402112\/mw_GVQWC_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1029938486718210049\/CZWoRBXU_normal.jpg", "id" : 146317151, "verified" : false } @@ -657,7 +657,7 @@ Grailbird.data.tweets_2018_01 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Alan", diff --git a/public/tweets/data/js/tweets/2018_02.js b/public/tweets/data/js/tweets/2018_02.js index 18e9e92..c796cbe 100755 --- a/public/tweets/data/js/tweets/2018_02.js +++ b/public/tweets/data/js/tweets/2018_02.js @@ -3,63 +3,7 @@ Grailbird.data.tweets_2018_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Will Strafach", - "screen_name" : "chronic", - "indices" : [ 3, 11 ], - "id_str" : "86315276", - "id" : 86315276 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "968367541893713920", - "text" : "RT @chronic: I am most curious about this one. iOS apps are generally not supposed to do much in the background, yet the packet tunnel prov\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 269, 292 ], - "url" : "https:\/\/t.co\/eJfuD1rkEu", - "expanded_url" : "https:\/\/twitter.com\/chronic\/status\/968255384401203200", - "display_url" : "twitter.com\/chronic\/status\u2026" - } ] - }, - "geo" : { }, - "id_str" : "968256765744775168", - "text" : "I am most curious about this one. iOS apps are generally not supposed to do much in the background, yet the packet tunnel provider creates a pretty big loophole in this restriction. I am surprised Apple is OK with it being utilized to perform uploads of tracking data. https:\/\/t.co\/eJfuD1rkEu", - "id" : 968256765744775168, - "created_at" : "2018-02-26 22:49:36 +0000", - "user" : { - "name" : "Will Strafach", - "screen_name" : "chronic", - "protected" : false, - "id_str" : "86315276", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000791789535\/2245bcbc880d6f21265bd912b0d15500_normal.jpeg", - "id" : 86315276, - "verified" : true - } - }, - "id" : 968367541893713920, - "created_at" : "2018-02-27 06:09:48 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Jim Roepcke", + "name" : "@JimRoepcke@mastadon.social", "screen_name" : "JimRoepcke", "indices" : [ 0, 11 ], "id_str" : "894911", @@ -201,7 +145,7 @@ Grailbird.data.tweets_2018_02 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Benjamin Borowski", + "name" : "Benjamin Boorowski \uD83D\uDC7B", "screen_name" : "typeoneerror", "indices" : [ 0, 13 ], "id_str" : "11973362", @@ -231,7 +175,7 @@ Grailbird.data.tweets_2018_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ { @@ -289,7 +233,7 @@ Grailbird.data.tweets_2018_02 = "verified" : false } }, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2018_03.js b/public/tweets/data/js/tweets/2018_03.js index d673475..c2b2fef 100755 --- a/public/tweets/data/js/tweets/2018_03.js +++ b/public/tweets/data/js/tweets/2018_03.js @@ -36,7 +36,7 @@ Grailbird.data.tweets_2018_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "jbr", + "name" : "register and vote!", "screen_name" : "jacobrothstein", "indices" : [ 0, 15 ], "id_str" : "27302287", @@ -137,7 +137,7 @@ Grailbird.data.tweets_2018_03 = "screen_name" : "josh_wingrove", "protected" : false, "id_str" : "164075542", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/955209380894519296\/tj563YJl_normal.jpg", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1040322666308067328\/6IjkZA69_normal.jpg", "id" : 164075542, "verified" : true } @@ -204,7 +204,7 @@ Grailbird.data.tweets_2018_03 = "id_str" : "973780157080260608", "text" : "RT @snarfmason: Reading @mattly on timezones was a nice reminder that time zones exist for a reason, concepts of time like \"noon\" are meani\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Matthew Lyon", @@ -279,68 +279,7 @@ Grailbird.data.tweets_2018_03 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "Will Strafach", - "screen_name" : "chronic", - "indices" : [ 3, 11 ], - "id_str" : "86315276", - "id" : 86315276 - } ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ ] - }, - "geo" : { }, - "id_str" : "971202944912666624", - "text" : "RT @chronic: random fun fact: I believe some of the binaries were code signed by Apple employee dev certs in that first build. one was a gu\u2026", - "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ ], - "media" : [ ], - "hashtags" : [ ], - "urls" : [ { - "indices" : [ 165, 188 ], - "url" : "https:\/\/t.co\/Vv0eNLI51D", - "expanded_url" : "http:\/\/mac.com", - "display_url" : "mac.com" - } ] - }, - "in_reply_to_status_id_str" : "971157315566161920", - "geo" : { }, - "id_str" : "971158111758241794", - "in_reply_to_user_id" : 86315276, - "text" : "random fun fact: I believe some of the binaries were code signed by Apple employee dev certs in that first build. one was a guy named Eric something. I saw it was a https:\/\/t.co\/Vv0eNLI51D address so added him on AIM and he blocked me.", - "id" : 971158111758241794, - "in_reply_to_status_id" : 971157315566161920, - "created_at" : "2018-03-06 22:58:31 +0000", - "in_reply_to_screen_name" : "chronic", - "in_reply_to_user_id_str" : "86315276", - "user" : { - "name" : "Will Strafach", - "screen_name" : "chronic", - "protected" : false, - "id_str" : "86315276", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/378800000791789535\/2245bcbc880d6f21265bd912b0d15500_normal.jpeg", - "id" : 86315276, - "verified" : true - } - }, - "id" : 971202944912666624, - "created_at" : "2018-03-07 01:56:40 +0000", - "user" : { - "name" : "Sami Samhuri", - "screen_name" : "_sjs", - "protected" : false, - "id_str" : "4777951", - "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", - "id" : 4777951, - "verified" : false - } -}, { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", - "entities" : { - "user_mentions" : [ { - "name" : "Patrick McCarron", + "name" : "Pat \"Trick-or-treat\" McCarron", "screen_name" : "McCarron", "indices" : [ 0, 9 ], "id_str" : "770391", @@ -449,7 +388,7 @@ Grailbird.data.tweets_2018_03 = "id_str" : "969728586318995456", "text" : "RT @_inside: \uD83E\uDD13 post alert: How I discovered Instagram's upcoming video calling feature on\u00A0iOS https:\/\/t.co\/Dpv2dfGCWk", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], diff --git a/public/tweets/data/js/tweets/2018_04.js b/public/tweets/data/js/tweets/2018_04.js index 9afd80c..0b61389 100755 --- a/public/tweets/data/js/tweets/2018_04.js +++ b/public/tweets/data/js/tweets/2018_04.js @@ -1,5 +1,5 @@ Grailbird.data.tweets_2018_04 = -[ { + [ { "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { @@ -62,7 +62,7 @@ Grailbird.data.tweets_2018_04 = "id_str" : "982511683561111552", "text" : "RT @MH3129: .@Twitter, I am blind and I rely on third-party apps like @Twitterrific and OpenTween because your website and iOS app are not\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"https:\/\/sourceforge.jp\/projects\/opentween\/\" rel=\"nofollow\"\u003EOpenTween\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/www.opentween.org\/\" rel=\"nofollow\"\u003EOpenTween\u003C\/a\u003E", "entities" : { "user_mentions" : [ { "name" : "Twitter", @@ -145,7 +145,7 @@ Grailbird.data.tweets_2018_04 = "id_str" : "982294566320525312", "text" : "RT @chockenberry: If you love your third-party Twitter app, I\u2019ve got some really shitty news for you: https:\/\/t.co\/W1C21QSnZW \n\n#BreakingMy\u2026", "retweeted_status" : { - "source" : "\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", + "source" : "\u003Ca href=\"https:\/\/twitterrific.com\/mac\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E", "entities" : { "user_mentions" : [ ], "media" : [ ], @@ -260,7 +260,7 @@ Grailbird.data.tweets_2018_04 = "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", "entities" : { "user_mentions" : [ { - "name" : "\uD83C\uDFC4\uD83C\uDF0E", + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", "screen_name" : "macatbook", "indices" : [ 0, 10 ], "id_str" : "22406953", diff --git a/public/tweets/data/js/tweets/2018_05.js b/public/tweets/data/js/tweets/2018_05.js new file mode 100755 index 0000000..276ba2a --- /dev/null +++ b/public/tweets/data/js/tweets/2018_05.js @@ -0,0 +1,236 @@ +Grailbird.data.tweets_2018_05 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Chris Eidhof", + "screen_name" : "chriseidhof", + "indices" : [ 0, 12 ], + "id_str" : "4295181", + "id" : 4295181 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1002157418170736640", + "geo" : { }, + "id_str" : "1002193955868430342", + "in_reply_to_user_id" : 4295181, + "text" : "@chriseidhof It\u2019s not your imagination! When you\u2019re making good food at home you realize that a lot of restaurants aren\u2019t actually _that_ good or special.", + "id" : 1002193955868430342, + "in_reply_to_status_id" : 1002157418170736640, + "created_at" : "2018-05-31 14:23:53 +0000", + "in_reply_to_screen_name" : "chriseidhof", + "in_reply_to_user_id_str" : "4295181", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Barisere Jonathan", + "screen_name" : "__Jonathanks", + "indices" : [ 3, 16 ], + "id_str" : "879793790936113152", + "id" : 879793790936113152 + }, { + "name" : "Reginald Braithwaite", + "screen_name" : "raganwald", + "indices" : [ 26, 36 ], + "id_str" : "18137723", + "id" : 18137723 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1001975449281552384", + "text" : "RT @__Jonathanks: Reading @raganwald's JavaScript Allonge, all was going fine and sweet until I got to the Y combinator. I just don't get i\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003ETwitter Lite\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Reginald Braithwaite", + "screen_name" : "raganwald", + "indices" : [ 8, 18 ], + "id_str" : "18137723", + "id" : 18137723 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1001077929458225152", + "text" : "Reading @raganwald's JavaScript Allonge, all was going fine and sweet until I got to the Y combinator. I just don't get it. I can't move on until I get it. I can't stop, I can't not stop.", + "id" : 1001077929458225152, + "created_at" : "2018-05-28 12:29:12 +0000", + "user" : { + "name" : "Barisere Jonathan", + "screen_name" : "__Jonathanks", + "protected" : false, + "id_str" : "879793790936113152", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/879797709003264000\/TtxwEmm3_normal.jpg", + "id" : 879793790936113152, + "verified" : false + } + }, + "id" : 1001975449281552384, + "created_at" : "2018-05-30 23:55:37 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter Cooper", + "screen_name" : "peterc", + "indices" : [ 0, 7 ], + "id_str" : "33493", + "id" : 33493 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "999588615083773952", + "geo" : { }, + "id_str" : "999660167158349824", + "in_reply_to_user_id" : 33493, + "text" : "@peterc Some places will need your PIN. Last year when I was in SF a restaurant kept telling me my cards were declined but the problem was they weren\u2019t having me enter my PIN. \uD83E\uDD26\uD83C\uDFFB\u200D\u2642\uFE0F", + "id" : 999660167158349824, + "in_reply_to_status_id" : 999588615083773952, + "created_at" : "2018-05-24 14:35:31 +0000", + "in_reply_to_screen_name" : "peterc", + "in_reply_to_user_id_str" : "33493", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Jeff Atwood", + "screen_name" : "codinghorror", + "indices" : [ 0, 13 ], + "id_str" : "5637652", + "id" : 5637652 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "997489650167148544", + "geo" : { }, + "id_str" : "997489944410181634", + "in_reply_to_user_id" : 4777951, + "text" : "@codinghorror Twitter doesn\u2019t make sense without 3rd party apps, for me. It\u2019s amazing how bad they\u2019ve been at stewarding their own damn platform \uD83D\uDE22", + "id" : 997489944410181634, + "in_reply_to_status_id" : 997489650167148544, + "created_at" : "2018-05-18 14:51:49 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Jeff Atwood", + "screen_name" : "codinghorror", + "indices" : [ 0, 13 ], + "id_str" : "5637652", + "id" : 5637652 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "997207153214554113", + "geo" : { }, + "id_str" : "997489650167148544", + "in_reply_to_user_id" : 5637652, + "text" : "@codinghorror I wouldn\u2019t have started using it without a 3rd party client. I signed up in 2007 and didn\u2019t use it until I got an iPhone and Tweetie in 2009\/2010.\n\nIf 3rd party clients disappear I\u2019ll stop using Twitter because their own apps are ... not good.", + "id" : 997489650167148544, + "in_reply_to_status_id" : 997207153214554113, + "created_at" : "2018-05-18 14:50:39 +0000", + "in_reply_to_screen_name" : "codinghorror", + "in_reply_to_user_id_str" : "5637652", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Cabel", + "screen_name" : "cabel", + "indices" : [ 0, 6 ], + "id_str" : "1919231", + "id" : 1919231 + }, { + "name" : "Steve Troughton-Smith", + "screen_name" : "stroughtonsmith", + "indices" : [ 7, 23 ], + "id_str" : "15267898", + "id" : 15267898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "991879537414696960", + "geo" : { }, + "id_str" : "992049215214768128", + "in_reply_to_user_id" : 1919231, + "text" : "@cabel @stroughtonsmith Don\u2019t feed wild animals \uD83D\uDE3F\uD83E\uDD26\uD83C\uDFFB\u200D\u2640\uFE0F\uD83D\uDE45\uD83C\uDFFB\u200D\u2640\uFE0F", + "id" : 992049215214768128, + "in_reply_to_status_id" : 991879537414696960, + "created_at" : "2018-05-03 14:32:18 +0000", + "in_reply_to_screen_name" : "cabel", + "in_reply_to_user_id_str" : "1919231", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2018_06.js b/public/tweets/data/js/tweets/2018_06.js new file mode 100755 index 0000000..82ddd65 --- /dev/null +++ b/public/tweets/data/js/tweets/2018_06.js @@ -0,0 +1,711 @@ +Grailbird.data.tweets_2018_06 = + [ { + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Josh Lieberman", + "screen_name" : "JALsnipe", + "indices" : [ 0, 9 ], + "id_str" : "192049159", + "id" : 192049159 + }, { + "name" : "Craig Hockenberry", + "screen_name" : "chockenberry", + "indices" : [ 10, 23 ], + "id_str" : "36183", + "id" : 36183 + } ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/1010317026198413313\/photo\/1", + "indices" : [ 70, 93 ], + "url" : "https:\/\/t.co\/seBlHI8f25", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DgVd-k_UYAEyjG-.jpg", + "id_str" : "1010317021077069825", + "id" : 1010317021077069825, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DgVd-k_UYAEyjG-.jpg", + "sizes" : [ { + "h" : 525, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 624, + "resize" : "fit", + "w" : 1426 + }, { + "h" : 624, + "resize" : "fit", + "w" : 1426 + }, { + "h" : 298, + "resize" : "fit", + "w" : 680 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/seBlHI8f25" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1010200251414835200", + "geo" : { }, + "id_str" : "1010317026198413313", + "in_reply_to_user_id" : 192049159, + "text" : "@JALsnipe @chockenberry Looks like they got rid of 2 hacks in Mojave. https:\/\/t.co\/seBlHI8f25", + "id" : 1010317026198413313, + "in_reply_to_status_id" : 1010200251414835200, + "created_at" : "2018-06-23 00:22:04 +0000", + "in_reply_to_screen_name" : "JALsnipe", + "in_reply_to_user_id_str" : "192049159", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Zeplin", + "screen_name" : "zeplin", + "indices" : [ 0, 7 ], + "id_str" : "2239775923", + "id" : 2239775923 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1009845326897819648", + "in_reply_to_user_id" : 2239775923, + "text" : "@zeplin Hey there, 2 bug reports for you: 1) Clicking \"Contact Us\" on your website doesn't do anything (in Safari anyway), and 2) When I set a custom name for an asset in the Mac app (2.0) it carries over to other assets in different screens as well (maybe w\/ same name?)", + "id" : 1009845326897819648, + "created_at" : "2018-06-21 17:07:42 +0000", + "in_reply_to_screen_name" : "zeplin", + "in_reply_to_user_id_str" : "2239775923", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dave Nott", + "screen_name" : "_davenott", + "indices" : [ 0, 10 ], + "id_str" : "3892042187", + "id" : 3892042187 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1009816359142764546", + "geo" : { }, + "id_str" : "1009817006005092352", + "in_reply_to_user_id" : 4777951, + "text" : "@_davenott I think certain vocal people who insist on 5k being \u201Ccorrect\u201D for retina at 27\u201D probably haven\u2019t even tried 4k at effective 2560x1440. Would I take 5k over 4k? Of course. But not at more than double the cost.\n\nI run my MacBooks at less-than-2x scaled modes too and it\u2019s great.", + "id" : 1009817006005092352, + "in_reply_to_status_id" : 1009816359142764546, + "created_at" : "2018-06-21 15:15:10 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dave Nott", + "screen_name" : "_davenott", + "indices" : [ 0, 10 ], + "id_str" : "3892042187", + "id" : 3892042187 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1009772203251036160", + "geo" : { }, + "id_str" : "1009816359142764546", + "in_reply_to_user_id" : 3892042187, + "text" : "@_davenott Not for me. I work on a 5k iMac next to a 4k 27\u201D display all day, both running at effective 2560x1440 (iMac doubled, 4k not quite doubled). I cannot tell the difference unless I get really close.\n\nIt\u2019s not that I\u2019m not picky either. After a 3x phone I couldn\u2019t go back to 2x.", + "id" : 1009816359142764546, + "in_reply_to_status_id" : 1009772203251036160, + "created_at" : "2018-06-21 15:12:36 +0000", + "in_reply_to_screen_name" : "_davenott", + "in_reply_to_user_id_str" : "3892042187", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Michael Schwarz", + "screen_name" : "_mschwarz_", + "indices" : [ 0, 11 ], + "id_str" : "3091486882", + "id" : 3091486882 + }, { + "name" : "Matthias Tretter", + "screen_name" : "myell0w", + "indices" : [ 12, 20 ], + "id_str" : "16004268", + "id" : 16004268 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1008730428348477440", + "geo" : { }, + "id_str" : "1008745545538498560", + "in_reply_to_user_id" : 3091486882, + "text" : "@_mschwarz_ @myell0w Thanks! We're not allocating images that big but I'm going to experiment with that code and see if I can reproduce the crashes we've been seeing.", + "id" : 1008745545538498560, + "in_reply_to_status_id" : 1008730428348477440, + "created_at" : "2018-06-18 16:17:34 +0000", + "in_reply_to_screen_name" : "_mschwarz_", + "in_reply_to_user_id_str" : "3091486882", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Matthias Tretter", + "screen_name" : "myell0w", + "indices" : [ 0, 8 ], + "id_str" : "16004268", + "id" : 16004268 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1008723136735563776", + "geo" : { }, + "id_str" : "1008728057497047040", + "in_reply_to_user_id" : 16004268, + "text" : "@myell0w I might be! Not sure of the cause. Can you share the example project somewhere?", + "id" : 1008728057497047040, + "in_reply_to_status_id" : 1008723136735563776, + "created_at" : "2018-06-18 15:08:04 +0000", + "in_reply_to_screen_name" : "myell0w", + "in_reply_to_user_id_str" : "16004268", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dave Nott", + "screen_name" : "_davenott", + "indices" : [ 0, 10 ], + "id_str" : "3892042187", + "id" : 3892042187 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1008012425369534465", + "geo" : { }, + "id_str" : "1008013172261810176", + "in_reply_to_user_id" : 4777951, + "text" : "@_davenott I don\u2019t mean to sound like a big naysayer. They\u2019re fun projects and lots of people seem to have success with them. Getting it all working or mostly working and having a machine tailored to your actual needs is satisfying too.", + "id" : 1008013172261810176, + "in_reply_to_status_id" : 1008012425369534465, + "created_at" : "2018-06-16 15:47:22 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dave Nott", + "screen_name" : "_davenott", + "indices" : [ 0, 10 ], + "id_str" : "3892042187", + "id" : 3892042187 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1008011703257391105", + "geo" : { }, + "id_str" : "1008012425369534465", + "in_reply_to_user_id" : 3892042187, + "text" : "@_davenott It\u2019s been almost 4 years since my last one so my experience is a bit dated (I never used Clover), but I\u2019ve heard that too. I think YMMV based on reddit\/forum posts I\u2019ve seen but it sounds more promising for sure.", + "id" : 1008012425369534465, + "in_reply_to_status_id" : 1008011703257391105, + "created_at" : "2018-06-16 15:44:24 +0000", + "in_reply_to_screen_name" : "_davenott", + "in_reply_to_user_id_str" : "3892042187", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dave Nott", + "screen_name" : "_davenott", + "indices" : [ 0, 10 ], + "id_str" : "3892042187", + "id" : 3892042187 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1008003601548103680", + "geo" : { }, + "id_str" : "1008008909376794624", + "in_reply_to_user_id" : 3892042187, + "text" : "@_davenott Having a fallback would definitely be comforting!\n\nI recommend browsing around \/r\/hackintosh on reddit to get a feel for the kind of problems you\u2019ll encounter. e.g. Messages is notoriously difficult to get working, but you may not care.", + "id" : 1008008909376794624, + "in_reply_to_status_id" : 1008003601548103680, + "created_at" : "2018-06-16 15:30:26 +0000", + "in_reply_to_screen_name" : "_davenott", + "in_reply_to_user_id_str" : "3892042187", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dave Nott", + "screen_name" : "_davenott", + "indices" : [ 0, 10 ], + "id_str" : "3892042187", + "id" : 3892042187 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1007994989136056320", + "geo" : { }, + "id_str" : "1007995832736419840", + "in_reply_to_user_id" : 4777951, + "text" : "@_davenott Nightmare is a strong word. Let\u2019s just say that if you rely on being on the latest software then it\u2019s far from ideal. If you can be up to one major OS version behind it may not be so bad.", + "id" : 1007995832736419840, + "in_reply_to_status_id" : 1007994989136056320, + "created_at" : "2018-06-16 14:38:28 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dave Nott", + "screen_name" : "_davenott", + "indices" : [ 0, 10 ], + "id_str" : "3892042187", + "id" : 3892042187 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1007746581280542720", + "geo" : { }, + "id_str" : "1007994989136056320", + "in_reply_to_user_id" : 3892042187, + "text" : "@_davenott I\u2019ve built 2 Hackintoshes for iOS development work and both times I was very happy to switch back to a real Mac after less than a year.\n\nI still feel the allure but I can\u2019t bring myself to build an expensive machine that\u2019s going to be an almost guaranteed maintenance nightmare.", + "id" : 1007994989136056320, + "in_reply_to_status_id" : 1007746581280542720, + "created_at" : "2018-06-16 14:35:07 +0000", + "in_reply_to_screen_name" : "_davenott", + "in_reply_to_user_id_str" : "3892042187", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "\uD835\uDD04\uD835\uDD1E\uD835\uDD2F\uD835\uDD2C\uD835\uDD2B \uD835\uDD0E\uD835\uDD2F\uD835\uDD22\uD835\uDD26\uD835\uDD2D\uD835\uDD22 \uA936\u20DD", + "screen_name" : "AaronKreipe", + "indices" : [ 0, 12 ], + "id_str" : "866737401640624128", + "id" : 866737401640624128 + }, { + "name" : "Holly Schilling", + "screen_name" : "sgtholly", + "indices" : [ 13, 22 ], + "id_str" : "3735141856", + "id" : 3735141856 + }, { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 23, 32 ], + "id_str" : "25401953", + "id" : 25401953 + }, { + "name" : "Steve Troughton-Smith", + "screen_name" : "stroughtonsmith", + "indices" : [ 33, 49 ], + "id_str" : "15267898", + "id" : 15267898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1007306984444399616", + "geo" : { }, + "id_str" : "1007365738443694080", + "in_reply_to_user_id" : 866737401640624128, + "text" : "@AaronKreipe @sgtholly @steipete @stroughtonsmith Rewriting everything is not a recipe for stability.", + "id" : 1007365738443694080, + "in_reply_to_status_id" : 1007306984444399616, + "created_at" : "2018-06-14 20:54:42 +0000", + "in_reply_to_screen_name" : "AaronKreipe", + "in_reply_to_user_id_str" : "866737401640624128", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Martin Gordon", + "screen_name" : "gordonmb", + "indices" : [ 0, 9 ], + "id_str" : "672453", + "id" : 672453 + }, { + "name" : "Nicolas", + "screen_name" : "nicolasfurno", + "indices" : [ 10, 23 ], + "id_str" : "40656559", + "id" : 40656559 + }, { + "name" : "Steve Troughton-Smith", + "screen_name" : "stroughtonsmith", + "indices" : [ 24, 40 ], + "id_str" : "15267898", + "id" : 15267898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1007280183290875906", + "geo" : { }, + "id_str" : "1007281941555474433", + "in_reply_to_user_id" : 672453, + "text" : "@gordonmb @nicolasfurno @stroughtonsmith Yes, having computers that are always on can make for a frustrating experience. That\u2019s why I stopped storing git repos in Dropbox. Doing a git add and then seeing it undone immediately because of a Dropbox conflict is very annoying.", + "id" : 1007281941555474433, + "in_reply_to_status_id" : 1007280183290875906, + "created_at" : "2018-06-14 15:21:43 +0000", + "in_reply_to_screen_name" : "gordonmb", + "in_reply_to_user_id_str" : "672453", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Jakub Tes\u00E1rek", + "screen_name" : "JakubTesarek", + "indices" : [ 0, 13 ], + "id_str" : "458749710", + "id" : 458749710 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1007280512015175685", + "geo" : { }, + "id_str" : "1007281313181622272", + "in_reply_to_user_id" : 458749710, + "text" : "@JakubTesarek Oh, yeah I agree there\u2019s no reason for them to keep your credit card for sure. Also if they\u2019re actually calling or emailing you that\u2019s bad.", + "id" : 1007281313181622272, + "in_reply_to_status_id" : 1007280512015175685, + "created_at" : "2018-06-14 15:19:14 +0000", + "in_reply_to_screen_name" : "JakubTesarek", + "in_reply_to_user_id_str" : "458749710", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Jakub Tes\u00E1rek", + "screen_name" : "JakubTesarek", + "indices" : [ 0, 13 ], + "id_str" : "458749710", + "id" : 458749710 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1007184784173490176", + "geo" : { }, + "id_str" : "1007276137670574080", + "in_reply_to_user_id" : 458749710, + "text" : "@JakubTesarek Isn\u2019t that true though? I know that we\u2019re not just allowed to but supposed to keep enough info to have a record of disclosure and erasure requests. I\u2019d assume that goes for other legal reasons too.", + "id" : 1007276137670574080, + "in_reply_to_status_id" : 1007184784173490176, + "created_at" : "2018-06-14 14:58:40 +0000", + "in_reply_to_screen_name" : "JakubTesarek", + "in_reply_to_user_id_str" : "458749710", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Ian Cutress", + "screen_name" : "IanCutress", + "indices" : [ 0, 11 ], + "id_str" : "317150782", + "id" : 317150782 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1006712324625821696", + "geo" : { }, + "id_str" : "1006757227863027712", + "in_reply_to_user_id" : 317150782, + "text" : "@IanCutress Hardware and performance.", + "id" : 1006757227863027712, + "in_reply_to_status_id" : 1006712324625821696, + "created_at" : "2018-06-13 04:36:42 +0000", + "in_reply_to_screen_name" : "IanCutress", + "in_reply_to_user_id_str" : "317150782", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 0, 9 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 10, 33 ], + "url" : "https:\/\/t.co\/1VL8532O5e", + "expanded_url" : "http:\/\/zoom.us", + "display_url" : "zoom.us" + } ] + }, + "in_reply_to_status_id_str" : "1006020483295346689", + "geo" : { }, + "id_str" : "1006028587063885824", + "in_reply_to_user_id" : 25401953, + "text" : "@steipete https:\/\/t.co\/1VL8532O5e app has problems with the new mic permission. Seems alright overall though.", + "id" : 1006028587063885824, + "in_reply_to_status_id" : 1006020483295346689, + "created_at" : "2018-06-11 04:21:20 +0000", + "in_reply_to_screen_name" : "steipete", + "in_reply_to_user_id_str" : "25401953", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "James Long", + "screen_name" : "jlongster", + "indices" : [ 0, 10 ], + "id_str" : "14615235", + "id" : 14615235 + }, { + "name" : "Kevin Dangoor", + "screen_name" : "dangoor", + "indices" : [ 11, 19 ], + "id_str" : "8831572", + "id" : 8831572 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1004419906182447104", + "geo" : { }, + "id_str" : "1004538828562956288", + "in_reply_to_user_id" : 14615235, + "text" : "@jlongster @dangoor It\u2019s funny. People talk about X fatigue as if they have no choice but to use every new thing they read about. It\u2019s a choice!", + "id" : 1004538828562956288, + "in_reply_to_status_id" : 1004419906182447104, + "created_at" : "2018-06-07 01:41:34 +0000", + "in_reply_to_screen_name" : "jlongster", + "in_reply_to_user_id_str" : "14615235", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Brandon Chester", + "screen_name" : "nexusCFX", + "indices" : [ 0, 9 ], + "id_str" : "217077000", + "id" : 217077000 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1004446439533993984", + "geo" : { }, + "id_str" : "1004534068896133120", + "in_reply_to_user_id" : 217077000, + "text" : "@nexusCFX Xcode\u2019s dark mode has poor contrast too. I find it harder to read, no question.", + "id" : 1004534068896133120, + "in_reply_to_status_id" : 1004446439533993984, + "created_at" : "2018-06-07 01:22:40 +0000", + "in_reply_to_screen_name" : "nexusCFX", + "in_reply_to_user_id_str" : "217077000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2018_07.js b/public/tweets/data/js/tweets/2018_07.js new file mode 100755 index 0000000..2b7a607 --- /dev/null +++ b/public/tweets/data/js/tweets/2018_07.js @@ -0,0 +1,658 @@ +Grailbird.data.tweets_2018_07 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Raphael Sebbe", + "screen_name" : "rsebbe", + "indices" : [ 0, 7 ], + "id_str" : "9306182", + "id" : 9306182 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 48, 71 ], + "url" : "https:\/\/t.co\/Eg9JUA1pZO", + "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/1016712893155323904", + "display_url" : "twitter.com\/_sjs\/status\/10\u2026" + } ] + }, + "in_reply_to_status_id_str" : "1024016301105274880", + "geo" : { }, + "id_str" : "1024085227704963072", + "in_reply_to_user_id" : 9306182, + "text" : "@rsebbe Yup. That\u2019s exactly what they\u2019re doing. https:\/\/t.co\/Eg9JUA1pZO", + "id" : 1024085227704963072, + "in_reply_to_status_id" : 1024016301105274880, + "created_at" : "2018-07-31 00:11:59 +0000", + "in_reply_to_screen_name" : "rsebbe", + "in_reply_to_user_id_str" : "9306182", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 0, 9 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1023973303600513026", + "geo" : { }, + "id_str" : "1023974841689366530", + "in_reply_to_user_id" : 25401953, + "text" : "@steipete No we use separate builds. Maybe we should check at runtime though. I\u2019ll have to look into that.", + "id" : 1023974841689366530, + "in_reply_to_status_id" : 1023973303600513026, + "created_at" : "2018-07-30 16:53:21 +0000", + "in_reply_to_screen_name" : "steipete", + "in_reply_to_user_id_str" : "25401953", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 0, 9 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1023964970747342849", + "geo" : { }, + "id_str" : "1023966421250760704", + "in_reply_to_user_id" : 25401953, + "text" : "@steipete Yeah we use conditional compilation to set the build configuration and our server automatically hands out subscriptions when it\u2019s a beta build. We\u2019ll have to watch out for abuse.", + "id" : 1023966421250760704, + "in_reply_to_status_id" : 1023964970747342849, + "created_at" : "2018-07-30 16:19:53 +0000", + "in_reply_to_screen_name" : "steipete", + "in_reply_to_user_id_str" : "25401953", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 0, 9 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1023876355266633729", + "geo" : { }, + "id_str" : "1023964030182912000", + "in_reply_to_user_id" : 25401953, + "text" : "@steipete We give our beta testers a comped subscription while they\u2019re using a beta build.", + "id" : 1023964030182912000, + "in_reply_to_status_id" : 1023876355266633729, + "created_at" : "2018-07-30 16:10:23 +0000", + "in_reply_to_screen_name" : "steipete", + "in_reply_to_user_id_str" : "25401953", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Anders Borum", + "screen_name" : "palmin", + "indices" : [ 0, 7 ], + "id_str" : "17113536", + "id" : 17113536 + }, { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 8, 17 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1023621189623787520", + "geo" : { }, + "id_str" : "1023718184057098241", + "in_reply_to_user_id" : 17113536, + "text" : "@palmin @steipete Their software was also broken by 10.13 so they already only work on 10.12 and say Apple needs to fix a bug. Since OpenGL is now deprecated they gave up entirely.", + "id" : 1023718184057098241, + "in_reply_to_status_id" : 1023621189623787520, + "created_at" : "2018-07-29 23:53:29 +0000", + "in_reply_to_screen_name" : "palmin", + "in_reply_to_user_id_str" : "17113536", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dale Buckley", + "screen_name" : "Dale_Buckley", + "indices" : [ 0, 13 ], + "id_str" : "174187246", + "id" : 174187246 + }, { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 14, 23 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1023195340533624832", + "geo" : { }, + "id_str" : "1023234150394814468", + "in_reply_to_user_id" : 174187246, + "text" : "@Dale_Buckley @steipete Just wait until you\u2019re on Xcode 10. It\u2019ll be even faster.", + "id" : 1023234150394814468, + "in_reply_to_status_id" : 1023195340533624832, + "created_at" : "2018-07-28 15:50:06 +0000", + "in_reply_to_screen_name" : "Dale_Buckley", + "in_reply_to_user_id_str" : "174187246", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Matthias Tretter", + "screen_name" : "myell0w", + "indices" : [ 0, 8 ], + "id_str" : "16004268", + "id" : 16004268 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1022855998854389760", + "geo" : { }, + "id_str" : "1022856680814534659", + "in_reply_to_user_id" : 16004268, + "text" : "@myell0w I\u2019d try a CAShapeLayer drawn with PaintCode first.", + "id" : 1022856680814534659, + "in_reply_to_status_id" : 1022855998854389760, + "created_at" : "2018-07-27 14:50:11 +0000", + "in_reply_to_screen_name" : "myell0w", + "in_reply_to_user_id_str" : "16004268", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Sebastiaan de With", + "screen_name" : "sdw", + "indices" : [ 0, 4 ], + "id_str" : "6503412", + "id" : 6503412 + }, { + "name" : "Steve Troughton-Smith", + "screen_name" : "stroughtonsmith", + "indices" : [ 5, 21 ], + "id_str" : "15267898", + "id" : 15267898 + }, { + "name" : "Matthew Panzarino", + "screen_name" : "panzer", + "indices" : [ 22, 29 ], + "id_str" : "19312115", + "id" : 19312115 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1021819830658248704", + "geo" : { }, + "id_str" : "1021832748170760192", + "in_reply_to_user_id" : 6503412, + "text" : "@sdw @stroughtonsmith @panzer I saw it happen while setting up my new 13\u201D MBP. Start a fresh Dropbox sync and do literally anything else and off it goes throttling down below 1 GHz every couple of seconds.", + "id" : 1021832748170760192, + "in_reply_to_status_id" : 1021819830658248704, + "created_at" : "2018-07-24 19:01:26 +0000", + "in_reply_to_screen_name" : "sdw", + "in_reply_to_user_id_str" : "6503412", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 0, 9 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1021063266464911361", + "geo" : { }, + "id_str" : "1021063398325288961", + "in_reply_to_user_id" : 25401953, + "text" : "@steipete Yes! 2 years ago this would have taken us a month instead of a week.", + "id" : 1021063398325288961, + "in_reply_to_status_id" : 1021063266464911361, + "created_at" : "2018-07-22 16:04:19 +0000", + "in_reply_to_screen_name" : "steipete", + "in_reply_to_user_id_str" : "25401953", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter Steinberger", + "screen_name" : "steipete", + "indices" : [ 0, 9 ], + "id_str" : "25401953", + "id" : 25401953 + } ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/1021063056774737920\/photo\/1", + "indices" : [ 81, 104 ], + "url" : "https:\/\/t.co\/Bh5ngeFO8Q", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DiuLb2lUEAAAmre.jpg", + "id_str" : "1021063051154296832", + "id" : 1021063051154296832, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DiuLb2lUEAAAmre.jpg", + "sizes" : [ { + "h" : 2048, + "resize" : "fit", + "w" : 946 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 2436, + "resize" : "fit", + "w" : 1125 + }, { + "h" : 680, + "resize" : "fit", + "w" : 314 + }, { + "h" : 1200, + "resize" : "fit", + "w" : 554 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/Bh5ngeFO8Q" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1021059847603802112", + "geo" : { }, + "id_str" : "1021063056774737920", + "in_reply_to_user_id" : 25401953, + "text" : "@steipete I hear you man. We\u2019ve been going like this since the 13th. It\u2019s rough! https:\/\/t.co\/Bh5ngeFO8Q", + "id" : 1021063056774737920, + "in_reply_to_status_id" : 1021059847603802112, + "created_at" : "2018-07-22 16:02:57 +0000", + "in_reply_to_screen_name" : "steipete", + "in_reply_to_user_id_str" : "25401953", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Michael Tsai", + "screen_name" : "mjtsai", + "indices" : [ 0, 7 ], + "id_str" : "8011702", + "id" : 8011702 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1020040889173970944", + "geo" : { }, + "id_str" : "1020050807864012805", + "in_reply_to_user_id" : 8011702, + "text" : "@mjtsai Just to keep everyone on their toes the Apple Store app shows an identical looking dialog that is part of the app itself.", + "id" : 1020050807864012805, + "in_reply_to_status_id" : 1020040889173970944, + "created_at" : "2018-07-19 21:00:38 +0000", + "in_reply_to_screen_name" : "mjtsai", + "in_reply_to_user_id_str" : "8011702", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Alan", + "screen_name" : "alanzeino", + "indices" : [ 0, 10 ], + "id_str" : "39398109", + "id" : 39398109 + }, { + "name" : "Georg Kitz @ \uD83C\uDDE9\uD83C\uDDEA\uD83D\uDC4B", + "screen_name" : "gekitz", + "indices" : [ 11, 18 ], + "id_str" : "53887226", + "id" : 53887226 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 130, 153 ], + "url" : "https:\/\/t.co\/SoOQ0OFdIX", + "expanded_url" : "https:\/\/github.com\/ashfurrow\/xcode-hardware-performance\/", + "display_url" : "github.com\/ashfurrow\/xcod\u2026" + } ] + }, + "in_reply_to_status_id_str" : "1019815668068184064", + "geo" : { }, + "id_str" : "1019816331066003456", + "in_reply_to_user_id" : 39398109, + "text" : "@alanzeino @gekitz Ah, yeah that\u2019s a problem. People benchmark Artsy\u2019s eigen project but it\u2019s not very large. Might work though.\n\nhttps:\/\/t.co\/SoOQ0OFdIX", + "id" : 1019816331066003456, + "in_reply_to_status_id" : 1019815668068184064, + "created_at" : "2018-07-19 05:28:55 +0000", + "in_reply_to_screen_name" : "alanzeino", + "in_reply_to_user_id_str" : "39398109", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Alan", + "screen_name" : "alanzeino", + "indices" : [ 0, 10 ], + "id_str" : "39398109", + "id" : 39398109 + }, { + "name" : "Georg Kitz @ \uD83C\uDDE9\uD83C\uDDEA\uD83D\uDC4B", + "screen_name" : "gekitz", + "indices" : [ 11, 18 ], + "id_str" : "53887226", + "id" : 53887226 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1019810788331085824", + "geo" : { }, + "id_str" : "1019814518317244416", + "in_reply_to_user_id" : 39398109, + "text" : "@alanzeino @gekitz Any chance you could have xcodebuild run in a loop and see if it throttles after 20-30 min?", + "id" : 1019814518317244416, + "in_reply_to_status_id" : 1019810788331085824, + "created_at" : "2018-07-19 05:21:43 +0000", + "in_reply_to_screen_name" : "alanzeino", + "in_reply_to_user_id_str" : "39398109", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dave Nott", + "screen_name" : "_davenott", + "indices" : [ 0, 10 ], + "id_str" : "3892042187", + "id" : 3892042187 + }, { + "name" : "Feedbin", + "screen_name" : "feedbin", + "indices" : [ 38, 46 ], + "id_str" : "1170518132", + "id" : 1170518132 + }, { + "name" : "Unread", + "screen_name" : "unread_app", + "indices" : [ 51, 62 ], + "id_str" : "1616252148", + "id" : 1616252148 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1016951437421699072", + "geo" : { }, + "id_str" : "1017044150191968256", + "in_reply_to_user_id" : 3892042187, + "text" : "@_davenott I\u2019ve been super happy with @feedbin and @unread_app on my phone for years now. On iPad and desktops I use the very nice Feedbin website directly.", + "id" : 1017044150191968256, + "in_reply_to_status_id" : 1016951437421699072, + "created_at" : "2018-07-11 13:53:15 +0000", + "in_reply_to_screen_name" : "_davenott", + "in_reply_to_user_id_str" : "3892042187", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1016712893155323904", + "text" : "PSA: If your build time is measured in minutes and not seconds then quitting Dropbox will probably give you a noticeable boost. It\u2019s a performance virus, like AV software.", + "id" : 1016712893155323904, + "created_at" : "2018-07-10 15:56:57 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "mikeash", + "screen_name" : "mikeash", + "indices" : [ 0, 8 ], + "id_str" : "8142952", + "id" : 8142952 + }, { + "name" : "Malcolm", + "screen_name" : "MalcolmTeas", + "indices" : [ 9, 21 ], + "id_str" : "14866294", + "id" : 14866294 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 98, 121 ], + "url" : "https:\/\/t.co\/ufzcSHExfz", + "expanded_url" : "https:\/\/www.cbc.ca\/news\/canada\/toronto\/iphone-scam-kijiji-1.4463242", + "display_url" : "cbc.ca\/news\/canada\/to\u2026" + } ] + }, + "in_reply_to_status_id_str" : "1015781400786690048", + "geo" : { }, + "id_str" : "1015782259322834944", + "in_reply_to_user_id" : 8142952, + "text" : "@mikeash @MalcolmTeas I\u2019m thinking more about scams like this one with a real box and fake phone: https:\/\/t.co\/ufzcSHExfz", + "id" : 1015782259322834944, + "in_reply_to_status_id" : 1015781400786690048, + "created_at" : "2018-07-08 02:18:57 +0000", + "in_reply_to_screen_name" : "mikeash", + "in_reply_to_user_id_str" : "8142952", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "mikeash", + "screen_name" : "mikeash", + "indices" : [ 0, 8 ], + "id_str" : "8142952", + "id" : 8142952 + }, { + "name" : "Malcolm", + "screen_name" : "MalcolmTeas", + "indices" : [ 9, 21 ], + "id_str" : "14866294", + "id" : 14866294 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1015777857770049536", + "geo" : { }, + "id_str" : "1015781153511358470", + "in_reply_to_user_id" : 8142952, + "text" : "@mikeash @MalcolmTeas Worth mentioning that not everyone who wants to buy one is on the level. They\u2019re useful for scams.", + "id" : 1015781153511358470, + "in_reply_to_status_id" : 1015777857770049536, + "created_at" : "2018-07-08 02:14:33 +0000", + "in_reply_to_screen_name" : "mikeash", + "in_reply_to_user_id_str" : "8142952", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2018_08.js b/public/tweets/data/js/tweets/2018_08.js new file mode 100755 index 0000000..a1fbce6 --- /dev/null +++ b/public/tweets/data/js/tweets/2018_08.js @@ -0,0 +1,1227 @@ +Grailbird.data.tweets_2018_08 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 179, 202 ], + "url" : "https:\/\/t.co\/v8UWewexSN", + "expanded_url" : "https:\/\/twitter.com\/_inside\/status\/1034483068365692928", + "display_url" : "twitter.com\/_inside\/status\u2026" + } ] + }, + "geo" : { }, + "id_str" : "1034602854751715329", + "text" : "Not as much as it would have before the new app switching UI on the iPhone X. I\u2019d still miss it for moving the cursor and selecting text though (space bar method is not as good). https:\/\/t.co\/v8UWewexSN", + "id" : 1034602854751715329, + "created_at" : "2018-08-29 00:45:17 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter Cooper", + "screen_name" : "peterc", + "indices" : [ 0, 7 ], + "id_str" : "33493", + "id" : 33493 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1034511685829226496", + "geo" : { }, + "id_str" : "1034600038100430849", + "in_reply_to_user_id" : 33493, + "text" : "@peterc Do you schedule it with CloudWatch?", + "id" : 1034600038100430849, + "in_reply_to_status_id" : 1034511685829226496, + "created_at" : "2018-08-29 00:34:05 +0000", + "in_reply_to_screen_name" : "peterc", + "in_reply_to_user_id_str" : "33493", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "malice ghoulpus", + "screen_name" : "alicegoldfuss", + "indices" : [ 0, 14 ], + "id_str" : "163154809", + "id" : 163154809 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1034120756689420292", + "geo" : { }, + "id_str" : "1034599335856488449", + "in_reply_to_user_id" : 163154809, + "text" : "@alicegoldfuss usenet", + "id" : 1034599335856488449, + "in_reply_to_status_id" : 1034120756689420292, + "created_at" : "2018-08-29 00:31:18 +0000", + "in_reply_to_screen_name" : "alicegoldfuss", + "in_reply_to_user_id_str" : "163154809", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Panic Inc", + "screen_name" : "panic", + "indices" : [ 3, 9 ], + "id_str" : "6687652", + "id" : 6687652 + }, { + "name" : "House House", + "screen_name" : "house_house_", + "indices" : [ 88, 101 ], + "id_str" : "2262160099", + "id" : 2262160099 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1034597804901974018", + "text" : "RT @panic: \u2728 PANIC GAME NEWS \u2728 Our next video game project is\u2026 \"Untitled Goose Game\" by @house_house_! It is a lovely day in the village an\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "House House", + "screen_name" : "house_house_", + "indices" : [ 77, 90 ], + "id_str" : "2262160099", + "id" : 2262160099 + } ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/panic\/status\/1034485699817267201\/photo\/1", + "indices" : [ 275, 298 ], + "url" : "https:\/\/t.co\/D0QyGrTvFp", + "media_url" : "http:\/\/pbs.twimg.com\/media\/Dls5UQIUwAErD7B.jpg", + "id_str" : "1034483559501709313", + "id" : 1034483559501709313, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/Dls5UQIUwAErD7B.jpg", + "sizes" : [ { + "h" : 1365, + "resize" : "fit", + "w" : 2048 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 800, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 2184, + "resize" : "fit", + "w" : 3276 + }, { + "h" : 453, + "resize" : "fit", + "w" : 680 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/D0QyGrTvFp" + } ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 251, 274 ], + "url" : "https:\/\/t.co\/cnBoNZ0IG1", + "expanded_url" : "https:\/\/goose.game\/", + "display_url" : "goose.game" + } ] + }, + "geo" : { }, + "id_str" : "1034485699817267201", + "text" : "\u2728 PANIC GAME NEWS \u2728 Our next video game project is\u2026 \"Untitled Goose Game\" by @house_house_! It is a lovely day in the village and you are a horrible goose. Coming in 2019 to Mac, PC, and \u2014 just announced \u2014 the Nintendo Switch!!! New site and trailer: https:\/\/t.co\/cnBoNZ0IG1 https:\/\/t.co\/D0QyGrTvFp", + "id" : 1034485699817267201, + "created_at" : "2018-08-28 16:59:45 +0000", + "user" : { + "name" : "Panic Inc", + "screen_name" : "panic", + "protected" : false, + "id_str" : "6687652", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/711393354198573057\/E1PDi1-R_normal.jpg", + "id" : 6687652, + "verified" : true + } + }, + "id" : 1034597804901974018, + "created_at" : "2018-08-29 00:25:13 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", + "screen_name" : "macatbook", + "indices" : [ 0, 10 ], + "id_str" : "22406953", + "id" : 22406953 + }, { + "name" : "Luna Display", + "screen_name" : "LunaDisplayHQ", + "indices" : [ 11, 25 ], + "id_str" : "884886156655173632", + "id" : 884886156655173632 + } ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/_sjs\/status\/1034260132878639104\/video\/1", + "indices" : [ 48, 71 ], + "url" : "https:\/\/t.co\/yYOKX87s3F", + "media_url" : "http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1034260067372036096\/pu\/img\/QuVCTdFVUw_rTN3l.jpg", + "id_str" : "1034260067372036096", + "id" : 1034260067372036096, + "media_url_https" : "https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1034260067372036096\/pu\/img\/QuVCTdFVUw_rTN3l.jpg", + "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 675, + "resize" : "fit", + "w" : 1200 + }, { + "h" : 383, + "resize" : "fit", + "w" : 680 + }, { + "h" : 720, + "resize" : "fit", + "w" : 1280 + }, { + "h" : 720, + "resize" : "fit", + "w" : 1280 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/yYOKX87s3F" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1034256925628620801", + "geo" : { }, + "id_str" : "1034260132878639104", + "in_reply_to_user_id" : 4777951, + "text" : "@macatbook @LunaDisplayHQ Here\u2019s the simulator: https:\/\/t.co\/yYOKX87s3F", + "id" : 1034260132878639104, + "in_reply_to_status_id" : 1034256925628620801, + "created_at" : "2018-08-28 02:03:25 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Web Surfer \uD83C\uDFC4\uD83C\uDF0E", + "screen_name" : "macatbook", + "indices" : [ 0, 10 ], + "id_str" : "22406953", + "id" : 22406953 + }, { + "name" : "Luna Display", + "screen_name" : "LunaDisplayHQ", + "indices" : [ 11, 25 ], + "id_str" : "884886156655173632", + "id" : 884886156655173632 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1034251089237827584", + "geo" : { }, + "id_str" : "1034256925628620801", + "in_reply_to_user_id" : 22406953, + "text" : "@macatbook @LunaDisplayHQ No contest, Luna smokes it! And it seems more reliable (although I did have to replug it once so far, so it\u2019s not perfect). With Duet I get big grey blocks and major lag, even tethered.", + "id" : 1034256925628620801, + "in_reply_to_status_id" : 1034251089237827584, + "created_at" : "2018-08-28 01:50:41 +0000", + "in_reply_to_screen_name" : "macatbook", + "in_reply_to_user_id_str" : "22406953", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"https:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003ETweetbot for Mac\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Luna Display", + "screen_name" : "LunaDisplayHQ", + "indices" : [ 3, 17 ], + "id_str" : "884886156655173632", + "id" : 884886156655173632 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1034249839733694464", + "text" : "So @LunaDisplayHQ is the real deal! Works pretty nicely with the iOS simulator and is great for Slack or a terminal or whatever else you'd normally put on a second display.\n\nThe sim felt so natural that I tried to pinch zoom without thinking about it!", + "id" : 1034249839733694464, + "created_at" : "2018-08-28 01:22:31 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Steven Frank", + "screen_name" : "stevenf", + "indices" : [ 0, 8 ], + "id_str" : "733813", + "id" : 733813 + }, { + "name" : "John Siracusa", + "screen_name" : "siracusa", + "indices" : [ 9, 18 ], + "id_str" : "636923", + "id" : 636923 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1031976933351813120", + "geo" : { }, + "id_str" : "1032170971099291648", + "in_reply_to_user_id" : 733813, + "text" : "@stevenf @siracusa It worked for me when using an AirPort router. I didn\u2019t have any luck manually configuring ports with other routers.", + "id" : 1032170971099291648, + "in_reply_to_status_id" : 1031976933351813120, + "created_at" : "2018-08-22 07:41:50 +0000", + "in_reply_to_screen_name" : "stevenf", + "in_reply_to_user_id_str" : "733813", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "John Arundel", + "screen_name" : "bitfield", + "indices" : [ 0, 9 ], + "id_str" : "14375294", + "id" : 14375294 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1030793206663983104", + "geo" : { }, + "id_str" : "1030795437752676352", + "in_reply_to_user_id" : 14375294, + "text" : "@bitfield Fair enough. I am speaking from my own real experience though so I guess everyone\u2019s different. I\u2019ve rewritten plenty of shell scripts in other languages.\n\nAll the points at the bottom of the article are true regardless though. Starting in another language isn\u2019t a bad idea.", + "id" : 1030795437752676352, + "in_reply_to_status_id" : 1030793206663983104, + "created_at" : "2018-08-18 12:35:58 +0000", + "in_reply_to_screen_name" : "bitfield", + "in_reply_to_user_id_str" : "14375294", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "John Arundel", + "screen_name" : "bitfield", + "indices" : [ 0, 9 ], + "id_str" : "14375294", + "id" : 14375294 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1030779089911795714", + "geo" : { }, + "id_str" : "1030792458978947072", + "in_reply_to_user_id" : 14375294, + "text" : "@bitfield I guess you just have to have the discipline to rewrite it when it\u2019s time. If you don\u2019t wait too long it doesn\u2019t take long. I have no problem spending a few minutes to translate shell to Ruby and you can do it piecemeal by shelling out from Ruby when it\u2019s more efficient to do so.", + "id" : 1030792458978947072, + "in_reply_to_status_id" : 1030779089911795714, + "created_at" : "2018-08-18 12:24:08 +0000", + "in_reply_to_screen_name" : "bitfield", + "in_reply_to_user_id_str" : "14375294", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "register and vote!", + "screen_name" : "jacobrothstein", + "indices" : [ 3, 18 ], + "id_str" : "27302287", + "id" : 27302287 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1030194524969213952", + "text" : "RT @jacobrothstein: Chronological timeline of exactly the things tweeted by the people I follow.", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1030194462117359617", + "text" : "Chronological timeline of exactly the things tweeted by the people I follow.", + "id" : 1030194462117359617, + "created_at" : "2018-08-16 20:47:54 +0000", + "user" : { + "name" : "register and vote!", + "screen_name" : "jacobrothstein", + "protected" : false, + "id_str" : "27302287", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/996296780751912961\/vglv97x-_normal.jpg", + "id" : 27302287, + "verified" : false + } + }, + "id" : 1030194524969213952, + "created_at" : "2018-08-16 20:48:09 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Reginald Braithwaite", + "screen_name" : "raganwald", + "indices" : [ 3, 13 ], + "id_str" : "18137723", + "id" : 18137723 + }, { + "name" : "Rob Johnson", + "screen_name" : "robjohnson", + "indices" : [ 20, 31 ], + "id_str" : "6264412", + "id" : 6264412 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1030194223860129792", + "text" : "RT @raganwald: Dear @robjohnson:\n\nYou keep using this word \u201Crespect.\u201D I don\u2019t think it means, what you think it means. https:\/\/t.co\/JbEEfct\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Rob Johnson", + "screen_name" : "robjohnson", + "indices" : [ 5, 16 ], + "id_str" : "6264412", + "id" : 6264412 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 104, 127 ], + "url" : "https:\/\/t.co\/JbEEfctWwH", + "expanded_url" : "https:\/\/twitter.com\/robjohnson\/status\/1030122326480715777", + "display_url" : "twitter.com\/robjohnson\/sta\u2026" + } ] + }, + "geo" : { }, + "id_str" : "1030193871068770305", + "text" : "Dear @robjohnson:\n\nYou keep using this word \u201Crespect.\u201D I don\u2019t think it means, what you think it means. https:\/\/t.co\/JbEEfctWwH", + "id" : 1030193871068770305, + "created_at" : "2018-08-16 20:45:33 +0000", + "user" : { + "name" : "Reginald Braithwaite", + "screen_name" : "raganwald", + "protected" : false, + "id_str" : "18137723", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/981971516668592128\/46_3g0gG_normal.jpg", + "id" : 18137723, + "verified" : false + } + }, + "id" : 1030194223860129792, + "created_at" : "2018-08-16 20:46:57 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Katie Mack", + "screen_name" : "AstroKatie", + "indices" : [ 3, 14 ], + "id_str" : "33773592", + "id" : 33773592 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1030179936198451205", + "text" : "RT @AstroKatie: What I want to see on Twitter: the tweets voluntarily tweeted by people I choose to follow, in order\nWhat Twitter wants to\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1029907461426356224", + "text" : "What I want to see on Twitter: the tweets voluntarily tweeted by people I choose to follow, in order\nWhat Twitter wants to show me: anything but that, apparently", + "id" : 1029907461426356224, + "created_at" : "2018-08-16 01:47:28 +0000", + "user" : { + "name" : "Katie Mack", + "screen_name" : "AstroKatie", + "protected" : false, + "id_str" : "33773592", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2818477708\/0ef050189a11bb7f9cf56306f5d171bf_normal.png", + "id" : 33773592, + "verified" : true + } + }, + "id" : 1030179936198451205, + "created_at" : "2018-08-16 19:50:11 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Michael Tsai", + "screen_name" : "mjtsai", + "indices" : [ 3, 10 ], + "id_str" : "8011702", + "id" : 8011702 + } ], + "media" : [ ], + "hashtags" : [ { + "text" : "BreakingMyTwitter", + "indices" : [ 53, 71 ] + }, { + "text" : "mjtsaiblog", + "indices" : [ 97, 108 ] + } ], + "urls" : [ { + "indices" : [ 73, 96 ], + "url" : "https:\/\/t.co\/JzPWdTLWqi", + "expanded_url" : "https:\/\/mjtsai.com\/blog\/2018\/08\/16\/twitter-company-email-addresses-why-its-breakingmytwitter\/", + "display_url" : "mjtsai.com\/blog\/2018\/08\/1\u2026" + } ] + }, + "geo" : { }, + "id_str" : "1030179160113770499", + "text" : "RT @mjtsai: Twitter Company Email Addresses Why It\u2019s #BreakingMyTwitter: https:\/\/t.co\/JzPWdTLWqi #mjtsaiblog", + "retweeted_status" : { + "source" : "\u003Ca href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003EIFTTT\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ { + "text" : "BreakingMyTwitter", + "indices" : [ 41, 59 ] + }, { + "text" : "mjtsaiblog", + "indices" : [ 85, 96 ] + } ], + "urls" : [ { + "indices" : [ 61, 84 ], + "url" : "https:\/\/t.co\/JzPWdTLWqi", + "expanded_url" : "https:\/\/mjtsai.com\/blog\/2018\/08\/16\/twitter-company-email-addresses-why-its-breakingmytwitter\/", + "display_url" : "mjtsai.com\/blog\/2018\/08\/1\u2026" + } ] + }, + "geo" : { }, + "id_str" : "1030168361018241024", + "text" : "Twitter Company Email Addresses Why It\u2019s #BreakingMyTwitter: https:\/\/t.co\/JzPWdTLWqi #mjtsaiblog", + "id" : 1030168361018241024, + "created_at" : "2018-08-16 19:04:11 +0000", + "user" : { + "name" : "Michael Tsai", + "screen_name" : "mjtsai", + "protected" : false, + "id_str" : "8011702", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/2338324341\/buewjh8ph2pkzyz5mrtu_normal.jpeg", + "id" : 8011702, + "verified" : true + } + }, + "id" : 1030179160113770499, + "created_at" : "2018-08-16 19:47:06 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Avi Bryant", + "screen_name" : "avibryant", + "indices" : [ 3, 13 ], + "id_str" : "13192", + "id" : 13192 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1030178006852096006", + "text" : "RT @avibryant: \"These APIs were only used by 1% of our developers\" is so meaningless I can only believe it was selected in bad faith as the\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 216, 239 ], + "url" : "https:\/\/t.co\/adncKC3bYj", + "expanded_url" : "https:\/\/twitter.com\/robjohnson\/status\/1030122316875747328", + "display_url" : "twitter.com\/robjohnson\/sta\u2026" + } ] + }, + "geo" : { }, + "id_str" : "1030166900972511232", + "text" : "\"These APIs were only used by 1% of our developers\" is so meaningless I can only believe it was selected in bad faith as the metric to share. What percentage of \"tweet-views via 3rd party clients\" do they represent? https:\/\/t.co\/adncKC3bYj", + "id" : 1030166900972511232, + "created_at" : "2018-08-16 18:58:23 +0000", + "user" : { + "name" : "Avi Bryant", + "screen_name" : "avibryant", + "protected" : false, + "id_str" : "13192", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/762794521801265153\/oRPjI4ya_normal.jpg", + "id" : 13192, + "verified" : false + } + }, + "id" : 1030178006852096006, + "created_at" : "2018-08-16 19:42:31 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ { + "text" : "BreakingMyTwitter", + "indices" : [ 242, 260 ] + } ], + "urls" : [ { + "indices" : [ 261, 284 ], + "url" : "https:\/\/t.co\/63VnK8kfkD", + "expanded_url" : "https:\/\/twitter.com\/robjohnson\/status\/1030122332243734528", + "display_url" : "twitter.com\/robjohnson\/sta\u2026" + } ] + }, + "geo" : { }, + "id_str" : "1030178000812363783", + "text" : "This is obvious bullshit. Everyone I know who\u2019s been using Twitter for 10+ years has the exact same complaints. It\u2019s almost impressive at how bad Twitter is at stewarding their own platform. It\u2019s sad how hard they\u2019re trying to drive us away. #BreakingMyTwitter https:\/\/t.co\/63VnK8kfkD", + "id" : 1030178000812363783, + "created_at" : "2018-08-16 19:42:29 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Rob Johnson", + "screen_name" : "robjohnson", + "indices" : [ 0, 11 ], + "id_str" : "6264412", + "id" : 6264412 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1030174695986028545", + "geo" : { }, + "id_str" : "1030175820357222400", + "in_reply_to_user_id" : 4777951, + "text" : "@robjohnson Your apps don\u2019t just show me tweets from people I follow in order. There\u2019s always some other junk I don\u2019t care about.\n\nIf third party apps go away I\u2019ll probably just stop using Twitter. That\u2019s how bad your apps are. It\u2019s not even close to the same experience. You ruined Tweetie.", + "id" : 1030175820357222400, + "in_reply_to_status_id" : 1030174695986028545, + "created_at" : "2018-08-16 19:33:49 +0000", + "in_reply_to_screen_name" : "_sjs", + "in_reply_to_user_id_str" : "4777951", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Rob Johnson", + "screen_name" : "robjohnson", + "indices" : [ 0, 11 ], + "id_str" : "6264412", + "id" : 6264412 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1030122332243734528", + "geo" : { }, + "id_str" : "1030174695986028545", + "in_reply_to_user_id" : 6264412, + "text" : "@robjohnson I want to read tweets oldest to newest, and have my place synced between devices. That\u2019s half of it. Since you\u2019ll never do that I\u2019ll never use your apps.\n\nAlso Tweetbot and Twitterrific are just pleasant to use. Swipes to do common actions on tweets, themes, etc. Different beasts", + "id" : 1030174695986028545, + "in_reply_to_status_id" : 1030122332243734528, + "created_at" : "2018-08-16 19:29:21 +0000", + "in_reply_to_screen_name" : "robjohnson", + "in_reply_to_user_id_str" : "6264412", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Christian Selig", + "screen_name" : "ChristianSelig", + "indices" : [ 0, 15 ], + "id_str" : "16728904", + "id" : 16728904 + }, { + "name" : "Molly Gibson Kirby", + "screen_name" : "thebookofmolly", + "indices" : [ 16, 31 ], + "id_str" : "569535995", + "id" : 569535995 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1030166850871676929", + "geo" : { }, + "id_str" : "1030169710514593792", + "in_reply_to_user_id" : 16728904, + "text" : "@ChristianSelig @thebookofmolly score! \uD83D\uDE05", + "id" : 1030169710514593792, + "in_reply_to_status_id" : 1030166850871676929, + "created_at" : "2018-08-16 19:09:33 +0000", + "in_reply_to_screen_name" : "ChristianSelig", + "in_reply_to_user_id_str" : "16728904", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Christian Selig", + "screen_name" : "ChristianSelig", + "indices" : [ 0, 15 ], + "id_str" : "16728904", + "id" : 16728904 + }, { + "name" : "Molly Gibson Kirby", + "screen_name" : "thebookofmolly", + "indices" : [ 16, 31 ], + "id_str" : "569535995", + "id" : 569535995 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1029802892688072704", + "geo" : { }, + "id_str" : "1029835649120198661", + "in_reply_to_user_id" : 16728904, + "text" : "@ChristianSelig @thebookofmolly From Victoria, can confirm they\u2019re plentiful at grocery stores here. If you don\u2019t mind absurd housing prices then come on over. It\u2019s nice enough.", + "id" : 1029835649120198661, + "in_reply_to_status_id" : 1029802892688072704, + "created_at" : "2018-08-15 21:02:06 +0000", + "in_reply_to_screen_name" : "ChristianSelig", + "in_reply_to_user_id_str" : "16728904", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Overcast", + "screen_name" : "OvercastFM", + "indices" : [ 0, 11 ], + "id_str" : "1673763672", + "id" : 1673763672 + }, { + "name" : "Steve Arenberg", + "screen_name" : "sarenberg", + "indices" : [ 12, 22 ], + "id_str" : "15533251", + "id" : 15533251 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1028716526545895425", + "geo" : { }, + "id_str" : "1028750027127181312", + "in_reply_to_user_id" : 1673763672, + "text" : "@OvercastFM @sarenberg A little repetition is fine: \u201CThere are no terms [\u2026], no rights [\u2026], and there is no loss [\u2026]\u201D", + "id" : 1028750027127181312, + "in_reply_to_status_id" : 1028716526545895425, + "created_at" : "2018-08-12 21:08:14 +0000", + "in_reply_to_screen_name" : "OvercastFM", + "in_reply_to_user_id_str" : "1673763672", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Dave Nott", + "screen_name" : "_davenott", + "indices" : [ 0, 10 ], + "id_str" : "3892042187", + "id" : 3892042187 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1027571243313184769", + "geo" : { }, + "id_str" : "1027611325961252865", + "in_reply_to_user_id" : 3892042187, + "text" : "@_davenott Maybe you could flip it around and subscribe to Pinboard\u2019s RSS feeds in any old RSS reader.", + "id" : 1027611325961252865, + "in_reply_to_status_id" : 1027571243313184769, + "created_at" : "2018-08-09 17:43:26 +0000", + "in_reply_to_screen_name" : "_davenott", + "in_reply_to_user_id_str" : "3892042187", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Ammar", + "screen_name" : "ammarmalik1", + "indices" : [ 0, 12 ], + "id_str" : "53970238", + "id" : 53970238 + }, { + "name" : "Mike R", + "screen_name" : "lightsout565", + "indices" : [ 13, 26 ], + "id_str" : "41937740", + "id" : 41937740 + }, { + "name" : "Dieter Bohn", + "screen_name" : "backlon", + "indices" : [ 27, 35 ], + "id_str" : "1090141", + "id" : 1090141 + }, { + "name" : "Steve Troughton-Smith", + "screen_name" : "stroughtonsmith", + "indices" : [ 36, 52 ], + "id_str" : "15267898", + "id" : 15267898 + }, { + "name" : "Windows Central", + "screen_name" : "windowscentral", + "indices" : [ 53, 68 ], + "id_str" : "14208474", + "id" : 14208474 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1027464807535050752", + "geo" : { }, + "id_str" : "1027530653116588032", + "in_reply_to_user_id" : 53970238, + "text" : "@ammarmalik1 @lightsout565 @backlon @stroughtonsmith @windowscentral I did t watch the video but I wonder what the random r\/w speeds are.", + "id" : 1027530653116588032, + "in_reply_to_status_id" : 1027464807535050752, + "created_at" : "2018-08-09 12:22:52 +0000", + "in_reply_to_screen_name" : "ammarmalik1", + "in_reply_to_user_id_str" : "53970238", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Eric Meyer", + "screen_name" : "meyerweb", + "indices" : [ 3, 12 ], + "id_str" : "646533", + "id" : 646533 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1027074941047336960", + "text" : "RT @meyerweb: I recently came face to face with an internet problem I didn\u2019t even know existed, because for me (and probably you), it doesn\u2026", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 195, 218 ], + "url" : "https:\/\/t.co\/UK31x447l6", + "expanded_url" : "https:\/\/meyerweb.com\/eric\/thoughts\/2018\/08\/07\/securing-sites-made-them-less-accessible\/", + "display_url" : "meyerweb.com\/eric\/thoughts\/\u2026" + } ] + }, + "geo" : { }, + "id_str" : "1026848459515723777", + "text" : "I recently came face to face with an internet problem I didn\u2019t even know existed, because for me (and probably you), it doesn\u2019t\u2014but it does for thousands or millions of people around the world. https:\/\/t.co\/UK31x447l6", + "id" : 1026848459515723777, + "created_at" : "2018-08-07 15:12:05 +0000", + "user" : { + "name" : "Eric Meyer", + "screen_name" : "meyerweb", + "protected" : false, + "id_str" : "646533", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/671335262459334657\/O6oMcV8M_normal.png", + "id" : 646533, + "verified" : false + } + }, + "id" : 1027074941047336960, + "created_at" : "2018-08-08 06:12:02 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 44, 67 ], + "url" : "https:\/\/t.co\/h00Ww4PktD", + "expanded_url" : "https:\/\/twitter.com\/gparker\/status\/1026634338438340608", + "display_url" : "twitter.com\/gparker\/status\u2026" + } ] + }, + "geo" : { }, + "id_str" : "1026651277416005632", + "text" : "I do this and I put else on a new line too. https:\/\/t.co\/h00Ww4PktD", + "id" : 1026651277416005632, + "created_at" : "2018-08-07 02:08:33 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Paul Haddad", + "screen_name" : "tapbot_paul", + "indices" : [ 0, 12 ], + "id_str" : "18247541", + "id" : 18247541 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1026561618317070336", + "geo" : { }, + "id_str" : "1026566223423660032", + "in_reply_to_user_id" : 18247541, + "text" : "@tapbot_paul No better than a Hackintosh.", + "id" : 1026566223423660032, + "in_reply_to_status_id" : 1026561618317070336, + "created_at" : "2018-08-06 20:30:34 +0000", + "in_reply_to_screen_name" : "tapbot_paul", + "in_reply_to_user_id_str" : "18247541", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1025493654142513152", + "text" : "I want to run the thread sanitizer on our camera because I suspect we have a bug there but TSAN doesn\u2019t work on devices and the sim has no camera support.\n\nIf Xcode 11 doesn\u2019t add anything except for bridging the simulator\u2019s camera to my Mac\u2019s camera I\u2019ll be thrilled.", + "id" : 1025493654142513152, + "created_at" : "2018-08-03 21:28:34 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Bob McCune", + "screen_name" : "bobmccune", + "indices" : [ 0, 10 ], + "id_str" : "14931596", + "id" : 14931596 + }, { + "name" : "Bryn Bodayle", + "screen_name" : "brynbodayle", + "indices" : [ 11, 23 ], + "id_str" : "15204679", + "id" : 15204679 + }, { + "name" : "Jonathan Lehr", + "screen_name" : "jlehr", + "indices" : [ 24, 30 ], + "id_str" : "19300977", + "id" : 19300977 + }, { + "name" : "David Smith", + "screen_name" : "Catfish_Man", + "indices" : [ 47, 59 ], + "id_str" : "15444008", + "id" : 15444008 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1024790291943972864", + "geo" : { }, + "id_str" : "1024867988598489088", + "in_reply_to_user_id" : 14931596, + "text" : "@bobmccune @brynbodayle @jlehr I\u2019m pretty sure @Catfish_Man tweeted that they\u2019ve seen apps performing storage and network I\/O in -drawRect too. Removing the view is especially crafty though.", + "id" : 1024867988598489088, + "in_reply_to_status_id" : 1024790291943972864, + "created_at" : "2018-08-02 04:02:24 +0000", + "in_reply_to_screen_name" : "bobmccune", + "in_reply_to_user_id_str" : "14931596", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2018_09.js b/public/tweets/data/js/tweets/2018_09.js new file mode 100755 index 0000000..ede0b5e --- /dev/null +++ b/public/tweets/data/js/tweets/2018_09.js @@ -0,0 +1,294 @@ +Grailbird.data.tweets_2018_09 = + [ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Christian Selig", + "screen_name" : "ChristianSelig", + "indices" : [ 0, 15 ], + "id_str" : "16728904", + "id" : 16728904 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1045694057417183232", + "geo" : { }, + "id_str" : "1045695213866385408", + "in_reply_to_user_id" : 16728904, + "text" : "@ChristianSelig class there can be substituted with AnyObject, and since there\u2019s a constraint that Self is a UIViewController (which is a class\/AnyObject) it makes the first part redundant.", + "id" : 1045695213866385408, + "in_reply_to_status_id" : 1045694057417183232, + "created_at" : "2018-09-28 15:22:21 +0000", + "in_reply_to_screen_name" : "ChristianSelig", + "in_reply_to_user_id_str" : "16728904", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Louie", + "screen_name" : "Mantia", + "indices" : [ 0, 7 ], + "id_str" : "41783", + "id" : 41783 + }, { + "name" : "\uD83C\uDF83Ish", + "screen_name" : "ishabazz", + "indices" : [ 8, 17 ], + "id_str" : "28814082", + "id" : 28814082 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1043165494579089408", + "geo" : { }, + "id_str" : "1043168827565989890", + "in_reply_to_user_id" : 41783, + "text" : "@Mantia @ishabazz Yes. One year they left a notice without attempting to deliver and I called them on it, and they basically said to give them a break on their busiest day of the year.", + "id" : 1043168827565989890, + "in_reply_to_status_id" : 1043165494579089408, + "created_at" : "2018-09-21 16:03:24 +0000", + "in_reply_to_screen_name" : "Mantia", + "in_reply_to_user_id_str" : "41783", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Steve Troughton-Smith", + "screen_name" : "stroughtonsmith", + "indices" : [ 0, 16 ], + "id_str" : "15267898", + "id" : 15267898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1042385124615225344", + "geo" : { }, + "id_str" : "1042420493918265350", + "in_reply_to_user_id" : 15267898, + "text" : "@stroughtonsmith \u201CThe iPod Touch remains a device in our lineup\u201D.", + "id" : 1042420493918265350, + "in_reply_to_status_id" : 1042385124615225344, + "created_at" : "2018-09-19 14:29:47 +0000", + "in_reply_to_screen_name" : "stroughtonsmith", + "in_reply_to_user_id_str" : "15267898", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 109, 132 ], + "url" : "https:\/\/t.co\/6kVZOJWwrt", + "expanded_url" : "https:\/\/twitter.com\/stroughtonsmith\/status\/1040867783981117440", + "display_url" : "twitter.com\/stroughtonsmit\u2026" + } ] + }, + "geo" : { }, + "id_str" : "1040987953592295426", + "text" : "Good advice. It\u2019s also time to upgrade test devices to iOS 11 before it stops being signed in a month or so. https:\/\/t.co\/6kVZOJWwrt", + "id" : 1040987953592295426, + "created_at" : "2018-09-15 15:37:23 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Peter Cooper", + "screen_name" : "peterc", + "indices" : [ 0, 7 ], + "id_str" : "33493", + "id" : 33493 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1040723744963080192", + "geo" : { }, + "id_str" : "1040739923945414656", + "in_reply_to_user_id" : 33493, + "text" : "@peterc Enterprise!", + "id" : 1040739923945414656, + "in_reply_to_status_id" : 1040723744963080192, + "created_at" : "2018-09-14 23:11:48 +0000", + "in_reply_to_screen_name" : "peterc", + "in_reply_to_user_id_str" : "33493", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Kevin Jones", + "screen_name" : "kevinrj", + "indices" : [ 3, 11 ], + "id_str" : "14740572", + "id" : 14740572 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 106, 129 ], + "url" : "https:\/\/t.co\/sDZNff0DhI", + "expanded_url" : "https:\/\/kevinrenatojones.wordpress.com\/2018\/09\/14\/my-thoughts-about-how-as-a-voiceover-user-face-id-although-accessible-is-not-very-efficient\/", + "display_url" : "kevinrenatojones.wordpress.com\/2018\/09\/14\/my-\u2026" + } ] + }, + "geo" : { }, + "id_str" : "1040669048818679808", + "text" : "RT @kevinrj: My thoughts about how as a VoiceOver user, Face ID although accessible is not very\u00A0efficient https:\/\/t.co\/sDZNff0DhI", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003EWordPress.com\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ { + "indices" : [ 93, 116 ], + "url" : "https:\/\/t.co\/sDZNff0DhI", + "expanded_url" : "https:\/\/kevinrenatojones.wordpress.com\/2018\/09\/14\/my-thoughts-about-how-as-a-voiceover-user-face-id-although-accessible-is-not-very-efficient\/", + "display_url" : "kevinrenatojones.wordpress.com\/2018\/09\/14\/my-\u2026" + } ] + }, + "geo" : { }, + "id_str" : "1040466314782035968", + "text" : "My thoughts about how as a VoiceOver user, Face ID although accessible is not very\u00A0efficient https:\/\/t.co\/sDZNff0DhI", + "id" : 1040466314782035968, + "created_at" : "2018-09-14 05:04:35 +0000", + "user" : { + "name" : "Kevin Jones", + "screen_name" : "kevinrj", + "protected" : false, + "id_str" : "14740572", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/106106300\/Kevins_head_normal.jpg", + "id" : 14740572, + "verified" : false + } + }, + "id" : 1040669048818679808, + "created_at" : "2018-09-14 18:30:10 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Steve Troughton-Smith", + "screen_name" : "stroughtonsmith", + "indices" : [ 0, 16 ], + "id_str" : "15267898", + "id" : 15267898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1040503091550932993", + "geo" : { }, + "id_str" : "1040612679696564230", + "in_reply_to_user_id" : 15267898, + "text" : "@stroughtonsmith The Xs isn\u2019t enough of an upgrade over the X for me to pay another CAD$1600+tax. Glad I don\u2019t need one for development. There\u2019s more thirst for the big one this year for sure.", + "id" : 1040612679696564230, + "in_reply_to_status_id" : 1040503091550932993, + "created_at" : "2018-09-14 14:46:11 +0000", + "in_reply_to_screen_name" : "stroughtonsmith", + "in_reply_to_user_id_str" : "15267898", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Ian Cutress", + "screen_name" : "IanCutress", + "indices" : [ 0, 11 ], + "id_str" : "317150782", + "id" : 317150782 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1039947497005821953", + "geo" : { }, + "id_str" : "1040122821064585216", + "in_reply_to_user_id" : 317150782, + "text" : "@IanCutress Gizmodo bamboozled themselves. It was plainly stated as 120 Hz touch sampling.", + "id" : 1040122821064585216, + "in_reply_to_status_id" : 1039947497005821953, + "created_at" : "2018-09-13 06:19:39 +0000", + "in_reply_to_screen_name" : "IanCutress", + "in_reply_to_user_id_str" : "317150782", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/data/js/tweets/2018_10.js b/public/tweets/data/js/tweets/2018_10.js new file mode 100755 index 0000000..18126e6 --- /dev/null +++ b/public/tweets/data/js/tweets/2018_10.js @@ -0,0 +1,415 @@ +Grailbird.data.tweets_2018_10 = +[ { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Jason Snell", + "screen_name" : "jsnell", + "indices" : [ 0, 7 ], + "id_str" : "784912", + "id" : 784912 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1052043767635632128", + "in_reply_to_user_id" : 784912, + "text" : "@jsnell Typo in the XS review: \u201Cyou\u2019re realling talking\u201D", + "id" : 1052043767635632128, + "created_at" : "2018-10-16 03:49:14 +0000", + "in_reply_to_screen_name" : "jsnell", + "in_reply_to_user_id_str" : "784912", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Martin Pilkington", + "screen_name" : "pilky", + "indices" : [ 0, 6 ], + "id_str" : "14237896", + "id" : 14237896 + }, { + "name" : "\uD83C\uDF83 AntiChristLTD \uD83C\uDF83", + "screen_name" : "chrisltd", + "indices" : [ 7, 16 ], + "id_str" : "14622477", + "id" : 14622477 + }, { + "name" : "Steve Troughton-Smith", + "screen_name" : "stroughtonsmith", + "indices" : [ 17, 33 ], + "id_str" : "15267898", + "id" : 15267898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1051908992375635970", + "geo" : { }, + "id_str" : "1051910167426523137", + "in_reply_to_user_id" : 14237896, + "text" : "@pilky @chrisltd @stroughtonsmith Proximity to the keyboard. I honestly think that\u2019s all it is. Constantly switching from hands down to one hand up and back is tiring and slow.", + "id" : 1051910167426523137, + "in_reply_to_status_id" : 1051908992375635970, + "created_at" : "2018-10-15 18:58:22 +0000", + "in_reply_to_screen_name" : "pilky", + "in_reply_to_user_id_str" : "14237896", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Martin Pilkington", + "screen_name" : "pilky", + "indices" : [ 0, 6 ], + "id_str" : "14237896", + "id" : 14237896 + }, { + "name" : "\uD83C\uDF83 AntiChristLTD \uD83C\uDF83", + "screen_name" : "chrisltd", + "indices" : [ 7, 16 ], + "id_str" : "14622477", + "id" : 14622477 + }, { + "name" : "Steve Troughton-Smith", + "screen_name" : "stroughtonsmith", + "indices" : [ 17, 33 ], + "id_str" : "15267898", + "id" : 15267898 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1051850401887264769", + "geo" : { }, + "id_str" : "1051905092910178304", + "in_reply_to_user_id" : 14237896, + "text" : "@pilky @chrisltd @stroughtonsmith You\u2019re assuming good control of the mouse. I\u2019ve never been a precision mouser so there\u2019s not much downside to me using a trackpad on that front, and there many other upsides. Not everyone loves mice and is good at using them.", + "id" : 1051905092910178304, + "in_reply_to_status_id" : 1051850401887264769, + "created_at" : "2018-10-15 18:38:12 +0000", + "in_reply_to_screen_name" : "pilky", + "in_reply_to_user_id_str" : "14237896", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "AnandTech", + "screen_name" : "anandtech", + "indices" : [ 0, 10 ], + "id_str" : "68539526", + "id" : 68539526 + }, { + "name" : "Ian Cutress", + "screen_name" : "IanCutress", + "indices" : [ 11, 22 ], + "id_str" : "317150782", + "id" : 317150782 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1050220945783296000", + "geo" : { }, + "id_str" : "1050227166405742593", + "in_reply_to_user_id" : 68539526, + "text" : "@anandtech @IanCutress A couple of typos in the Razer phone hands-on:\n\n\u201Cthat help disguise make an average camera\u201D\n\n\u201Cto becoming the norm\u201D", + "id" : 1050227166405742593, + "in_reply_to_status_id" : 1050220945783296000, + "created_at" : "2018-10-11 03:30:43 +0000", + "in_reply_to_screen_name" : "anandtech", + "in_reply_to_user_id_str" : "68539526", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Christopher Ingraham", + "screen_name" : "_cingraham", + "indices" : [ 3, 14 ], + "id_str" : "452521774", + "id" : 452521774 + } ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/_cingraham\/status\/1047931677538828288\/photo\/1", + "indices" : [ 58, 81 ], + "url" : "https:\/\/t.co\/GUEaddJmLO", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DosAGKyVsAAbiwE.jpg", + "id_str" : "1047931444268478464", + "id" : 1047931444268478464, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DosAGKyVsAAbiwE.jpg", + "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 679 + }, { + "h" : 932, + "resize" : "fit", + "w" : 930 + }, { + "h" : 932, + "resize" : "fit", + "w" : 930 + }, { + "h" : 932, + "resize" : "fit", + "w" : 930 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/GUEaddJmLO" + }, { + "expanded_url" : "https:\/\/twitter.com\/_cingraham\/status\/1047931677538828288\/photo\/1", + "indices" : [ 58, 81 ], + "url" : "https:\/\/t.co\/GUEaddJmLO", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DosAHTqUcAElB4G.jpg", + "id_str" : "1047931463830630401", + "id" : 1047931463830630401, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DosAHTqUcAElB4G.jpg", + "sizes" : [ { + "h" : 848, + "resize" : "fit", + "w" : 848 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 680 + }, { + "h" : 848, + "resize" : "fit", + "w" : 848 + }, { + "h" : 848, + "resize" : "fit", + "w" : 848 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/GUEaddJmLO" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1048472305775431680", + "text" : "RT @_cingraham: welcome to hell, please select a beverage https:\/\/t.co\/GUEaddJmLO", + "retweeted_status" : { + "source" : "\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter Web Client\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ ], + "media" : [ { + "expanded_url" : "https:\/\/twitter.com\/_cingraham\/status\/1047931677538828288\/photo\/1", + "indices" : [ 42, 65 ], + "url" : "https:\/\/t.co\/GUEaddJmLO", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DosAGKyVsAAbiwE.jpg", + "id_str" : "1047931444268478464", + "id" : 1047931444268478464, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DosAGKyVsAAbiwE.jpg", + "sizes" : [ { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 679 + }, { + "h" : 932, + "resize" : "fit", + "w" : 930 + }, { + "h" : 932, + "resize" : "fit", + "w" : 930 + }, { + "h" : 932, + "resize" : "fit", + "w" : 930 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/GUEaddJmLO" + }, { + "expanded_url" : "https:\/\/twitter.com\/_cingraham\/status\/1047931677538828288\/photo\/1", + "indices" : [ 42, 65 ], + "url" : "https:\/\/t.co\/GUEaddJmLO", + "media_url" : "http:\/\/pbs.twimg.com\/media\/DosAHTqUcAElB4G.jpg", + "id_str" : "1047931463830630401", + "id" : 1047931463830630401, + "media_url_https" : "https:\/\/pbs.twimg.com\/media\/DosAHTqUcAElB4G.jpg", + "sizes" : [ { + "h" : 848, + "resize" : "fit", + "w" : 848 + }, { + "h" : 150, + "resize" : "crop", + "w" : 150 + }, { + "h" : 680, + "resize" : "fit", + "w" : 680 + }, { + "h" : 848, + "resize" : "fit", + "w" : 848 + }, { + "h" : 848, + "resize" : "fit", + "w" : 848 + } ], + "media_alt" : "", + "display_url" : "pic.twitter.com\/GUEaddJmLO" + } ], + "hashtags" : [ ], + "urls" : [ ] + }, + "geo" : { }, + "id_str" : "1047931677538828288", + "text" : "welcome to hell, please select a beverage https:\/\/t.co\/GUEaddJmLO", + "id" : 1047931677538828288, + "created_at" : "2018-10-04 19:29:16 +0000", + "user" : { + "name" : "Christopher Ingraham", + "screen_name" : "_cingraham", + "protected" : false, + "id_str" : "452521774", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/1030445660691038208\/Uc73-Ly5_normal.jpg", + "id" : 452521774, + "verified" : true + } + }, + "id" : 1048472305775431680, + "created_at" : "2018-10-06 07:17:32 +0000", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Brandon Williams", + "screen_name" : "mbrandonw", + "indices" : [ 0, 10 ], + "id_str" : "81497619", + "id" : 81497619 + }, { + "name" : "Stephen Celis", + "screen_name" : "stephencelis", + "indices" : [ 11, 24 ], + "id_str" : "6523632", + "id" : 6523632 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1048191216297369600", + "geo" : { }, + "id_str" : "1048219839507005441", + "in_reply_to_user_id" : 81497619, + "text" : "@mbrandonw @stephencelis Ah! That makes sense. All your code\/API you designed is class-free and I stumbled on a rare exception by chance.", + "id" : 1048219839507005441, + "in_reply_to_status_id" : 1048191216297369600, + "created_at" : "2018-10-05 14:34:19 +0000", + "in_reply_to_screen_name" : "mbrandonw", + "in_reply_to_user_id_str" : "81497619", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +}, { + "source" : "\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for i\u039FS\u003C\/a\u003E", + "entities" : { + "user_mentions" : [ { + "name" : "Brandon Williams", + "screen_name" : "mbrandonw", + "indices" : [ 0, 10 ], + "id_str" : "81497619", + "id" : 81497619 + }, { + "name" : "Stephen Celis", + "screen_name" : "stephencelis", + "indices" : [ 11, 24 ], + "id_str" : "6523632", + "id" : 6523632 + } ], + "media" : [ ], + "hashtags" : [ ], + "urls" : [ ] + }, + "in_reply_to_status_id_str" : "1047967992666054657", + "geo" : { }, + "id_str" : "1048075906047082496", + "in_reply_to_user_id" : 81497619, + "text" : "@mbrandonw @stephencelis Can you elaborate? I was curious so I looked around and quickly found a DatabaseDecoder class with many methods. Looked around more and found structs with methods. I feel like I\u2019m missing something or just got lucky and found the only class by chance?", + "id" : 1048075906047082496, + "in_reply_to_status_id" : 1047967992666054657, + "created_at" : "2018-10-05 05:02:22 +0000", + "in_reply_to_screen_name" : "mbrandonw", + "in_reply_to_user_id_str" : "81497619", + "user" : { + "name" : "Sami Samhuri", + "screen_name" : "_sjs", + "protected" : false, + "id_str" : "4777951", + "profile_image_url_https" : "https:\/\/pbs.twimg.com\/profile_images\/619352398314647552\/7MsKJeYK_normal.jpg", + "id" : 4777951, + "verified" : false + } +} ] \ No newline at end of file diff --git a/public/tweets/tweets.csv b/public/tweets/tweets.csv index 62f3465..16a068b 100755 --- a/public/tweets/tweets.csv +++ b/public/tweets/tweets.csv @@ -1,4 +1,118 @@ "tweet_id","in_reply_to_status_id","in_reply_to_user_id","timestamp","source","text","retweeted_status_id","retweeted_status_user_id","retweeted_status_timestamp","expanded_urls" +"1052043767635632128","","784912","2018-10-16 03:49:14 +0000","Tweetbot for iΟS","@jsnell Typo in the XS review: “you’re realling talking”","","","","" +"1051910167426523137","1051908992375635970","14237896","2018-10-15 18:58:22 +0000","Tweetbot for iΟS","@pilky @chrisltd @stroughtonsmith Proximity to the keyboard. I honestly think that’s all it is. Constantly switching from hands down to one hand up and back is tiring and slow.","","","","" +"1051905092910178304","1051850401887264769","14237896","2018-10-15 18:38:12 +0000","Tweetbot for iΟS","@pilky @chrisltd @stroughtonsmith You’re assuming good control of the mouse. I’ve never been a precision mouser so there’s not much downside to me using a trackpad on that front, and there many other upsides. Not everyone loves mice and is good at using them.","","","","" +"1050227166405742593","1050220945783296000","68539526","2018-10-11 03:30:43 +0000","Tweetbot for iΟS","@anandtech @IanCutress A couple of typos in the Razer phone hands-on: + +“that help disguise make an average camera” + +“to becoming the norm”","","","","" +"1048472305775431680","","","2018-10-06 07:17:32 +0000","Tweetbot for iΟS","RT @_cingraham: welcome to hell, please select a beverage https://t.co/GUEaddJmLO","1047931677538828288","452521774","2018-10-04 19:29:16 +0000","https://twitter.com/_cingraham/status/1047931677538828288/photo/1,https://twitter.com/_cingraham/status/1047931677538828288/photo/1,https://twitter.com/_cingraham/status/1047931677538828288/photo/1,https://twitter.com/_cingraham/status/1047931677538828288/photo/1" +"1048219839507005441","1048191216297369600","81497619","2018-10-05 14:34:19 +0000","Tweetbot for iΟS","@mbrandonw @stephencelis Ah! That makes sense. All your code/API you designed is class-free and I stumbled on a rare exception by chance.","","","","" +"1048075906047082496","1047967992666054657","81497619","2018-10-05 05:02:22 +0000","Tweetbot for iΟS","@mbrandonw @stephencelis Can you elaborate? I was curious so I looked around and quickly found a DatabaseDecoder class with many methods. Looked around more and found structs with methods. I feel like I’m missing something or just got lucky and found the only class by chance?","","","","" +"1045695213866385408","1045694057417183232","16728904","2018-09-28 15:22:21 +0000","Tweetbot for iΟS","@ChristianSelig class there can be substituted with AnyObject, and since there’s a constraint that Self is a UIViewController (which is a class/AnyObject) it makes the first part redundant.","","","","" +"1043168827565989890","1043165494579089408","41783","2018-09-21 16:03:24 +0000","Tweetbot for iΟS","@Mantia @ishabazz Yes. One year they left a notice without attempting to deliver and I called them on it, and they basically said to give them a break on their busiest day of the year.","","","","" +"1042420493918265350","1042385124615225344","15267898","2018-09-19 14:29:47 +0000","Tweetbot for iΟS","@stroughtonsmith “The iPod Touch remains a device in our lineup”.","","","","" +"1040987953592295426","","","2018-09-15 15:37:23 +0000","Tweetbot for iΟS","Good advice. It’s also time to upgrade test devices to iOS 11 before it stops being signed in a month or so. https://t.co/6kVZOJWwrt","","","","https://twitter.com/stroughtonsmith/status/1040867783981117440" +"1040739923945414656","1040723744963080192","33493","2018-09-14 23:11:48 +0000","Tweetbot for iΟS","@peterc Enterprise!","","","","" +"1040669048818679808","","","2018-09-14 18:30:10 +0000","Tweetbot for iΟS","RT @kevinrj: My thoughts about how as a VoiceOver user, Face ID although accessible is not very efficient https://t.co/sDZNff0DhI","1040466314782035968","14740572","2018-09-14 05:04:35 +0000","https://kevinrenatojones.wordpress.com/2018/09/14/my-thoughts-about-how-as-a-voiceover-user-face-id-although-accessible-is-not-very-efficient/,https://kevinrenatojones.wordpress.com/2018/09/14/my-thoughts-about-how-as-a-voiceover-user-face-id-although-accessible-is-not-very-efficient/" +"1040612679696564230","1040503091550932993","15267898","2018-09-14 14:46:11 +0000","Tweetbot for iΟS","@stroughtonsmith The Xs isn’t enough of an upgrade over the X for me to pay another CAD$1600+tax. Glad I don’t need one for development. There’s more thirst for the big one this year for sure.","","","","" +"1040122821064585216","1039947497005821953","317150782","2018-09-13 06:19:39 +0000","Tweetbot for iΟS","@IanCutress Gizmodo bamboozled themselves. It was plainly stated as 120 Hz touch sampling.","","","","" +"1034602854751715329","","","2018-08-29 00:45:17 +0000","Tweetbot for iΟS","Not as much as it would have before the new app switching UI on the iPhone X. I’d still miss it for moving the cursor and selecting text though (space bar method is not as good). https://t.co/v8UWewexSN","","","","https://twitter.com/_inside/status/1034483068365692928" +"1034600038100430849","1034511685829226496","33493","2018-08-29 00:34:05 +0000","Tweetbot for iΟS","@peterc Do you schedule it with CloudWatch?","","","","" +"1034599335856488449","1034120756689420292","163154809","2018-08-29 00:31:18 +0000","Tweetbot for iΟS","@alicegoldfuss usenet","","","","" +"1034597804901974018","","","2018-08-29 00:25:13 +0000","Tweetbot for iΟS","RT @panic: ✨ PANIC GAME NEWS ✨ Our next video game project is… ""Untitled Goose Game"" by @house_house_! It is a lovely day in the village an…","1034485699817267201","6687652","2018-08-28 16:59:45 +0000","https://goose.game/,https://twitter.com/panic/status/1034485699817267201/photo/1" +"1034260132878639104","1034256925628620801","4777951","2018-08-28 02:03:25 +0000","Tweetbot for iΟS","@macatbook @LunaDisplayHQ Here’s the simulator: https://t.co/yYOKX87s3F","","","","https://twitter.com/_sjs/status/1034260132878639104/video/1" +"1034256925628620801","1034251089237827584","22406953","2018-08-28 01:50:41 +0000","Tweetbot for iΟS","@macatbook @LunaDisplayHQ No contest, Luna smokes it! And it seems more reliable (although I did have to replug it once so far, so it’s not perfect). With Duet I get big grey blocks and major lag, even tethered.","","","","" +"1034249839733694464","","","2018-08-28 01:22:31 +0000","Tweetbot for Mac","So @LunaDisplayHQ is the real deal! Works pretty nicely with the iOS simulator and is great for Slack or a terminal or whatever else you'd normally put on a second display. + +The sim felt so natural that I tried to pinch zoom without thinking about it!","","","","" +"1032170971099291648","1031976933351813120","733813","2018-08-22 07:41:50 +0000","Tweetbot for iΟS","@stevenf @siracusa It worked for me when using an AirPort router. I didn’t have any luck manually configuring ports with other routers.","","","","" +"1030795437752676352","1030793206663983104","14375294","2018-08-18 12:35:58 +0000","Tweetbot for iΟS","@bitfield Fair enough. I am speaking from my own real experience though so I guess everyone’s different. I’ve rewritten plenty of shell scripts in other languages. + +All the points at the bottom of the article are true regardless though. Starting in another language isn’t a bad idea.","","","","" +"1030792458978947072","1030779089911795714","14375294","2018-08-18 12:24:08 +0000","Tweetbot for iΟS","@bitfield I guess you just have to have the discipline to rewrite it when it’s time. If you don’t wait too long it doesn’t take long. I have no problem spending a few minutes to translate shell to Ruby and you can do it piecemeal by shelling out from Ruby when it’s more efficient to do so.","","","","" +"1030194524969213952","","","2018-08-16 20:48:09 +0000","Tweetbot for iΟS","RT @jacobrothstein: Chronological timeline of exactly the things tweeted by the people I follow.","1030194462117359617","27302287","2018-08-16 20:47:54 +0000","" +"1030194223860129792","","","2018-08-16 20:46:57 +0000","Tweetbot for iΟS","RT @raganwald: Dear @robjohnson: + +You keep using this word “respect.” I don’t think it means, what you think it means. https://t.co/JbEEfct…","1030193871068770305","18137723","2018-08-16 20:45:33 +0000","https://twitter.com/robjohnson/status/1030122326480715777" +"1030179936198451205","","","2018-08-16 19:50:11 +0000","Tweetbot for iΟS","RT @AstroKatie: What I want to see on Twitter: the tweets voluntarily tweeted by people I choose to follow, in order +What Twitter wants to…","1029907461426356224","33773592","2018-08-16 01:47:28 +0000","" +"1030179160113770499","","","2018-08-16 19:47:06 +0000","Tweetbot for iΟS","RT @mjtsai: Twitter Company Email Addresses Why It’s #BreakingMyTwitter: https://t.co/JzPWdTLWqi #mjtsaiblog","1030168361018241024","8011702","2018-08-16 19:04:11 +0000","https://mjtsai.com/blog/2018/08/16/twitter-company-email-addresses-why-its-breakingmytwitter/,https://mjtsai.com/blog/2018/08/16/twitter-company-email-addresses-why-its-breakingmytwitter/" +"1030178006852096006","","","2018-08-16 19:42:31 +0000","Tweetbot for iΟS","RT @avibryant: ""These APIs were only used by 1% of our developers"" is so meaningless I can only believe it was selected in bad faith as the…","1030166900972511232","13192","2018-08-16 18:58:23 +0000","https://twitter.com/robjohnson/status/1030122316875747328" +"1030178000812363783","","","2018-08-16 19:42:29 +0000","Tweetbot for iΟS","This is obvious bullshit. Everyone I know who’s been using Twitter for 10+ years has the exact same complaints. It’s almost impressive at how bad Twitter is at stewarding their own platform. It’s sad how hard they’re trying to drive us away. #BreakingMyTwitter https://t.co/63VnK8kfkD","","","","https://twitter.com/robjohnson/status/1030122332243734528" +"1030175820357222400","1030174695986028545","4777951","2018-08-16 19:33:49 +0000","Tweetbot for iΟS","@robjohnson Your apps don’t just show me tweets from people I follow in order. There’s always some other junk I don’t care about. + +If third party apps go away I’ll probably just stop using Twitter. That’s how bad your apps are. It’s not even close to the same experience. You ruined Tweetie.","","","","" +"1030174695986028545","1030122332243734528","6264412","2018-08-16 19:29:21 +0000","Tweetbot for iΟS","@robjohnson I want to read tweets oldest to newest, and have my place synced between devices. That’s half of it. Since you’ll never do that I’ll never use your apps. + +Also Tweetbot and Twitterrific are just pleasant to use. Swipes to do common actions on tweets, themes, etc. Different beasts","","","","" +"1030169710514593792","1030166850871676929","16728904","2018-08-16 19:09:33 +0000","Tweetbot for iΟS","@ChristianSelig @thebookofmolly score! 😅","","","","" +"1029835649120198661","1029802892688072704","16728904","2018-08-15 21:02:06 +0000","Tweetbot for iΟS","@ChristianSelig @thebookofmolly From Victoria, can confirm they’re plentiful at grocery stores here. If you don’t mind absurd housing prices then come on over. It’s nice enough.","","","","" +"1028750027127181312","1028716526545895425","1673763672","2018-08-12 21:08:14 +0000","Tweetbot for iΟS","@OvercastFM @sarenberg A little repetition is fine: “There are no terms […], no rights […], and there is no loss […]”","","","","" +"1027611325961252865","1027571243313184769","3892042187","2018-08-09 17:43:26 +0000","Tweetbot for iΟS","@_davenott Maybe you could flip it around and subscribe to Pinboard’s RSS feeds in any old RSS reader.","","","","" +"1027530653116588032","1027464807535050752","53970238","2018-08-09 12:22:52 +0000","Tweetbot for iΟS","@ammarmalik1 @lightsout565 @backlon @stroughtonsmith @windowscentral I did t watch the video but I wonder what the random r/w speeds are.","","","","" +"1027074941047336960","","","2018-08-08 06:12:02 +0000","Tweetbot for iΟS","RT @meyerweb: I recently came face to face with an internet problem I didn’t even know existed, because for me (and probably you), it doesn…","1026848459515723777","646533","2018-08-07 15:12:05 +0000","https://meyerweb.com/eric/thoughts/2018/08/07/securing-sites-made-them-less-accessible/" +"1026651277416005632","","","2018-08-07 02:08:33 +0000","Tweetbot for iΟS","I do this and I put else on a new line too. https://t.co/h00Ww4PktD","","","","https://twitter.com/gparker/status/1026634338438340608" +"1026566223423660032","1026561618317070336","18247541","2018-08-06 20:30:34 +0000","Tweetbot for iΟS","@tapbot_paul No better than a Hackintosh.","","","","" +"1025493654142513152","","","2018-08-03 21:28:34 +0000","Tweetbot for iΟS","I want to run the thread sanitizer on our camera because I suspect we have a bug there but TSAN doesn’t work on devices and the sim has no camera support. + +If Xcode 11 doesn’t add anything except for bridging the simulator’s camera to my Mac’s camera I’ll be thrilled.","","","","" +"1024867988598489088","1024790291943972864","14931596","2018-08-02 04:02:24 +0000","Tweetbot for iΟS","@bobmccune @brynbodayle @jlehr I’m pretty sure @Catfish_Man tweeted that they’ve seen apps performing storage and network I/O in -drawRect too. Removing the view is especially crafty though.","","","","" +"1024085227704963072","1024016301105274880","9306182","2018-07-31 00:11:59 +0000","Tweetbot for iΟS","@rsebbe Yup. That’s exactly what they’re doing. https://t.co/Eg9JUA1pZO","","","","https://twitter.com/_sjs/status/1016712893155323904" +"1023974841689366530","1023973303600513026","25401953","2018-07-30 16:53:21 +0000","Tweetbot for iΟS","@steipete No we use separate builds. Maybe we should check at runtime though. I’ll have to look into that.","","","","" +"1023966421250760704","1023964970747342849","25401953","2018-07-30 16:19:53 +0000","Tweetbot for iΟS","@steipete Yeah we use conditional compilation to set the build configuration and our server automatically hands out subscriptions when it’s a beta build. We’ll have to watch out for abuse.","","","","" +"1023964030182912000","1023876355266633729","25401953","2018-07-30 16:10:23 +0000","Tweetbot for iΟS","@steipete We give our beta testers a comped subscription while they’re using a beta build.","","","","" +"1023718184057098241","1023621189623787520","17113536","2018-07-29 23:53:29 +0000","Tweetbot for iΟS","@palmin @steipete Their software was also broken by 10.13 so they already only work on 10.12 and say Apple needs to fix a bug. Since OpenGL is now deprecated they gave up entirely.","","","","" +"1023234150394814468","1023195340533624832","174187246","2018-07-28 15:50:06 +0000","Tweetbot for iΟS","@Dale_Buckley @steipete Just wait until you’re on Xcode 10. It’ll be even faster.","","","","" +"1022856680814534659","1022855998854389760","16004268","2018-07-27 14:50:11 +0000","Tweetbot for iΟS","@myell0w I’d try a CAShapeLayer drawn with PaintCode first.","","","","" +"1021832748170760192","1021819830658248704","6503412","2018-07-24 19:01:26 +0000","Tweetbot for Mac","@sdw @stroughtonsmith @panzer I saw it happen while setting up my new 13” MBP. Start a fresh Dropbox sync and do literally anything else and off it goes throttling down below 1 GHz every couple of seconds.","","","","" +"1021063398325288961","1021063266464911361","25401953","2018-07-22 16:04:19 +0000","Tweetbot for iΟS","@steipete Yes! 2 years ago this would have taken us a month instead of a week.","","","","" +"1021063056774737920","1021059847603802112","25401953","2018-07-22 16:02:57 +0000","Tweetbot for iΟS","@steipete I hear you man. We’ve been going like this since the 13th. It’s rough! https://t.co/Bh5ngeFO8Q","","","","https://twitter.com/_sjs/status/1021063056774737920/photo/1" +"1020050807864012805","1020040889173970944","8011702","2018-07-19 21:00:38 +0000","Tweetbot for iΟS","@mjtsai Just to keep everyone on their toes the Apple Store app shows an identical looking dialog that is part of the app itself.","","","","" +"1019816331066003456","1019815668068184064","39398109","2018-07-19 05:28:55 +0000","Tweetbot for iΟS","@alanzeino @gekitz Ah, yeah that’s a problem. People benchmark Artsy’s eigen project but it’s not very large. Might work though. + +https://t.co/SoOQ0OFdIX","","","","https://github.com/ashfurrow/xcode-hardware-performance/" +"1019814518317244416","1019810788331085824","39398109","2018-07-19 05:21:43 +0000","Tweetbot for iΟS","@alanzeino @gekitz Any chance you could have xcodebuild run in a loop and see if it throttles after 20-30 min?","","","","" +"1017044150191968256","1016951437421699072","3892042187","2018-07-11 13:53:15 +0000","Tweetbot for iΟS","@_davenott I’ve been super happy with @feedbin and @unread_app on my phone for years now. On iPad and desktops I use the very nice Feedbin website directly.","","","","" +"1016712893155323904","","","2018-07-10 15:56:57 +0000","Tweetbot for iΟS","PSA: If your build time is measured in minutes and not seconds then quitting Dropbox will probably give you a noticeable boost. It’s a performance virus, like AV software.","","","","" +"1015782259322834944","1015781400786690048","8142952","2018-07-08 02:18:57 +0000","Tweetbot for iΟS","@mikeash @MalcolmTeas I’m thinking more about scams like this one with a real box and fake phone: https://t.co/ufzcSHExfz","","","","https://www.cbc.ca/news/canada/toronto/iphone-scam-kijiji-1.4463242" +"1015781153511358470","1015777857770049536","8142952","2018-07-08 02:14:33 +0000","Tweetbot for iΟS","@mikeash @MalcolmTeas Worth mentioning that not everyone who wants to buy one is on the level. They’re useful for scams.","","","","" +"1010317026198413313","1010200251414835200","192049159","2018-06-23 00:22:04 +0000","Tweetbot for Mac","@JALsnipe @chockenberry Looks like they got rid of 2 hacks in Mojave. https://t.co/seBlHI8f25","","","","https://twitter.com/_sjs/status/1010317026198413313/photo/1" +"1009845326897819648","","2239775923","2018-06-21 17:07:42 +0000","Twitter Web Client","@zeplin Hey there, 2 bug reports for you: 1) Clicking ""Contact Us"" on your website doesn't do anything (in Safari anyway), and 2) When I set a custom name for an asset in the Mac app (2.0) it carries over to other assets in different screens as well (maybe w/ same name?)","","","","" +"1009817006005092352","1009816359142764546","4777951","2018-06-21 15:15:10 +0000","Tweetbot for iΟS","@_davenott I think certain vocal people who insist on 5k being “correct” for retina at 27” probably haven’t even tried 4k at effective 2560x1440. Would I take 5k over 4k? Of course. But not at more than double the cost. + +I run my MacBooks at less-than-2x scaled modes too and it’s great.","","","","" +"1009816359142764546","1009772203251036160","3892042187","2018-06-21 15:12:36 +0000","Tweetbot for iΟS","@_davenott Not for me. I work on a 5k iMac next to a 4k 27” display all day, both running at effective 2560x1440 (iMac doubled, 4k not quite doubled). I cannot tell the difference unless I get really close. + +It’s not that I’m not picky either. After a 3x phone I couldn’t go back to 2x.","","","","" +"1008745545538498560","1008730428348477440","3091486882","2018-06-18 16:17:34 +0000","Twitter Web Client","@_mschwarz_ @myell0w Thanks! We're not allocating images that big but I'm going to experiment with that code and see if I can reproduce the crashes we've been seeing.","","","","" +"1008728057497047040","1008723136735563776","16004268","2018-06-18 15:08:04 +0000","Tweetbot for iΟS","@myell0w I might be! Not sure of the cause. Can you share the example project somewhere?","","","","" +"1008013172261810176","1008012425369534465","4777951","2018-06-16 15:47:22 +0000","Tweetbot for iΟS","@_davenott I don’t mean to sound like a big naysayer. They’re fun projects and lots of people seem to have success with them. Getting it all working or mostly working and having a machine tailored to your actual needs is satisfying too.","","","","" +"1008012425369534465","1008011703257391105","3892042187","2018-06-16 15:44:24 +0000","Tweetbot for iΟS","@_davenott It’s been almost 4 years since my last one so my experience is a bit dated (I never used Clover), but I’ve heard that too. I think YMMV based on reddit/forum posts I’ve seen but it sounds more promising for sure.","","","","" +"1008008909376794624","1008003601548103680","3892042187","2018-06-16 15:30:26 +0000","Tweetbot for iΟS","@_davenott Having a fallback would definitely be comforting! + +I recommend browsing around /r/hackintosh on reddit to get a feel for the kind of problems you’ll encounter. e.g. Messages is notoriously difficult to get working, but you may not care.","","","","" +"1007995832736419840","1007994989136056320","4777951","2018-06-16 14:38:28 +0000","Tweetbot for iΟS","@_davenott Nightmare is a strong word. Let’s just say that if you rely on being on the latest software then it’s far from ideal. If you can be up to one major OS version behind it may not be so bad.","","","","" +"1007994989136056320","1007746581280542720","3892042187","2018-06-16 14:35:07 +0000","Tweetbot for iΟS","@_davenott I’ve built 2 Hackintoshes for iOS development work and both times I was very happy to switch back to a real Mac after less than a year. + +I still feel the allure but I can’t bring myself to build an expensive machine that’s going to be an almost guaranteed maintenance nightmare.","","","","" +"1007365738443694080","1007306984444399616","866737401640624128","2018-06-14 20:54:42 +0000","Tweetbot for iΟS","@AaronKreipe @sgtholly @steipete @stroughtonsmith Rewriting everything is not a recipe for stability.","","","","" +"1007281941555474433","1007280183290875906","672453","2018-06-14 15:21:43 +0000","Tweetbot for iΟS","@gordonmb @nicolasfurno @stroughtonsmith Yes, having computers that are always on can make for a frustrating experience. That’s why I stopped storing git repos in Dropbox. Doing a git add and then seeing it undone immediately because of a Dropbox conflict is very annoying.","","","","" +"1007281313181622272","1007280512015175685","458749710","2018-06-14 15:19:14 +0000","Tweetbot for iΟS","@JakubTesarek Oh, yeah I agree there’s no reason for them to keep your credit card for sure. Also if they’re actually calling or emailing you that’s bad.","","","","" +"1007276137670574080","1007184784173490176","458749710","2018-06-14 14:58:40 +0000","Tweetbot for iΟS","@JakubTesarek Isn’t that true though? I know that we’re not just allowed to but supposed to keep enough info to have a record of disclosure and erasure requests. I’d assume that goes for other legal reasons too.","","","","" +"1006757227863027712","1006712324625821696","317150782","2018-06-13 04:36:42 +0000","Twitter for iPhone","@IanCutress Hardware and performance.","","","","" +"1006028587063885824","1006020483295346689","25401953","2018-06-11 04:21:20 +0000","Tweetbot for iΟS","@steipete https://t.co/1VL8532O5e app has problems with the new mic permission. Seems alright overall though.","","","","http://zoom.us" +"1004538828562956288","1004419906182447104","14615235","2018-06-07 01:41:34 +0000","Tweetbot for iΟS","@jlongster @dangoor It’s funny. People talk about X fatigue as if they have no choice but to use every new thing they read about. It’s a choice!","","","","" +"1004534068896133120","1004446439533993984","217077000","2018-06-07 01:22:40 +0000","Tweetbot for iΟS","@nexusCFX Xcode’s dark mode has poor contrast too. I find it harder to read, no question.","","","","" +"1002193955868430342","1002157418170736640","4295181","2018-05-31 14:23:53 +0000","Tweetbot for iΟS","@chriseidhof It’s not your imagination! When you’re making good food at home you realize that a lot of restaurants aren’t actually _that_ good or special.","","","","" +"1001975449281552384","","","2018-05-30 23:55:37 +0000","Tweetbot for iΟS","RT @__Jonathanks: Reading @raganwald's JavaScript Allonge, all was going fine and sweet until I got to the Y combinator. I just don't get i…","1001077929458225152","879793790936113152","2018-05-28 12:29:12 +0000","" +"999660167158349824","999588615083773952","33493","2018-05-24 14:35:31 +0000","Tweetbot for iΟS","@peterc Some places will need your PIN. Last year when I was in SF a restaurant kept telling me my cards were declined but the problem was they weren’t having me enter my PIN. 🤦🏻‍♂️","","","","" +"997489944410181634","997489650167148544","4777951","2018-05-18 14:51:49 +0000","Tweetbot for iΟS","@codinghorror Twitter doesn’t make sense without 3rd party apps, for me. It’s amazing how bad they’ve been at stewarding their own damn platform 😢","","","","" +"997489650167148544","997207153214554113","5637652","2018-05-18 14:50:39 +0000","Tweetbot for iΟS","@codinghorror I wouldn’t have started using it without a 3rd party client. I signed up in 2007 and didn’t use it until I got an iPhone and Tweetie in 2009/2010. + +If 3rd party clients disappear I’ll stop using Twitter because their own apps are ... not good.","","","","" +"992049215214768128","991879537414696960","1919231","2018-05-03 14:32:18 +0000","Tweetbot for iΟS","@cabel @stroughtonsmith Don’t feed wild animals 😿🤦🏻‍♀️🙅🏻‍♀️","","","","" "983723302945370114","983451666300243971","9083342","2018-04-10 15:08:06 +0000","Tweetbot for iΟS","@ThatJPWing We’re discussing this at my place next week. I’ll shoot you an invite.","","","","" "982511683561111552","","","2018-04-07 06:53:34 +0000","Tweetbot for iΟS","RT @MH3129: .@Twitter, I am blind and I rely on third-party apps like @Twitterrific and OpenTween because your website and iOS app are not…","982336815553241088","15738612","2018-04-06 19:18:42 +0000","" "982294566320525312","","","2018-04-06 16:30:49 +0000","Tweetbot for iΟS","RT @chockenberry: If you love your third-party Twitter app, I’ve got some really shitty news for you: https://t.co/W1C21QSnZW @@ -15,14 +129,12 @@ Also on a slight tangent there’s “beg the question”. An old favourite.","" "973953715538345984","","","2018-03-14 16:07:15 +0000","Tweetbot for iΟS","We drink. https://t.co/PBCC5ywvX9","","","","https://twitter.com/jeremyckahn/status/968845690175655936" "973780157080260608","","","2018-03-14 04:37:36 +0000","Tweetbot for iΟS","RT @snarfmason: Reading @mattly on timezones was a nice reminder that time zones exist for a reason, concepts of time like ""noon"" are meani…","973612127054213120","108814849","2018-03-13 17:29:54 +0000","https://lyonheart.us/articles/understanding-time-zones/" "972500605649367040","","","2018-03-10 15:53:07 +0000","Tweetbot for iΟS","We have a choice about how to react to things. A lot of the time our reactions only make things worse. Pay attention to your reactions. https://t.co/zcQsSpeIv6","","","","https://twitter.com/chriseidhof/status/972468057636573184" -"971202944912666624","","","2018-03-07 01:56:40 +0000","Tweetbot for iΟS","RT @chronic: random fun fact: I believe some of the binaries were code signed by Apple employee dev certs in that first build. one was a gu…","971158111758241794","86315276","2018-03-06 22:58:31 +0000","http://mac.com" "971060334214627328","971059034198593537","770391","2018-03-06 16:29:59 +0000","Tweetbot for iΟS","@McCarron @jamesthomson What’s the uncompressed size? Xcode 9 must be at least 4x the size at almost 10 GB these days.","","","","" "970058679914455040","970045215661805569","231756759","2018-03-03 22:09:46 +0000","Tweetbot for iΟS","@olebegemann @steipete @sebastienmichoy @PSPDFKit Treat people like smart adults. Give them the info and let them decide. This trend of withholding dates is so annoying. Let’s hope it’s a fad. People have been dating writing for centuries. Knowing when things were written is relevant.","","","","" "969728586318995456","","","2018-03-03 00:18:06 +0000","Tweetbot for iΟS","RT @_inside: 🤓 post alert: How I discovered Instagram's upcoming video calling feature on iOS https://t.co/Dpv2dfGCWk","969617015177662464","8307912","2018-03-02 16:54:45 +0000","https://medium.com/@guilhermerambo/how-i-discovered-instagrams-upcoming-video-calling-feature-on-ios-934d7085da57,https://medium.com/@guilhermerambo/how-i-discovered-instagrams-upcoming-video-calling-feature-on-ios-934d7085da57" "969268231386021888","","","2018-03-01 17:48:49 +0000","Tweetbot for iΟS","I don’t think I have a use for this right now but what a great idea and execution. Regexes on permissions is a cool and nerdy touch. https://t.co/IfQnuu4ERL","","","","https://twitter.com/dmartincy/status/969210115806171141" -"968367541893713920","","","2018-02-27 06:09:48 +0000","Tweetbot for iΟS","RT @chronic: I am most curious about this one. iOS apps are generally not supposed to do much in the background, yet the packet tunnel prov…","968256765744775168","86315276","2018-02-26 22:49:36 +0000","https://twitter.com/chronic/status/968255384401203200" "965318111745400832","965301484144377856","894911","2018-02-18 20:12:27 +0000","Tweetbot for iΟS","@JimRoepcke That’s some cartoon luck right there. Hope it’s actually all ok!","","","","" "964539615980945408","964449981070536705","1530096708","2018-02-16 16:38:59 +0000","Tweetbot for iΟS","@jesslynnrose Writing scripts for pirch and mIRC chat clients in the mid 90s.","","","","" "964179685545467904","","","2018-02-15 16:48:45 +0000","Tweetbot for iΟS","Even if you’re using open source libraries and the connection is encrypted end-to-end you could be attacked if you’re not auditing the code (and let’s be honest, most of us are not and probably don’t have time to). @@ -32,14 +144,14 @@ Don’t take on new dependencies lightly. https://t.co/q4vg46At47","","","","htt https://t.co/O2anxXxeh1","","","","http://facebook.com,https://gkoberger.github.io/stacksort/" "963879956530024449","963873836050497536","11973362","2018-02-14 20:57:44 +0000","Tweetbot for iΟS","@typeoneerror lol! Perhaps only simple once it’s been explained. I should write a short article on auto-layout tricks.","","","","" -"963855862295969792","963852828576923649","4777951","2018-02-14 19:21:59 +0000","Tweetbot for Mac","The solution is pretty simple too, it’s just knowing how to set it all up. https://t.co/DpS59moflQ","","","","https://twitter.com/_sjs/status/963855862295969792/photo/1" -"963852828576923649","","","2018-02-14 19:09:56 +0000","Tweetbot for Mac","4 years later I’m still learning auto-layout. Today I figured out how to get a scroll view to hug a multiline label, and have the scroll view expand to fill the available height before scrolling. +"963855862295969792","963852828576923649","4777951","2018-02-14 19:21:59 +0000","Tweetbot for Mac","The solution is pretty simple too, it’s just knowing how to set it all up. https://t.co/DpS59moflQ","","","","https://twitter.com/_sjs/status/963855862295969792/photo/1" +"963852828576923649","","","2018-02-14 19:09:56 +0000","Tweetbot for Mac","4 years later I’m still learning auto-layout. Today I figured out how to get a scroll view to hug a multiline label, and have the scroll view expand to fill the available height before scrolling. And the solution is way better than just reverting to manual layout (to me anyway).","","","","" "963118945052995585","963118798474752000","22961921","2018-02-12 18:33:45 +0000","Tweetbot for iΟS","@ecetweets Yowzers!","","","","" "963112562127548416","963099381112233985","22961921","2018-02-12 18:08:23 +0000","Tweetbot for iΟS","@ecetweets I haven’t used one of these personally but at that price you might want to check out waterproof cases for a camera you already have. REI or B&H probably carry them!","","","","" "956982991846178818","956980409903988736","3258316237","2018-01-26 20:11:39 +0000","Tweetbot for iΟS","@slava_pestov @ematejska I’m so excited about the gains! Big improvement to my daily work here. 🙏🏼","","","","" -"956959708539006976","956952639593357312","824415437496610816","2018-01-26 18:39:08 +0000","Tweetbot for Mac","@ematejska @slava_pestov That was a debug build with no optimization, new build system. +"956959708539006976","956952639593357312","824415437496610816","2018-01-26 18:39:08 +0000","Tweetbot for Mac","@ematejska @slava_pestov That was a debug build with no optimization, new build system. Interestingly the release build with WMO had basically no change, from 150s to 155s. @@ -62,7 +174,7 @@ Mixed iOS app with 40k Swift lines and 18k ObjC. Fair number of extensions in Sw "949314752441868293","","","2018-01-05 16:20:49 +0000","Tweetbot for iΟS","RT @Cupcakes_n_Rap: 🇨🇦 Ok, there's a lot of salty randos in my mentions telling me I obviously don't understand basic economics. I'll expla…","948942199596703745","146317151","2018-01-04 15:40:25 +0000","" -"949050797521645568","949050635512463360","39398109","2018-01-04 22:51:57 +0000","Tweetbot for Mac","@alanzeino @rjchatfield Good to know. Thanks!","","","","" +"949050797521645568","949050635512463360","39398109","2018-01-04 22:51:57 +0000","Tweetbot for Mac","@alanzeino @rjchatfield Good to know. Thanks!","","","","" "948952310029328384","948862004130918403","19316116","2018-01-04 16:20:36 +0000","Tweetbot for iΟS","@danmux @timbray Many of us are here because of an insatiable curiosity about how technology works.","","","","" "948818894151561216","948626095099670528","39398109","2018-01-04 07:30:27 +0000","Tweetbot for iΟS","@alanzeino @rjchatfield New build system? WMO?","","","","" "948816157758308352","948634197576396800","1855381","2018-01-04 07:19:34 +0000","Tweetbot for iΟS","@artman Thank you! 🙏🏼","","","","" @@ -98,7 +210,7 @@ StackOverflow clobbers at least ctrl-b.","","","","https://jblevins.org/log/kbd" "930122602500177920","930122120373272576","4777951","2017-11-13 17:18:03 +0000","Tweetbot for iΟS","@merowing_ So how’s the phone so far? Heavy but feels really nice right? I love the steel band.","","","","" "930122120373272576","930121979583135745","289246577","2017-11-13 17:16:08 +0000","Tweetbot for iΟS","@merowing_ Nice. I like their watch app for 2fa codes too.","","","","" "930121882069753857","930114772346994689","289246577","2017-11-13 17:15:12 +0000","Tweetbot for iΟS","@merowing_ You need a better app. Try 1Password or Authy.","","","","" -"929429690158157825","","","2017-11-11 19:24:40 +0000","Twitterrific for Mac","Quickly kill apps on the iPhone X: enter multitasking, tap and hold to show the close icons, but ignore those! Instead, keep your finger down and fling up to kill. You can keep flinging other apps too. +"929429690158157825","","","2017-11-11 19:24:40 +0000","Twitterrific for Mac","Quickly kill apps on the iPhone X: enter multitasking, tap and hold to show the close icons, but ignore those! Instead, keep your finger down and fling up to kill. You can keep flinging other apps too. @atpfm","","","","" "928476236342378496","928475330033041408","436117419","2017-11-09 04:15:59 +0000","Tweetbot for iΟS","@ian_mcdowell Yes but you also have to use a launch xib. We were almost spared from dealing with it. Until it wasn’t zero (landscape app so on the sides).","","","","" @@ -163,7 +275,7 @@ https://t.co/fbXwdCtRZh https://t.co/Nm9jmw0GSL","894328852398428161","18137723" ""No, because..."" <fumbles around for sunglasses, puts them on wrong, readjusts, looks up> 😎 ""I u…","877528257134034944","234859654","2017-06-21 14:06:54 +0000","" -"876847525918945281","","","2017-06-19 17:01:55 +0000","Tweetbot for Mac","It’s Martini Day. If you like martinis plan your evening accordingly. 🍸","","","","" +"876847525918945281","","","2017-06-19 17:01:55 +0000","Tweetbot for Mac","It’s Martini Day. If you like martinis plan your evening accordingly. 🍸","","","","" "875938599845351424","875872197713293312","15267898","2017-06-17 04:50:11 +0000","Tweetbot for iΟS","@stroughtonsmith Don't discount the work that goes into the interesting things you say! Bought you a dinner on PayPal.","","","","" "875882915913023488","","","2017-06-17 01:08:54 +0000","Tweetbot for iΟS","iOS 11 removes app switching via a hard swipe from the left edge. I use that all the time and prefer it to double tapping home. Oh well!","","","","" "875731420693397508","","","2017-06-16 15:06:55 +0000","Tweetbot for iΟS","RT @rickasaurus: As CTO my primary responsibility is to stop myself from rewriting all of the legacy systems alone in a manic fury.","875155083377430528","16377511","2017-06-15 00:56:46 +0000","" @@ -175,11 +287,11 @@ Spaces are always displayed correctly by every tool, without configuring magic c "874476867457138689","","","2017-06-13 04:01:46 +0000","Tweetbot for iΟS","RT @hamzasood: The new control centre has a (system only) plugin mechanism. Example plugins on Github: https://t.co/TQgtATrDXP https://t.co…","874365037913178117","391647694","2017-06-12 20:37:24 +0000","https://github.com/hamzasood/CustomControlCenterModules,https://github.com/hamzasood/CustomControlCenterModules,https://twitter.com/hamzasood/status/874365037913178117/video/1" -"874344916037451777","","","2017-06-12 19:17:27 +0000","Tweetbot for Mac","Auto-play video ad starts. My initial reaction: “Man, this Aphex Twin track is getting really weird!”","","","","" -"874344274774507520","874321085155516416","4777951","2017-06-12 19:14:54 +0000","Tweetbot for Mac","Looks like the overlay appears after 1-2 seconds in the video, but we’re cutting 1s videos so it never shows up. https://t.co/9ltyxmF2m9","","","","http://openradar.appspot.com/radar?id=6172928408289280" -"874321085155516416","874319196930269184","4777951","2017-06-12 17:42:45 +0000","Tweetbot for Mac","Tried adding the CA tool container layer to a view for debugging (docs say don’t do that) and it doesn’t appear BUT it now works. 😂 or 😭?","","","","" -"874319196930269184","874317692018147329","4777951","2017-06-12 17:35:15 +0000","Tweetbot for Mac","Who’s using AVVideoCompositionCoreAnimationTool to overlay layers on video? Does it still work for you on iOS 11?","","","","" -"874317692018147329","","","2017-06-12 17:29:16 +0000","Tweetbot for Mac","😭 https://t.co/v0ri8DDJ55","","","","https://twitter.com/_sjs/status/874317692018147329/photo/1" +"874344916037451777","","","2017-06-12 19:17:27 +0000","Tweetbot for Mac","Auto-play video ad starts. My initial reaction: “Man, this Aphex Twin track is getting really weird!”","","","","" +"874344274774507520","874321085155516416","4777951","2017-06-12 19:14:54 +0000","Tweetbot for Mac","Looks like the overlay appears after 1-2 seconds in the video, but we’re cutting 1s videos so it never shows up. https://t.co/9ltyxmF2m9","","","","http://openradar.appspot.com/radar?id=6172928408289280" +"874321085155516416","874319196930269184","4777951","2017-06-12 17:42:45 +0000","Tweetbot for Mac","Tried adding the CA tool container layer to a view for debugging (docs say don’t do that) and it doesn’t appear BUT it now works. 😂 or 😭?","","","","" +"874319196930269184","874317692018147329","4777951","2017-06-12 17:35:15 +0000","Tweetbot for Mac","Who’s using AVVideoCompositionCoreAnimationTool to overlay layers on video? Does it still work for you on iOS 11?","","","","" +"874317692018147329","","","2017-06-12 17:29:16 +0000","Tweetbot for Mac","😭 https://t.co/v0ri8DDJ55","","","","https://twitter.com/_sjs/status/874317692018147329/photo/1" "873949133425356800","873852293870997504","9088822","2017-06-11 17:04:45 +0000","Tweetbot for iΟS","@kaishin @zwaldowski I want consistency between apps on my machine, not with the GitHub app on other systems I don't use. This is nonsense.","","","","" "873377442169208832","","","2017-06-10 03:13:03 +0000","Tweetbot for iΟS","RT @gregtitus: Too. Many. WWDC. Sessions. @@ -193,8 +305,8 @@ My brain has melted. It’s in a puddle mumbling about dragging and dropping AR "856519321496858624","856519078709690369","668243","2017-04-24 14:44:54 +0000","Tweetbot for iΟS","@dmoren @bleedsixcolors Indeed! And I didn't about about the iCloud trick. It's a good tip regardless.","","","","" "856518882550362112","856503342830407680","2786220516","2017-04-24 14:43:09 +0000","Tweetbot for iΟS","@bleedsixcolors @dmoren You can select and delete multiple reminders on a Mac. Shift click.","","","","" "855833375562530816","855817723967926274","75349101","2017-04-22 17:19:12 +0000","Tweetbot for iΟS","@Gankro ಠ_ಠ https://t.co/1EijNLJku2","","","","https://twitter.com/_sjs/status/855833375562530816/photo/1" -"855571168404701184","","","2017-04-21 23:57:16 +0000","Tweetbot for Mac","How does @getnarwhal change their app icon without the alert showing up? Did I miss something in the API or Info.plist?","","","","" -"855570876808404993","855174107775631361","15052455","2017-04-21 23:56:07 +0000","Tweetbot for Mac","@praeclarum supr","","","","" +"855571168404701184","","","2017-04-21 23:57:16 +0000","Tweetbot for Mac","How does @getnarwhal change their app icon without the alert showing up? Did I miss something in the API or Info.plist?","","","","" +"855570876808404993","855174107775631361","15052455","2017-04-21 23:56:07 +0000","Tweetbot for Mac","@praeclarum supr","","","","" "855114776069808129","","","2017-04-20 17:43:44 +0000","Tweetbot for iΟS","🌁SFO ✈️ YYJ 🌄","","","","" "855109010181111808","855067067292282880","7092922","2017-04-20 17:20:49 +0000","Tweetbot for iΟS","@hchorey @OvercastFM I hit this once or twice. It also marked the episode as played and deleted it 😬","","","","" "854897596858421248","854766417203286016","22406953","2017-04-20 03:20:44 +0000","Tweetbot for iΟS","@macatbook Because pros don't care about GPS? I'm not a pro so I don't know but that's all I can think of.","","","","" @@ -225,14 +337,14 @@ I miss @DeskConnect.","","","","" "824389100635435008","","","2017-01-25 22:50:52 +0000","Tweetbot for iΟS","You have to let people know at least the first time. Too large an avenue for hard-to-detect malware if you don't. Spoofing bank apps, etc. https://t.co/OVZAbmi0zy","","","","https://twitter.com/_mochs/status/824379098172686337" "824282965903454208","824042567125835777","445150610","2017-01-25 15:49:08 +0000","Tweetbot for iΟS","@omiotaco @samfbiddle Hundreds? Thousands. There are so many communities and it's absurd to lump them together. Oh well. No room for nuance.","","","","" "824006890665320449","","","2017-01-24 21:32:06 +0000","Twitter for iPhone","""Your honour! I am powerless over my iPhone. It made me do it!"" 🙄 https://t.co/Q5F3ZjzrQR https://t.co/KjODjyEI9X","","","","http://arstechnica.com/tech-policy/2017/01/apple-sued-again-for-not-deploying-iphone-tech-to-block-distracted-driving/,https://twitter.com/_sjs/status/824006890665320449/photo/1" -"824000983948664832","824000594973048833","11973362","2017-01-24 21:08:38 +0000","Tweetbot for Mac","@typeoneerror Pretty much. One less menu bar item to hide with Bartender ¯\_(ツ)_/¯","","","","" -"823999846298226688","823999551853842432","4777951","2017-01-24 21:04:07 +0000","Tweetbot for Mac","https://t.co/oUeS5rBO7l","","","","https://twitter.com/_sjs/status/823999846298226688/photo/1" -"823999551853842432","","","2017-01-24 21:02:56 +0000","Tweetbot for Mac","Night Shift is a tab in the Displays preferences. Obvious in hindsight but I searched a bit before finding it.","","","","" -"823997140837879809","","","2017-01-24 20:53:22 +0000","Tweetbot for Mac","Lots. https://t.co/bA2Gh5vc5k","","","","https://twitter.com/jamesthomson/status/823968258047049737" -"823997067609587713","","","2017-01-24 20:53:04 +0000","Tweetbot for Mac","RT @agiletortoise: ★☆☆☆☆ Selfish developer never replies to my reviews.","823967737101828096","6152112","2017-01-24 18:56:31 +0000","" -"823996044438474753","","","2017-01-24 20:49:00 +0000","Tweetbot for Mac","RT @cabel: Have I died. Is this real. We'll… we'll soon be able to respond to customer reviews in the App Store?!? 😵 (via @stroughtonsmith)…","823964312368599040","1919231","2017-01-24 18:42:55 +0000","https://twitter.com/cabel/status/823964312368599040/photo/1" -"823995821850902529","","","2017-01-24 20:48:07 +0000","Tweetbot for Mac","Just catching up on Twitter and omg APFS is shipping in 10.3! And not just shipping but converting in-place by default. Wowzers!","","","","" -"823967832228511745","","","2017-01-24 18:56:54 +0000","Tweetbot for Mac","Pro tip: make your own screen/lens/glass cleaning solution with rubbing alcohol, water, and a drop of liquid dish soap.","","","","" +"824000983948664832","824000594973048833","11973362","2017-01-24 21:08:38 +0000","Tweetbot for Mac","@typeoneerror Pretty much. One less menu bar item to hide with Bartender ¯\_(ツ)_/¯","","","","" +"823999846298226688","823999551853842432","4777951","2017-01-24 21:04:07 +0000","Tweetbot for Mac","https://t.co/oUeS5rBO7l","","","","https://twitter.com/_sjs/status/823999846298226688/photo/1" +"823999551853842432","","","2017-01-24 21:02:56 +0000","Tweetbot for Mac","Night Shift is a tab in the Displays preferences. Obvious in hindsight but I searched a bit before finding it.","","","","" +"823997140837879809","","","2017-01-24 20:53:22 +0000","Tweetbot for Mac","Lots. https://t.co/bA2Gh5vc5k","","","","https://twitter.com/jamesthomson/status/823968258047049737" +"823997067609587713","","","2017-01-24 20:53:04 +0000","Tweetbot for Mac","RT @agiletortoise: ★☆☆☆☆ Selfish developer never replies to my reviews.","823967737101828096","6152112","2017-01-24 18:56:31 +0000","" +"823996044438474753","","","2017-01-24 20:49:00 +0000","Tweetbot for Mac","RT @cabel: Have I died. Is this real. We'll… we'll soon be able to respond to customer reviews in the App Store?!? 😵 (via @stroughtonsmith)…","823964312368599040","1919231","2017-01-24 18:42:55 +0000","https://twitter.com/cabel/status/823964312368599040/photo/1" +"823995821850902529","","","2017-01-24 20:48:07 +0000","Tweetbot for Mac","Just catching up on Twitter and omg APFS is shipping in 10.3! And not just shipping but converting in-place by default. Wowzers!","","","","" +"823967832228511745","","","2017-01-24 18:56:54 +0000","Tweetbot for Mac","Pro tip: make your own screen/lens/glass cleaning solution with rubbing alcohol, water, and a drop of liquid dish soap.","","","","" "823929074020036608","823920861317046272","220145170","2017-01-24 16:22:53 +0000","Tweetbot for iΟS","@CompSciFact @raganwald Not in all cultures. https://t.co/5kzkv26YMJ","","","","https://en.m.wikipedia.org/wiki/East_Asian_age_reckoning" "822937159350960128","822873891613896706","18247541","2017-01-21 22:41:22 +0000","Tweetbot for iΟS","@tapbot_paul I'm my experience you don't have to buy the Mac labeled stuff. It's all the same.","","","","" "822691385962700800","","","2017-01-21 06:24:45 +0000","Tweetbot for iΟS","RT @gte: John @siracusa should do an interview show with people in tech dealing with their backgrounds, experiences, and go in depth as nee…","822675916258242561","7125712","2017-01-21 05:23:17 +0000","" @@ -298,7 +410,7 @@ Spoiler... 🙄","","","","" "813418522097266688","813152632499879936","217077000","2016-12-26 16:17:42 +0000","Tweetbot for iΟS","@nexusCFX Yes customize the cells if possible. Sucks if you have to replicate swipe actions or something from UITableView, but is cleaner.","","","","" "812528481208651776","","","2016-12-24 05:21:00 +0000","Twitter for iPhone","RT @Snowden: In times of hate, love is a revolution. Happy Holidays, internet. https://t.co/7hVAATLQUV","812027153332183040","2916305152","2016-12-22 20:08:54 +0000","https://twitter.com/Snowden/status/812027153332183040/photo/1,https://twitter.com/Snowden/status/812027153332183040/photo/1" "811331519079813120","","","2016-12-20 22:04:42 +0000","Tweetbot for iΟS","I'm grandfathered into a plan that costs half of what I would pay to get a similar plan today. This is what an oligopoly looks like. https://t.co/jLVYUYpnlk","","","","https://twitter.com/tobi/status/811279971394224129" -"811255278842703873","","","2016-12-20 17:01:45 +0000","Tweetbot for Mac","Looks like the LG 5k display is available! Ships in 2-4 weeks. @mjtsai https://t.co/t70TzjPPxz","","","","https://twitter.com/_sjs/status/811255278842703873/photo/1" +"811255278842703873","","","2016-12-20 17:01:45 +0000","Tweetbot for Mac","Looks like the LG 5k display is available! Ships in 2-4 weeks. @mjtsai https://t.co/t70TzjPPxz","","","","https://twitter.com/_sjs/status/811255278842703873/photo/1" "811250060960862208","811125791912325120","289246577","2016-12-20 16:41:01 +0000","Twitter Web Client","@merowing_ Woke up to this the other day. First time I've seen anything like it. https://t.co/WAkEy11RSM","","","","https://twitter.com/_sjs/status/811250060960862208/photo/1" "811003682292572160","","","2016-12-20 00:22:00 +0000","Twitter Web Client","Last app review for 1 Second Everyday took 1 day! 😮😀 #iosreviewtime https://t.co/mwjpJWoX3F","","","","https://itunes.apple.com/ca/app/1-second-everyday-video-diary/id587823548?mt=8" "810962526175313921","810927283825307648","385193","2016-12-19 21:38:27 +0000","Tweetbot for iΟS","@jim_rutherford @blackpixel Congrats!","","","","" @@ -306,11 +418,11 @@ Spoiler... 🙄","","","","" "810003468605800448","","","2016-12-17 06:07:30 +0000","Tweetbot for iΟS","RT @evadne: Good UI detail: in Cocoa menus the keyboard shortcuts are not right-justified; they are aligned by ⌘. https://t.co/ctj4UAddQA","809958106818035713","15614100","2016-12-17 03:07:15 +0000","https://twitter.com/evadne/status/809958106818035713/photo/1,https://twitter.com/evadne/status/809958106818035713/photo/1" "809155248669347840","809151190667788288","15267898","2016-12-14 21:56:59 +0000","Tweetbot for iΟS","@stroughtonsmith This is a thing. A company I worked at did this. An unholy device created by social media gurus trying hard to Twitter?","","","","" "809077755815956480","","436143123","2016-12-14 16:49:03 +0000","Tweetbot for iΟS","@timehop and what?! So cruel to leave me hanging like this 🙀😛 https://t.co/R59pMq2rYO","","","","https://twitter.com/_sjs/status/809077755815956480/photo/1" -"808718181476896769","808717825401421824","4777951","2016-12-13 17:00:14 +0000","Tweetbot for Mac","@acorscadden I learned how to use the particle emitter layer. And am realizing the extent of things you can easily animate with CALayer.","","","","" -"808717825401421824","808717057378238464","14136484","2016-12-13 16:58:49 +0000","Tweetbot for Mac","@acorscadden Yeah, I’ve been leveling up at animations & graphics stuff, and it’s easy enough that even I can do cool things with it.","","","","" +"808718181476896769","808717825401421824","4777951","2016-12-13 17:00:14 +0000","Tweetbot for Mac","@acorscadden I learned how to use the particle emitter layer. And am realizing the extent of things you can easily animate with CALayer.","","","","" +"808717825401421824","808717057378238464","14136484","2016-12-13 16:58:49 +0000","Tweetbot for Mac","@acorscadden Yeah, I’ve been leveling up at animations & graphics stuff, and it’s easy enough that even I can do cool things with it.","","","","" "808571380908208128","808570597932269568","4777951","2016-12-13 07:16:54 +0000","Tweetbot for iΟS","@macatbook AVFoundation. Now that compositing works again in 10.2 we’re mostly back to friends. 😛","","","","" "808570597932269568","808569917272244225","22406953","2016-12-13 07:13:47 +0000","Twitter for iPad","@macatbook Animation, graphics, foundation, the whole stack. It's just really good and comprehensive.","","","","" -"808554052145422337","","","2016-12-13 06:08:02 +0000","Tweetbot for Mac","The more I learn about Cocoa Touch the less I want to develop for other platforms.","","","","" +"808554052145422337","","","2016-12-13 06:08:02 +0000","Tweetbot for Mac","The more I learn about Cocoa Touch the less I want to develop for other platforms.","","","","" "808350601121701889","808342488389980160","289246577","2016-12-12 16:39:36 +0000","Tweetbot for iΟS","@merowing_ Metamorph","","","","" "808156557712076800","808104799128285185","2741981","2016-12-12 03:48:32 +0000","Tweetbot for iΟS","@jnadeau Can't believe it didn't say ""You probably haven't heard of them.""","","","","" "808046600719192064","808045287545729025","14106454","2016-12-11 20:31:37 +0000","Tweetbot for iΟS","@srbaker https://t.co/eYdwheE9vC https://t.co/IzlSXq77sv","","","","http://3eanuts.com/image/146550563529,https://twitter.com/_sjs/status/808046600719192064/photo/1" @@ -329,7 +441,7 @@ Spoiler... 🙄","","","","" "807266713515327488","807260452690558980","289246577","2016-12-09 16:52:37 +0000","Tweetbot for iΟS","@merowing_ Any way to inject etag and last-modified or do you always have to hit the network once per watcher instance?","","","","" "807258394004312065","","","2016-12-09 16:19:33 +0000","Tweetbot for iΟS","RT @mariofusco: Code bloated of questionable try/catch or null-checks isn't safer but a signal the author didn't understand it. Defensive c…","806937903733608448","142589904","2016-12-08 19:06:03 +0000","" "807068811518046208","","","2016-12-09 03:46:13 +0000","Tweetbot for iΟS","What kind of monster would do this?! https://t.co/EISuIdqjUo","","","","https://twitter.com/Catfish_Man/status/807006719192666112" -"807017063118028800","","","2016-12-09 00:20:36 +0000","Tweetbot for Mac","Watch your nanoseconds in the Swift 3 dispatch time API on 32-bit devices. It’s easy to blow past Int.max and crash at runtime. Use μsec.","","","","" +"807017063118028800","","","2016-12-09 00:20:36 +0000","Tweetbot for Mac","Watch your nanoseconds in the Swift 3 dispatch time API on 32-bit devices. It’s easy to blow past Int.max and crash at runtime. Use μsec.","","","","" "806711546873192448","","","2016-12-08 04:06:35 +0000","Tweetbot for iΟS","RT @modocache: Developers on Windows: what's in your toolbelt? What's your editor? Terminal app? Email client? (I'll ❤️ you if you RT past…","806706197046755329","192478064","2016-12-08 03:45:19 +0000","" "806629130049441792","","1606710888","2016-12-07 22:39:05 +0000","Tweetbot for iΟS","@buildphase Dvorak typist checking in: NSSTring happens to me as well, all the freaking time 🙃","","","","" "805844977183924224","805828417610547204","197739912","2016-12-05 18:43:09 +0000","Tweetbot for iΟS","@_benng Ugh. I don't typically need a ton of battery time but if it's that bad I might return mine (recently ordered and shipping end Dec).","","","","" @@ -346,9 +458,6 @@ Spoiler... 🙄","","","","" "801260511346106368","801257822897913857","15444008","2016-11-23 03:06:07 +0000","Tweetbot for iΟS","@Catfish_Man Yeah that’s a ton, and I like a lot of salt in things.","","","","" "801131609525080064","801127809682767872","11973362","2016-11-22 18:33:54 +0000","Tweetbot for iΟS","@typeoneerror Good thing Mochi's handsome!","","","","" "800131124580130816","800109680462688256","894911","2016-11-20 00:18:20 +0000","Tweetbot for iΟS","@JimRoepcke It looks like it might be easy to hit without looking. https://t.co/6qjWZuBesD","","","","https://twitter.com/gruber/status/798225278522769409" -"799822666739765248","","","2016-11-19 03:52:38 +0000","Tweetbot for iΟS","RT @jnadeau: Ugh. - -PSA: “secure text input” is way more than just drawing bullets on screen… don’t try to fake it, use NSSecureTextField ht…","799769496068100096","2741981","2016-11-19 00:21:21 +0000","https://twitter.com/luke_dot_js/status/799271787133403136" "799655128106049536","799652498210521089","23505101","2016-11-18 16:46:54 +0000","Tweetbot for iΟS","@yaccin @DaveManouchehri @nullpointr It ships in 7-10 weeks. If you need it today that’s not very helpful.","","","","" "799065274234191873","799039066951938048","22406953","2016-11-17 01:43:01 +0000","Tweetbot for iΟS","@macatbook Seems like it's taking forever to get to market but this is the first time I remember display technology outpacing connections.","","","","" "799036530010398720","799023791863197696","289246577","2016-11-16 23:48:48 +0000","Tweetbot for iΟS","@merowing_ Better pray for swiftc to be optimized because significantly faster CPUs probably aren't on the horizon.","","","","" @@ -357,8 +466,8 @@ PSA: “secure text input” is way more than just drawing bullets on screen… "798749043866251264","","","2016-11-16 04:46:26 +0000","Tweetbot for iΟS","RT @dadgumjames: A fun little project spurred by another fun little project: Picturing WebSocket Protocol Packets https://t.co/9VwaNQCvFO","798713228176031744","2350289402","2016-11-16 02:24:07 +0000","http://prog21.dadgum.com/225.html,http://prog21.dadgum.com/225.html" "798678877941862400","798671636463394816","289246577","2016-11-16 00:07:37 +0000","Tweetbot for iΟS","@merowing_ @UberEng cc @macatbook","","","","" "798678499707916288","","","2016-11-16 00:06:07 +0000","Tweetbot for iΟS","I haven't used Core Data either. People don't seem to like it so meh. https://t.co/vsloflGHED","","","","https://twitter.com/kristinathai/status/798660010276290560" -"798643309321170944","798643167155273729","22406953","2016-11-15 21:46:17 +0000","Tweetbot for Mac","@macatbook ha ha, parallelism ftw!","","","","" -"798642683992342529","798630985805930496","22406953","2016-11-15 21:43:48 +0000","Tweetbot for Mac","@macatbook You could probably buy a pretty nice scanner for less than the cost of having someone else scan. Free is nice though.","","","","" +"798643309321170944","798643167155273729","22406953","2016-11-15 21:46:17 +0000","Tweetbot for Mac","@macatbook ha ha, parallelism ftw!","","","","" +"798642683992342529","798630985805930496","22406953","2016-11-15 21:43:48 +0000","Tweetbot for Mac","@macatbook You could probably buy a pretty nice scanner for less than the cost of having someone else scan. Free is nice though.","","","","" "798630316399177728","798624846246621184","22406953","2016-11-15 20:54:39 +0000","Tweetbot for iΟS","@macatbook Not a bad option if you have the time. I paid a lot of money to have that done about 5 years ago.","","","","" "798566702032134145","798559570343956480","14710664","2016-11-15 16:41:53 +0000","Tweetbot for iΟS","@rjonesy @nickheer That can be part of the product. The aluminium shell can house a Thunderbolt 3 hub with USB-A ports and Ethernet. 😅","","","","" "797906544083861504","","739623677994504192","2016-11-13 20:58:39 +0000","Tweetbot for iΟS","@runtimefm Time complexity in mobile apps can be important. Real world example from an app I took over this year: https://t.co/HcSXk51ujY","","","","https://samhuri.net/posts/2016/08/easy-optimization-wins" @@ -366,7 +475,7 @@ PSA: “secure text input” is way more than just drawing bullets on screen… "797502347890958336","797491288652148736","11973362","2016-11-12 18:12:31 +0000","Tweetbot for iΟS","@typeoneerror @rightsprung Yeah we don't want all the gun nuts in Oregon and Nevada thanks. Real generous offer though 🙄","","","","" "797105475107966976","797105157892931585","25703613","2016-11-11 15:55:29 +0000","Tweetbot for iΟS","@Cocoanetics Your range is {0,5}","","","","" "796909197216489472","796896965850173440","289246577","2016-11-11 02:55:33 +0000","Tweetbot for iΟS","@merowing_ Besides you? 😜","","","","" -"796486882490073088","","","2016-11-09 22:57:25 +0000","Tweetbot for Mac","RT @MacintoshFM: Kickstarter Update +"796486882490073088","","","2016-11-09 22:57:25 +0000","Tweetbot for Mac","RT @MacintoshFM: Kickstarter Update An update on the Kickstarter for season three, from San Jose airport. https://t.co/OwWsrnV4fn","796479550871859200","2941119764","2016-11-09 22:28:17 +0000","http://Macintosh.fm/episodes/kickstarter-update,http://Macintosh.fm/episodes/kickstarter-update" "796232958298365953","796198830869975040","3116467667","2016-11-09 06:08:25 +0000","Tweetbot for iΟS","@ts_kq @crystalleigh not true, no need to spread BS about him he’s bad enough already https://t.co/r4B0iwK9le","","","","http://www.snopes.com/1998-trump-people-quote/" @@ -401,13 +510,11 @@ Even if Trump is not elected you have some serious problems to figure out. Don't "793175766427021312","793173591097483264","25401953","2016-10-31 19:40:13 +0000","Tweetbot for iΟS","@steipete @NachoSoto No, it's all satire. https://t.co/kv4daGLdeM","","","","https://medium.com/@haltingproblem" "793116011461423105","793115291668492288","16645904","2016-10-31 15:42:47 +0000","Tweetbot for iΟS","@Jarsen @olebegemann Yeah, I think the current answer is that you learn elsewhere. It would be nice to tie things together more though.","","","","" "793114963107733504","793110825661706245","16645904","2016-10-31 15:38:37 +0000","Tweetbot for iΟS","@Jarsen @olebegemann The question here is how do you learn them? That's a big part of discoverability.","","","","" -"792885443595411456","792112562804367360","4777951","2016-10-31 00:26:35 +0000","Tweetbot for Mac","@macatbook @DanFrakes I only looked as far as Wikipedia but LPDDR4 (1.1v) seems to use less power than LPDDR3 (1.2v). 🤔","","","","" -"792880637401182208","792872941868363777","10194392","2016-10-31 00:07:29 +0000","Tweetbot for Mac","@reneritchie 8 GB is a bit tight on my MacBook but I don’t actually notice when it’s all in use. Usually 14-18 GB in use on my 32 GB iMac.","","","","" -"792878480732004352","792874709276692480","1235521","2016-10-30 23:58:55 +0000","Tweetbot for Mac","@timbray Looks like your cat’s been into your shade of the evening stash. https://t.co/pS5HCfs4AZ","","","","https://twitter.com/_sjs/status/792878480732004352/photo/1" +"792885443595411456","792112562804367360","4777951","2016-10-31 00:26:35 +0000","Tweetbot for Mac","@macatbook @DanFrakes I only looked as far as Wikipedia but LPDDR4 (1.1v) seems to use less power than LPDDR3 (1.2v). 🤔","","","","" +"792880637401182208","792872941868363777","10194392","2016-10-31 00:07:29 +0000","Tweetbot for Mac","@reneritchie 8 GB is a bit tight on my MacBook but I don’t actually notice when it’s all in use. Usually 14-18 GB in use on my 32 GB iMac.","","","","" +"792878480732004352","792874709276692480","1235521","2016-10-30 23:58:55 +0000","Tweetbot for Mac","@timbray Looks like your cat’s been into your shade of the evening stash. https://t.co/pS5HCfs4AZ","","","","https://twitter.com/_sjs/status/792878480732004352/photo/1" "792820415986937856","792819916835401728","22406953","2016-10-30 20:08:11 +0000","Tweetbot for iΟS","@macatbook I’d rather have the SD card slot back personally. That’s the only port they nixed that I’d actually miss.","","","","" "792819524605054976","792804015037882368","18553922","2016-10-30 20:04:39 +0000","Tweetbot for iΟS","@zwaldowski But waaah, I have to buy a $25 dongle to hook up my $2k display to my $4k MacBook to do a job that earns me $100k+. #doomed","","","","" -"792802309319237632","","","2016-10-30 18:56:14 +0000","Tweetbot for iΟS","RT @zwaldowski: Likewise, a post from the Grubers of the world asserting how good do-anything ports would be. How would you do that without…","792792284349759491","18553922","2016-10-30 18:16:24 +0000","" -"792802279447420929","","","2016-10-30 18:56:07 +0000","Tweetbot for iΟS","RT @zwaldowski: The current furor and theme of “I didn't ask for this” makes me think tech people can't abide the implications of the thing…","792791499138301952","18553922","2016-10-30 18:13:17 +0000","" "792802185503383552","","","2016-10-30 18:55:45 +0000","Tweetbot for iΟS","RT @tapbot_paul: Did people bitch this much when Apple got rid of ADB? They just announced laptops with 4 PCIe ports and people act like it…","792763787849838592","18247541","2016-10-30 16:23:10 +0000","" "792781563595325440","792781371848601600","4777951","2016-10-30 17:33:48 +0000","Tweetbot for iΟS","@offby1 @xurble @timbray @koush And I'm happy with my 5k iMac too.","","","","" "792781371848601600","792779234909433856","37362694","2016-10-30 17:33:02 +0000","Tweetbot for iΟS","@offby1 @xurble @timbray @koush I'm a developer and if I was in the market for a MBP I'd be happy with a new one. Love my 12"" MacBook.","","","","" @@ -429,7 +536,7 @@ Even if Trump is not elected you have some serious problems to figure out. Don't "792061541822541824","","","2016-10-28 17:52:42 +0000","Tweetbot for iΟS","What can we say, we're a bunch of nerds. https://t.co/Lo1lftrJQM","","","","https://twitter.com/stroughtonsmith/status/792042706457468928" "792061158685417472","792039113906122752","8526432","2016-10-28 17:51:10 +0000","Tweetbot for iΟS","@wycats Oh no, really? That is a shame.","","","","" "792019113518338048","","","2016-10-28 15:04:06 +0000","Tweetbot for iΟS","MacRumor's buyer's guide isn't a set of commandments. The current iMac is awesome and if you need or want one you should buy it. It'll last.","","","","" -"791807854722240512","791806899230433280","22406953","2016-10-28 01:04:38 +0000","Tweetbot for Mac","@macatbook It’s pretty good. The USB-C connection to my MacBook is a bit loose but that’s my only real complaint so far.","","","","" +"791807854722240512","791806899230433280","22406953","2016-10-28 01:04:38 +0000","Tweetbot for Mac","@macatbook It’s pretty good. The USB-C connection to my MacBook is a bit loose but that’s my only real complaint so far.","","","","" "791708071772893188","791707679026622464","14710664","2016-10-27 18:28:08 +0000","Tweetbot for iΟS","@rjonesy @steipete Basically called it https://t.co/wShDjcL2xe","","","","https://twitter.com/_sjs/status/791312237050724352" "791699572326223872","","","2016-10-27 17:54:21 +0000","Tweetbot for iΟS","Whither art thou DisplayPort 1.3.","","","","" "791699032489889792","791698783587430400","289246577","2016-10-27 17:52:13 +0000","Tweetbot for iΟS","@merowing_ I’m quite happy with the MacBook for my portable machine so I don’t have to worry until I go nomad and need portable power.","","","","" @@ -443,15 +550,15 @@ Even if Trump is not elected you have some serious problems to figure out. Don't "791311247975129088","","","2016-10-26 16:11:18 +0000","Tweetbot for iΟS","The silence is deafening on the Windows Phone front.","","","","" "791308137420591105","","","2016-10-26 15:58:56 +0000","Tweetbot for iΟS","RT @benthompson: This seriously might be the most impressive Microsoft demo of all time.","791307887955935232","40273","2016-10-26 15:57:56 +0000","" "791304162042523648","","","2016-10-26 15:43:08 +0000","Tweetbot for iΟS","People I follow seem to like Surface Studio. https://t.co/ILSREcRBnl","","","","https://twitter.com/_sjs/status/791304162042523648/photo/1" -"791025727097278464","791025300813537280","14308739","2016-10-25 21:16:44 +0000","Tweetbot for Mac","@cheerskevin This may help some people too: https://t.co/lW7HgReWzU","","","","https://twitter.com/jsmecham/status/791000563152482304" -"790971460315549696","","","2016-10-25 17:41:06 +0000","Tweetbot for Mac","UIDeviceOrientation and AVCaptureVideoOrientation define landscape orientations differently (opposite/reversed). This is confusing.","","","","" +"791025727097278464","791025300813537280","14308739","2016-10-25 21:16:44 +0000","Tweetbot for Mac","@cheerskevin This may help some people too: https://t.co/lW7HgReWzU","","","","https://twitter.com/jsmecham/status/791000563152482304" +"790971460315549696","","","2016-10-25 17:41:06 +0000","Tweetbot for Mac","UIDeviceOrientation and AVCaptureVideoOrientation define landscape orientations differently (opposite/reversed). This is confusing.","","","","" "790941492013506560","","436143123","2016-10-25 15:42:01 +0000","Tweetbot for iΟS","@timehop The app gets stuck on the witty loading screen. Fluxing forever. Any recourse?","","","","" "790935880332480513","","","2016-10-25 15:19:43 +0000","Tweetbot for iΟS","Blinks and rubs eyes. Cries for 10 minutes. Laughs for 20 minutes. Moves to the mountains and becomes a monk. https://t.co/W00xjVHP5f","","","","https://twitter.com/thenatekirby/status/790919974135091201" "790579863119724544","","","2016-10-24 15:45:02 +0000","Tweetbot for iΟS","I Can't Believe I'm Watching This Entire Video: A story about life with the Inernet.","","","","" "789544740664377344","789544592966230016","4777951","2016-10-21 19:11:49 +0000","Tweetbot for iΟS","@macatbook Especially if you consider the Linux situation.","","","","" "789544592966230016","789543589210578944","22406953","2016-10-21 19:11:14 +0000","Tweetbot for iΟS","@macatbook Swift is pretty ambitious and might take even longer than 10 years to really mature.","","","","" -"788925782659784704","788922794322964481","22406953","2016-10-20 02:12:18 +0000","Tweetbot for Mac","@macatbook Methods in a protocol’s default implementation will never be dynamically dispatched. Possibly related?","","","","" -"788925495375114240","788922794322964481","22406953","2016-10-20 02:11:10 +0000","Tweetbot for Mac","@macatbook Wild. Within all methods declared in that protocol, or for all methods on instances typed as that protocol?","","","","" +"788925782659784704","788922794322964481","22406953","2016-10-20 02:12:18 +0000","Tweetbot for Mac","@macatbook Methods in a protocol’s default implementation will never be dynamically dispatched. Possibly related?","","","","" +"788925495375114240","788922794322964481","22406953","2016-10-20 02:11:10 +0000","Tweetbot for Mac","@macatbook Wild. Within all methods declared in that protocol, or for all methods on instances typed as that protocol?","","","","" "788919225653932032","788849936506888193","22406953","2016-10-20 01:46:15 +0000","Tweetbot for iΟS","@macatbook In what ways?","","","","" "787702603983355904","","","2016-10-16 17:11:50 +0000","Tweetbot for iΟS","RT @clemensv: 'What the heck went wrong with the storm forecast?!?"" https://t.co/mih9v2vNNY","787677713251332096","14091119","2016-10-16 15:32:55 +0000","http://komonews.com/weather/scotts-weather-blog/what-the-heck-went-wrong-with-the-storm-forecast,http://komonews.com/weather/scotts-weather-blog/what-the-heck-went-wrong-with-the-storm-forecast" "787498649450184704","786221106839494656","4777951","2016-10-16 03:41:23 +0000","Tweetbot for iΟS","Some storm. It always misses Victoria, should have known.","","","","" @@ -460,16 +567,16 @@ Even if Trump is not elected you have some serious problems to figure out. Don't "787008036015513600","786972691819487232","14136484","2016-10-14 19:11:52 +0000","Tweetbot for iΟS","@acorscadden @JimRoepcke We're in BC, there's always a much taller tree around. Don't hug any trees.","","","","" "786945340347781121","786944450387972096","25703613","2016-10-14 15:02:44 +0000","Tweetbot for iΟS","@Cocoanetics That's true. If you need to refactor it will be kind of a pain too. Overall not too bad though.","","","","" "786944283773317120","786943758432632832","25703613","2016-10-14 14:58:32 +0000","Tweetbot for iΟS","@Cocoanetics Nice solution! That is much simpler. Need to check if I can apply that to my code anywhere.","","","","" -"786937548241186820","786935383422439424","4777951","2016-10-14 14:31:46 +0000","Tweetbot for Mac","@Cocoanetics Complexity still stands but if you make the delegate methods generic over TimelineManager it seems to work, gist updated.","","","","" -"786935383422439424","786934750242111488","25703613","2016-10-14 14:23:10 +0000","Tweetbot for Mac","@Cocoanetics Yeah I’m unhappy about this aspect too. I have similar code in my app but it’s not quite as complex as what you need here.","","","","" -"786934927463899140","786934121532690432","25703613","2016-10-14 14:21:21 +0000","Tweetbot for Mac","@Cocoanetics Damn. I’m not sure how to handle this one then.","","","","" -"786932983986921472","786932365436129280","4777951","2016-10-14 14:13:38 +0000","Tweetbot for Mac","@Cocoanetics Forgot to add the where clause, in TimelineManager’s declaration you probably want to add `where T == D.T` as well.","","","","" -"786932365436129280","786931019542847491","25703613","2016-10-14 14:11:11 +0000","Tweetbot for Mac","@Cocoanetics Sorry, I mean the delegate type used in your TimelineManager class. Something like this: https://t.co/3CYLGM87TP","","","","https://gist.github.com/samsonjs/5cf1f960c58cc21595804709d5feb935" +"786937548241186820","786935383422439424","4777951","2016-10-14 14:31:46 +0000","Tweetbot for Mac","@Cocoanetics Complexity still stands but if you make the delegate methods generic over TimelineManager it seems to work, gist updated.","","","","" +"786935383422439424","786934750242111488","25703613","2016-10-14 14:23:10 +0000","Tweetbot for Mac","@Cocoanetics Yeah I’m unhappy about this aspect too. I have similar code in my app but it’s not quite as complex as what you need here.","","","","" +"786934927463899140","786934121532690432","25703613","2016-10-14 14:21:21 +0000","Tweetbot for Mac","@Cocoanetics Damn. I’m not sure how to handle this one then.","","","","" +"786932983986921472","786932365436129280","4777951","2016-10-14 14:13:38 +0000","Tweetbot for Mac","@Cocoanetics Forgot to add the where clause, in TimelineManager’s declaration you probably want to add `where T == D.T` as well.","","","","" +"786932365436129280","786931019542847491","25703613","2016-10-14 14:11:11 +0000","Tweetbot for Mac","@Cocoanetics Sorry, I mean the delegate type used in your TimelineManager class. Something like this: https://t.co/3CYLGM87TP","","","","https://gist.github.com/samsonjs/5cf1f960c58cc21595804709d5feb935" "786930728718045184","786930212797763585","4777951","2016-10-14 14:04:40 +0000","Tweetbot for iΟS","@Cocoanetics And you may need something like `where D.T == T` as well.","","","","" "786930212797763585","786928914639749120","25703613","2016-10-14 14:02:37 +0000","Tweetbot for iΟS","@Cocoanetics Yes, but now TimelineManager needs to have a generic type for the delegate, e.g. <D: TimeLineManagerDelegate>","","","","" -"786294089645891584","","","2016-10-12 19:54:54 +0000","Tweetbot for Mac","Submitted for review at 10:37 AM, in review at 12:50 PM. I don’t know what’s happening but I like it. Fast lane for minor updates?","","","","" -"786262842227892224","","","2016-10-12 17:50:44 +0000","Tweetbot for Mac","TL;DR is that people are basically insane about children’s safety. https://t.co/bgy9hzCAMx https://t.co/ynMbpjRpRb","","","","https://twitter.com/Jarsen/status/786242555172102144,https://twitter.com/_sjs/status/786262842227892224/photo/1" -"786236067246518272","786234745508147200","4777951","2016-10-12 16:04:20 +0000","Tweetbot for Mac","@Cocoanetics If this is related to UIBarButtonItem this may help: https://t.co/px3dNNRpjN … set the target as an associated object on button","","","","https://gist.github.com/samsonjs/6ee8938562bee366e8dd5faa669b0ea3#file-barbuttonitemtarget-swift" +"786294089645891584","","","2016-10-12 19:54:54 +0000","Tweetbot for Mac","Submitted for review at 10:37 AM, in review at 12:50 PM. I don’t know what’s happening but I like it. Fast lane for minor updates?","","","","" +"786262842227892224","","","2016-10-12 17:50:44 +0000","Tweetbot for Mac","TL;DR is that people are basically insane about children’s safety. https://t.co/bgy9hzCAMx https://t.co/ynMbpjRpRb","","","","https://twitter.com/Jarsen/status/786242555172102144,https://twitter.com/_sjs/status/786262842227892224/photo/1" +"786236067246518272","786234745508147200","4777951","2016-10-12 16:04:20 +0000","Tweetbot for Mac","@Cocoanetics If this is related to UIBarButtonItem this may help: https://t.co/px3dNNRpjN … set the target as an associated object on button","","","","https://gist.github.com/samsonjs/6ee8938562bee366e8dd5faa669b0ea3#file-barbuttonitemtarget-swift" "786234745508147200","786231076964429825","25703613","2016-10-12 15:59:05 +0000","Tweetbot for iΟS","@Cocoanetics If the function doesn't retain self something else has to. What owns self in this case?","","","","" "786221106839494656","","","2016-10-12 15:04:53 +0000","Tweetbot for iΟS","Batten down the hatches! 🌧🌬🙀 https://t.co/yUAgIGmB3S","","","","https://twitter.com/timbray/status/786084632357928960" "785902312715792385","785880643968372736","636923","2016-10-11 17:58:07 +0000","Tweetbot for iΟS","@siracusa @olebegemann Swift is better at showcasing Cocoa than Objective C. Now we see how much C compatibility was holding them back.","","","","" @@ -484,7 +591,6 @@ Even if Trump is not elected you have some serious problems to figure out. Don't "785553220089159681","","","2016-10-10 18:50:57 +0000","Tweetbot for iΟS","It's a mere coincidence. There are only so many ways you can make a black, cylindrical computer. Definitely not a rip-off. 🙄 https://t.co/uSlnpxalAo","","","","https://twitter.com/anandtech/status/785545679535910912" "785271692239048704","785254398628761601","14308739","2016-10-10 00:12:15 +0000","Tweetbot for iΟS","@cheerskevin @plujoenium I highly recommend some of these for handling 🌶: https://t.co/pRltM7tjWs","","","","https://www.amazon.com/gp/aw/d/B000XRY2FE/ref=s9_top_hm_awbw_b146g5_g121_i2?pf_rd_m=ATVPDKIKX0DER&pf_rd_s=mobile-hybrid-3&pf_rd_r=00HNV6C9T36GK014MMK3&pf_rd_t=30901&pf_rd_p=45e7ddea-02ec-52d4-b75e-3a8630ef16bc&pf_rd_i=15755321" "784995637624397825","784878743412019200","5637652","2016-10-09 05:55:19 +0000","Tweetbot for iΟS","@codinghorror 683","","","","" -"784231148671029248","","","2016-10-07 03:17:30 +0000","Tweetbot for iΟS","RT @brentsimmons: Apple is within their rights to run a Kafkaesque bureaucracy. I just don’t know why they want to.","784087254004183040","652293","2016-10-06 17:45:43 +0000","" "784230319389933568","","","2016-10-07 03:14:13 +0000","Tweetbot for iΟS","Will? https://t.co/6cQuaiQkuy","","","","https://twitter.com/Objective_Neo/status/784151305384259585" "784048242681974784","784046197698945025","19185780","2016-10-06 15:10:42 +0000","Tweetbot for iΟS","@tmmx @joeerl You choose which specific APIs to use from the OS and your language, but yes sometimes there's no choice (JS in browser).","","","","" "784036277058277377","784035198853718017","4777951","2016-10-06 14:23:09 +0000","Tweetbot for iΟS","@tmmx @joeerl There's a lot less difference between a language-bundled library and any other lib than you may realize. All made by people.","","","","" @@ -492,16 +598,16 @@ Even if Trump is not elected you have some serious problems to figure out. Don't "784034949267468289","784024670634930178","19185780","2016-10-06 14:17:53 +0000","Tweetbot for iΟS","@tmmx @joeerl The distinction between a system library, library included with a language, and any other library is somewhat arbitrary.","","","","" "783864468400812032","783858776482852864","341874816","2016-10-06 03:00:27 +0000","Tweetbot for iΟS","@wheatpond @craigmod Looks tiny. Could be a GM1.","","","","" "783770339218030592","","","2016-10-05 20:46:25 +0000","Tweetbot for iΟS","Google emailed me saying I could pre-order Google Home. Went to the site and it's not available in Canada. Google doesn't know where I live?","","","","" -"783473670534471680","","","2016-10-05 01:07:33 +0000","Tweetbot for Mac","Hey Siri didn’t work on my new phone. Resetting network settings fixed it.","","","","" +"783473670534471680","","","2016-10-05 01:07:33 +0000","Tweetbot for Mac","Hey Siri didn’t work on my new phone. Resetting network settings fixed it.","","","","" "783423354673860608","","","2016-10-04 21:47:37 +0000","Tweetbot for iΟS","This is the best ringer/mute switch in years. It's really firm. Jet black looks and feels awesome.","","","","" -"783377741110398976","783376707684175872","4777951","2016-10-04 18:46:22 +0000","Tweetbot for Mac","@marconori You might want to use layers instead of image views if performance suffers with a lot of sticker views. Not sure about that.","","","","" -"783376707684175872","783373127510286337","159917297","2016-10-04 18:42:16 +0000","Tweetbot for Mac","@marconori Yes, just add views on top of the preview layer using UIImageView. When you capture you need to composite stickers on the image.","","","","" -"783376099631706112","783372787587121152","159917297","2016-10-04 18:39:51 +0000","Tweetbot for Mac","@marconori I’m not sure about the zooming issue. Can you share any code? I have more experience with video than photo.","","","","" -"783375674618712064","783375482771341312","71807841","2016-10-04 18:38:09 +0000","Tweetbot for Mac","@natbobc @joeerl Yup. https://t.co/XJDyeKwTez","","","","https://twitter.com/_sjs/status/783349744848384000" +"783377741110398976","783376707684175872","4777951","2016-10-04 18:46:22 +0000","Tweetbot for Mac","@marconori You might want to use layers instead of image views if performance suffers with a lot of sticker views. Not sure about that.","","","","" +"783376707684175872","783373127510286337","159917297","2016-10-04 18:42:16 +0000","Tweetbot for Mac","@marconori Yes, just add views on top of the preview layer using UIImageView. When you capture you need to composite stickers on the image.","","","","" +"783376099631706112","783372787587121152","159917297","2016-10-04 18:39:51 +0000","Tweetbot for Mac","@marconori I’m not sure about the zooming issue. Can you share any code? I have more experience with video than photo.","","","","" +"783375674618712064","783375482771341312","71807841","2016-10-04 18:38:09 +0000","Tweetbot for Mac","@natbobc @joeerl Yup. https://t.co/XJDyeKwTez","","","","https://twitter.com/_sjs/status/783349744848384000" "783365649158459392","783339905443180544","774064853510131712","2016-10-04 17:58:19 +0000","Tweetbot for iΟS","@OddToasterTees @terminalbreaker Cruel because they need wifi to email photos in the first place? 🤔","","","","" -"783359284201463809","783354906103078912","14308739","2016-10-04 17:33:02 +0000","Tweetbot for Mac","@cheerskevin The Echo is only in 2 countries right now. Google *may* have a global distribution advantage. They do better than Amazon there.","","","","" -"783358837038342146","783353597341884417","159917297","2016-10-04 17:31:15 +0000","Tweetbot for Mac","@marconori If there’s a general area you don’t understand I can write up an article on that topic too. I’ve been looking for topics to write","","","","" -"783358635581726721","783353597341884417","159917297","2016-10-04 17:30:27 +0000","Tweetbot for Mac","@marconori I learned it in ObjC from WWDC videos and example code, and from co-workers. Happy to answer specific questions if you want!","","","","" +"783359284201463809","783354906103078912","14308739","2016-10-04 17:33:02 +0000","Tweetbot for Mac","@cheerskevin The Echo is only in 2 countries right now. Google *may* have a global distribution advantage. They do better than Amazon there.","","","","" +"783358837038342146","783353597341884417","159917297","2016-10-04 17:31:15 +0000","Tweetbot for Mac","@marconori If there’s a general area you don’t understand I can write up an article on that topic too. I’ve been looking for topics to write","","","","" +"783358635581726721","783353597341884417","159917297","2016-10-04 17:30:27 +0000","Tweetbot for Mac","@marconori I learned it in ObjC from WWDC videos and example code, and from co-workers. Happy to answer specific questions if you want!","","","","" "783352691741200384","783350393887567872","5498732","2016-10-04 17:06:50 +0000","Tweetbot for iΟS","@herval I know who @joeerl is. It's called a discussion.","","","","" "783349958757879808","783349744848384000","4777951","2016-10-04 16:55:58 +0000","Tweetbot for iΟS","@joeerl And there is a trap in trying to make everything generic and a library.","","","","" "783349744848384000","783349407760678912","51546468","2016-10-04 16:55:07 +0000","Tweetbot for iΟS","@joeerl Well, we all do at least some of time :) Sometimes you should because you can make a better wheel. At least for your needs.","","","","" @@ -516,46 +622,46 @@ Even if Trump is not elected you have some serious problems to figure out. Don't "782982453107433473","","","2016-10-03 16:35:38 +0000","Twitter for iPhone","🤘🏼 https://t.co/3Auoprci54","","","","https://twitter.com/_sjs/status/782982453107433473/photo/1" "782714587107905536","782714464223178752","4777951","2016-10-02 22:51:14 +0000","Tweetbot for iΟS","@chockenberry Of course with time it should be faster as well, also like Touch ID.","","","","" "782714464223178752","782714084554780672","36183","2016-10-02 22:50:45 +0000","Tweetbot for iΟS","@chockenberry Auto-unlock isn't about saving time. It's like Touch ID: more secure passwords and easier to unlock, not necessarily faster.","","","","" -"782626441405960192","","","2016-10-02 17:00:58 +0000","Tweetbot for Mac","RT @jlouis666: @_sjs More subtle than that. You need to turn exceptions into async messages too.","782625410915926016","12830102","2016-10-02 16:56:53 +0000","" -"782626416038846464","782625410915926016","12830102","2016-10-02 17:00:52 +0000","Tweetbot for Mac",".@jlouis666 Good point. You also don’t get anything like monitoring out-of-the-box.","","","","" -"782626031072968706","","","2016-10-02 16:59:20 +0000","Tweetbot for Mac","UIImagePickerController stops capturing video after deleting the temp. capture directory. https://t.co/RewdSQJLZk rdar://28581473","","","","http://www.openradar.me/radar?id=5053339083472896" +"782626441405960192","","","2016-10-02 17:00:58 +0000","Tweetbot for Mac","RT @jlouis666: @_sjs More subtle than that. You need to turn exceptions into async messages too.","782625410915926016","12830102","2016-10-02 16:56:53 +0000","" +"782626416038846464","782625410915926016","12830102","2016-10-02 17:00:52 +0000","Tweetbot for Mac",".@jlouis666 Good point. You also don’t get anything like monitoring out-of-the-box.","","","","" +"782626031072968706","","","2016-10-02 16:59:20 +0000","Tweetbot for Mac","UIImagePickerController stops capturing video after deleting the temp. capture directory. https://t.co/RewdSQJLZk rdar://28581473","","","","http://www.openradar.me/radar?id=5053339083472896" "782617599662104577","","","2016-10-02 16:25:50 +0000","Tweetbot for iΟS","If you like this look at how Erlang developers handle errors. Same patterns can all be applied using try/catch. https://t.co/x2ypdGhXB7 https://t.co/hAXIfE2LrS","","","","http://erlang.org/doc/reference_manual/processes.html#errors,https://twitter.com/davecheney/status/782423739296165892" "782054368459706369","","","2016-10-01 03:07:45 +0000","Tweetbot for iΟS","RT @Catfish_Man: Two people were excited to learn about this tonight, so tweeting about it again: native Swift KVC-style reflection: https:…","782048602382184448","15444008","2016-10-01 02:44:51 +0000","https://github.com/Zewo/Reflection" "782045632387166208","","","2016-10-01 02:33:03 +0000","Tweetbot for iΟS","RT @schoneck: YC app done. Here we go.","782000682874331136","236151665","2016-09-30 23:34:26 +0000","" -"781988076868341760","","","2016-09-30 22:44:20 +0000","Tweetbot for Mac","Stand back! I’m AirDropping a 3.5 GB video.","","","","" +"781988076868341760","","","2016-09-30 22:44:20 +0000","Tweetbot for Mac","Stand back! I’m AirDropping a 3.5 GB video.","","","","" "781940558386257920","","","2016-09-30 19:35:31 +0000","Tweetbot for iΟS","Don’t tell me anyone actually really did this. https://t.co/4qnDOZgA5j","","","","https://twitter.com/iFixit/status/781908390486298624" "781884929093185536","781884370839830528","289246577","2016-09-30 15:54:28 +0000","Tweetbot for iΟS","@merowing_ @appcode I’ll have to give it another shot when 2016.3 is out and it supports Swift 3.","","","","" "781883470226214912","781875866259361793","289246577","2016-09-30 15:48:40 +0000","Tweetbot for iΟS","@merowing_ @appcode Are you still using AppCode? Since I started writing Swift I haven’t really touched it because Xcode was miles ahead.","","","","" -"781631062178799616","781630844905463809","4777951","2016-09-29 23:05:41 +0000","Tweetbot for Mac","@mjtsai Or even better, select Edit → Marks → Automatically Mark Prompt Lines.","","","","" -"781630844905463809","","","2016-09-29 23:04:50 +0000","Tweetbot for Mac","If the Terminal tricks that @mjtsai summarized don’t work with your fancy, custom prompt try using ⌘-Return to execute commands.","","","","" -"781628675368202240","781351788821610497","4777951","2016-09-29 22:56:12 +0000","Tweetbot for Mac","If you use AVFoundation and have hit this bug too please dupe. https://t.co/njzUztiiSu rdar://28553945 +"781631062178799616","781630844905463809","4777951","2016-09-29 23:05:41 +0000","Tweetbot for Mac","@mjtsai Or even better, select Edit → Marks → Automatically Mark Prompt Lines.","","","","" +"781630844905463809","","","2016-09-29 23:04:50 +0000","Tweetbot for Mac","If the Terminal tricks that @mjtsai summarized don’t work with your fancy, custom prompt try using ⌘-Return to execute commands.","","","","" +"781628675368202240","781351788821610497","4777951","2016-09-29 22:56:12 +0000","Tweetbot for Mac","If you use AVFoundation and have hit this bug too please dupe. https://t.co/njzUztiiSu rdar://28553945 (that work-around works too)","","","","http://www.openradar.me/radar?id=4980766484201472" -"781576324028641281","781524515381612545","14136484","2016-09-29 19:28:11 +0000","Tweetbot for Mac","@acorscadden 😮","","","","" -"781351788821610497","781340366188326912","4777951","2016-09-29 04:35:57 +0000","Tweetbot for Mac","A possible work-around is using a custom video compositor instead of AVVideoCompositionCoreAnimationTool.","","","","" -"781340366188326912","781310966810025984","4777951","2016-09-29 03:50:34 +0000","Tweetbot for Mac","This is apparently a bug in iOS 10. 😒 https://t.co/C4TY7xSDWS https://t.co/wmC9LbU6qi","","","","http://stackoverflow.com/questions/39560386/avplayer-playback-fails-while-avassetexportsession-is-active-as-of-ios-10,https://twitter.com/_sjs/status/781310966810025984" -"781310966810025984","","","2016-09-29 01:53:45 +0000","Tweetbot for Mac","If anyone can help me with this AVFoundation question I will be ever grateful! (Retweeting is helping 🙂) https://t.co/gsHC1bfN3k","","","","http://stackoverflow.com/questions/39760147/ios-10-avplayerlayer-doesnt-show-video-after-using-avvideocompositioncoreanima" +"781576324028641281","781524515381612545","14136484","2016-09-29 19:28:11 +0000","Tweetbot for Mac","@acorscadden 😮","","","","" +"781351788821610497","781340366188326912","4777951","2016-09-29 04:35:57 +0000","Tweetbot for Mac","A possible work-around is using a custom video compositor instead of AVVideoCompositionCoreAnimationTool.","","","","" +"781340366188326912","781310966810025984","4777951","2016-09-29 03:50:34 +0000","Tweetbot for Mac","This is apparently a bug in iOS 10. 😒 https://t.co/C4TY7xSDWS https://t.co/wmC9LbU6qi","","","","http://stackoverflow.com/questions/39560386/avplayer-playback-fails-while-avassetexportsession-is-active-as-of-ios-10,https://twitter.com/_sjs/status/781310966810025984" +"781310966810025984","","","2016-09-29 01:53:45 +0000","Tweetbot for Mac","If anyone can help me with this AVFoundation question I will be ever grateful! (Retweeting is helping 🙂) https://t.co/gsHC1bfN3k","","","","http://stackoverflow.com/questions/39760147/ios-10-avplayerlayer-doesnt-show-video-after-using-avvideocompositioncoreanima" "781254658778013697","","","2016-09-28 22:10:00 +0000","Tweetbot for iΟS","Is @OvercastFM crushing anyone else's battery? I'm using a 6s.","","","","" "781239045170999298","","","2016-09-28 21:07:57 +0000","Twitter Web Client","[Poll] iOS devs: Do you have web dev experience, and do you use AFNetworking? #iosdev","","","","" -"781219512699854854","","","2016-09-28 19:50:20 +0000","Tweetbot for Mac","Seems like UIDocumentPicker isn’t really made for 10 GB files. Mostly works with iCloud and Google Drive, but not Dropbox.","","","","" -"781011530091487235","781007526120853504","14136484","2016-09-28 06:03:53 +0000","Tweetbot for Mac","@acorscadden ha ha, that’s a password I don’t keep in 1Password either.","","","","" +"781219512699854854","","","2016-09-28 19:50:20 +0000","Tweetbot for Mac","Seems like UIDocumentPicker isn’t really made for 10 GB files. Mostly works with iCloud and Google Drive, but not Dropbox.","","","","" +"781011530091487235","781007526120853504","14136484","2016-09-28 06:03:53 +0000","Tweetbot for Mac","@acorscadden ha ha, that’s a password I don’t keep in 1Password either.","","","","" "780987809435947008","780950904006672386","236151665","2016-09-28 04:29:38 +0000","Tweetbot for iΟS","@schoneck https://t.co/G17LUrBZgp","","","","https://twitter.com/_sjs/status/780987809435947008/photo/1" "780902897173135360","780896803034046464","14136484","2016-09-27 22:52:13 +0000","Tweetbot for iΟS","@acorscadden It's probably my favourite feature in Sierra. And I'm going to jinx myself but it works for me every time on both my Macs.","","","","" "780902652146176001","","","2016-09-27 22:51:15 +0000","Tweetbot for iΟS","RT @acorscadden: @_sjs I turn on my monitors while my watch unlocks my computer.","780896803034046464","14136484","2016-09-27 22:28:00 +0000","" -"780877756330496000","","","2016-09-27 21:12:19 +0000","Tweetbot for Mac","“Auto-unlock takes 2 seconds so it’s faster to type my password.” +"780877756330496000","","","2016-09-27 21:12:19 +0000","Tweetbot for Mac","“Auto-unlock takes 2 seconds so it’s faster to type my password.” Yeah? Well I just sipped my coffee while my watch unlocked my Mac so nya.","","","","" -"780592266050019328","780591479592853504","14180235","2016-09-27 02:17:53 +0000","Tweetbot for Mac","@daveeed Is this just a test to see if you’re muted? 🤔","","","","" +"780592266050019328","780591479592853504","14180235","2016-09-27 02:17:53 +0000","Tweetbot for Mac","@daveeed Is this just a test to see if you’re muted? 🤔","","","","" "780587913880870913","","","2016-09-27 02:00:35 +0000","Tweetbot for iΟS","RT @tolmasky: Has anyone made a custom iPhone keyboard that is just a right-aligned 7-sized keyboard but on the 7+, just so I don’t have to…","780572640612192261","14581738","2016-09-27 00:59:54 +0000","" -"780586863610376196","","","2016-09-27 01:56:25 +0000","Tweetbot for Mac","Thanks to all Twitter app devs who implemented muting. It was made for nights like this. +"780586863610376196","","","2016-09-27 01:56:25 +0000","Tweetbot for Mac","Thanks to all Twitter app devs who implemented muting. It was made for nights like this. (That’s right, I’m probably muting you. Yes, you!)","","","","" -"780586429931933696","","","2016-09-27 01:54:42 +0000","Tweetbot for Mac","Great use for a home server: A window into your entire Dropbox if you don’t sync all folders to all your machines.","","","","" +"780586429931933696","","","2016-09-27 01:54:42 +0000","Tweetbot for Mac","Great use for a home server: A window into your entire Dropbox if you don’t sync all folders to all your machines.","","","","" "780422768718340096","","","2016-09-26 15:04:22 +0000","Tweetbot for iΟS","RT @FiloSottile: STOP THE PRESSES! Last week's OpenSSL security patch for 1.1.0 introduces a remote crasher/RCE https://t.co/p17MHwu8oe htt…","780363089510293504","51049452","2016-09-26 11:07:13 +0000","https://www.openssl.org/news/secadv/20160926.txt,https://www.openssl.org/news/secadv/20160926.txt,https://twitter.com/FiloSottile/status/780363089510293504/photo/1,https://twitter.com/FiloSottile/status/780363089510293504/photo/1" "780418905265217537","","","2016-09-26 14:49:01 +0000","Tweetbot for iΟS","Could be! I've had the same thing happen twice or thrice since upgrading to the iOS 10 beta. https://t.co/8JJWXjt2aI","","","","https://twitter.com/Cocoanetics/status/780406254887903232" "780418635420479488","","","2016-09-26 14:47:56 +0000","Tweetbot for iΟS","RT @segiddins: My phone died at 63% while running. WTF","780406765682761729","73644377","2016-09-26 14:00:46 +0000","" "780418590956589060","","","2016-09-26 14:47:46 +0000","Tweetbot for iΟS","RT @Cocoanetics: Yesterday my iPhone 6S turn itself off at 25% and showed the charge icon. When I plugged it in, it was again at around 30%.","780288532980064256","25703613","2016-09-26 06:10:57 +0000","" -"780265561489969152","780250706632585216","108724706","2016-09-26 04:39:41 +0000","Tweetbot for Mac","@rfistman @sarperdag In my case I got the message while doing custom video compositing using CoreImage and also fixed by switching to 32BGRA","","","","" +"780265561489969152","780250706632585216","108724706","2016-09-26 04:39:41 +0000","Tweetbot for Mac","@rfistman @sarperdag In my case I got the message while doing custom video compositing using CoreImage and also fixed by switching to 32BGRA","","","","" "780120219003998208","","","2016-09-25 19:02:08 +0000","Tweetbot for iΟS","🍗🍖🍺🍺🍺😃 https://t.co/nDqjbizOR7","","","","https://twitter.com/acorscadden/status/780117046646407168" "780119831836110848","780119272802496512","4777951","2016-09-25 19:00:36 +0000","Tweetbot for iΟS","""Every hand's a winner and every hand's a loser. And the best you can hope for is to die in your sleep."" #inspiration","","","","" "780119272802496512","","","2016-09-25 18:58:23 +0000","Tweetbot for iΟS","I'm collecting inspirational lyrics. ""Time's short, your life's your own. In the end we're all just dust and bones.""","","","","" @@ -566,29 +672,29 @@ Yeah? Well I just sipped my coffee while my watch unlocked my Mac so nya.","","" "779353104575672320","","","2016-09-23 16:13:54 +0000","Tweetbot for iΟS","RT @IanCutress: Give me unlimited funds, and I'll design something stupid that no-one will buy. Glory to PCIe https://t.co/z8oPJ02CjS https…","779346926596681729","317150782","2016-09-23 15:49:21 +0000","http://www.anandtech.com/show/10705/amd-7th-gen-bristol-ridge-and-am4-analysis-a12-9800-b350-a320-chipset,http://www.anandtech.com/show/10705/amd-7th-gen-bristol-ridge-and-am4-analysis-a12-9800-b350-a320-chipset,https://twitter.com/IanCutress/status/779346926596681729/photo/1" "779352157195603968","779348799542009856","86360812","2016-09-23 16:10:08 +0000","Tweetbot for iΟS","@KevinSMcArthur They also have a bunch of language-specific apps in the store. I've gone back to REPLs (and now have playgrounds for Swift).","","","","" "779012364179943424","779011802222858240","14136484","2016-09-22 17:39:55 +0000","Tweetbot for iΟS","@acorscadden That ship is going to sail. Better get on the gr8 again train. 🚂","","","","" -"779011118635200512","779010685661437952","14136484","2016-09-22 17:34:58 +0000","Tweetbot for Mac","@acorscadden By default it copies the app, the idea being that you retain the original for app store builds.","","","","" -"779007161921708033","","","2016-09-22 17:19:15 +0000","Tweetbot for Mac","Does MakeXcodeGr8Again work well? I really only use KZLinkedConsole so not sure if it’s worth bothering.","","","","" -"779005350825426944","779004798968274945","14136484","2016-09-22 17:12:03 +0000","Tweetbot for Mac","@acorscadden @1SecondEveryday We’re going to start using revisions! And in the future it’ll go x.9 → x.10 just as Jesus intended. 🐇","","","","" -"779003748525879296","779003420208340992","4777951","2016-09-22 17:05:41 +0000","Tweetbot for Mac","Yeah let’s just buffer 60 video frames in this loop. It’ll be fine.","","","","" -"779003420208340992","","","2016-09-22 17:04:23 +0000","Tweetbot for Mac","If you copy-paste code using AVFoundation from StackOverflow you’re gonna have a bad time. Apparently nobody knows about autorelease pools.","","","","" +"779011118635200512","779010685661437952","14136484","2016-09-22 17:34:58 +0000","Tweetbot for Mac","@acorscadden By default it copies the app, the idea being that you retain the original for app store builds.","","","","" +"779007161921708033","","","2016-09-22 17:19:15 +0000","Tweetbot for Mac","Does MakeXcodeGr8Again work well? I really only use KZLinkedConsole so not sure if it’s worth bothering.","","","","" +"779005350825426944","779004798968274945","14136484","2016-09-22 17:12:03 +0000","Tweetbot for Mac","@acorscadden @1SecondEveryday We’re going to start using revisions! And in the future it’ll go x.9 → x.10 just as Jesus intended. 🐇","","","","" +"779003748525879296","779003420208340992","4777951","2016-09-22 17:05:41 +0000","Tweetbot for Mac","Yeah let’s just buffer 60 video frames in this loop. It’ll be fine.","","","","" +"779003420208340992","","","2016-09-22 17:04:23 +0000","Tweetbot for Mac","If you copy-paste code using AVFoundation from StackOverflow you’re gonna have a bad time. Apparently nobody knows about autorelease pools.","","","","" "778986186484219904","","","2016-09-22 15:55:54 +0000","Twitter for iPhone","Drawing goatse on a phone with iOS 10 is far easier. Can't believe that wasn't demoed on stage at the event. https://t.co/5IWX9Rqtu9","","","","https://twitter.com/_sjs/status/646458129891241984" "778960702560022529","778893771773706240","9809942","2016-09-22 14:14:38 +0000","Tweetbot for iΟS","@sarperdag No, I don't actually need YCC420v so I switched to 32BGRA in case that warning is a problem waiting to happen.","","","","" -"778473538764152833","778472941797335040","12021512","2016-09-21 05:58:49 +0000","Tweetbot for Mac","@didats I’m still holding off upgrading my primary workstation for now, and I’m keeping an old MacBook on 10.11 with Xcode 7 just in case.","","","","" -"778473277341609984","778472941797335040","12021512","2016-09-21 05:57:47 +0000","Tweetbot for Mac","@didats Not perfectly. It still crashes for me and I have to upload builds using the Organizer in Xcode 8. It crashed on 10.11 too though.","","","","" -"778347185737871360","778320062889414656","4777951","2016-09-20 21:36:44 +0000","Tweetbot for Mac","Never mind then. Looks like Xcode 7 works fine on Sierra!","","","","" -"778347032834564096","778344714986590208","3271","2016-09-20 21:36:08 +0000","Tweetbot for Mac","@deeje @Leontiy It was crashing on launch during the beta. Looked today and it’s because of a plug-in, works fine after removing it!","","","","" +"778473538764152833","778472941797335040","12021512","2016-09-21 05:58:49 +0000","Tweetbot for Mac","@didats I’m still holding off upgrading my primary workstation for now, and I’m keeping an old MacBook on 10.11 with Xcode 7 just in case.","","","","" +"778473277341609984","778472941797335040","12021512","2016-09-21 05:57:47 +0000","Tweetbot for Mac","@didats Not perfectly. It still crashes for me and I have to upload builds using the Organizer in Xcode 8. It crashed on 10.11 too though.","","","","" +"778347185737871360","778320062889414656","4777951","2016-09-20 21:36:44 +0000","Tweetbot for Mac","Never mind then. Looks like Xcode 7 works fine on Sierra!","","","","" +"778347032834564096","778344714986590208","3271","2016-09-20 21:36:08 +0000","Tweetbot for Mac","@deeje @Leontiy It was crashing on launch during the beta. Looked today and it’s because of a plug-in, works fine after removing it!","","","","" "778320062889414656","","","2016-09-20 19:48:58 +0000","Tweetbot for iΟS","Xcode 7 is still unsupported on Sierra right? Don't think I can upgrade just yet.","","","","" -"777935851351187459","","","2016-09-19 18:22:14 +0000","Tweetbot for Mac","When portrait-upside-down Live Photos are sent to another iPhone, the video resource is scaled down but not the preferred transform. 😭","","","","" -"777594141878259712","","","2016-09-18 19:44:25 +0000","Tweetbot for Mac","Anyone else getting an empty list from AVAssetExportSession. exportPresetsCompatibleWithAsset in the iPhone 7 simulator?","","","","" +"777935851351187459","","","2016-09-19 18:22:14 +0000","Tweetbot for Mac","When portrait-upside-down Live Photos are sent to another iPhone, the video resource is scaled down but not the preferred transform. 😭","","","","" +"777594141878259712","","","2016-09-18 19:44:25 +0000","Tweetbot for Mac","Anyone else getting an empty list from AVAssetExportSession. exportPresetsCompatibleWithAsset in the iPhone 7 simulator?","","","","" "777581080463290368","777546564218650624","18553922","2016-09-18 18:52:30 +0000","Tweetbot for iΟS","@zwaldowski https://t.co/JB4EBBFeJJ","","","","https://m.youtube.com/watch?v=bAW1UQfhMU4" "777302549351194624","","","2016-09-18 00:25:44 +0000","Tweetbot for iΟS","Your projects should have bootstrap scripts. https://t.co/PXLaWCU4lG","","","","https://github.com/github/scripts-to-rule-them-all/blob/master/README.md" "777240905820442624","777200119921999872","14169916","2016-09-17 20:20:47 +0000","Tweetbot for iΟS","@jamesthomson Next keynote they’ll tell us all about how they use machine learning in iTunes Connect.","","","","" "776809299746009088","644300149469016064","18865450","2016-09-16 15:45:44 +0000","Twitter for iPhone","@marcedwards How does iOS 10 look, dot-wise?","","","","" "776793982084841472","776750350460186624","18553922","2016-09-16 14:44:52 +0000","Tweetbot for iΟS","@zwaldowski I ordered the exact same phone by 12:10am PST and it delivers Oct 5-12. I'm not patient enough for this.","","","","" -"776523059452792832","","","2016-09-15 20:48:19 +0000","Tweetbot for Mac","RT @chockenberry: So many backend developers are going to be learning about color management in the coming months. +"776523059452792832","","","2016-09-15 20:48:19 +0000","Tweetbot for Mac","RT @chockenberry: So many backend developers are going to be learning about color management in the coming months. For example: https://t.…","776482676609986560","36183","2016-09-15 18:07:51 +0000","http://www.imagemagick.org/script/color-management.php" -"776523045242408960","","","2016-09-15 20:48:15 +0000","Tweetbot for Mac","RT @chockenberry: Starting tomorrow: +"776523045242408960","","","2016-09-15 20:48:15 +0000","Tweetbot for Mac","RT @chockenberry: Starting tomorrow: 1) “OMFG these iPhone 7 pics look so great!” 2) Post to Twitter @@ -596,21 +702,20 @@ For example: https://t.…","776482676609986560","36183","2016-09-15 18:07:51 +0 That’s when you realize color…","776480879304544256","36183","2016-09-15 18:00:42 +0000","" "776486204111851524","774085328617385986","4777951","2016-09-15 18:21:52 +0000","Tweetbot for iΟS","New AVCaptureDevice API is here now: https://t.co/MeC2x3ulLc","","","","https://developer.apple.com/reference/avfoundation/avcapturedevicetype" -"776439700860968960","","","2016-09-15 15:17:04 +0000","Tweetbot for iΟS","RT @zwaldowski: If I were in charge of surveying people at Apple I’d ask questions like “How often do you use the screen?” just to fuck wit…","776434568912134144","18553922","2016-09-15 14:56:41 +0000","" "776434041755086849","","","2016-09-15 14:54:35 +0000","Tweetbot for iΟS","I hope they poll me on this one because my answer to all of those is ""constantly, every day"". https://t.co/ZgixLTwfdq","","","","https://twitter.com/ekurutepe/status/776373361031188480" "776274190211047425","776274030357721090","894911","2016-09-15 04:19:24 +0000","Tweetbot for iΟS","@JimRoepcke Ah, that makes sense then. Carry on as if you’re normal!","","","","" "776273697162178560","776226716339478528","894911","2016-09-15 04:17:26 +0000","Tweetbot for iΟS","@JimRoepcke iCloud? Who are you and what happened to Jim?! 😜","","","","" "776273233947439104","776205356250849282","236151665","2016-09-15 04:15:36 +0000","Tweetbot for iΟS","@schoneck @Reuters 😮","","","","" "775870199878651906","","","2016-09-14 01:34:05 +0000","Tweetbot for iΟS","How about building an array identical to an array you already have, and then doing nothing with it. https://t.co/zER5IhxD81","","","","https://twitter.com/thepbnjay/status/775711954170212352" -"775837936327598080","","","2016-09-13 23:25:53 +0000","Tweetbot for Mac","“need a swizzler so that YCC420v can be written” … Should I be using 32BGRA instead?","","","","" +"775837936327598080","","","2016-09-13 23:25:53 +0000","Tweetbot for Mac","“need a swizzler so that YCC420v can be written” … Should I be using 32BGRA instead?","","","","" "775824219976314883","775822981754974208","7125712","2016-09-13 22:31:22 +0000","Tweetbot for iΟS","@gte @reboundcast @jamesthomson Chin up kiddo, you'll land on your feet.","","","","" "775790659592523776","775790049166233600","14169916","2016-09-13 20:18:01 +0000","Tweetbot for iΟS","@jamesthomson @gte @reboundcast Excellent, hopefully you get invited back again soon!","","","","" "775788012978315264","","","2016-09-13 20:07:30 +0000","Tweetbot for iΟS","I'll miss @gte on @reboundcast but man did @jamesthomson kill it on the last episode! Who's this Lex guy they keep talking about though?","","","","" "775509981357481985","775509255264829440","33423","2016-09-13 01:42:42 +0000","Tweetbot for iΟS","@gruber But because the first and last phones bookend a date range, they only bookend 9 years right now. Eleventh phone marks the decade.","","","","" -"774085328617385986","753999034147155969","4777951","2016-09-09 03:21:38 +0000","Tweetbot for Mac","And when we change the zoom level will it automatically switch cameras for us, or do we have to manage that? So many questions.","","","","" -"774084905441435648","","","2016-09-09 03:19:57 +0000","Tweetbot for Mac","How are we going to tell the two 7+ back cameras from each other? Check the lens aperture on AVCaptureDevice? I don’t see any new APIs.","","","","" +"774085328617385986","753999034147155969","4777951","2016-09-09 03:21:38 +0000","Tweetbot for Mac","And when we change the zoom level will it automatically switch cameras for us, or do we have to manage that? So many questions.","","","","" +"774084905441435648","","","2016-09-09 03:19:57 +0000","Tweetbot for Mac","How are we going to tell the two 7+ back cameras from each other? Check the lens aperture on AVCaptureDevice? I don’t see any new APIs.","","","","" "774083006348660741","","","2016-09-09 03:12:25 +0000","Tweetbot for iΟS","Enterprise https://t.co/H38nntNTR3 https://t.co/kYdh1GK4i0","","","","https://twitter.com/ID_AA_Carmack/status/774024499532472322,https://twitter.com/_sjs/status/774083006348660741/photo/1" "774013493133447168","","","2016-09-08 22:36:11 +0000","Tweetbot for iΟS","📱Jet black 7 Plus with 128 GB. Final answer.","","","","" "773983319943815168","773692207773523969","19312115","2016-09-08 20:36:18 +0000","Tweetbot for iΟS","@atpfm Who are you gonna believe, @gruber or @panzer? They're both suspect 🤔 https://t.co/vANBI4scG0","","","","https://twitter.com/panzer/status/773692207773523969" @@ -618,7 +723,7 @@ Who's this Lex guy they keep talking about though?","","","","" "773898361443233792","773896903167647744","83951122","2016-09-08 14:58:42 +0000","Tweetbot for iΟS","@kierenmccarthy Oh no I fully appreciate that fact. They never pretended you were a candidate, you were obviously being outright rejected.","","","","" "773895044096897024","","","2016-09-08 14:45:31 +0000","Tweetbot for iΟS","If someone badgered me like this I would ignore them too, and never let them attend an event. Really annoying. https://t.co/rm4kHACaSl","","","","https://twitter.com/kierenmccarthy/status/773559878572843008" "773691666418896897","773687809966084099","19312115","2016-09-08 01:17:22 +0000","Tweetbot for iΟS","@panzer Is the jet black finish more or less slippery than the black one?","","","","" -"773614835091189760","","","2016-09-07 20:12:04 +0000","Tweetbot for Mac","Why do we update macOS in the App Store, and iOS in Settings? Kinda weird.","","","","" +"773614835091189760","","","2016-09-07 20:12:04 +0000","Tweetbot for Mac","Why do we update macOS in the App Store, and iOS in Settings? Kinda weird.","","","","" "773589101954027520","","","2016-09-07 18:29:49 +0000","Tweetbot for iΟS","Apple is making their own parody videos.","","","","" "773552173980323840","773551001303330817","6152112","2016-09-07 16:03:04 +0000","Tweetbot for iΟS","@agiletortoise Could not be more excited, in fact.","","","","" "773201179652165633","","","2016-09-06 16:48:21 +0000","Tweetbot for iΟS","I dislike that the dot for the Spotlight page looks the same as app pages in iOS 10. It was better in iOS 6 🔍 https://t.co/zsmdYpsftj","","","","https://twitter.com/_sjs/status/773201179652165633/photo/1,https://twitter.com/_sjs/status/773201179652165633/photo/1" @@ -642,15 +747,15 @@ Non-native apps are easy to spot. https://t.co/LFjychQKDC","","","","https://twi "769904235714449409","769898309024616448","14106454","2016-08-28 14:27:28 +0000","Tweetbot for iΟS","@srbaker If you asked people to say Volvo/Goodyear it would get shortened. Few will use 4 syllables when 2 get the point across.","","","","" "769904046291365888","769898309024616448","14106454","2016-08-28 14:26:43 +0000","Tweetbot for iΟS","@srbaker I get where you're coming from. It's like calling a computer an Intel or AMD. FSF would have been better off trying Glinux though.","","","","" "769897970468728832","769826146544390145","14106454","2016-08-28 14:02:34 +0000","Tweetbot for iΟS","@srbaker Linux is more engine than tire, and who can blame people for avoiding all the weird hard Gs with GNU software. Bad marketing.","","","","" -"769699236854190080","","","2016-08-28 00:52:53 +0000","Tweetbot for Mac","Sierra: When you ⌘⇧-G to type a path in a Finder open/save dialog, tab completion shows a list instead of completing the first option! 😀👍🏽","","","","" +"769699236854190080","","","2016-08-28 00:52:53 +0000","Tweetbot for Mac","Sierra: When you ⌘⇧-G to type a path in a Finder open/save dialog, tab completion shows a list instead of completing the first option! 😀👍🏽","","","","" "769641413336141825","","","2016-08-27 21:03:06 +0000","Tweetbot for iΟS","iOS 10 tuns on the screen when you raise your phone. So now I keep taking out my phone and turning off the screen with the sleep button. 😂","","","","" -"769631771897974784","","","2016-08-27 20:24:48 +0000","Tweetbot for Mac","Watch out for Xcode converting init(foo:) calls to init(value:) if it exists. e.g. https://t.co/J6OtINshzm","","","","https://github.com/samsonjs/Promise/blob/master/Promise/Promise.swift" -"769631088721268736","769630250611318784","4777951","2016-08-27 20:22:05 +0000","Tweetbot for Mac","Forked dependencies: ReSwift, CocoaLumberjack, YapDatabase, Promise, CacheCreek +"769631771897974784","","","2016-08-27 20:24:48 +0000","Tweetbot for Mac","Watch out for Xcode converting init(foo:) calls to init(value:) if it exists. e.g. https://t.co/J6OtINshzm","","","","https://github.com/samsonjs/Promise/blob/master/Promise/Promise.swift" +"769631088721268736","769630250611318784","4777951","2016-08-27 20:22:05 +0000","Tweetbot for Mac","Forked dependencies: ReSwift, CocoaLumberjack, YapDatabase, Promise, CacheCreek Yap work-around: https://t.co/SIPcqUFvq3","","","","https://gist.github.com/samsonjs/4be89237a7f3693e78fde3b1ee647306" -"769630250611318784","","","2016-08-27 20:18:45 +0000","Tweetbot for Mac","As for Swift 3 conversion… I had to modify Carthage, fork a few dependencies and convert them, and work around an issue with YapDB indexes.","","","","" -"769629756316725248","","","2016-08-27 20:16:47 +0000","Tweetbot for Mac","SimPholders crashes after a few seconds, but just enough time for me to open a folder so I can cope for a while.","","","","" -"769629571339517952","","","2016-08-27 20:16:03 +0000","Tweetbot for Mac","Installed Sierra on my MacBook yesterday and am enjoying auto-unlock and Siri so far. iOS 10’s lock screen is much improved too. Readable!","","","","" +"769630250611318784","","","2016-08-27 20:18:45 +0000","Tweetbot for Mac","As for Swift 3 conversion… I had to modify Carthage, fork a few dependencies and convert them, and work around an issue with YapDB indexes.","","","","" +"769629756316725248","","","2016-08-27 20:16:47 +0000","Tweetbot for Mac","SimPholders crashes after a few seconds, but just enough time for me to open a folder so I can cope for a while.","","","","" +"769629571339517952","","","2016-08-27 20:16:03 +0000","Tweetbot for Mac","Installed Sierra on my MacBook yesterday and am enjoying auto-unlock and Siri so far. iOS 10’s lock screen is much improved too. Readable!","","","","" "769573641361104896","","","2016-08-27 16:33:48 +0000","Tweetbot for iΟS","I have one of these and the trackpad is pretty bad (naturally). I’d say it’s worth $25 though. https://t.co/LUBR5BFbt3","","","","https://twitter.com/codinghorror/status/769456534543663104" "769572132678270976","","","2016-08-27 16:27:49 +0000","Tweetbot for iΟS","RT @DannyDeVito: ICYMI: ""#Trollfoot hangin' wit @cue"" https://t.co/YVCj3Nzb2H","769387949867823105","71876190","2016-08-27 04:15:56 +0000","http://www.whosay.com/l/URDbXdo?wsref=tw,http://www.whosay.com/l/URDbXdo?wsref=tw" "768590024212221952","","","2016-08-24 23:25:16 +0000","Tweetbot for iΟS","RT @antimatter15: Excited to finally release the programming environment I've been working on for the past few months! https://t.co/wQKyM1y…","768550006357831680","15407883","2016-08-24 20:46:15 +0000","https://alpha.trycarbide.com/" @@ -667,7 +772,7 @@ Yap work-around: https://t.co/SIPcqUFvq3","","","","https://gist.github.com/sams "766159911323512836","","","2016-08-18 06:28:52 +0000","Tweetbot for iΟS","This is really elegant in its simplicity. Limited, but I bet many of us could operate within these limits. https://t.co/MVuj9pyQUE","","","","https://twitter.com/dadgumjames/status/766110484642799616" "766097237969555460","","","2016-08-18 02:19:49 +0000","Tweetbot for iΟS","RT @StrongBadActual: Burninating the troposphere! (with apologies to @USInterior and their kickawesome instagram photo, I had to do it) htt…","766087355174260737","382221144","2016-08-18 01:40:33 +0000","https://twitter.com/StrongBadActual/status/766087355174260737/photo/1" -"766067931142774788","","","2016-08-18 00:23:22 +0000","Tweetbot for Mac","“so it should do the job if you just copy/paste it.. (you never know!)” cc @shit_so_says","","","","" +"766067931142774788","","","2016-08-18 00:23:22 +0000","Tweetbot for Mac","“so it should do the job if you just copy/paste it.. (you never know!)” cc @shit_so_says","","","","" "765930648892690432","765930020003020804","289246577","2016-08-17 15:17:51 +0000","Tweetbot for iΟS","@merowing_ Fair enough! I don’t have enough experience with VS Code or Atom to weigh in. I’d choose the one with more community modules.","","","","" "765929779233067008","765928039582687233","289246577","2016-08-17 15:14:24 +0000","Tweetbot for iΟS","@merowing_ Get your priorities straight. Choose your editor based on productivity not gimmicky font features you’ll forget about in a year.","","","","" "765273649632858112","","","2016-08-15 19:47:10 +0000","Twitter for iPhone","Awesome! @@ -696,16 +801,16 @@ Change the base branch of a Pull Request https://t.co/lcxihvFNyu https://t.co/AV #FirstSevenLanguages","","","","" "765201302108246018","765195233323655168","14136484","2016-08-15 14:59:41 +0000","Tweetbot for iΟS","@acorscadden Yeah I'll be giving it a shot. Looks good at a glance. Doesn't know what Schwartz Bay is so they still have some work to do.","","","","" "764850727407656960","764846062406397953","15678517","2016-08-14 15:46:38 +0000","Tweetbot for iΟS","@khanlou @calebd I’ve used ERB templates to the same effect, for model and view model classes which can have lots of boilerplate.","","","","" -"764666144036794368","764664894574645249","4777951","2016-08-14 03:33:10 +0000","Tweetbot for Mac","Of course as soon as I ask, the fix becomes obvious. Have to specify the struct’s generic type explicitly. Not great but hey it works.","","","","" -"764664894574645249","","","2016-08-14 03:28:12 +0000","Tweetbot for Mac","Can anyone tell me why this doesn’t work? Moving the static func out of the struct works. https://t.co/uSyv6Dj5Kj https://t.co/mkaZiEfIus","","","","http://swiftlang.ng.bluemix.net/#/repl/57afe4f17d414271177c94a5,https://twitter.com/_sjs/status/764664894574645249/photo/1" +"764666144036794368","764664894574645249","4777951","2016-08-14 03:33:10 +0000","Tweetbot for Mac","Of course as soon as I ask, the fix becomes obvious. Have to specify the struct’s generic type explicitly. Not great but hey it works.","","","","" +"764664894574645249","","","2016-08-14 03:28:12 +0000","Tweetbot for Mac","Can anyone tell me why this doesn’t work? Moving the static func out of the struct works. https://t.co/uSyv6Dj5Kj https://t.co/mkaZiEfIus","","","","http://swiftlang.ng.bluemix.net/#/repl/57afe4f17d414271177c94a5,https://twitter.com/_sjs/status/764664894574645249/photo/1" "764506472441008128","","","2016-08-13 16:58:41 +0000","Tweetbot for iΟS","RT @locomundo: “A good programmer is someone who looks both ways before crossing a one-way street.” — Doug Linder","764401209755181056","47952497","2016-08-13 10:00:24 +0000","" -"764154199655329792","764153396186210308","15079252","2016-08-12 17:38:53 +0000","Tweetbot for Mac","@mattjgalloway @Cocoanetics That’s a good question! Don’t have time to dive into this right now.","","","","" -"764152784480378880","764150824696066049","25703613","2016-08-12 17:33:15 +0000","Tweetbot for Mac","@Cocoanetics @mattjgalloway You’d have to start by reconciling Set.insert() and Array.append(). No truly general way to do it.","","","","" +"764154199655329792","764153396186210308","15079252","2016-08-12 17:38:53 +0000","Tweetbot for Mac","@mattjgalloway @Cocoanetics That’s a good question! Don’t have time to dive into this right now.","","","","" +"764152784480378880","764150824696066049","25703613","2016-08-12 17:33:15 +0000","Tweetbot for Mac","@Cocoanetics @mattjgalloway You’d have to start by reconciling Set.insert() and Array.append(). No truly general way to do it.","","","","" "764122717188608000","","","2016-08-12 15:33:47 +0000","Tweetbot for iΟS","Max is a class act. Too bad it didn’t work out. https://t.co/Yqd5x0BBno","","","","https://twitter.com/mxcl/status/764121924712566785" "764119009277063168","","","2016-08-12 15:19:03 +0000","Tweetbot for iΟS","This, and decompiling proprietary binaries if you’re sharecropping in the orchard. https://t.co/vIbpEkkeE2","","","","https://twitter.com/georgeb3dr/status/764111992814645249" "763879976886087680","763877965859917824","14136484","2016-08-11 23:29:13 +0000","Tweetbot for iΟS","@acorscadden Yeah even if we end up moving to something else later it might be worth getting up and running quickly.","","","","" -"763780134755151872","763779083037581312","108814849","2016-08-11 16:52:29 +0000","Tweetbot for Mac","@snarfmason The server in question is initially going to be storage heavy and processing light so Heroku + S3 may be a good fit.","","","","" -"763778456756760576","763776612655505409","108814849","2016-08-11 16:45:49 +0000","Tweetbot for Mac","@snarfmason Interesting. It could be worth the cost to go with Heroku because it’s only me right now so I don’t have a ton of time.","","","","" +"763780134755151872","763779083037581312","108814849","2016-08-11 16:52:29 +0000","Tweetbot for Mac","@snarfmason The server in question is initially going to be storage heavy and processing light so Heroku + S3 may be a good fit.","","","","" +"763778456756760576","763776612655505409","108814849","2016-08-11 16:45:49 +0000","Tweetbot for Mac","@snarfmason Interesting. It could be worth the cost to go with Heroku because it’s only me right now so I don’t have a ton of time.","","","","" "763775725480529920","","","2016-08-11 16:34:57 +0000","Twitter for iPhone","Poll: What's your preferred hosting platform? Why?","","","","" "763758134309466112","","","2016-08-11 15:25:03 +0000","Tweetbot for iΟS","Gotta admire @daveverwer’s long con to make us all briefly think it’s Friday today. 😄","","","","" "763741330535124992","763666201541275648","3226081491","2016-08-11 14:18:17 +0000","Tweetbot for iΟS","@cathy_birdy Nice wallpaper/lock screen image! I had that one for a while too.","","","","" @@ -726,7 +831,7 @@ Apparently I’m on a writing spree this month. https://t.co/wi3aClyY5u","",""," 7. ^^^ ditto ^^^ #FirstSevenJobs","","","","" "761980042440093696","","","2016-08-06 17:39:33 +0000","Tweetbot for iΟS","Not really sure what someone would expect to find for the last completion here. https://t.co/hIRW6usj7N","","","","https://twitter.com/_sjs/status/761980042440093696/photo/1" -"761254149019230208","760796349197606912","289246577","2016-08-04 17:35:07 +0000","Tweetbot for Mac","I made some improvements to @merowing_’s nice git pre-commit hook for iOS projects: https://t.co/JcF8XnXNTV https://t.co/FK7RrDRUDk","","","","https://samhuri.net/posts/2016/08/ios-git-pre-commit-hook,https://twitter.com/merowing_/status/760796349197606912" +"761254149019230208","760796349197606912","289246577","2016-08-04 17:35:07 +0000","Tweetbot for Mac","I made some improvements to @merowing_’s nice git pre-commit hook for iOS projects: https://t.co/JcF8XnXNTV https://t.co/FK7RrDRUDk","","","","https://samhuri.net/posts/2016/08/ios-git-pre-commit-hook,https://twitter.com/merowing_/status/760796349197606912" "761205969669939200","761123101874622464","25401953","2016-08-04 14:23:40 +0000","Tweetbot for iΟS","@steipete @Catfish_Man @zadr Maybe but I think @merowing_ got it in Poland af all places 😜","","","","" "760853180913627136","","","2016-08-03 15:01:48 +0000","Tweetbot for iΟS","This looks like a very nice start if you need promises in Swift. I'm a fan of the A+ spec from JS. https://t.co/n9kDNVNPYA","","","","https://twitter.com/khanlou/status/760847400697208833" "760347511244492800","","","2016-08-02 05:32:27 +0000","Tweetbot for iΟS","RT @gte: Here’s an awesome corner case of macOS you’d not considered: when in screen shot mode the apps aren’t notified about mouse movemen…","760286917091028992","7125712","2016-08-02 01:31:41 +0000","" @@ -737,8 +842,8 @@ Apparently I’m on a writing spree this month. https://t.co/wi3aClyY5u","",""," "759156603887034368","","","2016-07-29 22:40:13 +0000","Tweetbot for iΟS","After a couple months of using a MacBook One my 13"" MBP felt like a dining tray, so I grabbed my pre-retina 15"" and it's a brick and a tray.","","","","" "758692905745653760","","","2016-07-28 15:57:39 +0000","Tweetbot for iΟS","Who's seen @garybernhardt's Destroy All Software lessons? Worth it? Best to start with season 1 or do you have a favourite season?","","","","" "758691180905238528","758659801597546501","289246577","2016-07-28 15:50:47 +0000","Tweetbot for iΟS","@merowing_ I use GIF Brewery on the Mac.","","","","" -"757964590319742976","757964356860555264","4777951","2016-07-26 15:43:35 +0000","Tweetbot for Mac","It also builds up an array with a subset of those subviews and then does nothing with it. 🔥🔥🔥","","","","" -"757964356860555264","","","2016-07-26 15:42:39 +0000","Tweetbot for Mac","This custom grid view iterates over its subviews in -scrollViewDidScroll and there are hundreds to thousands of subviews. 😱","","","","" +"757964590319742976","757964356860555264","4777951","2016-07-26 15:43:35 +0000","Tweetbot for Mac","It also builds up an array with a subset of those subviews and then does nothing with it. 🔥🔥🔥","","","","" +"757964356860555264","","","2016-07-26 15:42:39 +0000","Tweetbot for Mac","This custom grid view iterates over its subviews in -scrollViewDidScroll and there are hundreds to thousands of subviews. 😱","","","","" "757945668627406848","757913233151913984","25401953","2016-07-26 14:28:24 +0000","Tweetbot for iΟS","@steipete @agiletortoise Maybe only b). https://t.co/yvqlsy3yyM","","","","https://twitter.com/IanCutress/status/757901381952901120" "757613052380389376","","","2016-07-25 16:26:42 +0000","Twitter for iPhone","RT @RebeccaSlatkin: The following is intended for thriving, well-adjusted developers and designers only. @@ -774,27 +879,27 @@ All I needed was 33 years in the industry, nine years of blogging, and five pr "755068631067660288","","","2016-07-18 15:56:04 +0000","Tweetbot for iΟS","RT @jamesthomson: If you're having problems with widgets on iOS 10, I think this is why - tiny test case is using 10MB more on iOS 10. http…","755038785478529025","14169916","2016-07-18 13:57:29 +0000","https://twitter.com/jamesthomson/status/755038785478529025/photo/1" "754971815865298951","754869838749851648","21626062","2016-07-18 09:31:22 +0000","Tweetbot for iΟS","@irace I don’t think so. I’ve been doing so for months and it works fine. Never really use Google Photos but I like having backups.","","","","" "754490100168298496","","","2016-07-17 01:37:12 +0000","Tweetbot for iΟS","It's been a busy month so far but I'm finally having my first lime Rickey. Delicious. 🍸","","","","" -"754211075654942721","754151236220268548","22406953","2016-07-16 07:08:27 +0000","Tweetbot for Mac","@macatbook GitUp is pretty good but has a lot of empty space compared to GitX which shows commit messages. And no per-line staging. 👴🏼","","","","" +"754211075654942721","754151236220268548","22406953","2016-07-16 07:08:27 +0000","Tweetbot for Mac","@macatbook GitUp is pretty good but has a lot of empty space compared to GitX which shows commit messages. And no per-line staging. 👴🏼","","","","" "754151509101645824","754151236220268548","22406953","2016-07-16 03:11:45 +0000","Tweetbot for iΟS","@macatbook Not really. Maybe I should check it out and stick to committing with GitX. Heard good things.","","","","" -"754102131368480771","754101813830311937","4777951","2016-07-15 23:55:33 +0000","Tweetbot for Mac","This really makes my day, and makes GitX about 10x more useful to me. Way less piping git diff output to TextMate.","","","","" -"754101813830311937","754099885272539136","4777951","2016-07-15 23:54:17 +0000","Tweetbot for Mac","It has copying everywhere! Diff view, commit view, commit *list*, oh my!","","","","" +"754102131368480771","754101813830311937","4777951","2016-07-15 23:55:33 +0000","Tweetbot for Mac","This really makes my day, and makes GitX about 10x more useful to me. Way less piping git diff output to TextMate.","","","","" +"754101813830311937","754099885272539136","4777951","2016-07-15 23:54:17 +0000","Tweetbot for Mac","It has copying everywhere! Diff view, commit view, commit *list*, oh my!","","","","" "754099885272539136","","","2016-07-15 23:46:37 +0000","Twitter Web Client","Went to add copying to GitX and found that @pietbrauer's fork does it already! Guess I should upgrade Git2Go 👏🏼🍻 https://t.co/26s9HlZZKc","","","","https://github.com/nerdishbynature/gitx" -"754023046139129856","754014901023023104","385193","2016-07-15 18:41:17 +0000","Tweetbot for Mac","@jim_rutherford Yeah I’ll have to make an effort to hang out with local devs more.","","","","" +"754023046139129856","754014901023023104","385193","2016-07-15 18:41:17 +0000","Tweetbot for Mac","@jim_rutherford Yeah I’ll have to make an effort to hang out with local devs more.","","","","" "754003244653830144","754002466404839424","22406953","2016-07-15 17:22:36 +0000","Twitter Web Client","@macatbook You act fast :) Do you think it's at least possible with the current version of Swift?","","","","" -"753999034147155969","753713758258667521","4777951","2016-07-15 17:05:53 +0000","Tweetbot for Mac","Given the info in this WWDC session https://t.co/MTRBO3vSJL I wonder if Carthage or CocoaPods will be able to combine frameworks for us #iOS","","","","https://developer.apple.com/videos/play/wwdc2016/406/" -"753997246346072065","","","2016-07-15 16:58:46 +0000","Tweetbot for Mac","RT @thinkgeek: Shout out to the Sams. Go give yours a hug! https://t.co/remFf5ge1V","753804541703827456","12611642","2016-07-15 04:13:02 +0000","https://twitter.com/thinkgeek/status/753804541703827456/photo/1,https://twitter.com/thinkgeek/status/753804541703827456/photo/1" -"753992311139217408","753991902135922688","45653","2016-07-15 16:39:10 +0000","Tweetbot for Mac","@jwynia Exactly. But I’d still be happy to get smaller, isolated pieces of proprietary projects reviewed there when legal allows it.","","","","" -"753991853528055808","753991387075317760","45653","2016-07-15 16:37:21 +0000","Tweetbot for Mac","@jwynia @0x00A @cheerskevin I was thinking of something a bit different, but for code that can be public this is great!","","","","" -"753991688691920897","","","2016-07-15 16:36:41 +0000","Tweetbot for Mac","Didn’t know about this! I was thinking of a private system for commercial/proprietary projects but this is sweet. https://t.co/TBDQMs9UGx","","","","https://twitter.com/jwynia/status/753991387075317760" -"753990408355483648","753990077743763457","95938827","2016-07-15 16:31:36 +0000","Tweetbot for Mac",".@0x00A Honest question: is anyone providing code review as a service? Seems like a potential opportunity.","","","","" -"753990167812124672","","","2016-07-15 16:30:39 +0000","Tweetbot for Mac","RT @0x00A: @_sjs no one except everyone on the internet! ;)","753990077743763457","95938827","2016-07-15 16:30:17 +0000","" -"753989963868282880","753989641024344064","4777951","2016-07-15 16:29:50 +0000","Tweetbot for Mac","Plus I learn a lot from you all here on Twitter, so thanks everyone! You’re awesome.","","","","" -"753989641024344064","","","2016-07-15 16:28:33 +0000","Tweetbot for Mac","Working as the only dev on a project means there’s nobody to learn from. I can find solace in making all the decisions though.","","","","" +"753999034147155969","753713758258667521","4777951","2016-07-15 17:05:53 +0000","Tweetbot for Mac","Given the info in this WWDC session https://t.co/MTRBO3vSJL I wonder if Carthage or CocoaPods will be able to combine frameworks for us #iOS","","","","https://developer.apple.com/videos/play/wwdc2016/406/" +"753997246346072065","","","2016-07-15 16:58:46 +0000","Tweetbot for Mac","RT @thinkgeek: Shout out to the Sams. Go give yours a hug! https://t.co/remFf5ge1V","753804541703827456","12611642","2016-07-15 04:13:02 +0000","https://twitter.com/thinkgeek/status/753804541703827456/photo/1,https://twitter.com/thinkgeek/status/753804541703827456/photo/1" +"753992311139217408","753991902135922688","45653","2016-07-15 16:39:10 +0000","Tweetbot for Mac","@jwynia Exactly. But I’d still be happy to get smaller, isolated pieces of proprietary projects reviewed there when legal allows it.","","","","" +"753991853528055808","753991387075317760","45653","2016-07-15 16:37:21 +0000","Tweetbot for Mac","@jwynia @0x00A @cheerskevin I was thinking of something a bit different, but for code that can be public this is great!","","","","" +"753991688691920897","","","2016-07-15 16:36:41 +0000","Tweetbot for Mac","Didn’t know about this! I was thinking of a private system for commercial/proprietary projects but this is sweet. https://t.co/TBDQMs9UGx","","","","https://twitter.com/jwynia/status/753991387075317760" +"753990408355483648","753990077743763457","95938827","2016-07-15 16:31:36 +0000","Tweetbot for Mac",".@0x00A Honest question: is anyone providing code review as a service? Seems like a potential opportunity.","","","","" +"753990167812124672","","","2016-07-15 16:30:39 +0000","Tweetbot for Mac","RT @0x00A: @_sjs no one except everyone on the internet! ;)","753990077743763457","95938827","2016-07-15 16:30:17 +0000","" +"753989963868282880","753989641024344064","4777951","2016-07-15 16:29:50 +0000","Tweetbot for Mac","Plus I learn a lot from you all here on Twitter, so thanks everyone! You’re awesome.","","","","" +"753989641024344064","","","2016-07-15 16:28:33 +0000","Tweetbot for Mac","Working as the only dev on a project means there’s nobody to learn from. I can find solace in making all the decisions though.","","","","" "753962095218077696","","","2016-07-15 14:39:06 +0000","Tweetbot for iΟS","RT @zii: when folks ask how living in SF was i usually shrug it off but i’m thinking all of this https://t.co/QXL1b5l1WI","753851945014538240","12712742","2016-07-15 07:21:24 +0000","https://twitter.com/RichCSmith/status/751558444239380481,https://twitter.com/RichCSmith/status/751558444239380481" -"753713758258667521","753713431136509952","4777951","2016-07-14 22:12:17 +0000","Tweetbot for Mac","AVAssets for other types of videos would have a transform like [-1, 0, 0, -1, 1280, 720] which puts them back in frame. #iOS","","","","" -"753713431136509952","","","2016-07-14 22:10:59 +0000","Tweetbot for Mac","AVAssets for time-lapse videos sometimes have preferredTransform = [-1, 0, 0, -1, 0, 0] (missing translation). Is this a bug?","","","","" -"753384358048780288","","","2016-07-14 00:23:22 +0000","Tweetbot for Mac","Typing out tweets and then deleting them is my therapist.","","","","" +"753713758258667521","753713431136509952","4777951","2016-07-14 22:12:17 +0000","Tweetbot for Mac","AVAssets for other types of videos would have a transform like [-1, 0, 0, -1, 1280, 720] which puts them back in frame. #iOS","","","","" +"753713431136509952","","","2016-07-14 22:10:59 +0000","Tweetbot for Mac","AVAssets for time-lapse videos sometimes have preferredTransform = [-1, 0, 0, -1, 0, 0] (missing translation). Is this a bug?","","","","" +"753384358048780288","","","2016-07-14 00:23:22 +0000","Tweetbot for Mac","Typing out tweets and then deleting them is my therapist.","","","","" "753382113483694080","","","2016-07-14 00:14:27 +0000","OS X","Radar: Xcode 7.3.1: iOS Simulator doesn't bridge my Mac's camera https://t.co/pgM1nU6xZL","","","","http://openradar.me/27336450" "752623369950900224","","","2016-07-11 21:59:29 +0000","Tweetbot for iΟS","RT @typeoneerror: @_sjs my understanding from US histroy is that metaphorically: melting pot=assimilation, salad=multi-culturalism","752623215680167936","11973362","2016-07-11 21:58:52 +0000","" "752621280822603776","752619853836537857","11973362","2016-07-11 21:51:11 +0000","Twitter for iPad",".@typeoneerror If you feel those metaphors are the same as cultural assimilation then my idea of what that means may need some adjustment.","","","","" @@ -815,16 +920,16 @@ https://t.co/QXL1b5l1WI","753851945014538240","12712742","2016-07-15 07:21:24 +0 "750466143731593217","750422336684392449","1409144809","2016-07-05 23:07:26 +0000","Tweetbot for iΟS","@_connectedfm Apple could provide binary translation from Intel to ARM, opposite of Intel's strategy here. https://t.co/abyDjYmBqO","","","","http://www.anandtech.com/show/5365/intels-medfield-atom-z2460-arrive-for-smartphones/5" "750426490039181313","750426288439996416","385193","2016-07-05 20:29:52 +0000","Tweetbot for iΟS","@jim_rutherford Not really. I frequently get ""delivery"" notices when I was home all day. They don't even try.","","","","" "750416149863469056","","","2016-07-05 19:48:46 +0000","Tweetbot for iΟS","The Purolator guy that just delivered some Amazon stuff looked tired. Threat of Canada Post striking must be keeping him busier than usual.","","","","" -"750413985766223872","750413133924085760","4777951","2016-07-05 19:40:10 +0000","Tweetbot for Mac","Tweaks: import UIKit, #define PSPDFLogError NSLog, declare functions at the top.","","","","" -"750413133924085760","","","2016-07-05 19:36:47 +0000","Tweetbot for Mac","Found 3-4 threading bugs the other day thanks to this handy piece of work by @steipete. Thanks! https://t.co/DOIIh2KrJc","","","","https://gist.github.com/samsonjs/f9b276393e0a24155de00ea4b2434fce" +"750413985766223872","750413133924085760","4777951","2016-07-05 19:40:10 +0000","Tweetbot for Mac","Tweaks: import UIKit, #define PSPDFLogError NSLog, declare functions at the top.","","","","" +"750413133924085760","","","2016-07-05 19:36:47 +0000","Tweetbot for Mac","Found 3-4 threading bugs the other day thanks to this handy piece of work by @steipete. Thanks! https://t.co/DOIIh2KrJc","","","","https://gist.github.com/samsonjs/f9b276393e0a24155de00ea4b2434fce" "750201970137272320","","","2016-07-05 05:37:42 +0000","Twitter for iPhone","Not sure which I like more, Selfie Moment or Flames of Fire. Always enjoy these and sad it may be the last. https://t.co/jJsgFWTyBc","","","","https://twitter.com/cabel/status/750064276207906816" -"750180299011600384","","","2016-07-05 04:11:35 +0000","Tweetbot for Mac","What do you think about ReSwift?","","","","" +"750180299011600384","","","2016-07-05 04:11:35 +0000","Tweetbot for Mac","What do you think about ReSwift?","","","","" "750151815392485376","750151562240987138","4777951","2016-07-05 02:18:24 +0000","Tweetbot for iΟS","I feel like one block / method for each increment would be much more manageable. You can share code between those with usual techniques.","","","","" "750151562240987138","","","2016-07-05 02:17:24 +0000","Tweetbot for iΟS","Anyone have experience with @realm’s migrations in production? Does complexity explode because each if-block is dependent on all prior ones?","","","","" "750001075206316032","","","2016-07-04 16:19:25 +0000","Twitter for iPhone","https://t.co/TUUbzgf5IO https://t.co/kS2b0XSDR4","","","","https://twitter.com/kcsaff/status/744351065496182784,https://twitter.com/skullmandible/status/749760434375241729" -"749749437124141056","","289246577","2016-07-03 23:39:30 +0000","Tweetbot for Mac","@merowing_ If you build a Hackintosh you should make a dual socket monster. It would be awesome.","","","","" +"749749437124141056","","289246577","2016-07-03 23:39:30 +0000","Tweetbot for Mac","@merowing_ If you build a Hackintosh you should make a dual socket monster. It would be awesome.","","","","" "749332912038752256","","","2016-07-02 20:04:22 +0000","Tweetbot for iΟS","RT @wwwtxt: Who else is on the net this summer? ☯93JUN","484731425854611456","207756340","2014-07-03 16:12:32 +0000","" "749308099253547008","","","2016-07-02 18:25:46 +0000","Tweetbot for iΟS","Just had to shake a giant iPad pro with a keyboard on it to undo something. So ridiculous. https://t.co/RskaAbjfKu","","","","https://m.youtube.com/watch?v=k_8Qi-P2jQg" "749302762962161664","","","2016-07-02 18:04:34 +0000","Tweetbot for iΟS","RT @acorscadden: @_sjs wow…and I have trouble with Xcode project files on a project with 2 devs","749302242637848576","14136484","2016-07-02 18:02:30 +0000","" @@ -836,8 +941,8 @@ Always enjoy these and sad it may be the last. https://t.co/jJsgFWTyBc","","","" Sounds like chaos. That’s fine for Google? https://t.co/uTYx8LQuwP","","","","https://twitter.com/chrismaddern/status/749027266773082112" "749272212905992192","749271038060482566","4777951","2016-07-02 16:03:11 +0000","Tweetbot for iΟS","I take that back, it's scrolled down some. Before scrolling all you see is header and some title. No peek for you.","","","","" "749271038060482566","","","2016-07-02 15:58:30 +0000","Tweetbot for iΟS","This is why I stopped peeking at links in Twitter apps. This is actually an example of one of the better sites 🤔 https://t.co/6R1hGjygRp","","","","https://twitter.com/saniul/status/749267420888563712" -"749080484848672768","749080359002714113","4777951","2016-07-02 03:21:19 +0000","Tweetbot for Mac","We learned prohibition doesn’t work a really long time ago.","","","","" -"749080359002714113","","","2016-07-02 03:20:49 +0000","Tweetbot for Mac","On the day of the year where we celebrate how awesome and free Canada is. Boggles my mind. Shame on @vicpdcanada 🔔🔔 https://t.co/bt1NwxnuON","","","","https://twitter.com/heradasha/status/749070939770413056" +"749080484848672768","749080359002714113","4777951","2016-07-02 03:21:19 +0000","Tweetbot for Mac","We learned prohibition doesn’t work a really long time ago.","","","","" +"749080359002714113","","","2016-07-02 03:20:49 +0000","Tweetbot for Mac","On the day of the year where we celebrate how awesome and free Canada is. Boggles my mind. Shame on @vicpdcanada 🔔🔔 https://t.co/bt1NwxnuON","","","","https://twitter.com/heradasha/status/749070939770413056" "749053848866525185","","","2016-07-02 01:35:28 +0000","Tweetbot for iΟS","Damn I should have complained about 7-bit ASCII to @siracusa. The rest of you @atpfm listeners let me down. Don't make me do stuff.","","","","" "749023480578924544","749022457147723776","14180235","2016-07-01 23:34:48 +0000","Tweetbot for iΟS","@daveeed ha ha! They will not last that long","","","","" "749020873537916928","749019367120121856","14180235","2016-07-01 23:24:27 +0000","Tweetbot for iΟS",".@daveeed I have been training for this my entire life.","","","","" @@ -852,12 +957,12 @@ https://t.co/6nW60Cb55A","749007684733722624","7125712","2016-07-01 22:32:02 +00 "748930074150260736","","","2016-07-01 17:23:38 +0000","Tweetbot for iΟS","RT @Canada: A bit of #CanadaDay 🍁 history… https://t.co/pMhlzqLGqh","748923788205690880","2459609448","2016-07-01 16:58:40 +0000","https://twitter.com/Canada/status/748923788205690880/photo/1,https://twitter.com/Canada/status/748923788205690880/photo/1" "748921781793292290","","","2016-07-01 16:50:41 +0000","Tweetbot for iΟS","BTW it's Rickey month, so get yourself some good gin and bourbon! Sadly I missed Martini day on June 19th but I will make up for it. 🍸","","","","" "748921114538020864","","","2016-07-01 16:48:02 +0000","Twitter for iPhone","Fantastic write up on how Instagram ships a solid Android app (whether you work on Android apps or not). https://t.co/juggCvUnwT","","","","https://engineering.instagram.com/instagram-android-four-years-later-927c166b0201#.affw23f6t" -"748920064200454145","","","2016-07-01 16:43:52 +0000","Tweetbot for Mac","Happy Canada day! 🇨🇦 https://t.co/pQzvoZpsNx","","","","https://twitter.com/_sjs/status/748920064200454145/photo/1" +"748920064200454145","","","2016-07-01 16:43:52 +0000","Tweetbot for Mac","Happy Canada day! 🇨🇦 https://t.co/pQzvoZpsNx","","","","https://twitter.com/_sjs/status/748920064200454145/photo/1" "748893650860412928","","","2016-07-01 14:58:54 +0000","Tweetbot for iΟS","RT @acorscadden: apfs troll? …copy of a friends entire hdd in some random folder…they’ll now mysteriously use up space at twice the rate as…","748880393881784320","14136484","2016-07-01 14:06:14 +0000","" "748787185298485248","","","2016-07-01 07:55:51 +0000","Tweetbot for iΟS","RT @Nick_Craver: This would make a good tech debt poster: https://t.co/LCGnSpRDmC","748647645397254144","95030839","2016-06-30 22:41:22 +0000","https://twitter.com/Nick_Craver/status/748647645397254144/photo/1,https://twitter.com/Nick_Craver/status/748647645397254144/photo/1" -"748741689259356160","","","2016-07-01 04:55:04 +0000","Tweetbot for Mac","But wait! Forgot about my iOttie dock. That thing rotates. https://t.co/bhmGO0N8a0","","","","https://twitter.com/_sjs/status/748741689259356160/photo/1" -"748739517763375106","","","2016-07-01 04:46:26 +0000","Tweetbot for Mac","Working on a landscape only app means I need new iPhone docks. Never even considered one that wasn’t portrait only.","","","","" -"748675042431500288","","","2016-07-01 00:30:14 +0000","Tweetbot for Mac","OMG everyone, force click on a stack of views in interface builder! Really wish I discovered this sooner. #Xcode","","","","" +"748741689259356160","","","2016-07-01 04:55:04 +0000","Tweetbot for Mac","But wait! Forgot about my iOttie dock. That thing rotates. https://t.co/bhmGO0N8a0","","","","https://twitter.com/_sjs/status/748741689259356160/photo/1" +"748739517763375106","","","2016-07-01 04:46:26 +0000","Tweetbot for Mac","Working on a landscape only app means I need new iPhone docks. Never even considered one that wasn’t portrait only.","","","","" +"748675042431500288","","","2016-07-01 00:30:14 +0000","Tweetbot for Mac","OMG everyone, force click on a stack of views in interface builder! Really wish I discovered this sooner. #Xcode","","","","" "748628340412604416","","","2016-06-30 21:24:39 +0000","OS X","Come on Apple, get Reminders off of CalDAV and onto something better already. Reminders have been rather broken recently.","","","","" "748407815165747200","","","2016-06-30 06:48:22 +0000","Tweetbot for iΟS","Wireless headphones means BlueTooth and BT is fiddly as well just in a different way than cables are fiddly. @gruber https://t.co/eF5MBPdQnQ","","","","https://twitter.com/daringfireball/status/748232350589345792" "748327943219212288","","","2016-06-30 01:30:59 +0000","Tweetbot for iΟS","Dear Americans, @@ -865,10 +970,10 @@ https://t.co/6nW60Cb55A","749007684733722624","7125712","2016-07-01 22:32:02 +00 Look how nice this photo is. Please don't elect Trump. Love Canada https://t.co/x1QRHe2T3Y","","","","https://twitter.com/JustinTrudeau/status/748313331673501696" -"748295642095616000","","","2016-06-29 23:22:38 +0000","Tweetbot for Mac","A rare miss for Betteridge’s Law of Headlines. https://t.co/6WcMDii94T","","","","https://twitter.com/flawlessappio/status/748135302947082240" -"748295141601878016","748294631897497600","4777951","2016-06-29 23:20:39 +0000","Tweetbot for Mac","You can add __attribute__((warn_unused_result)) to any method to opt-in to warnings. That’s nice but doesn’t help me. Oh well! #objc","","","","" -"748294631897497600","748200620411150339","4777951","2016-06-29 23:18:37 +0000","Tweetbot for Mac","If I change them to instance methods and rename result to initResult then it warns. #objc https://t.co/AGR1jyhZxZ","","","","https://twitter.com/_sjs/status/748200620411150339" -"748200620411150339","","","2016-06-29 17:05:03 +0000","Tweetbot for Mac","Why doesn’t clang warn about an unused result in this case? +"748295642095616000","","","2016-06-29 23:22:38 +0000","Tweetbot for Mac","A rare miss for Betteridge’s Law of Headlines. https://t.co/6WcMDii94T","","","","https://twitter.com/flawlessappio/status/748135302947082240" +"748295141601878016","748294631897497600","4777951","2016-06-29 23:20:39 +0000","Tweetbot for Mac","You can add __attribute__((warn_unused_result)) to any method to opt-in to warnings. That’s nice but doesn’t help me. Oh well! #objc","","","","" +"748294631897497600","748200620411150339","4777951","2016-06-29 23:18:37 +0000","Tweetbot for Mac","If I change them to instance methods and rename result to initResult then it warns. #objc https://t.co/AGR1jyhZxZ","","","","https://twitter.com/_sjs/status/748200620411150339" +"748200620411150339","","","2016-06-29 17:05:03 +0000","Tweetbot for Mac","Why doesn’t clang warn about an unused result in this case? + (id)result { return @42; } + (void)unused { [self result]; }","","","","" @@ -882,14 +987,14 @@ Love Canada https://t.co/x1QRHe2T3Y","","","","https://twitter.com/JustinTrudeau "748023609277448192","748023338291855361","4777951","2016-06-29 05:21:40 +0000","Tweetbot for iΟS","@acorscadden And several acts of true desperation: self = nil; 😂","","","","" "748023338291855361","748021877394804736","4777951","2016-06-29 05:20:36 +0000","Tweetbot for iΟS","@acorscadden There was at least one instance of this choice tidbit: x = [[[[Foo alloc] init] retain] retain]; 🤔","","","","" "748021877394804736","748021458073456640","14136484","2016-06-29 05:14:47 +0000","Tweetbot for iΟS","@acorscadden Not too bad! There are some ownership issues where nothing retained an object and now ARC releases it automatically. 😬","","","","" -"748006813279338498","748005709279801344","4777951","2016-06-29 04:14:56 +0000","Tweetbot for Mac","Still one of my favourite programming stories of all time: https://t.co/R0YeUMbsaq https://t.co/dtDdP7Slby","","","","http://www.folklore.org/StoryView.py?story=Negative_2000_Lines_Of_Code.txt,https://twitter.com/_sjs/status/748006813279338498/photo/1" -"748005709279801344","","","2016-06-29 04:10:33 +0000","Tweetbot for Mac","First week: 337 files changed, 2981 insertions(+), 9932 deletions(-) https://t.co/okz5A4uxvP","","","","https://twitter.com/_sjs/status/748005709279801344/photo/1" +"748006813279338498","748005709279801344","4777951","2016-06-29 04:14:56 +0000","Tweetbot for Mac","Still one of my favourite programming stories of all time: https://t.co/R0YeUMbsaq https://t.co/dtDdP7Slby","","","","http://www.folklore.org/StoryView.py?story=Negative_2000_Lines_Of_Code.txt,https://twitter.com/_sjs/status/748006813279338498/photo/1" +"748005709279801344","","","2016-06-29 04:10:33 +0000","Tweetbot for Mac","First week: 337 files changed, 2981 insertions(+), 9932 deletions(-) https://t.co/okz5A4uxvP","","","","https://twitter.com/_sjs/status/748005709279801344/photo/1" "747883120418918400","","","2016-06-28 20:03:25 +0000","Tweetbot for iΟS","Which iPhone apps require 64-bit / A7? When you require that are old versions available like they are on older OS versions?","","","","" "747815245377220608","","","2016-06-28 15:33:42 +0000","Tweetbot for iΟS","Happy to say that I'm now working with the fine team at @1SecondEveryday! Great things to come.","","","","" "747602411393409024","","","2016-06-28 01:27:59 +0000","Tweetbot for iΟS","RT @wwwtxt: It remains my opinion that pretending to be an asshole on the net and actually being one are not as far apart as some people th…","515933157242470400","207756340","2014-09-27 18:37:04 +0000","" "747483713018044416","","","2016-06-27 17:36:19 +0000","OS X","Back at my dual 27” displays after a week of using a MacBook One and I don’t even know what do with all this space now.","","","","" "747468116112744450","742769838989283328","4777951","2016-06-27 16:34:20 +0000","Tweetbot for iΟS","Just realized that a VM can expose this to do per-user or other granular encryption in the guest OS. Pretty cool. https://t.co/1D8r5xKGrU","","","","https://twitter.com/_sjs/status/742769838989283328" -"747427831131439104","747346613941612544","15219531","2016-06-27 13:54:16 +0000","Tweetbot for Mac","@nickfrey @Jchap808 No problem! If you’re going wired definitely look at Shure. Love my SE215s but ditto about replacing cable yearly.","","","","" +"747427831131439104","747346613941612544","15219531","2016-06-27 13:54:16 +0000","Tweetbot for Mac","@nickfrey @Jchap808 No problem! If you’re going wired definitely look at Shure. Love my SE215s but ditto about replacing cable yearly.","","","","" "747424321312690176","","","2016-06-27 13:40:19 +0000","Tweetbot for iΟS","RT @merowing_: My talk about iOS Architecture is now live, would love to hear some feedback :) https://t.co/3K6u6hG8dl","747416720755855360","289246577","2016-06-27 13:10:07 +0000","https://twitter.com/somuchiha/status/747383770936975360,https://twitter.com/somuchiha/status/747383770936975360" "747300535972171776","","","2016-06-27 05:28:26 +0000","Twitter for iPad","Objective-C Class Properties https://t.co/c1y5PcbYPv","","","","http://blog.andrewmadsen.com/post/145919242155/objective-c-class-properties?utm_campaign=iOS%2BDev%2BWeekly&utm_medium=web&utm_source=iOS_Dev_Weekly_Issue_256" "747282435591659521","747274997886947328","15219531","2016-06-27 04:16:31 +0000","Tweetbot for iΟS","@nickfrey I don't know about best but I like my Jaybird X2s a lot.","","","","" @@ -908,24 +1013,24 @@ https://t.co/zd4alLA1Gi https://t.co/4jmKrL9KzQ","747213140824330240","16419203" "746681875192745984","746495894212780032","22913041","2016-06-25 12:30:06 +0000","Tweetbot for iΟS","@ivanandriollo @macdevnet Time to understand each other not punish people for sharing their thoughts. Grow the fuck up.","","","","" "746681314103955456","746398807458455552","14078241","2016-06-25 12:27:52 +0000","Tweetbot for iΟS","@macdevnet Thanks for sharing this with everyone.","","","","" "746681146851926016","","","2016-06-25 12:27:12 +0000","Tweetbot for iΟS","RT @macdevnet: With great trepidation I have documented why I voted “leave” https://t.co/qUzSacMAj6","746398807458455552","14078241","2016-06-24 17:45:17 +0000","http://wafflewithmeaning.com/blog/why-i-voted-leave,http://wafflewithmeaning.com/blog/why-i-voted-leave" -"746411146731724800","746410728165412864","4777951","2016-06-24 18:34:19 +0000","Tweetbot for Mac","@JimRoepcke Might only look pointless because it’s a simplified example. If you really want/need a protocol then I’m not sure what to do.","","","","" -"746410871585411072","","","2016-06-24 18:33:14 +0000","Tweetbot for Mac","#NotAllStandingDeskOwners 😜 https://t.co/pENMSwsFui","","","","https://twitter.com/typeoneerror/status/746408615188172801" -"746410796138258432","746408615188172801","11973362","2016-06-24 18:32:56 +0000","Tweetbot for Mac","@typeoneerror That’s a *lot* more than others I’ve talked to.","","","","" -"746410728165412864","746408548314161152","894911","2016-06-24 18:32:39 +0000","Tweetbot for Mac","@JimRoepcke This looks pointless: +"746411146731724800","746410728165412864","4777951","2016-06-24 18:34:19 +0000","Tweetbot for Mac","@JimRoepcke Might only look pointless because it’s a simplified example. If you really want/need a protocol then I’m not sure what to do.","","","","" +"746410871585411072","","","2016-06-24 18:33:14 +0000","Tweetbot for Mac","#NotAllStandingDeskOwners 😜 https://t.co/pENMSwsFui","","","","https://twitter.com/typeoneerror/status/746408615188172801" +"746410796138258432","746408615188172801","11973362","2016-06-24 18:32:56 +0000","Tweetbot for Mac","@typeoneerror That’s a *lot* more than others I’ve talked to.","","","","" +"746410728165412864","746408548314161152","894911","2016-06-24 18:32:39 +0000","Tweetbot for Mac","@JimRoepcke This looks pointless: protocol MyThingy: Thingy {} If you change it from protocol to class it fulfills the requirements.","","","","" -"746409316287135744","","","2016-06-24 18:27:03 +0000","Tweetbot for Mac","Smart move. https://t.co/sVWb0e0BiV","","","","https://twitter.com/mwhuss/status/746409001919750144" +"746409316287135744","","","2016-06-24 18:27:03 +0000","Tweetbot for Mac","Smart move. https://t.co/sVWb0e0BiV","","","","https://twitter.com/mwhuss/status/746409001919750144" "746407961526951936","","","2016-06-24 18:21:40 +0000","OS X","Don’t waste your money on a standing desk. Most I know with convertible desks never raise them to stand anyway. https://t.co/CKQD2Y8q9r","","","","http://arstechnica.com/science/2016/06/heres-how-many-calories-you-may-burn-standing-at-work-versus-sitting-strolling/" "746375041923825664","","","2016-06-24 16:10:51 +0000","Tweetbot for iΟS","RT @feminizza: THIS is how the #Brexit is really affecting us: https://t.co/cNKCub5dEN","746274734401294336","192529611","2016-06-24 09:32:16 +0000","https://twitter.com/feminizza/status/746274734401294336/photo/1,https://twitter.com/feminizza/status/746274734401294336/photo/1" "746350149920755712","","","2016-06-24 14:31:56 +0000","Tweetbot for iΟS","Disillusioned Brits: come to Canada. We're not in the EU either but it's pretty nice here. https://t.co/ipRFN27thB","","","","https://twitter.com/erinruberry/status/746294664584630272" "746180942788694017","746127095043096576","192478064","2016-06-24 03:19:34 +0000","Tweetbot for iΟS","@modocache @steipete iMac","","","","" "746180797137305600","","","2016-06-24 03:19:00 +0000","Tweetbot for iΟS","2h45m https://t.co/XSG0885nCZ","","","","https://twitter.com/gruber/status/746147542262439936" "746066234588991492","746057942995185665","74837444","2016-06-23 19:43:46 +0000","Tweetbot for iΟS","@Badgerops Automatic weapons then. And people are scared because thousands are murdered every year not because of the terminology.","","","","" -"746000926712926208","746000567420526592","4777951","2016-06-23 15:24:15 +0000","Tweetbot for Mac","Too little too late imo, but @letsencrypt is raising the bar and if other services get better that’s a big win for us all.","","","","" -"746000567420526592","","","2016-06-23 15:22:49 +0000","Tweetbot for Mac","This must mean that @letsencrypt is working (I’ve switched and 👍🏽). StartSSL recently announced some ripoff too. https://t.co/zPnM5RfxTv","","","","https://twitter.com/steipete/status/745995260078219264" -"745453900204023808","","","2016-06-22 03:10:34 +0000","Tweetbot for Mac","RT @pgor: Your app ships with a VoiceOver interface whether you like it or not. You should probably make sure you like it.","745253401546522625","10188712","2016-06-21 13:53:51 +0000","" +"746000926712926208","746000567420526592","4777951","2016-06-23 15:24:15 +0000","Tweetbot for Mac","Too little too late imo, but @letsencrypt is raising the bar and if other services get better that’s a big win for us all.","","","","" +"746000567420526592","","","2016-06-23 15:22:49 +0000","Tweetbot for Mac","This must mean that @letsencrypt is working (I’ve switched and 👍🏽). StartSSL recently announced some ripoff too. https://t.co/zPnM5RfxTv","","","","https://twitter.com/steipete/status/745995260078219264" +"745453900204023808","","","2016-06-22 03:10:34 +0000","Tweetbot for Mac","RT @pgor: Your app ships with a VoiceOver interface whether you like it or not. You should probably make sure you like it.","745253401546522625","10188712","2016-06-21 13:53:51 +0000","" "744875496622727168","","","2016-06-20 12:52:12 +0000","Tweetbot for iΟS","RT @olebegemann: “Xcode 8 takes build settings set in xcconfig files into account when suggesting updates to your build settings.” Nice.","744868210734936064","231756759","2016-06-20 12:23:15 +0000","" "744730258675490816","","","2016-06-20 03:15:04 +0000","Tweetbot for iΟS","Chisel looks like a really useful set of lldb commands for iOS dev. How did I not know about this? https://t.co/MSyFj5B2Gu","","","","https://twitter.com/mwhuss/status/744729119015854080" "744514545260060672","","","2016-06-19 12:57:54 +0000","Tweetbot for iΟS","Just used chip & sign at a coffee shop in the USA. Oh, America. God bless you. At least you're trying?","","","","" @@ -948,27 +1053,26 @@ If you change it from protocol to class it fulfills the requirements.","","","", "742797777172758531","742797339480330241","108814849","2016-06-14 19:16:05 +0000","Tweetbot for iΟS","@snarfmason I’m not sure, let me see if I can find out since I did install it already.","","","","" "742797463724003328","","","2016-06-14 19:14:50 +0000","Tweetbot for iΟS","RT @snarfmason: Can I enable APFS on a macOS 10.12 beta install? I was looking for an excuse to bust open my mini and put an SSD in it.","742797257951481857","108814849","2016-06-14 19:14:01 +0000","" "742797172974845953","742795769690783744","385193","2016-06-14 19:13:41 +0000","Tweetbot for iΟS","@jim_rutherford I got the 2014 one and it’s awesome. Recommend a 27″ 4k display to go with it (run at same effective resolution).","","","","" -"742787055957069825","742786693766336512","108814849","2016-06-14 18:33:29 +0000","Tweetbot for Mac","@snarfmason Per-file is new to the Mac and it would be cool if FileVault 3 could do per-user encryption using it though.","","","","" -"742786126176354306","742785392437399553","4777951","2016-06-14 18:29:47 +0000","Tweetbot for Mac","@snarfmason They were really excited to be first to announce that feature but I can’t help thinking that’s because nobody needs it.","","","","" -"742785392437399553","742783109465145344","108814849","2016-06-14 18:26:52 +0000","Tweetbot for Mac",".@snarfmason That is true for per-file encryption. Per-extent means different parts of one file can be encrypted with different keys.","","","","" -"742781154281955328","742769838989283328","4777951","2016-06-14 18:10:02 +0000","Tweetbot for Mac","It sounds like they’re doing the in-place migration like btrfs does (using free space for APFS metadata). #WWDC2016 https://t.co/ruCN5Mt5AD","","","","https://twitter.com/siracusa/status/742780842460643328" +"742787055957069825","742786693766336512","108814849","2016-06-14 18:33:29 +0000","Tweetbot for Mac","@snarfmason Per-file is new to the Mac and it would be cool if FileVault 3 could do per-user encryption using it though.","","","","" +"742786126176354306","742785392437399553","4777951","2016-06-14 18:29:47 +0000","Tweetbot for Mac","@snarfmason They were really excited to be first to announce that feature but I can’t help thinking that’s because nobody needs it.","","","","" +"742785392437399553","742783109465145344","108814849","2016-06-14 18:26:52 +0000","Tweetbot for Mac",".@snarfmason That is true for per-file encryption. Per-extent means different parts of one file can be encrypted with different keys.","","","","" +"742781154281955328","742769838989283328","4777951","2016-06-14 18:10:02 +0000","Tweetbot for Mac","It sounds like they’re doing the in-place migration like btrfs does (using free space for APFS metadata). #WWDC2016 https://t.co/ruCN5Mt5AD","","","","https://twitter.com/siracusa/status/742780842460643328" "742774859311157248","","","2016-06-14 17:45:01 +0000","Twitter for iPhone","RT @jckarter: @fzwob Xcode 8 uses library validation. It won't load in-process plugins anymore.","742471686935568384","18559099","2016-06-13 21:40:19 +0000","" -"742769838989283328","742446435694563328","4777951","2016-06-14 17:25:04 +0000","Tweetbot for Mac","Anyone know of a use case for per-extent encryption in APFS? Very strange. #WWDC2016","","","","" +"742769838989283328","742446435694563328","4777951","2016-06-14 17:25:04 +0000","Tweetbot for Mac","Anyone know of a use case for per-extent encryption in APFS? Very strange. #WWDC2016","","","","" "742737119488004097","","","2016-06-14 15:15:03 +0000","Tweetbot for iΟS","Sneaky! I like it. Be careful when typing package names out there everyone. https://t.co/YviPtTZjzD","","","","https://twitter.com/arstechnica/status/742723622876381184" -"742446435694563328","742435532563578881","4777951","2016-06-13 19:59:58 +0000","Tweetbot for Mac","New App Store review guidelines: https://t.co/WnGkUYbzPW #WWDC2016","","","","https://developer.apple.com/app-store/review/guidelines/" -"742445881387929600","","","2016-06-13 19:57:46 +0000","Tweetbot for Mac","RT @ashtengelova: Shiny new iOS HIG! 🌟 https://t.co/jKKdVEjYvX","742445532593823744","2792599332","2016-06-13 19:56:23 +0000","https://developer.apple.com/ios/human-interface-guidelines/,https://developer.apple.com/ios/human-interface-guidelines/" -"742441034987098112","742440911905411073","3003293980","2016-06-13 19:38:31 +0000","Tweetbot for Mac","@self_vs_this @steipete Me too! The Xcode 8 beta is still > 5 GB though 😿","","","","" -"742439642398478336","742433431896739840","4777951","2016-06-13 19:32:59 +0000","Tweetbot for Mac","@srbaker Answer: none. Only the text editor is extensible.","","","","" -"742436066292944896","","","2016-06-13 19:18:46 +0000","Tweetbot for Mac","RT @siracusa: The new file system is real, and it's…spectacular?","742435975079419905","636923","2016-06-13 19:18:24 +0000","" -"742435532563578881","742434687381995520","4777951","2016-06-13 19:16:39 +0000","Tweetbot for Mac","This is not a drill: Apple File System #WWDC2016 https://t.co/DvCDlgzEXn","","","","https://twitter.com/davidronnqvist/status/742434878931636225" -"742434687381995520","742433906968825856","4777951","2016-06-13 19:13:17 +0000","Tweetbot for Mac","Excellent. #WWDC2016 https://t.co/D16XIty3fK","","","","https://twitter.com/sarahintampa/status/742428658565054465" -"742433906968825856","742433101121392640","4777951","2016-06-13 19:10:11 +0000","Tweetbot for Mac","Betas are up! #WWDC2016","","","","" -"742433431896739840","742433099322032128","14106454","2016-06-13 19:08:18 +0000","Tweetbot for Mac","@srbaker Yeah! I wonder how much of the UI we’ll be able to touch.","","","","" -"742433101121392640","","","2016-06-13 19:06:59 +0000","Tweetbot for Mac","#WWDC2016 https://t.co/KraOhWLCVm","","","","https://twitter.com/_sjs/status/742433101121392640/photo/1" -"742427267956019200","742427064263839745","4777951","2016-06-13 18:43:48 +0000","Tweetbot for Mac","Xcode extensions ⚡️ #WWDC2016","","","","" -"742427064263839745","742426932877217792","4777951","2016-06-13 18:43:00 +0000","Tweetbot for Mac","Camera sensor data! #WWDC2016","","","","" -"742426932877217792","742426797573185536","4777951","2016-06-13 18:42:29 +0000","Tweetbot for Mac","Raw photo editing! #WWDC2016","","","","" -"742426797573185536","","","2016-06-13 18:41:56 +0000","Tweetbot for Mac","Smaller Xcode download 👍🏼 #WWDC2016","","","","" +"742446435694563328","742435532563578881","4777951","2016-06-13 19:59:58 +0000","Tweetbot for Mac","New App Store review guidelines: https://t.co/WnGkUYbzPW #WWDC2016","","","","https://developer.apple.com/app-store/review/guidelines/" +"742441034987098112","742440911905411073","3003293980","2016-06-13 19:38:31 +0000","Tweetbot for Mac","@self_vs_this @steipete Me too! The Xcode 8 beta is still > 5 GB though 😿","","","","" +"742439642398478336","742433431896739840","4777951","2016-06-13 19:32:59 +0000","Tweetbot for Mac","@srbaker Answer: none. Only the text editor is extensible.","","","","" +"742436066292944896","","","2016-06-13 19:18:46 +0000","Tweetbot for Mac","RT @siracusa: The new file system is real, and it's…spectacular?","742435975079419905","636923","2016-06-13 19:18:24 +0000","" +"742435532563578881","742434687381995520","4777951","2016-06-13 19:16:39 +0000","Tweetbot for Mac","This is not a drill: Apple File System #WWDC2016 https://t.co/DvCDlgzEXn","","","","https://twitter.com/davidronnqvist/status/742434878931636225" +"742434687381995520","742433906968825856","4777951","2016-06-13 19:13:17 +0000","Tweetbot for Mac","Excellent. #WWDC2016 https://t.co/D16XIty3fK","","","","https://twitter.com/sarahintampa/status/742428658565054465" +"742433906968825856","742433101121392640","4777951","2016-06-13 19:10:11 +0000","Tweetbot for Mac","Betas are up! #WWDC2016","","","","" +"742433431896739840","742433099322032128","14106454","2016-06-13 19:08:18 +0000","Tweetbot for Mac","@srbaker Yeah! I wonder how much of the UI we’ll be able to touch.","","","","" +"742433101121392640","","","2016-06-13 19:06:59 +0000","Tweetbot for Mac","#WWDC2016 https://t.co/KraOhWLCVm","","","","https://twitter.com/_sjs/status/742433101121392640/photo/1" +"742427267956019200","742427064263839745","4777951","2016-06-13 18:43:48 +0000","Tweetbot for Mac","Xcode extensions ⚡️ #WWDC2016","","","","" +"742427064263839745","742426932877217792","4777951","2016-06-13 18:43:00 +0000","Tweetbot for Mac","Camera sensor data! #WWDC2016","","","","" +"742426932877217792","742426797573185536","4777951","2016-06-13 18:42:29 +0000","Tweetbot for Mac","Raw photo editing! #WWDC2016","","","","" +"742426797573185536","","","2016-06-13 18:41:56 +0000","Tweetbot for Mac","Smaller Xcode download 👍🏼 #WWDC2016","","","","" "742370585771020288","","","2016-06-13 14:58:34 +0000","Tweetbot for iΟS","RT @tanyaxshort: Looking to interview ex-indie devs who've closed studios or given up a ""dream"". DM or email tanyaxshort at gmail! Anonymit…","741752072257691648","477205806","2016-06-11 22:00:49 +0000","" "741709572390326273","741707130076430336","20969766","2016-06-11 19:11:57 +0000","Tweetbot for iΟS","@NimeshNeema @chockenberry no worries!","","","","" "741709508834009088","741707384075124736","20969766","2016-06-11 19:11:41 +0000","Tweetbot for iΟS","@NimeshNeema thanks! 😀","","","","" @@ -981,15 +1085,15 @@ If you change it from protocol to class it fulfills the requirements.","","","", "741444937896464385","","","2016-06-11 01:40:23 +0000","Tweetbot for iΟS","OH: ""I like watching videos of birds attacking other people. I just don't like being the victim.""","","","","" "741358520637874176","741353943171620864","150517734","2016-06-10 19:56:59 +0000","Tweetbot for iΟS","@subfuzion @macbartender @macatbook Same. I was wary of it as a menu bar hack but after the trial couldn't give it up. It works well.","","","","" "741274149797003264","","","2016-06-10 14:21:44 +0000","Tweetbot for iΟS","#1 wish for iOS 10: Cascadian flag emoji. This oppression will not stand, man. https://t.co/qZJ5lJpoA6","","","","https://twitter.com/_sjs/status/741274149797003264/photo/1" -"740963499644321794","","","2016-06-09 17:47:19 +0000","Tweetbot for Mac","Yes. You have to be vigilant about turning them off. Some you can’t. Some you need. +"740963499644321794","","","2016-06-09 17:47:19 +0000","Tweetbot for Mac","Yes. You have to be vigilant about turning them off. Some you can’t. Some you need. At least there’s @macbartender. https://t.co/TBco6S285j","","","","https://twitter.com/macatbook/status/740959708933029888" "740921697457475584","740917841235316736","95938827","2016-06-09 15:01:12 +0000","Tweetbot for iΟS","@0x00A The majority of everything is junk (including websites). Doesn't diminish the good stuff at all or nobody would make anything.","","","","" "740763674667823104","","","2016-06-09 04:33:17 +0000","Tweetbot for iΟS","RT @horse_js: I'm going to use the with statement","740763206839349248","497617437","2016-06-09 04:31:25 +0000","" "740730722508374016","740722470169280513","43727347","2016-06-09 02:22:21 +0000","Tweetbot for iΟS","@gembarrett Welcome! It’s pretty good here.","","","","" -"740701512888782848","740700278509314049","652293","2016-06-09 00:26:16 +0000","Tweetbot for Mac","@brentsimmons @siracusa Wishful thinking. Nobody who says “oh ess ex” is gonna hear about the new name for another 15 years.","","","","" -"740610417131544576","740609868076351488","2815000734","2016-06-08 18:24:17 +0000","Tweetbot for Mac","@reboundcast I kid! 😄 The clips at the end are great though.","","","","" -"740609248099328000","740608944008232960","2815000734","2016-06-08 18:19:39 +0000","Tweetbot for Mac","@reboundcast I look forward to the end bit more than the rest of the episode.","","","","" +"740701512888782848","740700278509314049","652293","2016-06-09 00:26:16 +0000","Tweetbot for Mac","@brentsimmons @siracusa Wishful thinking. Nobody who says “oh ess ex” is gonna hear about the new name for another 15 years.","","","","" +"740610417131544576","740609868076351488","2815000734","2016-06-08 18:24:17 +0000","Tweetbot for Mac","@reboundcast I kid! 😄 The clips at the end are great though.","","","","" +"740609248099328000","740608944008232960","2815000734","2016-06-08 18:19:39 +0000","Tweetbot for Mac","@reboundcast I look forward to the end bit more than the rest of the episode.","","","","" "740542818523828224","740471938175340544","289246577","2016-06-08 13:55:41 +0000","Tweetbot for iΟS","@merowing_ Seems like standard lexical scoping to me.","","","","" "739174661863309313","739147332504035328","14136484","2016-06-04 19:19:07 +0000","Tweetbot for iΟS","@acorscadden 😮 glad you’re alright, that’s some gnarly watch damage","","","","" "738762535705272322","","","2016-06-03 16:01:28 +0000","Tweetbot for iΟS","Getting ready to try some new beers tomorrow. What breweries shouldn’t be missed at #vcbw? https://t.co/D7wjT1atXT","","","","http://vancouvercraftbeerweek.com/breweries/" @@ -1015,7 +1119,7 @@ More info about me: https://t.co/4ZBpYJBBI4","","","","http://samhuri.net/about" "721176639762231296","721123868384104448","33423","2016-04-16 03:21:24 +0000","Tweetbot for iΟS","@gruber @attaboy I don't think they're restored from an iCloud backup but they are when you restore locally from iTunes (or sync).","","","","" "721077676014895104","","","2016-04-15 20:48:09 +0000","Tweetbot for iΟS","Well that's disgusting 😒 https://t.co/TSenDgnmPO","","","","https://twitter.com/arstechnica/status/721055779617431552" "720976524954828801","","","2016-04-15 14:06:13 +0000","Tweetbot for iΟS","RT @tdierks: Good for Microsoft. Cloud customers should own and control their own data, including when the government seizes it. https://t.…","720944272464310281","15845390","2016-04-15 11:58:03 +0000","https://twitter.com/tdierks/status/720944272464310281/photo/1" -"720651221653008385","","","2016-04-14 16:33:34 +0000","Tweetbot for Mac","RT @benthompson: Good overview of why encryption is important. +"720651221653008385","","","2016-04-14 16:33:34 +0000","Tweetbot for Mac","RT @benthompson: Good overview of why encryption is important. Missing is how golden keys let hackers attack all locks at same time. https…","720650367814348800","40273","2016-04-14 16:30:11 +0000","https://twitter.com/trutony/status/720645847466151936" "720647238456709120","720646693927153664","14106454","2016-04-14 16:17:45 +0000","Tweetbot for iΟS","@srbaker oops!","","","","" @@ -1053,9 +1157,9 @@ Please retweet & reach me at…","718180141902368768","894911","2016-04-07 2 "712661046817763329","712262004564692996","26178841","2016-03-23 15:23:28 +0000","Tweetbot for iΟS","@mergesort @olebegemann @steipete It usually starts again after, but not always.","","","","" "712394881537212416","","","2016-03-22 21:45:50 +0000","Tweetbot for iΟS","RT @gembarrett: Anyone have any insight into the process for a UK citizen to work remotely in Canada for a non-Canadian organisation?","712392149178961920","43727347","2016-03-22 21:34:58 +0000","" "712383073992638464","","","2016-03-22 20:58:54 +0000","Tweetbot for iΟS","kurva design ... nice name kurvadesign.ca cc @merowing_","","","","" -"711977660373544961","","","2016-03-21 18:07:56 +0000","Tweetbot for Mac","Yeah Apple, make with the Skylake updates already! https://t.co/ov4oQmPDRH","","","","https://twitter.com/siracusa/status/711977138002501635" -"711971628192665600","711971067401625600","894911","2016-03-21 17:43:58 +0000","Tweetbot for Mac","@JimRoepcke You lock individual notes not the whole app. But what you said would be a good feature too.","","","","" -"711969264597471233","711968312679227393","1566661","2016-03-21 17:34:35 +0000","Tweetbot for Mac","@ismh @Cocoanetics Not necessarily. You can spell out letters, numbers, and punctuation with dictation.","","","","" +"711977660373544961","","","2016-03-21 18:07:56 +0000","Tweetbot for Mac","Yeah Apple, make with the Skylake updates already! https://t.co/ov4oQmPDRH","","","","https://twitter.com/siracusa/status/711977138002501635" +"711971628192665600","711971067401625600","894911","2016-03-21 17:43:58 +0000","Tweetbot for Mac","@JimRoepcke You lock individual notes not the whole app. But what you said would be a good feature too.","","","","" +"711969264597471233","711968312679227393","1566661","2016-03-21 17:34:35 +0000","Tweetbot for Mac","@ismh @Cocoanetics Not necessarily. You can spell out letters, numbers, and punctuation with dictation.","","","","" "710665337587376128","","","2016-03-18 03:13:14 +0000","Tweetbot for iΟS","Attacking hardware with software. Now that’s pretty neat. https://t.co/K63R0oOvML","","","","https://twitter.com/arstechnica/status/710606397378011136" "710250060928258049","","","2016-03-16 23:43:04 +0000","Tweetbot for iΟS","RT @claud_xiao: New Trojan #AceDeceiver entered App Store, infected non-jailbroken iOS via FairPlay MITM attack w/o enterprise cert: https:…","710120271953276928","37889864","2016-03-16 15:07:20 +0000","http://researchcenter.paloaltonetworks.com/2016/03/acedeceiver-first-ios-trojan-exploiting-apple-drm-design-flaws-to-infect-any-ios-device/" "708508496820436992","708507227041112064","894911","2016-03-12 04:22:43 +0000","Tweetbot for iΟS","@JimRoepcke is that a sexual innuendo?! not sure if I should urban dictionary or not…","","","","" @@ -1108,7 +1212,6 @@ Please retweet & reach me at…","718180141902368768","894911","2016-04-07 2 "699278501715714050","","","2016-02-15 17:06:01 +0000","iOS","Check out the workflow I built with @WorkflowHQ! Replaces Gmail and IFTTT in this pipeline https://t.co/dbPvQKBh7n https://t.co/II9h8ewIMW","","","","https://samhuri.net/posts/2013/09/linky/,https://workflow.is/workflows/4e0da8d26bbc44a6af056e9e5d08e1e7" "699257124468056064","","","2016-02-15 15:41:04 +0000","Tweetbot for iΟS","RT @siracusa: As you watch the churn in the Swift language and the many source-incompatible changes, remember stories like this: https://t.…","699255050082844673","636923","2016-02-15 15:32:50 +0000","http://www.lysator.liu.se/c/dmr-on-or.html" "698180292079591424","","","2016-02-12 16:22:07 +0000","Tweetbot for iΟS","RT @terhechte: Awesome news: #libdispatch inclusion into #Swift #Linux seems to have started: https://t.co/PXnYoURVAd (i.e. next Swift Linu…","698087522585485312","6473172","2016-02-12 10:13:29 +0000","https://github.com/apple/swift-corelibs-foundation/pull/256,https://github.com/apple/swift-corelibs-foundation/pull/256" -"696532020084641792","","","2016-02-08 03:12:29 +0000","Tweetbot for iΟS","RT @sassy_swaggerty: Old Eli lookin like he bet against Peyton #SuperBowl50 https://t.co/pJhHWiRdqA","696531639804026880","177552754","2016-02-08 03:10:58 +0000","https://twitter.com/sassy_swaggerty/status/696531639804026880/photo/1,https://twitter.com/sassy_swaggerty/status/696531639804026880/photo/1" "696531822847471616","","","2016-02-08 03:11:42 +0000","Tweetbot for iΟS","RT @fyrite: Looks like Eli bet on the Panthers #SuperBowl50","696531491799445504","232701963","2016-02-08 03:10:23 +0000","" "696140237223780353","","1517226020","2016-02-07 01:15:40 +0000","Twitter Lite","@InstapaperHelp It would be great to have a one or two step way to open articles in Safari for multitasking on iPads.","","","","" "696137486704070656","","","2016-02-07 01:04:45 +0000","Tweetbot for iΟS","I got 5/10, which accurately reflects how often I was guessing. https://t.co/NpcvEtQ7wD","","","","https://twitter.com/saniul/status/696128861856260097" @@ -1204,13 +1307,13 @@ https://t.co/XLIEY96X…","685905893255442432","21626062","2016-01-09 19:28:03 + "673533416294322176","","","2015-12-06 16:04:14 +0000","Tweetbot for iΟS","RT @stephenfry: Good old Dutch TV – https://t.co/gZTqURl1OM","673326448720113664","15439395","2015-12-06 02:21:49 +0000","https://youtu.be/zEnWw_lH4tQ,https://youtu.be/zEnWw_lH4tQ" "673357642408955904","","","2015-12-06 04:25:46 +0000","Tweetbot for iΟS","Kicked the tires on an Arduino today. Really cool and ridiculously easy to get started. No big plans for it yet though.","","","","" "673341472523968512","673324976791879680","894911","2015-12-06 03:21:31 +0000","Tweetbot for iΟS","@JimRoepcke I still use QuickTime 7 Pro for that sort of thing.","","","","" -"673176049581080577","673159329084739584","9877172","2015-12-05 16:24:11 +0000","Tweetbot for Mac","@shaps @merowing_ If you do web dev, add Prompt and Transmit and you’re well on your way to a decent setup.","","","","" +"673176049581080577","673159329084739584","9877172","2015-12-05 16:24:11 +0000","Tweetbot for Mac","@shaps @merowing_ If you do web dev, add Prompt and Transmit and you’re well on your way to a decent setup.","","","","" "673163823373672448","","","2015-12-05 15:35:36 +0000","Tweetbot for iΟS","RT @clattner_llvm: Making small improvements is the way everyone starts getting involved! https://t.co/Etnv6k5KSQ","673162286127714304","2543588034","2015-12-05 15:29:30 +0000","https://twitter.com/_matthewpalmer/status/673088953356947456,https://twitter.com/_matthewpalmer/status/673088953356947456" "672994388281192452","672984443049521154","18638258","2015-12-05 04:22:20 +0000","Tweetbot for iΟS","@davidskeck @viticci Don’t tell @marcoarment that","","","","" "672810606563475456","672802788225785856","289246577","2015-12-04 16:12:03 +0000","Tweetbot for iΟS","@merowing_ Why is there a number? That's awful. Like a badge forever haunting you. Back to @instapaper? 😜","","","","" "672806201831198720","","","2015-12-04 15:54:33 +0000","Tweetbot for iΟS","Swift on servers. It's gonna be a thing. https://t.co/kdtCZxzQm9","","","","https://twitter.com/merowing_/status/672715525739421696" "672801309091749888","672780467612073985","289246577","2015-12-04 15:35:06 +0000","Tweetbot for iΟS","@merowing_ if a server is allowed you've been able to code on iPads for years. I've done it (a bit). And sysadmin work.","","","","" -"672573632531468288","","","2015-12-04 00:30:24 +0000","Tweetbot for Mac","“Dynamicism” eh? https://t.co/0WWGEWaBMO","","","","https://github.com/apple/swift/commit/d9e9feabaf0c6d031b72112fa2fb04ae5e884eb6" +"672573632531468288","","","2015-12-04 00:30:24 +0000","Tweetbot for Mac","“Dynamicism” eh? https://t.co/0WWGEWaBMO","","","","https://github.com/apple/swift/commit/d9e9feabaf0c6d031b72112fa2fb04ae5e884eb6" "672568350770249728","","","2015-12-04 00:09:25 +0000","Tweetbot for iΟS","RT @SwiftLang: Source code for the Swift compiler, libraries, and tools is available at the new home for Apple on Github: https://t.co/e3m6…","672556073362960384","2526229286","2015-12-03 23:20:38 +0000","http://github.com/apple" "672459822327984129","672459383243063298","4777951","2015-12-03 16:58:09 +0000","Twitter Web Client","Not because this means they're going to rewrite all the frameworks in Swift, but because it will be way better to share code.","","","","" "672459383243063298","","","2015-12-03 16:56:25 +0000","Twitter Web Client","Apple is writing a version of Foundation in Swift, for Swift. That is very interesting. https://t.co/U4p1xLa1dv","","","","https://twitter.com/andy_matuschak/status/672448641848610816" @@ -1228,26 +1331,26 @@ https://t.co/XLIEY96X…","685905893255442432","21626062","2016-01-09 19:28:03 + "668626628247838722","","","2015-11-23 03:06:25 +0000","Tweetbot for iΟS","RT @magnetbox: Actually, it's pronounced ""jithub""...","668548192443600896","49583","2015-11-22 21:54:44 +0000","" "668113817222516736","","","2015-11-21 17:08:41 +0000","Tweetbot for iΟS","Real life Bastard Operator From Hell https://t.co/J2ANpqk3pH https://t.co/3oGlD7dJOv","","","","http://bofh.ntk.net/BOFH/,https://twitter.com/_pkill/status/667979636710572032" "668113402049396737","","","2015-11-21 17:07:02 +0000","Tweetbot for iΟS","RT @_pkill: Passive aggressive bash automation https://t.co/RnfRGMaM7v https://t.co/uWhqZ3ngWI","667979636710572032","286819419","2015-11-21 08:15:30 +0000","https://www.jitbit.com/alexblog/249-now-thats-what-i-call-a-hacker/,https://twitter.com/_pkill/status/667979636710572032/photo/1,https://www.jitbit.com/alexblog/249-now-thats-what-i-call-a-hacker/,https://twitter.com/_pkill/status/667979636710572032/photo/1" -"667793146437197824","667792725396340736","8142952","2015-11-20 19:54:27 +0000","Tweetbot for Mac","@mikeash I have a similar problem, https://t.co/i4IPVwtjH7 and https://t.co/aktdLHZkP9 links hang loading 90% of the time.","","","","https://twitter.com,https://t.co" -"667787431270182912","","15292261","2015-11-20 19:31:45 +0000","Tweetbot for Mac","@gregbate @snarfmason tunes for next game weekend https://t.co/PAeWheqrxV","","","","https://www.youtube.com/watch?v=_oUp_JjPJok" +"667793146437197824","667792725396340736","8142952","2015-11-20 19:54:27 +0000","Tweetbot for Mac","@mikeash I have a similar problem, https://t.co/i4IPVwtjH7 and https://t.co/aktdLHZkP9 links hang loading 90% of the time.","","","","https://twitter.com,https://t.co" +"667787431270182912","","15292261","2015-11-20 19:31:45 +0000","Tweetbot for Mac","@gregbate @snarfmason tunes for next game weekend https://t.co/PAeWheqrxV","","","","https://www.youtube.com/watch?v=_oUp_JjPJok" "667602881357328385","","","2015-11-20 07:18:25 +0000","iOS","I want something like this that can be operated via keyboard too. https://t.co/dZywyhXPPO","","","","https://twitter.com/_sjs/status/667602881357328385/photo/1" "667582870907555842","","22961921","2015-11-20 05:58:54 +0000","Tweetbot for iΟS","@ecetweets relevant to your canine interests https://t.co/ru5qq3QUZ3","","","","https://twitter.com/_sjs/status/667582870907555842/photo/1" "667544023092064256","667515324166635520","14136484","2015-11-20 03:24:32 +0000","Tweetbot for iΟS","@acorscadden I’m excited to use it in the kitchen for recipes. Maybe podcasts too, that’s a good idea.","","","","" -"667132622493974528","","","2015-11-19 00:09:46 +0000","Tweetbot for Mac","Any way to fix a magic trackpad that won’t pair, or is it toast?","","","","" +"667132622493974528","","","2015-11-19 00:09:46 +0000","Tweetbot for Mac","Any way to fix a magic trackpad that won’t pair, or is it toast?","","","","" "667023542471360512","","","2015-11-18 16:56:19 +0000","Twitter for iPhone","$60b a year! https://t.co/7bjzqoLgaX https://t.co/i2WVrHpUTF","","","","http://espn.go.com/chalk/story/_/id/14095257,https://twitter.com/_sjs/status/667023542471360512/photo/1" "667006352376467456","","","2015-11-18 15:48:01 +0000","Tweetbot for iΟS","That insane wind storm yesterday is affecting my morning walk too. Guess I'll reroute! https://t.co/p9DRUbfyhi","","","","https://twitter.com/_sjs/status/667006352376467456/photo/1" -"666680329827037184","","","2015-11-17 18:12:31 +0000","Tweetbot for Mac","Standing desks are so 2015 https://t.co/jXjmjeourd","","","","https://twitter.com/acorscadden/status/666670490690301952" -"666669988191690752","666669438628794368","14136484","2015-11-17 17:31:25 +0000","Tweetbot for Mac","@acorscadden the winter of Adrian begins","","","","" -"666669211993804800","666647401873080321","14136484","2015-11-17 17:28:20 +0000","Tweetbot for Mac","@acorscadden Nice! How long until you can ski?","","","","" -"666665537317933057","666661183353581568","14092590","2015-11-17 17:13:44 +0000","Tweetbot for Mac","@drwave Damn, those don’t work? Those are serious muscle memory for me. Arrow keys, bah.","","","","" +"666680329827037184","","","2015-11-17 18:12:31 +0000","Tweetbot for Mac","Standing desks are so 2015 https://t.co/jXjmjeourd","","","","https://twitter.com/acorscadden/status/666670490690301952" +"666669988191690752","666669438628794368","14136484","2015-11-17 17:31:25 +0000","Tweetbot for Mac","@acorscadden the winter of Adrian begins","","","","" +"666669211993804800","666647401873080321","14136484","2015-11-17 17:28:20 +0000","Tweetbot for Mac","@acorscadden Nice! How long until you can ski?","","","","" +"666665537317933057","666661183353581568","14092590","2015-11-17 17:13:44 +0000","Tweetbot for Mac","@drwave Damn, those don’t work? Those are serious muscle memory for me. Arrow keys, bah.","","","","" "666647313100607489","","","2015-11-17 16:01:19 +0000","Tweetbot for iΟS","RT @iosaaron: If anyone wants to watch WWDC Videos on their Apple TV, I made a thing. https://t.co/0oAae2Zdje","666503355859009536","1968340063","2015-11-17 06:29:17 +0000","https://github.com/azzoor/WWDCTV,https://github.com/azzoor/WWDCTV" "666453126942101504","","","2015-11-17 03:09:42 +0000","Tweetbot for iΟS","RT @firt: iPad Pro with Apple Pencil exposes force to JavaScript in Safari in the same way as 3D Touch on iPhone 6s(+) https://t.co/38Usiws…","666414635390795776","17509972","2015-11-17 00:36:45 +0000","https://twitter.com/firt/status/666414635390795776/photo/1" "665616886806151168","665615104868663297","14498747","2015-11-14 19:46:47 +0000","Tweetbot for iΟS","@tom_enebo @headius looks like there’s a little protein in that glass up front. Well balanced meal.","","","","" "665343637534806016","665328723646803968","108667802","2015-11-14 01:40:59 +0000","Tweetbot for iΟS","@MediaRemedial I've puzzled way too long over that one","","","","" -"665316237618970625","665312814819487744","108667802","2015-11-13 23:52:06 +0000","Tweetbot for Mac","@MediaRemedial damn millis","","","","" -"664968709505572864","664963187104575490","22406953","2015-11-13 00:51:09 +0000","Tweetbot for Mac","@mahyarm Ada","","","","" +"665316237618970625","665312814819487744","108667802","2015-11-13 23:52:06 +0000","Tweetbot for Mac","@MediaRemedial damn millis","","","","" +"664968709505572864","664963187104575490","22406953","2015-11-13 00:51:09 +0000","Tweetbot for Mac","@mahyarm Ada","","","","" "664239785817456641","","","2015-11-11 00:34:40 +0000","Twitter Web Client","RT @DrawQuest: DrawQuest is now open source! Many thanks to @aehlke, @JimRoepcke, and @dmaurolizer for making this happen: https://t.co/VPE…","664129035958665216","608895792","2015-11-10 17:14:35 +0000","https://github.com/drawquest" -"663863513874460672","","","2015-11-09 23:39:30 +0000","Tweetbot for Mac","RT @jsnell: You thought @robot_or_not couldn't get more absurd. You were wrong. +"663863513874460672","","","2015-11-09 23:39:30 +0000","Tweetbot for Mac","RT @jsnell: You thought @robot_or_not couldn't get more absurd. You were wrong. https://t.co/z04mQSIQDn","663762983391096833","784912","2015-11-09 17:00:02 +0000","https://twitter.com/robot_or_not/status/663762879846285312,https://twitter.com/robot_or_not/status/663762879846285312" "663518218112249856","663508429994983429","689183","2015-11-09 00:47:25 +0000","Tweetbot for iΟS","@cocoalabs I have 2: ლಠ益ಠლ and ᕕ( ᐛ )ᕗ @@ -1259,32 +1362,32 @@ https://t.co/BUxHnJwBPw https://t.co/m5E0sYw8Nk","663403012916776960","243638941 "663058487799255040","","","2015-11-07 18:20:37 +0000","Tweetbot for iΟS","This is the worst notification on the Apple Watch by a mile. https://t.co/NQ3MXERJea","","","","https://twitter.com/_sjs/status/663058487799255040/photo/1" "662816202033512449","","","2015-11-07 02:17:51 +0000","Tweetbot for iΟS","RT @siracusa: @jsnell It is madness. Madness! It is literally more work to make that error message than to do it right.","662815083140108288","636923","2015-11-07 02:13:24 +0000","" "662816189140238337","","","2015-11-07 02:17:48 +0000","Tweetbot for iΟS","RT @siracusa: There is never and has never been an excuse for this on a web page. (Guess the site.) https://t.co/RmoL1yRUZg","662769458558189568","636923","2015-11-06 23:12:07 +0000","https://twitter.com/siracusa/status/662769458558189568/photo/1,https://twitter.com/siracusa/status/662769458558189568/photo/1" -"662712402052407296","662711929572614144","9973082","2015-11-06 19:25:23 +0000","Tweetbot for Mac","@kangax How about requestX?","","","","" +"662712402052407296","662711929572614144","9973082","2015-11-06 19:25:23 +0000","Tweetbot for Mac","@kangax How about requestX?","","","","" "662412811570536448","","","2015-11-05 23:34:55 +0000","iOS","https://t.co/yPogPcHeFg","","","","https://twitter.com/_sjs/status/662412811570536448/photo/1" -"662318221643485184","","","2015-11-05 17:19:03 +0000","Tweetbot for Mac","RT @ecetweets: MAJOR NEWS Penny is the most famous she's ever been!! Check her out as the face of @mashable's new Apple TV app 😍 https://t.…","662309722733854720","22961921","2015-11-05 16:45:17 +0000","https://twitter.com/ecetweets/status/662309722733854720/photo/1" -"662083420625833985","","","2015-11-05 01:46:03 +0000","Tweetbot for Mac","RT @Catfish_Man: (TLDR: code like +"662318221643485184","","","2015-11-05 17:19:03 +0000","Tweetbot for Mac","RT @ecetweets: MAJOR NEWS Penny is the most famous she's ever been!! Check her out as the face of @mashable's new Apple TV app 😍 https://t.…","662309722733854720","22961921","2015-11-05 16:45:17 +0000","https://twitter.com/ecetweets/status/662309722733854720/photo/1" +"662083420625833985","","","2015-11-05 01:46:03 +0000","Tweetbot for Mac","RT @Catfish_Man: (TLDR: code like foo() { if (someCondition) return; /*work*/ } now only pays for stack frame setup if not early re…","662082505579696128","15444008","2015-11-05 01:42:24 +0000","" -"662083398144409601","","","2015-11-05 01:45:57 +0000","Tweetbot for Mac","RT @Catfish_Man: This is some good shit: https://t.co/KA36GdPSQ5","662081085535219712","15444008","2015-11-05 01:36:46 +0000","http://reviews.llvm.org/D9210,http://reviews.llvm.org/D9210" -"661733580544995328","661731675383050240","7603032","2015-11-04 02:35:54 +0000","Tweetbot for Mac","@gak_pdx I don’t actually know but allow me to speculate: it helps prevent soldered/wired things from moving, connections from breaking.","","","","" -"661702192772939776","","","2015-11-04 00:31:11 +0000","Tweetbot for Mac","RT @gak_pdx: So how do you hide the IR port on an Apple TV? Make the whole enclosure IR transparent! https://t.co/KonK5nXZYT","661690447245381632","7603032","2015-11-03 23:44:30 +0000","https://twitter.com/gak_pdx/status/661690447245381632/photo/1,https://twitter.com/gak_pdx/status/661690447245381632/photo/1" +"662083398144409601","","","2015-11-05 01:45:57 +0000","Tweetbot for Mac","RT @Catfish_Man: This is some good shit: https://t.co/KA36GdPSQ5","662081085535219712","15444008","2015-11-05 01:36:46 +0000","http://reviews.llvm.org/D9210,http://reviews.llvm.org/D9210" +"661733580544995328","661731675383050240","7603032","2015-11-04 02:35:54 +0000","Tweetbot for Mac","@gak_pdx I don’t actually know but allow me to speculate: it helps prevent soldered/wired things from moving, connections from breaking.","","","","" +"661702192772939776","","","2015-11-04 00:31:11 +0000","Tweetbot for Mac","RT @gak_pdx: So how do you hide the IR port on an Apple TV? Make the whole enclosure IR transparent! https://t.co/KonK5nXZYT","661690447245381632","7603032","2015-11-03 23:44:30 +0000","https://twitter.com/gak_pdx/status/661690447245381632/photo/1,https://twitter.com/gak_pdx/status/661690447245381632/photo/1" "661640958904111104","","","2015-11-03 20:27:51 +0000","Tweetbot for iΟS","RT @muddylemon: Gimme that Job Sizzle https://t.co/xybuqQG2jU","661628606347513856","16544499","2015-11-03 19:38:46 +0000","https://twitter.com/muddylemon/status/661628606347513856/photo/1,https://twitter.com/muddylemon/status/661628606347513856/photo/1" "661639793730699265","","","2015-11-03 20:23:14 +0000","Tweetbot for iΟS","RT @CaramelForSwift: Caramel is a portable I/O module for pure Swift apps, e.g. servers and embedded devices. More to come soon! https://t.…","661413430599901185","3298963436","2015-11-03 05:23:44 +0000","https://github.com/CaramelForSwift/Caramel" -"661591511927140352","661588025768456192","14180235","2015-11-03 17:11:22 +0000","Tweetbot for Mac","@daveeed not a terrible idea!","","","","" +"661591511927140352","661588025768456192","14180235","2015-11-03 17:11:22 +0000","Tweetbot for Mac","@daveeed not a terrible idea!","","","","" "661586631552446464","","","2015-11-03 16:51:59 +0000","Tweetbot for iΟS","I might have to implement a one-in-one-out policy for my liquor cabinet. Not necessarily a bad thing.","","","","" -"661582059555565568","661581376907382784","14130572","2015-11-03 16:33:49 +0000","Tweetbot for Mac","@joeldev Twitter features are like Android OS updates. “Oh, that sounds cool. I’m sure I’ll appreciate it when I get it in 2 years.”","","","","" +"661582059555565568","661581376907382784","14130572","2015-11-03 16:33:49 +0000","Tweetbot for Mac","@joeldev Twitter features are like Android OS updates. “Oh, that sounds cool. I’m sure I’ll appreciate it when I get it in 2 years.”","","","","" "661579347757633536","661578897364901888","14130572","2015-11-03 16:23:02 +0000","Tweetbot for iΟS","@joeldev I have hearts but still no moments","","","","" "661410568973119488","","","2015-11-03 05:12:22 +0000","Tweetbot for iΟS","If you have a shiny new  TV check out the @mashable app by @acorscadden. https://t.co/vsp4l6H7q2","","","","https://twitter.com/dtome/status/661409987277807616" "661405371139948545","661384014184341504","43915380","2015-11-03 04:51:43 +0000","Tweetbot for iΟS","@NachoSoto most days I use the music/audio remote glance, and sometimes the @OvercastFM glance","","","","" "661366880263794688","661366546434953220","385193","2015-11-03 02:18:46 +0000","Tweetbot for iΟS","@jim_rutherford on my way","","","","" "661363012452790272","","","2015-11-03 02:03:24 +0000","Tweetbot for iΟS","Trying really hard not to sleep at 6pm. Stupid jet lag. 🙃","","","","" "660969295615135744","660939817044197376","7446562","2015-11-01 23:58:54 +0000","Tweetbot for iΟS","@rballard Trek hidden Costa Rica was amazing. Would definitely go with them again in the future.","","","","" -"660929051444428800","","","2015-11-01 21:18:59 +0000","Tweetbot for Mac","Dirty martinis are great. Plymouth gin is spicy, recommended. Add 1-2 drops Tabasco for what I call Martini Diablo 🍸 https://t.co/ox21KE6vEg","","","","https://twitter.com/daringfireball/status/660925020009467904" +"660929051444428800","","","2015-11-01 21:18:59 +0000","Tweetbot for Mac","Dirty martinis are great. Plymouth gin is spicy, recommended. Add 1-2 drops Tabasco for what I call Martini Diablo 🍸 https://t.co/ox21KE6vEg","","","","https://twitter.com/daringfireball/status/660925020009467904" "660923658458689536","","","2015-11-01 20:57:34 +0000","Tweetbot for iΟS","RT @zackkanter: Amazing, real, and accurate: the CIA's Simple Sabotage Field Manual (1944) describes how to sabotage organizations. https:/…","660885773361786880","466880049","2015-11-01 18:27:01 +0000","https://twitter.com/zackkanter/status/660885773361786880/photo/1" -"660900663648346112","","","2015-11-01 19:26:11 +0000","Tweetbot for Mac","$10 says that they don’t get the root partition formatted before noon pacific. https://t.co/FiAtIBRHrI","","","","https://twitter.com/botherder/status/660889664979619840" +"660900663648346112","","","2015-11-01 19:26:11 +0000","Tweetbot for Mac","$10 says that they don’t get the root partition formatted before noon pacific. https://t.co/FiAtIBRHrI","","","","https://twitter.com/botherder/status/660889664979619840" "660593248373637122","","","2015-10-31 23:04:38 +0000","Tweetbot for iΟS","RT @siracusa: First Left Shark of the evening spotted.","660578899928211460","636923","2015-10-31 22:07:37 +0000","" "660420966405832704","660333430756904960","5637652","2015-10-31 11:40:03 +0000","Tweetbot for iΟS","@codinghorror The sacrilege is being a 🇨🇦 child visiting the USA and being offered Smarties. Instead of chocolate it’s just Rockets. 😣","","","","" "660219066741825536","","","2015-10-30 22:17:46 +0000","Tweetbot for iΟS","It's not a financial bubble. It's a cultural bubble, like a uni campus or a church community. https://t.co/i4xeVts1Kk","","","","https://twitter.com/schneidertobias/status/659409598953066496" @@ -1292,18 +1395,18 @@ now only pays for stack frame setup if not early re…","662082505579696128","15 "657658201815429120","657653709124599808","652293","2015-10-23 20:41:48 +0000","Tweetbot for iΟS","Story of my life right here. Me too @brentsimmons. https://t.co/JEj7gOBc6t","","","","https://twitter.com/brentsimmons/status/657653709124599808" "657653720096739328","","","2015-10-23 20:24:00 +0000","Tweetbot for iΟS","RT @Catfish_Man: It is occasionally frustrating to see apps bragging about quality when the only reason they launch at all is that I worked…","657653586256465920","15444008","2015-10-23 20:23:28 +0000","" "657562512368373760","657240516841611265","14347146","2015-10-23 14:21:34 +0000","Tweetbot for iΟS","@flarup @drbarnard We need to have a talk about your white wallpaper 😳","","","","" -"657302936591032321","","","2015-10-22 21:10:06 +0000","Tweetbot for Mac","Hey everyone I found all the Windows phone users: https://t.co/2HnUbFzWqt","","","","https://mint.lc.intuit.com/questions/1243928-discontinuing-the-windows-phone-app" -"657300592465833984","657275298422108160","18022416","2015-10-22 21:00:47 +0000","Tweetbot for Mac","@sebmarkbage @ryanflorence That’s a pretty big slow down. Unless you had the vast majority of people on newer browsers it’s a bad tradeoff.","","","","" -"657292539842531328","","","2015-10-22 20:28:48 +0000","Tweetbot for Mac","hot dog is a little on the nose. still gotta be the eggplant ✊🏼🍆 https://t.co/v9PhFhZO8X","","","","https://twitter.com/watercooler/status/657280023460716545" -"657239435147284484","657234279206793216","108834413","2015-10-22 16:57:46 +0000","Tweetbot for Mac","@karissabe We’ve been saying that for years and then Facebook goes and ruins everything. People will feel validated 😭https://t.co/icf0bu3K6A","","","","http://mashable.com/2015/10/16/facebook-iphone-battery-fix/#9EYx8aMnBGqM" +"657302936591032321","","","2015-10-22 21:10:06 +0000","Tweetbot for Mac","Hey everyone I found all the Windows phone users: https://t.co/2HnUbFzWqt","","","","https://mint.lc.intuit.com/questions/1243928-discontinuing-the-windows-phone-app" +"657300592465833984","657275298422108160","18022416","2015-10-22 21:00:47 +0000","Tweetbot for Mac","@sebmarkbage @ryanflorence That’s a pretty big slow down. Unless you had the vast majority of people on newer browsers it’s a bad tradeoff.","","","","" +"657292539842531328","","","2015-10-22 20:28:48 +0000","Tweetbot for Mac","hot dog is a little on the nose. still gotta be the eggplant ✊🏼🍆 https://t.co/v9PhFhZO8X","","","","https://twitter.com/watercooler/status/657280023460716545" +"657239435147284484","657234279206793216","108834413","2015-10-22 16:57:46 +0000","Tweetbot for Mac","@karissabe We’ve been saying that for years and then Facebook goes and ruins everything. People will feel validated 😭https://t.co/icf0bu3K6A","","","","http://mashable.com/2015/10/16/facebook-iphone-battery-fix/#9EYx8aMnBGqM" "657225456417009664","","","2015-10-22 16:02:14 +0000","Tweetbot for iΟS","I keep my font sizes small because I like seeing lots of text. But I want bigger emoji with more detail. Feeling millennial af rn","","","","" "657224434814619648","","","2015-10-22 15:58:10 +0000","Tweetbot for iΟS","Happened to me too. Maybe it’s the 10.11.1 update. https://t.co/5ClqdyNOsL","","","","https://twitter.com/siracusa/status/657207078600220672" "657223457285926913","","","2015-10-22 15:54:17 +0000","Tweetbot for iΟS","Is this satire? I’m scared. https://t.co/DDRHCqX0JD","","","","https://twitter.com/jquery_rain/status/654658163128430594" -"657217272029667328","","","2015-10-22 15:29:42 +0000","Tweetbot for Mac","10.11.1 fixed the bug causing my Mac’s external display to wake slowly and flicker on and off once or twice. Sounds small but was annoying.","","","","" +"657217272029667328","","","2015-10-22 15:29:42 +0000","Tweetbot for Mac","10.11.1 fixed the bug causing my Mac’s external display to wake slowly and flicker on and off once or twice. Sounds small but was annoying.","","","","" "657019094214946816","655199931460812800","4777951","2015-10-22 02:22:13 +0000","Tweetbot for iΟS","Well @fyrite surprised me and picked up a couple! Woot! 🍺 https://t.co/tHF3uQgVpZ","","","","https://twitter.com/_sjs/status/657019094214946816/photo/1" -"656939999854653441","656921205736247297","4777951","2015-10-21 21:07:55 +0000","Tweetbot for Mac","@_sjs Scratch that. Still broken. This is all I have left:🖕🏼","","","","" -"656921205736247297","","","2015-10-21 19:53:15 +0000","Tweetbot for Mac","Yep, same here. https://t.co/aktdLHZkP9 links work in Safari now. My “productivity” just increased 10x. https://t.co/zc3LgMhj7y","","","","https://t.co,https://twitter.com/gak_pdx/status/656913632630968320" -"656920992334286848","","","2015-10-21 19:52:24 +0000","Tweetbot for Mac","Find My Friends on the web before the Mac app (Messages integration doesn’t count). Is this a first for Apple? https://t.co/3r9YTP1Ezr","","","","https://twitter.com/MacRumors/status/656919747703930880" +"656939999854653441","656921205736247297","4777951","2015-10-21 21:07:55 +0000","Tweetbot for Mac","@_sjs Scratch that. Still broken. This is all I have left:🖕🏼","","","","" +"656921205736247297","","","2015-10-21 19:53:15 +0000","Tweetbot for Mac","Yep, same here. https://t.co/aktdLHZkP9 links work in Safari now. My “productivity” just increased 10x. https://t.co/zc3LgMhj7y","","","","https://t.co,https://twitter.com/gak_pdx/status/656913632630968320" +"656920992334286848","","","2015-10-21 19:52:24 +0000","Tweetbot for Mac","Find My Friends on the web before the Mac app (Messages integration doesn’t count). Is this a first for Apple? https://t.co/3r9YTP1Ezr","","","","https://twitter.com/MacRumors/status/656919747703930880" "656853426458882049","","","2015-10-21 15:23:55 +0000","Tweetbot for iΟS","Does the iPhone do HDR with the ISP? Why is it so much faster than other phones (and cameras)?","","","","" "656679670604103680","656661748057964544","14092590","2015-10-21 03:53:28 +0000","Tweetbot for iΟS","@drwave Apps will load resources from the network on demand, like swapping in a vm system. More storage is more cached data, less waiting.","","","","" "656646966856716288","","","2015-10-21 01:43:31 +0000","Tweetbot for iΟS","Got a new battery for my Nexus 5 on eBay. This one actually arrived, and now it’s alive again! Time to check out Android 6.","","","","" @@ -1311,51 +1414,52 @@ now only pays for stack frame setup if not early re…","662082505579696128","15 "656575412286320640","656574697736241152","108814849","2015-10-20 20:59:11 +0000","Tweetbot for iΟS","@snarfmason what can I say I’m a cheap bastard","","","","" "656573938470772736","","","2015-10-20 20:53:20 +0000","Tweetbot for iΟS","Neat. For the Luddites out there you can triple tap on your rusty old trackpad like me. https://t.co/f5Jkh2cQ26","","","","https://twitter.com/bwebster/status/656548312808448001" "656268438885658624","656262915045982208","14650563","2015-10-20 00:39:23 +0000","Tweetbot for iΟS","@toddthomas that’s a feature","","","","" -"655951474644545536","655391325542453248","2709291307","2015-10-19 03:39:53 +0000","Tweetbot for Mac","@logtournament @mahyarm Simple is better than complex. +"655951474644545536","655391325542453248","2709291307","2015-10-19 03:39:53 +0000","Tweetbot for Mac","@logtournament @mahyarm Simple is better than complex. English (Pythonic)","","","","" "655456310884855809","655426253726588928","689183","2015-10-17 18:52:16 +0000","Tweetbot for iΟS","@cocoalabs I run my MacBook as high as it goes, but at the distance I sit from the iMac default is best. External 4k is at 2560 hidpi too.","","","","" "655205527832518656","","","2015-10-17 02:15:45 +0000","Tweetbot for iΟS","RT @dangoor: Friday night seems like the wrong time to introduce my new podcast. I’ll wait until Monday. http://t.co/GrMwkx5EFr","655203098692968448","8831572","2015-10-17 02:06:06 +0000","http://www.howappsarebuilt.com/,http://www.howappsarebuilt.com/" "655199931460812800","","","2015-10-17 01:53:31 +0000","Tweetbot for iΟS","Now here’s a reason to be excited for Christmas 🍺 https://t.co/OBZp4a8w6R","","","","https://twitter.com/phillipsgrowler/status/655198690433372160" "655198992284815360","","","2015-10-17 01:49:47 +0000","Tweetbot for iΟS","God bless the internet https://t.co/AbGWXFL0Hr","","","","https://twitter.com/thomasfuchs/status/655192552564506624" -"655097404690067457","655096992914235392","385193","2015-10-16 19:06:07 +0000","Tweetbot for Mac","@jim_rutherford @daveverwer Not this time. Good question!","","","","" -"655083533011038208","655083203259179008","12512","2015-10-16 18:10:59 +0000","Tweetbot for Mac","@daveverwer Yeah 9.0.2, iPad Air 2. Glad to help you test stuff to track it down, just let me know.","","","","" +"655097404690067457","655096992914235392","385193","2015-10-16 19:06:07 +0000","Tweetbot for Mac","@jim_rutherford @daveverwer Not this time. Good question!","","","","" +"655083533011038208","655083203259179008","12512","2015-10-16 18:10:59 +0000","Tweetbot for Mac","@daveverwer Yeah 9.0.2, iPad Air 2. Glad to help you test stuff to track it down, just let me know.","","","","" "655082815399198720","655082479863336960","12512","2015-10-16 18:08:08 +0000","Tweetbot for iΟS","@daveverwer yup, web version. Good to know it works on iPhone. I’m just not using new tabs for now. Not a big deal :)","","","","" "655080222006509568","655080091781869569","12512","2015-10-16 17:57:50 +0000","Twitter Web Client","@daveverwer Safari on my iPad","","","","" "655072977613025280","","","2015-10-16 17:29:03 +0000","Tweetbot for iΟS","“You can’t just go to a supplier like Foxconn and say: ‘Build me a car.’“ - @elonmusk https://t.co/bwygF3iWHE","","","","https://twitter.com/neilcybart/status/655068998124597248" "655071518758584320","","7125712","2015-10-16 17:23:15 +0000","Tweetbot for iΟS","@gte @debugcast Everyone wants to hear about Cascadia. Why isn’t anyone talking about the big conspiracy: no Cascadian flag emoji","","","","" -"655066650023104512","","","2015-10-16 17:03:54 +0000","Tweetbot for Mac","Apple’s new trackpad doesn’t work on what was the latest version of the OS 2 weeks ago. https://t.co/mlo0wzb1pb","","","","https://twitter.com/drwave/status/655064372704772100" -"655061254344589312","","","2015-10-16 16:42:28 +0000","Tweetbot for Mac","RT @honest_update: Turns out the real database is different from SQLite in non-trivial ways. We're investigating query failures now…","655061153861795840","3033204133","2015-10-16 16:42:04 +0000","" -"655059813555048448","655040115899781120","12512","2015-10-16 16:36:44 +0000","Tweetbot for Mac","@daveverwer For the last few weeks when I open links in a new tab the original tab follows the link as well.","","","","" -"654812081829474304","","","2015-10-16 00:12:20 +0000","Tweetbot for Mac","RT @benthompson: Also, the fact Chinese numbers are monosyllabic means most Chinese can quickly memorize far longer number strings (like ph…","654810763673006080","40273","2015-10-16 00:07:06 +0000","" -"654812073168257024","","","2015-10-16 00:12:18 +0000","Tweetbot for Mac","RT @benthompson: I 100% agree that Chinese is a better language for learning math. English numbering is dumb +"655066650023104512","","","2015-10-16 17:03:54 +0000","Tweetbot for Mac","Apple’s new trackpad doesn’t work on what was the latest version of the OS 2 weeks ago. https://t.co/mlo0wzb1pb","","","","https://twitter.com/drwave/status/655064372704772100" +"655061254344589312","","","2015-10-16 16:42:28 +0000","Tweetbot for Mac","RT @honest_update: Turns out the real database is different from SQLite in non-trivial ways. We're investigating query failures now…","655061153861795840","3033204133","2015-10-16 16:42:04 +0000","" +"655059813555048448","655040115899781120","12512","2015-10-16 16:36:44 +0000","Tweetbot for Mac","@daveverwer For the last few weeks when I open links in a new tab the original tab follows the link as well.","","","","" +"654812081829474304","","","2015-10-16 00:12:20 +0000","Tweetbot for Mac","RT @benthompson: Also, the fact Chinese numbers are monosyllabic means most Chinese can quickly memorize far longer number strings (like ph…","654810763673006080","40273","2015-10-16 00:07:06 +0000","" +"654812073168257024","","","2015-10-16 00:12:18 +0000","Tweetbot for Mac","RT @benthompson: I 100% agree that Chinese is a better language for learning math. English numbering is dumb http://t.co/5dPc0YNDuv http:/…","654810395442475008","40273","2015-10-16 00:05:38 +0000","http://www.wsj.com/articles/the-best-language-for-math-1410304008,http://www.wsj.com/articles/the-best-language-for-math-1410304008,https://twitter.com/benthompson/status/654810395442475008/photo/1" -"654794578218741760","","","2015-10-15 23:02:47 +0000","Tweetbot for Mac","Better not give the impression that people in the middle east are normal people living in normal cities. The horror. https://t.co/WQL0Ur4qOE","","","","https://twitter.com/sandman_leb/status/579021886845243392" -"654791206149320704","","","2015-10-15 22:49:23 +0000","Tweetbot for Mac","RT @joeldev: I carved a pumpkin http://t.co/OawqNWGCft","654789308197437441","14130572","2015-10-15 22:41:51 +0000","https://twitter.com/joeldev/status/654789308197437441/photo/1,https://twitter.com/joeldev/status/654789308197437441/photo/1" -"654769467226918912","654769192676163584","2436389418","2015-10-15 21:23:00 +0000","Tweetbot for Mac","@SwiftOnSecurity I don’t think you’re getting the job. http://t.co/IG3e2QRrrQ","","","","https://twitter.com/_sjs/status/654769467226918912/photo/1" +"654794578218741760","","","2015-10-15 23:02:47 +0000","Tweetbot for Mac","Better not give the impression that people in the middle east are normal people living in normal cities. The horror. https://t.co/WQL0Ur4qOE","","","","https://twitter.com/sandman_leb/status/579021886845243392" +"654791206149320704","","","2015-10-15 22:49:23 +0000","Tweetbot for Mac","RT @joeldev: I carved a pumpkin http://t.co/OawqNWGCft","654789308197437441","14130572","2015-10-15 22:41:51 +0000","https://twitter.com/joeldev/status/654789308197437441/photo/1,https://twitter.com/joeldev/status/654789308197437441/photo/1" +"654769467226918912","654769192676163584","2436389418","2015-10-15 21:23:00 +0000","Tweetbot for Mac","@SwiftOnSecurity I don’t think you’re getting the job. http://t.co/IG3e2QRrrQ","","","","https://twitter.com/_sjs/status/654769467226918912/photo/1" "654749581540876289","","","2015-10-15 20:03:59 +0000","Tweetbot for iΟS","That’s no way to live.","","","","" "654749480554598401","","","2015-10-15 20:03:35 +0000","Tweetbot for iΟS","Lady just came into the bank to check if there was a deposit in her account yesterday. How quaint.","","","","" "654711701959413760","","","2015-10-15 17:33:28 +0000","Tweetbot for iΟS","RT @lilbitesofcocoa: #104: Interactive Collection View Re-ordering 👆🔢 Web version: https://t.co/rThbh1tVRG http://t.co/7k5RQJF6D1","654698760325349377","2897295331","2015-10-15 16:42:02 +0000","https://littlebitesofcocoa.com/104,https://twitter.com/lilbitesofcocoa/status/654698760325349377/photo/1,https://littlebitesofcocoa.com/104,https://twitter.com/lilbitesofcocoa/status/654698760325349377/photo/1" -"654698149877936128","","","2015-10-15 16:39:37 +0000","Tweetbot for Mac","RT @zeynep: Ran into Alex Halderman recently. He casually said ""we found a weakness in Diffie-Hellman."" My jaw dropped. GO READ. https://t.…","654653361942171648","65375759","2015-10-15 13:41:39 +0000","https://freedom-to-tinker.com/blog/haldermanheninger/how-is-nsa-breaking-so-much-crypto/" +"654698149877936128","","","2015-10-15 16:39:37 +0000","Tweetbot for Mac","RT @zeynep: Ran into Alex Halderman recently. He casually said ""we found a weakness in Diffie-Hellman."" My jaw dropped. GO READ. https://t.…","654653361942171648","65375759","2015-10-15 13:41:39 +0000","https://freedom-to-tinker.com/blog/haldermanheninger/how-is-nsa-breaking-so-much-crypto/" "654477286570246144","","","2015-10-15 02:01:59 +0000","Tweetbot for iΟS","RT @merowing_: TIL: If you need to debug, it’s good to import Frameworks into lldb. But it’s nicer when you automate it, like this: http://…","654471223028678656","289246577","2015-10-15 01:37:53 +0000","https://twitter.com/merowing_/status/654471223028678656/photo/1" -"654459381010952192","","","2015-10-15 00:50:50 +0000","Tweetbot for Mac","RT @gregbate: Top notch Reddit thread https://t.co/wCtLZy6c97","654454718186459136","15292261","2015-10-15 00:32:18 +0000","https://www.reddit.com/r/AskReddit/comments/3oqj4a/which_song_is_most_improved_when_all_occurrences/,https://www.reddit.com/r/AskReddit/comments/3oqj4a/which_song_is_most_improved_when_all_occurrences/" -"654413829443457024","","","2015-10-14 21:49:50 +0000","Tweetbot for Mac","I kinda wish my iPhone would unlock to the home screen instead of the last app after maybe 5-10 mins.","","","","" +"654459381010952192","","","2015-10-15 00:50:50 +0000","Tweetbot for Mac","RT @gregbate: Top notch Reddit thread https://t.co/wCtLZy6c97","654454718186459136","15292261","2015-10-15 00:32:18 +0000","https://www.reddit.com/r/AskReddit/comments/3oqj4a/which_song_is_most_improved_when_all_occurrences/,https://www.reddit.com/r/AskReddit/comments/3oqj4a/which_song_is_most_improved_when_all_occurrences/" +"654413829443457024","","","2015-10-14 21:49:50 +0000","Tweetbot for Mac","I kinda wish my iPhone would unlock to the home screen instead of the last app after maybe 5-10 mins.","","","","" "654372320438452225","654357656233074688","271545671","2015-10-14 19:04:53 +0000","Tweetbot for iΟS","@getcloak 🎉🎊","","","","" -"654350350447607808","","","2015-10-14 17:37:35 +0000","Tweetbot for Mac","Every server attempts to expand until it can be scripted. Those servers which cannot so expand are replaced by ones which can. +"654350350447607808","","","2015-10-14 17:37:35 +0000","Tweetbot for Mac","Every server attempts to expand until it can be scripted. Those servers which cannot so expand are replaced by ones which can. sorry @jwz","","","","" "654348028157890560","","","2015-10-14 17:28:21 +0000","Tweetbot for iΟS","Nice use of quick actions in @tweetbot. And I just let go to tweet the screenshot. So meta. http://t.co/LUy4qzwiSE","","","","https://twitter.com/_sjs/status/654348028157890560/photo/1" -"654346550252994560","","","2015-10-14 17:22:29 +0000","Tweetbot for Mac","10.11 has been downloading overnight and is just barely 50% done. What is going on with Apple’s CDN? http://t.co/BnqiMahFB4","","","","https://twitter.com/_sjs/status/654346550252994560/photo/1" +"654346550252994560","","","2015-10-14 17:22:29 +0000","Tweetbot for Mac","10.11 has been downloading overnight and is just barely 50% done. What is going on with Apple’s CDN? http://t.co/BnqiMahFB4","","","","https://twitter.com/_sjs/status/654346550252994560/photo/1" "654144915115347968","654142955716931585","3245500824","2015-10-14 04:01:15 +0000","Tweetbot for iΟS","@ilikeprettycode It’s a lot like The Martian really. Except not as cool. And not on Mars. And I’m not Matt Damon.","","","","" "654125277832867840","654117100097810432","43727347","2015-10-14 02:43:13 +0000","Tweetbot for iΟS","@gembarrett Seattle is like a sober Portland. Less hippie, less artisinal crap, more coffee.","","","","" -"654074668442234880","654074366347608065","33493","2015-10-13 23:22:07 +0000","Tweetbot for Mac","@peterc Yeah I mean with a single cable. I don’t see Apple releasing a display with MST or any other multi-cable solution. It’s gross :)","","","","" -"654071660971069440","","","2015-10-13 23:10:10 +0000","Tweetbot for Mac","I’ve been waiting for this since the new MacBook came out in March or so. And now it’s here! … yay? 😕","","","","" -"654071500903809025","","","2015-10-13 23:09:32 +0000","Tweetbot for Mac","Taking bets. Will Apple reduce the price of the new trackpad before I break down and buy one despite the ridiculous price?","","","","" -"654049684407783424","","","2015-10-13 21:42:51 +0000","Tweetbot for Mac","RT @gak_pdx: Can a company putting 5400rpm drives in a brand new 2015 desktop computer really claim a dedication to making the ""best produc…","654046294160216064","7603032","2015-10-13 21:29:22 +0000","" -"653988480914067456","","","2015-10-13 17:39:39 +0000","Tweetbot for Mac","RT @joshaber: I just opened a PR to remove the last pieces of TwUI from GitHub Desktop. +"654123649780191232","","","2015-10-14 02:36:45 +0000","Tweetbot for iΟS","RT @mdhughes: I grabbed @chockenberry's Clicker, I'm using it to count drinks. 2 so far.","654122184562970627","14200945","2015-10-14 02:30:56 +0000","" +"654074668442234880","654074366347608065","33493","2015-10-13 23:22:07 +0000","Tweetbot for Mac","@peterc Yeah I mean with a single cable. I don’t see Apple releasing a display with MST or any other multi-cable solution. It’s gross :)","","","","" +"654071660971069440","","","2015-10-13 23:10:10 +0000","Tweetbot for Mac","I’ve been waiting for this since the new MacBook came out in March or so. And now it’s here! … yay? 😕","","","","" +"654071500903809025","","","2015-10-13 23:09:32 +0000","Tweetbot for Mac","Taking bets. Will Apple reduce the price of the new trackpad before I break down and buy one despite the ridiculous price?","","","","" +"654049684407783424","","","2015-10-13 21:42:51 +0000","Tweetbot for Mac","RT @gak_pdx: Can a company putting 5400rpm drives in a brand new 2015 desktop computer really claim a dedication to making the ""best produc…","654046294160216064","7603032","2015-10-13 21:29:22 +0000","" +"653988480914067456","","","2015-10-13 17:39:39 +0000","Tweetbot for Mac","RT @joshaber: I just opened a PR to remove the last pieces of TwUI from GitHub Desktop. RIP the dreams.","653973532012081152","14103557","2015-10-13 16:40:14 +0000","" "653963026878496768","","","2015-10-13 15:58:30 +0000","Tweetbot for iΟS","How’s your Tuesday morning so far? https://t.co/iqQRbTGFlV","","","","https://twitter.com/bartt/status/653946266938818561" @@ -1367,21 +1471,21 @@ RIP the dreams.","653973532012081152","14103557","2015-10-13 16:40:14 +0000","" "653649675375931392","653643819661922304","2436389418","2015-10-12 19:13:21 +0000","Tweetbot for iΟS","@SwiftOnSecurity When we wired my dad’s office in the late 90s we used CAT5 to wire up 8 phones with 2 cables. Probably fairly common.","","","","" "653648070631014401","","22406953","2015-10-12 19:06:58 +0000","Tweetbot for iΟS","@mahyarm No worries about the Samsung A9 (unless you run Geekbench’s battery test for fun) https://t.co/1FIliDKg8d","","","","https://twitter.com/arstechnica/status/653623425773256704" "653601198931480576","653428997770969088","765340","2015-10-12 16:00:43 +0000","Tweetbot for iΟS","@AriX @joshuatopolsky @stroughtonsmith Didn’t know about this. All good points. Makes me think better UI is coming later, maybe tied to hw.","","","","" -"653423775073988608","653418787773935616","765340","2015-10-12 04:15:42 +0000","Tweetbot for Mac","@AriX @joshuatopolsky @stroughtonsmith Gives you an out if you didn’t want the link to open in the app for some reason.","","","","" -"653376640651673600","653341904436789248","11666142","2015-10-12 01:08:24 +0000","Tweetbot for Mac","@joshuatopolsky @stroughtonsmith Don’t forget the forward button. http://t.co/r93JF7IMDi","","","","https://twitter.com/_sjs/status/653376640651673600/photo/1" +"653423775073988608","653418787773935616","765340","2015-10-12 04:15:42 +0000","Tweetbot for Mac","@AriX @joshuatopolsky @stroughtonsmith Gives you an out if you didn’t want the link to open in the app for some reason.","","","","" +"653376640651673600","653341904436789248","11666142","2015-10-12 01:08:24 +0000","Tweetbot for Mac","@joshuatopolsky @stroughtonsmith Don’t forget the forward button. http://t.co/r93JF7IMDi","","","","https://twitter.com/_sjs/status/653376640651673600/photo/1" "653359499114233856","653358668583297024","22406953","2015-10-12 00:00:18 +0000","Tweetbot for iΟS","@mahyarm better to have the one you like than the one with a supposedly better CPU. Hopefully it really isn’t much worse in real use.","","","","" "653355337714544640","653285574594310144","22406953","2015-10-11 23:43:45 +0000","Tweetbot for iΟS","@mahyarm Nooooo! What colour did you get?","","","","" "653210346052714496","","","2015-10-11 14:07:37 +0000","Tweetbot for iΟS","Null is a useful concept with poor implementations. Moving to the type system makes you explicitly handle. And think https://t.co/3yjkqeod3X","","","","https://twitter.com/headinthebox/status/621443337049010176" "653209938278264832","621443337049010176","410939902","2015-10-11 14:05:59 +0000","Tweetbot for iΟS","@headinthebox @CompSciFact Way to entirely miss the point.","","","","" "653207007156023297","650453706375172096","14186105","2015-10-11 13:54:21 +0000","Tweetbot for iΟS","@RoyOsherove @AaronKalair If you think test-first eliminates debugging I’ve got a bridge to sell you.","","","","" "653029755382398976","","","2015-10-11 02:10:01 +0000","iOS","Turn iOS's zoom feature into a dim night mode. Convoluted but pretty sweet actually. https://t.co/jPf9OM9v1O","","","","https://www.reddit.com/r/LifeProTips/comments/2ros9k/lpt_night_mode_on_apple_devices/" -"653008366927659008","652995849337876480","312453301","2015-10-11 00:45:01 +0000","Twitterrific","@jkw_ @peterc DisplayPort. If still not 60hz your Mac might not be able to do it. My 2013 13” MBP can only do 4k at 30hz.","","","","" -"652932311650951168","652916920753086464","4777951","2015-10-10 19:42:48 +0000","Tweetbot for Mac","@TwoCowsGames @gte Just to be clear: I’m advocating for much stricter gun control. The current situation is beyond fucked up.","","","","" +"653008366927659008","652995849337876480","312453301","2015-10-11 00:45:01 +0000","Twitterrific for iOS","@jkw_ @peterc DisplayPort. If still not 60hz your Mac might not be able to do it. My 2013 13” MBP can only do 4k at 30hz.","","","","" +"652932311650951168","652916920753086464","4777951","2015-10-10 19:42:48 +0000","Tweetbot for Mac","@TwoCowsGames @gte Just to be clear: I’m advocating for much stricter gun control. The current situation is beyond fucked up.","","","","" "652916920753086464","652916191506227200","4777951","2015-10-10 18:41:39 +0000","Tweetbot for iΟS","@TwoCowsGames @gte There are deep cultural and mental health issues though. Guns themselves are only half the story.","","","","" "652916332392939520","","","2015-10-10 18:39:18 +0000","Tweetbot for iΟS","RT @cheerskevin: Apparently it's #WorldMentalHealthDay. But don't worry! Tomorrow marks the first of 364 #WorldNeuroticismDays","652906329238052864","14308739","2015-10-10 17:59:33 +0000","" "652916191506227200","652904042478202880","2335837321","2015-10-10 18:38:45 +0000","Tweetbot for iΟS","@TwoCowsGames @gte It’s not black and white. You don’t have to ban all guns. Banning automatic weapons is a fantastic start.","","","","" "652915585618079744","652893260864598016","10188712","2015-10-10 18:36:20 +0000","Tweetbot for iΟS","@pgor @brentsimmons Ghostery can block “social buttons”. Highly recommended.","","","","" -"652890817263042560","","","2015-10-10 16:57:55 +0000","Tweetbot for Mac","RT @cheerskevin: Very much agree here - but I think the key takeaway is how many policy decisions are unwittingly delegated. https://t.co/Y…","652867918221430784","14308739","2015-10-10 15:26:56 +0000","https://twitter.com/_sjs/status/652862214404071424" +"652890817263042560","","","2015-10-10 16:57:55 +0000","Tweetbot for Mac","RT @cheerskevin: Very much agree here - but I think the key takeaway is how many policy decisions are unwittingly delegated. https://t.co/Y…","652867918221430784","14308739","2015-10-10 15:26:56 +0000","https://twitter.com/_sjs/status/652862214404071424" "652866938637451264","","","2015-10-10 15:23:02 +0000","iOS","I like to stop, at the duty free shop 🎶 http://t.co/vTE3wymUUD","","","","https://twitter.com/_sjs/status/652866938637451264/photo/1" "652862214404071424","652861873868533761","4777951","2015-10-10 15:04:16 +0000","Tweetbot for iΟS",".@rorysutherland @cheerskevin The problem is that anyone with a PC can code so it’s really hard to enforce or monitor that. Extremely hard.","","","","" "652861873868533761","652833186561589248","760303","2015-10-10 15:02:54 +0000","Tweetbot for iΟS",".@rorysutherland @cheerskevin I don’t buy the “rogue employee” line, but agree that developers should have a moral oath or something.","","","","" @@ -1403,24 +1507,24 @@ RIP the dreams.","653973532012081152","14103557","2015-10-13 16:40:14 +0000","" "652515346780422144","652496566238904320","9989362","2015-10-09 16:05:56 +0000","Tweetbot for iΟS","@headius Was desktop Java ever really here?","","","","" "652454720586547200","","","2015-10-09 12:05:02 +0000","Twitter Web Client","Just got some spam from this guy so I look him up and find this tweet. Gold. You deserve it in spades @donniecooper https://t.co/0fDeHqintv","","","","https://twitter.com/donniecooper/status/651824804220243968" "652448563562217472","652162625728483328","22433083","2015-10-09 11:40:34 +0000","Twitter Web Client","@paynetc @reboundcast At first this bothered me (being an uptight nerd type) but luckily @acorscadden talked some sense into me.","","","","" -"652448136384901120","","","2015-10-09 11:38:52 +0000","Tweetbot for Mac","Quip from @reboundcast’s show notes this week: “Microsoft made a surface that ‘will replace your laptop.’ Then it made a laptop.” 😄","","","","" -"652446924415606785","652446689136115712","4777951","2015-10-09 11:34:03 +0000","Tweetbot for Mac","@benthompson Siri is a pretty good example.","","","","" -"652446689136115712","652357264645357568","40273","2015-10-09 11:33:07 +0000","Tweetbot for Mac","@benthompson People write things off when they try them and it’s hard to get them to reevaluate again later regardless of what changed.","","","","" -"652445080939294720","","","2015-10-09 11:26:43 +0000","Tweetbot for Mac","RT @StartupLJackson: Frankly, the real bubble is in humans connected to the internet. When the fad passes, we're fucked. http://t.co/qBmLTz…","652346846589747200","353789193","2015-10-09 04:56:22 +0000","https://twitter.com/StartupLJackson/status/652346846589747200/photo/1" -"652444919009779712","","","2015-10-09 11:26:05 +0000","Tweetbot for Mac","RT @counternotions: Judge Lucy Koh orders Tim Cook to force Apple employees who ""couldn't make it at Tesla"" to wear ""I'm a loser!"" badges a…","652344303210090497","19225408","2015-10-09 04:46:16 +0000","" +"652448136384901120","","","2015-10-09 11:38:52 +0000","Tweetbot for Mac","Quip from @reboundcast’s show notes this week: “Microsoft made a surface that ‘will replace your laptop.’ Then it made a laptop.” 😄","","","","" +"652446924415606785","652446689136115712","4777951","2015-10-09 11:34:03 +0000","Tweetbot for Mac","@benthompson Siri is a pretty good example.","","","","" +"652446689136115712","652357264645357568","40273","2015-10-09 11:33:07 +0000","Tweetbot for Mac","@benthompson People write things off when they try them and it’s hard to get them to reevaluate again later regardless of what changed.","","","","" +"652445080939294720","","","2015-10-09 11:26:43 +0000","Tweetbot for Mac","RT @StartupLJackson: Frankly, the real bubble is in humans connected to the internet. When the fad passes, we're fucked. http://t.co/qBmLTz…","652346846589747200","353789193","2015-10-09 04:56:22 +0000","https://twitter.com/StartupLJackson/status/652346846589747200/photo/1" +"652444919009779712","","","2015-10-09 11:26:05 +0000","Tweetbot for Mac","RT @counternotions: Judge Lucy Koh orders Tim Cook to force Apple employees who ""couldn't make it at Tesla"" to wear ""I'm a loser!"" badges a…","652344303210090497","19225408","2015-10-09 04:46:16 +0000","" "652308673482633216","652307489187213312","407037083","2015-10-09 02:24:41 +0000","Tweetbot for iΟS","@BoozeDonkey @HackerPschorrUS @ClivesClassic Prost!","","","","" "652308377247289344","","","2015-10-09 02:23:31 +0000","Tweetbot for iΟS","I’ve never thought about this but it makes a lot of sense. Explains a lot. Do you ask, or ask only when you know? https://t.co/lmvHXitoOL","","","","https://twitter.com/sarahmei/status/652305789764300800" -"652262564294983680","","","2015-10-08 23:21:28 +0000","Tweetbot for Mac","Links to places in Google search results can’t be opened in new tabs. Same for links to websites from maps. Clicking back like an animal.","","","","" -"652194607422394368","","","2015-10-08 18:51:26 +0000","Tweetbot for Mac","Pretty accurate for me too, but I do use it as an audio remote and for 2FA. https://t.co/Q0t6dvUMDj","","","","https://twitter.com/ablaze_co/status/652136104561242112" -"652189072836968449","652188908847939584","8479062","2015-10-08 18:29:26 +0000","Tweetbot for Mac","@fromedome Ah, yeah I have no idea about that case. Hope you can find the one you want soon.","","","","" -"652188758859743232","652188314661875712","8479062","2015-10-08 18:28:11 +0000","Tweetbot for Mac","@fromedome If you’re buying unlocked you can choose any carrier and pop in the right SIM card. I bought Verizon and use w/ T-Mobile SIM.","","","","" -"652181984920342528","","","2015-10-08 18:01:16 +0000","Tweetbot for Mac","RT @Catfish_Man: Pro tip: don’t block waiting for user input inside of -drawRect:. Especially don’t pop up a modal dialog.","652178413713670144","15444008","2015-10-08 17:47:05 +0000","" +"652262564294983680","","","2015-10-08 23:21:28 +0000","Tweetbot for Mac","Links to places in Google search results can’t be opened in new tabs. Same for links to websites from maps. Clicking back like an animal.","","","","" +"652194607422394368","","","2015-10-08 18:51:26 +0000","Tweetbot for Mac","Pretty accurate for me too, but I do use it as an audio remote and for 2FA. https://t.co/Q0t6dvUMDj","","","","https://twitter.com/ablaze_co/status/652136104561242112" +"652189072836968449","652188908847939584","8479062","2015-10-08 18:29:26 +0000","Tweetbot for Mac","@fromedome Ah, yeah I have no idea about that case. Hope you can find the one you want soon.","","","","" +"652188758859743232","652188314661875712","8479062","2015-10-08 18:28:11 +0000","Tweetbot for Mac","@fromedome If you’re buying unlocked you can choose any carrier and pop in the right SIM card. I bought Verizon and use w/ T-Mobile SIM.","","","","" +"652181984920342528","","","2015-10-08 18:01:16 +0000","Tweetbot for Mac","RT @Catfish_Man: Pro tip: don’t block waiting for user input inside of -drawRect:. Especially don’t pop up a modal dialog.","652178413713670144","15444008","2015-10-08 17:47:05 +0000","" "652181912845463552","","","2015-10-08 18:00:59 +0000","Twitter Web Client","This is like Olympus OM-D E-M5 II's composite shot that moves the lens, but on steroids. So cool. http://t.co/rfXOeWRrAE via @mashable","","","","http://mashable.com/2015/10/08/light-l16-camera/#rpb73LrYm05F" -"652179211621371904","652177356560273408","14136484","2015-10-08 17:50:15 +0000","Tweetbot for Mac","@acorscadden @mashable It does look awesome! If they deliver on this I’ll strongly consider buying v2.","","","","" +"652179211621371904","652177356560273408","14136484","2015-10-08 17:50:15 +0000","Tweetbot for Mac","@acorscadden @mashable It does look awesome! If they deliver on this I’ll strongly consider buying v2.","","","","" "652156255306280960","652153212229652480","11973362","2015-10-08 16:19:02 +0000","Tweetbot for iΟS","@typeoneerror So your insidious plan is to be insulted all the time to steal our souls. Got it.","","","","" -"652150093915643906","652149898800852993","2569881","2015-10-08 15:54:33 +0000","Tweetbot for Mac","@orta @saniul @ccoryoso Oh yeah, that is nice! If the array is homogenous that looks like the way to do it.","","","","" -"652149201795575809","652148478236229632","2569881","2015-10-08 15:51:00 +0000","Tweetbot for Mac","@orta You’re not alone. @brentsimmons explored this a little while ago. No satisfying solutions. http://t.co/Ok7HR1zJwB","","","","http://inessential.com/2015/08/02/swift_diary_7_protocols_arrays_and_c" -"652148481570639872","","","2015-10-08 15:48:08 +0000","Tweetbot for Mac","Yup. Better install @chockenberry’s provisioning profile plugin too while you’re at it. https://t.co/40OYCq1BvH https://t.co/Gg7HXv4zoN","","","","https://github.com/chockenberry/Provisioning,https://twitter.com/jim_rutherford/status/652144167796142081" +"652150093915643906","652149898800852993","2569881","2015-10-08 15:54:33 +0000","Tweetbot for Mac","@orta @saniul @ccoryoso Oh yeah, that is nice! If the array is homogenous that looks like the way to do it.","","","","" +"652149201795575809","652148478236229632","2569881","2015-10-08 15:51:00 +0000","Tweetbot for Mac","@orta You’re not alone. @brentsimmons explored this a little while ago. No satisfying solutions. http://t.co/Ok7HR1zJwB","","","","http://inessential.com/2015/08/02/swift_diary_7_protocols_arrays_and_c" +"652148481570639872","","","2015-10-08 15:48:08 +0000","Tweetbot for Mac","Yup. Better install @chockenberry’s provisioning profile plugin too while you’re at it. https://t.co/40OYCq1BvH https://t.co/Gg7HXv4zoN","","","","https://github.com/chockenberry/Provisioning,https://twitter.com/jim_rutherford/status/652144167796142081" "652109386173808640","","","2015-10-08 13:12:47 +0000","Tweetbot for iΟS","👌🏼 https://t.co/jnODY8a7lb","","","","https://twitter.com/chrisphillips25/status/652108105912815616" "652105354621386752","650778031448064000","73963286","2015-10-08 12:56:46 +0000","Tweetbot for iΟS","@bcapps Do you pass inspection? http://t.co/JCz8icnq44","","","","http://m.youtube.com/watch?v=JAzqGuZfo00" "652103405134082048","","","2015-10-08 12:49:01 +0000","Tweetbot for iΟS","Can’t un-see this in Tweetbot 4. 😁 http://t.co/UFLR4HmctY","","","","https://twitter.com/_sjs/status/652103405134082048/photo/1" @@ -1428,10 +1532,10 @@ RIP the dreams.","653973532012081152","14103557","2015-10-13 16:40:14 +0000","" …","652094228802240512","30968081","2015-10-08 12:12:34 +0000","" "651958868566740992","651910380357226496","12199652","2015-10-08 03:14:41 +0000","Tweetbot for iΟS","@edbott @SwiftOnSecurity Please don’t actually die but https://t.co/BKiDDZMj2J","","","","https://twitter.com/Snowden/status/651919415538225152" -"651765771153055744","","","2015-10-07 14:27:23 +0000","Tweetbot for Mac","RT @siracusa: Responses to sham treatments have become stronger over time making it harder to prove a drug’s advantage over placebo http://…","651763793811386369","636923","2015-10-07 14:19:32 +0000","http://www.nature.com/news/strong-placebo-response-thwarts-painkiller-trials-1.18511?WT.mc_id=TWT_NatureNews" -"651754105359204352","","","2015-10-07 13:41:02 +0000","Tweetbot for Mac","“Nobody likes soft pasta. You’re supposed to eat pasta not a marshmallow.” – Wise words from @viticci https://t.co/TEcQJj9B1D","","","","https://twitter.com/marcoarment/status/651749941262581760" +"651765771153055744","","","2015-10-07 14:27:23 +0000","Tweetbot for Mac","RT @siracusa: Responses to sham treatments have become stronger over time making it harder to prove a drug’s advantage over placebo http://…","651763793811386369","636923","2015-10-07 14:19:32 +0000","http://www.nature.com/news/strong-placebo-response-thwarts-painkiller-trials-1.18511?WT.mc_id=TWT_NatureNews" +"651754105359204352","","","2015-10-07 13:41:02 +0000","Tweetbot for Mac","“Nobody likes soft pasta. You’re supposed to eat pasta not a marshmallow.” – Wise words from @viticci https://t.co/TEcQJj9B1D","","","","https://twitter.com/marcoarment/status/651749941262581760" "651749277434269696","","","2015-10-07 13:21:51 +0000","Tweetbot for iΟS","RT @bryan_kyle: @JimRoepcke @_sjs to this day my wife still insists on a tablet. She’s got a Thinkpad Twist now. It’s pretty good, all th…","651746685706567680","14864447","2015-10-07 13:11:33 +0000","" -"651739796977655808","","","2015-10-07 12:44:10 +0000","Tweetbot for Mac","Cable companies are not going to change. https://t.co/1KYxQzhUYR https://t.co/I4bIjW7Bxk","","","","https://en.wikipedia.org/wiki/The_Scorpion_and_the_Frog,https://twitter.com/arstechnica/status/651738744689721344" +"651739796977655808","","","2015-10-07 12:44:10 +0000","Tweetbot for Mac","Cable companies are not going to change. https://t.co/1KYxQzhUYR https://t.co/I4bIjW7Bxk","","","","https://en.wikipedia.org/wiki/The_Scorpion_and_the_Frog,https://twitter.com/arstechnica/status/651738744689721344" "651736319228555264","651727789268320257","1233663476","2015-10-07 12:30:21 +0000","Tweetbot for iΟS","@stratechery @benthompson Great article. Spotted an itso: “from which its clear” (hi @gruber)","","","","" "651727633080844288","","","2015-10-07 11:55:50 +0000","Tweetbot for iΟS","Every damn time. And I feel like a fucking idiot every damn time. https://t.co/peQ2FK095t","","","","https://twitter.com/snookca/status/651727437995376641" "651727075469037568","","","2015-10-07 11:53:37 +0000","Tweetbot for iΟS","Beleaguered Microsoft appears confident but in reality is desperately trying to stay relevant. https://t.co/WUSMfBK2w5","","","","https://twitter.com/BenedictEvans/status/651629071479107584" @@ -1442,33 +1546,33 @@ RIP the dreams.","653973532012081152","14103557","2015-10-13 16:40:14 +0000","" "651716637264080896","","","2015-10-07 11:12:09 +0000","Tweetbot for iΟS","RT @cocoalabs: Nooooooooooooooooo....... https://t.co/IoA1MbtvG2","651637057094180865","689183","2015-10-07 05:55:55 +0000","https://twitter.com/jessmarmor/status/651507151408599040,https://twitter.com/jessmarmor/status/651507151408599040" "651550098804076546","651542266482311168","22406953","2015-10-07 00:10:23 +0000","Tweetbot for iΟS","@mahyarm Camera makes sense. Time will help that somewhat. Software updates is potentially a bigger problem long term.","","","","" "651541875497828352","651525692845260801","22406953","2015-10-06 23:37:42 +0000","Tweetbot for iΟS","@mahyarm It’s an exciting segment! One day I’ll pick up a Moto G or one of these Lumias and give it a try for a month.","","","","" -"651480984307826688","","","2015-10-06 19:35:45 +0000","Tweetbot for Mac","For little more than the price of AppleCare+ for your iPhone you can buy a Lumia 550. http://t.co/rmiCoxsQqo","","","","http://www.anandtech.com/show/9695/microsoft-launches-three-new-lumia-phones" -"651445078087614464","651444891688394752","43915380","2015-10-06 17:13:04 +0000","Tweetbot for Mac","@NachoSoto @jckarter It a bug is fixed without mention in the release notes, did it ever really exist? 😮","","","","" -"651443043338440704","651442982269358080","71861246","2015-10-06 17:04:59 +0000","Tweetbot for Mac","@IsTheStoreDown Calm down there! One is enough.","","","","" -"651440492954132480","","","2015-10-06 16:54:51 +0000","Tweetbot for Mac","RT @adamcrouch: @toddthomas Mine was already on natural. I turned it off and back on again and now the swipe gestures are back to normal.","651438110308454400","154775641","2015-10-06 16:45:23 +0000","" -"651438294912344064","","","2015-10-06 16:46:07 +0000","Tweetbot for Mac","RT @ecetweets: PSA don't click on #nips at work","651438236783542274","22961921","2015-10-06 16:45:53 +0000","" -"651438151836246016","","","2015-10-06 16:45:33 +0000","Tweetbot for Mac","RT @kristianvatto: Great to see MS going with PCIe 3.0 SSDs in Surface Book and Pro 4 - hopefully NVMe too. Up to 1TB suggests a custom par…","651437137850724354","206773707","2015-10-06 16:41:31 +0000","" -"651436524588937216","","","2015-10-06 16:39:05 +0000","Tweetbot for Mac","RT @grigs_talks: Today, MS announced support for srcset in the upcoming Edge browser. http://t.co/601tvQCiT4 #aeaaus","651434741594324992","199981342","2015-10-06 16:32:00 +0000","http://bit.ly/1FM9Mr2,http://bit.ly/1FM9Mr2" -"651422896171163648","","","2015-10-06 15:44:55 +0000","Tweetbot for Mac","“The hub is you.” +"651480984307826688","","","2015-10-06 19:35:45 +0000","Tweetbot for Mac","For little more than the price of AppleCare+ for your iPhone you can buy a Lumia 550. http://t.co/rmiCoxsQqo","","","","http://www.anandtech.com/show/9695/microsoft-launches-three-new-lumia-phones" +"651445078087614464","651444891688394752","43915380","2015-10-06 17:13:04 +0000","Tweetbot for Mac","@NachoSoto @jckarter It a bug is fixed without mention in the release notes, did it ever really exist? 😮","","","","" +"651443043338440704","651442982269358080","71861246","2015-10-06 17:04:59 +0000","Tweetbot for Mac","@IsTheStoreDown Calm down there! One is enough.","","","","" +"651440492954132480","","","2015-10-06 16:54:51 +0000","Tweetbot for Mac","RT @adamcrouch: @toddthomas Mine was already on natural. I turned it off and back on again and now the swipe gestures are back to normal.","651438110308454400","154775641","2015-10-06 16:45:23 +0000","" +"651438294912344064","","","2015-10-06 16:46:07 +0000","Tweetbot for Mac","RT @ecetweets: PSA don't click on #nips at work","651438236783542274","22961921","2015-10-06 16:45:53 +0000","" +"651438151836246016","","","2015-10-06 16:45:33 +0000","Tweetbot for Mac","RT @kristianvatto: Great to see MS going with PCIe 3.0 SSDs in Surface Book and Pro 4 - hopefully NVMe too. Up to 1TB suggests a custom par…","651437137850724354","206773707","2015-10-06 16:41:31 +0000","" +"651436524588937216","","","2015-10-06 16:39:05 +0000","Tweetbot for Mac","RT @grigs_talks: Today, MS announced support for srcset in the upcoming Edge browser. http://t.co/601tvQCiT4 #aeaaus","651434741594324992","199981342","2015-10-06 16:32:00 +0000","http://bit.ly/1FM9Mr2,http://bit.ly/1FM9Mr2" +"651422896171163648","","","2015-10-06 15:44:55 +0000","Tweetbot for Mac","“The hub is you.” “Welcome to the social.”","","","","" -"651405705539375104","651405264013381632","15536325","2015-10-06 14:36:37 +0000","Tweetbot for Mac","@petepachal Awwwwkward","","","","" +"651405705539375104","651405264013381632","15536325","2015-10-06 14:36:37 +0000","Tweetbot for Mac","@petepachal Awwwwkward","","","","" "651385443947290624","","","2015-10-06 13:16:06 +0000","Tweetbot for iΟS","RT @kfury: ""Prof. Mandelbrot? It's Dr. Schrödinger. I seem to have a problem."" http://t.co/DzfNMixYrF","531873740200484864","785","2014-11-10 18:19:16 +0000","https://twitter.com/enniscath/status/531319255846125568/photo/1,https://twitter.com/enniscath/status/531319255846125568/photo/1" "651358636715995136","","","2015-10-06 11:29:35 +0000","Tweetbot for iΟS","It’s way too easy to catch up on all the night tweets on the east coast. Pacific friends have barely shut their eyes.","","","","" "651358327163760640","651185184356732929","11677062","2015-10-06 11:28:21 +0000","Tweetbot for iΟS","@noir You’re being critical in a very helpful way. If you must think about it as negativity then don’t forget the positive outcome.","","","","" "651356367782027264","651262274330472448","9670142","2015-10-06 11:20:34 +0000","Tweetbot for iΟS","@ohheygreat http://t.co/jOHSpV7b8o","","","","http://m.imdb.com/title/tt0137523/quotes?qt=qt0479168" "651247507062849536","","","2015-10-06 04:07:59 +0000","Tweetbot for iΟS","RT @BenedictEvans: Today in reasons to unsubscribe from my newsletter. http://t.co/m9QPImRx3G","651225064336003076","1236101","2015-10-06 02:38:49 +0000","https://twitter.com/BenedictEvans/status/651225064336003076/photo/1,https://twitter.com/BenedictEvans/status/651225064336003076/photo/1" "651081239806504960","651078860633604097","108814849","2015-10-05 17:07:18 +0000","Tweetbot for iΟS",".@snarfmason I’m glaring at you tapatalk","","","","" -"651066671776591873","","","2015-10-05 16:09:25 +0000","Tweetbot for Mac","RT @patrickc: So, uh -- anyone have any good ideas for a second company?","651045785623068672","4939401","2015-10-05 14:46:25 +0000","" -"651065017375289344","651057285750325248","6152112","2015-10-05 16:02:51 +0000","Tweetbot for Mac","@agiletortoise It’s amazing/depressing how emotional some people can be. They’re acting like you ran over their dog or something.","","","","" -"651063047763697664","","","2015-10-05 15:55:01 +0000","Tweetbot for Mac","RT @drbarnard: Apple making “Share with Developers” the default choice in iOS 9 (https://t.co/ezwKgQZkhY) has increased opt-in rate http://…","651062732679086081","7826502","2015-10-05 15:53:46 +0000","https://twitter.com/drbarnard/status/647478688141828096,https://twitter.com/drbarnard/status/647478688141828096,https://twitter.com/drbarnard/status/651062732679086081/photo/1" -"651033217814896640","651027718075629568","14136484","2015-10-05 13:56:29 +0000","Tweetbot for Mac","@acorscadden In that case you slept in, slacker! 😝","","","","" -"651033177474121728","","","2015-10-05 13:56:19 +0000","Tweetbot for Mac","Current status: making songs from individual artists and albums available offline. http://t.co/KgRWrRZHyZ","","","","http://www.kungfugrippe.com/post/20021002957/like-an-animal" +"651066671776591873","","","2015-10-05 16:09:25 +0000","Tweetbot for Mac","RT @patrickc: So, uh -- anyone have any good ideas for a second company?","651045785623068672","4939401","2015-10-05 14:46:25 +0000","" +"651065017375289344","651057285750325248","6152112","2015-10-05 16:02:51 +0000","Tweetbot for Mac","@agiletortoise It’s amazing/depressing how emotional some people can be. They’re acting like you ran over their dog or something.","","","","" +"651063047763697664","","","2015-10-05 15:55:01 +0000","Tweetbot for Mac","RT @drbarnard: Apple making “Share with Developers” the default choice in iOS 9 (https://t.co/ezwKgQZkhY) has increased opt-in rate http://…","651062732679086081","7826502","2015-10-05 15:53:46 +0000","https://twitter.com/drbarnard/status/647478688141828096,https://twitter.com/drbarnard/status/647478688141828096,https://twitter.com/drbarnard/status/651062732679086081/photo/1" +"651033217814896640","651027718075629568","14136484","2015-10-05 13:56:29 +0000","Tweetbot for Mac","@acorscadden In that case you slept in, slacker! 😝","","","","" +"651033177474121728","","","2015-10-05 13:56:19 +0000","Tweetbot for Mac","Current status: making songs from individual artists and albums available offline. http://t.co/KgRWrRZHyZ","","","","http://www.kungfugrippe.com/post/20021002957/like-an-animal" "651015922220666880","","","2015-10-05 12:47:45 +0000","Tweetbot for iΟS","RT @MarkAgee: I like to think these bears were supposed to meet for lunch but one got the wrong park http://t.co/OV7GCloNBv","648235967434719232","70775995","2015-09-27 20:41:12 +0000","https://twitter.com/MarkAgee/status/648235967434719232/photo/1,https://twitter.com/MarkAgee/status/648235967434719232/photo/1,https://twitter.com/MarkAgee/status/648235967434719232/photo/1,https://twitter.com/MarkAgee/status/648235967434719232/photo/1" -"651008558839001088","","","2015-10-05 12:18:30 +0000","Tweetbot for Mac","The only contract on the web is that bits are served to clients. How clients display them is up to them. I can rot13 everything if I want to","","","","" +"651008558839001088","","","2015-10-05 12:18:30 +0000","Tweetbot for Mac","The only contract on the web is that bits are served to clients. How clients display them is up to them. I can rot13 everything if I want to","","","","" "651007416662933504","","","2015-10-05 12:13:57 +0000","Twitter Web Client","Welcome back Jacky boy, don't fuck it up! 😄 https://t.co/rFReqoThA4","","","","https://twitter.com/jack/status/651003315212300289" -"651006288239980544","","","2015-10-05 12:09:28 +0000","Tweetbot for Mac","Apparently I’m cranky this morning. Here’s a gif of a cat. http://t.co/OvO4BXvlBU","","","","https://twitter.com/_sjs/status/651006288239980544/photo/1" -"651005754216833025","","","2015-10-05 12:07:21 +0000","Tweetbot for Mac","Date your articles people. Especially when they use relative terms like “tomorrow”. You think it’s evergreen but it’s actually nonsense.","","","","" +"651006288239980544","","","2015-10-05 12:09:28 +0000","Tweetbot for Mac","Apparently I’m cranky this morning. Here’s a gif of a cat. http://t.co/OvO4BXvlBU","","","","https://twitter.com/_sjs/status/651006288239980544/photo/1" +"651005754216833025","","","2015-10-05 12:07:21 +0000","Tweetbot for Mac","Date your articles people. Especially when they use relative terms like “tomorrow”. You think it’s evergreen but it’s actually nonsense.","","","","" "651001901790707713","","","2015-10-05 11:52:03 +0000","Tweetbot for iΟS","Best part of this music problem: leave it downloading overnight and by morning phone is unresponsive. Have to reboot by holding home+power.","","","","" "651001647083163648","","","2015-10-05 11:51:02 +0000","Tweetbot for iΟS","RT @asymco: Amazon responded quickly to the threat of Uber. Suggests attacks on logistics are attacks to its core.","651000674780606464","110520327","2015-10-05 11:47:10 +0000","" "650997344008302592","","","2015-10-05 11:33:56 +0000","Tweetbot for iΟS","Why did I get the biggest iPhone? Making me reconsider since I can’t even load it up with stuff. Pretty much a waste of money at this point.","","","","" @@ -1482,102 +1586,102 @@ RIP the dreams.","653973532012081152","14103557","2015-10-13 16:40:14 +0000","" "650357435555778560","","","2015-10-03 17:11:10 +0000","Tweetbot for iΟS","RT @BenedictEvans: I used to use the official Twitter client so I could see the new features they launched. Except they never did.","650335150446743553","1236101","2015-10-03 15:42:37 +0000","" "650333302101004288","","","2015-10-03 15:35:16 +0000","Tweetbot for iΟS","RT @rob_rix: “Never let the perfect be the enemy of the good.”","650315865209049088","14056827","2015-10-03 14:25:59 +0000","" "650290990184534016","","","2015-10-03 12:47:08 +0000","Tweetbot for iΟS","RT @BenedictEvans: Nihilistic Password Security Questions. http://t.co/pKYmpCeFbk","650206868057395201","1236101","2015-10-03 07:12:52 +0000","http://www.mcsweeneys.net/articles/nihilistic-password-security-questions,http://www.mcsweeneys.net/articles/nihilistic-password-security-questions" -"650279970208645120","","","2015-10-03 12:03:21 +0000","Tweetbot for Mac","NYC friends what’s happening this week? Braving the hurricane til Friday with @JimRoepcke & @merowing_, visiting the mothership @MashableHQ.","","","","" -"650278462939373568","650241685209804800","22406953","2015-10-03 11:57:21 +0000","Tweetbot for Mac","@mahyarm Are you in NYC? If so lets get a coffee or something.","","","","" -"650277762708733952","","","2015-10-03 11:54:34 +0000","Tweetbot for Mac","RT @ScottWesterfeld: Plot idea: 97% of the world's scientists contrive an environmental crisis, but are exposed by a plucky band of billion…","446805144781348865","43822174","2014-03-21 00:27:02 +0000","" -"650115450572013569","","","2015-10-03 01:09:36 +0000","Tweetbot for Mac","I wonder if Helvetica Neue will look old to me 2 years from now. I’m already pretty used to San Francisco.","","","","" -"650114848123174912","","","2015-10-03 01:07:12 +0000","Tweetbot for Mac","Lucida Grande already looks old school just 2 years after OS X went to Helvetica Neue. It’s got a retro vibe to it now.","","","","" -"650077146413707264","650076170000556032","60145233","2015-10-02 22:37:24 +0000","Tweetbot for Mac","@cheesemaker @isaiah It sure does sound like the type of activity to drive one to drink. Could end up wilder than expected.","","","","" +"650279970208645120","","","2015-10-03 12:03:21 +0000","Tweetbot for Mac","NYC friends what’s happening this week? Braving the hurricane til Friday with @JimRoepcke & @merowing_, visiting the mothership @MashableHQ.","","","","" +"650278462939373568","650241685209804800","22406953","2015-10-03 11:57:21 +0000","Tweetbot for Mac","@mahyarm Are you in NYC? If so lets get a coffee or something.","","","","" +"650277762708733952","","","2015-10-03 11:54:34 +0000","Tweetbot for Mac","RT @ScottWesterfeld: Plot idea: 97% of the world's scientists contrive an environmental crisis, but are exposed by a plucky band of billion…","446805144781348865","43822174","2014-03-21 00:27:02 +0000","" +"650115450572013569","","","2015-10-03 01:09:36 +0000","Tweetbot for Mac","I wonder if Helvetica Neue will look old to me 2 years from now. I’m already pretty used to San Francisco.","","","","" +"650114848123174912","","","2015-10-03 01:07:12 +0000","Tweetbot for Mac","Lucida Grande already looks old school just 2 years after OS X went to Helvetica Neue. It’s got a retro vibe to it now.","","","","" +"650077146413707264","650076170000556032","60145233","2015-10-02 22:37:24 +0000","Tweetbot for Mac","@cheesemaker @isaiah It sure does sound like the type of activity to drive one to drink. Could end up wilder than expected.","","","","" "650073746812870656","","","2015-10-02 22:23:53 +0000","Tweetbot for iΟS","RT @MarsCuriosity: Greetings from Mars! Here's what's up in the foothills of Mount Sharp http://t.co/yHfjPvN1S0 #JourneyToMars http://t.co/…","650051782236770304","15473958","2015-10-02 20:56:36 +0000","http://go.nasa.gov/1jE7mHB,http://go.nasa.gov/1jE7mHB,https://twitter.com/MarsCuriosity/status/650051782236770304/photo/1" -"650072079803531264","","","2015-10-02 22:17:16 +0000","Tweetbot for Mac","I’ve been working through this exercise with @merowing_ and this is a very enlightening post on protocols in Swift. https://t.co/rLLZBr45MR","","","","https://twitter.com/owensd/status/650068645868011520" -"649954208779763712","","","2015-10-02 14:28:53 +0000","Tweetbot for Mac","Swift’s `guard…else` statement seems like a double negative to me. When not using `guard let` it seems clearer to use an `if` statement.","","","","" -"649927068340363264","","","2015-10-02 12:41:02 +0000","Twitterrific","People can hit the home button to verify that these are real but I don’t think but not everyone figures that out. http://t.co/Lx0HDq5G8g","","","","https://twitter.com/flyosity/status/649914510749368320" -"649926770871943168","649914510749368320","10545","2015-10-02 12:39:51 +0000","Twitterrific","@flyosity @olebegemann Apple never teaches people that they can hit the home button as a safety measure to confirm it’s real.","","","","" +"650072079803531264","","","2015-10-02 22:17:16 +0000","Tweetbot for Mac","I’ve been working through this exercise with @merowing_ and this is a very enlightening post on protocols in Swift. https://t.co/rLLZBr45MR","","","","https://twitter.com/owensd/status/650068645868011520" +"649954208779763712","","","2015-10-02 14:28:53 +0000","Tweetbot for Mac","Swift’s `guard…else` statement seems like a double negative to me. When not using `guard let` it seems clearer to use an `if` statement.","","","","" +"649927068340363264","","","2015-10-02 12:41:02 +0000","Twitterrific for iOS","People can hit the home button to verify that these are real but I don’t think but not everyone figures that out. http://t.co/Lx0HDq5G8g","","","","https://twitter.com/flyosity/status/649914510749368320" +"649926770871943168","649914510749368320","10545","2015-10-02 12:39:51 +0000","Twitterrific for iOS","@flyosity @olebegemann Apple never teaches people that they can hit the home button as a safety measure to confirm it’s real.","","","","" "649801161902526464","649760437257416705","22","2015-10-02 04:20:44 +0000","Tweetbot for iΟS","@rabble Sadly that’s a very likely outcome. I don’t think a few people collaborating to vote anything-but-blue is going to work.","","","","" -"649754866991038464","649736325847904256","22","2015-10-02 01:16:46 +0000","Twitterrific","@rabble @pmharper Agreed. I hope efforts like votetogether.ca can make a difference so we can get rid of him. He’s a menace.","","","","" -"649721531535331328","649714684682207232","22","2015-10-01 23:04:19 +0000","Twitterrific","@rabble You re-elected Bush. Nobody’s perfect 😔","","","","" -"649720934203572224","649720247792984064","317150782","2015-10-01 23:01:56 +0000","Twitterrific","@IanCutress @kristianvatto I tried a 6+ for six months and went back to the 6 (now 6s). Battery/display/camera are nice but it’s too big.","","","","" -"649591610716651520","649470818108334081","14305022","2015-10-01 14:28:03 +0000","Tweetbot for Mac",".@edog1203 Not just you. I might change sensitivity back to medium but for now I’m mis-tapping as well.","","","","" -"649313969849671681","649309068838866945","108814849","2015-09-30 20:04:48 +0000","Tweetbot for Mac","@snarfmason For archives with lots of files it’s probably a lot slower, but that’s my best guess why everyone uses -v all the time.","","","","" -"649308877289353216","649307392396492800","108814849","2015-09-30 19:44:34 +0000","Twitterrific","@snarfmason It’s reassuring to see something happening. I think that’s it really.","","","","" -"649291084569444352","","","2015-09-30 18:33:52 +0000","Twitterrific","Don’t update your Windows boxes. http://t.co/LdQUmskGEu","","","","https://twitter.com/arstechnica/status/649290123339767808" -"649246036163174400","","","2015-09-30 15:34:52 +0000","Tweetbot for Mac","RT @arstechnica: Drop-dead simple exploit completely bypasses Mac’s malware Gatekeeper http://t.co/UrJZ2SNjyG by @dangoodin001","649208583717056512","717313","2015-09-30 13:06:02 +0000","http://arstechnica.com/security/2015/09/drop-dead-simple-exploit-completely-bypasses-macs-malware-gatekeeper/,http://arstechnica.com/security/2015/09/drop-dead-simple-exploit-completely-bypasses-macs-malware-gatekeeper/" -"649243092453851136","649237748038025216","14761655","2015-09-30 15:23:10 +0000","Tweetbot for Mac","@tenderlove @amyhoy @thomasfuchs It’s pretty good for planning vacations. You can map all your pins and collaborate with others.","","","","" -"649242099267817472","649238797364793345","14180235","2015-09-30 15:19:13 +0000","Tweetbot for Mac","@daveeed New York. I’ll be back next week and am up for a coffee!","","","","" -"649223111297093632","649220363411263490","16468446","2015-09-30 14:03:46 +0000","Tweetbot for Mac","@ryanflorence In history? Sure. But not since the 90s! (for me)","","","","" -"649222466229936129","","","2015-09-30 14:01:12 +0000","Tweetbot for Mac","RT @drewm: With every what now? +"649754866991038464","649736325847904256","22","2015-10-02 01:16:46 +0000","Twitterrific for iOS","@rabble @pmharper Agreed. I hope efforts like votetogether.ca can make a difference so we can get rid of him. He’s a menace.","","","","" +"649721531535331328","649714684682207232","22","2015-10-01 23:04:19 +0000","Twitterrific for iOS","@rabble You re-elected Bush. Nobody’s perfect 😔","","","","" +"649720934203572224","649720247792984064","317150782","2015-10-01 23:01:56 +0000","Twitterrific for iOS","@IanCutress @kristianvatto I tried a 6+ for six months and went back to the 6 (now 6s). Battery/display/camera are nice but it’s too big.","","","","" +"649591610716651520","649470818108334081","14305022","2015-10-01 14:28:03 +0000","Tweetbot for Mac",".@edog1203 Not just you. I might change sensitivity back to medium but for now I’m mis-tapping as well.","","","","" +"649313969849671681","649309068838866945","108814849","2015-09-30 20:04:48 +0000","Tweetbot for Mac","@snarfmason For archives with lots of files it’s probably a lot slower, but that’s my best guess why everyone uses -v all the time.","","","","" +"649308877289353216","649307392396492800","108814849","2015-09-30 19:44:34 +0000","Twitterrific for iOS","@snarfmason It’s reassuring to see something happening. I think that’s it really.","","","","" +"649291084569444352","","","2015-09-30 18:33:52 +0000","Twitterrific for iOS","Don’t update your Windows boxes. http://t.co/LdQUmskGEu","","","","https://twitter.com/arstechnica/status/649290123339767808" +"649246036163174400","","","2015-09-30 15:34:52 +0000","Tweetbot for Mac","RT @arstechnica: Drop-dead simple exploit completely bypasses Mac’s malware Gatekeeper http://t.co/UrJZ2SNjyG by @dangoodin001","649208583717056512","717313","2015-09-30 13:06:02 +0000","http://arstechnica.com/security/2015/09/drop-dead-simple-exploit-completely-bypasses-macs-malware-gatekeeper/,http://arstechnica.com/security/2015/09/drop-dead-simple-exploit-completely-bypasses-macs-malware-gatekeeper/" +"649243092453851136","649237748038025216","14761655","2015-09-30 15:23:10 +0000","Tweetbot for Mac","@tenderlove @amyhoy @thomasfuchs It’s pretty good for planning vacations. You can map all your pins and collaborate with others.","","","","" +"649242099267817472","649238797364793345","14180235","2015-09-30 15:19:13 +0000","Tweetbot for Mac","@daveeed New York. I’ll be back next week and am up for a coffee!","","","","" +"649223111297093632","649220363411263490","16468446","2015-09-30 14:03:46 +0000","Tweetbot for Mac","@ryanflorence In history? Sure. But not since the 90s! (for me)","","","","" +"649222466229936129","","","2015-09-30 14:01:12 +0000","Tweetbot for Mac","RT @drewm: With every what now? Oh. #keming http://t.co/ch15uNSu3Z","649195808403931136","12158","2015-09-30 12:15:16 +0000","https://twitter.com/drewm/status/649195808403931136/photo/1,https://twitter.com/drewm/status/649195808403931136/photo/1" -"649181087202181120","","","2015-09-30 11:16:47 +0000","Twitterrific","Growlers of cold brew coffee at Stumptown. Genius. http://t.co/sBApYqi0Pj","","","","https://twitter.com/_sjs/status/649181087202181120/photo/1" -"649179510785581056","649077567215939586","14581738","2015-09-30 11:10:31 +0000","Twitterrific","@tolmasky Nothing major, no.","","","","" -"649072675835518977","649070881705037824","14581738","2015-09-30 04:05:59 +0000","Twitterrific","@tolmasky I don’t think there’s a good reason to. I did out of curiosity and it’s fine, so if you want to for some reason I say go for it.","","","","" -"648933785426358272","","","2015-09-29 18:54:05 +0000","Twitterrific","free copy of iMazing for the first one to claim it: https://t.co/x8BcC2xOhq","","","","https://imazing.com/your-free-imazing-license?giver_email=sami@samhuri.net" -"648825154366230528","","","2015-09-29 11:42:26 +0000","Twitterrific","RT @mraleph: in todays morning news: Go is the fastest language to sum numbers from 1 to 1e7 even faster than Carl Gauss himself http://t.c…","648782521489072128","53010195","2015-09-29 08:53:01 +0000","https://twitter.com/mraleph/status/648782521489072128/photo/1" -"648823890752446464","648798555776249856","14200945","2015-09-29 11:37:24 +0000","Twitterrific","@mdhughes Oh they must have fixed it since I switched back to Instapaper.","","","","" -"648710093224181760","648661183277371392","14200945","2015-09-29 04:05:13 +0000","Twitterrific","@mdhughes Bookmarks/reading list is a joke. It’s a huge plist that syncs on each change. Had to clear out old reading list entries manually.","","","","" -"648645591447289856","648644392153014272","385193","2015-09-28 23:48:54 +0000","Twitterrific","@jim_rutherford @joeldev unix timestamp","","","","" -"648467463450066944","","","2015-09-28 12:01:05 +0000","Twitterrific","RT @peterc: Someone hooked up a bot to a 1TB corpus of Reddit comments to ""ask"" it questions. So I have. https://t.co/w34tGa2ivc http://t.c…","648467388661407744","33493","2015-09-28 12:00:48 +0000","https://kiwiirc.com/client/irc.snoonet.org/mybots,https://kiwiirc.com/client/irc.snoonet.org/mybots,https://twitter.com/peterc/status/648467388661407744/photo/1" -"648311859376955392","","","2015-09-28 01:42:46 +0000","Twitterrific","RT @jaredsinclair: JTSSloppySwiping - Drop-in navigation controller delegate that adds sloppy-swiping for dismissals. https://t.co/bD1uHAyM…","627636964985016320","15004156","2015-08-02 00:28:08 +0000","https://github.com/jaredsinclair/JTSSloppySwiping" -"648215111962914817","648202706742415360","50055757","2015-09-27 19:18:20 +0000","Tweetbot for Mac","@KrauseFx @1Password This post may shed some light for you: https://t.co/IgfelUNhSv","","","","https://blog.agilebits.com/2015/04/28/how-1password-syncs-changes-to-your-master-password/" -"648195580561330176","648194178392920065","18553922","2015-09-27 18:00:43 +0000","Twitterrific","@zwaldowski @NachoSoto @NeoNacho They could automate updating the status of dupes to match the original. Without leaking info.","","","","" -"648181674052874240","648172983677095936","894911","2015-09-27 17:05:28 +0000","Twitterrific","@JimRoepcke What time do you arrive?","","","","" -"648180582262947840","","","2015-09-27 17:01:08 +0000","Twitterrific","Sometimes I don’t want to be a creature of habit but brunch at the Breslin is too good to pass up.","","","","" -"647993359370424320","647992755856105472","894911","2015-09-27 04:37:10 +0000","Twitterrific","@JimRoepcke Lost my move data walking to the upper west side store.","","","","" -"647993239321055233","647992755856105472","894911","2015-09-27 04:36:42 +0000","Twitterrific","@JimRoepcke Apple’s docs said that unpairing my watch would back it up, but an iTunes restore to new phone had old watch data afterwards.","","","","" -"647947016849502210","","","2015-09-27 01:33:01 +0000","Twitterrific","Just me or is it harder to 3D Touch the corners of the display?","","","","" -"647850456090288132","","","2015-09-26 19:09:19 +0000","Tweetbot for Mac","RT @jfpoole: Geekbench 3 built with Xcode 5 (left) and Xcode 7 (right) on the iPhone 6s: http://t.co/ArvQr4HXrf +"649181087202181120","","","2015-09-30 11:16:47 +0000","Twitterrific for iOS","Growlers of cold brew coffee at Stumptown. Genius. http://t.co/sBApYqi0Pj","","","","https://twitter.com/_sjs/status/649181087202181120/photo/1" +"649179510785581056","649077567215939586","14581738","2015-09-30 11:10:31 +0000","Twitterrific for iOS","@tolmasky Nothing major, no.","","","","" +"649072675835518977","649070881705037824","14581738","2015-09-30 04:05:59 +0000","Twitterrific for iOS","@tolmasky I don’t think there’s a good reason to. I did out of curiosity and it’s fine, so if you want to for some reason I say go for it.","","","","" +"648933785426358272","","","2015-09-29 18:54:05 +0000","Twitterrific for iOS","free copy of iMazing for the first one to claim it: https://t.co/x8BcC2xOhq","","","","https://imazing.com/your-free-imazing-license?giver_email=sami@samhuri.net" +"648825154366230528","","","2015-09-29 11:42:26 +0000","Twitterrific for iOS","RT @mraleph: in todays morning news: Go is the fastest language to sum numbers from 1 to 1e7 even faster than Carl Gauss himself http://t.c…","648782521489072128","53010195","2015-09-29 08:53:01 +0000","https://twitter.com/mraleph/status/648782521489072128/photo/1" +"648823890752446464","648798555776249856","14200945","2015-09-29 11:37:24 +0000","Twitterrific for iOS","@mdhughes Oh they must have fixed it since I switched back to Instapaper.","","","","" +"648710093224181760","648661183277371392","14200945","2015-09-29 04:05:13 +0000","Twitterrific for iOS","@mdhughes Bookmarks/reading list is a joke. It’s a huge plist that syncs on each change. Had to clear out old reading list entries manually.","","","","" +"648645591447289856","648644392153014272","385193","2015-09-28 23:48:54 +0000","Twitterrific for iOS","@jim_rutherford @joeldev unix timestamp","","","","" +"648467463450066944","","","2015-09-28 12:01:05 +0000","Twitterrific for iOS","RT @peterc: Someone hooked up a bot to a 1TB corpus of Reddit comments to ""ask"" it questions. So I have. https://t.co/w34tGa2ivc http://t.c…","648467388661407744","33493","2015-09-28 12:00:48 +0000","https://kiwiirc.com/client/irc.snoonet.org/mybots,https://kiwiirc.com/client/irc.snoonet.org/mybots,https://twitter.com/peterc/status/648467388661407744/photo/1" +"648311859376955392","","","2015-09-28 01:42:46 +0000","Twitterrific for iOS","RT @jaredsinclair: JTSSloppySwiping - Drop-in navigation controller delegate that adds sloppy-swiping for dismissals. https://t.co/bD1uHAyM…","627636964985016320","15004156","2015-08-02 00:28:08 +0000","https://github.com/jaredsinclair/JTSSloppySwiping" +"648215111962914817","648202706742415360","50055757","2015-09-27 19:18:20 +0000","Tweetbot for Mac","@KrauseFx @1Password This post may shed some light for you: https://t.co/IgfelUNhSv","","","","https://blog.agilebits.com/2015/04/28/how-1password-syncs-changes-to-your-master-password/" +"648195580561330176","648194178392920065","18553922","2015-09-27 18:00:43 +0000","Twitterrific for iOS","@zwaldowski @NachoSoto @NeoNacho They could automate updating the status of dupes to match the original. Without leaking info.","","","","" +"648181674052874240","648172983677095936","894911","2015-09-27 17:05:28 +0000","Twitterrific for iOS","@JimRoepcke What time do you arrive?","","","","" +"648180582262947840","","","2015-09-27 17:01:08 +0000","Twitterrific for iOS","Sometimes I don’t want to be a creature of habit but brunch at the Breslin is too good to pass up.","","","","" +"647993359370424320","647992755856105472","894911","2015-09-27 04:37:10 +0000","Twitterrific for iOS","@JimRoepcke Lost my move data walking to the upper west side store.","","","","" +"647993239321055233","647992755856105472","894911","2015-09-27 04:36:42 +0000","Twitterrific for iOS","@JimRoepcke Apple’s docs said that unpairing my watch would back it up, but an iTunes restore to new phone had old watch data afterwards.","","","","" +"647947016849502210","","","2015-09-27 01:33:01 +0000","Twitterrific for iOS","Just me or is it harder to 3D Touch the corners of the display?","","","","" +"647850456090288132","","","2015-09-26 19:09:19 +0000","Tweetbot for Mac","RT @jfpoole: Geekbench 3 built with Xcode 5 (left) and Xcode 7 (right) on the iPhone 6s: http://t.co/ArvQr4HXrf 8% increase in performance…","647653497350037504","637773","2015-09-26 06:06:41 +0000","http://browser.primatelabs.com/geekbench3/compare/3571781?baseline=3572808,http://browser.primatelabs.com/geekbench3/compare/3571781?baseline=3572808" -"647835703095767046","","","2015-09-26 18:10:42 +0000","Twitterrific","RT @bzamayo: The master plan +"647835703095767046","","","2015-09-26 18:10:42 +0000","Twitterrific for iOS","RT @bzamayo: The master plan Apple made it impossible to read the time on new iPhone (super-fast Touch ID) and released its own watch in t…","647801015790632960","167398227","2015-09-26 15:52:52 +0000","" -"647835167080456192","647822626820263936","14680556","2015-09-26 18:08:34 +0000","Twitterrific","@kyleve At least it wasn’t an iPad pro","","","","" -"647834883637817344","","","2015-09-26 18:07:27 +0000","Twitterrific","RT @gak_pdx: Hard drive keyring is best keyring: http://t.co/xN9hl70JQB","647827156899262464","7603032","2015-09-26 17:36:44 +0000","https://twitter.com/gak_pdx/status/647827156899262464/photo/1,https://twitter.com/gak_pdx/status/647827156899262464/photo/1" -"647492247932407808","","","2015-09-25 19:25:56 +0000","Tweetbot for Mac","Cracked iPad 2 on eBay is selling for double the price of a mint Blackberry PlayBook.","","","","" +"647835167080456192","647822626820263936","14680556","2015-09-26 18:08:34 +0000","Twitterrific for iOS","@kyleve At least it wasn’t an iPad pro","","","","" +"647834883637817344","","","2015-09-26 18:07:27 +0000","Twitterrific for iOS","RT @gak_pdx: Hard drive keyring is best keyring: http://t.co/xN9hl70JQB","647827156899262464","7603032","2015-09-26 17:36:44 +0000","https://twitter.com/gak_pdx/status/647827156899262464/photo/1,https://twitter.com/gak_pdx/status/647827156899262464/photo/1" +"647492247932407808","","","2015-09-25 19:25:56 +0000","Tweetbot for Mac","Cracked iPad 2 on eBay is selling for double the price of a mint Blackberry PlayBook.","","","","" "647451016644853764","","","2015-09-25 16:42:06 +0000","iOS","These people have families, friends, and coworkers that have to deal with them every single day. http://t.co/erZrJXcRH9 via @mashable","","","","http://on.mash.to/1Msrw0O" -"647444478064627712","","","2015-09-25 16:16:07 +0000","Tweetbot for Mac","🎶 Please UPS man, look and see, +"647444478064627712","","","2015-09-25 16:16:07 +0000","Tweetbot for Mac","🎶 Please UPS man, look and see, If there’s an iPhone in your truck for me, Why’s it takin such a long time, To deliver that device of mine🎵","","","","" -"647412431895986182","647319592625418240","15267898","2015-09-25 14:08:46 +0000","Twitterrific","@stroughtonsmith The exchange rate makes them more expensive in Canada too. CAD$899-1159 up from $699-999 or so in the past.","","","","" -"647298866358784000","647298570886864896","7603032","2015-09-25 06:37:30 +0000","Twitterrific","@gak_pdx It started with the 10.11 beta for me.","","","","" -"647294065164193792","647290510957113344","7603032","2015-09-25 06:18:25 +0000","Twitterrific","@gak_pdx nope, this happens to me all the time too. Didn’t know that is was ghostery though.","","","","" -"647293356486193152","","","2015-09-25 06:15:36 +0000","Twitterrific","I’m definitely guilty of this. Need to let thoughts develop at least a little bit before expressing them. http://t.co/IRceodLyoN","","","","https://twitter.com/fraying/status/645022930632466433" -"647247375648423936","647155722543730688","784912","2015-09-25 03:12:54 +0000","Twitterrific","@jsnell When you peek at a web page and then pop it open does it reload the web page?","","","","" -"646840486506860544","","","2015-09-24 00:16:04 +0000","Tweetbot for Mac","Now that most websites are responsive you can crank up the font size to get the tablet/phone version without side columns. Pretty nice.","","","","" -"646836977845702656","","","2015-09-24 00:02:07 +0000","Tweetbot for Mac","RT @KrauseFx: Developers writing reviews for  SDK methods and why they like/dislike certain things http://t.co/OJubAtuNXJ http://t.co/6vvw…","646836059767050240","50055757","2015-09-23 23:58:28 +0000","http://www.sdkcritic.com/,http://www.sdkcritic.com/,https://twitter.com/KrauseFx/status/646836059767050240/photo/1" -"646771678190526464","","","2015-09-23 19:42:39 +0000","Twitterrific","RT @clattner_llvm: Xcode 7.1 beta 2 is out - with playground literals, quality fixes, and support for C bitfields & unions (oh my!) https…","646746048598290432","2543588034","2015-09-23 18:00:48 +0000","https://developer.apple.com/xcode/download/" -"646491403145449472","","","2015-09-23 01:08:56 +0000","Twitterrific","RT @acorscadden: Also, after spending 2 days in Swift all my objc code feels old.","646483756446973953","14136484","2015-09-23 00:38:33 +0000","" -"646491393687293953","","","2015-09-23 01:08:54 +0000","Twitterrific","RT @acorscadden: The TV is a pretty compelling device. I’m now thinking that it is a bigger opportunity for devs than the watch.","646483546941472768","14136484","2015-09-23 00:37:43 +0000","" -"646461343088840708","","","2015-09-22 23:09:29 +0000","Tweetbot for Mac","Way too excited about Apple’s Notes app copying checklists to the clipboard as GitHub flavoured Markdown. I might actually use this app.","","","","" -"646458129891241984","","","2015-09-22 22:56:43 +0000","Tweetbot for Mac","Drawing goatse on a watch is not easy.","","","","" -"646149311726645249","646149082256269313","894911","2015-09-22 02:29:35 +0000","Twitterrific","@JimRoepcke Megan says new-tella as well. Has the whole world gone crazy?! 😜","","","","" -"646148378791833600","646132924866170880","894911","2015-09-22 02:25:53 +0000","Twitterrific","@JimRoepcke ಠ_ಠ","","","","" -"646148322378412032","646128291863207936","972651","2015-09-22 02:25:39 +0000","Twitterrific",".@mashable It’s made of nuts. Nuh-tella, of course. I’m not an animal.","","","","" -"645793378936860672","","","2015-09-21 02:55:14 +0000","Twitterrific","RT @AnneHummert: .@BenedictEvans Here's a Philco ad for you http://t.co/kjzaRQpN46","645780225150877696","125085076","2015-09-21 02:02:58 +0000","https://twitter.com/AnneHummert/status/645780225150877696/photo/1,https://twitter.com/AnneHummert/status/645780225150877696/photo/1" -"645793366022598656","","","2015-09-21 02:55:11 +0000","Twitterrific","RT @BenedictEvans: WOW http://t.co/k9J41Fyhdq","645774710924382208","1236101","2015-09-21 01:41:03 +0000","https://twitter.com/BenedictEvans/status/645774710924382208/photo/1,https://twitter.com/BenedictEvans/status/645774710924382208/photo/1" -"645733970185842688","","","2015-09-20 22:59:10 +0000","Twitterrific","RT @tehawesome: anyone else getting weird emails from @linkedin? http://t.co/ce6guDDcfW","644614564659597313","15255175","2015-09-17 20:51:03 +0000","https://twitter.com/tehawesome/status/644614564659597313/photo/1,https://twitter.com/tehawesome/status/644614564659597313/photo/1" +"647412431895986182","647319592625418240","15267898","2015-09-25 14:08:46 +0000","Twitterrific for iOS","@stroughtonsmith The exchange rate makes them more expensive in Canada too. CAD$899-1159 up from $699-999 or so in the past.","","","","" +"647298866358784000","647298570886864896","7603032","2015-09-25 06:37:30 +0000","Twitterrific for iOS","@gak_pdx It started with the 10.11 beta for me.","","","","" +"647294065164193792","647290510957113344","7603032","2015-09-25 06:18:25 +0000","Twitterrific for iOS","@gak_pdx nope, this happens to me all the time too. Didn’t know that is was ghostery though.","","","","" +"647293356486193152","","","2015-09-25 06:15:36 +0000","Twitterrific for iOS","I’m definitely guilty of this. Need to let thoughts develop at least a little bit before expressing them. http://t.co/IRceodLyoN","","","","https://twitter.com/fraying/status/645022930632466433" +"647247375648423936","647155722543730688","784912","2015-09-25 03:12:54 +0000","Twitterrific for iOS","@jsnell When you peek at a web page and then pop it open does it reload the web page?","","","","" +"646840486506860544","","","2015-09-24 00:16:04 +0000","Tweetbot for Mac","Now that most websites are responsive you can crank up the font size to get the tablet/phone version without side columns. Pretty nice.","","","","" +"646836977845702656","","","2015-09-24 00:02:07 +0000","Tweetbot for Mac","RT @KrauseFx: Developers writing reviews for  SDK methods and why they like/dislike certain things http://t.co/OJubAtuNXJ http://t.co/6vvw…","646836059767050240","50055757","2015-09-23 23:58:28 +0000","http://www.sdkcritic.com/,http://www.sdkcritic.com/,https://twitter.com/KrauseFx/status/646836059767050240/photo/1" +"646771678190526464","","","2015-09-23 19:42:39 +0000","Twitterrific for iOS","RT @clattner_llvm: Xcode 7.1 beta 2 is out - with playground literals, quality fixes, and support for C bitfields & unions (oh my!) https…","646746048598290432","2543588034","2015-09-23 18:00:48 +0000","https://developer.apple.com/xcode/download/" +"646491403145449472","","","2015-09-23 01:08:56 +0000","Twitterrific for iOS","RT @acorscadden: Also, after spending 2 days in Swift all my objc code feels old.","646483756446973953","14136484","2015-09-23 00:38:33 +0000","" +"646491393687293953","","","2015-09-23 01:08:54 +0000","Twitterrific for iOS","RT @acorscadden: The TV is a pretty compelling device. I’m now thinking that it is a bigger opportunity for devs than the watch.","646483546941472768","14136484","2015-09-23 00:37:43 +0000","" +"646461343088840708","","","2015-09-22 23:09:29 +0000","Tweetbot for Mac","Way too excited about Apple’s Notes app copying checklists to the clipboard as GitHub flavoured Markdown. I might actually use this app.","","","","" +"646458129891241984","","","2015-09-22 22:56:43 +0000","Tweetbot for Mac","Drawing goatse on a watch is not easy.","","","","" +"646149311726645249","646149082256269313","894911","2015-09-22 02:29:35 +0000","Twitterrific for iOS","@JimRoepcke Megan says new-tella as well. Has the whole world gone crazy?! 😜","","","","" +"646148378791833600","646132924866170880","894911","2015-09-22 02:25:53 +0000","Twitterrific for iOS","@JimRoepcke ಠ_ಠ","","","","" +"646148322378412032","646128291863207936","972651","2015-09-22 02:25:39 +0000","Twitterrific for iOS",".@mashable It’s made of nuts. Nuh-tella, of course. I’m not an animal.","","","","" +"645793378936860672","","","2015-09-21 02:55:14 +0000","Twitterrific for iOS","RT @AnneHummert: .@BenedictEvans Here's a Philco ad for you http://t.co/kjzaRQpN46","645780225150877696","125085076","2015-09-21 02:02:58 +0000","https://twitter.com/AnneHummert/status/645780225150877696/photo/1,https://twitter.com/AnneHummert/status/645780225150877696/photo/1" +"645793366022598656","","","2015-09-21 02:55:11 +0000","Twitterrific for iOS","RT @BenedictEvans: WOW http://t.co/k9J41Fyhdq","645774710924382208","1236101","2015-09-21 01:41:03 +0000","https://twitter.com/BenedictEvans/status/645774710924382208/photo/1,https://twitter.com/BenedictEvans/status/645774710924382208/photo/1" +"645733970185842688","","","2015-09-20 22:59:10 +0000","Twitterrific for iOS","RT @tehawesome: anyone else getting weird emails from @linkedin? http://t.co/ce6guDDcfW","644614564659597313","15255175","2015-09-17 20:51:03 +0000","https://twitter.com/tehawesome/status/644614564659597313/photo/1,https://twitter.com/tehawesome/status/644614564659597313/photo/1" "645647443107840001","","","2015-09-20 17:15:20 +0000","iOS","I'm with @viticci, switching between uppercase and lowercase is objectively better. https://t.co/Is1kJBMYO1 http://t.co/oqETQPoELW","","","","https://www.macstories.net/stories/ios-9-review/,https://twitter.com/_sjs/status/645647443107840001/photo/1" -"645618994251042816","645616869123203072","14308739","2015-09-20 15:22:17 +0000","Twitterrific","@cheerskevin I didn’t save anything in my 20s because I’m an idiot. She has plenty of time to regret after learning about compound interest.","","","","" -"645617457021845505","","","2015-09-20 15:16:11 +0000","Twitterrific","RT @garrytan: You have the right to remain silent—Anything you say can be taken out of context and put on Twitter... http://t.co/qBMsEFiEZL","645434276029161473","11768582","2015-09-20 03:08:17 +0000","https://twitter.com/garrytan/status/645434276029161473/photo/1,https://twitter.com/garrytan/status/645434276029161473/photo/1" -"645286713372184576","","","2015-09-19 17:21:55 +0000","Twitterrific","And I had to reboot to get backups working in iOS 9. Wouldn’t work on a fresh restore.","","","","" -"645286308886134788","","","2015-09-19 17:20:19 +0000","Twitterrific","RT @drdrang: Backup success came after I signed out of my iCloud account on my phone and then signed back in again. Cause and effect? I hav…","645281623366234112","10697232","2015-09-19 17:01:42 +0000","" -"645286247066238976","","","2015-09-19 17:20:04 +0000","Twitterrific","RT @chockenberry: @drdrang Mine didn’t backup either because iOS 9 decided to turn on photo library and there wasn’t enough space.","645275722810961920","36183","2015-09-19 16:38:15 +0000","" +"645618994251042816","645616869123203072","14308739","2015-09-20 15:22:17 +0000","Twitterrific for iOS","@cheerskevin I didn’t save anything in my 20s because I’m an idiot. She has plenty of time to regret after learning about compound interest.","","","","" +"645617457021845505","","","2015-09-20 15:16:11 +0000","Twitterrific for iOS","RT @garrytan: You have the right to remain silent—Anything you say can be taken out of context and put on Twitter... http://t.co/qBMsEFiEZL","645434276029161473","11768582","2015-09-20 03:08:17 +0000","https://twitter.com/garrytan/status/645434276029161473/photo/1,https://twitter.com/garrytan/status/645434276029161473/photo/1" +"645286713372184576","","","2015-09-19 17:21:55 +0000","Twitterrific for iOS","And I had to reboot to get backups working in iOS 9. Wouldn’t work on a fresh restore.","","","","" +"645286308886134788","","","2015-09-19 17:20:19 +0000","Twitterrific for iOS","RT @drdrang: Backup success came after I signed out of my iCloud account on my phone and then signed back in again. Cause and effect? I hav…","645281623366234112","10697232","2015-09-19 17:01:42 +0000","" +"645286247066238976","","","2015-09-19 17:20:04 +0000","Twitterrific for iOS","RT @chockenberry: @drdrang Mine didn’t backup either because iOS 9 decided to turn on photo library and there wasn’t enough space.","645275722810961920","36183","2015-09-19 16:38:15 +0000","" "645284558313619456","","","2015-09-19 17:13:22 +0000","iOS","You can still find these in Europe. I remember seeing FEBO in Amsterdam. http://t.co/aNnvMq9aOt","","","","http://mashable.com/2015/09/19/automats/#NNqM4lQpEkkI" -"645280570214252544","645263352063614978","10697232","2015-09-19 16:57:31 +0000","Twitterrific","@drdrang I had to reboot to get backups working after installing the GM.","","","","" +"645280570214252544","645263352063614978","10697232","2015-09-19 16:57:31 +0000","Twitterrific for iOS","@drdrang I had to reboot to get backups working after installing the GM.","","","","" "644366817725583361","","","2015-09-17 04:26:35 +0000","Twitter Lite","Cloak brought auto-secure from the Mac to iOS with their latest update! One of my favorite features of @getcloak.","","","","" -"644356419060305920","644355477506146304","14136484","2015-09-17 03:45:16 +0000","Twitterrific","@acorscadden I naturally stumbled upon that from a search result. Only tried it that once. +"644356419060305920","644355477506146304","14136484","2015-09-17 03:45:16 +0000","Twitterrific for iOS","@acorscadden I naturally stumbled upon that from a search result. Only tried it that once. Hopefully 9.0.1 irons that stuff out before 9.1.","","","","" -"644354481761579008","644350647500869632","14136484","2015-09-17 03:37:34 +0000","Twitterrific","@acorscadden I think Pinterest does.","","","","" -"644350220982091776","644348015868686337","14136484","2015-09-17 03:20:38 +0000","Twitterrific","@acorscadden Hooray!","","","","" -"644344941066387456","644331145694326784","14136484","2015-09-17 02:59:39 +0000","Twitterrific","@acorscadden Crazy. Yeah something must be wrong.","","","","" -"644304976026570752","","","2015-09-17 00:20:51 +0000","Tweetbot for Mac","RT @marcedwards: iOS 9 home screen page indicator dot centring test: 👌🏽 +"644354481761579008","644350647500869632","14136484","2015-09-17 03:37:34 +0000","Twitterrific for iOS","@acorscadden I think Pinterest does.","","","","" +"644350220982091776","644348015868686337","14136484","2015-09-17 03:20:38 +0000","Twitterrific for iOS","@acorscadden Hooray!","","","","" +"644344941066387456","644331145694326784","14136484","2015-09-17 02:59:39 +0000","Twitterrific for iOS","@acorscadden Crazy. Yeah something must be wrong.","","","","" +"644304976026570752","","","2015-09-17 00:20:51 +0000","Tweetbot for Mac","RT @marcedwards: iOS 9 home screen page indicator dot centring test: 👌🏽 http://t.co/akCX2cOvDT","644300149469016064","18865450","2015-09-17 00:01:40 +0000","http://i.imgur.com/ht6ok00.png,http://i.imgur.com/ht6ok00.png" -"644273279457361920","","","2015-09-16 22:14:54 +0000","Tweetbot for Mac","RT @saniul: func foo() { +"644273279457361920","","","2015-09-16 22:14:54 +0000","Tweetbot for Mac","RT @saniul: func foo() {     var foo = 0 {         didSet {             println(foo) @@ -1586,282 +1690,279 @@ http://t.co/akCX2cOvDT","644300149469016064","18865450","2015-09-17 00:01:40 +00     foo = 3     foo = 6 }","644271911900352512","14259737","2015-09-16 22:09:28 +0000","" -"644271315390627840","","","2015-09-16 22:07:06 +0000","Tweetbot for Mac","Just found a shop on Apple Maps that isn’t on Google Maps. Pretty sure that’s one of the signs of the apocalypse.","","","","" -"644218068692963328","644217835821121538","15267898","2015-09-16 18:35:31 +0000","Tweetbot for Mac","@stroughtonsmith By far the nicest looking Android phone. They want something that looks good.","","","","" -"643201613604089856","","","2015-09-13 23:16:29 +0000","Twitterrific","RT @tjholowaychuk: Seen many a bad commit log, this is a pretty good post with nice suggestions http://t.co/6pkgkeVhU5","643187949987721220","29255412","2015-09-13 22:22:11 +0000","http://chris.beams.io/posts/git-commit/,http://chris.beams.io/posts/git-commit/" -"643127970903625728","643127825705340928","15263394","2015-09-13 18:23:51 +0000","Tweetbot for Mac","@dnanian Indeed it is! Thanks :)","","","","" -"643127037998161920","643125184594071552","15263394","2015-09-13 18:20:09 +0000","Tweetbot for Mac","@dnanian Download is not working here. http://t.co/xs0qA6uaYy","","","","https://twitter.com/_sjs/status/643127037998161920/photo/1" -"643126616072155136","","","2015-09-13 18:18:28 +0000","Tweetbot for Mac","Pleased to see that handoff works from Safari view controller to Mac.","","","","" -"643122452730515456","","","2015-09-13 18:01:56 +0000","Twitterrific","Paging @The_Fischbowl http://t.co/Asa0Pu8k1r","","","","https://twitter.com/marcedwards/status/642950228245483520" -"642599582484992000","","","2015-09-12 07:24:14 +0000","Tweetbot for Mac","Ordered a 6s in black and a 6s+ in rose gold.","","","","" -"642599393820958720","642599271401828352","108834413","2015-09-12 07:23:29 +0000","Tweetbot for Mac","@karissabe It’s all about the app","","","","" -"642598376580624384","642594928334209024","22196723","2015-09-12 07:19:26 +0000","Tweetbot for Mac","@markkolich It started working. The site still says to wait but I already ordered in the app. Now the waiting game :)","","","","" -"642572927292981248","","","2015-09-12 05:38:18 +0000","Twitterrific","82 minutes to get it together. This may not bode well for me. http://t.co/Ro9kEYhDAw","","","","https://twitter.com/_sjs/status/642572927292981248/photo/1" -"641980552766091264","","","2015-09-10 14:24:25 +0000","Twitterrific","RT @olebegemann: Developer APIs for displaying live photos are only available in iOS 9.1. http://t.co/0Yd1vwisom","641979460045144064","231756759","2015-09-10 14:20:05 +0000","https://twitter.com/olebegemann/status/641979460045144064/photo/1,https://twitter.com/olebegemann/status/641979460045144064/photo/1" -"641718985579368448","641718827210772480","385193","2015-09-09 21:05:03 +0000","Tweetbot for Mac","@jim_rutherford devs will be sporting 2 apple watches before the masses even have 1","","","","" -"641718435567693824","641718111364714496","385193","2015-09-09 21:02:52 +0000","Tweetbot for Mac","@jim_rutherford ha ha, oh man that’s awesome. I always swear to not install the beta next year…","","","","" -"641717768274907137","641717329810735104","385193","2015-09-09 21:00:13 +0000","Tweetbot for Mac","@jim_rutherford At least that was my experience when I installed the beta the first time.","","","","" -"641717620085944320","641717329810735104","385193","2015-09-09 20:59:37 +0000","Tweetbot for Mac","@jim_rutherford If your backup is from the wee hours of the morning you will lose your progress today so far. It’s only on the watch.","","","","" -"641716407156146176","","","2015-09-09 20:54:48 +0000","Tweetbot for Mac","RT @tapbot_paul: All I wanted to do was install a Mac App. http://t.co/FazZKdKxCF","641716158924656640","18247541","2015-09-09 20:53:49 +0000","https://twitter.com/tapbot_paul/status/641716158924656640/photo/1,https://twitter.com/tapbot_paul/status/641716158924656640/photo/1" -"641716312813645824","","","2015-09-09 20:54:26 +0000","Tweetbot for Mac","The big disadvantage of Touch ID is that I have to add 2 thumbs and 2 fingers to each iPhone and iPad after restoring it.","","","","" -"641702382854762496","","","2015-09-09 19:59:04 +0000","Tweetbot for Mac","So next year iOS 10 drops support for the remaining A5 devices? Let’s hope so. No more in the lineup, yay!","","","","" -"641700661252390912","","","2015-09-09 19:52:14 +0000","Tweetbot for Mac","RT @jim_rutherford: TVML <oh_my/> +"644271315390627840","","","2015-09-16 22:07:06 +0000","Tweetbot for Mac","Just found a shop on Apple Maps that isn’t on Google Maps. Pretty sure that’s one of the signs of the apocalypse.","","","","" +"644218068692963328","644217835821121538","15267898","2015-09-16 18:35:31 +0000","Tweetbot for Mac","@stroughtonsmith By far the nicest looking Android phone. They want something that looks good.","","","","" +"643201613604089856","","","2015-09-13 23:16:29 +0000","Twitterrific for iOS","RT @tjholowaychuk: Seen many a bad commit log, this is a pretty good post with nice suggestions http://t.co/6pkgkeVhU5","643187949987721220","29255412","2015-09-13 22:22:11 +0000","http://chris.beams.io/posts/git-commit/,http://chris.beams.io/posts/git-commit/" +"643127970903625728","643127825705340928","15263394","2015-09-13 18:23:51 +0000","Tweetbot for Mac","@dnanian Indeed it is! Thanks :)","","","","" +"643127037998161920","643125184594071552","15263394","2015-09-13 18:20:09 +0000","Tweetbot for Mac","@dnanian Download is not working here. http://t.co/xs0qA6uaYy","","","","https://twitter.com/_sjs/status/643127037998161920/photo/1" +"643126616072155136","","","2015-09-13 18:18:28 +0000","Tweetbot for Mac","Pleased to see that handoff works from Safari view controller to Mac.","","","","" +"643122452730515456","","","2015-09-13 18:01:56 +0000","Twitterrific for iOS","Paging @The_Fischbowl http://t.co/Asa0Pu8k1r","","","","https://twitter.com/marcedwards/status/642950228245483520" +"642599582484992000","","","2015-09-12 07:24:14 +0000","Tweetbot for Mac","Ordered a 6s in black and a 6s+ in rose gold.","","","","" +"642599393820958720","642599271401828352","108834413","2015-09-12 07:23:29 +0000","Tweetbot for Mac","@karissabe It’s all about the app","","","","" +"642598376580624384","642594928334209024","22196723","2015-09-12 07:19:26 +0000","Tweetbot for Mac","@markkolich It started working. The site still says to wait but I already ordered in the app. Now the waiting game :)","","","","" +"642572927292981248","","","2015-09-12 05:38:18 +0000","Twitterrific for iOS","82 minutes to get it together. This may not bode well for me. http://t.co/Ro9kEYhDAw","","","","https://twitter.com/_sjs/status/642572927292981248/photo/1" +"641980552766091264","","","2015-09-10 14:24:25 +0000","Twitterrific for iOS","RT @olebegemann: Developer APIs for displaying live photos are only available in iOS 9.1. http://t.co/0Yd1vwisom","641979460045144064","231756759","2015-09-10 14:20:05 +0000","https://twitter.com/olebegemann/status/641979460045144064/photo/1,https://twitter.com/olebegemann/status/641979460045144064/photo/1" +"641751256734699522","","","2015-09-09 23:13:17 +0000","Tweetbot for Mac","RT @mdhughes: Best new feature of iOS 9.1: FUCK YOU. http://t.co/TQOYRuTXmq","641749006788378624","14200945","2015-09-09 23:04:20 +0000","https://twitter.com/TheNextWeb/status/641725177018089472,https://twitter.com/TheNextWeb/status/641725177018089472" +"641718985579368448","641718827210772480","385193","2015-09-09 21:05:03 +0000","Tweetbot for Mac","@jim_rutherford devs will be sporting 2 apple watches before the masses even have 1","","","","" +"641718435567693824","641718111364714496","385193","2015-09-09 21:02:52 +0000","Tweetbot for Mac","@jim_rutherford ha ha, oh man that’s awesome. I always swear to not install the beta next year…","","","","" +"641717768274907137","641717329810735104","385193","2015-09-09 21:00:13 +0000","Tweetbot for Mac","@jim_rutherford At least that was my experience when I installed the beta the first time.","","","","" +"641717620085944320","641717329810735104","385193","2015-09-09 20:59:37 +0000","Tweetbot for Mac","@jim_rutherford If your backup is from the wee hours of the morning you will lose your progress today so far. It’s only on the watch.","","","","" +"641716407156146176","","","2015-09-09 20:54:48 +0000","Tweetbot for Mac","RT @tapbot_paul: All I wanted to do was install a Mac App. http://t.co/FazZKdKxCF","641716158924656640","18247541","2015-09-09 20:53:49 +0000","https://twitter.com/tapbot_paul/status/641716158924656640/photo/1,https://twitter.com/tapbot_paul/status/641716158924656640/photo/1" +"641716312813645824","","","2015-09-09 20:54:26 +0000","Tweetbot for Mac","The big disadvantage of Touch ID is that I have to add 2 thumbs and 2 fingers to each iPhone and iPad after restoring it.","","","","" +"641702382854762496","","","2015-09-09 19:59:04 +0000","Tweetbot for Mac","So next year iOS 10 drops support for the remaining A5 devices? Let’s hope so. No more in the lineup, yay!","","","","" +"641700661252390912","","","2015-09-09 19:52:14 +0000","Tweetbot for Mac","RT @jim_rutherford: TVML <oh_my/> https://t.co/NTpaqSrFof","641699956202467328","385193","2015-09-09 19:49:26 +0000","https://developer.apple.com/library/prerelease/tvos/documentation/LanguagesUtilities/Conceptual/ATV_Template_Guide/,https://developer.apple.com/library/prerelease/tvos/documentation/LanguagesUtilities/Conceptual/ATV_Template_Guide/" -"641686417010135040","","","2015-09-09 18:55:38 +0000","Tweetbot for Mac","Apple has become a parody of themselves. Live photos.","","","","" -"641618379040669697","","","2015-09-09 14:25:16 +0000","Twitterrific","RT @eallam: In Interface Builder, when tapping on a view hold down ctrl+shift to select any view underneath the tap http://t.co/YuQ98OFfhr","641591318695780352","46783","2015-09-09 12:37:45 +0000","https://twitter.com/eallam/status/641591318695780352/photo/1,https://twitter.com/eallam/status/641591318695780352/photo/1" +"641686417010135040","","","2015-09-09 18:55:38 +0000","Tweetbot for Mac","Apple has become a parody of themselves. Live photos.","","","","" "641449694061658116","","","2015-09-09 03:14:59 +0000","iOS","I have never seen a horse wiggle its lips like that http://t.co/JAVPzgWNNj via @mashable","","","","http://on.mash.to/1JQBaXN" -"640530353887690752","640418056305401857","642263","2015-09-06 14:21:51 +0000","Twitterrific","@frozendevil @cocoalabs We do? I didn’t even know this was a problem let alone that we had a solution for it.","","","","" -"639848136534429696","639801541948391424","108814849","2015-09-04 17:10:58 +0000","Tweetbot for Mac","@snarfmason I got 5.1.6 to build with just a few changes, but haven’t tried using it yet. Hopefully get back to it this weekend.","","","","" -"639681695982030848","","","2015-09-04 06:09:35 +0000","Tweetbot for Mac","Trying to get php 5.1.6 running so I can archive an old site. It’s not as straightforward as I had hoped. Building from source was fun.","","","","" -"639642076527726592","","","2015-09-04 03:32:09 +0000","Tweetbot for Mac","Then I could hook up an old iPad to a speaker and be streaming music but still have a physical button to play/pause. That might work.","","","","" -"639641810571169793","","","2015-09-04 03:31:06 +0000","Tweetbot for Mac","Maybe a BlueTooth speaker with a button on it would be good enough. If the music source never changed would it reliably play music?","","","","" -"639641388829642752","","","2015-09-04 03:29:25 +0000","Tweetbot for Mac","Ideally it would be an iOS or Android device and be able to stream music too. But I want to rig up a physical button to play.","","","","" -"639641218389962752","","","2015-09-04 03:28:45 +0000","Tweetbot for Mac","Eventually this iPod is going to die. And I will replace it. What can I replace it with that doesn’t require me to swipe around for this?","","","","" -"639641062173077504","","","2015-09-04 03:28:07 +0000","Tweetbot for Mac","I have a 10 year old iPod in a speaker dock in my bathroom. Push one button, music plays. Push it again, it pauses. It’s basically perfect.","","","","" -"638222360881991680","","","2015-08-31 05:30:43 +0000","Twitterrific","Just wrapped up some pizza in beeswax instead of crummy plastic wrap. Thanks @gregbate! http://t.co/9qGqoREyDc","","","","https://twitter.com/_sjs/status/638222360881991680/photo/1" +"640530353887690752","640418056305401857","642263","2015-09-06 14:21:51 +0000","Twitterrific for iOS","@frozendevil @cocoalabs We do? I didn’t even know this was a problem let alone that we had a solution for it.","","","","" +"639848136534429696","639801541948391424","108814849","2015-09-04 17:10:58 +0000","Tweetbot for Mac","@snarfmason I got 5.1.6 to build with just a few changes, but haven’t tried using it yet. Hopefully get back to it this weekend.","","","","" +"639681695982030848","","","2015-09-04 06:09:35 +0000","Tweetbot for Mac","Trying to get php 5.1.6 running so I can archive an old site. It’s not as straightforward as I had hoped. Building from source was fun.","","","","" +"639642076527726592","","","2015-09-04 03:32:09 +0000","Tweetbot for Mac","Then I could hook up an old iPad to a speaker and be streaming music but still have a physical button to play/pause. That might work.","","","","" +"639641810571169793","","","2015-09-04 03:31:06 +0000","Tweetbot for Mac","Maybe a BlueTooth speaker with a button on it would be good enough. If the music source never changed would it reliably play music?","","","","" +"639641388829642752","","","2015-09-04 03:29:25 +0000","Tweetbot for Mac","Ideally it would be an iOS or Android device and be able to stream music too. But I want to rig up a physical button to play.","","","","" +"639641218389962752","","","2015-09-04 03:28:45 +0000","Tweetbot for Mac","Eventually this iPod is going to die. And I will replace it. What can I replace it with that doesn’t require me to swipe around for this?","","","","" +"639641062173077504","","","2015-09-04 03:28:07 +0000","Tweetbot for Mac","I have a 10 year old iPod in a speaker dock in my bathroom. Push one button, music plays. Push it again, it pauses. It’s basically perfect.","","","","" +"638222360881991680","","","2015-08-31 05:30:43 +0000","Twitterrific for iOS","Just wrapped up some pizza in beeswax instead of crummy plastic wrap. Thanks @gregbate! http://t.co/9qGqoREyDc","","","","https://twitter.com/_sjs/status/638222360881991680/photo/1" "638215617993011204","","","2015-08-31 05:03:55 +0000","iOS","Kanye West's VMAs speech (and presidential campaign) was bizarrely inspiring http://t.co/4h9uogWwSo via @mashable","","","","http://on.mash.to/1Q2tN3L" "637490235044073472","","","2015-08-29 05:01:30 +0000","iOS","Finally. http://t.co/dvQHLjSzBc http://t.co/Gk8Akt5Kif","","","","http://www.anandtech.com/show/9543/the-windows-10-review,https://twitter.com/_sjs/status/637490235044073472/photo/1" -"637304645803638784","637288526753599488","15292261","2015-08-28 16:44:02 +0000","Tweetbot for Mac","@gregbate w00tw00t!","","","","" -"636958231525330944","636956129654759424","14136484","2015-08-27 17:47:31 +0000","Tweetbot for Mac","@acorscadden You’re smart to have waited this long. Things are pretty much fine now.","","","","" -"636333246276472832","","","2015-08-26 00:24:03 +0000","Tweetbot for Mac","The second 90% is a motherfucker. Lots of time spent duct taping broken stuff in UIKit.","","","","" -"634743769296822272","","","2015-08-21 15:08:02 +0000","Twitterrific","There are a lot of rambunctious squirrels out here this morning.","","","","" -"633505942055682048","","","2015-08-18 05:09:21 +0000","Tweetbot for Mac","If you’re not using @chockenberry’s QuickLook plugin you’re missing out, go get it. http://t.co/xe8eu2mASz","","","","http://furbo.org/2013/11/02/a-quick-look-plug-in-for-provisioning/" -"633455787927465986","","","2015-08-18 01:50:03 +0000","Twitterrific","RT @pcwalton: GitHub Issues looking near-perfect in Servo (only pixel snapping + vertical-align left) http://t.co/5E34Ww9c4b","633411771617832961","88751152","2015-08-17 22:55:09 +0000","https://twitter.com/pcwalton/status/633411771617832961/photo/1,https://twitter.com/pcwalton/status/633411771617832961/photo/1" -"633026543652999168","","","2015-08-16 21:24:23 +0000","Twitterrific","RT @jasonfried: Nice Amazon principle: ""Bias for action. Many decisions & actions are reversible & don't need extensive study."" http://t.co…","632946857149374464","14372143","2015-08-16 16:07:44 +0000","http://www.amazon.jobs/principles" -"632612539352772608","","","2015-08-15 17:59:17 +0000","Twitterrific","Forget the light, runny yogurt. I want my spoon to stand up in it. Gimme the 10% Greek yogurt.","","","","" -"632609149210066944","632595595383996416","14308739","2015-08-15 17:45:49 +0000","Twitterrific","@cheerskevin Nothing, happens to us all. $5-20 here and there doesn’t seem like much in the moment so it’s easy to get a collection going.","","","","" -"632372908229181441","","","2015-08-15 02:07:04 +0000","Twitterrific","RT @StartupLJackson: The best thing about this tweet is all the Indian folks replying to say how much better India's trains are than US pla…","632350229245784067","353789193","2015-08-15 00:36:57 +0000","" -"632304602801532929","","","2015-08-14 21:35:39 +0000","Tweetbot for Mac","I’m also getting solid recommendations from Apple Music, and like Beats they have some good playlists.","","","","" -"632304164777754624","","","2015-08-14 21:33:55 +0000","Tweetbot for Mac","Unpopular opinion: I like iTunes for listening to music, and like that  Music fits right into my music listening habits by being in iTunes.","","","","" -"632039642024448001","","","2015-08-14 04:02:48 +0000","Tweetbot for Mac","branches aren’t special. They’re just refs (i.e. commits). One big reason why git is so flexible and easy to bend. Git is pretty good.","","","","" -"632039221390274560","","","2015-08-14 04:01:07 +0000","Tweetbot for Mac","Merge a branch, leaving off the last WIP commit: git merge branch^ +"637304645803638784","637288526753599488","15292261","2015-08-28 16:44:02 +0000","Tweetbot for Mac","@gregbate w00tw00t!","","","","" +"636958231525330944","636956129654759424","14136484","2015-08-27 17:47:31 +0000","Tweetbot for Mac","@acorscadden You’re smart to have waited this long. Things are pretty much fine now.","","","","" +"636333246276472832","","","2015-08-26 00:24:03 +0000","Tweetbot for Mac","The second 90% is a motherfucker. Lots of time spent duct taping broken stuff in UIKit.","","","","" +"634743769296822272","","","2015-08-21 15:08:02 +0000","Twitterrific for iOS","There are a lot of rambunctious squirrels out here this morning.","","","","" +"633505942055682048","","","2015-08-18 05:09:21 +0000","Tweetbot for Mac","If you’re not using @chockenberry’s QuickLook plugin you’re missing out, go get it. http://t.co/xe8eu2mASz","","","","http://furbo.org/2013/11/02/a-quick-look-plug-in-for-provisioning/" +"633455787927465986","","","2015-08-18 01:50:03 +0000","Twitterrific for iOS","RT @pcwalton: GitHub Issues looking near-perfect in Servo (only pixel snapping + vertical-align left) http://t.co/5E34Ww9c4b","633411771617832961","88751152","2015-08-17 22:55:09 +0000","https://twitter.com/pcwalton/status/633411771617832961/photo/1,https://twitter.com/pcwalton/status/633411771617832961/photo/1" +"633026543652999168","","","2015-08-16 21:24:23 +0000","Twitterrific for iOS","RT @jasonfried: Nice Amazon principle: ""Bias for action. Many decisions & actions are reversible & don't need extensive study."" http://t.co…","632946857149374464","14372143","2015-08-16 16:07:44 +0000","http://www.amazon.jobs/principles" +"632612539352772608","","","2015-08-15 17:59:17 +0000","Twitterrific for iOS","Forget the light, runny yogurt. I want my spoon to stand up in it. Gimme the 10% Greek yogurt.","","","","" +"632609149210066944","632595595383996416","14308739","2015-08-15 17:45:49 +0000","Twitterrific for iOS","@cheerskevin Nothing, happens to us all. $5-20 here and there doesn’t seem like much in the moment so it’s easy to get a collection going.","","","","" +"632372908229181441","","","2015-08-15 02:07:04 +0000","Twitterrific for iOS","RT @StartupLJackson: The best thing about this tweet is all the Indian folks replying to say how much better India's trains are than US pla…","632350229245784067","353789193","2015-08-15 00:36:57 +0000","" +"632304602801532929","","","2015-08-14 21:35:39 +0000","Tweetbot for Mac","I’m also getting solid recommendations from Apple Music, and like Beats they have some good playlists.","","","","" +"632304164777754624","","","2015-08-14 21:33:55 +0000","Tweetbot for Mac","Unpopular opinion: I like iTunes for listening to music, and like that  Music fits right into my music listening habits by being in iTunes.","","","","" +"632039642024448001","","","2015-08-14 04:02:48 +0000","Tweetbot for Mac","branches aren’t special. They’re just refs (i.e. commits). One big reason why git is so flexible and easy to bend. Git is pretty good.","","","","" +"632039221390274560","","","2015-08-14 04:01:07 +0000","Tweetbot for Mac","Merge a branch, leaving off the last WIP commit: git merge branch^ (and edit the commit message s/commit/branch/ and s/sha/<branch>/)","","","","" -"632038752718688256","","","2015-08-14 03:59:16 +0000","Tweetbot for Mac","Push a branch, leaving off your last WIP commit: git push origin HEAD^:<branch>","","","","" -"631923195461824512","","","2015-08-13 20:20:05 +0000","Tweetbot for Mac","whoops http://t.co/HAT6uEsaTZ","","","","https://twitter.com/_sjs/status/631923195461824512/photo/1" -"631921146145849344","","","2015-08-13 20:11:56 +0000","Tweetbot for Mac","Hooray! http://t.co/m9hfniX9b7","","","","https://twitter.com/_sjs/status/631921146145849344/photo/1" -"631201476828749824","","","2015-08-11 20:32:13 +0000","Twitterrific","RT @steipete: I really hope @SlackHQ has better file security than @HipChat. All uploads public, just google for URLs… https://t.co/4PY0dtY…","631193551691468800","25401953","2015-08-11 20:00:44 +0000","https://help.hipchat.com/forums/138883-suggestions/suggestions/3959559-get-off-of-s3-for-privacy-security" -"629298479823622144","","","2015-08-06 14:30:24 +0000","Twitterrific","RT @Actually_HN: actually, discussing what is more important than code is more important than code","629174955310235648","3404468607","2015-08-06 06:19:33 +0000","" -"629298470717755392","","","2015-08-06 14:30:21 +0000","Twitterrific","RT @Actually_HN: Actually, indentation style is more important than code.","629159854263959552","3404468607","2015-08-06 05:19:33 +0000","" -"629069039675928576","","","2015-08-05 23:18:41 +0000","Twitterrific","RT @scottmowen: @dejager That exists. http://t.co/vyfXeG8a6N","629053572928253952","15009581","2015-08-05 22:17:13 +0000","http://www.airpnp.co/,http://www.airpnp.co/" -"628926605813919744","","","2015-08-05 13:52:42 +0000","Twitterrific","@YourTravis Good to know. Thanks!","","","","" -"628926209481543681","628925223635668992","256494877","2015-08-05 13:51:07 +0000","Twitterrific","@appcode @joeldev Yeah no fault of AppCode. I’m using my 10.10 machine for work.","","","","" -"628923872746692608","628829087562395648","256494877","2015-08-05 13:41:50 +0000","Twitterrific","@appcode @joeldev There’s a problem linking my iOS app when using Xcode 6.4 tools in AppCode. 6.4 isn’t supported on 10.11 though.","","","","" -"628678866911932416","628669873053274112","14130572","2015-08-04 21:28:16 +0000","Twitterrific","@joeldev Poorly. Don’t upgrade. Xcode 6, 7, and AppCode all broken to varying degrees.","","","","" -"628572816523198464","","","2015-08-04 14:26:52 +0000","Twitterrific","RT @littlebigdetail: Photo: Instagram — On any video if you press the volume up button on your iPhone a “tap video for sound”... http://t.c…","628566205549445120","210758676","2015-08-04 14:00:36 +0000","http://tmblr.co/ZrVa2y1rCuG6h" -"628311404626317312","","","2015-08-03 21:08:06 +0000","Twitterrific","Everywhere. /cc @SavedYouAClick http://t.co/TPSgiAwO0o","","","","https://twitter.com/DownSmileyFace/status/628297558612312064" -"628307155410513920","","","2015-08-03 20:51:13 +0000","Twitterrific","Subclassing. http://t.co/jOLHvjXIsL","","","","https://twitter.com/numist/status/628298941281402880" -"628033912401362945","628033113768218625","14231571","2015-08-03 02:45:27 +0000","Tweetbot for Mac","@marcoarment M50x is shown twice at #1 and #5 in sound quality ranking","","","","" +"632038752718688256","","","2015-08-14 03:59:16 +0000","Tweetbot for Mac","Push a branch, leaving off your last WIP commit: git push origin HEAD^:<branch>","","","","" +"631923195461824512","","","2015-08-13 20:20:05 +0000","Tweetbot for Mac","whoops http://t.co/HAT6uEsaTZ","","","","https://twitter.com/_sjs/status/631923195461824512/photo/1" +"631921146145849344","","","2015-08-13 20:11:56 +0000","Tweetbot for Mac","Hooray! http://t.co/m9hfniX9b7","","","","https://twitter.com/_sjs/status/631921146145849344/photo/1" +"631201476828749824","","","2015-08-11 20:32:13 +0000","Twitterrific for iOS","RT @steipete: I really hope @SlackHQ has better file security than @HipChat. All uploads public, just google for URLs… https://t.co/4PY0dtY…","631193551691468800","25401953","2015-08-11 20:00:44 +0000","https://help.hipchat.com/forums/138883-suggestions/suggestions/3959559-get-off-of-s3-for-privacy-security" +"629298479823622144","","","2015-08-06 14:30:24 +0000","Twitterrific for iOS","RT @Actually_HN: actually, discussing what is more important than code is more important than code","629174955310235648","3404468607","2015-08-06 06:19:33 +0000","" +"629298470717755392","","","2015-08-06 14:30:21 +0000","Twitterrific for iOS","RT @Actually_HN: Actually, indentation style is more important than code.","629159854263959552","3404468607","2015-08-06 05:19:33 +0000","" +"629069039675928576","","","2015-08-05 23:18:41 +0000","Twitterrific for iOS","RT @scottmowen: @dejager That exists. http://t.co/vyfXeG8a6N","629053572928253952","15009581","2015-08-05 22:17:13 +0000","http://www.airpnp.co/,http://www.airpnp.co/" +"628926605813919744","","","2015-08-05 13:52:42 +0000","Twitterrific for iOS","@YourTravis Good to know. Thanks!","","","","" +"628926209481543681","628925223635668992","256494877","2015-08-05 13:51:07 +0000","Twitterrific for iOS","@appcode @joeldev Yeah no fault of AppCode. I’m using my 10.10 machine for work.","","","","" +"628923872746692608","628829087562395648","256494877","2015-08-05 13:41:50 +0000","Twitterrific for iOS","@appcode @joeldev There’s a problem linking my iOS app when using Xcode 6.4 tools in AppCode. 6.4 isn’t supported on 10.11 though.","","","","" +"628678866911932416","628669873053274112","14130572","2015-08-04 21:28:16 +0000","Twitterrific for iOS","@joeldev Poorly. Don’t upgrade. Xcode 6, 7, and AppCode all broken to varying degrees.","","","","" +"628572816523198464","","","2015-08-04 14:26:52 +0000","Twitterrific for iOS","RT @littlebigdetail: Photo: Instagram — On any video if you press the volume up button on your iPhone a “tap video for sound”... http://t.c…","628566205549445120","210758676","2015-08-04 14:00:36 +0000","http://tmblr.co/ZrVa2y1rCuG6h" +"628311404626317312","","","2015-08-03 21:08:06 +0000","Twitterrific for iOS","Everywhere. /cc @SavedYouAClick http://t.co/TPSgiAwO0o","","","","https://twitter.com/DownSmileyFace/status/628297558612312064" +"628307155410513920","","","2015-08-03 20:51:13 +0000","Twitterrific for iOS","Subclassing. http://t.co/jOLHvjXIsL","","","","https://twitter.com/numist/status/628298941281402880" +"628033912401362945","628033113768218625","14231571","2015-08-03 02:45:27 +0000","Tweetbot for Mac","@marcoarment M50x is shown twice at #1 and #5 in sound quality ranking","","","","" "627897894729715713","","","2015-08-02 17:44:58 +0000","iOS","Bears fishing for salmon on a live cam. The internet is awesome! 🐻 http://t.co/WcwR4eKT2P","","","","http://explore.org/live-cams/player/brown-bear-salmon-cam-brooks-falls" "627565691097346048","","","2015-08-01 19:44:55 +0000","iOS","Fantastic article on tagged string pointers by @mikeash https://t.co/wQYO001Cc9 http://t.co/4f5duNIg22","","","","https://www.mikeash.com/pyblog/friday-qa-2015-07-31-tagged-pointer-strings.html,https://twitter.com/_sjs/status/627565691097346048/photo/1" -"627141488497967105","","","2015-07-31 15:39:17 +0000","Tweetbot for Mac","RT @kristianvatto: Since everyone is asking and it's not really a secret, I'm going to Samsung.","627136891171811328","206773707","2015-07-31 15:21:01 +0000","" -"626907381599830016","626897728384167936","15150116","2015-07-31 00:09:01 +0000","Twitterrific","@evilhackerdude @notwaldorf @slightlylate you can borrow one of mine http://t.co/ypy06FK0SH","","","","https://twitter.com/_sjs/status/626907381599830016/photo/1" -"626906811023560704","","","2015-07-31 00:06:45 +0000","Twitterrific","RT @danielpunkass: Terminal in 10.11 betas adds new ""Clear to Bookmark"" behavior that will flummox you if you’re used to old Cmd-K. Look in…","626741696177537024","666043","2015-07-30 13:10:39 +0000","" +"627141488497967105","","","2015-07-31 15:39:17 +0000","Tweetbot for Mac","RT @kristianvatto: Since everyone is asking and it's not really a secret, I'm going to Samsung.","627136891171811328","206773707","2015-07-31 15:21:01 +0000","" +"626907381599830016","626897728384167936","15150116","2015-07-31 00:09:01 +0000","Twitterrific for iOS","@evilhackerdude @notwaldorf @slightlylate you can borrow one of mine http://t.co/ypy06FK0SH","","","","https://twitter.com/_sjs/status/626907381599830016/photo/1" +"626906811023560704","","","2015-07-31 00:06:45 +0000","Twitterrific for iOS","RT @danielpunkass: Terminal in 10.11 betas adds new ""Clear to Bookmark"" behavior that will flummox you if you’re used to old Cmd-K. Look in…","626741696177537024","666043","2015-07-30 13:10:39 +0000","" "626904853202141184","","","2015-07-30 23:58:58 +0000","iOS","I should probably give up on this Nexus 5 battery ever arriving from China. http://t.co/oubFlVJEiZ","","","","https://twitter.com/_sjs/status/626904853202141184/photo/1" -"626523127426629632","","","2015-07-29 22:42:08 +0000","Tweetbot for Mac","Cmd-[1-9] now switches tabs instead of opening favourite bookmarks in Safari 9 (on OS X 10.11). Hallelujah!","","","","" -"626399451364507650","","","2015-07-29 14:30:41 +0000","Twitterrific","You can swipe back to close modals in Twitterrific. How did I not discover this until now. @Twitterrific #gestures","","","","" -"626398588017381376","","","2015-07-29 14:27:15 +0000","Twitterrific","RT @littlebigdetail: Google shows the difference between versions of their privacy policy http://t.co/mcIhOZdruS","626391852711866369","210758676","2015-07-29 14:00:30 +0000","http://tmblr.co/ZrVa2y1ql6lax,http://tmblr.co/ZrVa2y1ql6lax" -"626195658077134849","","","2015-07-29 01:00:53 +0000","Tweetbot for Mac","My screen saver on the 10.11 beta went all epileptic seizure on me. Zee goggles! http://t.co/bYPirOdgve","","","","http://moby.to/mxke5n" -"626033336058646528","","","2015-07-28 14:15:53 +0000","Twitterrific","Good news for everyone that uses Time Machine. http://t.co/F5B7J20Brg","","","","https://twitter.com/lorentey/status/625955509020045312" -"625392866487988224","","","2015-07-26 19:50:53 +0000","Twitterrific","10 minutes until it begins @BreweryTheBeast #meatandbeer http://t.co/ntZlf6CccX","","","","https://twitter.com/_sjs/status/625392866487988224/photo/1" -"625033395236503552","625005107885789184","14538248","2015-07-25 20:02:28 +0000","Twitterrific","@robynpeterson @mashable http://t.co/ttbB4enhXV","","","","http://xkcd.com/1555/" -"624780857765576705","624752236866834432","385193","2015-07-25 03:18:59 +0000","Twitterrific","@jim_rutherford @JimRoepcke Haven’t used this in a year or so but I made a node server for this sort of thing. https://t.co/ogNIWxDOAQ","","","","https://github.com/samsonjs/ThePusher" -"624733563863171072","","","2015-07-25 00:11:03 +0000","Tweetbot for Mac","Took about 3 swipes up from the bottom of this old iPod touch’s screen before I remembered that iOS 6 lacks control centre. Dark times.","","","","" -"624593529591894017","","","2015-07-24 14:54:36 +0000","Twitterrific","Just the motivation I need for @BreweryTheBeast this weekend! 🍺 http://t.co/qfzzNJptDB","","","","https://twitter.com/trevorprzybyla/status/622424487062073344" -"623874339302084608","","","2015-07-22 15:16:48 +0000","Twitterrific","RT @arstechnica: Apple disables App Store reviews from devices running iOS 9 betas http://t.co/GR4AfR6JG3 by @AndrewWrites","623871633783160832","717313","2015-07-22 15:06:03 +0000","http://arstechnica.com/apple/2015/07/apple-disables-app-store-reviews-from-devices-running-ios-9-betas/,http://arstechnica.com/apple/2015/07/apple-disables-app-store-reviews-from-devices-running-ios-9-betas/" +"626523127426629632","","","2015-07-29 22:42:08 +0000","Tweetbot for Mac","Cmd-[1-9] now switches tabs instead of opening favourite bookmarks in Safari 9 (on OS X 10.11). Hallelujah!","","","","" +"626399451364507650","","","2015-07-29 14:30:41 +0000","Twitterrific for iOS","You can swipe back to close modals in Twitterrific. How did I not discover this until now. @Twitterrific #gestures","","","","" +"626398588017381376","","","2015-07-29 14:27:15 +0000","Twitterrific for iOS","RT @littlebigdetail: Google shows the difference between versions of their privacy policy http://t.co/mcIhOZdruS","626391852711866369","210758676","2015-07-29 14:00:30 +0000","http://tmblr.co/ZrVa2y1ql6lax,http://tmblr.co/ZrVa2y1ql6lax" +"626195658077134849","","","2015-07-29 01:00:53 +0000","Tweetbot for Mac","My screen saver on the 10.11 beta went all epileptic seizure on me. Zee goggles! http://t.co/bYPirOdgve","","","","http://moby.to/mxke5n" +"626033336058646528","","","2015-07-28 14:15:53 +0000","Twitterrific for iOS","Good news for everyone that uses Time Machine. http://t.co/F5B7J20Brg","","","","https://twitter.com/lorentey/status/625955509020045312" +"625392866487988224","","","2015-07-26 19:50:53 +0000","Twitterrific for iOS","10 minutes until it begins @BreweryTheBeast #meatandbeer http://t.co/ntZlf6CccX","","","","https://twitter.com/_sjs/status/625392866487988224/photo/1" +"625033395236503552","625005107885789184","14538248","2015-07-25 20:02:28 +0000","Twitterrific for iOS","@robynpeterson @mashable http://t.co/ttbB4enhXV","","","","http://xkcd.com/1555/" +"624780857765576705","624752236866834432","385193","2015-07-25 03:18:59 +0000","Twitterrific for iOS","@jim_rutherford @JimRoepcke Haven’t used this in a year or so but I made a node server for this sort of thing. https://t.co/ogNIWxDOAQ","","","","https://github.com/samsonjs/ThePusher" +"624733563863171072","","","2015-07-25 00:11:03 +0000","Tweetbot for Mac","Took about 3 swipes up from the bottom of this old iPod touch’s screen before I remembered that iOS 6 lacks control centre. Dark times.","","","","" +"624593529591894017","","","2015-07-24 14:54:36 +0000","Twitterrific for iOS","Just the motivation I need for @BreweryTheBeast this weekend! 🍺 http://t.co/qfzzNJptDB","","","","https://twitter.com/trevorprzybyla/status/622424487062073344" +"623874339302084608","","","2015-07-22 15:16:48 +0000","Twitterrific for iOS","RT @arstechnica: Apple disables App Store reviews from devices running iOS 9 betas http://t.co/GR4AfR6JG3 by @AndrewWrites","623871633783160832","717313","2015-07-22 15:06:03 +0000","http://arstechnica.com/apple/2015/07/apple-disables-app-store-reviews-from-devices-running-ios-9-betas/,http://arstechnica.com/apple/2015/07/apple-disables-app-store-reviews-from-devices-running-ios-9-betas/" "623696527391784960","","","2015-07-22 03:30:14 +0000","iOS","Should I use a Swift struct or a class? http://t.co/XTZkckmYIz via @Instapaper","","","","http://faq.sealedabstract.com/structs_or_classes/" "623202162793779200","","","2015-07-20 18:45:48 +0000","Twitter Web Client","Unfortunately this doesn't play nicely with dark themes. Completed text is black. Otherwise it seems decent already. https://t.co/Z5ZzquMQfu","","","","https://twitter.com/hamzasood/status/621739073108111360" -"622803142019694596","","","2015-07-19 16:20:14 +0000","Twitterrific","RT @jmattheij: http://t.co/4eIkILBSJO In case you feel that 'if you've got nothing to hide then you've got nothing to fear' is true then pl…","619865160300265473","15441301","2015-07-11 13:45:45 +0000","http://jacquesmattheij.com/if-you-have-nothing-to-hide,http://jacquesmattheij.com/if-you-have-nothing-to-hide" -"622437619889143808","","","2015-07-18 16:07:47 +0000","Tweetbot for Mac","Beer fest tickets acquired! See you there if you’re going on Friday 🍻","","","","" -"622245234257211392","","","2015-07-18 03:23:19 +0000","Twitterrific","Dear forums, +"622803142019694596","","","2015-07-19 16:20:14 +0000","Twitterrific for iOS","RT @jmattheij: http://t.co/4eIkILBSJO In case you feel that 'if you've got nothing to hide then you've got nothing to fear' is true then pl…","619865160300265473","15441301","2015-07-11 13:45:45 +0000","http://jacquesmattheij.com/if-you-have-nothing-to-hide,http://jacquesmattheij.com/if-you-have-nothing-to-hide" +"622437619889143808","","","2015-07-18 16:07:47 +0000","Tweetbot for Mac","Beer fest tickets acquired! See you there if you’re going on Friday 🍻","","","","" +"622245234257211392","","","2015-07-18 03:23:19 +0000","Twitterrific for iOS","Dear forums, I still don’t want your app. Please stop. ❤️ Sami","","","","" -"621697567370248192","621677971863150592","2176282656","2015-07-16 15:07:05 +0000","Twitterrific","@Casper @fyrite It’s comfy! More firm than expected, which is nice. So far so good. +"621697567370248192","621677971863150592","2176282656","2015-07-16 15:07:05 +0000","Twitterrific for iOS","@Casper @fyrite It’s comfy! More firm than expected, which is nice. So far so good. And Escher approves of the box 😺 http://t.co/I78fodjehh","","","","https://twitter.com/_sjs/status/621697567370248192/photo/1" -"621506434472108032","","","2015-07-16 02:27:35 +0000","Tweetbot for Mac","Ordered a @Casper mattress and @fyrite can’t believe that it’s inside this box. http://t.co/vhx2LzHqEh","","","","https://twitter.com/_sjs/status/621506434472108032/photo/1" -"621480336652763136","","","2015-07-16 00:43:53 +0000","Tweetbot for Mac","You can drag icons from the Dock to the Trash to remove them. I can’t decide if it’s more obvious to drag them to the desktop (my method).","","","","" -"621098790347390976","621097827175772161","894911","2015-07-14 23:27:45 +0000","Twitterrific","@JimRoepcke Don’t get me wrong. That’s a terrible bug. You just can’t avoid everything that loses someone’s data or you won’t use anything.","","","","" -"621095108989972480","621082742088794112","894911","2015-07-14 23:13:08 +0000","Twitterrific","@JimRoepcke Better not trust your filesystem either.","","","","" -"620043908274204672","","","2015-07-12 01:36:02 +0000","Twitterrific","Went and saw some orca whales near Galiano island today. One of them jumped out of the water 4 times in a row! Pretty sweet.","","","","" -"619921898911043584","","","2015-07-11 17:31:12 +0000","Tweetbot for Mac","Big email signatures with images and links and your Skype name are really tacky. Stop doing that. You’re better than that.","","","","" -"619345695422570496","","","2015-07-10 03:21:35 +0000","Tweetbot for Mac","A beta of SuperDuper! for 10.11 is here. https://t.co/ntsyWl7Mzz","","","","https://twitter.com/dnanian/status/619289401508634624" -"619248693703643137","","","2015-07-09 20:56:08 +0000","Tweetbot for Mac","*fidget* +"621506434472108032","","","2015-07-16 02:27:35 +0000","Tweetbot for Mac","Ordered a @Casper mattress and @fyrite can’t believe that it’s inside this box. http://t.co/vhx2LzHqEh","","","","https://twitter.com/_sjs/status/621506434472108032/photo/1" +"621480336652763136","","","2015-07-16 00:43:53 +0000","Tweetbot for Mac","You can drag icons from the Dock to the Trash to remove them. I can’t decide if it’s more obvious to drag them to the desktop (my method).","","","","" +"621098790347390976","621097827175772161","894911","2015-07-14 23:27:45 +0000","Twitterrific for iOS","@JimRoepcke Don’t get me wrong. That’s a terrible bug. You just can’t avoid everything that loses someone’s data or you won’t use anything.","","","","" +"621095108989972480","621082742088794112","894911","2015-07-14 23:13:08 +0000","Twitterrific for iOS","@JimRoepcke Better not trust your filesystem either.","","","","" +"620043908274204672","","","2015-07-12 01:36:02 +0000","Twitterrific for iOS","Went and saw some orca whales near Galiano island today. One of them jumped out of the water 4 times in a row! Pretty sweet.","","","","" +"619921898911043584","","","2015-07-11 17:31:12 +0000","Tweetbot for Mac","Big email signatures with images and links and your Skype name are really tacky. Stop doing that. You’re better than that.","","","","" +"619345695422570496","","","2015-07-10 03:21:35 +0000","Tweetbot for Mac","A beta of SuperDuper! for 10.11 is here. https://t.co/ntsyWl7Mzz","","","","https://twitter.com/dnanian/status/619289401508634624" +"619248693703643137","","","2015-07-09 20:56:08 +0000","Tweetbot for Mac","*fidget* *fidget *fidget* Apple Watch: Congrats on standing!","","","","" "618843632406278144","618843607626305536","4777951","2015-07-08 18:06:34 +0000","Twitter Web Client","@JimRoepcke People who use OmniFocus seem to use it for everything.","","","","" "618843607626305536","618843373680504832","894911","2015-07-08 18:06:28 +0000","Twitter Web Client","@JimRoepcke Yeah I can see how that's a problem. At some point adding more tools/lists isn't going to help.","","","","" -"618843002430033920","","","2015-07-08 18:04:03 +0000","Tweetbot for Mac","Apparently that is basically GTD. Maybe I should check out some of the GTD tools people use.","","","","" -"618842756656467968","","","2015-07-08 18:03:05 +0000","Tweetbot for Mac","My system: make task lists, then do the things on the lists.","","","","" -"618631903877332992","","","2015-07-08 04:05:14 +0000","Twitterrific","First batch of cold brew coffee with Causeway from @CaffeFantastico was pretty good! Just started a second one with their Kaffa Forest.","","","","" -"618591827688583168","","","2015-07-08 01:25:59 +0000","Twitterrific","RT @thenatekirby: @bthdonohue seriously. Swift’s unicode support? Great. NSString? Also great. The two together. God fucking awful.","618584330856734720","1628814223","2015-07-08 00:56:11 +0000","" -"618591816401600512","","","2015-07-08 01:25:56 +0000","Twitterrific","RT @thenatekirby: Unicode + Swift + NSAttributedString = pain. Lots and lots of pain.","618581390213316608","1628814223","2015-07-08 00:44:30 +0000","" -"617833890745487360","","","2015-07-05 23:14:13 +0000","Tweetbot for Mac","http://t.co/STDLeZC2YV","","","","https://twitter.com/_sjs/status/617833890745487360/photo/1" -"617001366574108672","","","2015-07-03 16:06:03 +0000","Twitterrific","RT @fafner: This review is a “great” example of the problems developers of paid software face right now. http://t.co/raKrZnVqWm","616934236650643456","11227512","2015-07-03 11:39:18 +0000","https://twitter.com/fafner/status/616934236650643456/photo/1,https://twitter.com/fafner/status/616934236650643456/photo/1" +"618843002430033920","","","2015-07-08 18:04:03 +0000","Tweetbot for Mac","Apparently that is basically GTD. Maybe I should check out some of the GTD tools people use.","","","","" +"618842756656467968","","","2015-07-08 18:03:05 +0000","Tweetbot for Mac","My system: make task lists, then do the things on the lists.","","","","" +"618631903877332992","","","2015-07-08 04:05:14 +0000","Twitterrific for iOS","First batch of cold brew coffee with Causeway from @CaffeFantastico was pretty good! Just started a second one with their Kaffa Forest.","","","","" +"618591827688583168","","","2015-07-08 01:25:59 +0000","Twitterrific for iOS","RT @thenatekirby: @bthdonohue seriously. Swift’s unicode support? Great. NSString? Also great. The two together. God fucking awful.","618584330856734720","1628814223","2015-07-08 00:56:11 +0000","" +"618591816401600512","","","2015-07-08 01:25:56 +0000","Twitterrific for iOS","RT @thenatekirby: Unicode + Swift + NSAttributedString = pain. Lots and lots of pain.","618581390213316608","1628814223","2015-07-08 00:44:30 +0000","" +"617833890745487360","","","2015-07-05 23:14:13 +0000","Tweetbot for Mac","http://t.co/STDLeZC2YV","","","","https://twitter.com/_sjs/status/617833890745487360/photo/1" +"617001366574108672","","","2015-07-03 16:06:03 +0000","Twitterrific for iOS","RT @fafner: This review is a “great” example of the problems developers of paid software face right now. http://t.co/raKrZnVqWm","616934236650643456","11227512","2015-07-03 11:39:18 +0000","https://twitter.com/fafner/status/616934236650643456/photo/1,https://twitter.com/fafner/status/616934236650643456/photo/1" "616997448599252992","","","2015-07-03 15:50:29 +0000","Instapaper","Swift Mirrors and JSON | Chris Eidhof http://t.co/SVJ7iBYRjN via @instapaper","","","","http://chris.eidhof.nl/posts/swift-mirrors-and-json.html" -"616983560122032130","","","2015-07-03 14:55:18 +0000","Twitterrific","RT @hamzasood: El Capitan has an undocumented extension point which lets you add custom UI to notifications +"616983560122032130","","","2015-07-03 14:55:18 +0000","Twitterrific for iOS","RT @hamzasood: El Capitan has an undocumented extension point which lets you add custom UI to notifications https://t.co/QsSLoHL5w2 http://…","616718933760937984","391647694","2015-07-02 21:23:46 +0000","https://github.com/hamzasood/NotificationExtensionTest,https://github.com/hamzasood/NotificationExtensionTest,https://twitter.com/hamzasood/status/616718933760937984/video/1" "616869615629504512","","","2015-07-03 07:22:31 +0000","Instapaper","Russ Bishop - Swift 2: SIMD http://t.co/jNIvQRWXQw via @instapaper","","","","http://www.russbishop.net/swift-2-simd" -"616664415170134016","616664212715274241","15004156","2015-07-02 17:47:08 +0000","Tweetbot for Mac","@jaredsinclair @hotdogsladies See @karlvanhoet","","","","" +"616664415170134016","616664212715274241","15004156","2015-07-02 17:47:08 +0000","Tweetbot for Mac","@jaredsinclair @hotdogsladies See @karlvanhoet","","","","" "616627936972550144","","","2015-07-02 15:22:11 +0000","Instapaper","Re...throws? - Cocoaphony http://t.co/VxMbNs62vf via @instapaper","","","","http://robnapier.net/re-throws" -"616486574289612800","","","2015-07-02 06:00:27 +0000","Twitterrific","RT @cheald: @cheerskevin Yup. https://t.co/QVM9C6ZLmC","616317799938392064","10434442","2015-07-01 18:49:48 +0000","https://github.com/4Lang/4,https://github.com/4Lang/4" -"616486569155780608","","","2015-07-02 06:00:26 +0000","Twitterrific","RT @cheerskevin: Is there an emoji-based programming language yet?","616305489840873472","14308739","2015-07-01 18:00:53 +0000","" -"616349227971575808","","","2015-07-01 20:54:41 +0000","Twitterrific","RT @1Password: On this fine Canada Day, keep in mind the Pro features for iOS and Premium features for Android are 50% off (and not for muc…","616337286821588993","793926","2015-07-01 20:07:14 +0000","" -"615943139937796096","","","2015-06-30 18:01:02 +0000","Tweetbot for Mac","RT @chockenberry: SO HOW DO I RE ENABLE DISCOVERYD","615940892369641476","36183","2015-06-30 17:52:07 +0000","" +"616486574289612800","","","2015-07-02 06:00:27 +0000","Twitterrific for iOS","RT @cheald: @cheerskevin Yup. https://t.co/QVM9C6ZLmC","616317799938392064","10434442","2015-07-01 18:49:48 +0000","https://github.com/4Lang/4,https://github.com/4Lang/4" +"616486569155780608","","","2015-07-02 06:00:26 +0000","Twitterrific for iOS","RT @cheerskevin: Is there an emoji-based programming language yet?","616305489840873472","14308739","2015-07-01 18:00:53 +0000","" +"616349227971575808","","","2015-07-01 20:54:41 +0000","Twitterrific for iOS","RT @1Password: On this fine Canada Day, keep in mind the Pro features for iOS and Premium features for Android are 50% off (and not for muc…","616337286821588993","793926","2015-07-01 20:07:14 +0000","" +"615943139937796096","","","2015-06-30 18:01:02 +0000","Tweetbot for Mac","RT @chockenberry: SO HOW DO I RE ENABLE DISCOVERYD","615940892369641476","36183","2015-06-30 17:52:07 +0000","" "615012449767391232","","","2015-06-28 04:22:49 +0000","Instapaper","Friday Q&A 2015-06-19: The Best of What's New in Swift https://t.co/vdorUuNVFx via @instapaper","","","","https://www.mikeash.com/pyblog/friday-qa-2015-06-19-the-best-of-whats-new-in-swift.html" "615009667492610049","","","2015-06-28 04:11:45 +0000","iOS","Good to know. https://t.co/vdorUuNVFx http://t.co/lCOUE2Qbnn","","","","https://www.mikeash.com/pyblog/friday-qa-2015-06-19-the-best-of-whats-new-in-swift.html,https://twitter.com/_sjs/status/615009667492610049/photo/1" -"614811894805721088","","","2015-06-27 15:05:53 +0000","Twitterrific","RT @FastlaneTools: [fastlane 1.6.0] New Template System, backup/restore file actions and more: https://t.co/yAeXBb7ffK http://t.co/kNDiZNik…","614726188817215488","2919655265","2015-06-27 09:25:19 +0000","https://github.com/KrauseFx/fastlane/releases/tag/1.6.0,https://github.com/KrauseFx/fastlane/releases/tag/1.6.0,https://twitter.com/FastlaneTools/status/614726188817215488/photo/1" -"614597268277063680","","","2015-06-27 00:53:02 +0000","Twitterrific","Not thrilled about losing swipe from right edge to go forward in Safari on iOS 9 on the iPad. The OS claimed the last edge swipe.","","","","" +"614811894805721088","","","2015-06-27 15:05:53 +0000","Twitterrific for iOS","RT @FastlaneTools: [fastlane 1.6.0] New Template System, backup/restore file actions and more: https://t.co/yAeXBb7ffK http://t.co/kNDiZNik…","614726188817215488","2919655265","2015-06-27 09:25:19 +0000","https://github.com/KrauseFx/fastlane/releases/tag/1.6.0,https://github.com/KrauseFx/fastlane/releases/tag/1.6.0,https://twitter.com/FastlaneTools/status/614726188817215488/photo/1" +"614597268277063680","","","2015-06-27 00:53:02 +0000","Twitterrific for iOS","Not thrilled about losing swipe from right edge to go forward in Safari on iOS 9 on the iPad. The OS claimed the last edge swipe.","","","","" "614581716053667842","","","2015-06-26 23:51:14 +0000","iOS","The first thing to make me want to jailbreak my phone in 4 years. There's a jailbreak hack called OrangeMeNot. http://t.co/gOmS5Gy50W","","","","https://twitter.com/_sjs/status/614581716053667842/photo/1" -"614495210832199680","","","2015-06-26 18:07:29 +0000","Tweetbot for Mac","Siri isn’t asking me for confirmation when creating reminders very often anymore, more like Android Wear. It’s much better.","","","","" -"613858838773534720","","","2015-06-24 23:58:46 +0000","Tweetbot for Mac","Safari is the closest thing to Camino nowadays. Chrome is the new Firefox. IE is still IE. Firefox is the new Opera. Opera is the new AOL.","","","","" -"613833474156310528","","","2015-06-24 22:17:59 +0000","Tweetbot for Mac","Today’s Dvorak typo: UIMutton","","","","" -"613098223134085120","","","2015-06-22 21:36:21 +0000","Tweetbot for Mac","Exposé sure is smooth on this retina iMac with 10.11. Even with 20 windows across 2 displays, 5k and 4k.","","","","" -"613052342485651456","613047344116932610","22406953","2015-06-22 18:34:03 +0000","Tweetbot for Mac","@mahyarm My SSD capacity extrapolation is way off but otherwise I was pretty close! http://t.co/UNBIK2G8BD","","","","http://www.reddit.com/r/hardware/comments/im2c9/by_2015_you_wont_be_able_to_give_away_a_hard_disk/" -"611798139691864064","","","2015-06-19 07:30:17 +0000","Twitterrific","RT @gak_pdx: This is f-ing crazy smooth machinery: +"614495210832199680","","","2015-06-26 18:07:29 +0000","Tweetbot for Mac","Siri isn’t asking me for confirmation when creating reminders very often anymore, more like Android Wear. It’s much better.","","","","" +"613858838773534720","","","2015-06-24 23:58:46 +0000","Tweetbot for Mac","Safari is the closest thing to Camino nowadays. Chrome is the new Firefox. IE is still IE. Firefox is the new Opera. Opera is the new AOL.","","","","" +"613833474156310528","","","2015-06-24 22:17:59 +0000","Tweetbot for Mac","Today’s Dvorak typo: UIMutton","","","","" +"613098223134085120","","","2015-06-22 21:36:21 +0000","Tweetbot for Mac","Exposé sure is smooth on this retina iMac with 10.11. Even with 20 windows across 2 displays, 5k and 4k.","","","","" +"613052342485651456","613047344116932610","22406953","2015-06-22 18:34:03 +0000","Tweetbot for Mac","@mahyarm My SSD capacity extrapolation is way off but otherwise I was pretty close! http://t.co/UNBIK2G8BD","","","","http://www.reddit.com/r/hardware/comments/im2c9/by_2015_you_wont_be_able_to_give_away_a_hard_disk/" +"611798139691864064","","","2015-06-19 07:30:17 +0000","Twitterrific for iOS","RT @gak_pdx: This is f-ing crazy smooth machinery: https://t.co/PeRdJMhRaP","611783396600119296","7603032","2015-06-19 06:31:42 +0000","https://youtu.be/SPl2cgm0Q-Y?t=2m33s,https://youtu.be/SPl2cgm0Q-Y?t=2m33s" -"611789887499427840","","","2015-06-19 06:57:30 +0000","Twitterrific","Whoops. http://t.co/Tt71ICjAeD","","","","https://twitter.com/_sjs/status/611789887499427840/photo/1" -"611787776996937729","611418891420479488","122277911","2015-06-19 06:49:07 +0000","Twitterrific","@ctbails @munchies Well that explains a lot. @snarfmason","","","","" -"611417111982817282","","","2015-06-18 06:16:13 +0000","Twitterrific","RT @toddthomas: I can't be the only Mac user that always pinches to zoom on a google map only to have Safari display the expanded tab view.…","611391401629093888","14650563","2015-06-18 04:34:03 +0000","" -"611071822902112256","611068910218051584","22406953","2015-06-17 07:24:10 +0000","Twitterrific","@mahyarm I pay Shaw $120/mo for a capped cable connection that gets 5mbps up, and then $80/mo to Rogers for 6 GB of mediocre LTE. Augh!","","","","" -"610868648593485827","610868227065966592","87274687","2015-06-16 17:56:49 +0000","Tweetbot for Mac","@rektide I hope so! Dug that up because of this tweet/thread: https://t.co/TWxdw0Bjvt +"611789887499427840","","","2015-06-19 06:57:30 +0000","Twitterrific for iOS","Whoops. http://t.co/Tt71ICjAeD","","","","https://twitter.com/_sjs/status/611789887499427840/photo/1" +"611787776996937729","611418891420479488","122277911","2015-06-19 06:49:07 +0000","Twitterrific for iOS","@ctbails @munchies Well that explains a lot. @snarfmason","","","","" +"611417111982817282","","","2015-06-18 06:16:13 +0000","Twitterrific for iOS","RT @toddthomas: I can't be the only Mac user that always pinches to zoom on a google map only to have Safari display the expanded tab view.…","611391401629093888","14650563","2015-06-18 04:34:03 +0000","" +"611071822902112256","611068910218051584","22406953","2015-06-17 07:24:10 +0000","Twitterrific for iOS","@mahyarm I pay Shaw $120/mo for a capped cable connection that gets 5mbps up, and then $80/mo to Rogers for 6 GB of mediocre LTE. Augh!","","","","" +"610868648593485827","610868227065966592","87274687","2015-06-16 17:56:49 +0000","Tweetbot for Mac","@rektide I hope so! Dug that up because of this tweet/thread: https://t.co/TWxdw0Bjvt We really need a new way to do things. TermKit+xiki?","","","","https://twitter.com/_rsc/status/610640728528699392" "610838192552480768","","","2015-06-16 15:55:48 +0000","Instapaper","On TermKit — http://t.co/NYGfzkVulj http://t.co/pRE6K8gNZ9 via @instapaper","","","","http://Acko.net,http://acko.net/blog/on-termkit/" -"610701807346544640","","","2015-06-16 06:53:51 +0000","Twitterrific","RT @cgpgrey: . @royalaid ALL of it. Having non-actionable badges on your phone would be to live in crazy town.","610695079095857152","176774540","2015-06-16 06:27:07 +0000","" -"610643305165012993","","","2015-06-16 03:01:23 +0000","Tweetbot for Mac","Well, shit. http://t.co/TZ4Ao4wNxK","","","","https://twitter.com/_sjs/status/610643305165012993/photo/1" -"610207640128335872","","","2015-06-14 22:10:13 +0000","Twitterrific","RT @mikeash: The FaceTime incoming call alert steals focus and treats the spacebar as ""accept this call""! Delightful.","610186080374145026","8142952","2015-06-14 20:44:32 +0000","" -"610207018507304960","610191149203083265","15267898","2015-06-14 22:07:44 +0000","Twitterrific","@stroughtonsmith What’s with the status bar there? UIKit app?","","","","" -"610153698312871937","","","2015-06-14 18:35:52 +0000","Twitterrific","RT @chriseidhof: TIL: when reading Apple’s documentation (e.g. https://t.co/FNPE1X7h13 ), you can press ‘A’ to expand all symbols.","610143305590927360","4295181","2015-06-14 17:54:34 +0000","https://developer.apple.com/library/prerelease/ios/documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/index.html#//apple_ref/occ/cl/NSDateFormatter,https://developer.apple.com/library/prerelease/ios/documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/index.html#//apple_ref/occ/cl/NSDateFormatter" -"610152034667343873","610150226935050240","90024155","2015-06-14 18:29:15 +0000","Twitterrific","@CarlWoodfin @Cocoanetics Betas always have poor battery life. I wouldn’t expect any improvement until the GM.","","","","" -"609414506754641921","609413903454343168","894911","2015-06-12 17:38:35 +0000","Tweetbot for Mac","@JimRoepcke Duped!","","","","" -"609405532193959937","","","2015-06-12 17:02:55 +0000","Tweetbot for Mac","RT @notwaldorf: Meanwhile, in Canada: https://t.co/64IECSkEoA","609402400152096768","167834639","2015-06-12 16:50:29 +0000","https://twitter.com/StuMillsCBC/status/609343980074070016,https://twitter.com/StuMillsCBC/status/609343980074070016" -"609113823241314304","609113417991921664","108814849","2015-06-11 21:43:46 +0000","Tweetbot for Mac","@snarfmason Still gets better battery life than the Nexus 5! 😝","","","","" -"609103406913814528","","","2015-06-11 21:02:23 +0000","Tweetbot for Mac","Reminder: friends don’t let friends install the first beta on their carry phones.","","","","" -"609103223287193600","","","2015-06-11 21:01:39 +0000","Tweetbot for Mac","People weren’t joking about battery on the iOS 9 beta. I upgraded a test device here. It’s plugged in and losing battery life.","","","","" -"608827652418326528","","","2015-06-11 02:46:38 +0000","Twitterrific","RT @stroughtonsmith: Other Rootless-protected folders: /bin, /usr, and /sbin (/usr/local is write-enabled, mind)","608827592746106880","15267898","2015-06-11 02:46:24 +0000","" -"608826718963388416","","","2015-06-11 02:42:55 +0000","Twitterrific","RT @cpickslay: Got my question answered. Your watchOS 2 extension is a different target from the watchOS 1 ext, so you can maintain the iOS…","608794257005019136","20286379","2015-06-11 00:33:56 +0000","" -"608825372117852161","","","2015-06-11 02:37:34 +0000","Twitterrific","Instead of trying again I hold the crown now. I don’t have hold ups about talking to my phone or watch, but I do about repeating myself.","","","","" -"608824800010575873","","","2015-06-11 02:35:18 +0000","Twitterrific","“Hey Siri” on my watch triggers the first time about half the time. When it triggers it works. “Ok Google” on the Moto 360 is more reliable.","","","","" -"608655358370824192","608548469305954304","289246577","2015-06-10 15:22:00 +0000","Twitterrific","@merowing_ It is unusable for me on Yosemite too. I tried the one with the bundled JDK.","","","","" -"608653824794857472","608606306514141184","63025801","2015-06-10 15:15:54 +0000","Twitterrific","@dcseifert @drbarnard It’s not even necessarily a better experience. The Gmail app doesn’t behave like other iOS apps. It’s foreign.","","","","" -"608649994506100738","608625145318658049","15267898","2015-06-10 15:00:41 +0000","Twitterrific","@stroughtonsmith At least the bold titles in the member centre are links now, instead of just the text below them.","","","","" -"608646597736423424","608570864150413312","14383077","2015-06-10 14:47:11 +0000","Twitterrific","@passy ... “with syntax highlighting, soft wrap, and folds disabled”","","","","" -"608496621706330112","","","2015-06-10 04:51:14 +0000","Twitterrific","I think I’m going to like Instapaper’s “Open links in Safari” preference with split screen on the iPad.","","","","" +"610643305165012993","","","2015-06-16 03:01:23 +0000","Tweetbot for Mac","Well, shit. http://t.co/TZ4Ao4wNxK","","","","https://twitter.com/_sjs/status/610643305165012993/photo/1" +"610207640128335872","","","2015-06-14 22:10:13 +0000","Twitterrific for iOS","RT @mikeash: The FaceTime incoming call alert steals focus and treats the spacebar as ""accept this call""! Delightful.","610186080374145026","8142952","2015-06-14 20:44:32 +0000","" +"610207018507304960","610191149203083265","15267898","2015-06-14 22:07:44 +0000","Twitterrific for iOS","@stroughtonsmith What’s with the status bar there? UIKit app?","","","","" +"610153698312871937","","","2015-06-14 18:35:52 +0000","Twitterrific for iOS","RT @chriseidhof: TIL: when reading Apple’s documentation (e.g. https://t.co/FNPE1X7h13 ), you can press ‘A’ to expand all symbols.","610143305590927360","4295181","2015-06-14 17:54:34 +0000","https://developer.apple.com/library/prerelease/ios/documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/index.html#//apple_ref/occ/cl/NSDateFormatter,https://developer.apple.com/library/prerelease/ios/documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/index.html#//apple_ref/occ/cl/NSDateFormatter" +"610152034667343873","610150226935050240","90024155","2015-06-14 18:29:15 +0000","Twitterrific for iOS","@CarlWoodfin @Cocoanetics Betas always have poor battery life. I wouldn’t expect any improvement until the GM.","","","","" +"609414506754641921","609413903454343168","894911","2015-06-12 17:38:35 +0000","Tweetbot for Mac","@JimRoepcke Duped!","","","","" +"609405532193959937","","","2015-06-12 17:02:55 +0000","Tweetbot for Mac","RT @notwaldorf: Meanwhile, in Canada: https://t.co/64IECSkEoA","609402400152096768","167834639","2015-06-12 16:50:29 +0000","https://twitter.com/StuMillsCBC/status/609343980074070016,https://twitter.com/StuMillsCBC/status/609343980074070016" +"609113823241314304","609113417991921664","108814849","2015-06-11 21:43:46 +0000","Tweetbot for Mac","@snarfmason Still gets better battery life than the Nexus 5! 😝","","","","" +"609103406913814528","","","2015-06-11 21:02:23 +0000","Tweetbot for Mac","Reminder: friends don’t let friends install the first beta on their carry phones.","","","","" +"609103223287193600","","","2015-06-11 21:01:39 +0000","Tweetbot for Mac","People weren’t joking about battery on the iOS 9 beta. I upgraded a test device here. It’s plugged in and losing battery life.","","","","" +"608827652418326528","","","2015-06-11 02:46:38 +0000","Twitterrific for iOS","RT @stroughtonsmith: Other Rootless-protected folders: /bin, /usr, and /sbin (/usr/local is write-enabled, mind)","608827592746106880","15267898","2015-06-11 02:46:24 +0000","" +"608826718963388416","","","2015-06-11 02:42:55 +0000","Twitterrific for iOS","RT @cpickslay: Got my question answered. Your watchOS 2 extension is a different target from the watchOS 1 ext, so you can maintain the iOS…","608794257005019136","20286379","2015-06-11 00:33:56 +0000","" +"608825372117852161","","","2015-06-11 02:37:34 +0000","Twitterrific for iOS","Instead of trying again I hold the crown now. I don’t have hold ups about talking to my phone or watch, but I do about repeating myself.","","","","" +"608824800010575873","","","2015-06-11 02:35:18 +0000","Twitterrific for iOS","“Hey Siri” on my watch triggers the first time about half the time. When it triggers it works. “Ok Google” on the Moto 360 is more reliable.","","","","" +"608655358370824192","608548469305954304","289246577","2015-06-10 15:22:00 +0000","Twitterrific for iOS","@merowing_ It is unusable for me on Yosemite too. I tried the one with the bundled JDK.","","","","" +"608653824794857472","608606306514141184","63025801","2015-06-10 15:15:54 +0000","Twitterrific for iOS","@dcseifert @drbarnard It’s not even necessarily a better experience. The Gmail app doesn’t behave like other iOS apps. It’s foreign.","","","","" +"608649994506100738","608625145318658049","15267898","2015-06-10 15:00:41 +0000","Twitterrific for iOS","@stroughtonsmith At least the bold titles in the member centre are links now, instead of just the text below them.","","","","" +"608646597736423424","608570864150413312","14383077","2015-06-10 14:47:11 +0000","Twitterrific for iOS","@passy ... “with syntax highlighting, soft wrap, and folds disabled”","","","","" +"608496621706330112","","","2015-06-10 04:51:14 +0000","Twitterrific for iOS","I think I’m going to like Instapaper’s “Open links in Safari” preference with split screen on the iPad.","","","","" "608496177445609474","","","2015-06-10 04:49:28 +0000","Instapaper","It’s The Future | The Circle Blog http://t.co/tqyVVMNweH via @instapaper","","","","http://blog.circleci.com/its-the-future/" -"608491539635929088","608490982577872897","385193","2015-06-10 04:31:02 +0000","Twitterrific","@jim_rutherford @JimRoepcke If you want to impress him, eat a second one.","","","","" -"608491309083447296","608488069587709954","385193","2015-06-10 04:30:07 +0000","Twitterrific","@jim_rutherford Forget WWDC, I’m jealous of that.","","","","" -"608482400075579392","","","2015-06-10 03:54:43 +0000","Twitterrific","RT @horse_js: the DOM. You may be surprised","608463989480239104","497617437","2015-06-10 02:41:34 +0000","" -"608320546871361538","","","2015-06-09 17:11:35 +0000","Twitterrific","Must resist upgrading to watchOS 2 beta.","","","","" -"608149788345835520","","","2015-06-09 05:53:03 +0000","Twitterrific","RT @clattner_llvm: This should be a FAQ: ""throw"" in swift has performance cost similar to 'return': no expensive stack winding (befitting a…","608144289449668608","2543588034","2015-06-09 05:31:12 +0000","" -"608079743238303744","","","2015-06-09 01:14:43 +0000","Tweetbot for Mac","Apparently Dropbox is not compatible with 10.11. Has anyone tried running it anyway? Did everything explode?","","","","" -"608064290281672705","","","2015-06-09 00:13:18 +0000","Tweetbot for Mac","10.11 beta not downloading for you? Try using a VPN to transport yourself to the USA.","","","","" -"607986808702394368","","","2015-06-08 19:05:25 +0000","Tweetbot for Mac","RT @nnnnnnnn: Confidential to the dev center folks: Just press return. I know you have the command all typed out.","607986574391934977","4365311","2015-06-08 19:04:29 +0000","" -"607982012670996480","","","2015-06-08 18:46:22 +0000","Tweetbot for Mac","iTunes Match was also introduced as One more thing.","","","","" -"607969682851651585","","","2015-06-08 17:57:22 +0000","Tweetbot for Mac","RT @McCarron: UICrazyLittleJigglyThing","607969625880424448","770391","2015-06-08 17:57:08 +0000","" -"607960778264571904","","","2015-06-08 17:21:59 +0000","Tweetbot for Mac","I think we just got a preview of what split screen on the iPad may be like.","","","","" -"607364189821108225","","","2015-06-07 01:51:21 +0000","Twitterrific","RT @peterb: Improving xkcd comics, one at a time. http://t.co/afg0W5aZEd","607310624796876800","6738452","2015-06-06 22:18:30 +0000","https://twitter.com/peterb/status/607310624796876800/photo/1,https://twitter.com/peterb/status/607310624796876800/photo/1" +"608491539635929088","608490982577872897","385193","2015-06-10 04:31:02 +0000","Twitterrific for iOS","@jim_rutherford @JimRoepcke If you want to impress him, eat a second one.","","","","" +"608491309083447296","608488069587709954","385193","2015-06-10 04:30:07 +0000","Twitterrific for iOS","@jim_rutherford Forget WWDC, I’m jealous of that.","","","","" +"608482400075579392","","","2015-06-10 03:54:43 +0000","Twitterrific for iOS","RT @horse_js: the DOM. You may be surprised","608463989480239104","497617437","2015-06-10 02:41:34 +0000","" +"608320546871361538","","","2015-06-09 17:11:35 +0000","Twitterrific for iOS","Must resist upgrading to watchOS 2 beta.","","","","" +"608149788345835520","","","2015-06-09 05:53:03 +0000","Twitterrific for iOS","RT @clattner_llvm: This should be a FAQ: ""throw"" in swift has performance cost similar to 'return': no expensive stack winding (befitting a…","608144289449668608","2543588034","2015-06-09 05:31:12 +0000","" +"608079743238303744","","","2015-06-09 01:14:43 +0000","Tweetbot for Mac","Apparently Dropbox is not compatible with 10.11. Has anyone tried running it anyway? Did everything explode?","","","","" +"608064290281672705","","","2015-06-09 00:13:18 +0000","Tweetbot for Mac","10.11 beta not downloading for you? Try using a VPN to transport yourself to the USA.","","","","" +"607986808702394368","","","2015-06-08 19:05:25 +0000","Tweetbot for Mac","RT @nnnnnnnn: Confidential to the dev center folks: Just press return. I know you have the command all typed out.","607986574391934977","4365311","2015-06-08 19:04:29 +0000","" +"607982012670996480","","","2015-06-08 18:46:22 +0000","Tweetbot for Mac","iTunes Match was also introduced as One more thing.","","","","" +"607960778264571904","","","2015-06-08 17:21:59 +0000","Tweetbot for Mac","I think we just got a preview of what split screen on the iPad may be like.","","","","" +"607364189821108225","","","2015-06-07 01:51:21 +0000","Twitterrific for iOS","RT @peterb: Improving xkcd comics, one at a time. http://t.co/afg0W5aZEd","607310624796876800","6738452","2015-06-06 22:18:30 +0000","https://twitter.com/peterb/status/607310624796876800/photo/1,https://twitter.com/peterb/status/607310624796876800/photo/1" "606665768269287424","","","2015-06-05 03:36:05 +0000","iOS","ja ja ja http://t.co/JOi5wlCXjb","","","","http://www.dailymotion.com/video/xbn8f_mo-do-eins-zwei-polizei_music" -"606502649421168640","","","2015-06-04 16:47:54 +0000","Twitterrific","RT @acorscadden: What degree of coffee snobbery is taking my espresso machine and coffee grinder on a road trip?","606489613134266368","14136484","2015-06-04 15:56:06 +0000","" -"606502599873863680","606489613134266368","14136484","2015-06-04 16:47:42 +0000","Twitterrific","@acorscadden I’ll go with “admirable”. An admirable degree of coffee snobbery.","","","","" -"606113886618533889","606109243696140288","3863181","2015-06-03 15:03:06 +0000","Twitterrific","@chelseabot I am super jealous right now! I want to play with an otter!","","","","" -"606113460699561985","","","2015-06-03 15:01:24 +0000","Twitterrific","RT @JohnPaczkowski: If you have an Apple TV ... you can control your HomeKit-enabled accessories when you're away using your iOS device. ht…","606081159244619776","13475802","2015-06-03 12:53:03 +0000","https://support.apple.com/en-us/HT204893" -"605944795446411265","605944437449965568","291746508","2015-06-03 03:51:11 +0000","Twitterrific","@The_Fischbowl nice view!","","","","" -"605944252116299776","","","2015-06-03 03:49:02 +0000","Twitterrific","RT @lozzd: SSDs: It's not all unicorns and IOPs: https://t.co/QWiCUt7Hlo","605752533659840512","8627682","2015-06-02 15:07:13 +0000","https://laur.ie/blog/2015/06/ssds-a-gift-and-a-curse/,https://laur.ie/blog/2015/06/ssds-a-gift-and-a-curse/" +"606502649421168640","","","2015-06-04 16:47:54 +0000","Twitterrific for iOS","RT @acorscadden: What degree of coffee snobbery is taking my espresso machine and coffee grinder on a road trip?","606489613134266368","14136484","2015-06-04 15:56:06 +0000","" +"606502599873863680","606489613134266368","14136484","2015-06-04 16:47:42 +0000","Twitterrific for iOS","@acorscadden I’ll go with “admirable”. An admirable degree of coffee snobbery.","","","","" +"606113886618533889","606109243696140288","3863181","2015-06-03 15:03:06 +0000","Twitterrific for iOS","@chelseabot I am super jealous right now! I want to play with an otter!","","","","" +"606113460699561985","","","2015-06-03 15:01:24 +0000","Twitterrific for iOS","RT @JohnPaczkowski: If you have an Apple TV ... you can control your HomeKit-enabled accessories when you're away using your iOS device. ht…","606081159244619776","13475802","2015-06-03 12:53:03 +0000","https://support.apple.com/en-us/HT204893" +"605944795446411265","605944437449965568","291746508","2015-06-03 03:51:11 +0000","Twitterrific for iOS","@The_Fischbowl nice view!","","","","" +"605944252116299776","","","2015-06-03 03:49:02 +0000","Twitterrific for iOS","RT @lozzd: SSDs: It's not all unicorns and IOPs: https://t.co/QWiCUt7Hlo","605752533659840512","8627682","2015-06-02 15:07:13 +0000","https://laur.ie/blog/2015/06/ssds-a-gift-and-a-curse/,https://laur.ie/blog/2015/06/ssds-a-gift-and-a-curse/" "605940825080492035","","","2015-06-03 03:35:25 +0000","Instagram","S'mores on the stove https://t.co/8vOT94vH5G","","","","https://instagram.com/p/3c72VCrelO/" "605930716182945792","","","2015-06-03 02:55:15 +0000","Replay iOS","Ruckle Provincial Park http://t.co/8cNoqVPzhF","","","","http://bit.ly/1EUgFWm" -"605865260646432768","605851214522122241","2480079168","2015-06-02 22:35:09 +0000","Tweetbot for Mac","@SavedYouAClick You’re not saving me any clicks here.","","","","" -"605164183986958336","","","2015-06-01 00:09:19 +0000","Twitterrific","RT @gembarrett: If you suffer from depression or similar, it can really hit you hard. Especially if you don't know anyone else, or you're f…","605145279508164608","43727347","2015-05-31 22:54:12 +0000","" -"604663266078367744","","","2015-05-30 14:58:51 +0000","Twitterrific","Twitter poll: Do you know the word “skookum”?","","","","" -"604467636844380160","604420751177846784","1835411","2015-05-30 02:01:29 +0000","Twitterrific","@Ihnatko They’re my physical backup.","","","","" -"604467543533711361","604420751177846784","1835411","2015-05-30 02:01:07 +0000","Twitterrific","@Ihnatko That’s what I do and it works well for me. I treat them like rolls of film. Magic rolls of film that hold hundreds of photos.","","","","" -"604315471517597696","","","2015-05-29 15:56:50 +0000","Twitterrific","RT @polotek: That voice in your head says ""if people see that I can't figure this out really easily, they'll think I'm not smart enough.""","604301679979290624","20079975","2015-05-29 15:02:02 +0000","" -"604315462256615424","","","2015-05-29 15:56:48 +0000","Twitterrific","RT @polotek: We have to address those hidden fears. ""If people find out I don't know the answer to this, they'll think I'm no good.""","604301398692483072","20079975","2015-05-29 15:00:55 +0000","" -"604315457097629699","","","2015-05-29 15:56:47 +0000","Twitterrific","RT @polotek: There's a tremendous cultural pressure on devs to ""figure it out myself"". And definitely a fear of looking incompetent in fron…","604299154249097216","20079975","2015-05-29 14:52:00 +0000","" -"604315451066171392","","","2015-05-29 15:56:45 +0000","Twitterrific","RT @polotek: A dev will appreciate help if they're having trouble with something. But if you *ask* them if they want help, they almost alwa…","604298428072497152","20079975","2015-05-29 14:49:07 +0000","" +"605865260646432768","605851214522122241","2480079168","2015-06-02 22:35:09 +0000","Tweetbot for Mac","@SavedYouAClick You’re not saving me any clicks here.","","","","" +"605164183986958336","","","2015-06-01 00:09:19 +0000","Twitterrific for iOS","RT @gembarrett: If you suffer from depression or similar, it can really hit you hard. Especially if you don't know anyone else, or you're f…","605145279508164608","43727347","2015-05-31 22:54:12 +0000","" +"604663266078367744","","","2015-05-30 14:58:51 +0000","Twitterrific for iOS","Twitter poll: Do you know the word “skookum”?","","","","" +"604467636844380160","604420751177846784","1835411","2015-05-30 02:01:29 +0000","Twitterrific for iOS","@Ihnatko They’re my physical backup.","","","","" +"604467543533711361","604420751177846784","1835411","2015-05-30 02:01:07 +0000","Twitterrific for iOS","@Ihnatko That’s what I do and it works well for me. I treat them like rolls of film. Magic rolls of film that hold hundreds of photos.","","","","" +"604315471517597696","","","2015-05-29 15:56:50 +0000","Twitterrific for iOS","RT @polotek: That voice in your head says ""if people see that I can't figure this out really easily, they'll think I'm not smart enough.""","604301679979290624","20079975","2015-05-29 15:02:02 +0000","" +"604315462256615424","","","2015-05-29 15:56:48 +0000","Twitterrific for iOS","RT @polotek: We have to address those hidden fears. ""If people find out I don't know the answer to this, they'll think I'm no good.""","604301398692483072","20079975","2015-05-29 15:00:55 +0000","" +"604315457097629699","","","2015-05-29 15:56:47 +0000","Twitterrific for iOS","RT @polotek: There's a tremendous cultural pressure on devs to ""figure it out myself"". And definitely a fear of looking incompetent in fron…","604299154249097216","20079975","2015-05-29 14:52:00 +0000","" +"604315451066171392","","","2015-05-29 15:56:45 +0000","Twitterrific for iOS","RT @polotek: A dev will appreciate help if they're having trouble with something. But if you *ask* them if they want help, they almost alwa…","604298428072497152","20079975","2015-05-29 14:49:07 +0000","" "603937251756740608","","","2015-05-28 14:53:56 +0000","Instapaper","Thinking About Performance | Chad Austin http://t.co/7JoUEb7nM9 via @instapaper","","","","http://chadaustin.me/2015/04/thinking-about-performance/" "603935378773422080","","","2015-05-28 14:46:29 +0000","iOS","These bclean and bdone git aliases look handy. Gonna give them a shot. https://t.co/V6E8JLJS0s","","","","https://samhuri.net/posts/2015/05/github-flow-like-a-pro/" "603728294882582528","","","2015-05-28 01:03:36 +0000","Instapaper","On Being A Senior Engineer http://t.co/dlv8U4OEvY via @instapaper","","","","http://www.kitchensoap.com/2012/10/25/on-being-a-senior-engineer/" -"603711134072381440","603707686644019200","11666332","2015-05-27 23:55:25 +0000","Tweetbot for Mac","@piercedavid People spend more than that on their monitors alone. Probably not a deal-breaker for a lot of PC gamers.","","","","" -"603612417235386368","","","2015-05-27 17:23:09 +0000","Tweetbot for Mac","RT @theonlylars: OMG i just decoded the obfuscated session names in the 2015 WWDC app update http://t.co/793aFmqtr5","603610088675246082","80921954","2015-05-27 17:13:54 +0000","https://twitter.com/theonlylars/status/603610088675246082/photo/1,https://twitter.com/theonlylars/status/603610088675246082/photo/1" +"603711134072381440","603707686644019200","11666332","2015-05-27 23:55:25 +0000","Tweetbot for Mac","@piercedavid People spend more than that on their monitors alone. Probably not a deal-breaker for a lot of PC gamers.","","","","" "603431887860736000","","","2015-05-27 05:25:47 +0000","Instapaper","Disney's $1 Billion Bet on a Magical Wristband | WIRED http://t.co/j830VK8EAS via @instapaper","","","","http://www.wired.com/2015/03/disney-magicband/" "603429830328070144","","","2015-05-27 05:17:37 +0000","Instapaper","Are You Sure? http://t.co/djqEwQZpFz via @instapaper","","","","http://prog21.dadgum.com/205.html" "603297028718727169","","","2015-05-26 20:29:55 +0000","Instapaper","Reconsidering Functional Programming http://t.co/xGv1BhPnv2 via @instapaper","","","","http://prog21.dadgum.com/207.html" -"603284807439659008","","","2015-05-26 19:41:21 +0000","Twitterrific","RT @iamdevloper: I guess that’s another way to rank JavaScript frameworks… http://t.co/u9MpucaegI","603280028412059648","564919357","2015-05-26 19:22:21 +0000","https://twitter.com/iamdevloper/status/603280028412059648/photo/1,https://twitter.com/iamdevloper/status/603280028412059648/photo/1" -"603264829944528896","","","2015-05-26 18:21:58 +0000","Tweetbot for Mac","RT @tolmasky: It's crazy that a url I went to and immediately clicked back on gets the same space when I'm trying to find a link I read a w…","603263446159732736","14581738","2015-05-26 18:16:28 +0000","" -"603264814425604096","","","2015-05-26 18:21:54 +0000","Tweetbot for Mac","RT @tolmasky: Why can't I sort my browser history by ""time spent reading"" (determined by scrolling, mouse movement, front most tab, etc)?","603262451111448576","14581738","2015-05-26 18:12:31 +0000","" -"602484374399889408","","","2015-05-24 14:40:43 +0000","Twitterrific","RT @horse_js: except for Ruby","602452439799701505","497617437","2015-05-24 12:33:49 +0000","" -"602484367873609729","","","2015-05-24 14:40:41 +0000","Twitterrific","RT @horse_js: write every other language in JavaScript","602452326452867072","497617437","2015-05-24 12:33:22 +0000","" -"602023108401180672","","","2015-05-23 08:07:48 +0000","Twitterrific","RT @KLM: @tenderlove Well, rubber bands also. Just magnets would obviously not work.","601976696284323841","56377143","2015-05-23 05:03:23 +0000","" -"601919354410835969","","","2015-05-23 01:15:31 +0000","Twitterrific","Noticed a typo in my last tweet from 1/2 an hour ago. Too late to correct it. Noooo! +"603284807439659008","","","2015-05-26 19:41:21 +0000","Twitterrific for iOS","RT @iamdevloper: I guess that’s another way to rank JavaScript frameworks… http://t.co/u9MpucaegI","603280028412059648","564919357","2015-05-26 19:22:21 +0000","https://twitter.com/iamdevloper/status/603280028412059648/photo/1,https://twitter.com/iamdevloper/status/603280028412059648/photo/1" +"603264829944528896","","","2015-05-26 18:21:58 +0000","Tweetbot for Mac","RT @tolmasky: It's crazy that a url I went to and immediately clicked back on gets the same space when I'm trying to find a link I read a w…","603263446159732736","14581738","2015-05-26 18:16:28 +0000","" +"603264814425604096","","","2015-05-26 18:21:54 +0000","Tweetbot for Mac","RT @tolmasky: Why can't I sort my browser history by ""time spent reading"" (determined by scrolling, mouse movement, front most tab, etc)?","603262451111448576","14581738","2015-05-26 18:12:31 +0000","" +"602484374399889408","","","2015-05-24 14:40:43 +0000","Twitterrific for iOS","RT @horse_js: except for Ruby","602452439799701505","497617437","2015-05-24 12:33:49 +0000","" +"602484367873609729","","","2015-05-24 14:40:41 +0000","Twitterrific for iOS","RT @horse_js: write every other language in JavaScript","602452326452867072","497617437","2015-05-24 12:33:22 +0000","" +"602023108401180672","","","2015-05-23 08:07:48 +0000","Twitterrific for iOS","RT @KLM: @tenderlove Well, rubber bands also. Just magnets would obviously not work.","601976696284323841","56377143","2015-05-23 05:03:23 +0000","" +"601919354410835969","","","2015-05-23 01:15:31 +0000","Twitterrific for iOS","Noticed a typo in my last tweet from 1/2 an hour ago. Too late to correct it. Noooo! ¯\_(ツ)_/¯","","","","" -"601912117516578816","","","2015-05-23 00:46:46 +0000","Twitterrific","This is obvious in hindsight, but I never look at he today screen in notification centre now that all that stuff is on my watch.","","","","" -"601900353072726016","","","2015-05-23 00:00:01 +0000","Twitterrific","RT @jsnell: @hotdogsladies Actually, it's pronounced ""awse"" as in ""awesome.""","601878216807030784","784912","2015-05-22 22:32:03 +0000","" -"601900346496061441","","","2015-05-23 00:00:00 +0000","Twitterrific","RT @hotdogsladies: Actually as a Service (AaaS)","601878068211228672","749863","2015-05-22 22:31:28 +0000","" -"601838744539308033","601836273054035968","385193","2015-05-22 19:55:12 +0000","Twitterrific","@jim_rutherford Yeah I bet the ticket ordering process is still a bunch of slow web views that ask for info about me that they already have.","","","","" -"601771716201746434","","","2015-05-22 15:28:52 +0000","Twitterrific","Leaving Chrome open to run an app isn’t an option for me. Chrome is a non-starter due to its monumental battery drain.","","","","" -"601771258070638592","","","2015-05-22 15:27:02 +0000","Twitterrific","RT @johnleach: Eddie Van Halen has a patent on a guitar bracket; this is the official patent illustration: http://t.co/ncSREAkR5h http://t.…","601490513041235968","11778992","2015-05-21 20:51:28 +0000","http://www.google.com/patents/US4656917,http://www.google.com/patents/US4656917,https://twitter.com/johnleach/status/601490513041235968/photo/1" -"601771116064075776","","","2015-05-22 15:26:29 +0000","Twitterrific","A Chrome app isn’t a Mac app. How are people supposed to use this if they don’t use Chrome? http://t.co/azmdscoUDN","","","","http://www.engadget.com/2015/05/22/google-hangouts-app-refresh/" -"601737236514807809","","","2015-05-22 13:11:51 +0000","Twitterrific","Cineplex released a new iPhone app. It doesn’t support the iPhone 6 and 6+ display sizes and has a double hamburger. http://t.co/MVPxwGm448","","","","https://twitter.com/_sjs/status/601737236514807809/photo/1" +"601912117516578816","","","2015-05-23 00:46:46 +0000","Twitterrific for iOS","This is obvious in hindsight, but I never look at he today screen in notification centre now that all that stuff is on my watch.","","","","" +"601900353072726016","","","2015-05-23 00:00:01 +0000","Twitterrific for iOS","RT @jsnell: @hotdogsladies Actually, it's pronounced ""awse"" as in ""awesome.""","601878216807030784","784912","2015-05-22 22:32:03 +0000","" +"601900346496061441","","","2015-05-23 00:00:00 +0000","Twitterrific for iOS","RT @hotdogsladies: Actually as a Service (AaaS)","601878068211228672","749863","2015-05-22 22:31:28 +0000","" +"601838744539308033","601836273054035968","385193","2015-05-22 19:55:12 +0000","Twitterrific for iOS","@jim_rutherford Yeah I bet the ticket ordering process is still a bunch of slow web views that ask for info about me that they already have.","","","","" +"601771716201746434","","","2015-05-22 15:28:52 +0000","Twitterrific for iOS","Leaving Chrome open to run an app isn’t an option for me. Chrome is a non-starter due to its monumental battery drain.","","","","" +"601771258070638592","","","2015-05-22 15:27:02 +0000","Twitterrific for iOS","RT @johnleach: Eddie Van Halen has a patent on a guitar bracket; this is the official patent illustration: http://t.co/ncSREAkR5h http://t.…","601490513041235968","11778992","2015-05-21 20:51:28 +0000","http://www.google.com/patents/US4656917,http://www.google.com/patents/US4656917,https://twitter.com/johnleach/status/601490513041235968/photo/1" +"601771116064075776","","","2015-05-22 15:26:29 +0000","Twitterrific for iOS","A Chrome app isn’t a Mac app. How are people supposed to use this if they don’t use Chrome? http://t.co/azmdscoUDN","","","","http://www.engadget.com/2015/05/22/google-hangouts-app-refresh/" +"601737236514807809","","","2015-05-22 13:11:51 +0000","Twitterrific for iOS","Cineplex released a new iPhone app. It doesn’t support the iPhone 6 and 6+ display sizes and has a double hamburger. http://t.co/MVPxwGm448","","","","https://twitter.com/_sjs/status/601737236514807809/photo/1" "601549721287544832","","","2015-05-22 00:46:44 +0000","Instapaper","The Lenovo ThinkPad X1 Carbon Review (2015) http://t.co/vWOGcexZob via @instapaper","","","","http://www.anandtech.com/show/9264/the-lenovo-thinkpad-x1-carbon-review-2015" -"601494102107095040","","","2015-05-21 21:05:43 +0000","Twitterrific","RT @cocoalabs: Pro tip: In the terminal (on OS X) type any unix command in the search field and get back a man page.","601491823803109376","689183","2015-05-21 20:56:40 +0000","" -"601233764174340096","601223334756425728","14200945","2015-05-21 03:51:14 +0000","Twitterrific","@mdhughes I’ve been happier since I turned that shit off in settings. It’s gross.","","","","" +"601494102107095040","","","2015-05-21 21:05:43 +0000","Twitterrific for iOS","RT @cocoalabs: Pro tip: In the terminal (on OS X) type any unix command in the search field and get back a man page.","601491823803109376","689183","2015-05-21 20:56:40 +0000","" +"601233764174340096","601223334756425728","14200945","2015-05-21 03:51:14 +0000","Twitterrific for iOS","@mdhughes I’ve been happier since I turned that shit off in settings. It’s gross.","","","","" "601080768132034561","","","2015-05-20 17:43:17 +0000","Periscope","LIVE on #Periscope: Niagara Falls! https://t.co/E1f2NkmmRY","","","","https://www.pscp.tv/w/Vz37NTE4NjIyMnwxMjc2OTIxN-RLqHd15FK6ZxXTYrmgAvNRxNHeQlA0n6sp774JsqQv" -"600994228446076928","","","2015-05-20 11:59:24 +0000","Twitterrific","RT @olebegemann: Attention to detail: http://t.co/4ciRlUA48D.","600961604373577729","231756759","2015-05-20 09:49:46 +0000","http://bitsplitting.org/2015/05/19/off-by-one-half/,http://bitsplitting.org/2015/05/19/off-by-one-half/" +"600994228446076928","","","2015-05-20 11:59:24 +0000","Twitterrific for iOS","RT @olebegemann: Attention to detail: http://t.co/4ciRlUA48D.","600961604373577729","231756759","2015-05-20 09:49:46 +0000","http://bitsplitting.org/2015/05/19/off-by-one-half/,http://bitsplitting.org/2015/05/19/off-by-one-half/" "600656042872152064","","","2015-05-19 13:35:34 +0000","iOS","Punkeydoodles Corners is a hamlet in southwestern Ontario, known for its strange name and frequent sign theft. http://t.co/G8Nx5IvhuL","","","","http://en.m.wikipedia.org/wiki/Punkeydoodles_Corners" -"600645886008516609","","","2015-05-19 12:55:13 +0000","Twitterrific","What do they have to do to get 5 stars? http://t.co/B3bZbf6dc6","","","","https://twitter.com/_sjs/status/600645886008516609/photo/1" +"600645886008516609","","","2015-05-19 12:55:13 +0000","Twitterrific for iOS","What do they have to do to get 5 stars? http://t.co/B3bZbf6dc6","","","","https://twitter.com/_sjs/status/600645886008516609/photo/1" "600495335392284674","","","2015-05-19 02:56:59 +0000","iOS","http://t.co/svKuvhp6wi: A bitcoin miner in every device and in every hand https://t.co/iZFBEbltNV","","","","http://samhuri.net,https://samhuri.net/posts/2015/05/a-bitcoin-miner-in-every-device-and-in-every-hand/" -"600491416662450176","","","2015-05-19 02:41:24 +0000","Twitterrific","RT @rob_pike: Adobe has dropped a ""Creative Cloud Files"" dir in my home dir. ""Files"", eh? As opposed to potatoes? What else goes in a direc…","600489157551489024","197263266","2015-05-19 02:32:26 +0000","" -"600348605661089792","","","2015-05-18 17:13:56 +0000","Twitterrific","RT @jedschmidt: @_sjs do you have the required authorization for that drive?","600345598718517248","815114","2015-05-18 17:01:59 +0000","" -"600342874698330112","","","2015-05-18 16:51:09 +0000","Twitterrific","Driving on the 401 #yolo","","","","" -"600333499480944641","","","2015-05-18 16:13:54 +0000","Twitterrific","RT @mydaughtersarmy: What if it's a big hoax...? http://t.co/g8xqWm7QPQ","591975858052702208","2196201139","2015-04-25 14:43:37 +0000","https://twitter.com/mydaughtersarmy/status/591975858052702208/photo/1,https://twitter.com/mydaughtersarmy/status/591975858052702208/photo/1" +"600491416662450176","","","2015-05-19 02:41:24 +0000","Twitterrific for iOS","RT @rob_pike: Adobe has dropped a ""Creative Cloud Files"" dir in my home dir. ""Files"", eh? As opposed to potatoes? What else goes in a direc…","600489157551489024","197263266","2015-05-19 02:32:26 +0000","" +"600348605661089792","","","2015-05-18 17:13:56 +0000","Twitterrific for iOS","RT @jedschmidt: @_sjs do you have the required authorization for that drive?","600345598718517248","815114","2015-05-18 17:01:59 +0000","" +"600342874698330112","","","2015-05-18 16:51:09 +0000","Twitterrific for iOS","Driving on the 401 #yolo","","","","" +"600333499480944641","","","2015-05-18 16:13:54 +0000","Twitterrific for iOS","RT @mydaughtersarmy: What if it's a big hoax...? http://t.co/g8xqWm7QPQ","591975858052702208","2196201139","2015-04-25 14:43:37 +0000","https://twitter.com/mydaughtersarmy/status/591975858052702208/photo/1,https://twitter.com/mydaughtersarmy/status/591975858052702208/photo/1" "600290992160288768","","","2015-05-18 13:25:00 +0000","Instapaper","Mobile first http://t.co/VfgBPbHTMk via @instapaper","","","","http://ben-evans.com/benedictevans/2015/5/14/mobile-first" -"600083399815008256","","","2015-05-17 23:40:06 +0000","Twitterrific","I wonder if this counts as exercise.","","","","" -"600083294043049984","","","2015-05-17 23:39:40 +0000","Twitterrific","Roller coasters, man. http://t.co/inzBrWTnRm","","","","https://twitter.com/_sjs/status/600083294043049984/photo/1" -"600052155777712129","","","2015-05-17 21:35:57 +0000","Twitterrific","RT @jviereck: @brianleroux depends. If you want to ""know"" about the error, move it into the store. If it is an ActionCreator impl detail, k…","600034759155261441","90029379","2015-05-17 20:26:49 +0000","" -"600052148852883456","","","2015-05-17 21:35:55 +0000","Twitterrific","RT @ericclemmons: @brianleroux For the most part, errors live alongside their models. Global error store listens to my API/HttpActions err…","599978917764534273","14457722","2015-05-17 16:44:55 +0000","" -"600052135783432193","","","2015-05-17 21:35:52 +0000","Twitterrific","RT @AaronKalair: @brianleroux I'm currently using a single ErrorStore that listens for all the failure actions and an ErrorComponent that d…","599957695463030785","10909152","2015-05-17 15:20:35 +0000","" -"600052123150200833","","","2015-05-17 21:35:49 +0000","Twitterrific","RT @jusrin00: @brianleroux haven't seen anyone post a ""definitive"" answer. i use ErrorActions which get consumed for reconciling, logging, …","599957447260831745","1361017273","2015-05-17 15:19:36 +0000","" -"600052101998338048","","","2015-05-17 21:35:44 +0000","Twitterrific","RT @BrianDiPalma1: @brianleroux State is state, why should errors be any different?","599944617849683968","1732200428","2015-05-17 14:28:37 +0000","" -"599962650953453568","","","2015-05-17 15:40:17 +0000","Twitterrific","RT @b3ll: Click Wheel Keyboard is now available on the App Store (for free! Yay free!)! 🎉 +"600083399815008256","","","2015-05-17 23:40:06 +0000","Twitterrific for iOS","I wonder if this counts as exercise.","","","","" +"600083294043049984","","","2015-05-17 23:39:40 +0000","Twitterrific for iOS","Roller coasters, man. http://t.co/inzBrWTnRm","","","","https://twitter.com/_sjs/status/600083294043049984/photo/1" +"600052155777712129","","","2015-05-17 21:35:57 +0000","Twitterrific for iOS","RT @jviereck: @brianleroux depends. If you want to ""know"" about the error, move it into the store. If it is an ActionCreator impl detail, k…","600034759155261441","90029379","2015-05-17 20:26:49 +0000","" +"600052148852883456","","","2015-05-17 21:35:55 +0000","Twitterrific for iOS","RT @ericclemmons: @brianleroux For the most part, errors live alongside their models. Global error store listens to my API/HttpActions err…","599978917764534273","14457722","2015-05-17 16:44:55 +0000","" +"600052135783432193","","","2015-05-17 21:35:52 +0000","Twitterrific for iOS","RT @AaronKalair: @brianleroux I'm currently using a single ErrorStore that listens for all the failure actions and an ErrorComponent that d…","599957695463030785","10909152","2015-05-17 15:20:35 +0000","" +"600052123150200833","","","2015-05-17 21:35:49 +0000","Twitterrific for iOS","RT @jusrin00: @brianleroux haven't seen anyone post a ""definitive"" answer. i use ErrorActions which get consumed for reconciling, logging, …","599957447260831745","1361017273","2015-05-17 15:19:36 +0000","" +"600052101998338048","","","2015-05-17 21:35:44 +0000","Twitterrific for iOS","RT @BrianDiPalma1: @brianleroux State is state, why should errors be any different?","599944617849683968","1732200428","2015-05-17 14:28:37 +0000","" +"599962650953453568","","","2015-05-17 15:40:17 +0000","Twitterrific for iOS","RT @b3ll: Click Wheel Keyboard is now available on the App Store (for free! Yay free!)! 🎉 https://t.co/ejkNDIgDuM https://t.co/uXFD6zU9wH","599948990214344704","17611623","2015-05-17 14:46:00 +0000","https://appsto.re/us/1ZAm7.i,https://youtube.com/watch?v=RdaE3b_uAiw,https://appsto.re/us/1ZAm7.i,https://youtube.com/watch?v=RdaE3b_uAiw" -"599943679026028545","","","2015-05-17 14:24:54 +0000","Twitterrific","RT @brianleroux: In Flux parlance, where should error state live? (Should a Store have an errors attr for example?) For example, what if th…","599942305118846978","676363","2015-05-17 14:19:26 +0000","" -"599943662764720128","599942305118846978","676363","2015-05-17 14:24:50 +0000","Twitterrific","@brianleroux Please retweet the good replies. I’m curious too.","","","","" -"599714013761638400","","","2015-05-16 23:12:17 +0000","Twitterrific","Visiting @TourCNTower and it’s almost as much fun as the airport! Standing in a security line. Terrible experience. http://t.co/DSEN9BE6vK","","","","https://twitter.com/_sjs/status/599714013761638400/photo/1" +"599943679026028545","","","2015-05-17 14:24:54 +0000","Twitterrific for iOS","RT @brianleroux: In Flux parlance, where should error state live? (Should a Store have an errors attr for example?) For example, what if th…","599942305118846978","676363","2015-05-17 14:19:26 +0000","" +"599943662764720128","599942305118846978","676363","2015-05-17 14:24:50 +0000","Twitterrific for iOS","@brianleroux Please retweet the good replies. I’m curious too.","","","","" +"599714013761638400","","","2015-05-16 23:12:17 +0000","Twitterrific for iOS","Visiting @TourCNTower and it’s almost as much fun as the airport! Standing in a security line. Terrible experience. http://t.co/DSEN9BE6vK","","","","https://twitter.com/_sjs/status/599714013761638400/photo/1" "599703204616536064","","","2015-05-16 22:29:20 +0000","Instapaper","In pursuit of building blocks and the Big Idea http://t.co/pBonH0mAZy via @instapaper","","","","http://www.imore.com/pursuit-building-blocks-and-big-idea" -"599439118729285632","","","2015-05-16 04:59:57 +0000","Twitterrific","I don’t even like setting this alarm. Never mind waking up to it. http://t.co/wMLkI0yG0D","","","","https://twitter.com/_sjs/status/599439118729285632/photo/1" -"599307835105677312","","","2015-05-15 20:18:17 +0000","Twitterrific","I suspect that people who think Siri is better on the watch than the phone haven’t used Siri on the phone in a while. Seems the same to me.","","","","" -"599285921767297025","","","2015-05-15 18:51:12 +0000","Tweetbot for Mac","When my watch taps me while I’m at my computer I now glance at the time to see if it’s ten-to-whatever.","","","","" -"599199477304397824","","","2015-05-15 13:07:42 +0000","Twitterrific","RT @SavedYouAClick: Eating too much. (Reverse it by not eating so much) RT @VitalsLH: Here's why your goodbod became a dadbod (and how to r…","599176895331172354","2480079168","2015-05-15 11:37:58 +0000","" -"599198752138629120","","","2015-05-15 13:04:49 +0000","Twitterrific","RT @iamdevloper: “So what do you do?”, +"599439118729285632","","","2015-05-16 04:59:57 +0000","Twitterrific for iOS","I don’t even like setting this alarm. Never mind waking up to it. http://t.co/wMLkI0yG0D","","","","https://twitter.com/_sjs/status/599439118729285632/photo/1" +"599307835105677312","","","2015-05-15 20:18:17 +0000","Twitterrific for iOS","I suspect that people who think Siri is better on the watch than the phone haven’t used Siri on the phone in a while. Seems the same to me.","","","","" +"599285921767297025","","","2015-05-15 18:51:12 +0000","Tweetbot for Mac","When my watch taps me while I’m at my computer I now glance at the time to see if it’s ten-to-whatever.","","","","" +"599199477304397824","","","2015-05-15 13:07:42 +0000","Twitterrific for iOS","RT @SavedYouAClick: Eating too much. (Reverse it by not eating so much) RT @VitalsLH: Here's why your goodbod became a dadbod (and how to r…","599176895331172354","2480079168","2015-05-15 11:37:58 +0000","" +"599198752138629120","","","2015-05-15 13:04:49 +0000","Twitterrific for iOS","RT @iamdevloper: “So what do you do?”, “I’m actually an architect”, “That’s awesome, what sorts of things do you architect?”, “Experienc…","599158651723587584","564919357","2015-05-15 10:25:29 +0000","" -"598994369262129152","","","2015-05-14 23:32:41 +0000","Tweetbot for Mac","I’m through with casting NSInteger and NSUInteger and memorizing format specifiers. Using %@ and @(n) for logging ints.","","","","" -"598920816265338880","598919953417379840","6927562","2015-05-14 18:40:24 +0000","Tweetbot for Mac","@thomasfuchs The other day I had to run `killall Dock` to make Mission Control work again. +"598994369262129152","","","2015-05-14 23:32:41 +0000","Tweetbot for Mac","I’m through with casting NSInteger and NSUInteger and memorizing format specifiers. Using %@ and @(n) for logging ints.","","","","" +"598920816265338880","598919953417379840","6927562","2015-05-14 18:40:24 +0000","Tweetbot for Mac","@thomasfuchs The other day I had to run `killall Dock` to make Mission Control work again. It’s fine. Everything is totally fine.","","","","" -"598916875901276160","","","2015-05-14 18:24:45 +0000","Tweetbot for Mac","[error][tid:com.facebook.React.JavaScript] ""#CLOWNTOWN (error while displaying error): Network request failed""","","","","" -"598865488895037440","","","2015-05-14 15:00:33 +0000","Twitterrific","RT @davatron5000: 2010: The Web sucks because you can't use custom fonts. +"598916875901276160","","","2015-05-14 18:24:45 +0000","Tweetbot for Mac","[error][tid:com.facebook.React.JavaScript] ""#CLOWNTOWN (error while displaying error): Network request failed""","","","","" +"598865488895037440","","","2015-05-14 15:00:33 +0000","Twitterrific for iOS","RT @davatron5000: 2010: The Web sucks because you can't use custom fonts. 2015: The Web sucks because you have to wait for custom fonts.","598854150911369217","14839862","2015-05-14 14:15:30 +0000","" -"598620423471763456","","","2015-05-13 22:46:45 +0000","Twitterrific","RT @honest_update: Currently reading Wikipedia page on CAP theorem.","598617751431712769","3033204133","2015-05-13 22:36:08 +0000","" -"598569070552752128","598568768281845760","10434442","2015-05-13 19:22:41 +0000","Twitterrific","@cheald Austin?","","","","" -"598568498462261248","598554859076386816","10434442","2015-05-13 19:20:25 +0000","Twitterrific","@cheald I’m engaging with your tweet. Your klout score just went up. #winning","","","","" -"598369365541593088","","","2015-05-13 06:09:08 +0000","Twitterrific","RT @AirspeedSwift: And the prize for built-in type with most novelty behaviour goes to… doubly nested implicit optionals. http://t.co/dk9co…","597014483580690432","2550058153","2015-05-09 12:25:19 +0000","https://twitter.com/AirspeedSwift/status/597014483580690432/photo/1" -"598322185812381697","598291147778183168","18247541","2015-05-13 03:01:40 +0000","Twitterrific","@tapbot_paul Do you use Chrome? Chrome halves my battery. I see 5-8 hours of real use using Safari.","","","","" -"598321582218481665","","","2015-05-13 02:59:16 +0000","Twitterrific","RT @channingwalton: “Estimate?” +"598620423471763456","","","2015-05-13 22:46:45 +0000","Twitterrific for iOS","RT @honest_update: Currently reading Wikipedia page on CAP theorem.","598617751431712769","3033204133","2015-05-13 22:36:08 +0000","" +"598569070552752128","598568768281845760","10434442","2015-05-13 19:22:41 +0000","Twitterrific for iOS","@cheald Austin?","","","","" +"598568498462261248","598554859076386816","10434442","2015-05-13 19:20:25 +0000","Twitterrific for iOS","@cheald I’m engaging with your tweet. Your klout score just went up. #winning","","","","" +"598369365541593088","","","2015-05-13 06:09:08 +0000","Twitterrific for iOS","RT @AirspeedSwift: And the prize for built-in type with most novelty behaviour goes to… doubly nested implicit optionals. http://t.co/dk9co…","597014483580690432","2550058153","2015-05-09 12:25:19 +0000","https://twitter.com/AirspeedSwift/status/597014483580690432/photo/1" +"598322185812381697","598291147778183168","18247541","2015-05-13 03:01:40 +0000","Twitterrific for iOS","@tapbot_paul Do you use Chrome? Chrome halves my battery. I see 5-8 hours of real use using Safari.","","","","" +"598321582218481665","","","2015-05-13 02:59:16 +0000","Twitterrific for iOS","RT @channingwalton: “Estimate?” “Why?” “For the plan!” “And when I’m wrong?” @@ -1871,22 +1972,22 @@ It’s fine. Everything is totally fine.","","","","" “1 year.” “Unacceptab…","591672083370921984","17779075","2015-04-24 18:36:32 +0000","" "597949265164414976","","","2015-05-12 02:19:48 +0000","Mobile Web","This was my favourite part too. http://t.co/7vaYs9f2qu via @mashable","","","","http://mashable.com/2015/05/11/stannis-baratheon-grammar/#:eyJzIjoidCIsImkiOiJfemJjaWJsZ3RpMW0zaHBiZiJ9" -"597811800659206144","","","2015-05-11 17:13:34 +0000","Twitterrific","RT @tenderlove: I got some good numbers about gem usage information, but I'd like more. Please read this! <3<3<3 https://t.co/R5g4aVlr6M","597773625400242176","14761655","2015-05-11 14:41:53 +0000","https://github.com/tenderlove/gem_survey,https://github.com/tenderlove/gem_survey" -"597343185719799808","","","2015-05-10 10:11:28 +0000","Twitterrific","RT @Amazing_Maps: Population distribution of the US in units of Canadas http://t.co/3yczXTgXJc","597312550297010176","1571270053","2015-05-10 08:09:44 +0000","https://twitter.com/Amazing_Maps/status/597312550297010176/photo/1,https://twitter.com/Amazing_Maps/status/597312550297010176/photo/1" +"597811800659206144","","","2015-05-11 17:13:34 +0000","Twitterrific for iOS","RT @tenderlove: I got some good numbers about gem usage information, but I'd like more. Please read this! <3<3<3 https://t.co/R5g4aVlr6M","597773625400242176","14761655","2015-05-11 14:41:53 +0000","https://github.com/tenderlove/gem_survey,https://github.com/tenderlove/gem_survey" +"597343185719799808","","","2015-05-10 10:11:28 +0000","Twitterrific for iOS","RT @Amazing_Maps: Population distribution of the US in units of Canadas http://t.co/3yczXTgXJc","597312550297010176","1571270053","2015-05-10 08:09:44 +0000","https://twitter.com/Amazing_Maps/status/597312550297010176/photo/1,https://twitter.com/Amazing_Maps/status/597312550297010176/photo/1" "597102996451774465","","","2015-05-09 18:17:02 +0000","Tweetbot for iΟS","OH: ""It stinks in there and the lights hurt my brain. I don't like it. It gives me a headache. It's worse than Walmart.""","","","","" "596943183554023424","","","2015-05-09 07:42:00 +0000","Instapaper","28 Apple Watch tips and tricks you should know http://t.co/UxnTy54zF5 via @instapaper","","","","http://www.imore.com/28-apple-watch-tips-and-tricks-you-should-know" -"596723154833182720","","","2015-05-08 17:07:41 +0000","Tweetbot for Mac","It’s hard to be mad at @SlackHQ for this one. Never fun to have to suggest something awful to your users. http://t.co/6ongp83vHB","","","","http://static.samhuri.net/screenshot_2015-05-08_at_10.04.39_AM.png" +"596723154833182720","","","2015-05-08 17:07:41 +0000","Tweetbot for Mac","It’s hard to be mad at @SlackHQ for this one. Never fun to have to suggest something awful to your users. http://t.co/6ongp83vHB","","","","http://static.samhuri.net/screenshot_2015-05-08_at_10.04.39_AM.png" "596324939923259393","596321668034859008","805062","2015-05-07 14:45:19 +0000","Tweetbot for iΟS","@dejager The same thing we do every day, pinky.","","","","" -"596082860383014913","","","2015-05-06 22:43:23 +0000","Tweetbot for Mac","Long press is not force touch. +"596082860383014913","","","2015-05-06 22:43:23 +0000","Tweetbot for Mac","Long press is not force touch. Long press is not force touch. Long press is not force touch.","","","","" "596065205970317312","596063774693548032","14308739","2015-05-06 21:33:14 +0000","Tweetbot for iΟS","@cheerskevin Yeah, it really is unfortunate :(","","","","" -"596061713331408897","596061275702075393","14308739","2015-05-06 21:19:21 +0000","Tweetbot for Mac","@cheerskevin Yeah unfortunately it’s the pragmatic call to make. The web can be hostile because people are jerks :(","","","","" -"596058659228033025","596058222416498690","14308739","2015-05-06 21:07:13 +0000","Tweetbot for Mac","@cheerskevin However the Safari devs have chosen to set it, so if you’re making a website you cannot choose.","","","","" -"596058540621467648","","","2015-05-06 21:06:44 +0000","Tweetbot for Mac","RT @thenatekirby: @_sjs that’s WELL above the average ad network scumbaggery.","596058402532552704","1628814223","2015-05-06 21:06:12 +0000","" -"596058489811677184","596058222416498690","14308739","2015-05-06 21:06:32 +0000","Tweetbot for Mac","@cheerskevin There’s a flag on UIWebView named mediaPlaybackRequiresUserAction which controls that behaviour. App devs can choose.","","","","" -"596058114689925120","","","2015-05-06 21:05:03 +0000","Tweetbot for Mac","This is some real dirty scumbaggery. Shame on them.","","","","" -"596058014559309824","","","2015-05-06 21:04:39 +0000","Tweetbot for Mac","Looks like including the AdMob/Doubleclick SDK in your iOS app can cause videos in web views to autoplay, even when explicitly disabled.","","","","" +"596061713331408897","596061275702075393","14308739","2015-05-06 21:19:21 +0000","Tweetbot for Mac","@cheerskevin Yeah unfortunately it’s the pragmatic call to make. The web can be hostile because people are jerks :(","","","","" +"596058659228033025","596058222416498690","14308739","2015-05-06 21:07:13 +0000","Tweetbot for Mac","@cheerskevin However the Safari devs have chosen to set it, so if you’re making a website you cannot choose.","","","","" +"596058540621467648","","","2015-05-06 21:06:44 +0000","Tweetbot for Mac","RT @thenatekirby: @_sjs that’s WELL above the average ad network scumbaggery.","596058402532552704","1628814223","2015-05-06 21:06:12 +0000","" +"596058489811677184","596058222416498690","14308739","2015-05-06 21:06:32 +0000","Tweetbot for Mac","@cheerskevin There’s a flag on UIWebView named mediaPlaybackRequiresUserAction which controls that behaviour. App devs can choose.","","","","" +"596058114689925120","","","2015-05-06 21:05:03 +0000","Tweetbot for Mac","This is some real dirty scumbaggery. Shame on them.","","","","" +"596058014559309824","","","2015-05-06 21:04:39 +0000","Tweetbot for Mac","Looks like including the AdMob/Doubleclick SDK in your iOS app can cause videos in web views to autoplay, even when explicitly disabled.","","","","" "596051911087759360","","","2015-05-06 20:40:24 +0000","Twitter Web Client","RT @AppCamp4Girls: @Padraig There are still a few spots left for App Camp Vancouver July 6-10. Can you help us spread the word? :-) http://…","596012161756868609","633308082","2015-05-06 18:02:27 +0000","http://ac4g.net/AC4Gapply" "595963599455064064","","","2015-05-06 14:49:29 +0000","Tweetbot for iΟS","RT @bwebster: New 10.10 API discovery of the day: os_trace(). Record small strings which are included in crash reports. Track activities ac…","595736654515679232","8203272","2015-05-05 23:47:41 +0000","" "595808604923502592","595808265923121156","894911","2015-05-06 04:33:35 +0000","Tweetbot for iΟS","@JimRoepcke @BaileyLAKings Gotta see the overhead. That angle isn't good.","","","","" @@ -1898,7 +1999,7 @@ Long press is not force touch.","","","","" "595238068367466496","","","2015-05-04 14:46:29 +0000","Tweetbot for iΟS","RT @cheerskevin: Whipped up a script to track Reddit homepage position (I'm too excited!) https://t.co/gHB1oqQrW9","595132979132895232","14308739","2015-05-04 07:48:53 +0000","https://gist.github.com/gisikw/947d579dd4789b11dead,https://gist.github.com/gisikw/947d579dd4789b11dead" "595238012360855552","","","2015-05-04 14:46:15 +0000","Tweetbot for iΟS","RT @NerdyAndQuirky: I can't believe how cool @cheerskevin is. I ask him how to learn how to code and he makes this awesome video. https://t…","595046432295546880","295418725","2015-05-04 02:04:59 +0000","https://youtu.be/mvK0UzFNw1Q" -"595003806737244160","","","2015-05-03 23:15:36 +0000","Tweetbot for Mac","<pongPressGestureRecognizer> … really, storyboards? This does not inspire confidence.","","","","" +"595003806737244160","","","2015-05-03 23:15:36 +0000","Tweetbot for Mac","<pongPressGestureRecognizer> … really, storyboards? This does not inspire confidence.","","","","" "594898292741251072","","","2015-05-03 16:16:20 +0000","Tweetbot for iΟS","Remember how much better a discman was with a remote? Watches are like wireless remotes for phones.","","","","" "594754219929776128","","","2015-05-03 06:43:50 +0000","Tweetbot for iΟS","So many trees. It's nice to be home! BC is the best. 🗽✈️🌄🌲","","","","" "594730412682842112","","","2015-05-03 05:09:14 +0000","Tweetbot for iΟS","This NEXUS pass is great when there's no secondary screening. Coming back to into Canada is a breeze.","","","","" @@ -1906,17 +2007,16 @@ https://t…","595046432295546880","295418725","2015-05-04 02:04:59 +0000","http why isn't this illegal yet?","594715612837912578","3655191","2015-05-03 04:10:26 +0000","" "594524440349843456","","","2015-05-02 15:30:46 +0000","Tweetbot for iΟS","RT @timbray: If you have one of those Internet-connected TVs, you might want to go unhook it, right now: http://t.co/E4pRqgWyk1","594522649901961216","1235521","2015-05-02 15:23:40 +0000","http://blog.acolyer.org/2015/04/23/from-the-aether-to-the-ethernet-attacking-the-internet-using-broadcast-digital-television/,http://blog.acolyer.org/2015/04/23/from-the-aether-to-the-ethernet-attacking-the-internet-using-broadcast-digital-television/" -"594485855059898368","","","2015-05-02 12:57:27 +0000","Tweetbot for Mac","Why not just call it map then? The project’s name is Objective-Shorthand for crying out loud. http://t.co/4US9C2PqSJ","","","","https://twitter.com/_sjs/status/594485855059898368/photo/1" +"594485855059898368","","","2015-05-02 12:57:27 +0000","Tweetbot for Mac","Why not just call it map then? The project’s name is Objective-Shorthand for crying out loud. http://t.co/4US9C2PqSJ","","","","https://twitter.com/_sjs/status/594485855059898368/photo/1" "594353235755933697","594297146901331970","193929442","2015-05-02 04:10:28 +0000","Tweetbot for iΟS","@mollymcnearney @DrPizza Found myself doing that with the Pebble & Moto360. If it's any consolation I felt like an idiot afterwards. Habits.","","","","" "594107281651937280","","","2015-05-01 11:53:08 +0000","Tweetbot for iΟS","Nobody goes up from the 10th floor. http://t.co/oPkMk9xQeX","","","","https://twitter.com/_sjs/status/594107281651937280/photo/1" "594100566021779456","","","2015-05-01 11:26:27 +0000","Twitter for iPad","RT @peterc: Whether you share or not, #talkpay is a hashtag that deserves attention and is also interesting. People are talking about what …","594092998650155008","33493","2015-05-01 10:56:23 +0000","" -"593791289944047616","","","2015-04-30 14:57:30 +0000","Tweetbot for Mac","RT @MacRumors: Early Looks Inside Apple Watch's S1 Chip Confirm 512 MB RAM, Unexpected Suppliers http://t.co/72tMHQl0wV by @eslivka http://…","593788779711758336","14861285","2015-04-30 14:47:31 +0000","http://www.macrumors.com/2015/04/30/apple-watch-s1-512mb-ram/,http://www.macrumors.com/2015/04/30/apple-watch-s1-512mb-ram/,https://twitter.com/MacRumors/status/593788779711758336/photo/1" -"593787082126024704","","","2015-04-30 14:40:47 +0000","Tweetbot for Mac","RT @dlpasco: Manually entering my password on the Apple Store App to verify shipping status instead of using Touch ID ಠ_ಠ","593773774526230528","798408","2015-04-30 13:47:54 +0000","" -"593749884773257216","","","2015-04-30 12:12:58 +0000","Twitter for iPad","RT @cgpgrey: There are no words to express how much I hate, and how user unfriendly, the YouTube autoplay feature is.","593693675777040384","176774540","2015-04-30 08:29:37 +0000","" +"593791289944047616","","","2015-04-30 14:57:30 +0000","Tweetbot for Mac","RT @MacRumors: Early Looks Inside Apple Watch's S1 Chip Confirm 512 MB RAM, Unexpected Suppliers http://t.co/72tMHQl0wV by @eslivka http://…","593788779711758336","14861285","2015-04-30 14:47:31 +0000","http://www.macrumors.com/2015/04/30/apple-watch-s1-512mb-ram/,http://www.macrumors.com/2015/04/30/apple-watch-s1-512mb-ram/,https://twitter.com/MacRumors/status/593788779711758336/photo/1" +"593787082126024704","","","2015-04-30 14:40:47 +0000","Tweetbot for Mac","RT @dlpasco: Manually entering my password on the Apple Store App to verify shipping status instead of using Touch ID ಠ_ಠ","593773774526230528","798408","2015-04-30 13:47:54 +0000","" "593746834046189568","593716027269226496","17535637","2015-04-30 12:00:51 +0000","Twitter for iPad","@apalancat @Twitterrific Very nice! Using [^#]* instead of .* might perform better. Not sure how much it matters for this usage though.","","","","" -"593541192173912065","","","2015-04-29 22:23:42 +0000","Tweetbot for Mac","A lot of apps won’t make sense for the watch. Resist the urge to put everything on the watch just because it can be done.","","","","" -"593541082773852161","","","2015-04-29 22:23:16 +0000","Tweetbot for Mac","RT @jellybeansoup: i just don’t see a way that the interaction would make sense. dense apps are the worst experience.","593539935023431680","17606949","2015-04-29 22:18:42 +0000","" -"593541073017958400","","","2015-04-29 22:23:13 +0000","Tweetbot for Mac","RT @jellybeansoup: not 24 hours after getting my apple watch, i can all but guarantee that @gifwrapped won’t be getting a watch app.","593539509263859712","17606949","2015-04-29 22:17:01 +0000","" +"593541192173912065","","","2015-04-29 22:23:42 +0000","Tweetbot for Mac","A lot of apps won’t make sense for the watch. Resist the urge to put everything on the watch just because it can be done.","","","","" +"593541082773852161","","","2015-04-29 22:23:16 +0000","Tweetbot for Mac","RT @jellybeansoup: i just don’t see a way that the interaction would make sense. dense apps are the worst experience.","593539935023431680","17606949","2015-04-29 22:18:42 +0000","" +"593541073017958400","","","2015-04-29 22:23:13 +0000","Tweetbot for Mac","RT @jellybeansoup: not 24 hours after getting my apple watch, i can all but guarantee that @gifwrapped won’t be getting a watch app.","593539509263859712","17606949","2015-04-29 22:17:01 +0000","" "593247825053556739","","","2015-04-29 02:57:58 +0000","Twitter Web Client","“Single port is just fine, if you need many ports to use your computer today, you are doing it all wrong."" http://t.co/X8sKjbsD3g","","","","https://twitter.com/_sjs/status/593247825053556739/photo/1" "592762017532006401","","","2015-04-27 18:47:32 +0000","Tweetbot for iΟS","RT @The_Fischbowl: On April 20, 1907, Pierre and Marie Curie isolated radium for the first time. http://t.co/F6ptyvFh1d (via @LaphamsQuart)…","590243924062638081","291746508","2015-04-20 20:01:32 +0000","http://bit.ly/1QaJkQz,http://bit.ly/1QaJkQz" "592679646698852352","","","2015-04-27 13:20:13 +0000","Tweetbot for iΟS","RT @9to5mac: Apple moves to third-generation Siri back-end, built on open-source Mesos platform http://t.co/gTtaIvEyzX","592667465680822274","15944436","2015-04-27 12:31:49 +0000","http://wp.me/p1xtr9-1A5R,http://wp.me/p1xtr9-1A5R" @@ -1924,7 +2024,7 @@ why isn't this illegal yet?","594715612837912578","3655191","2015-05-03 04:10:26 "592000669420113922","591985066181431297","40273","2015-04-25 16:22:13 +0000","Tweetbot for iΟS","@benthompson My steel with black sport band shipped a few hours ago. To Canada. There is hope!","","","","" "591779224857366529","","","2015-04-25 01:42:16 +0000","Tweetbot for iΟS","RT @settern: Two-tone glory. http://t.co/P4Cp1OwKD6","591774302808051713","14957252","2015-04-25 01:22:43 +0000","https://twitter.com/settern/status/591774302808051713/photo/1,https://twitter.com/settern/status/591774302808051713/photo/1" "591731495791824896","591710268415029248","41783","2015-04-24 22:32:37 +0000","Tweetbot for iΟS","@mantia Woof is a reality. http://t.co/u1yhGCZ4dJ","","","","http://m.youtube.com/watch?v=8wfG8ngFvPk" -"591624213187801088","","","2015-04-24 15:26:18 +0000","Tweetbot for Mac","Has anyone installed the iMac Graphics Update 10.10.3? How did it go?","","","","" +"591624213187801088","","","2015-04-24 15:26:18 +0000","Tweetbot for Mac","Has anyone installed the iMac Graphics Update 10.10.3? How did it go?","","","","" "591499436288643074","","","2015-04-24 07:10:29 +0000","Tweetbot for iΟS","RT @stroughtonsmith: The Watch’s armv7k CPU was added to the dev tools in 2011, which fits with the timeline. I imagine it’s something here…","591466894915280896","15267898","2015-04-24 05:01:11 +0000","" "591301562825322498","591211215046713344","50288691","2015-04-23 18:04:13 +0000","Tweetbot for iΟS","@Lottejackson @adactio Is that a 7110?!","","","","" "591088007710519296","","","2015-04-23 03:55:37 +0000","Tweetbot for iΟS","RT @Adriansweather: Another absolutely incredible image from the volcano eruption in Chile via @lopezdoriga http://t.co/OwWzLztRjS","591076500025319424","129245360","2015-04-23 03:09:53 +0000","https://twitter.com/Adriansweather/status/591076500025319424/photo/1,https://twitter.com/Adriansweather/status/591076500025319424/photo/1" @@ -1935,13 +2035,13 @@ why isn't this illegal yet?","594715612837912578","3655191","2015-05-03 04:10:26 "590417663563706369","","","2015-04-21 07:31:55 +0000","Tweetbot for iΟS","Inspired by my last retweet, a magnificent command line tool: https://t.co/5uQt4cgLrW","","","","https://github.com/nvbn/thefuck" "590417388027318272","","","2015-04-21 07:30:49 +0000","Twitter Lite","RT @liamosaur: Favourite thing in my .bashrc remains: alias fuck='sudo $(history -p \!\!)' http://t.co/gCRF9RLvHL","506975850596536320","36612360","2014-09-03 01:23:56 +0000","https://twitter.com/liamosaur/status/506975850596536320/photo/1,https://twitter.com/liamosaur/status/506975850596536320/photo/1" -"589468306744053760","","","2015-04-18 16:39:30 +0000","Twitterrific","RT @arstechnica: Op-ed: Why the entire premise of Tor-enabled routers is ridiculous http://t.co/2AszWWRgfV","589446054296231939","717313","2015-04-18 15:11:05 +0000","http://ars.to/1aDQKL3,http://ars.to/1aDQKL3" -"589125819416518656","589086081015906305","108814849","2015-04-17 17:58:35 +0000","Tweetbot for Mac","@snarfmason Yeah it’s a good point, there certainly could be big disadvantages for some folks.","","","","" -"589085086978478082","589083748978659331","108814849","2015-04-17 15:16:44 +0000","Twitterrific","@snarfmason Even if it works perfectly it seems crazy. I tired knuckling my phone. It’s not good.","","","","" -"589081890574839808","","","2015-04-17 15:04:01 +0000","Twitterrific","RT @9to5mac: Report: Apple planning Apple Pay launch in Canada for November http://t.co/7HSUKTn8UA http://t.co/eEz6bCgSEX","589074967192547328","15944436","2015-04-17 14:36:31 +0000","http://9to5mac.com/2015/04/17/report-apple-planning-apple-pay-launch-in-canada-for-november/,https://twitter.com/9to5mac/status/589074967192547328/photo/1,http://9to5mac.com/2015/04/17/report-apple-planning-apple-pay-launch-in-canada-for-november/,https://twitter.com/9to5mac/status/589074967192547328/photo/1" -"589075444541956097","","","2015-04-17 14:38:25 +0000","Twitterrific","RT @gisikw: @_sjs I'm waiting for elbow-based gestures.","588949996810203137","14308739","2015-04-17 06:19:56 +0000","" +"589468306744053760","","","2015-04-18 16:39:30 +0000","Twitterrific for iOS","RT @arstechnica: Op-ed: Why the entire premise of Tor-enabled routers is ridiculous http://t.co/2AszWWRgfV","589446054296231939","717313","2015-04-18 15:11:05 +0000","http://ars.to/1aDQKL3,http://ars.to/1aDQKL3" +"589125819416518656","589086081015906305","108814849","2015-04-17 17:58:35 +0000","Tweetbot for Mac","@snarfmason Yeah it’s a good point, there certainly could be big disadvantages for some folks.","","","","" +"589085086978478082","589083748978659331","108814849","2015-04-17 15:16:44 +0000","Twitterrific for iOS","@snarfmason Even if it works perfectly it seems crazy. I tired knuckling my phone. It’s not good.","","","","" +"589081890574839808","","","2015-04-17 15:04:01 +0000","Twitterrific for iOS","RT @9to5mac: Report: Apple planning Apple Pay launch in Canada for November http://t.co/7HSUKTn8UA http://t.co/eEz6bCgSEX","589074967192547328","15944436","2015-04-17 14:36:31 +0000","http://9to5mac.com/2015/04/17/report-apple-planning-apple-pay-launch-in-canada-for-november/,https://twitter.com/9to5mac/status/589074967192547328/photo/1,http://9to5mac.com/2015/04/17/report-apple-planning-apple-pay-launch-in-canada-for-november/,https://twitter.com/9to5mac/status/589074967192547328/photo/1" +"589075444541956097","","","2015-04-17 14:38:25 +0000","Twitterrific for iOS","RT @gisikw: @_sjs I'm waiting for elbow-based gestures.","588949996810203137","14308739","2015-04-17 06:19:56 +0000","" "588943690619457536","","","2015-04-17 05:54:52 +0000","iOS","No thank you. http://t.co/9YnRhtpq8g http://t.co/dmHwUdPkPx","","","","http://arstechnica.com/gadgets/2015/04/hands-on-with-the-p8-huaweis-latest-attempt-to-win-over-the-west/,https://twitter.com/_sjs/status/588943690619457536/photo/1" -"588914470744784896","","","2015-04-17 03:58:45 +0000","Tweetbot for Mac","RT @raganwald: HOLY SHIT @ScanBC: Entire dock #SquamishBC Terminals on fire, ship has moved out of port, @VanFireRescue enroute http://t.co…","588904123933859841","18137723","2015-04-17 03:17:39 +0000","https://twitter.com/the_timkay/status/588900054594813952/photo/1" +"588914470744784896","","","2015-04-17 03:58:45 +0000","Tweetbot for Mac","RT @raganwald: HOLY SHIT @ScanBC: Entire dock #SquamishBC Terminals on fire, ship has moved out of port, @VanFireRescue enroute http://t.co…","588904123933859841","18137723","2015-04-17 03:17:39 +0000","https://twitter.com/the_timkay/status/588900054594813952/photo/1" "588560739507445761","","636923","2015-04-16 04:33:09 +0000","Twitter for iPhone","@siracusa Thanks for all the reviews. I enjoyed them.","","","","" "588456565180510210","588445769335590913","784912","2015-04-15 21:39:12 +0000","Twitter for iPhone","@jsnell I'd love it if the watch tapped me with these same custom vibrations. Do you know if it does that?","","","","" "588393168615251969","","","2015-04-15 17:27:17 +0000","iOS","A sad reality. http://t.co/rAFLIZ1XOH","","","","https://twitter.com/_sjs/status/588393168615251969/photo/1" @@ -1950,8 +2050,8 @@ alias fuck='sudo $(history -p \!\!)' http://t.co/gCRF9RLvHL","506975850596536320 "588360795685134338","","","2015-04-15 15:18:39 +0000","Twitter for iPhone","RT @jamesthomson: Did a costing of two people going to WWDC, and with flights and hotels, it’s basically in the same price range as the App…","588358964238221312","14169916","2015-04-15 15:11:22 +0000","" "588228728792162304","","","2015-04-15 06:33:52 +0000","Instapaper","Building Custom React Native Components From Scratch - Modus Create http://t.co/AgqY2eiQGN via @instapaper","","","","http://moduscreate.com/react_native_custom_components_ios/" "588149135540428801","","","2015-04-15 01:17:35 +0000","Twitter for iPhone","Just another hipster today. http://t.co/cIVZGkUcDx","","","","https://twitter.com/_sjs/status/588149135540428801/photo/1" -"588118468072845312","","","2015-04-14 23:15:44 +0000","Tweetbot for Mac","My new debugging song: The Distance, by Cake. Just throw that on repeat and have at it.","","","","" -"588061453309075458","588059988519555072","385193","2015-04-14 19:29:10 +0000","Tweetbot for Mac","@jim_rutherford Haven’t seen it yet. I have the first episode somewhere though. +"588118468072845312","","","2015-04-14 23:15:44 +0000","Tweetbot for Mac","My new debugging song: The Distance, by Cake. Just throw that on repeat and have at it.","","","","" +"588061453309075458","588059988519555072","385193","2015-04-14 19:29:10 +0000","Tweetbot for Mac","@jim_rutherford Haven’t seen it yet. I have the first episode somewhere though. It’s my girlfriend’s cat, named after the artist.","","","","" "588056082083356672","","","2015-04-14 19:07:50 +0000","Twitter for iPhone","The cat is actually hunting a fly. Go Escher!","","","","" @@ -1964,23 +2064,25 @@ http://t.co/UBRvUC0ZAU http…","587881295767678977","40273","2015-04-14 07:33:1 "587281767599448067","","","2015-04-12 15:50:59 +0000","iOS","This site's name is kinda terrifying, not to mention the content. I hope the kids are ok. http://t.co/5QXqYR2HxW http://t.co/pgz4ObAFp3","","","","http://www.kididdles.com/lyrics/w108.html,https://twitter.com/_sjs/status/587281767599448067/photo/1" "587117560669212672","","","2015-04-12 04:58:29 +0000","iOS","http://t.co/I30ogz3nQz http://t.co/SJcpf5tn1S","","","","http://sixcolors.com/post/2015/04/photos-for-macs-unrestrained-icloud-uploads/,https://twitter.com/_sjs/status/587117560669212672/photo/1" "586942882713481216","","","2015-04-11 17:24:22 +0000","Twitter for iPad","RT @MrAlanCooper: A #WeekendTweet from Peanuts. http://t.co/M62SLWw057","586941273505931265","103920270","2015-04-11 17:17:59 +0000","https://twitter.com/MrAlanCooper/status/586941273505931265/photo/1,https://twitter.com/MrAlanCooper/status/586941273505931265/photo/1" -"586557858705084416","","","2015-04-10 15:54:25 +0000","Tweetbot for Mac","Everything is there on iOS. Just the Mac is broken. How does that even happen?","","","","" -"586557659744043008","","","2015-04-10 15:53:38 +0000","Tweetbot for Mac","Safari’s Reading List has been empty on my Macs for months. The data is there in ~/Library/Safari/Bookmarks.plist, but Safari ignores it.","","","","" +"586694460026658816","","","2015-04-11 00:57:14 +0000","Twitter for iPhone","RT @mdhughes: Watchhole: Jerk who stares at their #applewatch in social interactions. +Watchdinger: Jerk who has audible alerts from their w…","586672322209189889","14200945","2015-04-10 23:29:16 +0000","" +"586557858705084416","","","2015-04-10 15:54:25 +0000","Tweetbot for Mac","Everything is there on iOS. Just the Mac is broken. How does that even happen?","","","","" +"586557659744043008","","","2015-04-10 15:53:38 +0000","Tweetbot for Mac","Safari’s Reading List has been empty on my Macs for months. The data is there in ~/Library/Safari/Bookmarks.plist, but Safari ignores it.","","","","" "586437375879811072","","","2015-04-10 07:55:40 +0000","Instapaper","My Week with the Apple Watch http://t.co/jpcLdDm761 via @instapaper","","","","http://www.mensjournal.com/gear/electronics/my-week-with-the-apple-watch-20150408" "586411288479182849","586401655190503424","33423","2015-04-10 06:12:00 +0000","Twitter for iPad","@gruber Is it any good as an Apple TV remote?","","","","" "586392840671924224","","","2015-04-10 04:58:42 +0000","Instapaper","Road Tested: The Apple Watch - SELF http://t.co/1CwioquGej via @instapaper","","","","http://www.self.com/body/fitness/2015/04/apple-watch-review-fitness-wearable-workout/" "586387344334295042","","","2015-04-10 04:36:52 +0000","Instapaper","Review: The new 12-inch MacBook is a laptop without an ecosystem http://t.co/xn5MVSrst6 via @instapaper","","","","http://www.macworld.com/article/2908115/review-the-new-12-inch-macbook-is-a-laptop-without-an-ecosystem.html" -"586227909116854272","","","2015-04-09 18:03:19 +0000","Tweetbot for Mac","BRB rebooting my watch.","","","","" +"586227909116854272","","","2015-04-09 18:03:19 +0000","Tweetbot for Mac","BRB rebooting my watch.","","","","" "586227343712092161","","","2015-04-09 18:01:04 +0000","Twitter for iPhone","👍 http://t.co/PiODSvcgtB","","","","https://twitter.com/_sjs/status/586227343712092161/video/1" "586217623311888384","","","2015-04-09 17:22:27 +0000","iOS","This is what I was worried about. And it looks awful to boot. http://t.co/xn5MVSrst6 http://t.co/kATAOaoc4D","","","","http://www.macworld.com/article/2908115/review-the-new-12-inch-macbook-is-a-laptop-without-an-ecosystem.html,https://twitter.com/_sjs/status/586217623311888384/photo/1" "585919037705592833","585916768910090240","385193","2015-04-08 21:35:59 +0000","Twitter for Android","@jim_rutherford @JimRoepcke Not working on my phone but I'll vote when I'm at a computer!","","","","" -"585903665006772224","","","2015-04-08 20:34:53 +0000","Tweetbot for Mac","The @mashable app was nominated for a Webby award! Help us win :) http://t.co/X7kAR7Or2V","","","","http://pv.webbyawards.com/2015/mobile-apps/handheld-devices/news-handheld-devices" -"585862517026488320","","","2015-04-08 17:51:23 +0000","Tweetbot for Mac","It took a while to internalize block syntax, but I don’t have to refer to http://t.co/rJjRTyO3lH anymore.","","","","http://fuckingblocksyntax.com" +"585903665006772224","","","2015-04-08 20:34:53 +0000","Tweetbot for Mac","The @mashable app was nominated for a Webby award! Help us win :) http://t.co/X7kAR7Or2V","","","","http://pv.webbyawards.com/2015/mobile-apps/handheld-devices/news-handheld-devices" +"585862517026488320","","","2015-04-08 17:51:23 +0000","Tweetbot for Mac","It took a while to internalize block syntax, but I don’t have to refer to http://t.co/rJjRTyO3lH anymore.","","","","http://fuckingblocksyntax.com" "583511111900594176","","","2015-04-02 06:07:44 +0000","Instapaper","Why Amazon Has No Profits (And Why It Works) | Andreessen Horowitz http://t.co/2E8FCkUIrZ via @instapaper","","","","http://a16z.com/2014/09/05/why-amazon-has-no-profits-and-why-it-works/" "583476231674302465","","","2015-04-02 03:49:08 +0000","Twitter for iPad","I have to remember to tap a bit higher on Android.","","","","" "583476154654294017","","","2015-04-02 03:48:50 +0000","Twitter for iPad","The hardest part about trying out an Android phone is tapping. Android and iOS interpret tap points differently and I'm always missing.","","","","" "583475490259800064","","","2015-04-02 03:46:11 +0000","Twitter for iPad","RT @BenedictEvans: For hundreds of millions of people, mobile phones are not just their first computer but their first electrical device of…","583472040222404609","1236101","2015-04-02 03:32:29 +0000","" -"583399973766574080","","","2015-04-01 22:46:07 +0000","Tweetbot for Mac","Reminiscing about Xcode bugs of yore.","","","","" +"583399973766574080","","","2015-04-01 22:46:07 +0000","Tweetbot for Mac","Reminiscing about Xcode bugs of yore.","","","","" "583281244294680576","","","2015-04-01 14:54:20 +0000","Twitter for Android","RT @levie: April Fools' Day: when the tech industry announces products so ridiculous you can't tell if they're real. So, like, most days.","583118923060551680","914061","2015-04-01 04:09:19 +0000","" "583011658093596672","","","2015-03-31 21:03:05 +0000","Twitter for iPad","RT @SwiftOnSecurity: @notch Okay I forgive you notch.","583003978184568832","2436389418","2015-03-31 20:32:34 +0000","" "583011648283095040","","","2015-03-31 21:03:03 +0000","Twitter for iPad","RT @notch: @SwiftOnSecurity I didn't know it'd take off!","583003872551043072","63485337","2015-03-31 20:32:09 +0000","" @@ -1997,7 +2099,7 @@ http://t.co/UBRvUC0ZAU http…","587881295767678977","40273","2015-04-14 07:33:1 "581590355369308161","","","2015-03-27 22:55:20 +0000","Twitter Web Client","RT @potch: alias yolo='git commit -am ""DEAL WITH IT"" && git push -f origin master'","292403281349705729","15334840","2013-01-18 22:49:09 +0000","" "581590134656643072","581589991618277376","4777951","2015-03-27 22:54:28 +0000","Twitter Web Client","@snarfmason original credit: https://t.co/wCNsM4xFAT","","","","https://twitter.com/potch/status/292403281349705729" "581589991618277376","581589458580951040","108814849","2015-03-27 22:53:54 +0000","Twitter for Android","@snarfmason I alias that to $ git yolo","","","","" -"581584332726222850","","","2015-03-27 22:31:24 +0000","Tweetbot for Mac","$ edit $(git conflicts) +"581584332726222850","","","2015-03-27 22:31:24 +0000","Tweetbot for Mac","$ edit $(git conflicts) $ git add $(git conflicts) Put this in ~/bin or what have you: https://t.co/dtSbTTm20Q","","","","https://github.com/samsonjs/bin/blob/master/git-conflicts" @@ -2005,36 +2107,36 @@ Put this in ~/bin or what have you: https://t.co/dtSbTTm20Q","","","","https://g "580084460575678464","","","2015-03-23 19:11:27 +0000","Twitter for Android","RT @mikeash: @saniul LAContext's localizedFallbackTitle property.","580084149299601409","8142952","2015-03-23 19:10:13 +0000","" "580084448747753476","","","2015-03-23 19:11:24 +0000","Twitter for Android","RT @mikeash: @gte New in iOS 8/10.10 too, so there's no mitigating factor in terms of age or compatibility.","580084071772090368","8142952","2015-03-23 19:09:54 +0000","" "580084426434052096","","","2015-03-23 19:11:19 +0000","Twitter for Android","RT @mikeash: THIS IS NOT HOW YOU DESIGN APIs. A default... is used when this property is left nil. If set to empty string, the button will …","580082142631190528","8142952","2015-03-23 19:02:14 +0000","" -"579486239188877312","","","2015-03-22 03:34:20 +0000","Tweetbot for Mac","http://t.co/ukkYEd884R","","","","https://twitter.com/_sjs/status/579486239188877312/photo/1" -"579411825722204161","579409168525852672","10194392","2015-03-21 22:38:38 +0000","Tweetbot for Mac","@reneritchie Under weights, 42mm has the modern buckle but that’s 38mm only, and 42mm is missing the leather loop.","","","","" +"579486239188877312","","","2015-03-22 03:34:20 +0000","Tweetbot for Mac","http://t.co/ukkYEd884R","","","","https://twitter.com/_sjs/status/579486239188877312/photo/1" +"579411825722204161","579409168525852672","10194392","2015-03-21 22:38:38 +0000","Tweetbot for Mac","@reneritchie Under weights, 42mm has the modern buckle but that’s 38mm only, and 42mm is missing the leather loop.","","","","" "579147477401481217","579136409086361600","2897431","2015-03-21 05:08:13 +0000","Twitter for iPad","@dwiskus Dude. Buddy. Homie! http://t.co/HjpRO44Ca2","","","","http://www.youtube.com/watch?v=7AMYQTkR2UY" -"579097551405608960","","","2015-03-21 01:49:50 +0000","Tweetbot for Mac","I deleted every file on my machine with “Xcode” in the name including Xcode.app, rebooted, reinstalled, and it’s no longer building. Yay? :/","","","","" +"579097551405608960","","","2015-03-21 01:49:50 +0000","Tweetbot for Mac","I deleted every file on my machine with “Xcode” in the name including Xcode.app, rebooted, reinstalled, and it’s no longer building. Yay? :/","","","","" "579070328254558209","579069966114148353","385193","2015-03-21 00:01:39 +0000","Twitter for Android","@jim_rutherford Heh, I wish AppCode could do storyboards :(","","","","" -"579057040737181697","","","2015-03-20 23:08:51 +0000","Tweetbot for Mac","Preferences have been trashed. Deleted ~/Library/Developer entirely.","","","","" -"579056781218881536","","","2015-03-20 23:07:49 +0000","Tweetbot for Mac","Xcode won’t stop building my project. It just loops over, and over, and over. Someone please rescue me from this hell. How do I stop it?","","","","" -"578954068304883712","578952101084176384","648873","2015-03-20 16:19:40 +0000","Tweetbot for Mac","@rem git fetch —prune","","","","" -"578684622642409472","","","2015-03-19 22:29:00 +0000","Tweetbot for Mac","Finally, I can’t remove the calendars for one of my Google accounts from the calendar app on Android either. Frustrating.","","","","" -"578684083535945728","","","2015-03-19 22:26:51 +0000","Tweetbot for Mac","And apparently you can’t specify the default calendar for events scheduled via voice either. That was removed.","","","","" -"578683738747359232","","","2015-03-19 22:25:29 +0000","Tweetbot for Mac","Do I really have to “create an event for” to make this Android phone or watch schedule something in my calendar?","","","","" -"578664402590781440","578664280083554305","63636463","2015-03-19 21:08:39 +0000","Tweetbot for Mac","@jcenters That’s not a bad idea. Thanks.","","","","" -"578664153558196224","578663578401656832","63636463","2015-03-19 21:07:39 +0000","Tweetbot for Mac","@jcenters I agree that 175 F is the ideal temp for best taste. (I brew it a bit hotter these days because I like it hotter for longer.)","","","","" -"578582922162089984","578582277514510336","15267898","2015-03-19 15:44:52 +0000","Tweetbot for Mac","@stroughtonsmith Yeah I use it on my 6 at least a few times a week (and my 6+ when I use it, but that’s mostly for travel).","","","","" +"579057040737181697","","","2015-03-20 23:08:51 +0000","Tweetbot for Mac","Preferences have been trashed. Deleted ~/Library/Developer entirely.","","","","" +"579056781218881536","","","2015-03-20 23:07:49 +0000","Tweetbot for Mac","Xcode won’t stop building my project. It just loops over, and over, and over. Someone please rescue me from this hell. How do I stop it?","","","","" +"578954068304883712","578952101084176384","648873","2015-03-20 16:19:40 +0000","Tweetbot for Mac","@rem git fetch —prune","","","","" +"578684622642409472","","","2015-03-19 22:29:00 +0000","Tweetbot for Mac","Finally, I can’t remove the calendars for one of my Google accounts from the calendar app on Android either. Frustrating.","","","","" +"578684083535945728","","","2015-03-19 22:26:51 +0000","Tweetbot for Mac","And apparently you can’t specify the default calendar for events scheduled via voice either. That was removed.","","","","" +"578683738747359232","","","2015-03-19 22:25:29 +0000","Tweetbot for Mac","Do I really have to “create an event for” to make this Android phone or watch schedule something in my calendar?","","","","" +"578664402590781440","578664280083554305","63636463","2015-03-19 21:08:39 +0000","Tweetbot for Mac","@jcenters That’s not a bad idea. Thanks.","","","","" +"578664153558196224","578663578401656832","63636463","2015-03-19 21:07:39 +0000","Tweetbot for Mac","@jcenters I agree that 175 F is the ideal temp for best taste. (I brew it a bit hotter these days because I like it hotter for longer.)","","","","" +"578582922162089984","578582277514510336","15267898","2015-03-19 15:44:52 +0000","Tweetbot for Mac","@stroughtonsmith Yeah I use it on my 6 at least a few times a week (and my 6+ when I use it, but that’s mostly for travel).","","","","" "578389249122140160","","","2015-03-19 02:55:17 +0000","Twitter for Android","RT @swannodette: And let us not forget ClojureScript REPLs right into your iOS devices, sweet Ambly demo from @mfikes https://t.co/nIy2Rc6B…","578377013666414592","1819511","2015-03-19 02:06:40 +0000","https://www.youtube.com/watch?v=TVDkYZJW2MY" "578358087859376131","","","2015-03-19 00:51:28 +0000","Twitter for iPad","This damn Internet is too fast at delivering notifications and tweets. Earlier than laggy video streams. Spoiling everything.","","","","" -"578311697825337344","578311087394824192","648873","2015-03-18 21:47:07 +0000","Tweetbot for Mac","@rem Hopefully by using a server that compiles assets on the fly in dev, or a script that watches for changes & builds automatically.","","","","" +"578311697825337344","578311087394824192","648873","2015-03-18 21:47:07 +0000","Tweetbot for Mac","@rem Hopefully by using a server that compiles assets on the fly in dev, or a script that watches for changes & builds automatically.","","","","" "578272635055812608","","","2015-03-18 19:11:54 +0000","Twitter for Android","Will the Apple Watch know I'm sitting at my Mac seeing, say, mail notifications and stay quiet? I hope so.","","","","" "578027762868363264","","","2015-03-18 02:58:52 +0000","Twitter for Android","RT @davepell: Earth has been around for billions of years. The consumer Internet has been around for a few decades. All this stuff is in b…","578025842007097345","224","2015-03-18 02:51:14 +0000","" -"577945058336362496","577943748144799745","385193","2015-03-17 21:30:14 +0000","Tweetbot for Mac","@jim_rutherford ha ha, IAP only $999!","","","","" +"577945058336362496","577943748144799745","385193","2015-03-17 21:30:14 +0000","Tweetbot for Mac","@jim_rutherford ha ha, IAP only $999!","","","","" "577937911649189888","","","2015-03-17 21:01:50 +0000","Twitter for iPad","Everyone losing their mind over the price of the gold  WATCH is going to die when they see the after market options. http://t.co/LBR4cClEjI","","","","http://mashable.com/2015/03/17/diamond-studded-apple-watch/?utm_cid=mash-com-Tw-devdes-link" "577937339785216000","577934335350816768","2195241","2015-03-17 20:59:34 +0000","Twitter for iPad","@fmanjoo It's that, and not having to have an (awful to use) PVR, and bothering to program it. Or having to go the DIY PVR route.","","","","" -"577887330104532992","","","2015-03-17 17:40:50 +0000","Tweetbot for Mac","Here’s a post with screenshots by @IanGClifton. I’m talking about the analog picker. http://t.co/V1NobJ7plu","","","","http://blog.iangclifton.com/2014/01/22/mobile-time-pickers/" -"577887068245893120","","","2015-03-17 17:39:48 +0000","Tweetbot for Mac","Android 5’s UI for choosing a time for events and reminders is really good. Way better than spinning a picker on iOS.","","","","" -"577665198208618497","","","2015-03-17 02:58:10 +0000","Tweetbot for Mac","RT @darwiniandude: @johnchidgey my nose is registered Touch ID. Helpful when wearing gloves.","577664121065193472","28263734","2015-03-17 02:53:53 +0000","" -"577636436469387264","","","2015-03-17 01:03:53 +0000","Tweetbot for Mac","strftime now has a changelog. Better late than never, right? https://t.co/MM5OSM1P45","","","","https://github.com/samsonjs/strftime/blob/master/Changelog.md" -"577604748519432192","","","2015-03-16 22:57:58 +0000","Tweetbot for Mac","And I’m being pretty generous.","","","","" -"577604687802732544","","","2015-03-16 22:57:43 +0000","Tweetbot for Mac","Canadian bank app report card: +"577887330104532992","","","2015-03-17 17:40:50 +0000","Tweetbot for Mac","Here’s a post with screenshots by @IanGClifton. I’m talking about the analog picker. http://t.co/V1NobJ7plu","","","","http://blog.iangclifton.com/2014/01/22/mobile-time-pickers/" +"577887068245893120","","","2015-03-17 17:39:48 +0000","Tweetbot for Mac","Android 5’s UI for choosing a time for events and reminders is really good. Way better than spinning a picker on iOS.","","","","" +"577665198208618497","","","2015-03-17 02:58:10 +0000","Tweetbot for Mac","RT @darwiniandude: @johnchidgey my nose is registered Touch ID. Helpful when wearing gloves.","577664121065193472","28263734","2015-03-17 02:53:53 +0000","" +"577636436469387264","","","2015-03-17 01:03:53 +0000","Tweetbot for Mac","strftime now has a changelog. Better late than never, right? https://t.co/MM5OSM1P45","","","","https://github.com/samsonjs/strftime/blob/master/Changelog.md" +"577604748519432192","","","2015-03-16 22:57:58 +0000","Tweetbot for Mac","And I’m being pretty generous.","","","","" +"577604687802732544","","","2015-03-16 22:57:43 +0000","Tweetbot for Mac","Canadian bank app report card: BMO: C CIBC: F, no iPhone 6 @@ -2042,8 +2144,8 @@ Coast Capital: F, no iPhone 6 RBC: F, no iPhone 6 Scotia: B TD: F, no iPhone 6","","","","" -"577210116694409216","","","2015-03-15 20:49:50 +0000","Tweetbot for Mac","Just noticed that @iFixit is using https://t.co/uZDDEx5XFf on their site. Good stuff.","","","","https://github.com/samsonjs/strftime" -"577185299987492864","","","2015-03-15 19:11:13 +0000","Tweetbot for Mac","TL;DR It’s USB 3.0. +"577210116694409216","","","2015-03-15 20:49:50 +0000","Tweetbot for Mac","Just noticed that @iFixit is using https://t.co/uZDDEx5XFf on their site. Good stuff.","","","","https://github.com/samsonjs/strftime" +"577185299987492864","","","2015-03-15 19:11:13 +0000","Tweetbot for Mac","TL;DR It’s USB 3.0. “@arstechnica: Explaining the “USB 3.1 Gen 1” port in the Retina MacBook http://t.co/BAAajzMpgY by @AndrewWrites”","","","","http://ars.to/1b9vNZ6" "577147150477312000","","","2015-03-15 16:39:38 +0000","Twitter for Android","That's stock Android. No idea about HTC or Samsung or what have you.","","","","" @@ -2059,7 +2161,7 @@ TD: F, no iPhone 6","","","","" "576935976859090944","","","2015-03-15 02:40:30 +0000","Twitter for Android","RT @jim_rutherford: @_sjs Not really. Minnesota’s hockey team is too good!","576935853999529984","385193","2015-03-15 02:40:01 +0000","" "576908009680437248","","","2015-03-15 00:49:22 +0000","Twitter for Android","Developing theory: Minneapolis is the Edmonton of the USA.","","","","" "576871758558449664","576870105922953216","1566661","2015-03-14 22:25:19 +0000","Twitter for iPad","@ismh I can't believe there wasn't a meerkat of you shaving.","","","","" -"576811564193304576","","","2015-03-14 18:26:08 +0000","Tweetbot for Mac","HTTP/1.1 200 OK +"576811564193304576","","","2015-03-14 18:26:08 +0000","Tweetbot for Mac","HTTP/1.1 200 OK Content-Type: image/gif Connection: keep-alive Server: cat factory 1.0","","","","" @@ -2074,27 +2176,27 @@ http://t.co/FlDm1inPQp http://t.co/dPH9wwY76Y”","","","","http://garfieldminus "576765465650806784","576747992885129217","18367814","2015-03-14 15:22:57 +0000","Twitter for iPhone","@jtregunna That doesn't mean you can't eat pie either though.","","","","" "576764734998884352","576731985126653952","69426451","2015-03-14 15:20:03 +0000","Twitter for iPhone","@CaseyNewton I eat pie on March 14th and you can't stop me! ᕕ( ᐛ )ᕗ","","","","" "576525637998878720","","","2015-03-13 23:29:58 +0000","Falcon Pro 2015","Guilty as charged. Almost never. RT @SwiftOnSecurity None of you actually verify checksums.","","","","" -"576495747933196288","576495379019091968","164726768","2015-03-13 21:31:11 +0000","Tweetbot for Mac","@neilcybart I think it’s all from the app. They provide UI to do all of that while watching the stream.","","","","" -"576495371372748800","","","2015-03-13 21:29:41 +0000","Tweetbot for Mac","You thought your FOMO was already bad? Now you have to worry about missing meerkat streams.","","","","" -"576494971722731520","576492331777421312","14581738","2015-03-13 21:28:06 +0000","Tweetbot for Mac","@tolmasky LastPass is pretty bad from a UI/UX perspective. It gets the job done but I vastly prefer 1Password.","","","","" -"576493513677758464","576480112796925952","628754911","2015-03-13 21:22:19 +0000","Tweetbot for Mac","@JonaHejd @caseyliss @siracusa Did not auto-follow for me ¯\_(ツ)_/¯ +"576495747933196288","576495379019091968","164726768","2015-03-13 21:31:11 +0000","Tweetbot for Mac","@neilcybart I think it’s all from the app. They provide UI to do all of that while watching the stream.","","","","" +"576495371372748800","","","2015-03-13 21:29:41 +0000","Tweetbot for Mac","You thought your FOMO was already bad? Now you have to worry about missing meerkat streams.","","","","" +"576494971722731520","576492331777421312","14581738","2015-03-13 21:28:06 +0000","Tweetbot for Mac","@tolmasky LastPass is pretty bad from a UI/UX perspective. It gets the job done but I vastly prefer 1Password.","","","","" +"576493513677758464","576480112796925952","628754911","2015-03-13 21:22:19 +0000","Tweetbot for Mac","@JonaHejd @caseyliss @siracusa Did not auto-follow for me ¯\_(ツ)_/¯ To me it seems like a purpose-built live streaming Twitter client.","","","","" -"576492107172429824","576469626529284096","14538248","2015-03-13 21:16:43 +0000","Tweetbot for Mac","@robynpeterson @gittrich YES! I’m so glad someone got pile of poo 💩","","","","" -"576440863951204352","","","2015-03-13 17:53:06 +0000","Tweetbot for Mac","@mrjjwright Or even something like the plist editor in Xcode. Or a better text format. Lots of better alternatives.","","","","" -"576440002436993024","576436765915013120","14308739","2015-03-13 17:49:40 +0000","Tweetbot for Mac","@gisikw TOML looks promising but doesn’t appear to have caught on very much. The TOML gem I tried was really slow.","","","","" -"576439758118789120","576436765915013120","14308739","2015-03-13 17:48:42 +0000","Tweetbot for Mac","@gisikw Having loops and such can be nice. I can see that working out well with the optional commas and all that.","","","","" -"576435977775755265","","","2015-03-13 17:33:41 +0000","Tweetbot for Mac","JSON is a decent transport but I don’t like this trend of using it for config files and other things edited by humans. It’s not good.","","","","" -"576432221730422784","576431650160017408","19312115","2015-03-13 17:18:45 +0000","Tweetbot for Mac","@panzer Hallelujah.","","","","" -"576432179254677504","","","2015-03-13 17:18:35 +0000","Tweetbot for Mac","RT @panzer: This is my number one biggest iOS annoyance. So glad it's fixed. http://t.co/aKEJW0LxcK","576431650160017408","19312115","2015-03-13 17:16:29 +0000","http://www.macrumors.com/2015/03/13/ios-8-3-space-bar-period-keyboard-fix/,http://www.macrumors.com/2015/03/13/ios-8-3-space-bar-period-keyboard-fix/" +"576492107172429824","576469626529284096","14538248","2015-03-13 21:16:43 +0000","Tweetbot for Mac","@robynpeterson @gittrich YES! I’m so glad someone got pile of poo 💩","","","","" +"576440863951204352","","","2015-03-13 17:53:06 +0000","Tweetbot for Mac","@mrjjwright Or even something like the plist editor in Xcode. Or a better text format. Lots of better alternatives.","","","","" +"576440002436993024","576436765915013120","14308739","2015-03-13 17:49:40 +0000","Tweetbot for Mac","@gisikw TOML looks promising but doesn’t appear to have caught on very much. The TOML gem I tried was really slow.","","","","" +"576439758118789120","576436765915013120","14308739","2015-03-13 17:48:42 +0000","Tweetbot for Mac","@gisikw Having loops and such can be nice. I can see that working out well with the optional commas and all that.","","","","" +"576435977775755265","","","2015-03-13 17:33:41 +0000","Tweetbot for Mac","JSON is a decent transport but I don’t like this trend of using it for config files and other things edited by humans. It’s not good.","","","","" +"576432221730422784","576431650160017408","19312115","2015-03-13 17:18:45 +0000","Tweetbot for Mac","@panzer Hallelujah.","","","","" +"576432179254677504","","","2015-03-13 17:18:35 +0000","Tweetbot for Mac","RT @panzer: This is my number one biggest iOS annoyance. So glad it's fixed. http://t.co/aKEJW0LxcK","576431650160017408","19312115","2015-03-13 17:16:29 +0000","http://www.macrumors.com/2015/03/13/ios-8-3-space-bar-period-keyboard-fix/,http://www.macrumors.com/2015/03/13/ios-8-3-space-bar-period-keyboard-fix/" "576422738992046080","","","2015-03-13 16:41:05 +0000","","RT @mashable: |LIVE NOW| Get your sneak peek of the #SXSW Mashable House! #mashSXSW #meerkat http://t.co/ju7PrPHhl2","576420287840854016","972651","2015-03-13 16:31:20 +0000","http://mrk.tv/1CcCILB,http://mrk.tv/1CcCILB" "576420946447220736","576420287840854016","972651","2015-03-13 16:33:57 +0000","","@mashable Someone get a pile of poo tattoo! Please","","","","" "576412473223331840","","","2015-03-13 16:00:17 +0000","Twitter Web Client","RT @chetansharma: Next year will be mother of all pi days - 3.14.15 9:26:53:59","444481096927817729","14320024","2014-03-14 14:32:06 +0000","" "575874806689570817","575868211394121728","2897431","2015-03-12 04:23:47 +0000","Twitter for iPad","@dwiskus A real purpose. Serving a need/desire that people actually have. That might be helping them work, or just making them laugh.","","","","" "575851546228862976","575828359902425088","3655191","2015-03-12 02:51:22 +0000","Twitter for iPhone","@isaiah I don't know. That's a good question.","","","","" -"575826997890318336","575821255359795201","3655191","2015-03-12 01:13:49 +0000","Tweetbot for Mac","@isaiah Someone wants a nice machine and gets a lot of use out of web apps, or puts Linux on it.","","","","" -"575812567915855873","575811810470797312","10194392","2015-03-12 00:16:28 +0000","Tweetbot for Mac","@reneritchie Oh man I’m freaking out for your MacBook, and having flashbacks to when I poured half a glass of chocolate milk on mine.","","","","" -"575761426700091392","","","2015-03-11 20:53:15 +0000","Tweetbot for Mac","Safari’s Reading List is now empty on both of my Macs, but in tact on my iOS devices. Unhelpful. Time to shift back to 100% @instapaper.","","","","" +"575826997890318336","575821255359795201","3655191","2015-03-12 01:13:49 +0000","Tweetbot for Mac","@isaiah Someone wants a nice machine and gets a lot of use out of web apps, or puts Linux on it.","","","","" +"575812567915855873","575811810470797312","10194392","2015-03-12 00:16:28 +0000","Tweetbot for Mac","@reneritchie Oh man I’m freaking out for your MacBook, and having flashbacks to when I poured half a glass of chocolate milk on mine.","","","","" +"575761426700091392","","","2015-03-11 20:53:15 +0000","Tweetbot for Mac","Safari’s Reading List is now empty on both of my Macs, but in tact on my iOS devices. Unhelpful. Time to shift back to 100% @instapaper.","","","","" "575541443542007808","","","2015-03-11 06:19:07 +0000","Instapaper","Apple's first employee: The remarkable odyssey of Bill Fernandez - Feature - TechRepublic http://t.co/YuJMkH1KPj via @instapaper","","","","http://www.techrepublic.com/article/apples-first-employee-the-remarkable-odyssey-of-bill-fernandez/?utm_campaign=iOS_Dev_Weekly_Issue_176&utm_medium=email&utm_source=iOS%2BDev%2BWeekly" "575529198699352064","575528339693240320","894911","2015-03-11 05:30:28 +0000","Twitter for iPad","@JimRoepcke I think their audacity is hilarious. It's something out of a Weeds episode. Celia would support that bill.","","","","" "575520850549563396","575520274784845824","894911","2015-03-11 04:57:18 +0000","Twitter for iPad","@JimRoepcke Did you read it? Hilarious and crazy. Those people running the town must be so bored.","","","","" @@ -2102,72 +2204,71 @@ To me it seems like a purpose-built live streaming Twitter client.","","","","" "575492296973549568","","","2015-03-11 03:03:50 +0000","Twitter for iPhone","RT @theadamv: @BenedictEvans from Nieman Marcus. It holds things. $31,000. #luxury http://t.co/hiygEE49oR","575483384392118273","855277615","2015-03-11 02:28:25 +0000","https://twitter.com/theadamv/status/575483384392118273/photo/1,https://twitter.com/theadamv/status/575483384392118273/photo/1" "575492245966606336","","","2015-03-11 03:03:38 +0000","Twitter for iPhone","RT @BenedictEvans: Rather amused by some of the astonished reactions to Apple's gold watch. Wait till these people find out about the luxur…","575481445977735169","1236101","2015-03-11 02:20:43 +0000","" -"575386264884543488","575375917108723712","14136236","2015-03-10 20:02:30 +0000","Tweetbot for Mac","@BigZaphod @tapbot_paul Could be cellular data. Without that the watch experience would be pretty bad.","","","","" -"575385087102951424","575378387969032192","777908","2015-03-10 19:57:49 +0000","Tweetbot for Mac","@ttscoff I was close. Pretty nasty.","","","","" -"575169518881763328","575154290827788289","749863","2015-03-10 05:41:14 +0000","Tweetbot for Mac","@hotdogsladies You bastard.","","","","" -"575011377095405568","","","2015-03-09 19:12:50 +0000","Tweetbot for Mac","In Canada the Apple Watch Sport is $450/520, Watch is $699-1460, and Edition … lol who cares.","","","","" -"575009014972469249","","1253355925","2015-03-09 19:03:26 +0000","Tweetbot for Mac","@atpfm USB-C adapter. Does not have 2x USB-A and 2x USB-C ports. http://t.co/xjKgwWhFcv","","","","http://store.apple.com/us/product/MJ1K2AM/A/usb-c-digital-av-multiport-adapter" -"574998661127495680","","","2015-03-09 18:22:18 +0000","Tweetbot for Mac","Apple Watch app is the new iTunes.","","","","" -"574990409853620224","574990015702269953","40273","2015-03-09 17:49:31 +0000","Tweetbot for Mac","@monkbent Like the watch, it can use your iPhone’s cellular connection to actually do things without wifi.","","","","" -"574988531858210817","574988334851731457","987681","2015-03-09 17:42:03 +0000","Tweetbot for Mac","@Lessien Gross.","","","","" -"574987986577686529","574987454295506944","14231571","2015-03-09 17:39:53 +0000","Tweetbot for Mac","@marcoarment You can probably go up to 1440x900 or so, just like other retina MacBooks.","","","","" -"574987568753721344","","1253355925","2015-03-09 17:38:13 +0000","Tweetbot for Mac","@atpfm @siracusa https://t.co/bqXPKmKih0","","","","https://twitter.com/reneritchie/status/574987461484482562" -"574986725157511169","","","2015-03-09 17:34:52 +0000","Tweetbot for Mac","The first iPad was about 1.5 lbs.","","","","" -"574982008306184192","","","2015-03-09 17:16:08 +0000","Tweetbot for Mac","RT @JonyIveParody: “Do you want to sell sugar water for the rest of your life, or do you want to come with me and change the world?"" #Apple…","574981932993282051","1197619002","2015-03-09 17:15:50 +0000","" -"574981498945712128","","","2015-03-09 17:14:06 +0000","Tweetbot for Mac","RT @BigZaphod: Cheaper AppleTV is nice and all, but what about a new one that does cool new things?!","574981386827755522","14136236","2015-03-09 17:13:39 +0000","" -"574981474295803905","","","2015-03-09 17:14:00 +0000","Tweetbot for Mac","RT @siracusa: I wanted a new Apple TV, not a cheaper Apple TV :(","574981170368225281","636923","2015-03-09 17:12:48 +0000","" -"574979440804954112","","","2015-03-09 17:05:55 +0000","Tweetbot for Mac","453 stores but still no Apple store on Vancouver Island, @tim_cook.","","","","" -"574687190535397376","574686904219795456","22196723","2015-03-08 21:44:38 +0000","Tweetbot for Mac","@markkolich Absolutely. Just add citrus and honey.","","","","" +"575386264884543488","575375917108723712","14136236","2015-03-10 20:02:30 +0000","Tweetbot for Mac","@BigZaphod @tapbot_paul Could be cellular data. Without that the watch experience would be pretty bad.","","","","" +"575385087102951424","575378387969032192","777908","2015-03-10 19:57:49 +0000","Tweetbot for Mac","@ttscoff I was close. Pretty nasty.","","","","" +"575169518881763328","575154290827788289","749863","2015-03-10 05:41:14 +0000","Tweetbot for Mac","@hotdogsladies You bastard.","","","","" +"575011377095405568","","","2015-03-09 19:12:50 +0000","Tweetbot for Mac","In Canada the Apple Watch Sport is $450/520, Watch is $699-1460, and Edition … lol who cares.","","","","" +"575009014972469249","","1253355925","2015-03-09 19:03:26 +0000","Tweetbot for Mac","@atpfm USB-C adapter. Does not have 2x USB-A and 2x USB-C ports. http://t.co/xjKgwWhFcv","","","","http://store.apple.com/us/product/MJ1K2AM/A/usb-c-digital-av-multiport-adapter" +"574998661127495680","","","2015-03-09 18:22:18 +0000","Tweetbot for Mac","Apple Watch app is the new iTunes.","","","","" +"574990409853620224","574990015702269953","40273","2015-03-09 17:49:31 +0000","Tweetbot for Mac","@monkbent Like the watch, it can use your iPhone’s cellular connection to actually do things without wifi.","","","","" +"574988531858210817","574988334851731457","987681","2015-03-09 17:42:03 +0000","Tweetbot for Mac","@Lessien Gross.","","","","" +"574987986577686529","574987454295506944","14231571","2015-03-09 17:39:53 +0000","Tweetbot for Mac","@marcoarment You can probably go up to 1440x900 or so, just like other retina MacBooks.","","","","" +"574987568753721344","","1253355925","2015-03-09 17:38:13 +0000","Tweetbot for Mac","@atpfm @siracusa https://t.co/bqXPKmKih0","","","","https://twitter.com/reneritchie/status/574987461484482562" +"574986725157511169","","","2015-03-09 17:34:52 +0000","Tweetbot for Mac","The first iPad was about 1.5 lbs.","","","","" +"574982008306184192","","","2015-03-09 17:16:08 +0000","Tweetbot for Mac","RT @JonyIveParody: “Do you want to sell sugar water for the rest of your life, or do you want to come with me and change the world?"" #Apple…","574981932993282051","1197619002","2015-03-09 17:15:50 +0000","" +"574981498945712128","","","2015-03-09 17:14:06 +0000","Tweetbot for Mac","RT @BigZaphod: Cheaper AppleTV is nice and all, but what about a new one that does cool new things?!","574981386827755522","14136236","2015-03-09 17:13:39 +0000","" +"574981474295803905","","","2015-03-09 17:14:00 +0000","Tweetbot for Mac","RT @siracusa: I wanted a new Apple TV, not a cheaper Apple TV :(","574981170368225281","636923","2015-03-09 17:12:48 +0000","" +"574979440804954112","","","2015-03-09 17:05:55 +0000","Tweetbot for Mac","453 stores but still no Apple store on Vancouver Island, @tim_cook.","","","","" +"574687190535397376","574686904219795456","22196723","2015-03-08 21:44:38 +0000","Tweetbot for Mac","@markkolich Absolutely. Just add citrus and honey.","","","","" "573755327037886464","","","2015-03-06 08:01:44 +0000","iOS","This is amazing: Speeding millionaire gets 54,000-euro fine http://t.co/xgKbDdXoCQ","","","","http://www.jwz.org/blog/2015/03/speeding-millionaire-gets-54000-euro-fine/" -"573669430346915840","","","2015-03-06 02:20:25 +0000","Tweetbot for Mac","Gotta try to tighten up some performance regressions before releasing strftime 0.9. http://t.co/Xo3MgSXQ5N","","","","http://jsperf.com/strftime-optimization/5" -"573669054788960257","","","2015-03-06 02:18:55 +0000","Tweetbot for Mac","I’m guilty of continuing in the insane tradition of using %p for AM/PM and %P for am/pm. https://t.co/8omNeO8mX0 +"573669430346915840","","","2015-03-06 02:20:25 +0000","Tweetbot for Mac","Gotta try to tighten up some performance regressions before releasing strftime 0.9. http://t.co/Xo3MgSXQ5N","","","","http://jsperf.com/strftime-optimization/5" +"573669054788960257","","","2015-03-06 02:18:55 +0000","Tweetbot for Mac","I’m guilty of continuing in the insane tradition of using %p for AM/PM and %P for am/pm. https://t.co/8omNeO8mX0 Sorry everyone.","","","","https://github.com/samsonjs/strftime/blob/ff9b94b3d9d474e654dc15a68ec842d156bfe0f7/strftime.js#L356-L360" -"573654310057193473","","","2015-03-06 01:20:20 +0000","Tweetbot for Mac","RT @j_c_fitz: Just let that sink in for a minute. http://t.co/45wtmAtVO5","573229403678875648","14691845","2015-03-04 21:11:54 +0000","https://twitter.com/j_c_fitz/status/573229403678875648/photo/1,https://twitter.com/j_c_fitz/status/573229403678875648/photo/1" -"573654025490407425","","","2015-03-06 01:19:12 +0000","Tweetbot for Mac","RT @rob_rix: People! Turn on 2FA!","573652718868389889","14056827","2015-03-06 01:14:00 +0000","" -"573621301325119488","","","2015-03-05 23:09:10 +0000","Tweetbot for Mac","Woah, the GTX 980 only draws as much power as my GTX 760. I could put one of those in my Bitfenix Prodigy…","","","","" -"573598694932533249","","","2015-03-05 21:39:20 +0000","Tweetbot for Mac","I’ve been ctrl-r’ing for this for a while but now it has a name: git-uncommit +"573654310057193473","","","2015-03-06 01:20:20 +0000","Tweetbot for Mac","RT @j_c_fitz: Just let that sink in for a minute. http://t.co/45wtmAtVO5","573229403678875648","14691845","2015-03-04 21:11:54 +0000","https://twitter.com/j_c_fitz/status/573229403678875648/photo/1,https://twitter.com/j_c_fitz/status/573229403678875648/photo/1" +"573654025490407425","","","2015-03-06 01:19:12 +0000","Tweetbot for Mac","RT @rob_rix: People! Turn on 2FA!","573652718868389889","14056827","2015-03-06 01:14:00 +0000","" +"573621301325119488","","","2015-03-05 23:09:10 +0000","Tweetbot for Mac","Woah, the GTX 980 only draws as much power as my GTX 760. I could put one of those in my Bitfenix Prodigy…","","","","" +"573598694932533249","","","2015-03-05 21:39:20 +0000","Tweetbot for Mac","I’ve been ctrl-r’ing for this for a while but now it has a name: git-uncommit https://t.co/dlvrBOVD25","","","","https://github.com/samsonjs/bin/blob/master/git-uncommit" "573346289561182209","","","2015-03-05 04:56:22 +0000","Twitter for iPad","RT @takahashim: 『開発のプロが教える Swift標準ガイドブック』(マイナビ)はObjC以外の他言語ブリッジとしてmruby使う例が載ってるのでそっち方面の人が読んでも楽しめそう http://t.co/w5pqATy0Xy http://t.co/0oC2it…","573329846828285952","4053041","2015-03-05 03:51:02 +0000","http://tatsu-zine.com/books/kaihatsunopro-swift-hyojun-guidebook,http://tatsu-zine.com/books/kaihatsunopro-swift-hyojun-guidebook,https://twitter.com/takahashim/status/573329846828285952/photo/1" "573345941148729344","","","2015-03-05 04:54:59 +0000","Twitter for iPad","OH: ""I would only travel by private jet with my cat.""","","","","" "573339042298785793","","","2015-03-05 04:27:34 +0000","Twitter for iPad","I am disappointed in the lack of ice skating related emoji.","","","","" "573338249260748801","","","2015-03-05 04:24:25 +0000","Twitter for iPad","Just went for my first ice skating lesson. Now I can kind of stop!","","","","" -"573193685875077120","","","2015-03-04 18:49:58 +0000","Tweetbot for Mac","Of course one of my SSDs fails a month after creating my first RAID-0 for the boot drive on my gaming box. Of course.","","","","" -"572498364362670080","572491170263126017","15944436","2015-03-02 20:47:01 +0000","Tweetbot for Mac","@9to5mac ewwww","","","","" -"572482047467384832","","","2015-03-02 19:42:10 +0000","Tweetbot for Mac","Oh look, it’s on sale right now in the USA. This aggression will not stand man.","","","","" -"572481688816640001","","","2015-03-02 19:40:45 +0000","Tweetbot for Mac","I’ve been patiently waiting for the Dell P2715Q to go on sale in Canada. If I buy it anyway Murphy’s Law dictates it will then go on sale.","","","","" -"572451366645317632","572446801074253824","87274687","2015-03-02 17:40:16 +0000","Tweetbot for Mac","@rektide Did it work out? It sounds like a good idea.","","","","" -"572440772437413888","","","2015-03-02 16:58:10 +0000","Tweetbot for Mac","Anyone had a vertically stacked 2+ display setup before? I’m looking at one of these to add a 3rd display. http://t.co/kSC9iihYyr","","","","http://www.amazon.ca/dp/B00DGU92DM/ref=wl_it_dp_o_pC_S_ttl" +"573193685875077120","","","2015-03-04 18:49:58 +0000","Tweetbot for Mac","Of course one of my SSDs fails a month after creating my first RAID-0 for the boot drive on my gaming box. Of course.","","","","" +"572498364362670080","572491170263126017","15944436","2015-03-02 20:47:01 +0000","Tweetbot for Mac","@9to5mac ewwww","","","","" +"572482047467384832","","","2015-03-02 19:42:10 +0000","Tweetbot for Mac","Oh look, it’s on sale right now in the USA. This aggression will not stand man.","","","","" +"572481688816640001","","","2015-03-02 19:40:45 +0000","Tweetbot for Mac","I’ve been patiently waiting for the Dell P2715Q to go on sale in Canada. If I buy it anyway Murphy’s Law dictates it will then go on sale.","","","","" +"572451366645317632","572446801074253824","87274687","2015-03-02 17:40:16 +0000","Tweetbot for Mac","@rektide Did it work out? It sounds like a good idea.","","","","" +"572440772437413888","","","2015-03-02 16:58:10 +0000","Tweetbot for Mac","Anyone had a vertically stacked 2+ display setup before? I’m looking at one of these to add a 3rd display. http://t.co/kSC9iihYyr","","","","http://www.amazon.ca/dp/B00DGU92DM/ref=wl_it_dp_o_pC_S_ttl" "572289959958196225","","","2015-03-02 06:58:53 +0000","Twitter for iPad","http://t.co/wHO2AtyTeE","","","","http://doihaveaproblemoramijustgettingold.com" -"572269578765508609","572262300423331841","108814849","2015-03-02 05:37:54 +0000","Tweetbot for Mac","@snarfmason Good idea, thanks! Just ordered one of their enclosures for about $25.","","","","" -"572168310084616192","","","2015-03-01 22:55:30 +0000","Tweetbot for Mac","Are there any good 2.5” USB enclosures or do you have to buy them with a disk to get quality? Every one I’ve purchased has been awful.","","","","" +"572269578765508609","572262300423331841","108814849","2015-03-02 05:37:54 +0000","Tweetbot for Mac","@snarfmason Good idea, thanks! Just ordered one of their enclosures for about $25.","","","","" +"572168310084616192","","","2015-03-01 22:55:30 +0000","Tweetbot for Mac","Are there any good 2.5” USB enclosures or do you have to buy them with a disk to get quality? Every one I’ve purchased has been awful.","","","","" "571864241499590656","","","2015-03-01 02:47:14 +0000","Twitter for iPhone","We just need auto-destructing nano bot bubbles.","","","","" -"571445464882548736","","1007938482","2015-02-27 23:03:10 +0000","Tweetbot for Mac","@ringpartner Woah, look what I just found. http://t.co/EhzL1ymfqs","","","","https://twitter.com/_sjs/status/571445464882548736/photo/1" +"571445464882548736","","1007938482","2015-02-27 23:03:10 +0000","Tweetbot for Mac","@ringpartner Woah, look what I just found. http://t.co/EhzL1ymfqs","","","","https://twitter.com/_sjs/status/571445464882548736/photo/1" "571377223925501952","","","2015-02-27 18:32:00 +0000","Twitter for iPhone","He's in! Office box is successful. http://t.co/LNmyG4q98o","","","","https://twitter.com/_sjs/status/571377223925501952/photo/1" -"571360834435158016","","2945540118","2015-02-27 17:26:52 +0000","Tweetbot for Mac","@BrandsSayingBae https://t.co/DVX3NoL5io","","","","https://twitter.com/1Password/status/571360717334454272" -"571001659838443522","571001432192581632","18553922","2015-02-26 17:39:39 +0000","Tweetbot for Mac","@zwaldowski Good to know, thanks!","","","","" -"571001538891554816","","","2015-02-26 17:39:10 +0000","Tweetbot for Mac","RT @zwaldowski: @_sjs It’s a bad interaction with Bartender. From what I understand it’s fixed in the next beta.","571001432192581632","18553922","2015-02-26 17:38:44 +0000","" -"571000332597080064","","","2015-02-26 17:34:22 +0000","Tweetbot for Mac","Ahhh, Bartender is probably causing these problems.","","","","" -"570999978379718656","","","2015-02-26 17:32:58 +0000","Tweetbot for Mac","Rebooted. I suppose this is an improvement. http://t.co/enOy9sE3Un","","","","http://static.samhuri.net/Screen%20Shot%202015-02-26%20at%209.31.21%20AM.png" -"570999053040750593","","","2015-02-26 17:29:17 +0000","Tweetbot for Mac","Apple really cleaned up the menu bar icons in the latest Yosemite beta. http://t.co/6CmyCntSQd","","","","http://static.samhuri.net/Screen%20Shot%202015-02-26%20at%209.28.43%20AM.png" -"570997625157066752","","","2015-02-26 17:23:37 +0000","Tweetbot for Mac","Installing the latest OS X beta on my MacBook. Hopefully I’ll be able to quit then new Photos app without force quitting.","","","","" -"570765915274354688","570764529363083265","29255412","2015-02-26 02:02:53 +0000","Tweetbot for Mac","@tjholowaychuk http://t.co/lQ6ALH9j9r","","","","https://twitter.com/_sjs/status/570765915274354688/photo/1" +"571360834435158016","","2945540118","2015-02-27 17:26:52 +0000","Tweetbot for Mac","@BrandsSayingBae https://t.co/DVX3NoL5io","","","","https://twitter.com/1Password/status/571360717334454272" +"571001659838443522","571001432192581632","18553922","2015-02-26 17:39:39 +0000","Tweetbot for Mac","@zwaldowski Good to know, thanks!","","","","" +"571000332597080064","","","2015-02-26 17:34:22 +0000","Tweetbot for Mac","Ahhh, Bartender is probably causing these problems.","","","","" +"570999978379718656","","","2015-02-26 17:32:58 +0000","Tweetbot for Mac","Rebooted. I suppose this is an improvement. http://t.co/enOy9sE3Un","","","","http://static.samhuri.net/Screen%20Shot%202015-02-26%20at%209.31.21%20AM.png" +"570999053040750593","","","2015-02-26 17:29:17 +0000","Tweetbot for Mac","Apple really cleaned up the menu bar icons in the latest Yosemite beta. http://t.co/6CmyCntSQd","","","","http://static.samhuri.net/Screen%20Shot%202015-02-26%20at%209.28.43%20AM.png" +"570997625157066752","","","2015-02-26 17:23:37 +0000","Tweetbot for Mac","Installing the latest OS X beta on my MacBook. Hopefully I’ll be able to quit then new Photos app without force quitting.","","","","" +"570765915274354688","570764529363083265","29255412","2015-02-26 02:02:53 +0000","Tweetbot for Mac","@tjholowaychuk http://t.co/lQ6ALH9j9r","","","","https://twitter.com/_sjs/status/570765915274354688/photo/1" "570678954065047554","","1409144809","2015-02-25 20:17:20 +0000","Twitter for iPhone","@_connectedfm Example of how a 6+ can't replace an iPad. https://t.co/aYf2hhjlkk And then there is the whole app situation.","","","","https://twitter.com/_sjs/status/568258230737969153" "570401779847798784","","","2015-02-25 01:55:56 +0000","Twitter for iPhone","It's okay I'm not trying to use that hand or anything. http://t.co/o2E3cdoUL3","","","","https://twitter.com/_sjs/status/570401779847798784/photo/1" -"570388682579976192","570387538675789824","108814849","2015-02-25 01:03:53 +0000","Tweetbot for Mac","@snarfmason excellent 👍","","","","" -"570383353699893248","570382748667375616","108814849","2015-02-25 00:42:43 +0000","Tweetbot for Mac","@snarfmason A song from South Park where the kids all get ninja weapons.","","","","" -"570376466497564672","","","2015-02-25 00:15:21 +0000","Tweetbot for Mac","When you’re bored of Strongbad/Daft Punk https://t.co/H3ny4atIOA throw on some Let’s Fighting Love https://t.co/1zaiG4mSza @snarfmason","","","","https://www.youtube.com/watch?v=Tsa4ogtBiv0,https://www.youtube.com/watch?v=bLwp7MOqkv0" -"570347556800061440","","","2015-02-24 22:20:28 +0000","Tweetbot for Mac","It’s so nice in Victoria that I’m starting to think about iced coffee. ☀️","","","","" +"570388682579976192","570387538675789824","108814849","2015-02-25 01:03:53 +0000","Tweetbot for Mac","@snarfmason excellent 👍","","","","" +"570383353699893248","570382748667375616","108814849","2015-02-25 00:42:43 +0000","Tweetbot for Mac","@snarfmason A song from South Park where the kids all get ninja weapons.","","","","" +"570376466497564672","","","2015-02-25 00:15:21 +0000","Tweetbot for Mac","When you’re bored of Strongbad/Daft Punk https://t.co/H3ny4atIOA throw on some Let’s Fighting Love https://t.co/1zaiG4mSza @snarfmason","","","","https://www.youtube.com/watch?v=Tsa4ogtBiv0,https://www.youtube.com/watch?v=bLwp7MOqkv0" +"570347556800061440","","","2015-02-24 22:20:28 +0000","Tweetbot for Mac","It’s so nice in Victoria that I’m starting to think about iced coffee. ☀️","","","","" "570341264278728704","","","2015-02-24 21:55:28 +0000","Twitter for iPad","RT @SubtleGradient: Woah! Origami Live was released to the public! I thought that was going to be a deep dark secret forever. http://t.co/H…","570340178885087234","14405464","2015-02-24 21:51:09 +0000","http://itunes.apple.com/app/id942636206" "570340697364045824","","","2015-02-24 21:53:13 +0000","Twitter for iPad","RT @snarfmason: Prefer MBP: Hot, shiny, no wasted ounce. Just like me RT @_sjs RT @nihilist_apple The Mac Pro: cold, black, hollow. Just li…","570327553472200704","108814849","2015-02-24 21:00:59 +0000","" "570322148654518272","","","2015-02-24 20:39:30 +0000","Twitter for iPad","RT @honest_update: We currently don't have a clue, much less an ETA.","570022546487291904","3033204133","2015-02-24 00:49:00 +0000","" -"570278173444681728","","","2015-02-24 17:44:46 +0000","Tweetbot for Mac","RT @nihilist_apple: The Mac Pro: cold, black, hollow. Just like your life. +"570278173444681728","","","2015-02-24 17:44:46 +0000","Tweetbot for Mac","RT @nihilist_apple: The Mac Pro: cold, black, hollow. Just like your life. ","570270581444251649","3057771495","2015-02-24 17:14:36 +0000","" -"569687505340989440","","","2015-02-23 02:37:40 +0000","Tweetbot for Mac","This sounds exactly like Freedom Isn’t Free. https://t.co/sPOdpoKQmP","","","","https://www.youtube.com/watch?v=PZF5wpntXsk" +"569687505340989440","","","2015-02-23 02:37:40 +0000","Tweetbot for Mac","This sounds exactly like Freedom Isn’t Free. https://t.co/sPOdpoKQmP","","","","https://www.youtube.com/watch?v=PZF5wpntXsk" "569546798399774720","569535029757546496","289246577","2015-02-22 17:18:33 +0000","Twitter for iPad",".@merowing_ Someone get Rex a selfie stick!","","","","" "569327021425209344","","","2015-02-22 02:45:14 +0000","Twitter for iPhone","Restaurant recommendations in #gastown? #Vancouver #yvr","","","","" "568970174470098944","","","2015-02-21 03:07:15 +0000","Twitter for iPhone","Pahsta @@ -2176,24 +2277,23 @@ Mahzda Moble","","","","" "568436133186527232","","","2015-02-19 15:45:09 +0000","iOS","IFTTT rebrands with 3 new apps that make your life easier with one touch http://t.co/QkPf1FO618 via @mashable","","","","http://on.mash.to/17usKsg" "568258230737969153","","","2015-02-19 03:58:14 +0000","Twitter for iPad","One example of how an iPhone 6 Plus doesn't replace an iPad for me. http://t.co/xG9dQAmfLZ","","","","https://twitter.com/_sjs/status/568258230737969153/photo/1,https://twitter.com/_sjs/status/568258230737969153/photo/1" -"567539783216279552","","","2015-02-17 04:23:23 +0000","Twitter for iPhone","RT @monteiro: Fuck geese. And double fuck swans. Fucking assholes.","567515617914134528","2426","2015-02-17 02:47:21 +0000","" "567531325335162881","567522295103516672","31353077","2015-02-17 03:49:46 +0000","Twitter for iPhone",".@NathanFillion @brianleroux *toque","","","","" "567531144996864005","","","2015-02-17 03:49:03 +0000","Twitter for iPhone","RT @NathanFillion: In Canada, we call that a touque.","567522295103516672","31353077","2015-02-17 03:13:53 +0000","" "567520320412581888","567511799352672257","108814849","2015-02-17 03:06:03 +0000","Twitter for iPhone","@snarfmason Same carrier so presumably the antenna.","","","","" "567520110064046080","","","2015-02-17 03:05:12 +0000","Twitter for iPhone","Bacon cheese bread http://t.co/d3ChQ2iuTZ","","","","https://twitter.com/_sjs/status/567520110064046080/photo/1" -"567020037202923520","567017862863126528","19312115","2015-02-15 17:58:06 +0000","Tweetbot for Mac","@panzer Pineapple is the cornerstone of every English breakfast.","","","","" -"566806263942500353","","","2015-02-15 03:48:38 +0000","Tweetbot for Mac","GPRS strikes again! http://t.co/1wL4Nqeesn","","","","http://static.samhuri.net/Screen%20Shot%202015-02-14%20at%2010.47.52%20PM.png" -"566806014943428608","","668243","2015-02-15 03:47:39 +0000","Tweetbot for Mac","@dmoren You can’t disconnect from a personal hotspot on iOS either (or any wifi network). You have to forget it entirely. Mac has disconnect","","","","" +"567020037202923520","567017862863126528","19312115","2015-02-15 17:58:06 +0000","Tweetbot for Mac","@panzer Pineapple is the cornerstone of every English breakfast.","","","","" +"566806263942500353","","","2015-02-15 03:48:38 +0000","Tweetbot for Mac","GPRS strikes again! http://t.co/1wL4Nqeesn","","","","http://static.samhuri.net/Screen%20Shot%202015-02-14%20at%2010.47.52%20PM.png" +"566806014943428608","","668243","2015-02-15 03:47:39 +0000","Tweetbot for Mac","@dmoren You can’t disconnect from a personal hotspot on iOS either (or any wifi network). You have to forget it entirely. Mac has disconnect","","","","" "566769031235919872","","","2015-02-15 01:20:41 +0000","Twitter for iPhone","Wheels down at #yvr. Can't wait to get off this plane and breath some fresh mountain and ocean air! BC is the best.","","","","" "566768520315170816","","","2015-02-15 01:18:39 +0000","Twitter for iPhone","RT @Amazing_Maps: Most popular word used in online dating profiles by state http://t.co/KJ81UTserg","566742467052306432","1571270053","2015-02-14 23:35:08 +0000","https://twitter.com/Amazing_Maps/status/566742467052306432/photo/1,https://twitter.com/Amazing_Maps/status/566742467052306432/photo/1" -"566668375817195520","","","2015-02-14 18:40:43 +0000","Tweetbot for Mac","Jumping on the poem bandwagon with commit messages: +"566668375817195520","","","2015-02-14 18:40:43 +0000","Tweetbot for Mac","Jumping on the poem bandwagon with commit messages: roses are red the code now compiles the tests all pass too time to fly lots of miles","","","","" "566667259947790336","566666995072921600","22406953","2015-02-14 18:36:17 +0000","Twitter Web Client","@mahyarm Missed my second flight from YYZ -> YYJ yesterday, so 24h now. Flying to YVR then ferrying to Victoria. ugh!","","","","" -"566662761955225600","","","2015-02-14 18:18:25 +0000","Tweetbot for Mac","I’ve never been so aware of my flight’s boarding time. Hyperawareness.","","","","" +"566662761955225600","","","2015-02-14 18:18:25 +0000","Tweetbot for Mac","I’ve never been so aware of my flight’s boarding time. Hyperawareness.","","","","" "566638477543235584","","","2015-02-14 16:41:55 +0000","Twitter for iPhone","RT @raganwald: “We hired 3 new devs, all very very green. No problem, we get 3 for the price of 1 and we can just train them up.” http://t.…","566635850121756672","18137723","2015-02-14 16:31:28 +0000","http://www.reddit.com/r/javascript/comments/2vuz0z/so_you_have_an_hour_to_cover_javascript/" "566432673754005505","566408554966695937","289246577","2015-02-14 03:04:07 +0000","Twitter for iPhone","@merowing_ @JimRoepcke Or just spread it out more. One every day or two 😉","","","","" "566432530979885056","","","2015-02-14 03:03:33 +0000","Twitter for iPhone","RT @merowing_: Has a great week visiting @MashableHQ with @JimRoepcke @_sjs and rest of our Team, def needs repeating in couple of months ;…","566408259557654528","289246577","2015-02-14 01:27:07 +0000","" @@ -2217,17 +2317,17 @@ Me: ""Okay."" ... Cabbie: ""Well let me tell you..."" blah blah blah","","","","" "564539622043029505","","","2015-02-08 21:41:49 +0000","Twitter for iPhone","RT @johnchidgey: Total time to convert 200Gb library from iPhoto to Photos: 21hrs 13mins.","564520168764624901","30182704","2015-02-08 20:24:31 +0000","" -"564477620738211840","","","2015-02-08 17:35:26 +0000","Tweetbot for Mac","If you use my JavaScript strftime library look at the v0.9 branch and send feedback. New API and a big perf upgrade. https://t.co/EqChdTlYhg","","","","https://github.com/samsonjs/strftime/tree/v0.9" +"564477620738211840","","","2015-02-08 17:35:26 +0000","Tweetbot for Mac","If you use my JavaScript strftime library look at the v0.9 branch and send feedback. New API and a big perf upgrade. https://t.co/EqChdTlYhg","","","","https://github.com/samsonjs/strftime/tree/v0.9" "564090055740772352","","","2015-02-07 15:55:24 +0000","Twitter for Mac","@illyastarikov @marcoarment Only one person has to ignore that for it to be pointless, so probably not worth the effort.","","","","" "564087184328630273","564086826550702081","289246577","2015-02-07 15:43:59 +0000","Twitter for iPad","@merowing_ The joys of migrating a blog! 😉","","","","" "564086497330991104","564022473461874688","289246577","2015-02-07 15:41:15 +0000","Twitter for iPad","@merowing_ 1. Orca, 2. Astro. (NightLight doesn't scroll well at all on my iPad.)","","","","" "563947598126399489","","","2015-02-07 06:29:19 +0000","Twitter for iPhone","Is there a better gin than Plymouth for dirty martinis? Any recommendations for another good one?","","","","" -"563735948798590977","","","2015-02-06 16:28:18 +0000","Tweetbot for Mac","I put the cat on my shoulder and spun him around but he didn’t seem to like it. That shouldn’t surprise me I guess.","","","","" +"563735948798590977","","","2015-02-06 16:28:18 +0000","Tweetbot for Mac","I put the cat on my shoulder and spun him around but he didn’t seem to like it. That shouldn’t surprise me I guess.","","","","" "563375149815062528","","","2015-02-05 16:34:37 +0000","Twitter for iPhone","RT @ttscoff: Bash/readline tip: After ^y, you can use M-y (option-y on Mac) to cycle through the kill ring. (defaults write -g NSTextKillRi…","563370850867748866","777908","2015-02-05 16:17:32 +0000","" -"563374492441784320","","","2015-02-05 16:32:00 +0000","Tweetbot for Mac","RT @stroughtonsmith: …guess we've come full circle, eh?","563314919597420545","15267898","2015-02-05 12:35:17 +0000","" -"563374482870370304","","","2015-02-05 16:31:58 +0000","Tweetbot for Mac","RT @stroughtonsmith: TIL Interface Builder originally had both UI & project/code editing. It was split off into Project Builder in NS 3 htt…","563314877394333696","15267898","2015-02-05 12:35:07 +0000","https://twitter.com/stroughtonsmith/status/563314877394333696/photo/1" +"563374492441784320","","","2015-02-05 16:32:00 +0000","Tweetbot for Mac","RT @stroughtonsmith: …guess we've come full circle, eh?","563314919597420545","15267898","2015-02-05 12:35:17 +0000","" +"563374482870370304","","","2015-02-05 16:31:58 +0000","Tweetbot for Mac","RT @stroughtonsmith: TIL Interface Builder originally had both UI & project/code editing. It was split off into Project Builder in NS 3 htt…","563314877394333696","15267898","2015-02-05 12:35:07 +0000","https://twitter.com/stroughtonsmith/status/563314877394333696/photo/1" "563369857559695360","563366218506444800","20904050","2015-02-05 16:13:35 +0000","Twitter for iPhone","@viticci Haters gonna hate man. ᕕ( ᐛ )ᕗ","","","","" -"563081954757976068","","","2015-02-04 21:09:34 +0000","Tweetbot for Mac","Xcode should make it easier to swap a view for a different view when laying out UI. Especially now that we have constraints. Blurgh.","","","","" +"563081954757976068","","","2015-02-04 21:09:34 +0000","Tweetbot for Mac","Xcode should make it easier to swap a view for a different view when laying out UI. Especially now that we have constraints. Blurgh.","","","","" "562643148476669952","","","2015-02-03 16:05:54 +0000","Mobile Web","This Mac app makes saving space on your iOS device a snap, by @film_girl http://t.co/dpCNSF4cwd via @mashable","","","","http://mashable.com/2015/02/03/phone-expander-mac-review/#:eyJzIjoidCIsImkiOiJfdml5MTgwd2RsYnMxdGFtYXB6ZnBjcV8ifQ" "562640886098452481","","","2015-02-03 15:56:55 +0000","Twitter for iPad","RT @olebegemann: You couldn’t pick a better example to demo IBInspectable/IBDesignable: http://t.co/vbX3zpScps","562639510450999296","231756759","2015-02-03 15:51:27 +0000","http://nshipster.com/ibinspectable-ibdesignable/,http://nshipster.com/ibinspectable-ibdesignable/" "562091341874610176","","","2015-02-02 03:33:13 +0000","Twitter for iPhone","Punxsutawney Phil better see his damn shadow tomorrow.","","","","" @@ -2236,24 +2336,24 @@ Cabbie: ""Well let me tell you..."" blah blah blah","","","","" "561377911937060866","561377045578412032","22406953","2015-01-31 04:18:18 +0000","Twitter for iPad","@mahyarm I have Office 365 though, so I wonder if I already have a OneDrive. I've never used it but I like their plans better than Dropbox.","","","","" "561377479831482368","561377045578412032","22406953","2015-01-31 04:16:35 +0000","Twitter for iPad","@mahyarm Must-have feature is showing me photos from the past every so often. I'm hooked on that and Dropbox's Carousel has it.","","","","" "561373761518063620","561373132129574913","22406953","2015-01-31 04:01:49 +0000","Twitter for iPhone","@mahyarm That's a good question. At this point Dropbox seems like the best alternative if I switch yet again.","","","","" -"561329723951681537","","","2015-01-31 01:06:49 +0000","Tweetbot for Mac","The orange dots beside beta app names are gross, but at least they kinda match @OvercastFM’s icon.","","","","" +"561329723951681537","","","2015-01-31 01:06:49 +0000","Tweetbot for Mac","The orange dots beside beta app names are gross, but at least they kinda match @OvercastFM’s icon.","","","","" "561253721405784064","561245631512322048","438078608","2015-01-30 20:04:49 +0000","Twitter for iPad","@ShoeboxApp ha ha. Easy for you to say :) Meanwhile I've uploaded 60 GB of photos to all these photo services that seem to drop like flies.","","","","" -"561205788262162433","","","2015-01-30 16:54:21 +0000","Tweetbot for Mac","@picturelife That’s good to hear! I’m happy with everything right now. Your team is doing great work :)","","","","" -"561027865622614016","","","2015-01-30 05:07:21 +0000","Tweetbot for Mac","If @picturelife goes away or becomes crappy, should I bother with http://t.co/o57xS0aTDz or just use @dropbox already?","","","","http://shoeboxapp.com" +"561205788262162433","","","2015-01-30 16:54:21 +0000","Tweetbot for Mac","@picturelife That’s good to hear! I’m happy with everything right now. Your team is doing great work :)","","","","" +"561027865622614016","","","2015-01-30 05:07:21 +0000","Tweetbot for Mac","If @picturelife goes away or becomes crappy, should I bother with http://t.co/o57xS0aTDz or just use @dropbox already?","","","","http://shoeboxapp.com" "560832247045963777","","","2015-01-29 16:10:02 +0000","Twitter for iPhone","RT @zpower: big money going into business insider, mashable, and gawker these past few days. investors and lenders believe in new media, tu…","560811912695267328","15006743","2015-01-29 14:49:14 +0000","" -"560609398662242304","560609251127996416","9943672","2015-01-29 01:24:30 +0000","Tweetbot for Mac","@lorenb Maybe they’re in the Recently Deleted album.","","","","" +"560609398662242304","560609251127996416","9943672","2015-01-29 01:24:30 +0000","Tweetbot for Mac","@lorenb Maybe they’re in the Recently Deleted album.","","","","" "560545299190403072","","","2015-01-28 21:09:48 +0000","Twitter for iPhone","RT @andy_matuschak: I say with confidence as a former UIKit author: React's model for the UI layer is vastly better than UIKit's. React Nat…","560511204867575808","10724012","2015-01-28 18:54:19 +0000","" "560173722095464448","","","2015-01-27 20:33:17 +0000","Twitter for iPhone","Adjusting volume while an OS update is installing. http://t.co/RTrwbyCH29","","","","https://twitter.com/_sjs/status/560173722095464448/photo/1" -"559930659116822528","","9866582","2015-01-27 04:27:26 +0000","Tweetbot for Mac","@film_girl @Dropcam I’ve had the cams from @MashableHQ and @ecetweets up all day. Fun to watch! http://t.co/orFz8F1Qc5","","","","https://twitter.com/_sjs/status/559930659116822528/photo/1" +"559930659116822528","","9866582","2015-01-27 04:27:26 +0000","Tweetbot for Mac","@film_girl @Dropcam I’ve had the cams from @MashableHQ and @ecetweets up all day. Fun to watch! http://t.co/orFz8F1Qc5","","","","https://twitter.com/_sjs/status/559930659116822528/photo/1" "559900963553562624","","","2015-01-27 02:29:26 +0000","Twitter for iPhone","2015 is the year of whiskey here. http://t.co/X4NrWxSxPm","","","","https://twitter.com/_sjs/status/559900963553562624/photo/1" -"559779240464220160","559777561073291264","676363","2015-01-26 18:25:45 +0000","Tweetbot for Mac","@brianleroux Yeah, but I have been happy with it since day 1 so ¯\_(ツ)_/¯","","","","" +"559779240464220160","559777561073291264","676363","2015-01-26 18:25:45 +0000","Tweetbot for Mac","@brianleroux Yeah, but I have been happy with it since day 1 so ¯\_(ツ)_/¯","","","","" "558466907246850048","","","2015-01-23 03:31:01 +0000","Twitter for iPhone","RLRT: ""Yeah I fit in at Walmart.""","","","","" "558428056398733312","","","2015-01-23 00:56:38 +0000","iOS","Beaver problem? Air drop them elsewhere, obviously. http://t.co/hTXhMjTzfx via @mashable","","","","http://on.mash.to/1yO6Ae5" "558426852063059968","558408940342738944","20151189","2015-01-23 00:51:51 +0000","Twitter for iPad","@rsafian @JohnLegere Can it be both?","","","","" "558424744551124992","","","2015-01-23 00:43:28 +0000","Twitter for iPad","RT @arstechnica: Google drops three OS X 0days on Apple http://t.co/kYNxvjjNy9 by @dangoodin001","558423551204921344","717313","2015-01-23 00:38:44 +0000","http://ars.to/1yUmeaM,http://ars.to/1yUmeaM" "558012602672885761","558004874970140672","1318181","2015-01-21 21:25:46 +0000","Twitter for iPhone","@_ Do it! Then maybe we could order stuff from meh.","","","","" -"557955314381643778","557955084256964608","18247541","2015-01-21 17:38:07 +0000","Tweetbot for Mac","@tapbot_paul I’m surprised at how often I use “Hey Siri”. And when my phone is away from me but not plugged in I miss it.","","","","" -"557707424577355777","557706482335358976","8207832","2015-01-21 01:13:06 +0000","Tweetbot for Mac","@mdo Forget the soft stuff. You’re right about it being crap. It’s all about Charmin Ultra Strong.","","","","" +"557955314381643778","557955084256964608","18247541","2015-01-21 17:38:07 +0000","Tweetbot for Mac","@tapbot_paul I’m surprised at how often I use “Hey Siri”. And when my phone is away from me but not plugged in I miss it.","","","","" +"557707424577355777","557706482335358976","8207832","2015-01-21 01:13:06 +0000","Tweetbot for Mac","@mdo Forget the soft stuff. You’re right about it being crap. It’s all about Charmin Ultra Strong.","","","","" "557065724405903360","","","2015-01-19 06:43:13 +0000","Twitter for iPhone","This aggression will not stand man. https://t.co/0tkGlPhbG2","","","","https://twitter.com/cdespinosa/status/557059582644596736" "556833749602549760","556804721777049600","15267898","2015-01-18 15:21:26 +0000","Twitter for iPad","@stroughtonsmith HandBrake is still rocking a drawer. They're out there!","","","","" "556499034609688577","","","2015-01-17 17:11:23 +0000","OS X","The Fine Art of Bullshit https://t.co/9L9E1brULX","","","","https://medium.com/funny-stuff/the-fine-art-of-bullshit-c09f7bbb391e" @@ -2262,17 +2362,17 @@ Cabbie: ""Well let me tell you..."" blah blah blah","","","","" "556117168329195520","","","2015-01-16 15:53:59 +0000","Twitter for iPad","RT @danielpunkass: Wisdom for the ages from @ccgus, in wake of @marcoarment’s financial results. App not selling? ""Maybe it just sucks?"" ht…","556115464062271488","666043","2015-01-16 15:47:13 +0000","http://gusmueller.com/blog/archives/2009/08/setting_the_right_priorities.html" "556111687636361219","","","2015-01-16 15:32:13 +0000","Twitter for iPad","RT @ThatsOurWaldo: THANK BOB IT'S FRIDAY! #TwinPeaks #TBIF http://t.co/BKUoqzhIzZ","556110638028955648","237944041","2015-01-16 15:28:02 +0000","https://twitter.com/ThatsOurWaldo/status/556110638028955648/photo/1,https://twitter.com/ThatsOurWaldo/status/556110638028955648/photo/1" "555542302647537664","555529863994408961","56887929","2015-01-15 01:49:41 +0000","Twitter for iPhone","@GreyMasterBrian @snookca You swipe different directions to archive on iPhone and iPad, for one thing. And the gesture fails ~1/3 times.","","","","" -"555476909044158465","555476661668683777","14761655","2015-01-14 21:29:50 +0000","Tweetbot for Mac","@tenderlove We should have called the $2 coin a doubloon. What a missed opportunity.","","","","" -"555449586269962241","555445931697377280","809685","2015-01-14 19:41:15 +0000","Tweetbot for Mac","@garybernhardt zsh in Terminal.app on 10.10 doesn’t work for me. http://t.co/U1hjLfLQU3","","","","http://static.samhuri.net/Screen%20Shot%202015-01-14%20at%2011.39.27%20AM.png" -"555433052042579969","","","2015-01-14 18:35:33 +0000","Tweetbot for Mac","RT @codepo8: Chris Poole on shuttering DrawQuest - donated capital to charity, user archives on http://t.co/CtdDTs6Bk7 http://t.co/TcGvVaJ…","555429077436604417","13567","2015-01-14 18:19:46 +0000","http://Archive.org,http://Archive.org,http://chrishateswriting.com/post/108080554943/a-pragmatists-startup-spin-down" +"555476909044158465","555476661668683777","14761655","2015-01-14 21:29:50 +0000","Tweetbot for Mac","@tenderlove We should have called the $2 coin a doubloon. What a missed opportunity.","","","","" +"555449586269962241","555445931697377280","809685","2015-01-14 19:41:15 +0000","Tweetbot for Mac","@garybernhardt zsh in Terminal.app on 10.10 doesn’t work for me. http://t.co/U1hjLfLQU3","","","","http://static.samhuri.net/Screen%20Shot%202015-01-14%20at%2011.39.27%20AM.png" +"555433052042579969","","","2015-01-14 18:35:33 +0000","Tweetbot for Mac","RT @codepo8: Chris Poole on shuttering DrawQuest - donated capital to charity, user archives on http://t.co/CtdDTs6Bk7 http://t.co/TcGvVaJ…","555429077436604417","13567","2015-01-14 18:19:46 +0000","http://Archive.org,http://Archive.org,http://chrishateswriting.com/post/108080554943/a-pragmatists-startup-spin-down" "555427772261085184","555427026287329282","108834413","2015-01-14 18:14:34 +0000","Twitter for iPhone","@karissabe 🍻","","","","" "555426810582691840","555426052424466432","108834413","2015-01-14 18:10:45 +0000","Twitter for iPhone","@karissabe That link doesn't work.","","","","" "555426455245434880","","216808077","2015-01-14 18:09:20 +0000","Twitter for iPhone","@Shawhelp Tried restarting the modem but no change.","","","","" "555426263825784832","","216808077","2015-01-14 18:08:35 +0000","Twitter for iPhone","@Shawhelp Been experiencing frequent connection interruptions of 3-10s the last couple weeks. Ethernet to modem direct on 3 machines. #yyj","","","","" "555237252083613696","","","2015-01-14 05:37:31 +0000","Twitter for iPhone","RT @VicBeerWeek: Folks, we're already sold out of one of our brewery crawl busses, don't sleep on those tickets. They are moving fast! http…","555201396400615424","2196503131","2015-01-14 03:15:02 +0000","http://Victoriabeerweek.com" -"555198845693358080","555196911654019072","22386062","2015-01-14 03:04:54 +0000","Tweetbot for Mac","@steveklabnik http://t.co/Wo7MZImywK","","","","https://twitter.com/_sjs/status/555198845693358080/photo/1" -"555068207636037632","555052179669929985","14096763","2015-01-13 18:25:48 +0000","Tweetbot for Mac","@TheStalwart @BenedictEvans Yeah, our local grocery store (Thrifty Foods) has been delivering for over a decade and it’s great.","","","","" -"555058641162616832","555053793432567812","1835411","2015-01-13 17:47:47 +0000","Tweetbot for Mac","@Ihnatko Until Amazon expands globally that content is trapped in the USA. This is good but also not good.","","","","" +"555198845693358080","555196911654019072","22386062","2015-01-14 03:04:54 +0000","Tweetbot for Mac","@steveklabnik http://t.co/Wo7MZImywK","","","","https://twitter.com/_sjs/status/555198845693358080/photo/1" +"555068207636037632","555052179669929985","14096763","2015-01-13 18:25:48 +0000","Tweetbot for Mac","@TheStalwart @BenedictEvans Yeah, our local grocery store (Thrifty Foods) has been delivering for over a decade and it’s great.","","","","" +"555058641162616832","555053793432567812","1835411","2015-01-13 17:47:47 +0000","Tweetbot for Mac","@Ihnatko Until Amazon expands globally that content is trapped in the USA. This is good but also not good.","","","","" "554401129002311681","","","2015-01-11 22:15:04 +0000","Twitter for iPhone","I was supposed to be shopping but had lunch at @thechurchillvic with @fyrite and ended up getting drunk instead. I'm not disappointed.","","","","" "554400455485190145","554395728806940672","12591","2015-01-11 22:12:23 +0000","Twitter for iPhone","@snookca @rem Yeah, that seems to be true. I still subscribe to RSS feeds for things I really care about. And for low volume sites.","","","","" "554395258025287680","554392803825164288","648873","2015-01-11 21:51:44 +0000","Twitter for iPhone","@rem @snookca Do people read Medium? I only go there when an article is linked up. Often by someone I already know.","","","","" @@ -2280,15 +2380,15 @@ Cabbie: ""Well let me tell you..."" blah blah blah","","","","" "554392191775174657","554389975744000000","108814849","2015-01-11 21:39:33 +0000","Twitter for iPhone","@snarfmason @thechurchillvic I bet. Just tried the Ugly Sweater and it's delicious.","","","","" "554388460690087936","","","2015-01-11 21:24:43 +0000","Twitter for iPhone","First time at @thechurchillvic and wondering why on earth I haven't been here before. I need more excuses to come downtown.","","","","" "553690437882359809","","1253355925","2015-01-09 23:11:02 +0000","Twitter for iPhone","@atpfm Eclipse is indeed awful. Good functionality but a horrific interface.","","","","" -"553622264298487808","553621057983483904","2960721","2015-01-09 18:40:08 +0000","Tweetbot for Mac","@flargh @chuq It depends on whether you value charging via Lightning more than using with non-iOS devices. Still not pointless.","","","","" -"553620811999752192","553618922855874560","6152112","2015-01-09 18:34:22 +0000","Tweetbot for Mac","@agiletortoise I’m about 5’9” and got used to the iPhone 6 pretty quickly. I can just barely one-hand it and wouldn’t go any bigger.","","","","" -"553611871727538176","553592628072423424","2960721","2015-01-09 17:58:50 +0000","Tweetbot for Mac","@flargh @chuq Noise-cancelling headphones are powered. Powering/charging via Lightning is a win. How is that pointless?","","","","" -"553611492516306944","553603096702496768","165975834","2015-01-09 17:57:20 +0000","Tweetbot for Mac","@PiCNiC_Coffee Tragic. I’m pouring out an Americano here.","","","","" -"553610646600704001","","","2015-01-09 17:53:58 +0000","Tweetbot for Mac","RT @nitinganatra: 8 years ago today: Nerves, relief, brief celebration, pause, race to finish!","553608619657162752","6346782","2015-01-09 17:45:55 +0000","" -"553350605906124800","","","2015-01-09 00:40:39 +0000","Tweetbot for Mac","RT @karissabe: Fake Apple Watch update: it doesn't seem to accurately keep time, about 10 min off currently","553345896251805696","108834413","2015-01-09 00:21:56 +0000","" +"553622264298487808","553621057983483904","2960721","2015-01-09 18:40:08 +0000","Tweetbot for Mac","@flargh @chuq It depends on whether you value charging via Lightning more than using with non-iOS devices. Still not pointless.","","","","" +"553620811999752192","553618922855874560","6152112","2015-01-09 18:34:22 +0000","Tweetbot for Mac","@agiletortoise I’m about 5’9” and got used to the iPhone 6 pretty quickly. I can just barely one-hand it and wouldn’t go any bigger.","","","","" +"553611871727538176","553592628072423424","2960721","2015-01-09 17:58:50 +0000","Tweetbot for Mac","@flargh @chuq Noise-cancelling headphones are powered. Powering/charging via Lightning is a win. How is that pointless?","","","","" +"553611492516306944","553603096702496768","165975834","2015-01-09 17:57:20 +0000","Tweetbot for Mac","@PiCNiC_Coffee Tragic. I’m pouring out an Americano here.","","","","" +"553610646600704001","","","2015-01-09 17:53:58 +0000","Tweetbot for Mac","RT @nitinganatra: 8 years ago today: Nerves, relief, brief celebration, pause, race to finish!","553608619657162752","6346782","2015-01-09 17:45:55 +0000","" +"553350605906124800","","","2015-01-09 00:40:39 +0000","Tweetbot for Mac","RT @karissabe: Fake Apple Watch update: it doesn't seem to accurately keep time, about 10 min off currently","553345896251805696","108834413","2015-01-09 00:21:56 +0000","" "553326259988467713","","","2015-01-08 23:03:55 +0000","Twitter for Websites","I bought a fake Apple Watch for $27 at CES http://t.co/ynuhW4P8G5 via @mashable","","","","http://mashable.com/2015/01/08/fake-apple-watch-ces/#:eyJzIjoidCIsImkiOiJfOTYzbGNldG15eXcxcHMzNiJ9" -"553267288804057088","","","2015-01-08 19:09:35 +0000","Tweetbot for Mac","Translation: “It’s not me. It’s you.” http://t.co/yw4Oxoozu0","","","","http://www.apple.com/pr/library/2015/01/08App-Store-Rings-in-2015-with-New-Records.html" -"553236451488301056","","","2015-01-08 17:07:03 +0000","Tweetbot for Mac","RT @asymco: iOS developers were paid at the average rate of $28 million/day in 2014. +"553267288804057088","","","2015-01-08 19:09:35 +0000","Tweetbot for Mac","Translation: “It’s not me. It’s you.” http://t.co/yw4Oxoozu0","","","","http://www.apple.com/pr/library/2015/01/08App-Store-Rings-in-2015-with-New-Records.html" +"553236451488301056","","","2015-01-08 17:07:03 +0000","Tweetbot for Mac","RT @asymco: iOS developers were paid at the average rate of $28 million/day in 2014. The rate was $22 million/day in 2013 and about $9m/d…","553220588786176001","110520327","2015-01-08 16:04:01 +0000","" "553215323726307328","553124988094799873","289246577","2015-01-08 15:43:06 +0000","Twitter for iPhone","@merowing_ Nobody should be able to eat that. Is that in NYC?","","","","" @@ -2296,19 +2396,19 @@ The rate was $22 million/day in 2013 and about $9m/d…","553220588786176001","1 "553070732897296384","","","2015-01-08 06:08:32 +0000","Instapaper","Phantom Types - objc.io http://t.co/WpcKxY2YIE via @instapaper","","","","http://j.mp/1wWTVkJ" "553070307313848320","","","2015-01-08 06:06:51 +0000","Instapaper","Enums instead of Booleans - objc.io http://t.co/swnUQNU8T0 via @instapaper","","","","http://j.mp/17kCx4G" "553068486520365056","553066747427704832","8259712","2015-01-08 05:59:37 +0000","Twitter for iPad",".@DanFrakes And it happens to the AppleTV which breaks AirPlay now and then. Very annoying.","","","","" -"552890713713553410","","","2015-01-07 18:13:13 +0000","Tweetbot for Mac","RT @rentzsch: I would totally join an animated-gifs-only social network","552890274951593984","663463","2015-01-07 18:11:28 +0000","" +"552890713713553410","","","2015-01-07 18:13:13 +0000","Tweetbot for Mac","RT @rentzsch: I would totally join an animated-gifs-only social network","552890274951593984","663463","2015-01-07 18:11:28 +0000","" "552707025386217472","","","2015-01-07 06:03:18 +0000","Twitter for iPad","If you post something on the web please put a date on it.","","","","" -"552692333297147905","","","2015-01-07 05:04:55 +0000","Tweetbot for Mac","RT @joshuatopolsky: Coolest CES announcement yet http://t.co/KMpNuVO6MD http://t.co/KMpNuVO6MD","552675767130525696","11666142","2015-01-07 03:59:05 +0000","http://www.theverge.com/2015/1/6/7500945/makerbot-announces-new-filaments-limestone-metal-and-wood-ces-2015,http://www.theverge.com/2015/1/6/7500945/makerbot-announces-new-filaments-limestone-metal-and-wood-ces-2015,http://www.theverge.com/2015/1/6/7500945/makerbot-announces-new-filaments-limestone-metal-and-wood-ces-2015,http://www.theverge.com/2015/1/6/7500945/makerbot-announces-new-filaments-limestone-metal-and-wood-ces-2015" -"552552121761923073","","","2015-01-06 19:47:46 +0000","Tweetbot for Mac","RT @merowing_: While I’m in NYC, is there any iOS meetup happening 10th-15th February? I’d be happy to speak at one :)","552551346222936064","289246577","2015-01-06 19:44:41 +0000","" -"552166516347518977","552164902232535041","108814849","2015-01-05 18:15:30 +0000","Tweetbot for Mac","@snarfmason @TroySurrett I haven’t tried many ryes yet. Maybe we should meet up and make some Manhattans and Sazeracs one day.","","","","" -"552160018523357184","552152360655400960","840626214","2015-01-05 17:49:41 +0000","Tweetbot for Mac","@TroySurrett @snarfmason Nice. I’ll have to pick up a bottle sometime.","","","","" +"552692333297147905","","","2015-01-07 05:04:55 +0000","Tweetbot for Mac","RT @joshuatopolsky: Coolest CES announcement yet http://t.co/KMpNuVO6MD http://t.co/KMpNuVO6MD","552675767130525696","11666142","2015-01-07 03:59:05 +0000","http://www.theverge.com/2015/1/6/7500945/makerbot-announces-new-filaments-limestone-metal-and-wood-ces-2015,http://www.theverge.com/2015/1/6/7500945/makerbot-announces-new-filaments-limestone-metal-and-wood-ces-2015,http://www.theverge.com/2015/1/6/7500945/makerbot-announces-new-filaments-limestone-metal-and-wood-ces-2015,http://www.theverge.com/2015/1/6/7500945/makerbot-announces-new-filaments-limestone-metal-and-wood-ces-2015" +"552552121761923073","","","2015-01-06 19:47:46 +0000","Tweetbot for Mac","RT @merowing_: While I’m in NYC, is there any iOS meetup happening 10th-15th February? I’d be happy to speak at one :)","552551346222936064","289246577","2015-01-06 19:44:41 +0000","" +"552166516347518977","552164902232535041","108814849","2015-01-05 18:15:30 +0000","Tweetbot for Mac","@snarfmason @TroySurrett I haven’t tried many ryes yet. Maybe we should meet up and make some Manhattans and Sazeracs one day.","","","","" +"552160018523357184","552152360655400960","840626214","2015-01-05 17:49:41 +0000","Tweetbot for Mac","@TroySurrett @snarfmason Nice. I’ll have to pick up a bottle sometime.","","","","" "551567557426024449","","","2015-01-04 02:35:27 +0000","Twitter for iPhone","What do I do with Schramm Gin? It's awful. Can it be used for good?","","","","" "551224386439503872","551219275726204928","894911","2015-01-03 03:51:49 +0000","Twitter for iPhone","@JimRoepcke You can barely even look at a Mac app from an iOS device, and that's an improvement over 1-2 years ago. It's crazy.","","","","" "551216457078423553","","","2015-01-03 03:20:19 +0000","Twitter for iPad","RT @snarfmason: @_sjs it's like ""mini me"" for a real Mac.","551208936561336320","108814849","2015-01-03 02:50:26 +0000","" "551204196825849856","551201169641865217","14106454","2015-01-03 02:31:36 +0000","Twitter for iPad","@srbaker @the_zenspider Heh, there's always one!","","","","" "551201052356116480","551193264565780480","14106454","2015-01-03 02:19:06 +0000","Twitter for iPhone","@srbaker @the_zenspider My sisters in Ontario and Alberta get a kick out of me talking about my winter hoodies.","","","","" "551173855549460480","","","2015-01-03 00:31:02 +0000","Twitter for iPhone","Ouch. ""I mean, it's only Denmark so it doesn't *really* matter."" #WJC2015 #CAN #DK","","","","" -"551144553730682880","","","2015-01-02 22:34:36 +0000","Tweetbot for Mac","If you were unsure how Apple really feels about the Mac mini… http://t.co/ulgAA49ewg","","","","https://twitter.com/_sjs/status/551144553730682880/photo/1" +"551144553730682880","","","2015-01-02 22:34:36 +0000","Tweetbot for Mac","If you were unsure how Apple really feels about the Mac mini… http://t.co/ulgAA49ewg","","","","https://twitter.com/_sjs/status/551144553730682880/photo/1" "551079273386090496","551022639293415426","273025851","2015-01-02 18:15:11 +0000","Twitter for iPad","This is perfect. “@3eanuts: January 2, 1988 — ""Who cares?"" http://t.co/Rn41Lm0XaF”","","","","http://tmblr.co/ZfFJgx1ZZ-jwA" "550595298280484865","","","2015-01-01 10:12:03 +0000","Twitter for iPhone","RT @mink_ette: Good morning! Welcome to 2015, please drink lots of water.","550573723317968896","24217237","2015-01-01 08:46:19 +0000","" "550563538926727168","","","2015-01-01 08:05:51 +0000","Twitter for iPhone","RT @SteveStreza: are there any hot new memes of 2015 yet","550563414586580994","658643","2015-01-01 08:05:21 +0000","" @@ -2364,13 +2464,13 @@ The rate was $22 million/day in 2013 and about $9m/d…","553220588786176001","1 "545016062329110528","545010403122507776","108814849","2014-12-17 00:42:09 +0000","Tweetbot for iΟS","@snarfmason @seattlerb Sounds good. Maybe sometime in January? Can't make it tonight 😝","","","","" "545009124681842688","545007958132670465","108814849","2014-12-17 00:14:35 +0000","Tweetbot for iΟS","@snarfmason @pete_higgins @seattlerb Heh, yeah we can start by attending. I'll read up on it tonight. Probably down for that!","","","","" "545006370802528256","545004523740098561","108814849","2014-12-17 00:03:39 +0000","Twitter for iPhone","@snarfmason @seattlerb @pete_higgins Oh I don't know about doing a talk. That sounds terrifying. Attending would be fun though!","","","","" -"544892381963636738","544891861651836929","11201752","2014-12-16 16:30:42 +0000","Tweetbot for Mac","@donmelton @Hay Slacker.","","","","" +"544892381963636738","544891861651836929","11201752","2014-12-16 16:30:42 +0000","Tweetbot for Mac","@donmelton @Hay Slacker.","","","","" "544612893526724608","","","2014-12-15 22:00:06 +0000","Twitter for iPhone","Butterflies kind of creep me out.","","","","" -"544586875617292289","","","2014-12-15 20:16:43 +0000","Tweetbot for Mac","That font I was asking about the other day is Avenida or a variation of it. https://t.co/F7DdYMw51X","","","","https://twitter.com/_sjs/status/543980322535124994" -"544585189708402688","544583320160333824","108814849","2014-12-15 20:10:01 +0000","Tweetbot for Mac","@snarfmason @srbaker ha! The 13” is pretty sweet.","","","","" -"544572276411097088","544571661341958144","14106454","2014-12-15 19:18:43 +0000","Tweetbot for Mac","@srbaker That’s good! Hope it turns out well.","","","","" -"544571598716411904","544570597939093505","14106454","2014-12-15 19:16:01 +0000","Tweetbot for Mac","@srbaker I turned it upside down immediately after it shut down, and then opened it up and sopped up the milk after it stopped dripping out.","","","","" -"544571408819310594","544570597939093505","14106454","2014-12-15 19:15:16 +0000","Tweetbot for Mac","@srbaker My old white MacBook miraculously survived a 1/2 pint of chocolate milk that seeped through the keyboard onto the motherboard.","","","","" +"544586875617292289","","","2014-12-15 20:16:43 +0000","Tweetbot for Mac","That font I was asking about the other day is Avenida or a variation of it. https://t.co/F7DdYMw51X","","","","https://twitter.com/_sjs/status/543980322535124994" +"544585189708402688","544583320160333824","108814849","2014-12-15 20:10:01 +0000","Tweetbot for Mac","@snarfmason @srbaker ha! The 13” is pretty sweet.","","","","" +"544572276411097088","544571661341958144","14106454","2014-12-15 19:18:43 +0000","Tweetbot for Mac","@srbaker That’s good! Hope it turns out well.","","","","" +"544571598716411904","544570597939093505","14106454","2014-12-15 19:16:01 +0000","Tweetbot for Mac","@srbaker I turned it upside down immediately after it shut down, and then opened it up and sopped up the milk after it stopped dripping out.","","","","" +"544571408819310594","544570597939093505","14106454","2014-12-15 19:15:16 +0000","Tweetbot for Mac","@srbaker My old white MacBook miraculously survived a 1/2 pint of chocolate milk that seeped through the keyboard onto the motherboard.","","","","" "544508042390159362","544442378262937600","289246577","2014-12-15 15:03:28 +0000","Twitter for iPhone","@merowing_ (╯°□°)╯︵ ┻━┻","","","","" "544507254825680896","","","2014-12-15 15:00:20 +0000","Twitter for iPhone","RT @monkbent: ""From Open (Unlimited) to Minimum Vacation Policy"" @@ -2385,7 +2485,7 @@ Amen. Open vacation policies are awful. Not a perk at all. "543774503268921344","543716523689648129","289246577","2014-12-13 14:28:39 +0000","Twitter for iPhone","@merowing_ woot!","","","","" "543774360952004608","543720397393649664","33493","2014-12-13 14:28:05 +0000","Twitter for iPhone","@peterc Canadian here. Yes, we assume USD is the default.","","","","" "543773512259735553","","135727142","2014-12-13 14:24:42 +0000","Twitter for iPhone","@ToddDunlop Looks like you're onto something with your email system: http://t.co/x9D9opa4jt","","","","http://on.mash.to/1GuGhuT" -"543578897422364672","","","2014-12-13 01:31:23 +0000","Tweetbot for Mac","Ready for some sweet sloth action? Fresh footage from Costa Rica: https://t.co/YJClFD4dhL","","","","https://www.youtube.com/watch?v=ilKwF8WPBhY&feature=youtu.be" +"543578897422364672","","","2014-12-13 01:31:23 +0000","Tweetbot for Mac","Ready for some sweet sloth action? Fresh footage from Costa Rica: https://t.co/YJClFD4dhL","","","","https://www.youtube.com/watch?v=ilKwF8WPBhY&feature=youtu.be" "539053065803153408","","","2014-11-30 13:47:20 +0000","Tweetbot for iΟS","Almost makes me want to use a notebook “@alexleavitt: This is a FREAKING BRILLIANT notebook organization technique. http://t.co/EvnHnPM6bs”","","","","http://blog.highfivehq.com/posts/a-little-known-hack-from-japan-to-get-your-notebook-organized" "538857250946035713","","","2014-11-30 00:49:14 +0000","Tweetbot for iΟS","RT @peterc: Just for fun, I've set up a public Redis server at http://t.co/GjPO9Qpu2R port 22101 - do what you like with it. I'll figure ou…","538848025947693057","33493","2014-11-30 00:12:35 +0000","http://redis.pcs.io,http://redis.pcs.io" "538567598049607680","538565116690587648","135727142","2014-11-29 05:38:16 +0000","Tweetbot for iΟS","@ToddDunlop Ah ok. We have a day or two here before we go south. I'll let you know if we find anything cool.","","","","" @@ -2394,83 +2494,83 @@ Amen. Open vacation policies are awful. Not a perk at all. "538526459862986753","538392807891664896","15292261","2014-11-29 02:54:48 +0000","Tweetbot for iΟS","@gregbate Thanks! So far so good.","","","","" "538526264530059265","","","2014-11-29 02:54:01 +0000","Tweetbot for iΟS","DFW ✈ SJO #laterflight","","","","" "538370670640390144","","","2014-11-28 16:35:44 +0000","Tweetbot for iΟS","YVR ✈ DFW (by the skin of my teeth)","","","","" -"538340864171335680","","","2014-11-28 14:37:18 +0000","Twitterrific","YYJ ✈ YVR","","","","" -"538331528506257409","","","2014-11-28 14:00:12 +0000","Twitterrific","RT @Catfish_Man: Hahahaha welp 🍪 http://t.co/UPZTpHt82x","538274411229773824","15444008","2014-11-28 10:13:14 +0000","https://twitter.com/Catfish_Man/status/538274411229773824/photo/1,https://twitter.com/Catfish_Man/status/538274411229773824/photo/1" +"538340864171335680","","","2014-11-28 14:37:18 +0000","Twitterrific for iOS","YYJ ✈ YVR","","","","" +"538331528506257409","","","2014-11-28 14:00:12 +0000","Twitterrific for iOS","RT @Catfish_Man: Hahahaha welp 🍪 http://t.co/UPZTpHt82x","538274411229773824","15444008","2014-11-28 10:13:14 +0000","https://twitter.com/Catfish_Man/status/538274411229773824/photo/1,https://twitter.com/Catfish_Man/status/538274411229773824/photo/1" "537996257386455041","","","2014-11-27 15:47:57 +0000","Tweetbot for iΟS","Follow spam: the Twitter equivalent of cat calling. Well, I ain't no follow back guy.","","","","" "537698873796345856","537675629878329344","894911","2014-11-26 20:06:16 +0000","Tweetbot for iΟS","@JimRoepcke That looks awesome, and their promo video is really good too.","","","","" -"537670838775209984","537669061920817152","108814849","2014-11-26 18:14:52 +0000","Tweetbot for Mac","@snarfmason @phillipsbeer In the right hands, totally reasonable. Encouraged even. You can handle it.","","","","" +"537670838775209984","537669061920817152","108814849","2014-11-26 18:14:52 +0000","Tweetbot for Mac","@snarfmason @phillipsbeer In the right hands, totally reasonable. Encouraged even. You can handle it.","","","","" "537350805171355648","537350438928908288","108814849","2014-11-25 21:03:10 +0000","Tweetbot for iΟS","@snarfmason No not really. Especially on an iPad.","","","","" "537348565022953472","537348316099395584","108814849","2014-11-25 20:54:16 +0000","Tweetbot for iΟS","@snarfmason I think if you're spending hundreds of dollars for something you plan on using every day for years, get the best one.","","","","" "537157550261534720","537155749341065216","289246577","2014-11-25 08:15:14 +0000","Tweetbot for iΟS","@merowing_ No problem. Hope you find something you like! The fan is audible when using the CPU or GPU a lot, but otherwise silent to me.","","","","" "537155580360540161","537142453040865280","289246577","2014-11-25 08:07:24 +0000","Tweetbot for iΟS","@merowing_ I used to use a Hackintosh but there are lots of little problems. Much happier with the retina iMac. No need for a Mac Pro.","","","","" -"537066220571197440","537064412578734080","4777951","2014-11-25 02:12:19 +0000","Tweetbot for Mac","And man does that truncated label on Instapaper bother me.","","","","" +"537066220571197440","537064412578734080","4777951","2014-11-25 02:12:19 +0000","Tweetbot for Mac","And man does that truncated label on Instapaper bother me.","","","","" "537064412578734080","","","2014-11-25 02:05:08 +0000","iOS","My #Homescreen: https://t.co/AHFFDmiuIe http://t.co/jHXS2jOrfN","","","","https://homescreen.is/_sjs/screenshot/3077,https://twitter.com/_sjs/status/537064412578734080/photo/1" "537042042610659328","","","2014-11-25 00:36:15 +0000","Tweetbot for iΟS","Hiking in the rain. Twitter will probably mangle the panorama. http://t.co/ziJuBgsOgc","","","","https://twitter.com/_sjs/status/537042042610659328/photo/1" "536582658608726016","","","2014-11-23 18:10:49 +0000","iOS","The ice-skating waiters of Switzerland http://t.co/rbo8mw7nci via @mashable","","","","http://on.mash.to/1qSRaF7" "536401608020471808","536400787380121600","335991063","2014-11-23 06:11:23 +0000","Tweetbot for iΟS","@AnthonyNystrom Hope things are going well with you too!","","","","" "536401506720022529","536400787380121600","335991063","2014-11-23 06:10:59 +0000","Tweetbot for iΟS","@AnthonyNystrom Yeah doing well thanks! Reading about injuries due to McDonald's pie filling. Remember how hot it used to be?","","","","" -"536397141678108672","536389219812646913","335991063","2014-11-23 05:53:39 +0000","Twitterrific",".@AnthonyNystrom That was pretty good. I hadn't seen a bunch of those memes before.","","","","" +"536397141678108672","536389219812646913","335991063","2014-11-23 05:53:39 +0000","Twitterrific for iOS",".@AnthonyNystrom That was pretty good. I hadn't seen a bunch of those memes before.","","","","" "536376561323081728","536350003506057216","14180235","2014-11-23 04:31:52 +0000","Tweetbot for iΟS","@daveeed What a shame too, it was delicious.","","","","" "536349799486738432","","","2014-11-23 02:45:31 +0000","Tweetbot for iΟS","A Novemeber barbecue. Victoria is really awesome. http://t.co/ROIUfz2x61","","","","https://twitter.com/_sjs/status/536349799486738432/photo/1" "536248118681956352","","","2014-11-22 20:01:29 +0000","Tweetbot for iΟS","RT @Conorpope: ""Tell me about Twitter, Dad."" ""Well son, we would piece together the news of the day by reading strangers' decontextified jo…","255225840202297344","19507934","2012-10-08 08:39:16 +0000","" -"536027686108278784","536013503182954496","1318181","2014-11-22 05:25:33 +0000","Tweetbot for Mac","@_ I’ve done that before, unintentionally. I wondered if anyone ever noticed or thought anything of it.","","","","" +"536027686108278784","536013503182954496","1318181","2014-11-22 05:25:33 +0000","Tweetbot for Mac","@_ I’ve done that before, unintentionally. I wondered if anyone ever noticed or thought anything of it.","","","","" "536013287280762882","","","2014-11-22 04:28:20 +0000","Tweetbot for iΟS","RT @_: My favorite Twitter interaction (besides, you know, conversation) is the fave and then, ten minutes later, the RT.","535986529093836802","1318181","2014-11-22 02:42:01 +0000","" "535981332921208833","","","2014-11-22 02:21:22 +0000","Tweetbot for iΟS","Unspirational http://t.co/wL9q5LWb8m","","","","http://www.jwz.org/blog/2014/11/unspirational/" -"535913702709407744","535900371088994304","11973362","2014-11-21 21:52:38 +0000","Tweetbot for Mac","@typeoneerror I use hub to do some things done by your aliases. Highly recommended. https://t.co/bj6HdvlkYR","","","","https://github.com/github/hub" -"535912548852195328","535900371088994304","11973362","2014-11-21 21:48:03 +0000","Tweetbot for Mac",".@typeoneerror My git aliases. In zshrc instead of gitconfig so they can be shorter. https://t.co/O57mgitkt2","","","","https://github.com/samsonjs/config/blob/b180637a1946418ed3defcad7ab8d748e04b0dca/zsh/zshrc#L218-L253" +"535913702709407744","535900371088994304","11973362","2014-11-21 21:52:38 +0000","Tweetbot for Mac","@typeoneerror I use hub to do some things done by your aliases. Highly recommended. https://t.co/bj6HdvlkYR","","","","https://github.com/github/hub" +"535912548852195328","535900371088994304","11973362","2014-11-21 21:48:03 +0000","Tweetbot for Mac",".@typeoneerror My git aliases. In zshrc instead of gitconfig so they can be shorter. https://t.co/O57mgitkt2","","","","https://github.com/samsonjs/config/blob/b180637a1946418ed3defcad7ab8d748e04b0dca/zsh/zshrc#L218-L253" "535863899073949696","","","2014-11-21 18:34:44 +0000","Twitter for Websites","From now on I will avoid raw frog poultices. #waitwhat http://t.co/oHpBNoHylk via @mashable","","","","http://mashable.com/2014/11/21/man-discovers-tapeworm-in-his-brain/#:eyJzIjoidCIsImkiOiJfOTYzbGNldG15eXcxcHMzNiJ9" -"535845668833607680","535843265648799745","15611233","2014-11-21 17:22:17 +0000","Twitterrific","@vroy @srbaker I use Stocard too and it's not bad. Some machines can scan your phone. It bumps up the brightness like Passbook which is nice","","","","" +"535845668833607680","535843265648799745","15611233","2014-11-21 17:22:17 +0000","Twitterrific for iOS","@vroy @srbaker I use Stocard too and it's not bad. Some machines can scan your phone. It bumps up the brightness like Passbook which is nice","","","","" "535837269903413248","","","2014-11-21 16:48:55 +0000","Tweetbot for iΟS","It was a good run, ☕. “@dtome: One Man's Epic Quest To Sanitize Your Filthy, Germ-Riddled Coffee Cup Lid cc @Brie http://t.co/L06IF7148G”","","","","http://m.fastcompany.com/3038551/most-creative-people/one-mans-epic-quest-to-sanitize-your-filthy-germ-riddled-coffee-cup-lid" "535836996472541184","535794059747393538","7854152","2014-11-21 16:47:49 +0000","Tweetbot for iΟS","@dtome @Brie Awww dude. I have never been so happy to work at home. I hope I can forget about this before my next coffee purchase.","","","","" "535472992495480832","","","2014-11-20 16:41:24 +0000","OS X","I’m just waiting for @BowsXArrows to show up on this hipster business name generator. http://t.co/9qU1n2977W","","","","http://hipsterbusiness.name/" -"535282279019343872","","","2014-11-20 04:03:35 +0000","Twitterrific","RT @bthdonohue: In the hour or so since sending out iOS beta to 800 people, got 125 installs, 6 feedback emails, and 1 crash report. Amazin…","535264752155779072","337167459","2014-11-20 02:53:56 +0000","" -"535281329865097217","","","2014-11-20 03:59:48 +0000","Twitterrific","RT @bthdonohue: Just sent out iOS beta invitations to almost 800 people, it's a brave new world.","535248276346638337","337167459","2014-11-20 01:48:28 +0000","" -"535182169459929090","535123504874938368","25703613","2014-11-19 21:25:47 +0000","Tweetbot for Mac","@Cocoanetics That is a damn good question.","","","","" +"535282279019343872","","","2014-11-20 04:03:35 +0000","Twitterrific for iOS","RT @bthdonohue: In the hour or so since sending out iOS beta to 800 people, got 125 installs, 6 feedback emails, and 1 crash report. Amazin…","535264752155779072","337167459","2014-11-20 02:53:56 +0000","" +"535281329865097217","","","2014-11-20 03:59:48 +0000","Twitterrific for iOS","RT @bthdonohue: Just sent out iOS beta invitations to almost 800 people, it's a brave new world.","535248276346638337","337167459","2014-11-20 01:48:28 +0000","" +"535182169459929090","535123504874938368","25703613","2014-11-19 21:25:47 +0000","Tweetbot for Mac","@Cocoanetics That is a damn good question.","","","","" "535115391148625920","","","2014-11-19 17:00:25 +0000","Twitter Lite","RT @merowing_: I’m very excited to announce that I’ll be joining some really cool and crazy smart people at @mashable","534912170426138624","289246577","2014-11-19 03:32:54 +0000","" "535113029407354880","535107833130663936","14106454","2014-11-19 16:51:02 +0000","Tweetbot for iΟS","@srbaker At a high resolution your eyes might not be the problem, but I'll take your word for it that your eyes are just terrible.","","","","" "535106232294453248","535091830992678912","14106454","2014-11-19 16:24:02 +0000","Tweetbot for iΟS","@srbaker That's unfortunate. What size? What simulated resolution? I thought simulated 2560x1440 was good on the 28"" one I borrowed.","","","","" -"534860674179280898","534827686871715840","989151","2014-11-19 00:08:16 +0000","Tweetbot for Mac","@leggett @jm_denis @stroughtonsmith Right. Positively shocking. http://t.co/Yo9VitHkz8","","","","http://theunderstatement.com/post/11645166791/roboto-vs-helvetica" -"534802561421680640","","","2014-11-18 20:17:21 +0000","Twitterrific","RT @mraleph: I have a better idea for JavaScript typechecker +"534860674179280898","534827686871715840","989151","2014-11-19 00:08:16 +0000","Tweetbot for Mac","@leggett @jm_denis @stroughtonsmith Right. Positively shocking. http://t.co/Yo9VitHkz8","","","","http://theunderstatement.com/post/11645166791/roboto-vs-helvetica" +"534802561421680640","","","2014-11-18 20:17:21 +0000","Twitterrific for iOS","RT @mraleph: I have a better idea for JavaScript typechecker $ ocaml test.js File ""test.js"", line 1, characters 12-13: Error: Syntax error","534795271805620224","53010195","2014-11-18 19:48:23 +0000","" -"534513037269430272","534428471871565825","1796301","2014-11-18 01:06:53 +0000","Tweetbot for Mac","@tofias Yes.","","","","" +"534513037269430272","534428471871565825","1796301","2014-11-18 01:06:53 +0000","Tweetbot for Mac","@tofias Yes.","","","","" "534381632715620352","","","2014-11-17 16:24:44 +0000","Tweetbot for iΟS","RT @drwave: I open it, noting the ease with which the lid comes off. “These are excellent, well-designed boxes” // cc @jonronson http://t.c…","534223485246001152","14092590","2014-11-17 05:56:18 +0000","http://www.cinephiliabeyond.org/stanley-kubricks-boxes/" -"534081523796824065","534071253162659841","15292261","2014-11-16 20:32:12 +0000","Twitterrific","@gregbate @fyrite No problem! It worked out okay. We could do that again.","","","","" +"534081523796824065","534071253162659841","15292261","2014-11-16 20:32:12 +0000","Twitterrific for iOS","@gregbate @fyrite No problem! It worked out okay. We could do that again.","","","","" "533807617928220673","533806793164468225","894911","2014-11-16 02:23:48 +0000","Tweetbot for iΟS","@JimRoepcke I don't understand the motivation behind it all. Just for lulz? The screenshots make them effective. I think I retweeted one.","","","","" "533806624855425025","533729777480245248","894911","2014-11-16 02:19:51 +0000","Tweetbot for iΟS","@JimRoepcke I've seen those before. Did it pan out?","","","","" "533717072199442432","533716755177148416","108814849","2014-11-15 20:24:00 +0000","Tweetbot for iΟS","@snarfmason @phillipsbeer I got that at Cascadia uptown.","","","","" "533708051706953728","533707255955222528","65141250","2014-11-15 19:48:10 +0000","Tweetbot for iΟS","@phillipsbeer @fyrite Please figure out how to sell this at hockey games. Until then I'll have to sneak it in.","","","","" "533696828156289024","","","2014-11-15 19:03:34 +0000","Tweetbot for iΟS","Picked up a taste of this hop liqueur made by @phillipsbeer. Trying hard to save it for this afternoon. http://t.co/HmoXmeP0II","","","","https://twitter.com/_sjs/status/533696828156289024/photo/1" -"533474573899931648","","","2014-11-15 04:20:24 +0000","Tweetbot for Mac","Did anyone at Apple test Reading List with thousands of (read) items in it? Because it is not good. Sync takes forever. No mass delete.","","","","" -"533298714480492544","","","2014-11-14 16:41:36 +0000","Twitterrific","RT @raganwald: Concatenative languges like Forth are just “toy” languages. Especially if your idea of playing with toys is landing a probe …","533284381930962944","18137723","2014-11-14 15:44:39 +0000","" -"533298198925025281","533277674496487425","2786220516","2014-11-14 16:39:33 +0000","Twitterrific","@bleedsixcolors Above the first chart, the link to your original review goes to OWC.","","","","" -"533296130990559233","533280560765210624","1628814223","2014-11-14 16:31:20 +0000","Twitterrific","@thenatekirby Yes, a problem. A really awesome problem.","","","","" -"533132277703012352","533131340460597248","108814849","2014-11-14 05:40:14 +0000","Tweetbot for Mac","@snarfmason Nice. It’s pretty sweet that people can do that sort of thing on Android.","","","","" -"533130758870016000","533130253020196865","108814849","2014-11-14 05:34:12 +0000","Tweetbot for Mac","@snarfmason Good to know. I’m not sure I use my N7 enough to change the keyboard. Mostly keep it around to satisfy my curiosity.","","","","" -"533128921567744000","533128692210614273","108814849","2014-11-14 05:26:54 +0000","Tweetbot for Mac","@snarfmason Agree about 4.4 keyboard being good. What keyboard do you use?","","","","" -"533123439532711936","533123246141734914","108814849","2014-11-14 05:05:07 +0000","Tweetbot for Mac","@snarfmason ha ha. yeah I guess I should get Swype or something. And I was starting to like the Android keyboard. Oh well.","","","","" -"533003061451816962","","","2014-11-13 21:06:47 +0000","Tweetbot for Mac","What are you all doing for code coverage with Xcode? CoverStory? coveralls.io via cpp-coveralls?","","","","" -"532999791857659904","","","2014-11-13 20:53:47 +0000","Tweetbot for Mac","Q: How do you know if someone is a vi user? +"533474573899931648","","","2014-11-15 04:20:24 +0000","Tweetbot for Mac","Did anyone at Apple test Reading List with thousands of (read) items in it? Because it is not good. Sync takes forever. No mass delete.","","","","" +"533298714480492544","","","2014-11-14 16:41:36 +0000","Twitterrific for iOS","RT @raganwald: Concatenative languges like Forth are just “toy” languages. Especially if your idea of playing with toys is landing a probe …","533284381930962944","18137723","2014-11-14 15:44:39 +0000","" +"533298198925025281","533277674496487425","2786220516","2014-11-14 16:39:33 +0000","Twitterrific for iOS","@bleedsixcolors Above the first chart, the link to your original review goes to OWC.","","","","" +"533296130990559233","533280560765210624","1628814223","2014-11-14 16:31:20 +0000","Twitterrific for iOS","@thenatekirby Yes, a problem. A really awesome problem.","","","","" +"533132277703012352","533131340460597248","108814849","2014-11-14 05:40:14 +0000","Tweetbot for Mac","@snarfmason Nice. It’s pretty sweet that people can do that sort of thing on Android.","","","","" +"533130758870016000","533130253020196865","108814849","2014-11-14 05:34:12 +0000","Tweetbot for Mac","@snarfmason Good to know. I’m not sure I use my N7 enough to change the keyboard. Mostly keep it around to satisfy my curiosity.","","","","" +"533128921567744000","533128692210614273","108814849","2014-11-14 05:26:54 +0000","Tweetbot for Mac","@snarfmason Agree about 4.4 keyboard being good. What keyboard do you use?","","","","" +"533123439532711936","533123246141734914","108814849","2014-11-14 05:05:07 +0000","Tweetbot for Mac","@snarfmason ha ha. yeah I guess I should get Swype or something. And I was starting to like the Android keyboard. Oh well.","","","","" +"533003061451816962","","","2014-11-13 21:06:47 +0000","Tweetbot for Mac","What are you all doing for code coverage with Xcode? CoverStory? coveralls.io via cpp-coveralls?","","","","" +"532999791857659904","","","2014-11-13 20:53:47 +0000","Tweetbot for Mac","Q: How do you know if someone is a vi user? A: They’ll tell you. cc @gisikw","","","","" -"532980078125539328","532979824336588801","25703613","2014-11-13 19:35:27 +0000","Tweetbot for Mac","@Cocoanetics 👍 Let me know and I will dupe it.","","","","" -"532979459322699777","532978748300488704","25703613","2014-11-13 19:33:00 +0000","Tweetbot for Mac","@Cocoanetics No. I haven’t reduced a test case. Seems to happen after dismissing a landscape view, but appearing view is portrait only.","","","","" -"532978143389573120","532977963265196032","25703613","2014-11-13 19:27:46 +0000","Tweetbot for Mac","@Cocoanetics Yeah :( If you find anything better please share.","","","","" -"532971672421552128","532971509175025665","4777951","2014-11-13 19:02:03 +0000","Tweetbot for Mac","@Cocoanetics The view will not be interactive for a brief moment while the presentation happens. There’s a slight visual flash.","","","","" -"532971509175025665","532961330974949376","25703613","2014-11-13 19:01:24 +0000","Tweetbot for Mac","@Cocoanetics Here is a terrible workaround that we came up with. It works but there are caveats. https://t.co/J55cboFeC1","","","","https://gist.github.com/samsonjs/80bbd5c38d6df1346334" -"532940918043987968","","","2014-11-13 16:59:51 +0000","Twitterrific","Not a fan of the Android 5 keyboard. I'm fine with ditching button shapes on many buttons, but not the keyboard.","","","","" -"532683975274536961","","","2014-11-12 23:58:51 +0000","Tweetbot for Mac","RT @ustwogames: That's it, we're giving up the premium game. Next time we're just going to sell you 500 coins for $2 instead.","532655689857265664","899902687","2014-11-12 22:06:27 +0000","" -"532643917473529857","532643168169496576","14106454","2014-11-12 21:19:40 +0000","Tweetbot for Mac","@srbaker I think it’s related to your last “used” window (however “used” is defined). Opening a tab in your desired window seems to help.","","","","" -"532399904061394944","","","2014-11-12 05:10:03 +0000","Twitterrific","Usually last! 👍 RT @arstechnica: Download Android 5.0 Lollipop for the 2012 Nexus 7 (Wi-Fi) right here http://t.co/A5YJz6tEKq by @RonAmadeo","","","","http://ars.to/10TVRSu" +"532980078125539328","532979824336588801","25703613","2014-11-13 19:35:27 +0000","Tweetbot for Mac","@Cocoanetics 👍 Let me know and I will dupe it.","","","","" +"532979459322699777","532978748300488704","25703613","2014-11-13 19:33:00 +0000","Tweetbot for Mac","@Cocoanetics No. I haven’t reduced a test case. Seems to happen after dismissing a landscape view, but appearing view is portrait only.","","","","" +"532978143389573120","532977963265196032","25703613","2014-11-13 19:27:46 +0000","Tweetbot for Mac","@Cocoanetics Yeah :( If you find anything better please share.","","","","" +"532971672421552128","532971509175025665","4777951","2014-11-13 19:02:03 +0000","Tweetbot for Mac","@Cocoanetics The view will not be interactive for a brief moment while the presentation happens. There’s a slight visual flash.","","","","" +"532971509175025665","532961330974949376","25703613","2014-11-13 19:01:24 +0000","Tweetbot for Mac","@Cocoanetics Here is a terrible workaround that we came up with. It works but there are caveats. https://t.co/J55cboFeC1","","","","https://gist.github.com/samsonjs/80bbd5c38d6df1346334" +"532940918043987968","","","2014-11-13 16:59:51 +0000","Twitterrific for iOS","Not a fan of the Android 5 keyboard. I'm fine with ditching button shapes on many buttons, but not the keyboard.","","","","" +"532683975274536961","","","2014-11-12 23:58:51 +0000","Tweetbot for Mac","RT @ustwogames: That's it, we're giving up the premium game. Next time we're just going to sell you 500 coins for $2 instead.","532655689857265664","899902687","2014-11-12 22:06:27 +0000","" +"532643917473529857","532643168169496576","14106454","2014-11-12 21:19:40 +0000","Tweetbot for Mac","@srbaker I think it’s related to your last “used” window (however “used” is defined). Opening a tab in your desired window seems to help.","","","","" +"532399904061394944","","","2014-11-12 05:10:03 +0000","Twitterrific for iOS","Usually last! 👍 RT @arstechnica: Download Android 5.0 Lollipop for the 2012 Nexus 7 (Wi-Fi) right here http://t.co/A5YJz6tEKq by @RonAmadeo","","","","http://ars.to/10TVRSu" "532397512922259456","","","2014-11-12 05:00:33 +0000","iOS","Well, I'm sold. http://t.co/4Hwg6Ue0I6 http://t.co/duYVBQzmPS","","","","http://flashlight.nateparrott.com,https://twitter.com/_sjs/status/532397512922259456/photo/1" -"532230058371743744","532223143868256257","761759","2014-11-11 17:55:08 +0000","Tweetbot for Mac","@bbum No kidding. It bends my mind every time I look at it.","","","","" +"532230058371743744","532223143868256257","761759","2014-11-11 17:55:08 +0000","Tweetbot for Mac","@bbum No kidding. It bends my mind every time I look at it.","","","","" "532214448275357696","532199169776033792","761759","2014-11-11 16:53:07 +0000","Tweetbot for iΟS","@bbum See also: Duff's device. http://t.co/hUgWYDLLzi","","","","http://en.m.wikipedia.org/wiki/Duff's_device" -"531983905113792512","","","2014-11-11 01:37:01 +0000","Twitterrific","RT @phillipsbeer: Hop Drop drops!! Our hop elixir is hitting the shelves in Victoria, Van Island & Metro Van http://t.co/euLkXzslvX http://…","531926795982233600","65141250","2014-11-10 21:50:05 +0000","http://eepurl.com/7NGsP,http://eepurl.com/7NGsP,https://twitter.com/phillipsbeer/status/531926795982233600/photo/1" +"531983905113792512","","","2014-11-11 01:37:01 +0000","Twitterrific for iOS","RT @phillipsbeer: Hop Drop drops!! Our hop elixir is hitting the shelves in Victoria, Van Island & Metro Van http://t.co/euLkXzslvX http://…","531926795982233600","65141250","2014-11-10 21:50:05 +0000","http://eepurl.com/7NGsP,http://eepurl.com/7NGsP,https://twitter.com/phillipsbeer/status/531926795982233600/photo/1" "531485852493709313","531484881029566464","15292261","2014-11-09 16:37:56 +0000","Tweetbot for iΟS","@gregbate But it's definitely a workstation first and a gaming machine second. Nobody buys an iMac primarily for gaming.","","","","" "531485637682401280","531484881029566464","15292261","2014-11-09 16:37:05 +0000","Tweetbot for iΟS","@gregbate I've never had a display that does more than 60 Hz. Gaming performance at 2560x1440 is comparable to my GTX 760 at 1920x1200.","","","","" "531484576183754752","531483920974352384","15292261","2014-11-09 16:32:52 +0000","Tweetbot for iΟS","@gregbate Yup!","","","","" @@ -2481,115 +2581,115 @@ cc @gisikw","","","","" "531179252990095361","","","2014-11-08 20:19:37 +0000","Tweetbot for iΟS","RT @raganwald: @_sjs Ours is the last generation who think of wearable tech—like headphones, or phones—to ever be tethered by cable.","531179087465680897","18137723","2014-11-08 20:18:57 +0000","" "531178780174602240","","","2014-11-08 20:17:44 +0000","Tweetbot for iΟS","Have you ever seen those laptops with ports on the back? It's a terrible thing to do. Power and Ethernet, fine. Not USB and headphones.","","","","" "531178486824960001","","","2014-11-08 20:16:34 +0000","Tweetbot for iΟS","I'm sold on the iMac. It's the best computer I've ever had. But why oh why do all the ports have to be on the back?","","","","" -"531113687478980608","","","2014-11-08 15:59:05 +0000","Twitterrific","RT @paulwrblanchard: ""Creating a password reminder just keeps getting more and more emotionally draining"" - @JamieDMJ http://t.co/nR0USlEmQU","531030807570546688","56364530","2014-11-08 10:29:45 +0000","https://twitter.com/paulwrblanchard/status/531030807570546688/photo/1,https://twitter.com/paulwrblanchard/status/531030807570546688/photo/1" -"530964659239919616","530962943656329216","108814849","2014-11-08 06:06:54 +0000","Tweetbot for Mac","@snarfmason Ah, I gotcha. Yeah no OS support means apps are left to their own devices and don’t always do what we want or need. It’s lame.","","","","" +"531113687478980608","","","2014-11-08 15:59:05 +0000","Twitterrific for iOS","RT @paulwrblanchard: ""Creating a password reminder just keeps getting more and more emotionally draining"" - @JamieDMJ http://t.co/nR0USlEmQU","531030807570546688","56364530","2014-11-08 10:29:45 +0000","https://twitter.com/paulwrblanchard/status/531030807570546688/photo/1,https://twitter.com/paulwrblanchard/status/531030807570546688/photo/1" +"530964659239919616","530962943656329216","108814849","2014-11-08 06:06:54 +0000","Tweetbot for Mac","@snarfmason Ah, I gotcha. Yeah no OS support means apps are left to their own devices and don’t always do what we want or need. It’s lame.","","","","" "530943532568420352","","","2014-11-08 04:42:57 +0000","Tweetbot for iΟS","And the new version of the Mashable app can play videos in landscape on iOS 8.","","","","" "530943333238341632","","","2014-11-08 04:42:09 +0000","Tweetbot for iΟS","RT @JimRoepcke: Woot, Mashable's app is featured in the App Store again! v1.1 features native support for iPhone 6/Plus and iPad. Also, Han…","530938608426164224","894911","2014-11-08 04:23:23 +0000","" -"530917217328975872","530865397730648064","108814849","2014-11-08 02:58:23 +0000","Twitterrific","@snarfmason Gmail doesn't seem to handle such links very well. I've run into that before. They don't pass them to -[UIApplication openURL:].","","","","" -"530878891104411648","","","2014-11-08 00:26:05 +0000","Tweetbot for Mac","I never use @beatsmusic because it doesn’t have a Mac app. Looks like @Spotify has a Mac app, so it’s time to give it a shot.","","","","" -"530757591824334849","530741965508202496","40273","2014-11-07 16:24:05 +0000","Twitterrific","@monkbent When all you have is a hammer, everything looks like a thumb.","","","","" +"530917217328975872","530865397730648064","108814849","2014-11-08 02:58:23 +0000","Twitterrific for iOS","@snarfmason Gmail doesn't seem to handle such links very well. I've run into that before. They don't pass them to -[UIApplication openURL:].","","","","" +"530878891104411648","","","2014-11-08 00:26:05 +0000","Tweetbot for Mac","I never use @beatsmusic because it doesn’t have a Mac app. Looks like @Spotify has a Mac app, so it’s time to give it a shot.","","","","" +"530757591824334849","530741965508202496","40273","2014-11-07 16:24:05 +0000","Twitterrific for iOS","@monkbent When all you have is a hammer, everything looks like a thumb.","","","","" "530578835797188608","530568935008374784","894911","2014-11-07 04:33:46 +0000","Tweetbot for iΟS","@JimRoepcke Don't you want the new version with iPhone 6 support?","","","","" "530577748595851264","","","2014-11-07 04:29:27 +0000","Tweetbot for iΟS","RT @tapbot_paul: Helping oldest with homework. Me: Go download Calcbot, you can put in the parenthesis just like the problem. Him: Oh cool,…","530524582919548929","18247541","2014-11-07 00:58:11 +0000","" -"530541767670894592","","","2014-11-07 02:06:29 +0000","Tweetbot for Mac","Why do I try to correct messages in HipChat. I inevitably just end up messing up the substitution command and looking even worse.","","","","" -"530532530051883008","","","2014-11-07 01:29:46 +0000","Tweetbot for Mac","RT @anildash: @gruber I lost this one. Apple improved Dropbox integration when releasing its own drive.","530181656494084096","36823","2014-11-06 02:15:31 +0000","" -"530483959445340160","530483688384241664","108814849","2014-11-06 22:16:46 +0000","Tweetbot for Mac","@snarfmason Er, previous desktop that is.","","","","" -"530483877945815040","530483688384241664","108814849","2014-11-06 22:16:27 +0000","Tweetbot for Mac","@snarfmason Yeah it must be the video encoding. That happened on my desktop, too.","","","","" -"530468791122415616","","","2014-11-06 21:16:30 +0000","Tweetbot for Mac","RT @thenatekirby: Anyone use AsyncDisplayKit? Thinking about using it in a project.","530464423341985792","1628814223","2014-11-06 20:59:08 +0000","" -"530468737645023232","530465181667958784","1628814223","2014-11-06 21:16:17 +0000","Tweetbot for Mac","@thenatekirby Heh. If we get to it first we will report our findings as well.","","","","" -"530464993171746818","530464423341985792","1628814223","2014-11-06 21:01:24 +0000","Tweetbot for Mac","@thenatekirby Not yet, but I’m very interested in it. Let us know how it goes if you give it a shot.","","","","" -"530463842992943104","530457958879330306","176774540","2014-11-06 20:56:50 +0000","Tweetbot for Mac","@cgpgrey Simpsons did it. https://t.co/rr6uqvpVdF","","","","https://en.wikipedia.org/wiki/Treehouse_of_Horror_XII" -"530446022527713280","","","2014-11-06 19:46:01 +0000","Tweetbot for Mac","The first thing to make me hear this iMac’s fan: Hangouts. I haven’t gamed on it yet.","","","","" +"530541767670894592","","","2014-11-07 02:06:29 +0000","Tweetbot for Mac","Why do I try to correct messages in HipChat. I inevitably just end up messing up the substitution command and looking even worse.","","","","" +"530532530051883008","","","2014-11-07 01:29:46 +0000","Tweetbot for Mac","RT @anildash: @gruber I lost this one. Apple improved Dropbox integration when releasing its own drive.","530181656494084096","36823","2014-11-06 02:15:31 +0000","" +"530483959445340160","530483688384241664","108814849","2014-11-06 22:16:46 +0000","Tweetbot for Mac","@snarfmason Er, previous desktop that is.","","","","" +"530483877945815040","530483688384241664","108814849","2014-11-06 22:16:27 +0000","Tweetbot for Mac","@snarfmason Yeah it must be the video encoding. That happened on my desktop, too.","","","","" +"530468791122415616","","","2014-11-06 21:16:30 +0000","Tweetbot for Mac","RT @thenatekirby: Anyone use AsyncDisplayKit? Thinking about using it in a project.","530464423341985792","1628814223","2014-11-06 20:59:08 +0000","" +"530468737645023232","530465181667958784","1628814223","2014-11-06 21:16:17 +0000","Tweetbot for Mac","@thenatekirby Heh. If we get to it first we will report our findings as well.","","","","" +"530464993171746818","530464423341985792","1628814223","2014-11-06 21:01:24 +0000","Tweetbot for Mac","@thenatekirby Not yet, but I’m very interested in it. Let us know how it goes if you give it a shot.","","","","" +"530463842992943104","530457958879330306","176774540","2014-11-06 20:56:50 +0000","Tweetbot for Mac","@cgpgrey Simpsons did it. https://t.co/rr6uqvpVdF","","","","https://en.wikipedia.org/wiki/Treehouse_of_Horror_XII" +"530446022527713280","","","2014-11-06 19:46:01 +0000","Tweetbot for Mac","The first thing to make me hear this iMac’s fan: Hangouts. I haven’t gamed on it yet.","","","","" "530199349041455104","","","2014-11-06 03:25:50 +0000","Tweetbot for iΟS","Hiding like a black panther. http://t.co/ZqwqodKDiE","","","","https://twitter.com/_sjs/status/530199349041455104/photo/1" -"530191492443164672","530170910544625666","10697232","2014-11-06 02:54:36 +0000","Twitterrific","@drdrang It does so for the same reason that your text editor saves HTML files with a .html extension instead of .htm.","","","","" +"530191492443164672","530170910544625666","10697232","2014-11-06 02:54:36 +0000","Twitterrific for iOS","@drdrang It does so for the same reason that your text editor saves HTML files with a .html extension instead of .htm.","","","","" "530119855325085697","530119143144849409","108814849","2014-11-05 22:09:57 +0000","Tweetbot for iΟS","@snarfmason Indeed! Eventually I'll get a 4k display to replace my secondary one. Then I'll be all HiDPI all the time.","","","","" -"530115361333837824","","","2014-11-05 21:52:05 +0000","Tweetbot for Mac","Of course my hackintosh’s network dies and I reboot, and now it won’t boot. Of course.","","","","" +"530115361333837824","","","2014-11-05 21:52:05 +0000","Tweetbot for Mac","Of course my hackintosh’s network dies and I reboot, and now it won’t boot. Of course.","","","","" "530108180450512896","","","2014-11-05 21:23:33 +0000","Tweetbot for iΟS","Just received a retina iMac, thus ending my second era of Hackintoshing. RIP Link, 2014. Welcome Zelda.","","","","" -"529778975657033730","","","2014-11-04 23:35:25 +0000","Tweetbot for Mac","Just made some coffee with 205 F water, like an animal.","","","","" -"529767552646266880","529760055349239808","108814849","2014-11-04 22:50:01 +0000","Tweetbot for Mac","@snarfmason @srbaker The mini is such a great form factor. Good choice, and enjoy!","","","","" -"529753014085877761","529745420629864449","108814849","2014-11-04 21:52:15 +0000","Tweetbot for Mac","@snarfmason Just don’t be upset when your phone starts acting up now. You asked for it.","","","","" +"529778975657033730","","","2014-11-04 23:35:25 +0000","Tweetbot for Mac","Just made some coffee with 205 F water, like an animal.","","","","" +"529767552646266880","529760055349239808","108814849","2014-11-04 22:50:01 +0000","Tweetbot for Mac","@snarfmason @srbaker The mini is such a great form factor. Good choice, and enjoy!","","","","" +"529753014085877761","529745420629864449","108814849","2014-11-04 21:52:15 +0000","Tweetbot for Mac","@snarfmason Just don’t be upset when your phone starts acting up now. You asked for it.","","","","" "529728465390821378","","","2014-11-04 20:14:42 +0000","iOS","TIL about this song from England during WW2. Familiar tune. (Colonel Bogey's March) https://t.co/Nc6p8V7ZP2","","","","https://m.youtube.com/watch?v=dM7pJGusyJg" -"529532272421371904","529528859654254592","15444008","2014-11-04 07:15:06 +0000","Twitterrific","@Catfish_Man And forward unknown selectors to another random object.","","","","" +"529532272421371904","529528859654254592","15444008","2014-11-04 07:15:06 +0000","Twitterrific for iOS","@Catfish_Man And forward unknown selectors to another random object.","","","","" "528941185730379776","528937539055681536","10194392","2014-11-02 16:06:20 +0000","Tweetbot for iΟS","@reneritchie @donmelton Breakthrough naptic engine.","","","","" "528665381804990465","","","2014-11-01 21:50:23 +0000","Tweetbot for iΟS","Just found a white hair growing out of my arm. It's all over. That's it.","","","","" "528648818385256448","528640887010516993","8259712","2014-11-01 20:44:34 +0000","Tweetbot for iΟS","@DanFrakes Top level Macintosh HD is not physical, but a Core Storage volume.","","","","" "528572359167721472","528568911072333825","108814849","2014-11-01 15:40:45 +0000","Tweetbot for iΟS","@snarfmason Yup! Late next week is retina iMac day and I'm fucking stoked! Good job picking up the backdoor brag. http://t.co/fBVrOltKsT","","","","http://m.youtube.com/watch?v=2esfW4gBNao" -"528275831618293760","528272947429912576","894911","2014-10-31 20:02:27 +0000","Tweetbot for Mac","@JimRoepcke Nope. I’d pay for data and use WhatsApp, iMessage, Hangouts, etc. out of spite, even if it’s more expensive.","","","","" +"528275831618293760","528272947429912576","894911","2014-10-31 20:02:27 +0000","Tweetbot for Mac","@JimRoepcke Nope. I’d pay for data and use WhatsApp, iMessage, Hangouts, etc. out of spite, even if it’s more expensive.","","","","" "528266411488317440","","","2014-10-31 19:25:01 +0000","Tweetbot for iΟS","Getting my RAM before a new machine arrives is the new getting my case before the phone/tablet arrives. http://t.co/YEvwMbUc0N","","","","https://twitter.com/_sjs/status/528266411488317440/photo/1" -"528229538262945792","","","2014-10-31 16:58:30 +0000","Tweetbot for Mac","RT @PenLlawen: Two of GamerGate's leading figures take a quiet moment to discuss ethics in video games journalism. http://t.co/VtnvxrKzKg","528133369708572672","6596872","2014-10-31 10:36:22 +0000","https://twitter.com/PenLlawen/status/528133369708572672/photo/1,https://twitter.com/PenLlawen/status/528133369708572672/photo/1" +"528229538262945792","","","2014-10-31 16:58:30 +0000","Tweetbot for Mac","RT @PenLlawen: Two of GamerGate's leading figures take a quiet moment to discuss ethics in video games journalism. http://t.co/VtnvxrKzKg","528133369708572672","6596872","2014-10-31 10:36:22 +0000","https://twitter.com/PenLlawen/status/528133369708572672/photo/1,https://twitter.com/PenLlawen/status/528133369708572672/photo/1" "528227083529379840","","","2014-10-31 16:48:45 +0000","Twitter for Websites","In case you needed another reason to avoid the subway in NYC. http://t.co/BywcUsLYRa via @mashable","","","","http://mashable.com/2014/10/31/drill-subway/#:eyJzIjoidCIsImkiOiJfY2V1dWlxa201bnlocHFsNSJ9" -"528213513358295041","","","2014-10-31 15:54:49 +0000","Twitterrific","It's kind of amazing how bad Safari's Reading List is. I should get back on Instapaper. http://t.co/ORMDdKM8tU","","","","https://twitter.com/_sjs/status/528213513358295041/photo/1" -"528200521912692737","","","2014-10-31 15:03:12 +0000","Twitterrific","RT @danbarker: How Trinity Mirror tweaked their CMS to make journalists 'mobile first'. http://t.co/zAatqZdM7D (via @josieallchin) http://t…","528114057811742722","14672744","2014-10-31 09:19:37 +0000","http://digiday.com/publishers/trinity-mirror-optimizes-mobile/,http://digiday.com/publishers/trinity-mirror-optimizes-mobile/,https://twitter.com/danbarker/status/528114057811742722/photo/1" -"528033412243021824","528026678761500672","22406953","2014-10-31 03:59:10 +0000","Twitterrific","@mahyarm We shipped an ugly hack because of that bug. I hope they fix it soon.","","","","" +"528213513358295041","","","2014-10-31 15:54:49 +0000","Twitterrific for iOS","It's kind of amazing how bad Safari's Reading List is. I should get back on Instapaper. http://t.co/ORMDdKM8tU","","","","https://twitter.com/_sjs/status/528213513358295041/photo/1" +"528200521912692737","","","2014-10-31 15:03:12 +0000","Twitterrific for iOS","RT @danbarker: How Trinity Mirror tweaked their CMS to make journalists 'mobile first'. http://t.co/zAatqZdM7D (via @josieallchin) http://t…","528114057811742722","14672744","2014-10-31 09:19:37 +0000","http://digiday.com/publishers/trinity-mirror-optimizes-mobile/,http://digiday.com/publishers/trinity-mirror-optimizes-mobile/,https://twitter.com/danbarker/status/528114057811742722/photo/1" +"528033412243021824","528026678761500672","22406953","2014-10-31 03:59:10 +0000","Twitterrific for iOS","@mahyarm We shipped an ugly hack because of that bug. I hope they fix it soon.","","","","" "528023694803992576","528021333389873152","14231571","2014-10-31 03:20:33 +0000","Tweetbot for iΟS","@marcoarment Please do.","","","","" -"527897185539883008","527894013257728001","135727142","2014-10-30 18:57:51 +0000","Tweetbot for Mac","@ToddDunlop @Pebble Run keeper eh. Too healthy for my taste. Too bad it’s on the fritz, at least they are $100 now if you need another one.","","","","" -"527890579242614784","","","2014-10-30 18:31:36 +0000","Tweetbot for Mac","RT @drbarnard: “The PCalc app and widget will remain in the App Store, and all calculator-type widgets will be allowed as well...” http://t…","527862160341204992","7826502","2014-10-30 16:38:40 +0000","http://techcrunch.com/2014/10/30/apple-no-longer-rejecting-calculator-widgets-from-the-app-store/" -"527854819021971456","","","2014-10-30 16:09:30 +0000","Tweetbot for Mac","What are the most useful or coolest apps and watch faces for @pebble? cc @todddunlop","","","","" +"527897185539883008","527894013257728001","135727142","2014-10-30 18:57:51 +0000","Tweetbot for Mac","@ToddDunlop @Pebble Run keeper eh. Too healthy for my taste. Too bad it’s on the fritz, at least they are $100 now if you need another one.","","","","" +"527890579242614784","","","2014-10-30 18:31:36 +0000","Tweetbot for Mac","RT @drbarnard: “The PCalc app and widget will remain in the App Store, and all calculator-type widgets will be allowed as well...” http://t…","527862160341204992","7826502","2014-10-30 16:38:40 +0000","http://techcrunch.com/2014/10/30/apple-no-longer-rejecting-calculator-widgets-from-the-app-store/" +"527854819021971456","","","2014-10-30 16:09:30 +0000","Tweetbot for Mac","What are the most useful or coolest apps and watch faces for @pebble? cc @todddunlop","","","","" "527693350418538496","","","2014-10-30 05:27:53 +0000","iOS","How I’d improve the UIScrollView.contentInset API | ⌥⇧K http://t.co/Zqs8gwxBKP","","","","http://optshiftk.com/2014/10/how-id-improve-the-uiscrollview-contentinset-api/?utm_campaign=iOS_Dev_Weekly_Issue_169&utm_medium=email&utm_source=iOS%2BDev%2BWeekly" -"527668100553277440","","","2014-10-30 03:47:33 +0000","Tweetbot for Mac","Pebble setup process is nice enough. It successfully updated the OS and I have a couple of apps and watch faces.","","","","" +"527668100553277440","","","2014-10-30 03:47:33 +0000","Tweetbot for Mac","Pebble setup process is nice enough. It successfully updated the OS and I have a couple of apps and watch faces.","","","","" "527652019981385728","","","2014-10-30 02:43:39 +0000","Twitter for Websites","""PCalc will continue to be a great app[...] but the App Store and the iOS ecosystem will be worse off."" http://t.co/D0g6gUeKCI via @mashable","","","","http://mashable.com/2014/10/29/pcalc-widget-ban/#:eyJzIjoidCIsImkiOiJfY2V1dWlxa201bnlocHFsNSJ9" "527642682697728000","527635318854676480","108814849","2014-10-30 02:06:33 +0000","Tweetbot for iΟS","@snarfmason @Pebble Yup. They do iOS and Android.","","","","" "527610702903910400","","","2014-10-29 23:59:28 +0000","Tweetbot for iΟS","Welly welly welly, look what showed up. @pebble http://t.co/ESDQ7azWIj","","","","https://twitter.com/_sjs/status/527610702903910400/photo/1" -"527587943092076544","","","2014-10-29 22:29:02 +0000","Tweetbot for Mac","Sometimes when I use emoji I feel like Kathy Geiss. http://t.co/rMZ0eZxK8D","","","","https://twitter.com/_sjs/status/527587943092076544/photo/1" -"527539986284154882","527534847943004160","108814849","2014-10-29 19:18:28 +0000","Tweetbot for Mac","@snarfmason Right? It’s horrible. Whatever reason they feel like they have for this can’t be worth the long-term negative effects.","","","","" -"527537786153619456","527518905112461312","15267898","2014-10-29 19:09:44 +0000","Tweetbot for Mac","@stroughtonsmith Yeah, my 32 GB iPad has around 28 GB of usable space. A device with 31 GB usable is not a 32 GB device on paper.","","","","" -"527523606956638208","","","2014-10-29 18:13:23 +0000","Tweetbot for Mac","RT @arwyn: Apple Finally Jumps The Shark On Stupid: AppStore Used To Forbid Math +"527587943092076544","","","2014-10-29 22:29:02 +0000","Tweetbot for Mac","Sometimes when I use emoji I feel like Kathy Geiss. http://t.co/rMZ0eZxK8D","","","","https://twitter.com/_sjs/status/527587943092076544/photo/1" +"527539986284154882","527534847943004160","108814849","2014-10-29 19:18:28 +0000","Tweetbot for Mac","@snarfmason Right? It’s horrible. Whatever reason they feel like they have for this can’t be worth the long-term negative effects.","","","","" +"527537786153619456","527518905112461312","15267898","2014-10-29 19:09:44 +0000","Tweetbot for Mac","@stroughtonsmith Yeah, my 32 GB iPad has around 28 GB of usable space. A device with 31 GB usable is not a 32 GB device on paper.","","","","" +"527523606956638208","","","2014-10-29 18:13:23 +0000","Tweetbot for Mac","RT @arwyn: Apple Finally Jumps The Shark On Stupid: AppStore Used To Forbid Math https://t.co/6byJ2zUNjL","527512087569104896","8128732","2014-10-29 17:27:37 +0000","https://twitter.com/jamesthomson/status/527498251176796160,https://twitter.com/jamesthomson/status/527498251176796160" -"527506652803903489","","","2014-10-29 17:06:01 +0000","Twitterrific","RT @jamesthomson: I spent a really long time working on the PCalc widgets and making them perfect, so this is pretty crushing news.","527500364611092480","14169916","2014-10-29 16:41:02 +0000","" -"527506640564932608","","","2014-10-29 17:05:58 +0000","Twitterrific","RT @jamesthomson: Apple has told me that Notification Center widgets on iOS cannot perform any calculations, and the current PCalc widget m…","527498251176796160","14169916","2014-10-29 16:32:38 +0000","" +"527506652803903489","","","2014-10-29 17:06:01 +0000","Twitterrific for iOS","RT @jamesthomson: I spent a really long time working on the PCalc widgets and making them perfect, so this is pretty crushing news.","527500364611092480","14169916","2014-10-29 16:41:02 +0000","" +"527506640564932608","","","2014-10-29 17:05:58 +0000","Twitterrific for iOS","RT @jamesthomson: Apple has told me that Notification Center widgets on iOS cannot perform any calculations, and the current PCalc widget m…","527498251176796160","14169916","2014-10-29 16:32:38 +0000","" "527275663074803712","","","2014-10-29 01:48:09 +0000","Tweetbot for iΟS","I just can't stop saying ""just"" all the time.","","","","" -"527130966176071680","","","2014-10-28 16:13:10 +0000","Twitterrific","RT @mugginn: @mike_matas Doesn't work if you have an iTunes match subscription or have credit in your account.","527129343123013632","76912613","2014-10-28 16:06:43 +0000","" -"527130959716839425","","","2014-10-28 16:13:09 +0000","Twitterrific","RT @andyngo: @mike_matas Come on… All that work just to download an app? What's the reason behind not releasing it outside the US?","527128900720005121","11009532","2014-10-28 16:04:58 +0000","" +"527130966176071680","","","2014-10-28 16:13:10 +0000","Twitterrific for iOS","RT @mugginn: @mike_matas Doesn't work if you have an iTunes match subscription or have credit in your account.","527129343123013632","76912613","2014-10-28 16:06:43 +0000","" +"527130959716839425","","","2014-10-28 16:13:09 +0000","Twitterrific for iOS","RT @andyngo: @mike_matas Come on… All that work just to download an app? What's the reason behind not releasing it outside the US?","527128900720005121","11009532","2014-10-28 16:04:58 +0000","" "526560127063953411","526508284707344384","809685","2014-10-27 02:24:51 +0000","Tweetbot for iΟS","@garybernhardt That's not normal for me. I've been using Macs for 9 years. Selection bias?","","","","" "526503808546136064","526503501082656768","894911","2014-10-26 22:41:04 +0000","Tweetbot for iΟS","@JimRoepcke It's an amazing upgrade from every iPad except maybe last year's iPad Air (I've never held one).","","","","" "526503237634232321","526478629761744896","894911","2014-10-26 22:38:48 +0000","Tweetbot for iΟS","@JimRoepcke I stopped by the Apple Store and handled one today. It's so light and is now one handable. But mini is still the superior size.","","","","" -"526410520195117057","526374234600521728","7826502","2014-10-26 16:30:22 +0000","Twitterrific","@drbarnard I hoped @pixelmator would be $20-30 on iPad. I would have happily purchased it.","","","","" +"526410520195117057","526374234600521728","7826502","2014-10-26 16:30:22 +0000","Twitterrific for iOS","@drbarnard I hoped @pixelmator would be $20-30 on iPad. I would have happily purchased it.","","","","" "526215250740523008","","","2014-10-26 03:34:27 +0000","Tweetbot for iΟS","Another excellent meal at @roguewetbar. If you have a chance to go I recommend it! 🍻","","","","" -"525905667110866944","","","2014-10-25 07:04:16 +0000","Twitterrific","RT @DaliaEzzat_: A mosque in Cold Lake, Alberta was found vandalized this morning.. and within hours - THIS. Canada = class. http://t.co/X0…","525807176129187841","113474316","2014-10-25 00:32:54 +0000","https://twitter.com/DaliaEzzat_/status/525807176129187841/photo/1" -"525815045302001664","525813460383567872","894911","2014-10-25 01:04:10 +0000","Twitterrific","@JimRoepcke I think so. I was aiming for our Costa Rica flight via Texas but it will be handy in the future too. $50 and an interview.","","","","" -"525813159161233408","","","2014-10-25 00:56:40 +0000","Twitterrific","Thought I could get a NEXUS card before the end of November but the next interview slot isn't until February. ¯\_(ツ)_/¯","","","","" +"525905667110866944","","","2014-10-25 07:04:16 +0000","Twitterrific for iOS","RT @DaliaEzzat_: A mosque in Cold Lake, Alberta was found vandalized this morning.. and within hours - THIS. Canada = class. http://t.co/X0…","525807176129187841","113474316","2014-10-25 00:32:54 +0000","https://twitter.com/DaliaEzzat_/status/525807176129187841/photo/1" +"525815045302001664","525813460383567872","894911","2014-10-25 01:04:10 +0000","Twitterrific for iOS","@JimRoepcke I think so. I was aiming for our Costa Rica flight via Texas but it will be handy in the future too. $50 and an interview.","","","","" +"525813159161233408","","","2014-10-25 00:56:40 +0000","Twitterrific for iOS","Thought I could get a NEXUS card before the end of November but the next interview slot isn't until February. ¯\_(ツ)_/¯","","","","" "525809725192294400","525800105312411648","15292261","2014-10-25 00:43:02 +0000","Tweetbot for iΟS","@gregbate Whites are so white!","","","","" -"525788029492146176","","","2014-10-24 23:16:49 +0000","Twitterrific","RT @tolmasky: Would be nice if Safari would PAUSE content when I hit the PAUSE button on my keyboard. But sure glad its super transparent n…","525781529222721536","14581738","2014-10-24 22:50:59 +0000","" -"525787941176881152","525781529222721536","14581738","2014-10-24 23:16:28 +0000","Twitterrific","@tolmasky Right?! Why isn't it like control center on iOS?","","","","" +"525788029492146176","","","2014-10-24 23:16:49 +0000","Twitterrific for iOS","RT @tolmasky: Would be nice if Safari would PAUSE content when I hit the PAUSE button on my keyboard. But sure glad its super transparent n…","525781529222721536","14581738","2014-10-24 22:50:59 +0000","" +"525787941176881152","525781529222721536","14581738","2014-10-24 23:16:28 +0000","Twitterrific for iOS","@tolmasky Right?! Why isn't it like control center on iOS?","","","","" "525767467306860544","","","2014-10-24 21:55:07 +0000","Tweetbot for iΟS","Santa showed up early this year. cc @phillipsbeer http://t.co/JzJn9caylQ","","","","https://twitter.com/_sjs/status/525767467306860544/photo/1" -"525451114599432192","","","2014-10-24 00:58:02 +0000","Tweetbot for Mac","A clean install of Yosemite on the Hackintosh, sans Fusion drive, has turned out well so far. Fewer BlueTooth issues, and sleep works now.","","","","" -"525243835648335872","","","2014-10-23 11:14:23 +0000","Tweetbot for Mac","Yosemite upgrade on my Hackintosh was botched due to Fusion drive. Clean install went pretty well but isn’t quite done yet. Yeesh.","","","","" -"525180500391231489","","","2014-10-23 07:02:43 +0000","Tweetbot for Mac","Upgrading the Hackintosh to Yosemite. Wish me luck.","","","","" -"525121409434255360","","","2014-10-23 03:07:54 +0000","Twitterrific","Where do you get awesome coffee in downtown Vancouver?","","","","" -"525120867228213248","","","2014-10-23 03:05:45 +0000","Twitterrific","RT @drbarnard: “If any version of an app has ever used iCloud at all for anything, that app cannot be transferred…” http://t.co/wR8Pxl8gde","525119095738339328","7826502","2014-10-23 02:58:43 +0000","http://blog.supertop.co/post/100700457402/moving-unread-to-supertop,http://blog.supertop.co/post/100700457402/moving-unread-to-supertop" +"525451114599432192","","","2014-10-24 00:58:02 +0000","Tweetbot for Mac","A clean install of Yosemite on the Hackintosh, sans Fusion drive, has turned out well so far. Fewer BlueTooth issues, and sleep works now.","","","","" +"525243835648335872","","","2014-10-23 11:14:23 +0000","Tweetbot for Mac","Yosemite upgrade on my Hackintosh was botched due to Fusion drive. Clean install went pretty well but isn’t quite done yet. Yeesh.","","","","" +"525180500391231489","","","2014-10-23 07:02:43 +0000","Tweetbot for Mac","Upgrading the Hackintosh to Yosemite. Wish me luck.","","","","" +"525121409434255360","","","2014-10-23 03:07:54 +0000","Twitterrific for iOS","Where do you get awesome coffee in downtown Vancouver?","","","","" +"525120867228213248","","","2014-10-23 03:05:45 +0000","Twitterrific for iOS","RT @drbarnard: “If any version of an app has ever used iCloud at all for anything, that app cannot be transferred…” http://t.co/wR8Pxl8gde","525119095738339328","7826502","2014-10-23 02:58:43 +0000","http://blog.supertop.co/post/100700457402/moving-unread-to-supertop,http://blog.supertop.co/post/100700457402/moving-unread-to-supertop" "525005140282335233","525004196240953344","337167459","2014-10-22 19:25:54 +0000","Tweetbot for iΟS","@bthdonohue That's a great use case. Vesper does that with tags and I think it works. But even in Vesper there's some creep in that menu.","","","","" "525002884820512769","525000870900285440","337167459","2014-10-22 19:16:56 +0000","Tweetbot for iΟS","@bthdonohue So in some cases it may be warranted but should not be a default. Think through carefully. That's my take.","","","","" "525002703173607424","525000870900285440","337167459","2014-10-22 19:16:13 +0000","Tweetbot for iΟS","@bthdonohue Without burger menus the only answer to ""what happens when I have more than 4-5 tabs?"" is ""simplify"" which may not be practical.","","","","" "525002282396827648","525000870900285440","337167459","2014-10-22 19:14:32 +0000","Tweetbot for iΟS","@bthdonohue I agree, when used carefully. Instapaper didn't have cells for help, settings, etc. It is a bit different than some hamburgers.","","","","" -"524999720880852992","524996978170925056","337167459","2014-10-22 19:04:22 +0000","Tweetbot for Mac","@bthdonohue You mean the top level of Mail where you select an inbox or account? i.e. back from an inbox is a defacto hamburger menu?","","","","" -"524959887106015232","524935024177459201","337167459","2014-10-22 16:26:05 +0000","Twitterrific","@bthdonohue @instapaper I was surprised to find a hamburger on their new responsive site (iPhone only).","","","","" -"524955325800386560","524909649225457664","134954720","2014-10-22 16:07:57 +0000","Twitterrific","@antgod7 @drbarnard ""can't"" is the wrong word. ""Don't care to"" is more apt. Who can blame them?","","","","" -"524814791240851456","524812549846355968","166028855","2014-10-22 06:49:31 +0000","Twitterrific","@jspahrsummers Yeah, the way OpenTable is doing it is far better.","","","","" +"524999720880852992","524996978170925056","337167459","2014-10-22 19:04:22 +0000","Tweetbot for Mac","@bthdonohue You mean the top level of Mail where you select an inbox or account? i.e. back from an inbox is a defacto hamburger menu?","","","","" +"524959887106015232","524935024177459201","337167459","2014-10-22 16:26:05 +0000","Twitterrific for iOS","@bthdonohue @instapaper I was surprised to find a hamburger on their new responsive site (iPhone only).","","","","" +"524955325800386560","524909649225457664","134954720","2014-10-22 16:07:57 +0000","Twitterrific for iOS","@antgod7 @drbarnard ""can't"" is the wrong word. ""Don't care to"" is more apt. Who can blame them?","","","","" +"524814791240851456","524812549846355968","166028855","2014-10-22 06:49:31 +0000","Twitterrific for iOS","@jspahrsummers Yeah, the way OpenTable is doing it is far better.","","","","" "524795730612207616","524771561216430080","108814849","2014-10-22 05:33:47 +0000","Tweetbot for iΟS","@snarfmason @gregbate to the limit!","","","","" -"524783817526345729","524751250101768192","166028855","2014-10-22 04:46:26 +0000","Twitterrific","@jspahrsummers In Canada we have wireless terminals that are brought to the table. No reason they can't do that too.","","","","" -"524631647661359104","","","2014-10-21 18:41:46 +0000","Tweetbot for Mac","RT @igrigorik: Making HTTPS fast(er) with NGINX: http://t.co/medMxkxPEc #nginxconf ... tl;dr: the right knobs are there, but defaults can b…","524627234338775040","9980812","2014-10-21 18:24:14 +0000","http://bit.ly/1r5nVck,http://bit.ly/1r5nVck" -"524615728692207617","524613190043201536","10724012","2014-10-21 17:38:31 +0000","Tweetbot for Mac","@andy_matuschak @jspahrsummers Issue #1: Andy is tweeting instead of updating my view-model. How do I debug Andy?","","","","" -"524261896263041024","524256451976769536","14231571","2014-10-20 18:12:31 +0000","Tweetbot for Mac","@marcoarment I have both for dev purposes. Carried the 6+ for a week and am happy to be back on the 6 w/ iPad mini. 6+ is no replacement.","","","","" -"524249660714934272","524243186823467008","107770370","2014-10-20 17:23:53 +0000","Tweetbot for Mac","@radexp @mxcl http://t.co/ZYFOEtzEok","","","","https://twitter.com/_sjs/status/524249660714934272/photo/1" -"523948353319874561","","","2014-10-19 21:26:36 +0000","Tweetbot for Mac","The more I think about 5k the less value there is for me. Simulated 2560x1440 looks good on 28” 4k displays, and at far less cost.","","","","" -"523883810195513344","523874054584160256","894911","2014-10-19 17:10:08 +0000","Twitterrific","@JimRoepcke Nope. Not the beta anyway.","","","","" -"523866315938095104","523865017838755840","809685","2014-10-19 16:00:37 +0000","Twitterrific","@garybernhardt Easier to use. No argument against what you said, but making things easier to use is a worthy goal.","","","","" -"523865186940497920","523859438877544448","809685","2014-10-19 15:56:08 +0000","Twitterrific","@garybernhardt But it sucks for professionals and people who do care. I have at least 3 backups of my data and they could all be corrupt.","","","","" -"523864673331204096","523859438877544448","809685","2014-10-19 15:54:05 +0000","Twitterrific","@garybernhardt Many people do not migrate data to new computers and phones. It is disposable, and we're making things better for them.","","","","" -"523863442969870336","523859052288573440","809685","2014-10-19 15:49:12 +0000","Twitterrific","@garybernhardt The file system could create a new file with corruption and I'd never know. It's crazy that we haven't fixed this yet.","","","","" -"523863237071503360","523859052288573440","809685","2014-10-19 15:48:23 +0000","Twitterrific","@garybernhardt I have a program that calculates checksums for every new file daily, scrubs existing files less often. I gave up though.","","","","" -"523861427938136064","523844144423505920","809685","2014-10-19 15:41:11 +0000","Twitterrific","@garybernhardt It's harder because we didn't want any pop ups but we want JS on most sites. Opting in to JS per domain could work.","","","","" -"523542960936599552","","","2014-10-18 18:35:43 +0000","Twitterrific","RT @tolmasky: @_sjs so what you're saying is that iMessage works normally","523540991220133888","14581738","2014-10-18 18:27:53 +0000","" -"523521695626571776","523515344233582592","14581738","2014-10-18 17:11:13 +0000","Twitterrific","@tolmasky Oh one more thing: it freezes since the last OS update. Sometimes freezing takes out my entire LAN until I reboot it.","","","","" -"523521357867667456","523515344233582592","14581738","2014-10-18 17:09:52 +0000","Twitterrific","@tolmasky You have to boot from a USB installer and delete or replace kexts to get it up and running again. I could go on but you get it.","","","","" -"523521185381093376","523515344233582592","14581738","2014-10-18 17:09:11 +0000","Twitterrific","@tolmasky iMessage doesn't work at all. Can't sign in. OS upgrades frequently break audio or worse, render the system unbootable.","","","","" -"523520905205796865","523515344233582592","14581738","2014-10-18 17:08:05 +0000","Twitterrific","@tolmasky Bluetooth doesn't work before the OS boots, and I have a 30s delay on top of that. Features relying on BT 4 don't work.","","","","" -"523520425612296193","523515344233582592","14581738","2014-10-18 17:06:10 +0000","Twitterrific","@tolmasky Yes. It's horrible. Don't build a hackintosh. I wish it was better but there are so many little problems. Death by paper cuts.","","","","" -"523323875313324032","523323450148933632","2262091","2014-10-18 04:05:09 +0000","Tweetbot for Mac","@ajordens @JimRoepcke Good advice from the article that’s going around: “Not In a Rush? Run It Overnight”","","","","" +"524783817526345729","524751250101768192","166028855","2014-10-22 04:46:26 +0000","Twitterrific for iOS","@jspahrsummers In Canada we have wireless terminals that are brought to the table. No reason they can't do that too.","","","","" +"524631647661359104","","","2014-10-21 18:41:46 +0000","Tweetbot for Mac","RT @igrigorik: Making HTTPS fast(er) with NGINX: http://t.co/medMxkxPEc #nginxconf ... tl;dr: the right knobs are there, but defaults can b…","524627234338775040","9980812","2014-10-21 18:24:14 +0000","http://bit.ly/1r5nVck,http://bit.ly/1r5nVck" +"524615728692207617","524613190043201536","10724012","2014-10-21 17:38:31 +0000","Tweetbot for Mac","@andy_matuschak @jspahrsummers Issue #1: Andy is tweeting instead of updating my view-model. How do I debug Andy?","","","","" +"524261896263041024","524256451976769536","14231571","2014-10-20 18:12:31 +0000","Tweetbot for Mac","@marcoarment I have both for dev purposes. Carried the 6+ for a week and am happy to be back on the 6 w/ iPad mini. 6+ is no replacement.","","","","" +"524249660714934272","524243186823467008","107770370","2014-10-20 17:23:53 +0000","Tweetbot for Mac","@radexp @mxcl http://t.co/ZYFOEtzEok","","","","https://twitter.com/_sjs/status/524249660714934272/photo/1" +"523948353319874561","","","2014-10-19 21:26:36 +0000","Tweetbot for Mac","The more I think about 5k the less value there is for me. Simulated 2560x1440 looks good on 28” 4k displays, and at far less cost.","","","","" +"523883810195513344","523874054584160256","894911","2014-10-19 17:10:08 +0000","Twitterrific for iOS","@JimRoepcke Nope. Not the beta anyway.","","","","" +"523866315938095104","523865017838755840","809685","2014-10-19 16:00:37 +0000","Twitterrific for iOS","@garybernhardt Easier to use. No argument against what you said, but making things easier to use is a worthy goal.","","","","" +"523865186940497920","523859438877544448","809685","2014-10-19 15:56:08 +0000","Twitterrific for iOS","@garybernhardt But it sucks for professionals and people who do care. I have at least 3 backups of my data and they could all be corrupt.","","","","" +"523864673331204096","523859438877544448","809685","2014-10-19 15:54:05 +0000","Twitterrific for iOS","@garybernhardt Many people do not migrate data to new computers and phones. It is disposable, and we're making things better for them.","","","","" +"523863442969870336","523859052288573440","809685","2014-10-19 15:49:12 +0000","Twitterrific for iOS","@garybernhardt The file system could create a new file with corruption and I'd never know. It's crazy that we haven't fixed this yet.","","","","" +"523863237071503360","523859052288573440","809685","2014-10-19 15:48:23 +0000","Twitterrific for iOS","@garybernhardt I have a program that calculates checksums for every new file daily, scrubs existing files less often. I gave up though.","","","","" +"523861427938136064","523844144423505920","809685","2014-10-19 15:41:11 +0000","Twitterrific for iOS","@garybernhardt It's harder because we didn't want any pop ups but we want JS on most sites. Opting in to JS per domain could work.","","","","" +"523542960936599552","","","2014-10-18 18:35:43 +0000","Twitterrific for iOS","RT @tolmasky: @_sjs so what you're saying is that iMessage works normally","523540991220133888","14581738","2014-10-18 18:27:53 +0000","" +"523521695626571776","523515344233582592","14581738","2014-10-18 17:11:13 +0000","Twitterrific for iOS","@tolmasky Oh one more thing: it freezes since the last OS update. Sometimes freezing takes out my entire LAN until I reboot it.","","","","" +"523521357867667456","523515344233582592","14581738","2014-10-18 17:09:52 +0000","Twitterrific for iOS","@tolmasky You have to boot from a USB installer and delete or replace kexts to get it up and running again. I could go on but you get it.","","","","" +"523521185381093376","523515344233582592","14581738","2014-10-18 17:09:11 +0000","Twitterrific for iOS","@tolmasky iMessage doesn't work at all. Can't sign in. OS upgrades frequently break audio or worse, render the system unbootable.","","","","" +"523520905205796865","523515344233582592","14581738","2014-10-18 17:08:05 +0000","Twitterrific for iOS","@tolmasky Bluetooth doesn't work before the OS boots, and I have a 30s delay on top of that. Features relying on BT 4 don't work.","","","","" +"523520425612296193","523515344233582592","14581738","2014-10-18 17:06:10 +0000","Twitterrific for iOS","@tolmasky Yes. It's horrible. Don't build a hackintosh. I wish it was better but there are so many little problems. Death by paper cuts.","","","","" +"523323875313324032","523323450148933632","2262091","2014-10-18 04:05:09 +0000","Tweetbot for Mac","@ajordens @JimRoepcke Good advice from the article that’s going around: “Not In a Rush? Run It Overnight”","","","","" "523322791966547968","523319059673513985","14106454","2014-10-18 04:00:51 +0000","Tweetbot for iΟS","@srbaker @atpfm I'm coding in my ATP shirt. All I do is party! http://t.co/o0RHJcjWol","","","","https://twitter.com/_sjs/status/523322791966547968/photo/1" -"523302792178724865","","","2014-10-18 02:41:22 +0000","Twitterrific","RT @drugmonkeyblog: Once this Ebola vaccine is ready, ppl who talk antivax baloney are last in line. New rule.","522961302252445696","26589498","2014-10-17 04:04:25 +0000","" +"523302792178724865","","","2014-10-18 02:41:22 +0000","Twitterrific for iOS","RT @drugmonkeyblog: Once this Ebola vaccine is ready, ppl who talk antivax baloney are last in line. New rule.","522961302252445696","26589498","2014-10-17 04:04:25 +0000","" "523153045296013312","","","2014-10-17 16:46:20 +0000","Tweetbot for iΟS","RT @Interior: We think our Yosemite v1.0 looks pretty good @YosemiteNPS #California http://t.co/TU4dFSzot1","523125882970701825","76348185","2014-10-17 14:58:24 +0000","https://twitter.com/Interior/status/523125882970701825/photo/1,https://twitter.com/Interior/status/523125882970701825/photo/1" "523152925091438592","523147720744501248","7618252","2014-10-17 16:45:51 +0000","Tweetbot for iΟS","@fichek @stroughtonsmith That's what I'm wondering.","","","","" "523150049262731264","523138655825981441","809685","2014-10-17 16:34:26 +0000","Tweetbot for iΟS","@garybernhardt Lenovo Yoga machines are reviewed well these days. I don't know about the keyboard but might be worth a look.","","","","" @@ -2598,12 +2698,12 @@ https://t.co/6byJ2zUNjL","527512087569104896","8128732","2014-10-29 17:27:37 +00 "523142533422284801","523108782478725120","14106454","2014-10-17 16:04:34 +0000","Tweetbot for iΟS","@srbaker Probably the right choice for you. I've been carrying a 6+ and it's nice and big, but it's no iPad replacement.","","","","" "522990128097411072","","","2014-10-17 05:58:57 +0000","Tweetbot for iΟS","RT @Catfish_Man: NSXMLParser should be a good bit faster and smaller in Yosemite/iOS 8. Would be interested in hearing if that’s holding tr…","522987454848958464","15444008","2014-10-17 05:48:20 +0000","" "522986452485828608","","","2014-10-17 05:44:21 +0000","Twitter for Websites","I'm supporting @danbenjamin on @Patreon because 5by5 was my introduction to high quality podcasts. Go Dan! http://t.co/2e21lSAWGh","","","","http://www.patreon.com/5by5?rf=347644&ty=2" -"522963214435631105","","","2014-10-17 04:12:01 +0000","Tweetbot for Mac","Sadly we cannot. +"522963214435631105","","","2014-10-17 04:12:01 +0000","Tweetbot for Mac","Sadly we cannot. “The A5 is like a horror movie monster. You can’t kill it.” -@jsnell http://t.co/ubqMTNuQD6","","","","http://sixcolors.com/post/2014/10/apples-ipadmac-event-first-thoughts" -"522886569007403008","","","2014-10-16 23:07:27 +0000","Tweetbot for Mac","RT @peterpeirce: @gruber well you weren't wrong","522859854554099713","257694434","2014-10-16 21:21:18 +0000","" -"522841489320075264","","","2014-10-16 20:08:19 +0000","Tweetbot for Mac","RT @panzer: The new Retina iMac does not work as an external display.","522840005677293568","19312115","2014-10-16 20:02:25 +0000","" -"522816879258517505","","","2014-10-16 18:30:32 +0000","Tweetbot for Mac","RT @siracusa: Now seeking Radeon R9 M295X comparative benchmarks…","522816213198856192","636923","2014-10-16 18:27:53 +0000","" +"522886569007403008","","","2014-10-16 23:07:27 +0000","Tweetbot for Mac","RT @peterpeirce: @gruber well you weren't wrong","522859854554099713","257694434","2014-10-16 21:21:18 +0000","" +"522841489320075264","","","2014-10-16 20:08:19 +0000","Tweetbot for Mac","RT @panzer: The new Retina iMac does not work as an external display.","522840005677293568","19312115","2014-10-16 20:02:25 +0000","" +"522816879258517505","","","2014-10-16 18:30:32 +0000","Tweetbot for Mac","RT @siracusa: Now seeking Radeon R9 M295X comparative benchmarks…","522816213198856192","636923","2014-10-16 18:27:53 +0000","" "522784390670483456","","","2014-10-16 16:21:26 +0000","Tweetbot for iΟS","The problematic culture of ""Worse is Better"" http://t.co/sP2ei9IX16","","","","http://pchiusano.github.io/2014-10-13/worseisworse.html" "522621532892569600","","","2014-10-16 05:34:17 +0000","Tweetbot for iΟS","RT @elonmusk: Kinda trippy seeing myself on @SouthPark. I've watched the show ever since the J vs SC short. Brian Boitano!","522619616661880832","44196397","2014-10-16 05:26:41 +0000","" "522599586939281408","","","2014-10-16 04:07:05 +0000","OS X","6 Things Everyone Experiences When They Go Through Second Puberty http://t.co/Jd3hvTnuR7","","","","http://www.clickhole.com/article/6-things-everyone-experiences-when-they-go-through-1186" @@ -2618,87 +2718,87 @@ https://t.co/6byJ2zUNjL","527512087569104896","8128732","2014-10-29 17:27:37 +00 "522045553451208705","","","2014-10-14 15:25:33 +0000","Tweetbot for iΟS","Me too. Adobe. “@schwa: https://t.co/wHNnyygDjN And yes I have apparently. Fuck you Adobe”","","","","https://haveibeenpwned.com" -"521847968698494976","521847631249547264","10697232","2014-10-14 02:20:25 +0000","Tweetbot for Mac",".@drdrang This is a bug in iOS 8. When you watch a video, rotate to portrait before tapping Done. Many apps are affected.","","","","" -"521775205048664064","","","2014-10-13 21:31:17 +0000","Tweetbot for Mac","RT @mrgan: ""Startups like Panic…"" Panic, Inc. is older than Facebook and Twitter put together. It's two years older than Google. http://t.c…","521751633823555584","35293","2014-10-13 19:57:37 +0000","http://www.sfgate.com/technology/businessinsider/article/Three-Startup-Founders-Reveal-Why-They-Left-San-5814713.php" +"521847968698494976","521847631249547264","10697232","2014-10-14 02:20:25 +0000","Tweetbot for Mac",".@drdrang This is a bug in iOS 8. When you watch a video, rotate to portrait before tapping Done. Many apps are affected.","","","","" +"521775205048664064","","","2014-10-13 21:31:17 +0000","Tweetbot for Mac","RT @mrgan: ""Startups like Panic…"" Panic, Inc. is older than Facebook and Twitter put together. It's two years older than Google. http://t.c…","521751633823555584","35293","2014-10-13 19:57:37 +0000","http://www.sfgate.com/technology/businessinsider/article/Three-Startup-Founders-Reveal-Why-They-Left-San-5814713.php" "521556908399132672","521544672015945728","40273","2014-10-13 07:03:51 +0000","Tweetbot for iΟS","@monkbent It is so slippery. Not case love, but drop hate.","","","","" -"521333602609795072","521330147367325697","192625645","2014-10-12 16:16:31 +0000","Tweetbot for Mac","@dandigangi Everything from CCR to G’N’R to Pretty Lights to Lady Gaga. Depends on the task and my mood.","","","","" +"521333602609795072","521330147367325697","192625645","2014-10-12 16:16:31 +0000","Tweetbot for Mac","@dandigangi Everything from CCR to G’N’R to Pretty Lights to Lady Gaga. Depends on the task and my mood.","","","","" "521051397971013632","","","2014-10-11 21:35:08 +0000","Tweetbot for iΟS","RT @GeorgeTakei: Love of coffee--off the charts. http://t.co/iQJNJ6ylwE","520956600522387456","237845487","2014-10-11 15:18:27 +0000","https://twitter.com/GeorgeTakei/status/520956600522387456/photo/1,https://twitter.com/GeorgeTakei/status/520956600522387456/photo/1" "520622752274055169","","","2014-10-10 17:11:51 +0000","iOS","Elon Musk Reveals Tesla D Can Park Itself, Greet Drivers http://t.co/yxxTIxY1PO via @mashable","","","","http://on.mash.to/1smLjq2" "520468161372893184","","","2014-10-10 06:57:34 +0000","Tweetbot for iΟS","RT @hmason: TIL that the phrase software ""patch"" is from a physical patch applied to Mark 1 paper tape to modify the program. http://t.co/v…","520367337925390337","765548","2014-10-10 00:16:55 +0000","https://twitter.com/hmason/status/520367337925390337/photo/1" -"520397688295407617","","","2014-10-10 02:17:32 +0000","Tweetbot for Mac","After a few hours the iPhone 6 Plus feels too damn big for me. We’ll see how I feel about it next week.","","","","" -"520102880117026816","","","2014-10-09 06:46:04 +0000","Tweetbot for Mac","RT @ctdawe: Wireshark dev version 1.99.0 for Mac is now a native app that no longer requires X11! (h/t @mike_albano) https://t.co/eOlOvkIKg…","519631145617465344","15066736","2014-10-07 23:31:34 +0000","https://www.wireshark.org/download.html" +"520397688295407617","","","2014-10-10 02:17:32 +0000","Tweetbot for Mac","After a few hours the iPhone 6 Plus feels too damn big for me. We’ll see how I feel about it next week.","","","","" +"520102880117026816","","","2014-10-09 06:46:04 +0000","Tweetbot for Mac","RT @ctdawe: Wireshark dev version 1.99.0 for Mac is now a native app that no longer requires X11! (h/t @mike_albano) https://t.co/eOlOvkIKg…","519631145617465344","15066736","2014-10-07 23:31:34 +0000","https://www.wireshark.org/download.html" "520023594207027200","","","2014-10-09 01:31:01 +0000","Tweetbot for iΟS","RT @hamzasood: Some Apple frameworks on iOS 8.1 contain @3x iPad assets. Bring on the Retina HD iPads! http://t.co/QY3rX0SLVy","520012272274776064","391647694","2014-10-09 00:46:01 +0000","https://twitter.com/hamzasood/status/520012272274776064/photo/1,https://twitter.com/hamzasood/status/520012272274776064/photo/1" "519873110863273984","","","2014-10-08 15:33:03 +0000","Tweetbot for iΟS","RT @dtome: Yes, That's Just the Pet Lion in the Swimming Pool http://t.co/AWSWlrJJzh via @mashable","519861364664201217","7854152","2014-10-08 14:46:22 +0000","http://mashable.com/2014/10/06/yes-thats-just-the-pet-lion-in-the-swimming-pool/#:eyJzIjoidCIsImkiOiJfcTBlcmwzZGQyeXhzdWxuaiJ9,http://mashable.com/2014/10/06/yes-thats-just-the-pet-lion-in-the-swimming-pool/#:eyJzIjoidCIsImkiOiJfcTBlcmwzZGQyeXhzdWxuaiJ9" "519661306496839680","","","2014-10-08 01:31:24 +0000","Tweetbot for iΟS","OH: ""I'm kinda scared of my brain right now.""","","","","" -"519543733566464000","","","2014-10-07 17:44:13 +0000","Tweetbot for Mac","RT @DanFrakes: This tip from @viticci on organizing custom iOS 8 keyboards has turned out to be surprisingly useful: http://t.co/XvkHSV1XdY","519541026529107968","8259712","2014-10-07 17:33:27 +0000","http://www.macstories.net/tutorials/an-ios-8-custom-keyboard-tip/,http://www.macstories.net/tutorials/an-ios-8-custom-keyboard-tip/" +"519543733566464000","","","2014-10-07 17:44:13 +0000","Tweetbot for Mac","RT @DanFrakes: This tip from @viticci on organizing custom iOS 8 keyboards has turned out to be surprisingly useful: http://t.co/XvkHSV1XdY","519541026529107968","8259712","2014-10-07 17:33:27 +0000","http://www.macstories.net/tutorials/an-ios-8-custom-keyboard-tip/,http://www.macstories.net/tutorials/an-ios-8-custom-keyboard-tip/" "519514932984164352","519508555984928768","14868897","2014-10-07 15:49:46 +0000","Tweetbot for iΟS","@SlaunchaMan @JimRoepcke Super fun 😃🔫","","","","" "519357595984097280","519328719308353536","894911","2014-10-07 05:24:34 +0000","Tweetbot for iΟS","@JimRoepcke iTunes Match is great. You're missing out.","","","","" "519319278953431041","","","2014-10-07 02:52:19 +0000","Tweetbot for iΟS","RT @Kyle_MacLachlan: Better fire up that percolator and find my black suit :-) #Twinpeaks","519201373209260033","286311652","2014-10-06 19:03:48 +0000","" "519204002081558528","519201172092379136","73963286","2014-10-06 19:14:15 +0000","Tweetbot for iΟS","@bcapps I just noticed that too. Check the version history, it's going to get better.","","","","" -"519202065181331456","","","2014-10-06 19:06:33 +0000","Tweetbot for Mac","RT @DAVID_LYNCH: Dear Twitter Friends… it is happening again. http://t.co/r0l9rhK4eB #damngoodcoffee","519147574381379584","15962096","2014-10-06 15:30:01 +0000","http://s.sho.com/TwinPeaks,http://s.sho.com/TwinPeaks" +"519202065181331456","","","2014-10-06 19:06:33 +0000","Tweetbot for Mac","RT @DAVID_LYNCH: Dear Twitter Friends… it is happening again. http://t.co/r0l9rhK4eB #damngoodcoffee","519147574381379584","15962096","2014-10-06 15:30:01 +0000","http://s.sho.com/TwinPeaks,http://s.sho.com/TwinPeaks" "519156391840579585","519150861273292800","894911","2014-10-06 16:05:03 +0000","Tweetbot for iΟS","@JimRoepcke @stroughtonsmith Maybe my backup wasn't encrypted on the machine I restored from.","","","","" "519150632285257729","519148642750717953","894911","2014-10-06 15:42:10 +0000","Tweetbot for iΟS","@JimRoepcke @stroughtonsmith Google Authenticator has never restored any data for me. New setup every time. I switched to Lockdown.","","","","" -"518915879007162369","","","2014-10-06 00:09:21 +0000","Twitterrific","RT @DAVID_LYNCH: Dear Twitter Friends: That gum you like is going to come back in style! #damngoodcoffee","518060411690569730","15962096","2014-10-03 15:30:01 +0000","" +"518915879007162369","","","2014-10-06 00:09:21 +0000","Twitterrific for iOS","RT @DAVID_LYNCH: Dear Twitter Friends: That gum you like is going to come back in style! #damngoodcoffee","518060411690569730","15962096","2014-10-03 15:30:01 +0000","" "518795217991122944","518788380352847872","894911","2014-10-05 16:09:53 +0000","Tweetbot for iΟS","@JimRoepcke It isn't new, but similar word games commonly have that rule.","","","","" "518505528163840001","","","2014-10-04 20:58:45 +0000","Tweetbot for iΟS","RT @dfranke: A web designer walks into a bar, -moz-bar, -webkit-bar, -ms-bar, -o-bar, @‍supports (min-age: 21) {","518257254014136320","14906583","2014-10-04 04:32:12 +0000","" -"518430614404734977","","","2014-10-04 16:01:05 +0000","Tweetbot for Mac","Hackintosh’s ethernet broke in the last OS upgrade. It froze and jammed up my entire LAN until powered off. Don’t build a Hackintosh.","","","","" +"518430614404734977","","","2014-10-04 16:01:05 +0000","Tweetbot for Mac","Hackintosh’s ethernet broke in the last OS upgrade. It froze and jammed up my entire LAN until powered off. Don’t build a Hackintosh.","","","","" "518276601348644866","518253631565340672","3374231","2014-10-04 05:49:05 +0000","Tweetbot for iΟS","@mxcl Apple doesn't always set the bar.","","","","" -"518152897889312768","","","2014-10-03 21:37:32 +0000","Tweetbot for Mac","Happy Friday! Here’s some delicious instant karma. http://t.co/MrrQ2cFTVv","","","","http://mashable.com/2014/10/03/instant-karma-gifs/" -"518091014947753984","","","2014-10-03 17:31:38 +0000","Tweetbot for Mac","RT @dtome: 'Aquaman Crystal' Could Let Divers Breathe Underwater http://t.co/TN1VDF37X8 via @mashable","518087256192450560","7854152","2014-10-03 17:16:42 +0000","http://mashable.com/2014/10/03/crystal-breathe-underwater/#:eyJzIjoidCIsImkiOiJfcTBlcmwzZGQyeXhzdWxuaiJ9,http://mashable.com/2014/10/03/crystal-breathe-underwater/#:eyJzIjoidCIsImkiOiJfcTBlcmwzZGQyeXhzdWxuaiJ9" -"517884864759365632","","","2014-10-03 03:52:28 +0000","Tweetbot for Mac","Weird visual bug in Yosemite. Only happens with the App Store in my quick tests. https://t.co/l4PsnKVaG5","","","","https://www.youtube.com/watch?v=QC-bKjcWFnA" +"518152897889312768","","","2014-10-03 21:37:32 +0000","Tweetbot for Mac","Happy Friday! Here’s some delicious instant karma. http://t.co/MrrQ2cFTVv","","","","http://mashable.com/2014/10/03/instant-karma-gifs/" +"518091014947753984","","","2014-10-03 17:31:38 +0000","Tweetbot for Mac","RT @dtome: 'Aquaman Crystal' Could Let Divers Breathe Underwater http://t.co/TN1VDF37X8 via @mashable","518087256192450560","7854152","2014-10-03 17:16:42 +0000","http://mashable.com/2014/10/03/crystal-breathe-underwater/#:eyJzIjoidCIsImkiOiJfcTBlcmwzZGQyeXhzdWxuaiJ9,http://mashable.com/2014/10/03/crystal-breathe-underwater/#:eyJzIjoidCIsImkiOiJfcTBlcmwzZGQyeXhzdWxuaiJ9" +"517884864759365632","","","2014-10-03 03:52:28 +0000","Tweetbot for Mac","Weird visual bug in Yosemite. Only happens with the App Store in my quick tests. https://t.co/l4PsnKVaG5","","","","https://www.youtube.com/watch?v=QC-bKjcWFnA" "517824443713089536","517820569585475584","7125712","2014-10-02 23:52:22 +0000","Tweetbot for iΟS","@gte It's a total hack. Useful, but still a hack.","","","","" -"517780275678683136","","","2014-10-02 20:56:52 +0000","Tweetbot for Mac","RT @phillipsbeer: our friends at Roast are getting ready for Stein and Dine tomorrow! For more info: http://t.co/QaKDDox6cN http://t.co/3p…","517779431654690816","65141250","2014-10-02 20:53:31 +0000","http://steinanddine.com/,http://steinanddine.com/,https://twitter.com/phillipsbeer/status/517779431654690816/photo/1" -"517738822755704834","517738313176731648","14272162","2014-10-02 18:12:09 +0000","Tweetbot for Mac","@jdalton Apple is working hard to ensure that we sniff capabilities and not versions :p","","","","" +"517780275678683136","","","2014-10-02 20:56:52 +0000","Tweetbot for Mac","RT @phillipsbeer: our friends at Roast are getting ready for Stein and Dine tomorrow! For more info: http://t.co/QaKDDox6cN http://t.co/3p…","517779431654690816","65141250","2014-10-02 20:53:31 +0000","http://steinanddine.com/,http://steinanddine.com/,https://twitter.com/phillipsbeer/status/517779431654690816/photo/1" +"517738822755704834","517738313176731648","14272162","2014-10-02 18:12:09 +0000","Tweetbot for Mac","@jdalton Apple is working hard to ensure that we sniff capabilities and not versions :p","","","","" "517499694025834496","","","2014-10-02 02:21:56 +0000","iOS","I like the sound of this → ARM Announces “mbed” IoT Device Platform http://t.co/3810eRvyZl","","","","http://www.anandtech.com/show/8583/arm-announces-mbed-iot-device-platform" -"517413000157073409","","","2014-10-01 20:37:26 +0000","Tweetbot for Mac","If you give away a copy of your software to someone who asks for it then you have not been robbed, you have been scammed or tricked.","","","","" -"517330341653409792","","","2014-10-01 15:08:59 +0000","Twitterrific","RT @siracusa: Strike a pose. http://t.co/9sJWUpBZVi","517317479811805184","636923","2014-10-01 14:17:53 +0000","http://www.vogue.com/1415025/apple-design-genius-jonathan-ive/,http://www.vogue.com/1415025/apple-design-genius-jonathan-ive/" -"517165994452979714","","","2014-10-01 04:15:56 +0000","Twitterrific","""redefines what it means to be smart""","","","","" -"517142571400060930","","","2014-10-01 02:42:51 +0000","Twitterrific","The Apple Watch app for your iPhone is going to be the new iTunes. Are you excited yet?","","","","" -"517071628027834369","","","2014-09-30 22:00:57 +0000","Tweetbot for Mac","RT @drdrang: Someone’s abducted the real @gruber and is asking us to install a Windows taskbar on our Macs.","517068942196473857","10697232","2014-09-30 21:50:17 +0000","" -"517007156273754112","","","2014-09-30 17:44:46 +0000","Tweetbot for Mac","RT @siracusa: ""It is fiction, not fact even though it contains facts."" http://t.co/u9Jjjjm6KG","517006213939486720","636923","2014-09-30 17:41:01 +0000","http://www.infoworld.com/article/2613504/microsoft-windows/microsoft-skips--too-good--windows-9--jumps-to-windows-10.html,http://www.infoworld.com/article/2613504/microsoft-windows/microsoft-skips--too-good--windows-9--jumps-to-windows-10.html" -"516981975471886336","","","2014-09-30 16:04:42 +0000","Twitterrific","Apparently @anandshimpi and @nerdtalker left some big shoes to fill. http://t.co/onmIbAoAl1","","","","https://twitter.com/_sjs/status/516981975471886336/photo/1" -"516430328182112257","516424992578207746","277724842","2014-09-29 03:32:39 +0000","Tweetbot for Mac","@TooTallNate I used it by accident once or twice.","","","","" -"516402334789033984","516395664222486528","894911","2014-09-29 01:41:25 +0000","Twitterrific","@JimRoepcke I have a $5 VM on Digital Ocean for that reason. Use it for TeamSpeak sometimes.","","","","" +"517413000157073409","","","2014-10-01 20:37:26 +0000","Tweetbot for Mac","If you give away a copy of your software to someone who asks for it then you have not been robbed, you have been scammed or tricked.","","","","" +"517330341653409792","","","2014-10-01 15:08:59 +0000","Twitterrific for iOS","RT @siracusa: Strike a pose. http://t.co/9sJWUpBZVi","517317479811805184","636923","2014-10-01 14:17:53 +0000","http://www.vogue.com/1415025/apple-design-genius-jonathan-ive/,http://www.vogue.com/1415025/apple-design-genius-jonathan-ive/" +"517165994452979714","","","2014-10-01 04:15:56 +0000","Twitterrific for iOS","""redefines what it means to be smart""","","","","" +"517142571400060930","","","2014-10-01 02:42:51 +0000","Twitterrific for iOS","The Apple Watch app for your iPhone is going to be the new iTunes. Are you excited yet?","","","","" +"517071628027834369","","","2014-09-30 22:00:57 +0000","Tweetbot for Mac","RT @drdrang: Someone’s abducted the real @gruber and is asking us to install a Windows taskbar on our Macs.","517068942196473857","10697232","2014-09-30 21:50:17 +0000","" +"517007156273754112","","","2014-09-30 17:44:46 +0000","Tweetbot for Mac","RT @siracusa: ""It is fiction, not fact even though it contains facts."" http://t.co/u9Jjjjm6KG","517006213939486720","636923","2014-09-30 17:41:01 +0000","http://www.infoworld.com/article/2613504/microsoft-windows/microsoft-skips--too-good--windows-9--jumps-to-windows-10.html,http://www.infoworld.com/article/2613504/microsoft-windows/microsoft-skips--too-good--windows-9--jumps-to-windows-10.html" +"516981975471886336","","","2014-09-30 16:04:42 +0000","Twitterrific for iOS","Apparently @anandshimpi and @nerdtalker left some big shoes to fill. http://t.co/onmIbAoAl1","","","","https://twitter.com/_sjs/status/516981975471886336/photo/1" +"516430328182112257","516424992578207746","277724842","2014-09-29 03:32:39 +0000","Tweetbot for Mac","@TooTallNate I used it by accident once or twice.","","","","" +"516402334789033984","516395664222486528","894911","2014-09-29 01:41:25 +0000","Twitterrific for iOS","@JimRoepcke I have a $5 VM on Digital Ocean for that reason. Use it for TeamSpeak sometimes.","","","","" "516264643917271040","","","2014-09-28 16:34:17 +0000","iOS","Has anyone tried Lockdown yet? http://t.co/7qT8IgmNTo","","","","http://cocoaapp.com/apps/lockdown/" -"515952494393196544","","","2014-09-27 19:53:55 +0000","Tweetbot for Mac","“It was a phishing expedition.”","","","","" -"515952118281564160","","","2014-09-27 19:52:25 +0000","Tweetbot for Mac","So much better than Garfield. http://t.co/S2HhAQcDk2 http://t.co/wxjVNb5urK","","","","http://garfieldminusgarfield.net/post/33258220,https://twitter.com/_sjs/status/515952118281564160/photo/1" -"515887088605360128","","","2014-09-27 15:34:01 +0000","Tweetbot for Mac","They almost got me with this phishing attempt. http://t.co/uVTkmp9KDa","","","","https://twitter.com/_sjs/status/515887088605360128/photo/1" +"515952494393196544","","","2014-09-27 19:53:55 +0000","Tweetbot for Mac","“It was a phishing expedition.”","","","","" +"515952118281564160","","","2014-09-27 19:52:25 +0000","Tweetbot for Mac","So much better than Garfield. http://t.co/S2HhAQcDk2 http://t.co/wxjVNb5urK","","","","http://garfieldminusgarfield.net/post/33258220,https://twitter.com/_sjs/status/515952118281564160/photo/1" +"515887088605360128","","","2014-09-27 15:34:01 +0000","Tweetbot for Mac","They almost got me with this phishing attempt. http://t.co/uVTkmp9KDa","","","","https://twitter.com/_sjs/status/515887088605360128/photo/1" "515877812088352768","","","2014-09-27 14:57:09 +0000","iOS","Why bad bugs hit good people | iMore http://t.co/rYx0Nrk9n1","","","","http://www.imore.com/hugs-not-bugs" -"515875006115770368","","","2014-09-27 14:46:00 +0000","Twitterrific","RT @wwwtxt: Do you talk to the computer as if it could hear you? Does it ever talk back? ☯92JAN","515855158316916736","207756340","2014-09-27 13:27:08 +0000","" -"515874844454715392","515843953556725760","15267898","2014-09-27 14:45:22 +0000","Twitterrific","@stroughtonsmith Not just you.","","","","" -"515543761141895168","","","2014-09-26 16:49:45 +0000","Tweetbot for Mac","It Bends?! 8 Major defects of the iPhone 6 http://t.co/vJr62RdumS","","","","http://www.clickhole.com/article/it-bends-8-major-defects-iphone-6-1084" -"515537559385292800","","","2014-09-26 16:25:07 +0000","Twitterrific","RT @dadgumjames: The shellshock and Pentium division bugs were both released into the wild in 1993.","515534780814098434","2350289402","2014-09-26 16:14:04 +0000","" -"515533464456941568","515527765429583873","3863181","2014-09-26 16:08:50 +0000","Twitterrific","@chelseabot LAPD is always a relevant song.","","","","" -"515317215584092160","515316891108528128","108814849","2014-09-26 01:49:32 +0000","Twitterrific","@snarfmason Now that's a compelling reason to do TDD.","","","","" -"515313626820120576","","","2014-09-26 01:35:17 +0000","Twitterrific","No issues with 8.0.2 yet.","","","","" -"515311005145239552","","18609272","2014-09-26 01:24:52 +0000","Twitterrific","@twitteriffic Web pages keep opening with a reading service. Can I turn that off and load the actual page by default?","","","","" -"515300457259229184","","","2014-09-26 00:42:57 +0000","Twitterrific","Need room for your iPhone 6 Plus? http://t.co/iSjgNn68wB","","","","http://www.amazon.com/gp/aw/d/B002ESD4OU?pc_redir=1411018404&robot_redir=1" -"515299304769327104","","","2014-09-26 00:38:22 +0000","Twitterrific","Is this true? ""engineers who test the new software often are unable to get the latest iPhones until they are available to customers""","","","","" -"515298996953559040","","","2014-09-26 00:37:09 +0000","Twitterrific","You go first. RT @MacRumors: Apple Releases iOS 8.0.2 With Fix for Cellular Issues, Broken Touch ID http://t.co/x900SjCTDi by @julipuli","","","","http://www.macrumors.com/2014/09/25/apple-releases-ios-8-0-2/" -"515235885139628032","","","2014-09-25 20:26:22 +0000","Tweetbot for Mac","Attention @gregbate https://t.co/4m1yOlKOTr","","","","https://twitter.com/ArchrOnSecurity/status/515224086549516288" -"515220137100996608","515219022309523456","232701963","2014-09-25 19:23:47 +0000","Tweetbot for Mac","@fyrite http://t.co/txbcroUmXD","","","","http://fc01.deviantart.net/fs71/i/2010/182/8/9/Extra_Big_Ass_Taco_by_0ddmind.jpg" -"515181917264969728","515181655670419456","15267898","2014-09-25 16:51:55 +0000","Tweetbot for Mac","@stroughtonsmith I like the Communicator there, keeping the peace between the two sides.","","","","" +"515875006115770368","","","2014-09-27 14:46:00 +0000","Twitterrific for iOS","RT @wwwtxt: Do you talk to the computer as if it could hear you? Does it ever talk back? ☯92JAN","515855158316916736","207756340","2014-09-27 13:27:08 +0000","" +"515874844454715392","515843953556725760","15267898","2014-09-27 14:45:22 +0000","Twitterrific for iOS","@stroughtonsmith Not just you.","","","","" +"515543761141895168","","","2014-09-26 16:49:45 +0000","Tweetbot for Mac","It Bends?! 8 Major defects of the iPhone 6 http://t.co/vJr62RdumS","","","","http://www.clickhole.com/article/it-bends-8-major-defects-iphone-6-1084" +"515537559385292800","","","2014-09-26 16:25:07 +0000","Twitterrific for iOS","RT @dadgumjames: The shellshock and Pentium division bugs were both released into the wild in 1993.","515534780814098434","2350289402","2014-09-26 16:14:04 +0000","" +"515533464456941568","515527765429583873","3863181","2014-09-26 16:08:50 +0000","Twitterrific for iOS","@chelseabot LAPD is always a relevant song.","","","","" +"515317215584092160","515316891108528128","108814849","2014-09-26 01:49:32 +0000","Twitterrific for iOS","@snarfmason Now that's a compelling reason to do TDD.","","","","" +"515313626820120576","","","2014-09-26 01:35:17 +0000","Twitterrific for iOS","No issues with 8.0.2 yet.","","","","" +"515311005145239552","","18609272","2014-09-26 01:24:52 +0000","Twitterrific for iOS","@twitteriffic Web pages keep opening with a reading service. Can I turn that off and load the actual page by default?","","","","" +"515300457259229184","","","2014-09-26 00:42:57 +0000","Twitterrific for iOS","Need room for your iPhone 6 Plus? http://t.co/iSjgNn68wB","","","","http://www.amazon.com/gp/aw/d/B002ESD4OU?pc_redir=1411018404&robot_redir=1" +"515299304769327104","","","2014-09-26 00:38:22 +0000","Twitterrific for iOS","Is this true? ""engineers who test the new software often are unable to get the latest iPhones until they are available to customers""","","","","" +"515298996953559040","","","2014-09-26 00:37:09 +0000","Twitterrific for iOS","You go first. RT @MacRumors: Apple Releases iOS 8.0.2 With Fix for Cellular Issues, Broken Touch ID http://t.co/x900SjCTDi by @julipuli","","","","http://www.macrumors.com/2014/09/25/apple-releases-ios-8-0-2/" +"515235885139628032","","","2014-09-25 20:26:22 +0000","Tweetbot for Mac","Attention @gregbate https://t.co/4m1yOlKOTr","","","","https://twitter.com/ArchrOnSecurity/status/515224086549516288" +"515220137100996608","515219022309523456","232701963","2014-09-25 19:23:47 +0000","Tweetbot for Mac","@fyrite http://t.co/txbcroUmXD","","","","http://fc01.deviantart.net/fs71/i/2010/182/8/9/Extra_Big_Ass_Taco_by_0ddmind.jpg" +"515181917264969728","515181655670419456","15267898","2014-09-25 16:51:55 +0000","Tweetbot for Mac","@stroughtonsmith I like the Communicator there, keeping the peace between the two sides.","","","","" "515177781366628352","","","2014-09-25 16:35:29 +0000","iOS","9 months ago someone sat on their HTC One Max and bent it. http://t.co/yuPhpMr8in","","","","http://app.wirelessweek.com/articles/2013/12/review-htc-one-max-and-how-big-too-big" -"514910503844716544","","","2014-09-24 22:53:25 +0000","Tweetbot for Mac","Hello. I’m Sami and I’m a backupaholic.","","","","" -"514862594872860672","","","2014-09-24 19:43:02 +0000","Tweetbot for Mac","Restoring the 8.0.1 IPSW with iTunes reportedly also works, but I haven’t tried that yet.","","","","" -"514862503277658112","","","2014-09-24 19:42:41 +0000","Tweetbot for Mac","Official Apple response: 8.0.1 is pulled, so back up and restore with iTunes and you should get 8.0.","","","","" -"514859435588878336","","","2014-09-24 19:30:29 +0000","Tweetbot for Mac","I bet they are busy taking other chats. http://t.co/9nDanigi4v","","","","https://twitter.com/_sjs/status/514859435588878336/photo/1" -"514838654804828161","","","2014-09-24 18:07:55 +0000","Tweetbot for Mac","RT @drdrang: Now the zsh people are going to be even more certain of their superiority.","514838296577736704","10697232","2014-09-24 18:06:29 +0000","" -"514833390093479936","514826695984308224","102119907","2014-09-24 17:47:00 +0000","Tweetbot for Mac","@dnwrld @stroughtonsmith Nope, my 6 is affected.","","","","" -"514832764332670976","","","2014-09-24 17:44:30 +0000","Tweetbot for Mac","RT @MacRumors: Numerous users reporting no cell service and broken Touch ID after updating to iOS 8.0.1. May want to hold off updating for …","514825605880504320","14861285","2014-09-24 17:16:04 +0000","" -"514807627835269120","","","2014-09-24 16:04:37 +0000","Twitterrific","""iTouch"" must be an American thing. Like ""Legos"". I don't hear either of those in Canada very often.","","","","" -"514675924747689984","","","2014-09-24 07:21:17 +0000","Twitterrific","RT @drdrang: ⛄ Engineering language +"514910503844716544","","","2014-09-24 22:53:25 +0000","Tweetbot for Mac","Hello. I’m Sami and I’m a backupaholic.","","","","" +"514862594872860672","","","2014-09-24 19:43:02 +0000","Tweetbot for Mac","Restoring the 8.0.1 IPSW with iTunes reportedly also works, but I haven’t tried that yet.","","","","" +"514862503277658112","","","2014-09-24 19:42:41 +0000","Tweetbot for Mac","Official Apple response: 8.0.1 is pulled, so back up and restore with iTunes and you should get 8.0.","","","","" +"514859435588878336","","","2014-09-24 19:30:29 +0000","Tweetbot for Mac","I bet they are busy taking other chats. http://t.co/9nDanigi4v","","","","https://twitter.com/_sjs/status/514859435588878336/photo/1" +"514838654804828161","","","2014-09-24 18:07:55 +0000","Tweetbot for Mac","RT @drdrang: Now the zsh people are going to be even more certain of their superiority.","514838296577736704","10697232","2014-09-24 18:06:29 +0000","" +"514833390093479936","514826695984308224","102119907","2014-09-24 17:47:00 +0000","Tweetbot for Mac","@dnwrld @stroughtonsmith Nope, my 6 is affected.","","","","" +"514832764332670976","","","2014-09-24 17:44:30 +0000","Tweetbot for Mac","RT @MacRumors: Numerous users reporting no cell service and broken Touch ID after updating to iOS 8.0.1. May want to hold off updating for …","514825605880504320","14861285","2014-09-24 17:16:04 +0000","" +"514807627835269120","","","2014-09-24 16:04:37 +0000","Twitterrific for iOS","""iTouch"" must be an American thing. Like ""Legos"". I don't hear either of those in Canada very often.","","","","" +"514675924747689984","","","2014-09-24 07:21:17 +0000","Twitterrific for iOS","RT @drdrang: ⛄ Engineering language http://t.co/zXRTJ55ffN","514652275495546880","10697232","2014-09-24 05:47:18 +0000","http://www.leancrew.com/all-this/2014/09/engineering-language/,http://www.leancrew.com/all-this/2014/09/engineering-language/" -"514639800062976000","514629869867892738","14180235","2014-09-24 04:57:44 +0000","Twitterrific","@daveeed Only one way to find out.","","","","" -"514639739400757248","","","2014-09-24 04:57:30 +0000","Twitterrific","RT @daveeed: @_sjs maybe if you bend it a little, you'll get a better grip?","514629869867892738","14180235","2014-09-24 04:18:17 +0000","" -"514625979013423104","","","2014-09-24 04:02:49 +0000","Twitterrific","This iPhone is slippery. I've dropped it several times already. Case doesn't arrive until October. It'll be a miracle if it lasts that long.","","","","" -"514620571276308480","514616723941888001","894911","2014-09-24 03:41:20 +0000","Twitterrific","@JimRoepcke It's like an elaborate practical joke.","","","","" -"514468866085642240","","","2014-09-23 17:38:30 +0000","Tweetbot for Mac","I’m interested in trying out this keyboard, though. It’s a clipboard: http://t.co/D5NRBh3Zej","","","","http://www.kuaiboard.com" -"514468218610921473","","","2014-09-23 17:35:56 +0000","Tweetbot for Mac","This fall a lot of people are going to find out that they are actually perfectly happy with the standard iOS keyboard.","","","","" -"514467840305676288","514466702126776321","33423","2014-09-23 17:34:26 +0000","Tweetbot for Mac","@gruber When I tried it on Android it was decent for one-handed typing. After a few months I switched back. Alternative keyboards: meh.","","","","" -"514190190869757953","514189974284300288","33423","2014-09-22 23:11:09 +0000","Tweetbot for Mac","@gruber Nope https://t.co/12I04IGPY3","","","","https://twitter.com/anandtech/status/513093194637000705" -"514189571119403008","514185340694065152","894911","2014-09-22 23:08:41 +0000","Tweetbot for Mac","@JimRoepcke I tried it from the lock screen without success. I heard the message, but didn’t know how to reply with voice there.","","","","" -"514166965922168832","514148289390706688","232701963","2014-09-22 21:38:52 +0000","Tweetbot for Mac","@fyrite @meatandbreadvic Sounds yummy. The jerk chicken at @BreweryTheBeast was great!","","","","" +"514639800062976000","514629869867892738","14180235","2014-09-24 04:57:44 +0000","Twitterrific for iOS","@daveeed Only one way to find out.","","","","" +"514639739400757248","","","2014-09-24 04:57:30 +0000","Twitterrific for iOS","RT @daveeed: @_sjs maybe if you bend it a little, you'll get a better grip?","514629869867892738","14180235","2014-09-24 04:18:17 +0000","" +"514625979013423104","","","2014-09-24 04:02:49 +0000","Twitterrific for iOS","This iPhone is slippery. I've dropped it several times already. Case doesn't arrive until October. It'll be a miracle if it lasts that long.","","","","" +"514620571276308480","514616723941888001","894911","2014-09-24 03:41:20 +0000","Twitterrific for iOS","@JimRoepcke It's like an elaborate practical joke.","","","","" +"514468866085642240","","","2014-09-23 17:38:30 +0000","Tweetbot for Mac","I’m interested in trying out this keyboard, though. It’s a clipboard: http://t.co/D5NRBh3Zej","","","","http://www.kuaiboard.com" +"514468218610921473","","","2014-09-23 17:35:56 +0000","Tweetbot for Mac","This fall a lot of people are going to find out that they are actually perfectly happy with the standard iOS keyboard.","","","","" +"514467840305676288","514466702126776321","33423","2014-09-23 17:34:26 +0000","Tweetbot for Mac","@gruber When I tried it on Android it was decent for one-handed typing. After a few months I switched back. Alternative keyboards: meh.","","","","" +"514190190869757953","514189974284300288","33423","2014-09-22 23:11:09 +0000","Tweetbot for Mac","@gruber Nope https://t.co/12I04IGPY3","","","","https://twitter.com/anandtech/status/513093194637000705" +"514189571119403008","514185340694065152","894911","2014-09-22 23:08:41 +0000","Tweetbot for Mac","@JimRoepcke I tried it from the lock screen without success. I heard the message, but didn’t know how to reply with voice there.","","","","" +"514166965922168832","514148289390706688","232701963","2014-09-22 21:38:52 +0000","Tweetbot for Mac","@fyrite @meatandbreadvic Sounds yummy. The jerk chicken at @BreweryTheBeast was great!","","","","" "514067644178501632","","","2014-09-22 15:04:11 +0000","Tweetbot for iΟS","My sister just bought an iPhone 5s. She held a 6 and thought it was too big.","","","","" "513829939037343744","","","2014-09-21 23:19:38 +0000","Tweetbot for iΟS","I ate so much barbecued meat that I can taste charcoal.","","","","" "513798623180881923","","","2014-09-21 21:15:12 +0000","Tweetbot for iΟS","I love @BreweryTheBeast. Look at this! http://t.co/ImriTiQHEH","","","","https://twitter.com/_sjs/status/513798623180881923/photo/1" @@ -2707,314 +2807,314 @@ http://t.co/zXRTJ55ffN","514652275495546880","10697232","2014-09-24 05:47:18 +00 "513762316106862592","","","2014-09-21 18:50:56 +0000","Tweetbot for iΟS","RT @domchristie: @dgeb Gestures: http://t.co/svLgxvcFPP","513739525898911747","11662032","2014-09-21 17:20:22 +0000","http://www.jnd.org/dn.mss/gestural_interfaces_a_step_backwards_in_usability_6.html,http://www.jnd.org/dn.mss/gestural_interfaces_a_step_backwards_in_usability_6.html" "513761976913518592","","","2014-09-21 18:49:35 +0000","Tweetbot for iΟS","RT @dgeb: Reach all the way up, reach all the way down, double tap, then reach up again. New iPhone UX or 6th grade gym class?","513735958286442496","14651212","2014-09-21 17:06:11 +0000","" "513730479775027200","","","2014-09-21 16:44:25 +0000","Tweetbot for iΟS","What else could we have for breakfast on the day of @BreweryTheBeast? Sausages and @phillipsbeer! http://t.co/2RpdY3N9Mf","","","","https://twitter.com/_sjs/status/513730479775027200/photo/1" -"513725973104443392","","","2014-09-21 16:26:31 +0000","Twitterrific","wat http://t.co/1syxUFEbjt","","","","https://twitter.com/_sjs/status/513725973104443392/photo/1" +"513725973104443392","","","2014-09-21 16:26:31 +0000","Twitterrific for iOS","wat http://t.co/1syxUFEbjt","","","","https://twitter.com/_sjs/status/513725973104443392/photo/1" "513722732140560385","","","2014-09-21 16:13:38 +0000","Tweetbot for iΟS","RT @drdrang: ⛄️ An anachronistic survey of Twitter apps http://t.co/FauH7FTLOe","513709564663840768","10697232","2014-09-21 15:21:19 +0000","http://www.leancrew.com/all-this/2014/09/an-anachronistic-survey-of-twitter-apps/,http://www.leancrew.com/all-this/2014/09/an-anachronistic-survey-of-twitter-apps/" "513530023895375872","","","2014-09-21 03:27:53 +0000","Tweetbot for iΟS","How do you show more than 5 reminders in Notification Center on iOS 8?","","","","" "513519717806780416","","","2014-09-21 02:46:56 +0000","Tweetbot for iΟS","What do you all think about the size of the iPhone 6? I'm starting to get used to it but have to hold it differently.","","","","" -"513498093493702656","513496214646448128","14581738","2014-09-21 01:21:00 +0000","Tweetbot for Mac","@tolmasky No, @jsnell mentioned that on some podcast recently.","","","","" +"513498093493702656","513496214646448128","14581738","2014-09-21 01:21:00 +0000","Tweetbot for Mac","@tolmasky No, @jsnell mentioned that on some podcast recently.","","","","" "513350305682325505","","","2014-09-20 15:33:45 +0000","iOS","iPhone 6 Plus vs. Samsung Galaxy S5 http://t.co/oYF2hTWcyj via @Instapaper","","","","http://www.theonion.com/articles/iphone-6-plus-vs-samsung-galaxy-s5,36969/" "513161013810987008","513160556283723776","894911","2014-09-20 03:01:34 +0000","Tweetbot for iΟS","@JimRoepcke Yup. I can reach the top but I have to move my pinky and regrip. It's big.","","","","" "513160426247704576","513159696690458624","894911","2014-09-20 02:59:14 +0000","Tweetbot for iΟS","@JimRoepcke I'm glad it works. It's necessary for one-handed use.","","","","" "513158181280038912","","","2014-09-20 02:50:19 +0000","Tweetbot for iΟS","Wanna see something janky? I don't like this at all. It's useful, but man... http://t.co/TwWclUSDm4","","","","http://youtu.be/4Ms3UoSo4NM" "513110812144439296","","","2014-09-19 23:42:05 +0000","iOS","iPhone 6 Haters Gonna Hate ᕕ( ᐛ )ᕗ http://t.co/aFIeRtvF0n via @mashable","","","","http://on.mash.to/1rmeZDf" "513109283752644608","","","2014-09-19 23:36:01 +0000","Tweetbot for iΟS","Is this the first iPhone box to omit the version since the first iPhone?","","","","" -"513100867860692992","","","2014-09-19 23:02:34 +0000","Tweetbot for Mac","So how do you all migrate Google Authenticator to a new device? Update each service individually? That’s a reason to prefer SMS for me.","","","","" -"513097260755091456","","","2014-09-19 22:48:14 +0000","Tweetbot for Mac","802.11ac is way faster than 802.11n in practice. Worth upgrading your router for.","","","","" -"513095195995680768","513094764074639360","108814849","2014-09-19 22:40:02 +0000","Tweetbot for Mac","@snarfmason If you say so, sir! 🍻","","","","" +"513100867860692992","","","2014-09-19 23:02:34 +0000","Tweetbot for Mac","So how do you all migrate Google Authenticator to a new device? Update each service individually? That’s a reason to prefer SMS for me.","","","","" +"513097260755091456","","","2014-09-19 22:48:14 +0000","Tweetbot for Mac","802.11ac is way faster than 802.11n in practice. Worth upgrading your router for.","","","","" +"513095195995680768","513094764074639360","108814849","2014-09-19 22:40:02 +0000","Tweetbot for Mac","@snarfmason If you say so, sir! 🍻","","","","" "513083612640845825","","","2014-09-19 21:54:00 +0000","Tweetbot for iΟS","Left to right: 3.5"" iPod touch, 4"" iPod touch, and 4.7"" iPhone 6. http://t.co/YAxOif7xca","","","","https://twitter.com/_sjs/status/513083612640845825/photo/1" -"513070106256371712","","","2014-09-19 21:00:20 +0000","Tweetbot for Mac","I just saved myself from mistyping Scotland as Scrotland.","","","","" -"513067681843793920","","","2014-09-19 20:50:42 +0000","Tweetbot for Mac","RT @chockenberry: Apple should put Xcode, iCloud, Portal & TestFlight developers in a room for a week to release an app. +"513070106256371712","","","2014-09-19 21:00:20 +0000","Tweetbot for Mac","I just saved myself from mistyping Scotland as Scrotland.","","","","" +"513067681843793920","","","2014-09-19 20:50:42 +0000","Tweetbot for Mac","RT @chockenberry: Apple should put Xcode, iCloud, Portal & TestFlight developers in a room for a week to release an app. The risk is they'…","513056377401380864","36183","2014-09-19 20:05:47 +0000","" -"513050248307281921","","","2014-09-19 19:41:25 +0000","Tweetbot for Mac","Wow. “prices for the iPhone 6+ in Asia reaching $4,770, a premium of nearly $4.000 over the device’s list price” http://t.co/QJtQmHu5kn","","","","http://fortune.com/2014/09/19/walking-fifth-ave-s-iphone-6-line-1880-buyers-12-city-blocks/" -"513021857994649601","513018721858646016","15292261","2014-09-19 17:48:37 +0000","Tweetbot for Mac","@gregbate If you keep that up you’ll need to eat more 🐮","","","","" -"513003652383268864","","","2014-09-19 16:36:16 +0000","Tweetbot for Mac","Poll: Is the iPhone 6 Plus too big for you? http://t.co/GJHWEFOHO5","","","","http://tally.tl/3qXJ8" -"512983138931576832","","","2014-09-19 15:14:45 +0000","Twitterrific","RT @MashableHQ: The @Mashable app is a perfect first new download on your new #iPhone. Get it here: https://t.co/y7WeSFfltm https://t.co/NA…","512979480785457152","140569932","2014-09-19 15:00:13 +0000","https://itunes.apple.com/us/app/mashable/id910775754?mt=8,https://itunes.apple.com/us/app/mashable/id910775754?mt=8,https://vine.co/v/OWtnPVElj2Z" -"512978789543182337","512972127256190976","25703613","2014-09-19 14:57:28 +0000","Twitterrific","@Cocoanetics October. With Yosemite and any other Mac stuff that's ready.","","","","" -"512788176012734464","","","2014-09-19 02:20:03 +0000","Twitterrific","These guys are pros. https://t.co/lXcJrUjuXi","","","","https://www.ifixit.com/Teardown/iPhone+6+Plus+Teardown/29206" +"513050248307281921","","","2014-09-19 19:41:25 +0000","Tweetbot for Mac","Wow. “prices for the iPhone 6+ in Asia reaching $4,770, a premium of nearly $4.000 over the device’s list price” http://t.co/QJtQmHu5kn","","","","http://fortune.com/2014/09/19/walking-fifth-ave-s-iphone-6-line-1880-buyers-12-city-blocks/" +"513021857994649601","513018721858646016","15292261","2014-09-19 17:48:37 +0000","Tweetbot for Mac","@gregbate If you keep that up you’ll need to eat more 🐮","","","","" +"513003652383268864","","","2014-09-19 16:36:16 +0000","Tweetbot for Mac","Poll: Is the iPhone 6 Plus too big for you? http://t.co/GJHWEFOHO5","","","","http://tally.tl/3qXJ8" +"512983138931576832","","","2014-09-19 15:14:45 +0000","Twitterrific for iOS","RT @MashableHQ: The @Mashable app is a perfect first new download on your new #iPhone. Get it here: https://t.co/y7WeSFfltm https://t.co/NA…","512979480785457152","140569932","2014-09-19 15:00:13 +0000","https://itunes.apple.com/us/app/mashable/id910775754?mt=8,https://itunes.apple.com/us/app/mashable/id910775754?mt=8,https://vine.co/v/OWtnPVElj2Z" +"512978789543182337","512972127256190976","25703613","2014-09-19 14:57:28 +0000","Twitterrific for iOS","@Cocoanetics October. With Yosemite and any other Mac stuff that's ready.","","","","" +"512788176012734464","","","2014-09-19 02:20:03 +0000","Twitterrific for iOS","These guys are pros. https://t.co/lXcJrUjuXi","","","","https://www.ifixit.com/Teardown/iPhone+6+Plus+Teardown/29206" "512734251301629952","","","2014-09-18 22:45:46 +0000","iOS","Running iOS 8? Join me on Hatch! http://t.co/J07NvpqxnE #hatchingnow","","","","http://hatchingnow.com/app" -"512719572512694272","512711226183258112","15292261","2014-09-18 21:47:26 +0000","Tweetbot for Mac","@gregbate Looks good!","","","","" -"512718005168398336","512717854244737025","15292261","2014-09-18 21:41:12 +0000","Tweetbot for Mac","@gregbate iPhone 6 arrives tomorrow, and 6+ arrives sometime in the middle of October.","","","","" -"512717030860935169","","","2014-09-18 21:37:20 +0000","Tweetbot for Mac","802.11ac is up and running, ready for the new iPhone. http://t.co/okUCTJdboq","","","","https://twitter.com/_sjs/status/512717030860935169/photo/1" -"512681931511955456","","","2014-09-18 19:17:52 +0000","Tweetbot for Mac","Misery loves company. “@rafifyalda: Cannot un-see this folder corner radius bug in iOS 8. Just open a folder and watch the corners...”","","","","" -"512667303109214208","512666706896900096","2352438325","2014-09-18 18:19:44 +0000","Tweetbot for Mac","@RingPartnerK The hamster wheel desk is way better than a plain old hamster wheel. @ringpartner @ToddDunlop http://t.co/YIr7tue5lB","","","","https://twitter.com/_sjs/status/512667303109214208/photo/1" -"512667015710916611","512666595353559040","1007938482","2014-09-18 18:18:36 +0000","Tweetbot for Mac","@ringpartner @ToddDunlop @UpDesk He’ll find it anyway. Nature always finds a way.","","","","" -"512651287360704512","","","2014-09-18 17:16:06 +0000","Tweetbot for Mac","Are you using these at @ringpartner yet? @todddunlop “@UpDesk: Is this real life? #HamsterWheelStandingDesk http://t.co/XkH0LOBLgH”","","","","https://twitter.com/UpDesk/status/512251225039843331/photo/1" -"512650275082235904","","","2014-09-18 17:12:04 +0000","Tweetbot for Mac","I’m certainly not going to complain if true, but I don’t believe this ETA. http://t.co/JUhv2Cl2yK","","","","https://twitter.com/_sjs/status/512650275082235904/photo/1" -"512637350078189569","512635441422819328","108814849","2014-09-18 16:20:43 +0000","Twitterrific","@snarfmason I'm not sure. Seems like the app part could do all the syncing, but I don't know that.","","","","" -"512635465737199616","512631971420205057","15292261","2014-09-18 16:13:13 +0000","Twitterrific","@gregbate woot! Good job!","","","","" -"512635324196200448","512631411782987777","108814849","2014-09-18 16:12:40 +0000","Twitterrific","@snarfmason But I agree, it seems like they might not have even given us the option to make that decision in the past.","","","","" -"512635041823072256","512631411782987777","108814849","2014-09-18 16:11:32 +0000","Twitterrific","@snarfmason You have to enable the keyboard, then go into its settings screen and toggle Allow Full Access, which confirms with a warning.","","","","" -"512471663133597696","","","2014-09-18 05:22:20 +0000","Twitterrific","Just signed into @instapaper using @1Password on iOS 8 and I liked it a lot. I can get used to this.","","","","" -"512452760550514688","","","2014-09-18 04:07:13 +0000","Twitterrific","Can someone explain what the new email reply notifications in iOS 8 are for? How does that differ from a normal mail notification?","","","","" +"512719572512694272","512711226183258112","15292261","2014-09-18 21:47:26 +0000","Tweetbot for Mac","@gregbate Looks good!","","","","" +"512718005168398336","512717854244737025","15292261","2014-09-18 21:41:12 +0000","Tweetbot for Mac","@gregbate iPhone 6 arrives tomorrow, and 6+ arrives sometime in the middle of October.","","","","" +"512717030860935169","","","2014-09-18 21:37:20 +0000","Tweetbot for Mac","802.11ac is up and running, ready for the new iPhone. http://t.co/okUCTJdboq","","","","https://twitter.com/_sjs/status/512717030860935169/photo/1" +"512681931511955456","","","2014-09-18 19:17:52 +0000","Tweetbot for Mac","Misery loves company. “@rafifyalda: Cannot un-see this folder corner radius bug in iOS 8. Just open a folder and watch the corners...”","","","","" +"512667303109214208","512666706896900096","2352438325","2014-09-18 18:19:44 +0000","Tweetbot for Mac","@RingPartnerK The hamster wheel desk is way better than a plain old hamster wheel. @ringpartner @ToddDunlop http://t.co/YIr7tue5lB","","","","https://twitter.com/_sjs/status/512667303109214208/photo/1" +"512667015710916611","512666595353559040","1007938482","2014-09-18 18:18:36 +0000","Tweetbot for Mac","@ringpartner @ToddDunlop @UpDesk He’ll find it anyway. Nature always finds a way.","","","","" +"512651287360704512","","","2014-09-18 17:16:06 +0000","Tweetbot for Mac","Are you using these at @ringpartner yet? @todddunlop “@UpDesk: Is this real life? #HamsterWheelStandingDesk http://t.co/XkH0LOBLgH”","","","","https://twitter.com/UpDesk/status/512251225039843331/photo/1" +"512650275082235904","","","2014-09-18 17:12:04 +0000","Tweetbot for Mac","I’m certainly not going to complain if true, but I don’t believe this ETA. http://t.co/JUhv2Cl2yK","","","","https://twitter.com/_sjs/status/512650275082235904/photo/1" +"512637350078189569","512635441422819328","108814849","2014-09-18 16:20:43 +0000","Twitterrific for iOS","@snarfmason I'm not sure. Seems like the app part could do all the syncing, but I don't know that.","","","","" +"512635465737199616","512631971420205057","15292261","2014-09-18 16:13:13 +0000","Twitterrific for iOS","@gregbate woot! Good job!","","","","" +"512635324196200448","512631411782987777","108814849","2014-09-18 16:12:40 +0000","Twitterrific for iOS","@snarfmason But I agree, it seems like they might not have even given us the option to make that decision in the past.","","","","" +"512635041823072256","512631411782987777","108814849","2014-09-18 16:11:32 +0000","Twitterrific for iOS","@snarfmason You have to enable the keyboard, then go into its settings screen and toggle Allow Full Access, which confirms with a warning.","","","","" +"512471663133597696","","","2014-09-18 05:22:20 +0000","Twitterrific for iOS","Just signed into @instapaper using @1Password on iOS 8 and I liked it a lot. I can get used to this.","","","","" +"512452760550514688","","","2014-09-18 04:07:13 +0000","Twitterrific for iOS","Can someone explain what the new email reply notifications in iOS 8 are for? How does that differ from a normal mail notification?","","","","" "512431777831723008","","","2014-09-18 02:43:51 +0000","Tweetbot for iΟS","OH: ""iTunes! Noooooo!""","","","","" -"512398145566031872","512395942033514496","14581738","2014-09-18 00:30:12 +0000","Tweetbot for Mac","@tolmasky Yup.","","","","" -"512347449612984321","512345560439742464","13217612","2014-09-17 21:08:45 +0000","Tweetbot for Mac","@chuq I think that means I’m the last dummy who stayed up late for a phone and still doesn’t have a shipping notice. Maybe later today!","","","","" -"512292349524058113","","","2014-09-17 17:29:48 +0000","Tweetbot for Mac","RT @1Password: I’ve been bursting at the pixels to tell you, and now I can finally share the big news about iOS 8 and my destiny! http://t.…","512290771777908736","793926","2014-09-17 17:23:32 +0000","http://j.mp/1uHxLVD" -"512284725231517696","512268037467406336","67627018","2014-09-17 16:59:30 +0000","Tweetbot for Mac","@jandrewyang Read closely. The 6+ was at 16% after 2 days and the 6 was at 32% after 1 day. @DanFrakes @panzer","","","","" +"512398145566031872","512395942033514496","14581738","2014-09-18 00:30:12 +0000","Tweetbot for Mac","@tolmasky Yup.","","","","" +"512347449612984321","512345560439742464","13217612","2014-09-17 21:08:45 +0000","Tweetbot for Mac","@chuq I think that means I’m the last dummy who stayed up late for a phone and still doesn’t have a shipping notice. Maybe later today!","","","","" +"512292349524058113","","","2014-09-17 17:29:48 +0000","Tweetbot for Mac","RT @1Password: I’ve been bursting at the pixels to tell you, and now I can finally share the big news about iOS 8 and my destiny! http://t.…","512290771777908736","793926","2014-09-17 17:23:32 +0000","http://j.mp/1uHxLVD" +"512284725231517696","512268037467406336","67627018","2014-09-17 16:59:30 +0000","Tweetbot for Mac","@jandrewyang Read closely. The 6+ was at 16% after 2 days and the 6 was at 32% after 1 day. @DanFrakes @panzer","","","","" "512109890178138112","","","2014-09-17 05:24:47 +0000","iOS","iOS 8 Features: Hidden New Features http://t.co/YRWUEaOb6j","","","","http://www.macrumors.com/roundup/ios-8-features/" -"512102909858033664","","","2014-09-17 04:57:02 +0000","Twitterrific","RT @buckleup: Mashable’s ‘thumb zone’ graphic is the most useful thing. #iPhone6 http://t.co/aEEeKNYgA1","512066143767388160","14828972","2014-09-17 02:30:57 +0000","https://twitter.com/buckleup/status/512066143767388160/photo/1,https://twitter.com/buckleup/status/512066143767388160/photo/1" -"512100263902314496","","","2014-09-17 04:46:31 +0000","Twitterrific","Ok Apple I'm excited about the iPhone 6. You can ship mine now.","","","","" +"512102909858033664","","","2014-09-17 04:57:02 +0000","Twitterrific for iOS","RT @buckleup: Mashable’s ‘thumb zone’ graphic is the most useful thing. #iPhone6 http://t.co/aEEeKNYgA1","512066143767388160","14828972","2014-09-17 02:30:57 +0000","https://twitter.com/buckleup/status/512066143767388160/photo/1,https://twitter.com/buckleup/status/512066143767388160/photo/1" +"512100263902314496","","","2014-09-17 04:46:31 +0000","Twitterrific for iOS","Ok Apple I'm excited about the iPhone 6. You can ship mine now.","","","","" "512085808442912768","","","2014-09-17 03:49:05 +0000","Twitter for Websites","Apple iPhone 6: The Review http://t.co/SKNUDoLAH1 via @mashable","","","","http://mashable.com/2014/09/16/apple-iphone-6-review/#:eyJzIjoidCIsImkiOiJfdml5MTgwd2RsYnMxdGFtYXB6ZnBjcV8ifQ" -"511986144360153088","511985694668259328","53010195","2014-09-16 21:13:03 +0000","Tweetbot for Mac","@mraleph I can confirm this. When I was there I tried all the drugs, including stroopwafel.","","","","" +"511986144360153088","511985694668259328","53010195","2014-09-16 21:13:03 +0000","Tweetbot for Mac","@mraleph I can confirm this. When I was there I tried all the drugs, including stroopwafel.","","","","" "511917655641849856","","","2014-09-16 16:40:54 +0000","Tweetbot for iΟS","RT @ngauthier: Lumberjack level: Canadian. http://t.co/5136NkdN6c","511900906422808576","15243796","2014-09-16 15:34:21 +0000","http://i.imgur.com/slYXqZL.gif?1,http://i.imgur.com/slYXqZL.gif?1" "511697333793599488","511696643344048128","69030513","2014-09-16 02:05:25 +0000","Tweetbot for iΟS","@TBrass84 Oct 10 - 21, up from Oct 16 - 23. Going to Victoria BC.","","","","" -"511672384731226112","","","2014-09-16 00:26:17 +0000","Tweetbot for Mac","My iPhone 6 Plus won’t ship any sooner, but Apple did upgrade it to expedited shipping at no extra charge. I’ll take it!","","","","" -"511593952890609664","","","2014-09-15 19:14:38 +0000","Tweetbot for Mac","RT @ecetweets: Oh look @robynpeterson is a writer now: http://t.co/JvEirEXvdr","511593417508683776","22961921","2014-09-15 19:12:30 +0000","http://mashable.com/2014/09/15/mashable-new-iphone-app/,http://mashable.com/2014/09/15/mashable-new-iphone-app/" -"511553761555546113","511553536153624578","108814849","2014-09-15 16:34:55 +0000","Twitterrific","@snarfmason Acceptable risk.","","","","" -"511553533712535553","511552957188677632","108814849","2014-09-15 16:34:01 +0000","Twitterrific","@snarfmason @srbaker You're just upset because you don't have any hair.","","","","" -"511545500844453888","511420485146804224","894911","2014-09-15 16:02:06 +0000","Twitterrific","@JimRoepcke Wow, what a jerk! Humans are the worst.","","","","" -"511543146837471232","","","2014-09-15 15:52:44 +0000","Twitterrific","RT @asymco: Launch performance for iPhones and iPads and some Galaxy smartphones. http://t.co/QjVCevnbHC","511537389312159744","110520327","2014-09-15 15:29:52 +0000","https://twitter.com/asymco/status/511537389312159744/photo/1,https://twitter.com/asymco/status/511537389312159744/photo/1" -"511379655820333056","","","2014-09-15 05:03:05 +0000","Tweetbot for Mac","I love this, and would use it all the time → Chinese city creates cell phone lane http://t.co/Vw9qHw417z","","","","http://on.mash.to/Xln2UF" +"511672384731226112","","","2014-09-16 00:26:17 +0000","Tweetbot for Mac","My iPhone 6 Plus won’t ship any sooner, but Apple did upgrade it to expedited shipping at no extra charge. I’ll take it!","","","","" +"511593952890609664","","","2014-09-15 19:14:38 +0000","Tweetbot for Mac","RT @ecetweets: Oh look @robynpeterson is a writer now: http://t.co/JvEirEXvdr","511593417508683776","22961921","2014-09-15 19:12:30 +0000","http://mashable.com/2014/09/15/mashable-new-iphone-app/,http://mashable.com/2014/09/15/mashable-new-iphone-app/" +"511553761555546113","511553536153624578","108814849","2014-09-15 16:34:55 +0000","Twitterrific for iOS","@snarfmason Acceptable risk.","","","","" +"511553533712535553","511552957188677632","108814849","2014-09-15 16:34:01 +0000","Twitterrific for iOS","@snarfmason @srbaker You're just upset because you don't have any hair.","","","","" +"511545500844453888","511420485146804224","894911","2014-09-15 16:02:06 +0000","Twitterrific for iOS","@JimRoepcke Wow, what a jerk! Humans are the worst.","","","","" +"511543146837471232","","","2014-09-15 15:52:44 +0000","Twitterrific for iOS","RT @asymco: Launch performance for iPhones and iPads and some Galaxy smartphones. http://t.co/QjVCevnbHC","511537389312159744","110520327","2014-09-15 15:29:52 +0000","https://twitter.com/asymco/status/511537389312159744/photo/1,https://twitter.com/asymco/status/511537389312159744/photo/1" +"511379655820333056","","","2014-09-15 05:03:05 +0000","Tweetbot for Mac","I love this, and would use it all the time → Chinese city creates cell phone lane http://t.co/Vw9qHw417z","","","","http://on.mash.to/Xln2UF" "511332043402510336","","","2014-09-15 01:53:53 +0000","Tweetbot for iΟS","Really enjoying Prospector's Peril by @BarkervilleBrewing. Delicious on a hot summer day! http://t.co/7Lzna1fIxK","","","","https://twitter.com/_sjs/status/511332043402510336/photo/1" -"511302079085023232","","14106454","2014-09-14 23:54:49 +0000","Twitterrific","@srbaker Forget the selfie stick, I'm getting a selfie brush. Now all I gotta do is learn how to make a duck face. http://t.co/5NhAiiO1d6","","","","http://www.amazon.com/gp/product/B00MVAEGN4/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00MVAEGN4&linkCode=as2&tag=natdee-20&linkId=L3O5CS5TVHE6HYPX" -"511228218230456320","","","2014-09-14 19:01:20 +0000","Tweetbot for Mac","The more I think about a watch the more I like it. 2-factor authentication on my watch would be great. Don’t like pulling out my phone.","","","","" +"511302079085023232","","14106454","2014-09-14 23:54:49 +0000","Twitterrific for iOS","@srbaker Forget the selfie stick, I'm getting a selfie brush. Now all I gotta do is learn how to make a duck face. http://t.co/5NhAiiO1d6","","","","http://www.amazon.com/gp/product/B00MVAEGN4/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00MVAEGN4&linkCode=as2&tag=natdee-20&linkId=L3O5CS5TVHE6HYPX" +"511228218230456320","","","2014-09-14 19:01:20 +0000","Tweetbot for Mac","The more I think about a watch the more I like it. 2-factor authentication on my watch would be great. Don’t like pulling out my phone.","","","","" "510912286404657152","","","2014-09-13 22:05:56 +0000","Tweetbot for iΟS","Blue heron at Swan Lake. http://t.co/q9EkLidW85","","","","http://instagram.com/p/s5tD24Leg8/" "510590954479579136","","","2014-09-13 00:49:04 +0000","Tweetbot for iΟS","Yeah yeah First World Problem, whatever. I'm really sick of setting up Touch ID.","","","","" "510523772563374080","","","2014-09-12 20:22:07 +0000","Tweetbot for iΟS","I'm going to feel like a fucking moron using my WATCH—paired to my iPhone—as a remote control for my TV.","","","","" -"510500912302137344","","","2014-09-12 18:51:16 +0000","Tweetbot for Mac","http://t.co/Wbphz7EjFC","","","","https://twitter.com/_sjs/status/510500912302137344/photo/1" +"510500912302137344","","","2014-09-12 18:51:16 +0000","Tweetbot for Mac","http://t.co/Wbphz7EjFC","","","","https://twitter.com/_sjs/status/510500912302137344/photo/1" "510467819059036161","510467475738488832","108814849","2014-09-12 16:39:46 +0000","Twitter Web Client","@snarfmason There are a lot of tech writers who think that 4.3"" to 4.7"" is the perfect size for a phone right now. You're not alone.","","","","" "510466561103396864","510466074534756352","108814849","2014-09-12 16:34:46 +0000","Twitter Web Client","@snarfmason I gotta say though, people were all over the 6+. It seems popular. And in short supply. 6+ is the new gold iPhone.","","","","" "510466450411503616","510466074534756352","108814849","2014-09-12 16:34:20 +0000","Twitter Web Client","@snarfmason Shockingly, Apple couldn't make the store work this year once again and I missed the boat and got an iPhone 6. Incompetence ftw.","","","","" -"510330209904906240","510330045491994624","13217612","2014-09-12 07:32:58 +0000","Tweetbot for Mac","@chuq I’m getting impatient though. DOOMED","","","","" -"510329873932771328","510329714817249280","13217612","2014-09-12 07:31:38 +0000","Tweetbot for Mac","@chuq They aren’t available yet. If they were I think the shipping time would just increase.","","","","" -"510325666861293568","","","2014-09-12 07:14:55 +0000","Tweetbot for Mac","Well now it’s just rude. Let’s go.","","","","" +"510330209904906240","510330045491994624","13217612","2014-09-12 07:32:58 +0000","Tweetbot for Mac","@chuq I’m getting impatient though. DOOMED","","","","" +"510329873932771328","510329714817249280","13217612","2014-09-12 07:31:38 +0000","Tweetbot for Mac","@chuq They aren’t available yet. If they were I think the shipping time would just increase.","","","","" +"510325666861293568","","","2014-09-12 07:14:55 +0000","Tweetbot for Mac","Well now it’s just rude. Let’s go.","","","","" "510317815187140608","","","2014-09-12 06:43:43 +0000","Tweetbot for iΟS","According to Letterpress ""fugliest"" is a word. Nice. http://t.co/nbwoKoNOU2","","","","https://twitter.com/_sjs/status/510317815187140608/photo/1" "510317470415343616","510317134346743808","337167459","2014-09-12 06:42:20 +0000","Tweetbot for iΟS","@bthdonohue Pretty much!","","","","" -"510316230918799360","510315888302915584","337167459","2014-09-12 06:37:25 +0000","Twitterrific","@bthdonohue Nice! I talked myself into trying the 6+ at the last minute. It's more interesting.","","","","" +"510316230918799360","510315888302915584","337167459","2014-09-12 06:37:25 +0000","Twitterrific for iOS","@bthdonohue Nice! I talked myself into trying the 6+ at the last minute. It's more interesting.","","","","" "510299018971586560","510298864000450560","894911","2014-09-12 05:29:01 +0000","Tweetbot for iΟS","@JimRoepcke Apple accepts returns for 15 days after sale or receipt of product (unclear).","","","","" "510298755091161088","510298312025849856","894911","2014-09-12 05:27:58 +0000","Tweetbot for iΟS","@JimRoepcke If I don't like it I'll exchange it or sell it and get the 6.","","","","" -"510292841198026752","510264601054040064","337167459","2014-09-12 05:04:28 +0000","Twitterrific","@bthdonohue Yup! Trying to make a final decision. What are you getting?","","","","" -"510292640903200768","","","2014-09-12 05:03:41 +0000","Twitterrific","I feel a last minute urge to do something crazy, guys. The iPhone 6 Plus is intriguing. It has more new stuff.","","","","" -"510289788331909120","","","2014-09-12 04:52:20 +0000","Twitterrific","Well it's about that time. MT @IsTheStoreDown: The Apple Store is down! http://t.co/ANu5FzgwCL","","","","http://istheapplestoredown.com/alarm" -"510148292114919424","510137938886549504","3374231","2014-09-11 19:30:05 +0000","Tweetbot for Mac","@mxcl Isn’t there a setting? zsh has a setting to constantly read and write the history file. Bash must have that by now.","","","","" -"510132077132804096","","","2014-09-11 18:25:39 +0000","Tweetbot for Mac","The new Mashable iPhone app is out and we got featured on the @AppStore. woot! https://t.co/H8GIbwKuSX","","","","https://itunes.apple.com/ca/app/mashable/id910775754?mt=8" -"510123675820244992","510103375958921216","15292261","2014-09-11 17:52:16 +0000","Tweetbot for Mac","@gregbate Those wily racoons! http://t.co/4lsdkWT9Y4","","","","https://twitter.com/_sjs/status/510123675820244992/photo/1" -"510122992173846528","","","2014-09-11 17:49:33 +0000","Tweetbot for Mac","RT @passy: Vim from 1993 where you'd have a 486 with 1MB of RAM vs Atom from today opening a 104MB text file: http://t.co/unVOWlNd7p","509711664543838209","14383077","2014-09-10 14:35:05 +0000","https://twitter.com/passy/status/509711664543838209/photo/1,https://twitter.com/passy/status/509711664543838209/photo/1,https://twitter.com/passy/status/509711664543838209/photo/1,https://twitter.com/passy/status/509711664543838209/photo/1" -"509804938223169536","","","2014-09-10 20:45:43 +0000","Tweetbot for Mac","“Earlier this year, we predicted that Apple would only make one iPhone 6 and throw it into the ocean” http://t.co/JPbKPcYjxr","","","","http://www.clickhole.com/article/6-predictions-about-iphone-6-were-way-966" -"509763342358298625","509763117258407936","108814849","2014-09-10 18:00:26 +0000","Tweetbot for Mac","@snarfmason I feel like it used to start at $679 or so, but don’t remember for sure.","","","","" -"509757233614561280","509725312180301824","108814849","2014-09-10 17:36:09 +0000","Tweetbot for Mac","@snarfmason Stupid exchange rates.","","","","" -"509757206074765312","509725312180301824","108814849","2014-09-10 17:36:03 +0000","Tweetbot for Mac","@snarfmason And iPhones start at $749 this year. I swear it wasn’t a full $100 more than the USD price before. This always happens, though.","","","","" -"509558416067821568","","","2014-09-10 04:26:08 +0000","Tweetbot for Mac","Do people really love the look of the iPhone 6? Those plastic lines for antennas are ugly. I strongly prefer the iPhone 4 and 5s aesthetics.","","","","" -"509449696327106561","509442468106862594","894911","2014-09-09 21:14:07 +0000","Tweetbot for Mac","@JimRoepcke It is a hands-on area for the press. https://t.co/mXnTDASovG","","","","https://twitter.com/ejacqui/status/509415415781806080" -"509413433344028672","509413085397151745","14538248","2014-09-09 18:50:01 +0000","Tweetbot for Mac","@robynpeterson Yaaaawn","","","","" -"509387064673333248","","","2014-09-09 17:05:14 +0000","Tweetbot for Mac","RT @TVTruckSchedule: what's happening guys?","509386452598546432","2800239056","2014-09-09 17:02:48 +0000","" -"509356890430902272","509169846698119168","11973362","2014-09-09 15:05:20 +0000","Twitterrific","@typeoneerror Buon viaggio!","","","","" -"509005436054671360","","","2014-09-08 15:48:47 +0000","Twitterrific","RT @jspahrsummers: http://t.co/Re5URbDlpe is a fascinating list of things that GHC’s optimizer does, including some passes that depend upon…","508998600186011649","166028855","2014-09-08 15:21:37 +0000","http://stackoverflow.com/a/12657991/515514,http://stackoverflow.com/a/12657991/515514" +"510292841198026752","510264601054040064","337167459","2014-09-12 05:04:28 +0000","Twitterrific for iOS","@bthdonohue Yup! Trying to make a final decision. What are you getting?","","","","" +"510292640903200768","","","2014-09-12 05:03:41 +0000","Twitterrific for iOS","I feel a last minute urge to do something crazy, guys. The iPhone 6 Plus is intriguing. It has more new stuff.","","","","" +"510289788331909120","","","2014-09-12 04:52:20 +0000","Twitterrific for iOS","Well it's about that time. MT @IsTheStoreDown: The Apple Store is down! http://t.co/ANu5FzgwCL","","","","http://istheapplestoredown.com/alarm" +"510148292114919424","510137938886549504","3374231","2014-09-11 19:30:05 +0000","Tweetbot for Mac","@mxcl Isn’t there a setting? zsh has a setting to constantly read and write the history file. Bash must have that by now.","","","","" +"510132077132804096","","","2014-09-11 18:25:39 +0000","Tweetbot for Mac","The new Mashable iPhone app is out and we got featured on the @AppStore. woot! https://t.co/H8GIbwKuSX","","","","https://itunes.apple.com/ca/app/mashable/id910775754?mt=8" +"510123675820244992","510103375958921216","15292261","2014-09-11 17:52:16 +0000","Tweetbot for Mac","@gregbate Those wily racoons! http://t.co/4lsdkWT9Y4","","","","https://twitter.com/_sjs/status/510123675820244992/photo/1" +"510122992173846528","","","2014-09-11 17:49:33 +0000","Tweetbot for Mac","RT @passy: Vim from 1993 where you'd have a 486 with 1MB of RAM vs Atom from today opening a 104MB text file: http://t.co/unVOWlNd7p","509711664543838209","14383077","2014-09-10 14:35:05 +0000","https://twitter.com/passy/status/509711664543838209/photo/1,https://twitter.com/passy/status/509711664543838209/photo/1,https://twitter.com/passy/status/509711664543838209/photo/1,https://twitter.com/passy/status/509711664543838209/photo/1" +"509804938223169536","","","2014-09-10 20:45:43 +0000","Tweetbot for Mac","“Earlier this year, we predicted that Apple would only make one iPhone 6 and throw it into the ocean” http://t.co/JPbKPcYjxr","","","","http://www.clickhole.com/article/6-predictions-about-iphone-6-were-way-966" +"509763342358298625","509763117258407936","108814849","2014-09-10 18:00:26 +0000","Tweetbot for Mac","@snarfmason I feel like it used to start at $679 or so, but don’t remember for sure.","","","","" +"509757233614561280","509725312180301824","108814849","2014-09-10 17:36:09 +0000","Tweetbot for Mac","@snarfmason Stupid exchange rates.","","","","" +"509757206074765312","509725312180301824","108814849","2014-09-10 17:36:03 +0000","Tweetbot for Mac","@snarfmason And iPhones start at $749 this year. I swear it wasn’t a full $100 more than the USD price before. This always happens, though.","","","","" +"509558416067821568","","","2014-09-10 04:26:08 +0000","Tweetbot for Mac","Do people really love the look of the iPhone 6? Those plastic lines for antennas are ugly. I strongly prefer the iPhone 4 and 5s aesthetics.","","","","" +"509449696327106561","509442468106862594","894911","2014-09-09 21:14:07 +0000","Tweetbot for Mac","@JimRoepcke It is a hands-on area for the press. https://t.co/mXnTDASovG","","","","https://twitter.com/ejacqui/status/509415415781806080" +"509413433344028672","509413085397151745","14538248","2014-09-09 18:50:01 +0000","Tweetbot for Mac","@robynpeterson Yaaaawn","","","","" +"509387064673333248","","","2014-09-09 17:05:14 +0000","Tweetbot for Mac","RT @TVTruckSchedule: what's happening guys?","509386452598546432","2800239056","2014-09-09 17:02:48 +0000","" +"509356890430902272","509169846698119168","11973362","2014-09-09 15:05:20 +0000","Twitterrific for iOS","@typeoneerror Buon viaggio!","","","","" +"509005436054671360","","","2014-09-08 15:48:47 +0000","Twitterrific for iOS","RT @jspahrsummers: http://t.co/Re5URbDlpe is a fascinating list of things that GHC’s optimizer does, including some passes that depend upon…","508998600186011649","166028855","2014-09-08 15:21:37 +0000","http://stackoverflow.com/a/12657991/515514,http://stackoverflow.com/a/12657991/515514" "508667722839113728","508667209145937920","894911","2014-09-07 17:26:50 +0000","Twitter Web Client","@JimRoepcke Yeah, there are a lot of factors. It could be some weird combination of things too.","","","","" -"508666971580559360","","","2014-09-07 17:23:51 +0000","Tweetbot for Mac","iOS should be scheduling network access based on total power used per hour. If you have a weak signal it should update less frequently.","","","","" -"508666418708353024","508663859700178944","894911","2014-09-07 17:21:39 +0000","Tweetbot for Mac","@JimRoepcke They need to fix whatever bug is causing that. You shouldn’t have to turn it off at all.","","","","" -"508630105095426048","","","2014-09-07 14:57:21 +0000","Twitterrific","Scientists made a telepathic version of the Yo app. http://t.co/OmljZFBMNT","","","","http://www.bbc.com/news/science-environment-29093700" +"508666971580559360","","","2014-09-07 17:23:51 +0000","Tweetbot for Mac","iOS should be scheduling network access based on total power used per hour. If you have a weak signal it should update less frequently.","","","","" +"508666418708353024","508663859700178944","894911","2014-09-07 17:21:39 +0000","Tweetbot for Mac","@JimRoepcke They need to fix whatever bug is causing that. You shouldn’t have to turn it off at all.","","","","" +"508630105095426048","","","2014-09-07 14:57:21 +0000","Twitterrific for iOS","Scientists made a telepathic version of the Yo app. http://t.co/OmljZFBMNT","","","","http://www.bbc.com/news/science-environment-29093700" "508387392102096896","508331279054815234","6396722","2014-09-06 22:52:54 +0000","Tweetbot for iΟS","@dilan Payments aren't a big problem for most people. Not convinced that's it.","","","","" -"507952462050123776","","","2014-09-05 18:04:38 +0000","Tweetbot for Mac","$2,500 is too rich for my blood, but damn… +"507952462050123776","","","2014-09-05 18:04:38 +0000","Tweetbot for Mac","$2,500 is too rich for my blood, but damn… “@anandtech: Dell Previews 27-inch ‘5K’ UltraSharp Monitor: 5120x2880 http://t.co/9uDGljuWyD”","","","","http://bit.ly/1rD7s2C" -"507946126637826048","","15292261","2014-09-05 17:39:28 +0000","Tweetbot for Mac","@gregbate, @Sarah_SLP, @snarfmason, and @lucaboq looking good in photo #9 on http://t.co/ro3EXOZNqF 🍺","","","","http://www.gcbf.com" -"507613193913368577","","","2014-09-04 19:36:31 +0000","Tweetbot for Mac","Lost Lessons from 8-bit BASIC http://t.co/fG44AHxvTk #prog21 (by @dadgumjames)","","","","http://prog21.dadgum.com/198.html" -"507566473041412096","507540989016547328","25703613","2014-09-04 16:30:51 +0000","Twitterrific","@Cocoanetics I have the same problem in Mail and Safari. Workaround is to open it in iBooks or something else.","","","","" +"507946126637826048","","15292261","2014-09-05 17:39:28 +0000","Tweetbot for Mac","@gregbate, @Sarah_SLP, @snarfmason, and @lucaboq looking good in photo #9 on http://t.co/ro3EXOZNqF 🍺","","","","http://www.gcbf.com" +"507613193913368577","","","2014-09-04 19:36:31 +0000","Tweetbot for Mac","Lost Lessons from 8-bit BASIC http://t.co/fG44AHxvTk #prog21 (by @dadgumjames)","","","","http://prog21.dadgum.com/198.html" +"507566473041412096","507540989016547328","25703613","2014-09-04 16:30:51 +0000","Twitterrific for iOS","@Cocoanetics I have the same problem in Mail and Safari. Workaround is to open it in iBooks or something else.","","","","" "507309932535091200","507301454760001537","22196723","2014-09-03 23:31:27 +0000","Tweetbot for iΟS","@markkolich Depending on what you need this grid might get you 80-90% of the way there. http://t.co/ABq2YHSYcE","","","","http://www.adamkaplan.me/grid/" -"506926330358018048","","","2014-09-02 22:07:10 +0000","Tweetbot for Mac","Thunder and lightning in Victoria! Unheard of. This is awesome to watch from inside. #yyj","","","","" -"506839663416705024","","","2014-09-02 16:22:47 +0000","Tweetbot for Mac","RT @randewich: With master tech tester @anandshimpi moving on, here's my profile on him from 2012 http://t.co/aSE7jLM8uy","506830755515744256","102749784","2014-09-02 15:47:23 +0000","http://www.reuters.com/article/2012/07/27/us-usa-chips-anandtech-idUSBRE86Q05120120727,http://www.reuters.com/article/2012/07/27/us-usa-chips-anandtech-idUSBRE86Q05120120727" -"506826159737565186","506819825386405888","14864447","2014-09-02 15:29:07 +0000","Twitterrific","@bryan_kyle How is that even possible? Spinning disk?","","","","" -"506207219936137216","","","2014-08-31 22:29:40 +0000","Twitterrific","RT @siracusa: The kid's got fashion sense after all! http://t.co/jnUKRt6YUz","506200588108193792","636923","2014-08-31 22:03:19 +0000","http://recode.net/2014/08/31/veteran-tech-journalist-anand-shimpi-headed-to-apple/,http://recode.net/2014/08/31/veteran-tech-journalist-anand-shimpi-headed-to-apple/" -"506207179754733569","","","2014-08-31 22:29:31 +0000","Twitterrific","RT @harpaa01: @siracusa hopefully he can convince Apple to make sure the iPhone 6 has 2 GB of memory.","506201480877973504","4525221","2014-08-31 22:06:52 +0000","" -"506186350077677568","506180979871219712","108814849","2014-08-31 21:06:45 +0000","Tweetbot for Mac","@snarfmason awesome","","","","" -"506186313968943105","","","2014-08-31 21:06:36 +0000","Tweetbot for Mac","RT @snarfmason: @_sjs fun fact: backupping would be a gerund, which is a verb form often used as a noun. So you could re-noun the noun you …","506180979871219712","108814849","2014-08-31 20:45:24 +0000","" -"506124902760714240","","","2014-08-31 17:02:34 +0000","Tweetbot for Mac","I’ll get on board with using “backup” as a verb, but the past tense has to be “backupped” and the present tense has to be “backupping”.","","","","" +"506926330358018048","","","2014-09-02 22:07:10 +0000","Tweetbot for Mac","Thunder and lightning in Victoria! Unheard of. This is awesome to watch from inside. #yyj","","","","" +"506839663416705024","","","2014-09-02 16:22:47 +0000","Tweetbot for Mac","RT @randewich: With master tech tester @anandshimpi moving on, here's my profile on him from 2012 http://t.co/aSE7jLM8uy","506830755515744256","102749784","2014-09-02 15:47:23 +0000","http://www.reuters.com/article/2012/07/27/us-usa-chips-anandtech-idUSBRE86Q05120120727,http://www.reuters.com/article/2012/07/27/us-usa-chips-anandtech-idUSBRE86Q05120120727" +"506826159737565186","506819825386405888","14864447","2014-09-02 15:29:07 +0000","Twitterrific for iOS","@bryan_kyle How is that even possible? Spinning disk?","","","","" +"506207219936137216","","","2014-08-31 22:29:40 +0000","Twitterrific for iOS","RT @siracusa: The kid's got fashion sense after all! http://t.co/jnUKRt6YUz","506200588108193792","636923","2014-08-31 22:03:19 +0000","http://recode.net/2014/08/31/veteran-tech-journalist-anand-shimpi-headed-to-apple/,http://recode.net/2014/08/31/veteran-tech-journalist-anand-shimpi-headed-to-apple/" +"506207179754733569","","","2014-08-31 22:29:31 +0000","Twitterrific for iOS","RT @harpaa01: @siracusa hopefully he can convince Apple to make sure the iPhone 6 has 2 GB of memory.","506201480877973504","4525221","2014-08-31 22:06:52 +0000","" +"506186350077677568","506180979871219712","108814849","2014-08-31 21:06:45 +0000","Tweetbot for Mac","@snarfmason awesome","","","","" +"506186313968943105","","","2014-08-31 21:06:36 +0000","Tweetbot for Mac","RT @snarfmason: @_sjs fun fact: backupping would be a gerund, which is a verb form often used as a noun. So you could re-noun the noun you …","506180979871219712","108814849","2014-08-31 20:45:24 +0000","" +"506124902760714240","","","2014-08-31 17:02:34 +0000","Tweetbot for Mac","I’ll get on board with using “backup” as a verb, but the past tense has to be “backupped” and the present tense has to be “backupping”.","","","","" "505918334467342336","505911294852358144","14308739","2014-08-31 03:21:45 +0000","Tweetbot for iΟS","@gisikw I'll sign.","","","","" -"505908070489530368","505865562074152960","14659839","2014-08-31 02:40:57 +0000","Tweetbot for Mac","@chrisphillips25 looking good","","","","" -"505907389078716416","","","2014-08-31 02:38:15 +0000","Tweetbot for Mac","RT @joeerl: life is too short to learn/fix/debug grunt - WTF is wrong with Make ?","505802969510842368","51546468","2014-08-30 19:43:19 +0000","" -"505907335890751489","","","2014-08-31 02:38:02 +0000","Tweetbot for Mac","RT @joeerl: uninstalled grunt","505800705626865664","51546468","2014-08-30 19:34:20 +0000","" -"505906496950239232","","","2014-08-31 02:34:42 +0000","Tweetbot for Mac","So long and thanks for all the writing, @anandshimpi! Best wishes. “@anandtech: Meet the New Boss http://t.co/UFlG1Xxkmj”","","","","http://bit.ly/1qQLp4k" +"505908070489530368","505865562074152960","14659839","2014-08-31 02:40:57 +0000","Tweetbot for Mac","@chrisphillips25 looking good","","","","" +"505907389078716416","","","2014-08-31 02:38:15 +0000","Tweetbot for Mac","RT @joeerl: life is too short to learn/fix/debug grunt - WTF is wrong with Make ?","505802969510842368","51546468","2014-08-30 19:43:19 +0000","" +"505907335890751489","","","2014-08-31 02:38:02 +0000","Tweetbot for Mac","RT @joeerl: uninstalled grunt","505800705626865664","51546468","2014-08-30 19:34:20 +0000","" +"505906496950239232","","","2014-08-31 02:34:42 +0000","Tweetbot for Mac","So long and thanks for all the writing, @anandshimpi! Best wishes. “@anandtech: Meet the New Boss http://t.co/UFlG1Xxkmj”","","","","http://bit.ly/1qQLp4k" "505791263799787521","","","2014-08-30 18:56:49 +0000","Tweetbot for iΟS","First time applying a vinyl decal like this. It turned out better than expected! http://t.co/sMysoTmlaZ","","","","https://twitter.com/_sjs/status/505791263799787521/photo/1" "505757793912360960","","","2014-08-30 16:43:49 +0000","Tweetbot for iΟS","I'm training up for Beerfest next weekend. Sausages and beer for breakfast. After coffee. I'm not an animal. 🍺 http://t.co/mjSJdBbz9H","","","","https://twitter.com/_sjs/status/505757793912360960/photo/1" -"505416114726502401","","","2014-08-29 18:06:06 +0000","Tweetbot for Mac","I’m ☕️🍸🍻 on @Emojli. It’s underwhelming. But I’m friends with 🍸 now, so that’s … something.","","","","" -"505407930012012545","505401301942149120","14106454","2014-08-29 17:33:35 +0000","Tweetbot for Mac","@srbaker On a Mac you hit ⌘⌃Space and on iOS you add the Emoji keyboard in keyboard settings. No clue about Windows or Android.","","","","" -"505384782021529600","","","2014-08-29 16:01:36 +0000","Tweetbot for Mac","RT @jamesthomson: Interesting… UIImage on iOS 8b5 will load a @3x image in preference to an @2x one, even on a @2x device. Not so on iOS 7.…","505371301272645632","14169916","2014-08-29 15:08:02 +0000","" -"505384448310128640","505371434190139392","3374231","2014-08-29 16:00:16 +0000","Tweetbot for Mac","@mxcl And the dark menu bar is terrible with all those old, black app icons up there.","","","","" -"505162711060475904","","","2014-08-29 01:19:10 +0000","Tweetbot for Mac","Sometimes I wonder if my Dvorak typos look strange to people who don’t type in Dvorak.","","","","" -"504779261396647936","","","2014-08-27 23:55:28 +0000","Twitterrific","I can't wait for iOS 8. RT @bthdonohue: Just integrated @1Password into @instapaper for iOS8, 27 lines of code for password magic.","","","","" -"504769891258601472","","","2014-08-27 23:18:14 +0000","Tweetbot for Mac","I average about 18 “fuck”s per year in my shell. http://t.co/Y86YR7pIMw","","","","https://twitter.com/_sjs/status/504769891258601472/photo/1" -"504680946973835264","","","2014-08-27 17:24:48 +0000","Tweetbot for Mac","I like her style. http://t.co/YZGr9yr8Bc","","","","http://3eanuts.com/post/95916805574" -"504664183506743297","","","2014-08-27 16:18:12 +0000","Twitterrific","RT @discourse: Introducing Discourse 1.0! http://t.co/IQf7eWCPnx","504354595733504000","1187955571","2014-08-26 19:48:00 +0000","http://blog.discourse.org/2014/08/introducing-discourse-1-0/,http://blog.discourse.org/2014/08/introducing-discourse-1-0/" -"504410698295050241","","","2014-08-26 23:30:56 +0000","Tweetbot for Mac","Zapfino pairs very nicely with Perligata. http://t.co/6Ama96kZcD","","","","http://www.csse.monash.edu.au/~damian/papers/HTML/Perligata.html" -"504410499669561344","","","2014-08-26 23:30:09 +0000","Tweetbot for Mac","Screw Consolas. I do all my development in Zapfino. http://t.co/kpr3uszxb4","","","","https://twitter.com/_sjs/status/504410499669561344/photo/1" -"504296637976825857","","","2014-08-26 15:57:42 +0000","Twitterrific","RT @thesweetsetup: The best VPN solution for iOS and OS X http://t.co/M9XktcPqpb","504285158506528768","63362222","2014-08-26 15:12:05 +0000","http://thesweetsetup.com/apps/best-vpn-solution-ios-os-x/,http://thesweetsetup.com/apps/best-vpn-solution-ios-os-x/" +"505416114726502401","","","2014-08-29 18:06:06 +0000","Tweetbot for Mac","I’m ☕️🍸🍻 on @Emojli. It’s underwhelming. But I’m friends with 🍸 now, so that’s … something.","","","","" +"505407930012012545","505401301942149120","14106454","2014-08-29 17:33:35 +0000","Tweetbot for Mac","@srbaker On a Mac you hit ⌘⌃Space and on iOS you add the Emoji keyboard in keyboard settings. No clue about Windows or Android.","","","","" +"505384782021529600","","","2014-08-29 16:01:36 +0000","Tweetbot for Mac","RT @jamesthomson: Interesting… UIImage on iOS 8b5 will load a @3x image in preference to an @2x one, even on a @2x device. Not so on iOS 7.…","505371301272645632","14169916","2014-08-29 15:08:02 +0000","" +"505384448310128640","505371434190139392","3374231","2014-08-29 16:00:16 +0000","Tweetbot for Mac","@mxcl And the dark menu bar is terrible with all those old, black app icons up there.","","","","" +"505162711060475904","","","2014-08-29 01:19:10 +0000","Tweetbot for Mac","Sometimes I wonder if my Dvorak typos look strange to people who don’t type in Dvorak.","","","","" +"504779261396647936","","","2014-08-27 23:55:28 +0000","Twitterrific for iOS","I can't wait for iOS 8. RT @bthdonohue: Just integrated @1Password into @instapaper for iOS8, 27 lines of code for password magic.","","","","" +"504769891258601472","","","2014-08-27 23:18:14 +0000","Tweetbot for Mac","I average about 18 “fuck”s per year in my shell. http://t.co/Y86YR7pIMw","","","","https://twitter.com/_sjs/status/504769891258601472/photo/1" +"504680946973835264","","","2014-08-27 17:24:48 +0000","Tweetbot for Mac","I like her style. http://t.co/YZGr9yr8Bc","","","","http://3eanuts.com/post/95916805574" +"504664183506743297","","","2014-08-27 16:18:12 +0000","Twitterrific for iOS","RT @discourse: Introducing Discourse 1.0! http://t.co/IQf7eWCPnx","504354595733504000","1187955571","2014-08-26 19:48:00 +0000","http://blog.discourse.org/2014/08/introducing-discourse-1-0/,http://blog.discourse.org/2014/08/introducing-discourse-1-0/" +"504410698295050241","","","2014-08-26 23:30:56 +0000","Tweetbot for Mac","Zapfino pairs very nicely with Perligata. http://t.co/6Ama96kZcD","","","","http://www.csse.monash.edu.au/~damian/papers/HTML/Perligata.html" +"504410499669561344","","","2014-08-26 23:30:09 +0000","Tweetbot for Mac","Screw Consolas. I do all my development in Zapfino. http://t.co/kpr3uszxb4","","","","https://twitter.com/_sjs/status/504410499669561344/photo/1" +"504296637976825857","","","2014-08-26 15:57:42 +0000","Twitterrific for iOS","RT @thesweetsetup: The best VPN solution for iOS and OS X http://t.co/M9XktcPqpb","504285158506528768","63362222","2014-08-26 15:12:05 +0000","http://thesweetsetup.com/apps/best-vpn-solution-ios-os-x/,http://thesweetsetup.com/apps/best-vpn-solution-ios-os-x/" "504088818337972225","504085899026890754","14106454","2014-08-26 02:11:54 +0000","Tweetbot for iΟS","@srbaker Gonna grab a crate at Costco.","","","","" "504083830157094912","504083436093861888","14106454","2014-08-26 01:52:05 +0000","Tweetbot for iΟS","@srbaker oh my","","","","" "504082058906705920","504059803891924992","14106454","2014-08-26 01:45:02 +0000","Tweetbot for iΟS","@srbaker What... what is a selfie stick?","","","","" -"504043464506740736","","","2014-08-25 23:11:41 +0000","Tweetbot for Mac","🚢","","","","" +"504043464506740736","","","2014-08-25 23:11:41 +0000","Tweetbot for Mac","🚢","","","","" "504009466229317633","","","2014-08-25 20:56:35 +0000","iOS","The iced coffee season is coming to an end. http://t.co/9PnyfsOBfs","","","","https://twitter.com/_sjs/status/504009466229317633/photo/1" -"503700551838998529","503683032155688961","108814849","2014-08-25 00:29:04 +0000","Twitterrific","@snarfmason @driftwoodbeer I had one today as well. My second. It's quite good!","","","","" -"503619671044935682","","","2014-08-24 19:07:41 +0000","Tweetbot for Mac","I just AirDropped some photos from iOS 8 to Yosemite. (─‿‿─)","","","","" -"503590370459283456","","15292261","2014-08-24 17:11:15 +0000","Twitterrific","@gregbate I'm sorry if I break your monitor. Just following instructions. http://t.co/7hunfMHFoC","","","","https://twitter.com/_sjs/status/503590050400305152" -"503590050400305152","","","2014-08-24 17:09:58 +0000","Twitterrific","I couldn't make this up. This is real. http://t.co/RqCUjPb1jD","","","","https://twitter.com/_sjs/status/503590050400305152/photo/1" -"503574235454140416","503573976824549376","15292261","2014-08-24 16:07:08 +0000","Twitterrific","@gregbate Might not be a bad idea for a game weekend meal.","","","","" -"503573725355446273","","","2014-08-24 16:05:06 +0000","Twitterrific","Two years ago I made a delicious sandwich. I oughta do that again soon. http://t.co/Hqh6pUdsyA","","","","https://twitter.com/_sjs/status/503573725355446273/photo/1" +"503700551838998529","503683032155688961","108814849","2014-08-25 00:29:04 +0000","Twitterrific for iOS","@snarfmason @driftwoodbeer I had one today as well. My second. It's quite good!","","","","" +"503619671044935682","","","2014-08-24 19:07:41 +0000","Tweetbot for Mac","I just AirDropped some photos from iOS 8 to Yosemite. (─‿‿─)","","","","" +"503590370459283456","","15292261","2014-08-24 17:11:15 +0000","Twitterrific for iOS","@gregbate I'm sorry if I break your monitor. Just following instructions. http://t.co/7hunfMHFoC","","","","https://twitter.com/_sjs/status/503590050400305152" +"503590050400305152","","","2014-08-24 17:09:58 +0000","Twitterrific for iOS","I couldn't make this up. This is real. http://t.co/RqCUjPb1jD","","","","https://twitter.com/_sjs/status/503590050400305152/photo/1" +"503574235454140416","503573976824549376","15292261","2014-08-24 16:07:08 +0000","Twitterrific for iOS","@gregbate Might not be a bad idea for a game weekend meal.","","","","" +"503573725355446273","","","2014-08-24 16:05:06 +0000","Twitterrific for iOS","Two years ago I made a delicious sandwich. I oughta do that again soon. http://t.co/Hqh6pUdsyA","","","","https://twitter.com/_sjs/status/503573725355446273/photo/1" "503352580018565120","","","2014-08-24 01:26:21 +0000","Tweetbot for iΟS","Coffee and tonic. Surprisingly good.","","","","" -"503332521267200000","","","2014-08-24 00:06:39 +0000","Tweetbot for Mac","This is right up my alley. http://t.co/h3zt203irK","","","","http://www.newmoticons.com" -"503273394264358912","503257598012166144","7125712","2014-08-23 20:11:42 +0000","Twitterrific","@gte Obligatory http://t.co/V2QUEvQhcI","","","","http://grooveshark.com/s/The+War+Of+1812/8lA02" -"503110814333927424","","","2014-08-23 09:25:40 +0000","Twitterrific","Maybe I'm just drunk but this is great. I'm definitely drunk. 🍸 RT @mxcl: Constructors for potty-mouths: https://t.co/Y61XwKpKSl","","","","https://github.com/mxcl/initWith...FuckIt" -"503110055227838464","","","2014-08-23 09:22:39 +0000","Twitterrific","Twitter suggested The Big Bang Theory based on @HomerJSimpson, which makes me want to unfollow @HomerJSimpson.","","","","" -"502967458656182272","","","2014-08-22 23:56:01 +0000","Tweetbot for Mac","@thebouridentity You should submit to http://t.co/mWPEWSVWDa … and check out http://t.co/i291Hm2tDU while you’re there.","","","","http://reddit.com/r/cableporn,http://reddit.com/r/cablegore" +"503332521267200000","","","2014-08-24 00:06:39 +0000","Tweetbot for Mac","This is right up my alley. http://t.co/h3zt203irK","","","","http://www.newmoticons.com" +"503273394264358912","503257598012166144","7125712","2014-08-23 20:11:42 +0000","Twitterrific for iOS","@gte Obligatory http://t.co/V2QUEvQhcI","","","","http://grooveshark.com/s/The+War+Of+1812/8lA02" +"503110814333927424","","","2014-08-23 09:25:40 +0000","Twitterrific for iOS","Maybe I'm just drunk but this is great. I'm definitely drunk. 🍸 RT @mxcl: Constructors for potty-mouths: https://t.co/Y61XwKpKSl","","","","https://github.com/mxcl/initWith...FuckIt" +"503110055227838464","","","2014-08-23 09:22:39 +0000","Twitterrific for iOS","Twitter suggested The Big Bang Theory based on @HomerJSimpson, which makes me want to unfollow @HomerJSimpson.","","","","" +"502967458656182272","","","2014-08-22 23:56:01 +0000","Tweetbot for Mac","@thebouridentity You should submit to http://t.co/mWPEWSVWDa … and check out http://t.co/i291Hm2tDU while you’re there.","","","","http://reddit.com/r/cableporn,http://reddit.com/r/cablegore" "502856048467009536","","","2014-08-22 16:33:19 +0000","iOS","Algebraic Data Types | Esper Tech Blog http://t.co/HGdb5zojbV","","","","http://tech.esper.com/2014/07/30/algebraic-data-types/" -"502234700430467072","502161396642361347","232701963","2014-08-20 23:24:18 +0000","Tweetbot for Mac","@fyrite What did you do?!","","","","" -"502129018951729152","","","2014-08-20 16:24:21 +0000","Tweetbot for Mac","RT @CompSciFact: Open a black box once in a while.","502119336442880000","220145170","2014-08-20 15:45:53 +0000","" +"502234700430467072","502161396642361347","232701963","2014-08-20 23:24:18 +0000","Tweetbot for Mac","@fyrite What did you do?!","","","","" +"502129018951729152","","","2014-08-20 16:24:21 +0000","Tweetbot for Mac","RT @CompSciFact: Open a black box once in a while.","502119336442880000","220145170","2014-08-20 15:45:53 +0000","" "501824256242909185","","","2014-08-19 20:13:20 +0000","Tweetbot for iΟS","RT @leed0: We no longer load any javascript from social media sites on @arstechnica. Just using plain links now.","501808584632827905","20949743","2014-08-19 19:11:04 +0000","" "501752775152521216","501745007695777792","108814849","2014-08-19 15:29:18 +0000","Tweetbot for iΟS","@snarfmason The Dells have USB 3 hubs and are fully adjustable. If they make a higher end 27-28"" one it'll be a contender.","","","","" -"501618993267212288","501607915791585280","108814849","2014-08-19 06:37:42 +0000","Tweetbot for Mac","@snarfmason Dell’s 24” looks good but I think I want something physically larger. Thunderbolt Display at 4k would be ideal. I want the hub!","","","","" -"501555900105379842","","","2014-08-19 02:26:59 +0000","Tweetbot for Mac","Dell’s 4k displays aren’t that enticing right now either. 28” TN panel at an affordable price, or 24” IPS at twice that price.","","","","" -"501555624564764672","","","2014-08-19 02:25:54 +0000","Tweetbot for Mac","After a day with a 4k display I’m sold. I’ll probably buy one this year after waiting to see if Apple comes out with anything.","","","","" -"501554106574438401","","","2014-08-19 02:19:52 +0000","Tweetbot for Mac","Sound is back on the Hackintosh. Hooray! 😃","","","","" -"501550714318229504","501548639580606464","108814849","2014-08-19 02:06:23 +0000","Tweetbot for Mac","@snarfmason @gregbate Of course not. yarrrrr","","","","" -"501539579946864640","","","2014-08-19 01:22:08 +0000","Tweetbot for Mac","It’s gin o’clock 🍸 (where’s the rocks glass emoji?)","","","","" -"501531288831270912","501530114966822912","14538248","2014-08-19 00:49:11 +0000","Tweetbot for Mac","@robynpeterson I should check out that Nutella pizza in Vancouver.","","","","" -"501530919489269761","","","2014-08-19 00:47:43 +0000","Tweetbot for Mac","RT @gparker: I have 200 bug reports to triage. Those of you who didn't attach complete demonstration projects will have to wait.","501530714609709056","16318564","2014-08-19 00:46:55 +0000","" -"501530751750651904","501530418488025088","108814849","2014-08-19 00:47:03 +0000","Tweetbot for Mac","@snarfmason Can you even purchase it again? This is why piracy will thrive for a long time. You can always get episode 8.","","","","" -"501529051216224257","501528605323956224","108814849","2014-08-19 00:40:18 +0000","Tweetbot for Mac","@snarfmason That’s a bummer man :(","","","","" -"501526807041277952","501521819573448705","108814849","2014-08-19 00:31:23 +0000","Tweetbot for Mac","@snarfmason You can’t get it at all? That’s pretty bad. iTunes has its own unique problems though. http://t.co/Wjf1nl7fQM","","","","http://simplyahobby.files.wordpress.com/2011/08/apple-tv-content-error.jpg" -"501502573552340992","","","2014-08-18 22:55:05 +0000","Tweetbot for Mac","RT @snarfmason: @_sjs what on earth did you build a hackintosh for man?","501501753872117760","108814849","2014-08-18 22:51:50 +0000","" +"501618993267212288","501607915791585280","108814849","2014-08-19 06:37:42 +0000","Tweetbot for Mac","@snarfmason Dell’s 24” looks good but I think I want something physically larger. Thunderbolt Display at 4k would be ideal. I want the hub!","","","","" +"501555900105379842","","","2014-08-19 02:26:59 +0000","Tweetbot for Mac","Dell’s 4k displays aren’t that enticing right now either. 28” TN panel at an affordable price, or 24” IPS at twice that price.","","","","" +"501555624564764672","","","2014-08-19 02:25:54 +0000","Tweetbot for Mac","After a day with a 4k display I’m sold. I’ll probably buy one this year after waiting to see if Apple comes out with anything.","","","","" +"501554106574438401","","","2014-08-19 02:19:52 +0000","Tweetbot for Mac","Sound is back on the Hackintosh. Hooray! 😃","","","","" +"501550714318229504","501548639580606464","108814849","2014-08-19 02:06:23 +0000","Tweetbot for Mac","@snarfmason @gregbate Of course not. yarrrrr","","","","" +"501539579946864640","","","2014-08-19 01:22:08 +0000","Tweetbot for Mac","It’s gin o’clock 🍸 (where’s the rocks glass emoji?)","","","","" +"501531288831270912","501530114966822912","14538248","2014-08-19 00:49:11 +0000","Tweetbot for Mac","@robynpeterson I should check out that Nutella pizza in Vancouver.","","","","" +"501530919489269761","","","2014-08-19 00:47:43 +0000","Tweetbot for Mac","RT @gparker: I have 200 bug reports to triage. Those of you who didn't attach complete demonstration projects will have to wait.","501530714609709056","16318564","2014-08-19 00:46:55 +0000","" +"501530751750651904","501530418488025088","108814849","2014-08-19 00:47:03 +0000","Tweetbot for Mac","@snarfmason Can you even purchase it again? This is why piracy will thrive for a long time. You can always get episode 8.","","","","" +"501529051216224257","501528605323956224","108814849","2014-08-19 00:40:18 +0000","Tweetbot for Mac","@snarfmason That’s a bummer man :(","","","","" +"501526807041277952","501521819573448705","108814849","2014-08-19 00:31:23 +0000","Tweetbot for Mac","@snarfmason You can’t get it at all? That’s pretty bad. iTunes has its own unique problems though. http://t.co/Wjf1nl7fQM","","","","http://simplyahobby.files.wordpress.com/2011/08/apple-tv-content-error.jpg" +"501502573552340992","","","2014-08-18 22:55:05 +0000","Tweetbot for Mac","RT @snarfmason: @_sjs what on earth did you build a hackintosh for man?","501501753872117760","108814849","2014-08-18 22:51:50 +0000","" "501502106134540288","501501753872117760","108814849","2014-08-18 22:53:14 +0000","Twitter Web Client","@snarfmason Most of the time it's awesome, but system upgrades are a motherfucker.","","","","" "501502007690022912","501501753872117760","108814849","2014-08-18 22:52:50 +0000","Twitter Web Client","@snarfmason Apple doesn't make anything between a Mac mini and Mac Pro. Thus, Hackintosh. It's my all-in-one workstation + gaming PC.","","","","" -"501499154070519808","","","2014-08-18 22:41:30 +0000","Tweetbot for Mac","Friends don’t let friends build Hackintoshes.","","","","" -"501499112270077953","","","2014-08-18 22:41:20 +0000","Tweetbot for Mac","Upgrading OS X on my Hackintosh to 10.9.4 is going as well as I suspected it would. Now I don’t have audio.","","","","" -"501432327390916608","","","2014-08-18 18:15:57 +0000","Tweetbot for Mac","RT @ZevEisenberg: @_sjs oops, wrong command. Try this: +"501499154070519808","","","2014-08-18 22:41:30 +0000","Tweetbot for Mac","Friends don’t let friends build Hackintoshes.","","","","" +"501499112270077953","","","2014-08-18 22:41:20 +0000","Tweetbot for Mac","Upgrading OS X on my Hackintosh to 10.9.4 is going as well as I suspected it would. Now I don’t have audio.","","","","" +"501432327390916608","","","2014-08-18 18:15:57 +0000","Tweetbot for Mac","RT @ZevEisenberg: @_sjs oops, wrong command. Try this: cd /path/to/Xcode; find . -exec xattr -d com.apple.quarantine {} \;","501431882912116736","16005703","2014-08-18 18:14:11 +0000","" -"501429474781839360","501426738459840512","2550058153","2014-08-18 18:04:37 +0000","Tweetbot for Mac","@AirspeedSwift Same. I thought it might just be my edge server but it could be pretty widespread. I’m in Victoria, BC.","","","","" -"501429408134352898","","","2014-08-18 18:04:21 +0000","Tweetbot for Mac","RT @AirspeedSwift: Now, how have I managed to screw this up… http://t.co/M4GHB2f5RS","501426738459840512","2550058153","2014-08-18 17:53:45 +0000","https://twitter.com/AirspeedSwift/status/501426738459840512/photo/1,https://twitter.com/AirspeedSwift/status/501426738459840512/photo/1" -"501429267088277504","","","2014-08-18 18:03:48 +0000","Tweetbot for Mac","Zero for two on Xcode 6 beta 6 downloads. My edge server must be fucked 😠","","","","" -"501425212593033216","","","2014-08-18 17:47:41 +0000","Tweetbot for Mac","Nooooo! My Xcode 6 beta 6 dmg is corrupt. Good thing Apple’s CDN can max out my 100 mbps connection.","","","","" -"501411988464234496","501410004402835456","15292261","2014-08-18 16:55:08 +0000","Tweetbot for Mac","@gregbate Yeah it might be worth giving it another shot with DisplayPort. I’m happy enough with it to try it as my main display all week.","","","","" -"501400956198998016","","","2014-08-18 16:11:18 +0000","Twitterrific","I just rickrolled myself during my shower this morning. http://t.co/tU54oMqVHk","","","","https://twitter.com/_sjs/status/501400956198998016/photo/1" +"501429474781839360","501426738459840512","2550058153","2014-08-18 18:04:37 +0000","Tweetbot for Mac","@AirspeedSwift Same. I thought it might just be my edge server but it could be pretty widespread. I’m in Victoria, BC.","","","","" +"501429408134352898","","","2014-08-18 18:04:21 +0000","Tweetbot for Mac","RT @AirspeedSwift: Now, how have I managed to screw this up… http://t.co/M4GHB2f5RS","501426738459840512","2550058153","2014-08-18 17:53:45 +0000","https://twitter.com/AirspeedSwift/status/501426738459840512/photo/1,https://twitter.com/AirspeedSwift/status/501426738459840512/photo/1" +"501429267088277504","","","2014-08-18 18:03:48 +0000","Tweetbot for Mac","Zero for two on Xcode 6 beta 6 downloads. My edge server must be fucked 😠","","","","" +"501425212593033216","","","2014-08-18 17:47:41 +0000","Tweetbot for Mac","Nooooo! My Xcode 6 beta 6 dmg is corrupt. Good thing Apple’s CDN can max out my 100 mbps connection.","","","","" +"501411988464234496","501410004402835456","15292261","2014-08-18 16:55:08 +0000","Tweetbot for Mac","@gregbate Yeah it might be worth giving it another shot with DisplayPort. I’m happy enough with it to try it as my main display all week.","","","","" +"501400956198998016","","","2014-08-18 16:11:18 +0000","Twitterrific for iOS","I just rickrolled myself during my shower this morning. http://t.co/tU54oMqVHk","","","","https://twitter.com/_sjs/status/501400956198998016/photo/1" "501391917486465024","501389337624211459","15292261","2014-08-18 15:35:23 +0000","Tweetbot for iΟS","@gregbate btw it does 3840x2160 at 60 Hz with DisplayPort, but not HDMI.","","","","" "501391412181880832","501389337624211459","15292261","2014-08-18 15:33:22 +0000","Tweetbot for iΟS","@gregbate I've wanted a 4k display since getting a retina MacBook. Trying this one cements it! I'll probably buy one this year.","","","","" -"501230668496777217","","","2014-08-18 04:54:38 +0000","Tweetbot for Mac","I borrowed something from @gregbate. http://t.co/MqS59noIf6","","","","https://twitter.com/_sjs/status/501230668496777217/photo/1" +"501230668496777217","","","2014-08-18 04:54:38 +0000","Tweetbot for Mac","I borrowed something from @gregbate. http://t.co/MqS59noIf6","","","","https://twitter.com/_sjs/status/501230668496777217/photo/1" "500862546258448384","","","2014-08-17 04:31:51 +0000","Tweetbot for iΟS","RT @fyrite: Devoured by Shub-Niggurath. Fun times!","500862172550135808","232701963","2014-08-17 04:30:22 +0000","" "500757173329096704","","","2014-08-16 21:33:08 +0000","Tweetbot for iΟS","Playing Arkham Horror for the first time. I'm a scientist. http://t.co/zkAEjyPCxI","","","","https://twitter.com/_sjs/status/500757173329096704/photo/1,https://twitter.com/_sjs/status/500757173329096704/photo/1" "500722476822048768","500721245630255104","222358903","2014-08-16 19:15:16 +0000","Tweetbot for iΟS","@Sarah_SLP Heh thanks. We'll try to save you one!","","","","" "500708895724425216","","","2014-08-16 18:21:18 +0000","Tweetbot for iΟS","Baking success! This Millionaire's Shortbread is delicious. http://t.co/KEoN28mlJw","","","","https://twitter.com/_sjs/status/500708895724425216/photo/1" -"500658534313652226","","","2014-08-16 15:01:11 +0000","Twitterrific","RT @arstechnica: Google to drop Microsoft-designed touch Web spec, stick with Apple tech http://t.co/IZtC5a3sKa by @drpizza","500644703914971136","717313","2014-08-16 14:06:13 +0000","http://ars.to/1qdw1P3,http://ars.to/1qdw1P3" -"500546126446346240","","","2014-08-16 07:34:30 +0000","Twitterrific","The end of Twin Peaks raises as many questions as it answers. What a trip.","","","","" +"500658534313652226","","","2014-08-16 15:01:11 +0000","Twitterrific for iOS","RT @arstechnica: Google to drop Microsoft-designed touch Web spec, stick with Apple tech http://t.co/IZtC5a3sKa by @drpizza","500644703914971136","717313","2014-08-16 14:06:13 +0000","http://ars.to/1qdw1P3,http://ars.to/1qdw1P3" +"500546126446346240","","","2014-08-16 07:34:30 +0000","Twitterrific for iOS","The end of Twin Peaks raises as many questions as it answers. What a trip.","","","","" "500525137096359936","","","2014-08-16 06:11:06 +0000","Tweetbot for iΟS","Soon. http://t.co/JzpYFJEgDD","","","","https://twitter.com/_sjs/status/500525137096359936/photo/1" -"500431860825325569","","","2014-08-16 00:00:27 +0000","Tweetbot for Mac","RT @DanFrakes: This is the meal-tab-splitting app I’ve been wanting for years: http://t.co/eLAbVeyZ4G","500371248132538368","8259712","2014-08-15 19:59:36 +0000","http://bit.ly/1nXbJYw,http://bit.ly/1nXbJYw" -"500362198141923329","","","2014-08-15 19:23:38 +0000","Tweetbot for Mac","Required reading if you’re interested in Swift: https://t.co/vkhvPmSO3g","","","","https://devforums.apple.com/message/1023956#1023956" -"500361341199478784","","","2014-08-15 19:20:14 +0000","Tweetbot for Mac","This website is useful if you want to find a song in a mashup that you recognize but can’t name. http://t.co/YTyh591WNF","","","","http://www.mashupbreakdown.com/night-ripper" +"500431860825325569","","","2014-08-16 00:00:27 +0000","Tweetbot for Mac","RT @DanFrakes: This is the meal-tab-splitting app I’ve been wanting for years: http://t.co/eLAbVeyZ4G","500371248132538368","8259712","2014-08-15 19:59:36 +0000","http://bit.ly/1nXbJYw,http://bit.ly/1nXbJYw" +"500362198141923329","","","2014-08-15 19:23:38 +0000","Tweetbot for Mac","Required reading if you’re interested in Swift: https://t.co/vkhvPmSO3g","","","","https://devforums.apple.com/message/1023956#1023956" +"500361341199478784","","","2014-08-15 19:20:14 +0000","Tweetbot for Mac","This website is useful if you want to find a song in a mashup that you recognize but can’t name. http://t.co/YTyh591WNF","","","","http://www.mashupbreakdown.com/night-ripper" "500346785626591232","","","2014-08-15 18:22:24 +0000","Tweetbot for iΟS","RT @gisikw: GIFs are the new IE6","500344150496403457","14308739","2014-08-15 18:11:56 +0000","" -"500293790415220736","","","2014-08-15 14:51:49 +0000","Twitterrific","RT @GonzoHacker: First, make it simple. Then, make it simpler. Then, don't make it at all. #simple","500288592586227712","773009000","2014-08-15 14:31:10 +0000","" +"500293790415220736","","","2014-08-15 14:51:49 +0000","Twitterrific for iOS","RT @GonzoHacker: First, make it simple. Then, make it simpler. Then, don't make it at all. #simple","500288592586227712","773009000","2014-08-15 14:31:10 +0000","" "500119012584722432","500117287878541312","14106454","2014-08-15 03:17:19 +0000","Tweetbot for iΟS","@srbaker That's such a great idea. Way to go Staples.","","","","" -"500106230418120705","500099621285531648","28321706","2014-08-15 02:26:31 +0000","Twitterrific","@theretronaut I get a PHP error on that one.","","","","" -"500089815174774784","500087287808811008","108814849","2014-08-15 01:21:17 +0000","Tweetbot for Mac","@snarfmason Thanks but I sent it to Monk’s. Luckily there’s one about 3 blocks away.","","","","" -"500083618447122432","","","2014-08-15 00:56:40 +0000","Tweetbot for Mac","@thebouridentity Perfect! What’s DPI does that baby print at?","","","","" +"500106230418120705","500099621285531648","28321706","2014-08-15 02:26:31 +0000","Twitterrific for iOS","@theretronaut I get a PHP error on that one.","","","","" +"500089815174774784","500087287808811008","108814849","2014-08-15 01:21:17 +0000","Tweetbot for Mac","@snarfmason Thanks but I sent it to Monk’s. Luckily there’s one about 3 blocks away.","","","","" +"500083618447122432","","","2014-08-15 00:56:40 +0000","Tweetbot for Mac","@thebouridentity Perfect! What’s DPI does that baby print at?","","","","" "500062929623207936","","","2014-08-14 23:34:27 +0000","Tweetbot for iΟS","I had a lapse in judgement and almost bought a printer. Close call.","","","","" -"500014336367017984","500011278388449280","15292261","2014-08-14 20:21:22 +0000","Tweetbot for Mac","@gregbate So great. I love his video!","","","","" -"500011028311461888","499971188438081536","14231571","2014-08-14 20:08:13 +0000","Tweetbot for Mac","@marcoarment Are you testing any wireless headphones in this round?","","","","" +"500014336367017984","500011278388449280","15292261","2014-08-14 20:21:22 +0000","Tweetbot for Mac","@gregbate So great. I love his video!","","","","" +"500011028311461888","499971188438081536","14231571","2014-08-14 20:08:13 +0000","Tweetbot for Mac","@marcoarment Are you testing any wireless headphones in this round?","","","","" "499948726920970240","","","2014-08-14 16:00:39 +0000","erased947821","Clipped this from a newspaper 11 years ago. http://t.co/C33CYBg9RW","","","","http://plfe.me/1vNblG3" "499378886762061824","","","2014-08-13 02:16:19 +0000","Twitter Web Client","RT @Inferis: Oh. Xcode6 is *finally* smart enough to remove the // from a commented out block *even* if they are preceded by whitespace. F…","491866917784002560","66573","2014-07-23 08:46:26 +0000","" -"499007173553586176","","","2014-08-12 01:39:15 +0000","Twitterrific","RT @mikeash: Since when did browsers decide to not even give me the option of bypassing SSL cert warnings, and how do I convince them to le…","498984672110841856","8142952","2014-08-12 00:09:51 +0000","" -"498950605768249344","498946113680850944","15292261","2014-08-11 21:54:29 +0000","Tweetbot for Mac","@gregbate Wow. That is an actual song by an actual person. https://t.co/zWofj15KWM","","","","https://www.youtube.com/watch?v=K8hn5QgNZJY" -"498941892630179840","","","2014-08-11 21:19:51 +0000","Tweetbot for Mac","RT @MashableHQ: Happy #SharkWeek from the @Mashable team! https://t.co/Q6DkILnezO","498937221245075456","140569932","2014-08-11 21:01:18 +0000","https://vine.co/v/MVQTxxiDg9z,https://vine.co/v/MVQTxxiDg9z" -"498934293339844608","498934081233879040","108814849","2014-08-11 20:49:39 +0000","Tweetbot for Mac","@snarfmason Ha ha. Maybe I’m a guru by the transitive property of social media guru-ness.","","","","" -"498933824211132416","498928700499718144","108814849","2014-08-11 20:47:48 +0000","Tweetbot for Mac","@snarfmason So when are you quitting your job, now that you’re a social media guru?","","","","" -"498927036447342592","498926820981755904","108814849","2014-08-11 20:20:49 +0000","Twitterrific","@snarfmason Impossible.","","","","" -"498921784159518720","498917624395624448","108814849","2014-08-11 19:59:57 +0000","Twitterrific","@snarfmason My biggest problem with videoconferencing is the lag. People talking over each other. Hard to get a word in sometimes.","","","","" -"498913310566543360","498910725792731136","7668432","2014-08-11 19:26:17 +0000","Tweetbot for Mac","@amolloy @AirspeedSwift @siracusa @brentsimmons In the latest beta += cannot be used to append to an array, only to concatenate 2 arrays.","","","","" -"498900504781799425","","","2014-08-11 18:35:24 +0000","Tweetbot for Mac","RT @anniecolbert: Breaking: Vladimir Putin is tiny. (Banana added for scale) (h/t @Claire_Phipps) http://t.co/LRkdoCGDpl","498867073024790528","22848564","2014-08-11 16:22:33 +0000","https://twitter.com/anniecolbert/status/498867073024790528/photo/1,https://twitter.com/anniecolbert/status/498867073024790528/photo/1" +"499007173553586176","","","2014-08-12 01:39:15 +0000","Twitterrific for iOS","RT @mikeash: Since when did browsers decide to not even give me the option of bypassing SSL cert warnings, and how do I convince them to le…","498984672110841856","8142952","2014-08-12 00:09:51 +0000","" +"498950605768249344","498946113680850944","15292261","2014-08-11 21:54:29 +0000","Tweetbot for Mac","@gregbate Wow. That is an actual song by an actual person. https://t.co/zWofj15KWM","","","","https://www.youtube.com/watch?v=K8hn5QgNZJY" +"498941892630179840","","","2014-08-11 21:19:51 +0000","Tweetbot for Mac","RT @MashableHQ: Happy #SharkWeek from the @Mashable team! https://t.co/Q6DkILnezO","498937221245075456","140569932","2014-08-11 21:01:18 +0000","https://vine.co/v/MVQTxxiDg9z,https://vine.co/v/MVQTxxiDg9z" +"498934293339844608","498934081233879040","108814849","2014-08-11 20:49:39 +0000","Tweetbot for Mac","@snarfmason Ha ha. Maybe I’m a guru by the transitive property of social media guru-ness.","","","","" +"498933824211132416","498928700499718144","108814849","2014-08-11 20:47:48 +0000","Tweetbot for Mac","@snarfmason So when are you quitting your job, now that you’re a social media guru?","","","","" +"498927036447342592","498926820981755904","108814849","2014-08-11 20:20:49 +0000","Twitterrific for iOS","@snarfmason Impossible.","","","","" +"498921784159518720","498917624395624448","108814849","2014-08-11 19:59:57 +0000","Twitterrific for iOS","@snarfmason My biggest problem with videoconferencing is the lag. People talking over each other. Hard to get a word in sometimes.","","","","" +"498913310566543360","498910725792731136","7668432","2014-08-11 19:26:17 +0000","Tweetbot for Mac","@amolloy @AirspeedSwift @siracusa @brentsimmons In the latest beta += cannot be used to append to an array, only to concatenate 2 arrays.","","","","" +"498900504781799425","","","2014-08-11 18:35:24 +0000","Tweetbot for Mac","RT @anniecolbert: Breaking: Vladimir Putin is tiny. (Banana added for scale) (h/t @Claire_Phipps) http://t.co/LRkdoCGDpl","498867073024790528","22848564","2014-08-11 16:22:33 +0000","https://twitter.com/anniecolbert/status/498867073024790528/photo/1,https://twitter.com/anniecolbert/status/498867073024790528/photo/1" "498883105210392576","","","2014-08-11 17:26:15 +0000","Twitter for Websites","Retronaut is awesome, and is now part of Mashable! http://t.co/RHMtJN8ciK via @mashable","","","","http://mashable.com/2014/08/11/retronaut-moves-to-mashable/#:eyJzIjoidCIsImkiOiJfa3Mzbngzd2Rqa2Y1dnRleCJ9" "498146438292205568","","","2014-08-09 16:39:00 +0000","Tweetbot for iΟS","RT @AirspeedSwift: I love that error. @ZacharyOrr: I had a snarky Obj-C moment yesterday! https://t.co/vGSmenYCI6","498141056345853953","2550058153","2014-08-09 16:17:37 +0000","https://twitter.com/ZacharyOrr/status/497771986228350976,https://twitter.com/ZacharyOrr/status/497771986228350976" -"498127485008359424","","","2014-08-09 15:23:41 +0000","Twitterrific","RT @peterc: A nice read about a guy who created a fun webapp in 4 hours in Rails and hit the top of Product Hunt with it: https://t.co/3x67…","498026877945397248","33493","2014-08-09 08:43:55 +0000","https://medium.com/@johnnylin/going-from-nothing-to-product-hunt-in-4-hours-89cfb67977b3" +"498127485008359424","","","2014-08-09 15:23:41 +0000","Twitterrific for iOS","RT @peterc: A nice read about a guy who created a fun webapp in 4 hours in Rails and hit the top of Product Hunt with it: https://t.co/3x67…","498026877945397248","33493","2014-08-09 08:43:55 +0000","https://medium.com/@johnnylin/going-from-nothing-to-product-hunt-in-4-hours-89cfb67977b3" "497779694918709248","","","2014-08-08 16:21:42 +0000","Twitter Web Client","If you can't get past iMessage during iOS 8's first-run setup, try again skipping iCloud altogether and going into Settings after that.","","","","" "497779266650923008","","","2014-08-08 16:20:00 +0000","Twitter Web Client","So far Yosemite and iOS 8 are doing pretty well on all my main devices. No showstoppers yet.","","","","" "497506421765058560","","","2014-08-07 22:15:48 +0000","Tweetbot for iΟS","Dog selfie http://t.co/kBy33itzxe","","","","https://twitter.com/_sjs/status/497506421765058560/photo/1" "497079922985533443","497051767926841344","15292261","2014-08-06 18:01:03 +0000","Tweetbot for iΟS","@gregbate Damn that is pretty good!","","","","" -"496807868340137984","496791047859871746","2550058153","2014-08-06 00:00:00 +0000","Twitterrific","@AirspeedSwift @Catfish_Man Or anyone who bought the best iPod touch during the last 2 years.","","","","" +"496807868340137984","496791047859871746","2550058153","2014-08-06 00:00:00 +0000","Twitterrific for iOS","@AirspeedSwift @Catfish_Man Or anyone who bought the best iPod touch during the last 2 years.","","","","" "496445176270053379","","","2014-08-04 23:58:48 +0000","Tweetbot for iΟS","YOLO https://t.co/o1OEEddshh","","","","https://twitter.com/_sjs/status/496443693445169153" "496444871272833024","496443789872205826","14106454","2014-08-04 23:57:35 +0000","Tweetbot for iΟS","@srbaker I'm at a good point to make the switch. I have Mavericks and iOS 7 on other devices, and can downgrade if there are big problems.","","","","" "496443693445169153","496441357226213376","14106454","2014-08-04 23:52:54 +0000","Tweetbot for iΟS","@srbaker I will later today. Installing Yosemite right now after backing everything up. iOS 8 is next.","","","","" "496401701788975104","","","2014-08-04 21:06:03 +0000","Tweetbot for iΟS","RT @NatashaTheRobot: The #Swift iBook has been officially updated for Beta5. Lots to learn! https://t.co/PSdRUfA08q","496372784294285312","398173256","2014-08-04 19:11:08 +0000","https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/RevisionHistory.html#//apple_ref/doc/uid/TP40014097-CH40-XID_1618,https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/RevisionHistory.html#//apple_ref/doc/uid/TP40014097-CH40-XID_1618" -"496345941784670208","","","2014-08-04 17:24:28 +0000","Tweetbot for Mac","Data wasn’t restored when restoring an iOS 7 backup to an iOS 8 device with iTunes 12 on Yosemite. Might try iTunes 11 on Mavericks instead.","","","","" -"496344819158228992","","","2014-08-04 17:20:01 +0000","Twitterrific","RT @JimRoepcke: YES! ""[A few] classes have been audited for optional conformance, removing most implicitly unwrapped optionals from their i…","496342902881419264","894911","2014-08-04 17:12:24 +0000","" -"495350434950037504","","","2014-08-01 23:28:41 +0000","Twitterrific","RT @snarfmason: Just saw a job posting for a “DevOps Engineer”. Welcome to the ranks of not-really-engineers my DevOps friends!","495347508034670592","108814849","2014-08-01 23:17:03 +0000","" -"495307491929231362","","","2014-08-01 20:38:03 +0000","Tweetbot for Mac","RT @fyrite: I eat apples for breakfast and started reviewing them on tumblr http://t.co/kX3vlZuB6k","495306901706776580","232701963","2014-08-01 20:35:42 +0000","http://eatingdifferentapples.tumblr.com,http://eatingdifferentapples.tumblr.com" +"496345941784670208","","","2014-08-04 17:24:28 +0000","Tweetbot for Mac","Data wasn’t restored when restoring an iOS 7 backup to an iOS 8 device with iTunes 12 on Yosemite. Might try iTunes 11 on Mavericks instead.","","","","" +"496344819158228992","","","2014-08-04 17:20:01 +0000","Twitterrific for iOS","RT @JimRoepcke: YES! ""[A few] classes have been audited for optional conformance, removing most implicitly unwrapped optionals from their i…","496342902881419264","894911","2014-08-04 17:12:24 +0000","" +"495350434950037504","","","2014-08-01 23:28:41 +0000","Twitterrific for iOS","RT @snarfmason: Just saw a job posting for a “DevOps Engineer”. Welcome to the ranks of not-really-engineers my DevOps friends!","495347508034670592","108814849","2014-08-01 23:17:03 +0000","" +"495307491929231362","","","2014-08-01 20:38:03 +0000","Tweetbot for Mac","RT @fyrite: I eat apples for breakfast and started reviewing them on tumblr http://t.co/kX3vlZuB6k","495306901706776580","232701963","2014-08-01 20:35:42 +0000","http://eatingdifferentapples.tumblr.com,http://eatingdifferentapples.tumblr.com" "495256943792259072","","","2014-08-01 17:17:11 +0000","Twitter Web Client","RT @dhh: Seven degrees of slip: https://t.co/I92m3TT6Ig — find the limit by stepping over it. [2011]","495251354882174977","14561327","2014-08-01 16:54:58 +0000","https://signalvnoise.com/posts/3058-seven-degrees-of-slip,https://signalvnoise.com/posts/3058-seven-degrees-of-slip" -"495241723422208000","","","2014-08-01 16:16:42 +0000","Twitterrific","RT @edzitron: http://t.co/wqK1FmXcOf saved you a click: this woman took off her leg because she didn’t get cigarettes actually no really cl…","495239173922492416","18359716","2014-08-01 16:06:34 +0000","http://jezebel.com/woman-terrorizes-plane-with-fake-leg-slaps-passengers-1614181126?utm_campaign=socialfow_jezebel_twitter&utm_source=jezebel_twitter&utm_medium=socialflow,http://jezebel.com/woman-terrorizes-plane-with-fake-leg-slaps-passengers-1614181126?utm_campaign=socialfow_jezebel_twitter&utm_source=jezebel_twitter&utm_medium=socialflow" -"495241687061786624","495239173922492416","18359716","2014-08-01 16:16:34 +0000","Twitterrific","@edzitron @film_girl I don't know if I'm more surprised at the woman's actions or at the fact that it's ""Hokey Cokey"" across the pond.","","","","" -"495223977221296128","495216982997094400","25703613","2014-08-01 15:06:11 +0000","Twitterrific",".@Cocoanetics @JerenYun So the new meaning is whether or not the controller's view was animated, not whether the transition was animated?","","","","" -"494915029565571072","494908334818865153","18137723","2014-07-31 18:38:32 +0000","Tweetbot for Mac","@raganwald @leonardo_borges Fair enough. I used to make the same argument, but some constructs are full of parens. https://t.co/fjAvp1q780","","","","https://gist.github.com/samsonjs/7d29475cb9bdf641fee9" -"494898888399003648","494768624880459778","17713078","2014-07-31 17:34:24 +0000","Tweetbot for Mac","@leonardo_borges @raganwald The problem is with statements such as (let ((a 1) (b 2)) (foo x y)). Compare that to any Algol-like syntax.","","","","" -"494897611816435712","","","2014-07-31 17:29:20 +0000","Tweetbot for Mac","Stupid humans. Why are we trucking around giraffes anyway? Humans are the worst. http://t.co/tOZM8hAWiM","","","","http://mashable.com/2014/07/31/giraffe-dies-highway-bridge" -"494682728755761152","","","2014-07-31 03:15:27 +0000","Twitterrific","RT @1Password: 1Password Extension for Your iOS 8 Apps: http://t.co/RqLddNcRdb +"495241723422208000","","","2014-08-01 16:16:42 +0000","Twitterrific for iOS","RT @edzitron: http://t.co/wqK1FmXcOf saved you a click: this woman took off her leg because she didn’t get cigarettes actually no really cl…","495239173922492416","18359716","2014-08-01 16:06:34 +0000","http://jezebel.com/woman-terrorizes-plane-with-fake-leg-slaps-passengers-1614181126?utm_campaign=socialfow_jezebel_twitter&utm_source=jezebel_twitter&utm_medium=socialflow,http://jezebel.com/woman-terrorizes-plane-with-fake-leg-slaps-passengers-1614181126?utm_campaign=socialfow_jezebel_twitter&utm_source=jezebel_twitter&utm_medium=socialflow" +"495241687061786624","495239173922492416","18359716","2014-08-01 16:16:34 +0000","Twitterrific for iOS","@edzitron @film_girl I don't know if I'm more surprised at the woman's actions or at the fact that it's ""Hokey Cokey"" across the pond.","","","","" +"495223977221296128","495216982997094400","25703613","2014-08-01 15:06:11 +0000","Twitterrific for iOS",".@Cocoanetics @JerenYun So the new meaning is whether or not the controller's view was animated, not whether the transition was animated?","","","","" +"494915029565571072","494908334818865153","18137723","2014-07-31 18:38:32 +0000","Tweetbot for Mac","@raganwald @leonardo_borges Fair enough. I used to make the same argument, but some constructs are full of parens. https://t.co/fjAvp1q780","","","","https://gist.github.com/samsonjs/7d29475cb9bdf641fee9" +"494898888399003648","494768624880459778","17713078","2014-07-31 17:34:24 +0000","Tweetbot for Mac","@leonardo_borges @raganwald The problem is with statements such as (let ((a 1) (b 2)) (foo x y)). Compare that to any Algol-like syntax.","","","","" +"494897611816435712","","","2014-07-31 17:29:20 +0000","Tweetbot for Mac","Stupid humans. Why are we trucking around giraffes anyway? Humans are the worst. http://t.co/tOZM8hAWiM","","","","http://mashable.com/2014/07/31/giraffe-dies-highway-bridge" +"494682728755761152","","","2014-07-31 03:15:27 +0000","Twitterrific for iOS","RT @1Password: 1Password Extension for Your iOS 8 Apps: http://t.co/RqLddNcRdb Developers, don't wait. Get started *now*: http://t.co/T4KP…","494565587054379009","793926","2014-07-30 19:29:59 +0000","http://vimeo.com/102142106,http://vimeo.com/102142106,http://blog.agilebits.com/2014/07/30/introducing-the-1password-app-extension-for-ios-8-apps/" -"494640720293019648","","","2014-07-31 00:28:32 +0000","Tweetbot for Mac","It’s been way too long since I last owned a pocket knife. Today that error has been corrected!","","","","" -"494548079744262144","494547878220541953","15292261","2014-07-30 18:20:25 +0000","Tweetbot for Mac","@gregbate That’s pretty good time! Nice one.","","","","" -"494547687551692800","494546700728406016","15292261","2014-07-30 18:18:51 +0000","Tweetbot for Mac","@gregbate How long did it take?","","","","" -"494503127236616192","","","2014-07-30 15:21:47 +0000","Twitterrific","RT @swannodette: WOW, Facebook releases their own efficient persistent data structure library for JavaScript, http://t.co/2ctqkGB6Lv","494494663693172736","1819511","2014-07-30 14:48:09 +0000","http://github.com/facebook/immutable-js,http://github.com/facebook/immutable-js" -"494489397736116224","","","2014-07-30 14:27:14 +0000","Twitterrific","RT @gisikw: An Epileptic Seizure: https://t.co/vC62tpjUDf","494391420770213888","14308739","2014-07-30 07:57:54 +0000","https://medium.com/@gisikw/4e075afa6cb3?source=tw-16574e2735c8-1406707059846,https://medium.com/@gisikw/4e075afa6cb3?source=tw-16574e2735c8-1406707059846" -"494489320099545088","494391420770213888","14308739","2014-07-30 14:26:55 +0000","Twitterrific","@gisikw I didn't know that one could be out of commission for so long due to seizures. Every few years is still far too often.","","","","" -"494275059322597377","","","2014-07-30 00:15:32 +0000","Twitterrific","RT @therobfoster: This video is astounding for many reasons: +"494640720293019648","","","2014-07-31 00:28:32 +0000","Tweetbot for Mac","It’s been way too long since I last owned a pocket knife. Today that error has been corrected!","","","","" +"494548079744262144","494547878220541953","15292261","2014-07-30 18:20:25 +0000","Tweetbot for Mac","@gregbate That’s pretty good time! Nice one.","","","","" +"494547687551692800","494546700728406016","15292261","2014-07-30 18:18:51 +0000","Tweetbot for Mac","@gregbate How long did it take?","","","","" +"494503127236616192","","","2014-07-30 15:21:47 +0000","Twitterrific for iOS","RT @swannodette: WOW, Facebook releases their own efficient persistent data structure library for JavaScript, http://t.co/2ctqkGB6Lv","494494663693172736","1819511","2014-07-30 14:48:09 +0000","http://github.com/facebook/immutable-js,http://github.com/facebook/immutable-js" +"494489397736116224","","","2014-07-30 14:27:14 +0000","Twitterrific for iOS","RT @gisikw: An Epileptic Seizure: https://t.co/vC62tpjUDf","494391420770213888","14308739","2014-07-30 07:57:54 +0000","https://medium.com/@gisikw/4e075afa6cb3?source=tw-16574e2735c8-1406707059846,https://medium.com/@gisikw/4e075afa6cb3?source=tw-16574e2735c8-1406707059846" +"494489320099545088","494391420770213888","14308739","2014-07-30 14:26:55 +0000","Twitterrific for iOS","@gisikw I didn't know that one could be out of commission for so long due to seizures. Every few years is still far too often.","","","","" +"494275059322597377","","","2014-07-30 00:15:32 +0000","Twitterrific for iOS","RT @therobfoster: This video is astounding for many reasons: Ivory Coast cocoa farmers taste chocolate for the first time ever. http://t.…","494124187423113216","656553","2014-07-29 14:16:01 +0000","http://d.pr/nAUu/4URgq5UH" -"494234716795461632","","","2014-07-29 21:35:13 +0000","Tweetbot for Mac","What’s your favourite Girl Talk album?","","","","" +"494234716795461632","","","2014-07-29 21:35:13 +0000","Tweetbot for Mac","What’s your favourite Girl Talk album?","","","","" "494222879697797120","494222533244518400","14106454","2014-07-29 20:48:11 +0000","Tweetbot for iΟS","@srbaker I would love to look at something super fucked up. One sec.","","","","" "494211521853935616","","","2014-07-29 20:03:03 +0000","Tweetbot for iΟS","I miss @PiCNiC_Coffee. It's amazing. Hope they keep following me around and open an uptown location!","","","","" -"494199588329254913","494199504187293696","4221431","2014-07-29 19:15:38 +0000","Tweetbot for Mac","@semanticist @snarfmason @srbaker Woah, dude! That is ancient.","","","","" -"494199484998361088","494197894782914560","4221431","2014-07-29 19:15:13 +0000","Tweetbot for Mac","@semanticist @snarfmason @srbaker Once I played You Don’t Know Jack on a Mac at someone’s house and couldn’t believe the framerate.","","","","" -"494199242504687617","494197894782914560","4221431","2014-07-29 19:14:15 +0000","Tweetbot for Mac","@semanticist @snarfmason @srbaker I completely missed classic Mac OS. For some reason my schools had maybe one Mac, until university.","","","","" -"494195300374810624","494195006316752896","4221431","2014-07-29 18:58:35 +0000","Tweetbot for Mac","@semanticist @snarfmason @srbaker Did you stick it through the whole time despite it being terrible?","","","","" +"494199588329254913","494199504187293696","4221431","2014-07-29 19:15:38 +0000","Tweetbot for Mac","@semanticist @snarfmason @srbaker Woah, dude! That is ancient.","","","","" +"494199484998361088","494197894782914560","4221431","2014-07-29 19:15:13 +0000","Tweetbot for Mac","@semanticist @snarfmason @srbaker Once I played You Don’t Know Jack on a Mac at someone’s house and couldn’t believe the framerate.","","","","" +"494199242504687617","494197894782914560","4221431","2014-07-29 19:14:15 +0000","Tweetbot for Mac","@semanticist @snarfmason @srbaker I completely missed classic Mac OS. For some reason my schools had maybe one Mac, until university.","","","","" +"494195300374810624","494195006316752896","4221431","2014-07-29 18:58:35 +0000","Tweetbot for Mac","@semanticist @snarfmason @srbaker Did you stick it through the whole time despite it being terrible?","","","","" "494192376823287808","","","2014-07-29 18:46:58 +0000","Twitter for Websites","ZOMG I just saved my first object with Parse! http://t.co/gmAufMvOud","","","","http://parse.com" -"494188328132964352","","","2014-07-29 18:30:53 +0000","Tweetbot for Mac","“if you’re a (moderately) successful indie app developer, congratulations! Because that is an incredibly impressive feat.”","","","","" -"494188168900407296","","","2014-07-29 18:30:15 +0000","Tweetbot for Mac","RT @KuraFire: The iOS Indie That Could http://t.co/O1avXUwRJd","494186099838050304","22253","2014-07-29 18:22:02 +0000","http://j.mp/1nZi0qI,http://j.mp/1nZi0qI" +"494188328132964352","","","2014-07-29 18:30:53 +0000","Tweetbot for Mac","“if you’re a (moderately) successful indie app developer, congratulations! Because that is an incredibly impressive feat.”","","","","" +"494188168900407296","","","2014-07-29 18:30:15 +0000","Tweetbot for Mac","RT @KuraFire: The iOS Indie That Could http://t.co/O1avXUwRJd","494186099838050304","22253","2014-07-29 18:22:02 +0000","http://j.mp/1nZi0qI,http://j.mp/1nZi0qI" "494183268724400128","494180482951573505","108814849","2014-07-29 18:10:47 +0000","Tweetbot for iΟS","@snarfmason Hey, a fellow Tiger switcher! My first Mac was a PPC Mac mini though. Still have it. Switched from Linux over a couple years.","","","","" -"493970156716969986","","","2014-07-29 04:03:57 +0000","Tweetbot for Mac","This week’s Cocoa typo in Dvorak is NSStrung.","","","","" +"493970156716969986","","","2014-07-29 04:03:57 +0000","Tweetbot for Mac","This week’s Cocoa typo in Dvorak is NSStrung.","","","","" "493954521010163712","","","2014-07-29 03:01:49 +0000","Tweetbot for iΟS","I complained about @OvercastFM’s deletion policy. Now it just deleted an unplayed podcast when I tapped on it, and then crashed. Spiteful!","","","","" -"493931855997960193","","","2014-07-29 01:31:45 +0000","Twitterrific","RT @mislav: @garybernhardt Oh you mean like Gmail composer view captures and prevents Ctrl-Cmd-Space (OS X character picker)","493891054009987073","7516242","2014-07-28 22:49:37 +0000","" -"493885339929280512","","","2014-07-28 22:26:55 +0000","Tweetbot for Mac","RT @typeoneerror: Google Docs trapping keyboard events (so you can't switch tabs) is infuriating. ""Stealing the keyboard"" is an obnoxious d…","493840182937124865","11973362","2014-07-28 19:27:29 +0000","" -"493884948768509953","","","2014-07-28 22:25:22 +0000","Tweetbot for Mac","Don’t forget about the network link conditioner and leave it on the Very Bad Network profile. #protip","","","","" -"493807086644367361","493806945107595266","15292261","2014-07-28 17:15:58 +0000","Tweetbot for Mac","@gregbate Oh man … I might have to do that.","","","","" +"493931855997960193","","","2014-07-29 01:31:45 +0000","Twitterrific for iOS","RT @mislav: @garybernhardt Oh you mean like Gmail composer view captures and prevents Ctrl-Cmd-Space (OS X character picker)","493891054009987073","7516242","2014-07-28 22:49:37 +0000","" +"493885339929280512","","","2014-07-28 22:26:55 +0000","Tweetbot for Mac","RT @typeoneerror: Google Docs trapping keyboard events (so you can't switch tabs) is infuriating. ""Stealing the keyboard"" is an obnoxious d…","493840182937124865","11973362","2014-07-28 19:27:29 +0000","" +"493884948768509953","","","2014-07-28 22:25:22 +0000","Tweetbot for Mac","Don’t forget about the network link conditioner and leave it on the Very Bad Network profile. #protip","","","","" +"493807086644367361","493806945107595266","15292261","2014-07-28 17:15:58 +0000","Tweetbot for Mac","@gregbate Oh man … I might have to do that.","","","","" "493806825339236353","493806579079073792","15292261","2014-07-28 17:14:56 +0000","Tweetbot for iΟS","@gregbate Heh as long as you didn’t sing along it’s probably cool.","","","","" -"493802452152381441","","","2014-07-28 16:57:33 +0000","Tweetbot for Mac","RT @steipete: The number on Unread’s app are quite saddening. Being Indie in the App Store is really hard. http://t.co/yQJa2l4e7W","493792541083725824","25401953","2014-07-28 16:18:10 +0000","http://blog.jaredsinclair.com/post/93118460565/a-candid-look-at-unreads-first-year,http://blog.jaredsinclair.com/post/93118460565/a-candid-look-at-unreads-first-year" +"493802452152381441","","","2014-07-28 16:57:33 +0000","Tweetbot for Mac","RT @steipete: The number on Unread’s app are quite saddening. Being Indie in the App Store is really hard. http://t.co/yQJa2l4e7W","493792541083725824","25401953","2014-07-28 16:18:10 +0000","http://blog.jaredsinclair.com/post/93118460565/a-candid-look-at-unreads-first-year,http://blog.jaredsinclair.com/post/93118460565/a-candid-look-at-unreads-first-year" "493561634028142593","493560475649441792","894911","2014-07-28 01:00:38 +0000","Tweetbot for iΟS","@JimRoepcke 😫","","","","" "493559969195634690","","894911","2014-07-28 00:54:01 +0000","Tweetbot for iΟS","@JimRoepcke Nacho burger is still on the menu.","","","","" "493557167790637060","","","2014-07-28 00:42:53 +0000","Tweetbot for iΟS","Danger Zone at 1550s. Oh yeah! http://t.co/cA9QBMUMjb","","","","http://thechive.com/2013/10/11/the-archer-team-archer-ized-the-danger-zone-music-video-from-top-gun-and-its-everything-youd-hope-for-video/" -"493536152079433730","","","2014-07-27 23:19:22 +0000","Twitterrific","RT @kuvos: Building ze parser: http://t.co/j109LJ3rBs On how the build steps of my parser work, inc prototype->closure transformations (/cc…","493518825074470913","31151313","2014-07-27 22:10:31 +0000","http://qfox.nl/weblog/323,http://qfox.nl/weblog/323" -"493502337277652992","","","2014-07-27 21:05:00 +0000","Twitterrific","Bureaucratic organizations have the absolute worst websites. What a joke. ""Usable by humans"" must not be in the requirements document.","","","","" +"493536152079433730","","","2014-07-27 23:19:22 +0000","Twitterrific for iOS","RT @kuvos: Building ze parser: http://t.co/j109LJ3rBs On how the build steps of my parser work, inc prototype->closure transformations (/cc…","493518825074470913","31151313","2014-07-27 22:10:31 +0000","http://qfox.nl/weblog/323,http://qfox.nl/weblog/323" +"493502337277652992","","","2014-07-27 21:05:00 +0000","Twitterrific for iOS","Bureaucratic organizations have the absolute worst websites. What a joke. ""Usable by humans"" must not be in the requirements document.","","","","" "493488546024407040","493484672228147201","108814849","2014-07-27 20:10:12 +0000","Tweetbot for iΟS","@snarfmason I should have blasted to Used Victoria too. Next time.","","","","" "493475197920354304","","","2014-07-27 19:17:10 +0000","Tweetbot for iΟS","All systems “go” as control restored to beleagured sex gecko satellite http://t.co/tWW0r5WbTl by @Lee_Ars via @arstechnica","","","","http://ars.to/1xipbvt" -"493474155795214336","","","2014-07-27 19:13:01 +0000","Twitterrific","RT @drdrang: @marcoarment Being able to make a Played playlist would be nice, but only if everything in it can be deleted at once. One at a…","493469270039203844","10697232","2014-07-27 18:53:36 +0000","" -"493473840517763072","","","2014-07-27 19:11:46 +0000","Twitterrific","RT @siracusa: @marcoarment A ""delete after…"" setting with possible values between 0 and infinity covers a lot of bases.","493463897471721472","636923","2014-07-27 18:32:15 +0000","" -"493473650272894977","493461232628686848","14231571","2014-07-27 19:11:01 +0000","Twitterrific","@marcoarment I don't want to be the janitor. I want a middle ground. Castro does a good job of this with its storage quota. Set and forget.","","","","" -"493225642087837696","493189279599058944","1086485478","2014-07-27 02:45:31 +0000","Twitterrific",".@History_Pics Don't we all. 🍻","","","","" +"493474155795214336","","","2014-07-27 19:13:01 +0000","Twitterrific for iOS","RT @drdrang: @marcoarment Being able to make a Played playlist would be nice, but only if everything in it can be deleted at once. One at a…","493469270039203844","10697232","2014-07-27 18:53:36 +0000","" +"493473840517763072","","","2014-07-27 19:11:46 +0000","Twitterrific for iOS","RT @siracusa: @marcoarment A ""delete after…"" setting with possible values between 0 and infinity covers a lot of bases.","493463897471721472","636923","2014-07-27 18:32:15 +0000","" +"493473650272894977","493461232628686848","14231571","2014-07-27 19:11:01 +0000","Twitterrific for iOS","@marcoarment I don't want to be the janitor. I want a middle ground. Castro does a good job of this with its storage quota. Set and forget.","","","","" +"493225642087837696","493189279599058944","1086485478","2014-07-27 02:45:31 +0000","Twitterrific for iOS",".@History_Pics Don't we all. 🍻","","","","" "493193216816996352","493122791558750208","894911","2014-07-27 00:36:40 +0000","Tweetbot for iΟS","@JimRoepcke Erlang is the new Lisp. We need Greenspun’s tenth rule for Erlang.","","","","" -"493191264515260416","493158420761939968","14273142","2014-07-27 00:28:55 +0000","Twitterrific","@lunafiko After my complaining, I mistyped my phone number to someone and missed them stopping by. Instant karma.","","","","" +"493191264515260416","493158420761939968","14273142","2014-07-27 00:28:55 +0000","Twitterrific for iOS","@lunafiko After my complaining, I mistyped my phone number to someone and missed them stopping by. Instant karma.","","","","" "493144071813074944","","","2014-07-26 21:21:23 +0000","Tweetbot for iΟS","Two people actually showed up! Paid for my beer and pizza while I clean this place up to hand back over.","","","","" "493137271369891840","","","2014-07-26 20:54:22 +0000","Tweetbot for iΟS","I doubt I’ll bother selling anything on Craigslist again. eBay, thrift shop, or the dump.","","","","" "493137016272326656","","","2014-07-26 20:53:21 +0000","Tweetbot for iΟS","Selling things on Craigslist has been a big waste of time so far. Lots of supposed interest that disappears befor even seeing items.","","","","" "493099301954805761","","","2014-07-26 18:23:29 +0000","Tweetbot for iΟS","This was a small hit in Canada during the 90s. http://t.co/pHxFEzdY1S","","","","http://m.youtube.com/watch?v=-00zjEq9PNs" "492869282699567104","","","2014-07-26 03:09:28 +0000","Twitter for Websites","I found this on Karma Swipe - Mobile Reddit http://t.co/9xLMHiBaKh #karmaswipe","","","","http://imgur.com/ah1H0Lu" "492855966795173889","","","2014-07-26 02:16:33 +0000","Tweetbot for iΟS","Awww, the new @Netflix app for Apple TV automatically plays the next episode. Can I turn this off? I do not like it at all.","","","","" -"492850948427874304","492839809249857537","14231571","2014-07-26 01:56:37 +0000","Twitterrific","@marcoarment And there isn't a version of Requiem for current versions of iTunes. Buying video on iTunes is now much riskier.","","","","" -"492718092267438080","","","2014-07-25 17:08:42 +0000","Twitterrific","RT @pourmecoffee: Your headline of the day from @arstechnica http://t.co/b51cQWMLlU http://t.co/PgTyoGr9uZ","492473269535387648","16906137","2014-07-25 00:55:51 +0000","http://arstechnica.com/science/2014/07/outlook-grim-for-orbiting-russian-zero-g-sex-geckos-2/,https://twitter.com/pourmecoffee/status/492473269535387648/photo/1,http://arstechnica.com/science/2014/07/outlook-grim-for-orbiting-russian-zero-g-sex-geckos-2/,https://twitter.com/pourmecoffee/status/492473269535387648/photo/1" -"492717991243444225","492560339469627393","110520327","2014-07-25 17:08:18 +0000","Twitterrific","@asymco When we were teenagers old people didn't use the internet. Now we are those old people, still using the internet.","","","","" -"492716296341958656","492704377434423297","128721761","2014-07-25 17:01:33 +0000","Twitterrific","@rexytseng Yes! I loved the first one.","","","","" -"492714541801684992","","","2014-07-25 16:54:35 +0000","Twitterrific","RT @bzamayo: This was added in the latest beta, but I somehow missed it until today when @apollozac mentioned it. http://t.co/XfnxM8EUQH","492701276518776832","167398227","2014-07-25 16:01:52 +0000","https://twitter.com/bzamayo/status/492701276518776832/photo/1,https://twitter.com/bzamayo/status/492701276518776832/photo/1" -"492712283491946496","492683882387763200","2646180810","2014-07-25 16:45:37 +0000","Twitterrific","@israeledits It's so easy to use a proxy or VPN. Eventually that was going to happen anyway.","","","","" +"492850948427874304","492839809249857537","14231571","2014-07-26 01:56:37 +0000","Twitterrific for iOS","@marcoarment And there isn't a version of Requiem for current versions of iTunes. Buying video on iTunes is now much riskier.","","","","" +"492718092267438080","","","2014-07-25 17:08:42 +0000","Twitterrific for iOS","RT @pourmecoffee: Your headline of the day from @arstechnica http://t.co/b51cQWMLlU http://t.co/PgTyoGr9uZ","492473269535387648","16906137","2014-07-25 00:55:51 +0000","http://arstechnica.com/science/2014/07/outlook-grim-for-orbiting-russian-zero-g-sex-geckos-2/,https://twitter.com/pourmecoffee/status/492473269535387648/photo/1,http://arstechnica.com/science/2014/07/outlook-grim-for-orbiting-russian-zero-g-sex-geckos-2/,https://twitter.com/pourmecoffee/status/492473269535387648/photo/1" +"492717991243444225","492560339469627393","110520327","2014-07-25 17:08:18 +0000","Twitterrific for iOS","@asymco When we were teenagers old people didn't use the internet. Now we are those old people, still using the internet.","","","","" +"492716296341958656","492704377434423297","128721761","2014-07-25 17:01:33 +0000","Twitterrific for iOS","@rexytseng Yes! I loved the first one.","","","","" +"492714541801684992","","","2014-07-25 16:54:35 +0000","Twitterrific for iOS","RT @bzamayo: This was added in the latest beta, but I somehow missed it until today when @apollozac mentioned it. http://t.co/XfnxM8EUQH","492701276518776832","167398227","2014-07-25 16:01:52 +0000","https://twitter.com/bzamayo/status/492701276518776832/photo/1,https://twitter.com/bzamayo/status/492701276518776832/photo/1" +"492712283491946496","492683882387763200","2646180810","2014-07-25 16:45:37 +0000","Twitterrific for iOS","@israeledits It's so easy to use a proxy or VPN. Eventually that was going to happen anyway.","","","","" "492485131861389312","","","2014-07-25 01:43:00 +0000","iOS","Let's not make this a thing. Remember mouse trails? We don't need another mouse trails. https://t.co/NJI3w8CmWb","","","","https://github.com/bfeher/BFPaperCheckbox" -"492421292000149505","492390381837774848","15292261","2014-07-24 21:29:19 +0000","Tweetbot for Mac","@gregbate Oh man… I would be rabid.","","","","" -"492420344880177152","","","2014-07-24 21:25:33 +0000","Tweetbot for Mac","Don’t get attached to __conversion.","","","","" -"492377679035781120","492341225362427905","14308739","2014-07-24 18:36:01 +0000","Tweetbot for Mac","@gisikw I just discarded my first reply to this. It said: “You’re not alone, but my ratio is different.”","","","","" -"492337691921367040","492315996024492032","14106454","2014-07-24 15:57:07 +0000","Twitterrific","@srbaker Yup. Moisture really messes with it.","","","","" -"492329814808748032","492222775235719168","18209839","2014-07-24 15:25:49 +0000","Twitterrific","@gregminton @gruber @joshuatopolsky People complain if they get less than 7 just for showing up, and @anandshimpi wasn't having any of that.","","","","" -"492329464089427968","492222775235719168","18209839","2014-07-24 15:24:25 +0000","Twitterrific","@gregminton @gruber @joshuatopolsky An episode of the @anandtech podcast touched on ratings. Anand tried them but people don't like 5 avg.","","","","" -"492328889310400513","492290971976368128","286715690","2014-07-24 15:22:08 +0000","Twitterrific","@thomholwerda @gregminton @gruber @joshuatopolsky @marcoarment They should put that disclaimer in bold above the rating then. IGNORE THIS","","","","" +"492421292000149505","492390381837774848","15292261","2014-07-24 21:29:19 +0000","Tweetbot for Mac","@gregbate Oh man… I would be rabid.","","","","" +"492420344880177152","","","2014-07-24 21:25:33 +0000","Tweetbot for Mac","Don’t get attached to __conversion.","","","","" +"492377679035781120","492341225362427905","14308739","2014-07-24 18:36:01 +0000","Tweetbot for Mac","@gisikw I just discarded my first reply to this. It said: “You’re not alone, but my ratio is different.”","","","","" +"492337691921367040","492315996024492032","14106454","2014-07-24 15:57:07 +0000","Twitterrific for iOS","@srbaker Yup. Moisture really messes with it.","","","","" +"492329814808748032","492222775235719168","18209839","2014-07-24 15:25:49 +0000","Twitterrific for iOS","@gregminton @gruber @joshuatopolsky People complain if they get less than 7 just for showing up, and @anandshimpi wasn't having any of that.","","","","" +"492329464089427968","492222775235719168","18209839","2014-07-24 15:24:25 +0000","Twitterrific for iOS","@gregminton @gruber @joshuatopolsky An episode of the @anandtech podcast touched on ratings. Anand tried them but people don't like 5 avg.","","","","" +"492328889310400513","492290971976368128","286715690","2014-07-24 15:22:08 +0000","Twitterrific for iOS","@thomholwerda @gregminton @gruber @joshuatopolsky @marcoarment They should put that disclaimer in bold above the rating then. IGNORE THIS","","","","" "492153792045920257","","","2014-07-24 03:46:22 +0000","Tweetbot for iΟS","Two episodes into Twin Peaks and so far I like what I see.","","","","" -"492084043765145601","","","2014-07-23 23:09:13 +0000","Tweetbot for Mac","RT @BCAppelbaum: That time Americans wouldn't buy 1/3 lb burger bc they thought quarter pounder had more beef. http://t.co/5kKMKle6T7 http:…","492046871615901696","87271106","2014-07-23 20:41:30 +0000","http://nyti.ms/1jVY0WA,http://nyti.ms/1jVY0WA,https://twitter.com/BCAppelbaum/status/492046871615901696/photo/1" -"492033101145456640","492009129314381824","18763491","2014-07-23 19:46:47 +0000","Tweetbot for Mac","@avbelow @Cocoanetics Just out today, AnandTech’s Best SSDs: July 2014 http://t.co/oqRqYvLRNS","","","","http://www.anandtech.com/show/8260/best-ssds-july-2014" +"492084043765145601","","","2014-07-23 23:09:13 +0000","Tweetbot for Mac","RT @BCAppelbaum: That time Americans wouldn't buy 1/3 lb burger bc they thought quarter pounder had more beef. http://t.co/5kKMKle6T7 http:…","492046871615901696","87271106","2014-07-23 20:41:30 +0000","http://nyti.ms/1jVY0WA,http://nyti.ms/1jVY0WA,https://twitter.com/BCAppelbaum/status/492046871615901696/photo/1" +"492033101145456640","492009129314381824","18763491","2014-07-23 19:46:47 +0000","Tweetbot for Mac","@avbelow @Cocoanetics Just out today, AnandTech’s Best SSDs: July 2014 http://t.co/oqRqYvLRNS","","","","http://www.anandtech.com/show/8260/best-ssds-july-2014" "491639932713050113","","","2014-07-22 17:44:28 +0000","Twitter for Websites","From Grumpy Cat to Ukraine: How Mashable is expanding beyond gadgets and apps http://t.co/ridgK6S6hr via @NiemanLab","","","","http://www.niemanlab.org/2014/07/from-grumpy-cat-to-ukraine-how-mashable-is-expanding-beyond-gadgets-and-apps/" "491617954476224514","","","2014-07-22 16:17:08 +0000","Tweetbot for iΟS","RT @danielpunkass: On Yosemite? @@ -3027,120 +3127,118 @@ Radar #…","491575472397230081","666043","2014-07-22 13:28:20 +0000","" "491617826818367489","491616808181317632","108814849","2014-07-22 16:16:38 +0000","Tweetbot for iΟS","@snarfmason @gregbate I can get Moon growlers. Okay 11.30 at Moon it is!","","","","" "491616383981993986","491616040221044736","108814849","2014-07-22 16:10:54 +0000","Tweetbot for iΟS","@snarfmason @gregbate Moon is good for me. Might fill a growler or two at Hoyne. What time?","","","","" "491615619645579265","491610387091968000","108814849","2014-07-22 16:07:52 +0000","Tweetbot for iΟS","@snarfmason @gregbate Yeah I am! Were you thinking Moon?","","","","" -"491600080755892224","491587750278475776","3803101","2014-07-22 15:06:07 +0000","Tweetbot for Mac","@StuFFmc @Cocoanetics Here are a few. http://t.co/mYzKl26njN","","","","https://twitter.com/_sjs/status/491600080755892224/photo/1" -"491385196734717952","491361393074270208","2613454796","2014-07-22 00:52:15 +0000","Tweetbot for Mac","@gccaedits yes","","","","" -"491384860112474113","491352897804697600","15292261","2014-07-22 00:50:54 +0000","Tweetbot for Mac","@gregbate Nice find, you should host it somewhere! Did you ever fill in the content?","","","","" -"491081100433690624","491080616746569728","5488172","2014-07-21 04:43:52 +0000","Twitterrific","@rwongphoto @chuq @georgegibbs Of course, I could have made that letter up. It was all so pointless.","","","","" -"491080970997485569","491080616746569728","5488172","2014-07-21 04:43:21 +0000","Twitterrific","@rwongphoto @chuq @georgegibbs No, I was already on ""the list"" so I got a letter from my client. They had asked for something like that.","","","","" +"491600080755892224","491587750278475776","3803101","2014-07-22 15:06:07 +0000","Tweetbot for Mac","@StuFFmc @Cocoanetics Here are a few. http://t.co/mYzKl26njN","","","","https://twitter.com/_sjs/status/491600080755892224/photo/1" +"491385196734717952","491361393074270208","2613454796","2014-07-22 00:52:15 +0000","Tweetbot for Mac","@gccaedits yes","","","","" +"491384860112474113","491352897804697600","15292261","2014-07-22 00:50:54 +0000","Tweetbot for Mac","@gregbate Nice find, you should host it somewhere! Did you ever fill in the content?","","","","" +"491081100433690624","491080616746569728","5488172","2014-07-21 04:43:52 +0000","Twitterrific for iOS","@rwongphoto @chuq @georgegibbs Of course, I could have made that letter up. It was all so pointless.","","","","" +"491080970997485569","491080616746569728","5488172","2014-07-21 04:43:21 +0000","Twitterrific for iOS","@rwongphoto @chuq @georgegibbs No, I was already on ""the list"" so I got a letter from my client. They had asked for something like that.","","","","" "491080350374707200","491079848719163392","5488172","2014-07-21 04:40:54 +0000","Tweetbot for iΟS","@rwongphoto @chuq @georgegibbs Had I said “pleasure” I would not have been asked a second question. People told me I should have lied.","","","","" "491080188579442688","491079848719163392","5488172","2014-07-21 04:40:15 +0000","Tweetbot for iΟS","@rwongphoto @chuq @georgegibbs I was meeting a client and they thought I was trying to immigrate illegally. Mistakenly said “business”.","","","","" -"491051963014840321","490977879702769664","13217612","2014-07-21 02:48:05 +0000","Twitterrific","@chuq @georgegibbs @rwongphoto I was recently denied entry to the USA. I'm Canadian. Luckily sanity prevailed and I made it the next day.","","","","" -"491051701667774465","","","2014-07-21 02:47:03 +0000","Twitterrific","RT @rwongphoto: Big dfference in experience btw Canada and US border crossings. Canada one camera, two questions. US 20 cameras, flash phot…","490975767107358720","5488172","2014-07-20 21:45:19 +0000","" -"490765646934720512","","","2014-07-20 07:50:22 +0000","Twitterrific","Otter Link. Nice. http://t.co/XqzVgzSvzt","","","","http://www.dorkly.com/post/63319/super-smash-otters" -"490356345028104192","","","2014-07-19 04:43:57 +0000","Twitterrific","RT @phillipsbeer: Great Canadian Beer Fest tickets go on sale tomorrow at 9 AM! Available at http://t.co/rDjN5y9DV0","490312902637649920","65141250","2014-07-19 01:51:20 +0000","http://etix.com,http://etix.com" -"490168653715750912","","","2014-07-18 16:18:08 +0000","Tweetbot for Mac","RT @arstechnica: Snowden: NSA employees routinely pass around intercepted nude photos http://t.co/EMkCplhP8N by @cfarivar","489811829775163392","717313","2014-07-17 16:40:15 +0000","http://ars.to/UcJ0r0,http://ars.to/UcJ0r0" -"490168541228695552","490155225777704960","14538248","2014-07-18 16:17:41 +0000","Tweetbot for Mac","@robynpeterson “declined to respond to questions […] if anyone at NSA had ever been terminated or […] punished for […] such behavior.”","","","","" -"490152725481410562","","","2014-07-18 15:14:51 +0000","Twitterrific","RT @oiledits: 18 de julio Wiki article edited anonymously by Petroleos Mexicanos http://t.co/dCvosjZ80Q","490137311452344320","2654817222","2014-07-18 14:13:36 +0000","http://es.wikipedia.org/w/index.php?diff=75652458&oldid=75649879,http://es.wikipedia.org/w/index.php?diff=75652458&oldid=75649879" -"489918248599572480","489917550265126912","14106454","2014-07-17 23:43:07 +0000","Tweetbot for Mac","@srbaker Pretty sure that’s called mayonnaise.","","","","" -"489855490977853440","489855029852258304","14106454","2014-07-17 19:33:44 +0000","Tweetbot for Mac","@srbaker @JimRoepcke That it’s not much work to manage libs, so do that instead of pulling in a big dependency that could cause problems.","","","","" -"489854946506846208","489844128398991360","14106454","2014-07-17 19:31:34 +0000","Tweetbot for Mac","@srbaker Ugh. That puts a damper on just trying to get shit done. +"491051963014840321","490977879702769664","13217612","2014-07-21 02:48:05 +0000","Twitterrific for iOS","@chuq @georgegibbs @rwongphoto I was recently denied entry to the USA. I'm Canadian. Luckily sanity prevailed and I made it the next day.","","","","" +"491051701667774465","","","2014-07-21 02:47:03 +0000","Twitterrific for iOS","RT @rwongphoto: Big dfference in experience btw Canada and US border crossings. Canada one camera, two questions. US 20 cameras, flash phot…","490975767107358720","5488172","2014-07-20 21:45:19 +0000","" +"490765646934720512","","","2014-07-20 07:50:22 +0000","Twitterrific for iOS","Otter Link. Nice. http://t.co/XqzVgzSvzt","","","","http://www.dorkly.com/post/63319/super-smash-otters" +"490356345028104192","","","2014-07-19 04:43:57 +0000","Twitterrific for iOS","RT @phillipsbeer: Great Canadian Beer Fest tickets go on sale tomorrow at 9 AM! Available at http://t.co/rDjN5y9DV0","490312902637649920","65141250","2014-07-19 01:51:20 +0000","http://etix.com,http://etix.com" +"490168653715750912","","","2014-07-18 16:18:08 +0000","Tweetbot for Mac","RT @arstechnica: Snowden: NSA employees routinely pass around intercepted nude photos http://t.co/EMkCplhP8N by @cfarivar","489811829775163392","717313","2014-07-17 16:40:15 +0000","http://ars.to/UcJ0r0,http://ars.to/UcJ0r0" +"490168541228695552","490155225777704960","14538248","2014-07-18 16:17:41 +0000","Tweetbot for Mac","@robynpeterson “declined to respond to questions […] if anyone at NSA had ever been terminated or […] punished for […] such behavior.”","","","","" +"490152725481410562","","","2014-07-18 15:14:51 +0000","Twitterrific for iOS","RT @oiledits: 18 de julio Wiki article edited anonymously by Petroleos Mexicanos http://t.co/dCvosjZ80Q","490137311452344320","2654817222","2014-07-18 14:13:36 +0000","http://es.wikipedia.org/w/index.php?diff=75652458&oldid=75649879,http://es.wikipedia.org/w/index.php?diff=75652458&oldid=75649879" +"489918248599572480","489917550265126912","14106454","2014-07-17 23:43:07 +0000","Tweetbot for Mac","@srbaker Pretty sure that’s called mayonnaise.","","","","" +"489855490977853440","489855029852258304","14106454","2014-07-17 19:33:44 +0000","Tweetbot for Mac","@srbaker @JimRoepcke That it’s not much work to manage libs, so do that instead of pulling in a big dependency that could cause problems.","","","","" +"489854946506846208","489844128398991360","14106454","2014-07-17 19:31:34 +0000","Tweetbot for Mac","@srbaker Ugh. That puts a damper on just trying to get shit done. Hey @JimRoepcke, you were right.","","","","" -"489843493309665281","489842881650524160","14106454","2014-07-17 18:46:04 +0000","Tweetbot for Mac","@srbaker What happened? I haven’t used CocoaPods but I am interested.","","","","" -"489841658159054848","489841397760278528","3436771","2014-07-17 18:38:46 +0000","Tweetbot for Mac","@elagerway Aside from that it really does look nice.","","","","" -"489841452340350976","489841397760278528","3436771","2014-07-17 18:37:57 +0000","Tweetbot for Mac","@elagerway Animal! ;-)","","","","" -"489841008562020352","489837857985818624","3436771","2014-07-17 18:36:11 +0000","Tweetbot for Mac","@elagerway What about when you see the black section at the bottom? BAAAARF","","","","" +"489843493309665281","489842881650524160","14106454","2014-07-17 18:46:04 +0000","Tweetbot for Mac","@srbaker What happened? I haven’t used CocoaPods but I am interested.","","","","" +"489841658159054848","489841397760278528","3436771","2014-07-17 18:38:46 +0000","Tweetbot for Mac","@elagerway Aside from that it really does look nice.","","","","" +"489841452340350976","489841397760278528","3436771","2014-07-17 18:37:57 +0000","Tweetbot for Mac","@elagerway Animal! ;-)","","","","" +"489841008562020352","489837857985818624","3436771","2014-07-17 18:36:11 +0000","Tweetbot for Mac","@elagerway What about when you see the black section at the bottom? BAAAARF","","","","" "489807450971713536","489807146813362176","108814849","2014-07-17 16:22:51 +0000","Tweetbot for iΟS","@snarfmason @gregbate Next week is probably better for me. What about Tuesday?","","","","" -"489635184279429120","","","2014-07-17 04:58:19 +0000","Tweetbot for Mac","The iOS 8 beta on my iPad didn’t even last a day. The new keyboard was nice but Safari not working is a deal-breaker.","","","","" -"489611105090555904","","","2014-07-17 03:22:38 +0000","Twitterrific","I shared a Reminders list from iOS 8 with @fyrite, who is using iOS 7, and it worked. And it syncs. Oh happy day!","","","","" -"489600603543199744","489597251799752704","14308739","2014-07-17 02:40:54 +0000","Twitterrific","@gisikw I'm so sorry to hear that. Are you okay?","","","","" -"489522948055646209","","","2014-07-16 21:32:20 +0000","Tweetbot for Mac","Anyone prefer @OvercastFM to Castro? If so, why?","","","","" -"489480566992293888","","","2014-07-16 18:43:55 +0000","Tweetbot for Mac","Ouch. “A podcast app without cellular downloads and variable speed is about as useful as a lifetime http://t.co/EjAqTVzELH subscription.”","","","","http://app.net" +"489635184279429120","","","2014-07-17 04:58:19 +0000","Tweetbot for Mac","The iOS 8 beta on my iPad didn’t even last a day. The new keyboard was nice but Safari not working is a deal-breaker.","","","","" +"489611105090555904","","","2014-07-17 03:22:38 +0000","Twitterrific for iOS","I shared a Reminders list from iOS 8 with @fyrite, who is using iOS 7, and it worked. And it syncs. Oh happy day!","","","","" +"489600603543199744","489597251799752704","14308739","2014-07-17 02:40:54 +0000","Twitterrific for iOS","@gisikw I'm so sorry to hear that. Are you okay?","","","","" +"489522948055646209","","","2014-07-16 21:32:20 +0000","Tweetbot for Mac","Anyone prefer @OvercastFM to Castro? If so, why?","","","","" +"489480566992293888","","","2014-07-16 18:43:55 +0000","Tweetbot for Mac","Ouch. “A podcast app without cellular downloads and variable speed is about as useful as a lifetime http://t.co/EjAqTVzELH subscription.”","","","","http://app.net" "489438813010132993","489438321114742784","108814849","2014-07-16 15:58:01 +0000","Tweetbot for iΟS","@snarfmason @srbaker Heh I saw that after I tweeted. That’s good! Voicemail is icky.","","","","" "489437696490606593","489436559448358913","108814849","2014-07-16 15:53:34 +0000","Tweetbot for iΟS","@snarfmason @srbaker I don’t have voicemail or any of their other extras. Just call display.","","","","" "489437583156330498","489436559448358913","108814849","2014-07-16 15:53:07 +0000","Tweetbot for iΟS","@snarfmason @srbaker Rogers charges $8 for call display alone but for some reason I get it free. Worth calling your operator about it.","","","","" -"489420255492456448","","","2014-07-16 14:44:16 +0000","Twitterrific","http://t.co/H3ijPoz3ma RT @mims: Working Mom Arrested for Letting Her 9-Year-Old Play Alone at Park http://t.co/Sqj5uZbpmE","","","","http://www.youtube.com/watch?v=VyFpOp8Ft0Q,http://www.theatlantic.com/national/archive/2014/07/arrested-for-letting-a-9-year-old-play-at-the-park-alone/374436/" -"489415392352559106","489343202105638912","128721761","2014-07-16 14:24:57 +0000","Twitterrific","@rexytseng @theretronaut Oohhh. Crazy!","","","","" +"489420255492456448","","","2014-07-16 14:44:16 +0000","Twitterrific for iOS","http://t.co/H3ijPoz3ma RT @mims: Working Mom Arrested for Letting Her 9-Year-Old Play Alone at Park http://t.co/Sqj5uZbpmE","","","","http://www.youtube.com/watch?v=VyFpOp8Ft0Q,http://www.theatlantic.com/national/archive/2014/07/arrested-for-letting-a-9-year-old-play-at-the-park-alone/374436/" +"489415392352559106","489343202105638912","128721761","2014-07-16 14:24:57 +0000","Twitterrific for iOS","@rexytseng @theretronaut Oohhh. Crazy!","","","","" "489279103778824193","","","2014-07-16 05:23:23 +0000","Tweetbot for iΟS","RT @drwave: My family uses emoji so much in texts, I wish I could zoom in in Messages so I could make them out...","489166824009764864","14092590","2014-07-15 21:57:13 +0000","" "489278821112111105","489243057351426050","28321706","2014-07-16 05:22:15 +0000","Tweetbot for iΟS","@theretronaut @rexytseng Why are they weighing them?!","","","","" -"489266358878601219","489266221473607682","271545671","2014-07-16 04:32:44 +0000","Tweetbot for Mac","@getcloak You got it :)","","","","" -"489263935653048320","489263628810719232","271545671","2014-07-16 04:23:07 +0000","Tweetbot for Mac","@getcloak I was visiting New York and saw it somewhat frequently there, being on Cloak the whole time. At home (Victoria BC) I never see it.","","","","" -"489215101300260864","","","2014-07-16 01:09:03 +0000","Tweetbot for Mac","If you like that last song and video then you might be a pedant. +"489266358878601219","489266221473607682","271545671","2014-07-16 04:32:44 +0000","Tweetbot for Mac","@getcloak You got it :)","","","","" +"489263935653048320","489263628810719232","271545671","2014-07-16 04:23:07 +0000","Tweetbot for Mac","@getcloak I was visiting New York and saw it somewhat frequently there, being on Cloak the whole time. At home (Victoria BC) I never see it.","","","","" +"489215101300260864","","","2014-07-16 01:09:03 +0000","Tweetbot for Mac","If you like that last song and video then you might be a pedant. *might be*","","","","" -"489214950909284352","","","2014-07-16 01:08:28 +0000","Tweetbot for Mac","This is my new favourite song. The video cements it. https://t.co/PQOIm68k63","","","","https://www.youtube.com/watch?v=8Gv0H-vPoDc" -"489203174759084033","489202706322432001","14180235","2014-07-16 00:21:40 +0000","Tweetbot for Mac","@daveeed Heh, but I get better support directly from Apple. One day we will have an island store. One day.","","","","" -"489200653713960960","","","2014-07-16 00:11:39 +0000","Tweetbot for Mac","Dayton, Ohio gets an Apple store and we still don’t have a single store anywhere on Vancouver Island. Hey @tim_cook, this is a problem.","","","","" -"489199098382123008","","","2014-07-16 00:05:28 +0000","Tweetbot for Mac","RT @seaottersdotcom: You really need to stop what you're doing and see how many birds joined the whales in this feeding frenzy. Amazing! ht…","489188560788934657","111741831","2014-07-15 23:23:36 +0000","http://seaotters.com/live" -"489198220182958081","","","2014-07-16 00:01:59 +0000","Tweetbot for Mac","RT @paul_irish: Sorry Flash. Heavy flash sites will now get a warning & smaller link in Google search results. http://t.co/zUwnmsgvMZ http:…","489178447122423809","1671811","2014-07-15 22:43:24 +0000","http://googlewebmastercentral.blogspot.com/2014/07/promoting-modern-websites-for-modern.html,http://googlewebmastercentral.blogspot.com/2014/07/promoting-modern-websites-for-modern.html,https://twitter.com/paul_irish/status/489178447122423809/photo/1" -"489177357194756097","","","2014-07-15 22:39:05 +0000","Tweetbot for Mac","RT @gccaedits: Small Dead Animals Wikipedia article edited anonymously by Canadian House of Commons http://t.co/yqfGVZDLSO","489105122547736576","2613454796","2014-07-15 17:52:03 +0000","http://en.wikipedia.org/w/index.php?diff=617076764&oldid=617076604,http://en.wikipedia.org/w/index.php?diff=617076764&oldid=617076604" -"489177310721896448","","","2014-07-15 22:38:54 +0000","Tweetbot for Mac","RT @gccaedits: Small Dead Animals Wikipedia article edited anonymously by Canadian House of Commons http://t.co/veeV38TShU","489104705302573057","2613454796","2014-07-15 17:50:23 +0000","http://en.wikipedia.org/w/index.php?diff=617076576&oldid=593416422,http://en.wikipedia.org/w/index.php?diff=617076576&oldid=593416422" -"488807510975848448","488807185304936448","14056827","2014-07-14 22:09:26 +0000","Tweetbot for Mac","@rob_rix Welcome to BC :)","","","","" -"488806409006366721","488776434924523520","14056827","2014-07-14 22:05:04 +0000","Tweetbot for Mac","@rob_rix I grew up in London. Came to university in Victoria and have been here ever since. I’m kind of in love with BC too.","","","","" -"488805610394107904","488754732899770368","9483652","2014-07-14 22:01:53 +0000","Tweetbot for Mac","@stolt45 @mislav If they allowed that they’d have to convert currencies. That seems insane. I wouldn’t do that either.","","","","" -"488737794718576640","488737477662765058","15292261","2014-07-14 17:32:25 +0000","Tweetbot for Mac","@gregbate @snarfmason @srbaker One of my concerns is gear. 2 desks, 2 chairs, 2 displays. Seems expensive :(","","","","" -"488729626970058752","488729109380354048","108814849","2014-07-14 16:59:57 +0000","Tweetbot for Mac","@snarfmason @gregbate Working with my friend & coworker who is in town this week. We can definitely meet up for lunch one day.","","","","" +"489214950909284352","","","2014-07-16 01:08:28 +0000","Tweetbot for Mac","This is my new favourite song. The video cements it. https://t.co/PQOIm68k63","","","","https://www.youtube.com/watch?v=8Gv0H-vPoDc" +"489203174759084033","489202706322432001","14180235","2014-07-16 00:21:40 +0000","Tweetbot for Mac","@daveeed Heh, but I get better support directly from Apple. One day we will have an island store. One day.","","","","" +"489200653713960960","","","2014-07-16 00:11:39 +0000","Tweetbot for Mac","Dayton, Ohio gets an Apple store and we still don’t have a single store anywhere on Vancouver Island. Hey @tim_cook, this is a problem.","","","","" +"489199098382123008","","","2014-07-16 00:05:28 +0000","Tweetbot for Mac","RT @seaottersdotcom: You really need to stop what you're doing and see how many birds joined the whales in this feeding frenzy. Amazing! ht…","489188560788934657","111741831","2014-07-15 23:23:36 +0000","http://seaotters.com/live" +"489198220182958081","","","2014-07-16 00:01:59 +0000","Tweetbot for Mac","RT @paul_irish: Sorry Flash. Heavy flash sites will now get a warning & smaller link in Google search results. http://t.co/zUwnmsgvMZ http:…","489178447122423809","1671811","2014-07-15 22:43:24 +0000","http://googlewebmastercentral.blogspot.com/2014/07/promoting-modern-websites-for-modern.html,http://googlewebmastercentral.blogspot.com/2014/07/promoting-modern-websites-for-modern.html,https://twitter.com/paul_irish/status/489178447122423809/photo/1" +"489177357194756097","","","2014-07-15 22:39:05 +0000","Tweetbot for Mac","RT @gccaedits: Small Dead Animals Wikipedia article edited anonymously by Canadian House of Commons http://t.co/yqfGVZDLSO","489105122547736576","2613454796","2014-07-15 17:52:03 +0000","http://en.wikipedia.org/w/index.php?diff=617076764&oldid=617076604,http://en.wikipedia.org/w/index.php?diff=617076764&oldid=617076604" +"489177310721896448","","","2014-07-15 22:38:54 +0000","Tweetbot for Mac","RT @gccaedits: Small Dead Animals Wikipedia article edited anonymously by Canadian House of Commons http://t.co/veeV38TShU","489104705302573057","2613454796","2014-07-15 17:50:23 +0000","http://en.wikipedia.org/w/index.php?diff=617076576&oldid=593416422,http://en.wikipedia.org/w/index.php?diff=617076576&oldid=593416422" +"488807510975848448","488807185304936448","14056827","2014-07-14 22:09:26 +0000","Tweetbot for Mac","@rob_rix Welcome to BC :)","","","","" +"488806409006366721","488776434924523520","14056827","2014-07-14 22:05:04 +0000","Tweetbot for Mac","@rob_rix I grew up in London. Came to university in Victoria and have been here ever since. I’m kind of in love with BC too.","","","","" +"488805610394107904","488754732899770368","9483652","2014-07-14 22:01:53 +0000","Tweetbot for Mac","@stolt45 @mislav If they allowed that they’d have to convert currencies. That seems insane. I wouldn’t do that either.","","","","" +"488737794718576640","488737477662765058","15292261","2014-07-14 17:32:25 +0000","Tweetbot for Mac","@gregbate @snarfmason @srbaker One of my concerns is gear. 2 desks, 2 chairs, 2 displays. Seems expensive :(","","","","" +"488729626970058752","488729109380354048","108814849","2014-07-14 16:59:57 +0000","Tweetbot for Mac","@snarfmason @gregbate Working with my friend & coworker who is in town this week. We can definitely meet up for lunch one day.","","","","" "488720296577224704","488719693998329856","108814849","2014-07-14 16:22:53 +0000","Tweetbot for iΟS","@snarfmason It would be pretty awesome. Keep me in the loop for sure!","","","","" "488715202238488577","488712389982822400","108814849","2014-07-14 16:02:38 +0000","Tweetbot for iΟS","@snarfmason @srbaker Oh ok. I’m not sure if I’m still up for sharing an office now that I have one at home. We’ll see how it goes.","","","","" "488710461680939008","488708001260265473","108814849","2014-07-14 15:43:48 +0000","Tweetbot for iΟS","@snarfmason It’s more expensive but you can have a private office and access to facilities. Close to Habit, too.","","","","" "488710344152326146","488708001260265473","108814849","2014-07-14 15:43:20 +0000","Tweetbot for iΟS","@snarfmason MetaLab is in the old Beta Street office. It’s mostly open. Maybe something like Regus in the Atrium? http://t.co/3eiFq8ky8j","","","","http://www.regus.ca/locations/office-space/bc-victoria-the-atrium" "488705582941995009","488691316097044481","14106454","2014-07-14 15:24:25 +0000","Tweetbot for iΟS","@srbaker @gregbate @snarfmason When are you coming to Victoria? There are some decent spaces. http://t.co/7zJHKFleSO and I think MetaLab.","","","","http://spacebarvictoria.com/" -"488704523121074176","","","2014-07-14 15:20:12 +0000","Tweetbot for iΟS","RT @congressedits: Lyndon LaRouche Wikipedia article edited anonymously by US House of Representatives http://t.co/VJcfyTQyL4","488681176862056449","2612261960","2014-07-14 13:47:26 +0000","http://en.wikipedia.org/w/index.php?diff=616911804&oldid=615306532,http://en.wikipedia.org/w/index.php?diff=616911804&oldid=615306532" -"488704339238584320","","","2014-07-14 15:19:28 +0000","Tweetbot for iΟS","RT @congressedits: Bohemian Grove Wikipedia article edited anonymously by US House of Representatives http://t.co/kxC4yLCKcK","488680962688307202","2612261960","2014-07-14 13:46:35 +0000","http://en.wikipedia.org/w/index.php?diff=616911728&oldid=616095553,http://en.wikipedia.org/w/index.php?diff=616911728&oldid=616095553" -"488505496890900480","488498438360010752","73963286","2014-07-14 02:09:21 +0000","Twitterrific","@bcapps Did you find this gem? http://t.co/ZOePsmXlhl","","","","http://www.vox.com/2014/7/9/5884941/turning-down-for-what-explained" +"488505496890900480","488498438360010752","73963286","2014-07-14 02:09:21 +0000","Twitterrific for iOS","@bcapps Did you find this gem? http://t.co/ZOePsmXlhl","","","","http://www.vox.com/2014/7/9/5884941/turning-down-for-what-explained" "488342175386578948","488340965254389760","108814849","2014-07-13 15:20:22 +0000","Tweetbot for iΟS","@snarfmason Great week in NYC! Mostly worked but it was still fun to work there. Nice to meet coworkers in person.","","","","" "488340613629108224","488118833299738624","809685","2014-07-13 15:14:09 +0000","Tweetbot for iΟS","@garybernhardt It’s all about cashing out now. Very few research labs. Let alone government funded research labs.","","","","" "488340157464997889","488113018085990400","222358903","2014-07-13 15:12:21 +0000","Tweetbot for iΟS","@Sarah_SLP That looks like a sweet setup!","","","","" "488337623237156864","488328700648124417","108814849","2014-07-13 15:02:16 +0000","Tweetbot for iΟS","@snarfmason Nice! Coincidental that we went out east at the same time. Good trip? I caught glimpses from @srbaker’s tweets.","","","","" "488336871252979712","488313928854695936","108814849","2014-07-13 14:59:17 +0000","Tweetbot for iΟS","@snarfmason True. WestJet is expanding their reach too. It’s good!","","","","" -"488177447423049728","","","2014-07-13 04:25:48 +0000","Twitterrific","Second flight today with an empty seat beside me. http://t.co/3W4jgPSpdr","","","","https://twitter.com/_sjs/status/488177447423049728/photo/1" +"488177447423049728","","","2014-07-13 04:25:48 +0000","Twitterrific for iOS","Second flight today with an empty seat beside me. http://t.co/3W4jgPSpdr","","","","https://twitter.com/_sjs/status/488177447423049728/photo/1" "488158465190158336","488104600092696578","108814849","2014-07-13 03:10:22 +0000","Tweetbot for iΟS","@snarfmason Nah, I just elided the boring stop in Calgary.","","","","" "488073743164784640","","","2014-07-12 21:33:43 +0000","Tweetbot for iΟS","🗽 JFK ✈️ YYJ 🌄","","","","" -"487826302825955328","","","2014-07-12 05:10:28 +0000","Twitterrific","Ok I'm going to sleep. Good night New York. It was amazing as per usual.","","","","" -"487826084554354688","","","2014-07-12 05:09:36 +0000","Twitterrific","RT @JimRoepcke: ilili on #Yelp: We stayed late and were the last ones in the dining room. What a beautiful place. http://t.co/gHYQVH0Gcy","487822243670405120","894911","2014-07-12 04:54:20 +0000","http://www.yelp.ca/biz_photos/ilili-new-york-2?pt=biz_photo&ref=twitter&select=3hAkeSKm-FxJLu7erQxJEQ,http://www.yelp.ca/biz_photos/ilili-new-york-2?pt=biz_photo&ref=twitter&select=3hAkeSKm-FxJLu7erQxJEQ" -"487824407331872768","487753752938434560","14538248","2014-07-12 05:02:56 +0000","Twitterrific","@robynpeterson @time I'll just stick with the cancer risk thanks.","","","","" -"487821627288469504","487725133834891264","809685","2014-07-12 04:51:53 +0000","Twitterrific","@garybernhardt Unmatched. I tried DuckDuckGo and it's good, but it doesn't know what I meant.","","","","" -"487821079269081088","487723671947984896","14272162","2014-07-12 04:49:43 +0000","Twitterrific","@jdalton Who's down with OCD? http://t.co/dPLUd2gQpW","","","","http://www.youtube.com/watch?v=6xGuGSDsDrM" -"487820229943513089","","","2014-07-12 04:46:20 +0000","Twitterrific","RT @dwiskus: An absolute requirement: http://t.co/l6P3LSCAzF","487699409950351360","2897431","2014-07-11 20:46:15 +0000","http://betterelevation.com/absolute-requirement/,http://betterelevation.com/absolute-requirement/" -"487819757421617152","487715806776934401","10930562","2014-07-12 04:44:28 +0000","Twitterrific","@nejcd @marcoarment It's 100% true. No disputing that.","","","","" -"487819454567694336","487747478431993857","91376719","2014-07-12 04:43:15 +0000","Twitterrific","@_tech_stuff_ @jeffkibuule @marcoarment Pretty sure nobody who isn't in the business has no fucking clue about Marco or his app.","","","","" +"487826302825955328","","","2014-07-12 05:10:28 +0000","Twitterrific for iOS","Ok I'm going to sleep. Good night New York. It was amazing as per usual.","","","","" +"487826084554354688","","","2014-07-12 05:09:36 +0000","Twitterrific for iOS","RT @JimRoepcke: ilili on #Yelp: We stayed late and were the last ones in the dining room. What a beautiful place. http://t.co/gHYQVH0Gcy","487822243670405120","894911","2014-07-12 04:54:20 +0000","http://www.yelp.ca/biz_photos/ilili-new-york-2?pt=biz_photo&ref=twitter&select=3hAkeSKm-FxJLu7erQxJEQ,http://www.yelp.ca/biz_photos/ilili-new-york-2?pt=biz_photo&ref=twitter&select=3hAkeSKm-FxJLu7erQxJEQ" +"487824407331872768","487753752938434560","14538248","2014-07-12 05:02:56 +0000","Twitterrific for iOS","@robynpeterson @time I'll just stick with the cancer risk thanks.","","","","" +"487821627288469504","487725133834891264","809685","2014-07-12 04:51:53 +0000","Twitterrific for iOS","@garybernhardt Unmatched. I tried DuckDuckGo and it's good, but it doesn't know what I meant.","","","","" +"487821079269081088","487723671947984896","14272162","2014-07-12 04:49:43 +0000","Twitterrific for iOS","@jdalton Who's down with OCD? http://t.co/dPLUd2gQpW","","","","http://www.youtube.com/watch?v=6xGuGSDsDrM" +"487820229943513089","","","2014-07-12 04:46:20 +0000","Twitterrific for iOS","RT @dwiskus: An absolute requirement: http://t.co/l6P3LSCAzF","487699409950351360","2897431","2014-07-11 20:46:15 +0000","http://betterelevation.com/absolute-requirement/,http://betterelevation.com/absolute-requirement/" +"487819757421617152","487715806776934401","10930562","2014-07-12 04:44:28 +0000","Twitterrific for iOS","@nejcd @marcoarment It's 100% true. No disputing that.","","","","" +"487819454567694336","487747478431993857","91376719","2014-07-12 04:43:15 +0000","Twitterrific for iOS","@_tech_stuff_ @jeffkibuule @marcoarment Pretty sure nobody who isn't in the business has no fucking clue about Marco or his app.","","","","" "487793313966481409","","","2014-07-12 02:59:23 +0000","Twitter Lite","At @ililiRestaurant eating amazing Mediterranean food. It doesn't get better than this.","","","","" "487792750478491648","","","2014-07-12 02:57:09 +0000","Tweetbot for iΟS","My family is Palestinian and I’ve lived in Kuwait, Saudi Arabia, and the UAE. I’m having some of the best Arabic food ever in NYC right now.","","","","" "487761873035853824","","271545671","2014-07-12 00:54:27 +0000","Tweetbot for iΟS","@Getcloak I see this a lot when I’m using Cloak 😔 http://t.co/UZr2nWAPwX","","","","https://twitter.com/_sjs/status/487761873035853824/photo/1" "487760675037782018","","","2014-07-12 00:49:41 +0000","Tweetbot for iΟS","RT @SwiftLang: Good to make your acquaintance.","473626189186076672","2526229286","2014-06-03 00:44:17 +0000","" -"487705407566385153","487705127101284352","15536076","2014-07-11 21:10:04 +0000","Tweetbot for Mac","@jeffkibuule @marcoarment I’m just razzing him. I think most developers understand why he hasn’t shipped yet. Just a joke :)","","","","" -"487704389852069888","","","2014-07-11 21:06:02 +0000","Tweetbot for Mac","“small developers can ship more apps, faster” -@marcoarment (who has spent almost a year talking about his new app that has yet to ship)","","","","" -"487699659167907840","","","2014-07-11 20:47:14 +0000","Tweetbot for Mac","RT @rob_rix: An official Swift blog! https://t.co/RE44Ij7p04 +"487705407566385153","487705127101284352","15536076","2014-07-11 21:10:04 +0000","Tweetbot for Mac","@jeffkibuule @marcoarment I’m just razzing him. I think most developers understand why he hasn’t shipped yet. Just a joke :)","","","","" +"487704389852069888","","","2014-07-11 21:06:02 +0000","Tweetbot for Mac","“small developers can ship more apps, faster” -@marcoarment (who has spent almost a year talking about his new app that has yet to ship)","","","","" +"487699659167907840","","","2014-07-11 20:47:14 +0000","Tweetbot for Mac","RT @rob_rix: An official Swift blog! https://t.co/RE44Ij7p04 h/t @dannygreg, @SwiftLang","487653205346906112","14056827","2014-07-11 17:42:38 +0000","https://developer.apple.com/swift/blog/,https://developer.apple.com/swift/blog/" -"487671450460241920","","","2014-07-11 18:55:08 +0000","Tweetbot for Mac","where… http://t.co/zHT3cGDZDU","","","","https://twitter.com/_sjs/status/487671450460241920/photo/1" -"487645513840615424","487645319807500290","108814849","2014-07-11 17:12:05 +0000","Tweetbot for Mac","@snarfmason It looked like a shitty camera too though. ¯\_(ツ)_/¯","","","","" -"487645389626286080","487645319807500290","108814849","2014-07-11 17:11:35 +0000","Tweetbot for Mac","@snarfmason It looked like a pretty shitty phone.","","","","" -"487645307543752705","487645244150648833","108814849","2014-07-11 17:11:15 +0000","Tweetbot for Mac","@snarfmason Ah, yeah well that too :)","","","","" -"487644962197340161","487644713806098434","108814849","2014-07-11 17:09:53 +0000","Tweetbot for Mac","@snarfmason Damn you and your logical reason for his seemingly strange behaviour! +"487671450460241920","","","2014-07-11 18:55:08 +0000","Tweetbot for Mac","where… http://t.co/zHT3cGDZDU","","","","https://twitter.com/_sjs/status/487671450460241920/photo/1" +"487645513840615424","487645319807500290","108814849","2014-07-11 17:12:05 +0000","Tweetbot for Mac","@snarfmason It looked like a shitty camera too though. ¯\_(ツ)_/¯","","","","" +"487645389626286080","487645319807500290","108814849","2014-07-11 17:11:35 +0000","Tweetbot for Mac","@snarfmason It looked like a pretty shitty phone.","","","","" +"487645307543752705","487645244150648833","108814849","2014-07-11 17:11:15 +0000","Tweetbot for Mac","@snarfmason Ah, yeah well that too :)","","","","" +"487644962197340161","487644713806098434","108814849","2014-07-11 17:09:53 +0000","Tweetbot for Mac","@snarfmason Damn you and your logical reason for his seemingly strange behaviour! He also might be taking one to send someone immediately.","","","","" -"487632459597885440","","","2014-07-11 16:20:12 +0000","Tweetbot for Mac","Trashy little subroutines: https://t.co/grpUAAYntG","","","","https://code.google.com/p/virtualagc/source/browse/trunk/Luminary099/LUNAR_LANDING_GUIDANCE_EQUATIONS.s?r=258#1374" -"487605230885175296","487600006665220096","7854152","2014-07-11 14:32:00 +0000","Tweetbot for Mac","@dtome @voxdotcom Hilarious, and useful for people like me who have no idea what anyone means in any lyrics ever.","","","","" +"487632459597885440","","","2014-07-11 16:20:12 +0000","Tweetbot for Mac","Trashy little subroutines: https://t.co/grpUAAYntG","","","","https://code.google.com/p/virtualagc/source/browse/trunk/Luminary099/LUNAR_LANDING_GUIDANCE_EQUATIONS.s?r=258#1374" +"487605230885175296","487600006665220096","7854152","2014-07-11 14:32:00 +0000","Tweetbot for Mac","@dtome @voxdotcom Hilarious, and useful for people like me who have no idea what anyone means in any lyrics ever.","","","","" "487596313161523201","","","2014-07-11 13:56:34 +0000","Tweetbot for iΟS","Just saw a guy with a point-and-shoot strapped to his wrist taking a photo with his phone.","","","","" -"487592224730144768","","","2014-07-11 13:40:20 +0000","Twitterrific","RT @xkcdrss: Timeghost http://t.co/cFOzz5qJdL","487472453594394624","14172171","2014-07-11 05:44:24 +0000","http://xkcd.com/1393/,http://xkcd.com/1393/" -"487585364706885632","","","2014-07-11 13:13:04 +0000","Twitterrific","How did he reel it in?! RT @History_Pics: The World's Record Black Sea Bass caught by Edward Llewellen in 1903. http://t.co/Q1bmPJp0GE","","","","https://twitter.com/History_Pics/status/487432349013905409/photo/1" -"487583968708296704","","","2014-07-11 13:07:31 +0000","Twitterrific","RT @GonzoHacker: As for the legacy I leave, that's some other sucker's problem.","487391413848395777","773009000","2014-07-11 00:22:23 +0000","" -"487583962706219008","","","2014-07-11 13:07:30 +0000","Twitterrific","RT @GonzoHacker: As a programmer, I don't worry about leaving a lasting legacy, I worry about inheriting one.","487391159325429760","773009000","2014-07-11 00:21:22 +0000","" -"487299744130428929","","","2014-07-10 18:18:07 +0000","Tweetbot for Mac","RT @rexytseng: I'M NUMBER ONE. I REGRET NOTHING. http://t.co/6t8jcxEyMS #legalweed #washington","487271606167683072","128721761","2014-07-10 16:26:18 +0000","http://nydn.us/1zqGWwz,http://nydn.us/1zqGWwz" -"487239154351493120","","","2014-07-10 14:17:21 +0000","Tweetbot for Mac","Is anyone using… http://t.co/beMv9XDU6E","","","","https://twitter.com/_sjs/status/487239154351493120/photo/1" -"487067209642962944","","","2014-07-10 02:54:06 +0000","Twitterrific","RT @mraleph: I heard these days they verify if all your code compiles without warnings before you are allowed to board a flight.","487019588304265217","53010195","2014-07-09 23:44:52 +0000","" +"487592224730144768","","","2014-07-11 13:40:20 +0000","Twitterrific for iOS","RT @xkcdrss: Timeghost http://t.co/cFOzz5qJdL","487472453594394624","14172171","2014-07-11 05:44:24 +0000","http://xkcd.com/1393/,http://xkcd.com/1393/" +"487585364706885632","","","2014-07-11 13:13:04 +0000","Twitterrific for iOS","How did he reel it in?! RT @History_Pics: The World's Record Black Sea Bass caught by Edward Llewellen in 1903. http://t.co/Q1bmPJp0GE","","","","https://twitter.com/History_Pics/status/487432349013905409/photo/1" +"487583968708296704","","","2014-07-11 13:07:31 +0000","Twitterrific for iOS","RT @GonzoHacker: As for the legacy I leave, that's some other sucker's problem.","487391413848395777","773009000","2014-07-11 00:22:23 +0000","" +"487583962706219008","","","2014-07-11 13:07:30 +0000","Twitterrific for iOS","RT @GonzoHacker: As a programmer, I don't worry about leaving a lasting legacy, I worry about inheriting one.","487391159325429760","773009000","2014-07-11 00:21:22 +0000","" +"487299744130428929","","","2014-07-10 18:18:07 +0000","Tweetbot for Mac","RT @rexytseng: I'M NUMBER ONE. I REGRET NOTHING. http://t.co/6t8jcxEyMS #legalweed #washington","487271606167683072","128721761","2014-07-10 16:26:18 +0000","http://nydn.us/1zqGWwz,http://nydn.us/1zqGWwz" +"487239154351493120","","","2014-07-10 14:17:21 +0000","Tweetbot for Mac","Is anyone using… http://t.co/beMv9XDU6E","","","","https://twitter.com/_sjs/status/487239154351493120/photo/1" +"487067209642962944","","","2014-07-10 02:54:06 +0000","Twitterrific for iOS","RT @mraleph: I heard these days they verify if all your code compiles without warnings before you are allowed to board a flight.","487019588304265217","53010195","2014-07-09 23:44:52 +0000","" "487043489872769024","487005980010356736","22196723","2014-07-10 01:19:51 +0000","Tweetbot for iΟS","@markkolich I call bullshit.","","","","" -"486912332862619648","486908886427766784","261980725","2014-07-09 16:38:41 +0000","Tweetbot for Mac","@saschaholesch @marcoarment Could be. I’m unsure if the API supports them or not.","","","","" -"486907407269130241","486900560289742848","261980725","2014-07-09 16:19:06 +0000","Tweetbot for Mac","@saschaholesch @marcoarment Not in third party apps or their mobile website. Terrible experience. I thought Twitter images were just broken.","","","","" +"486912332862619648","486908886427766784","261980725","2014-07-09 16:38:41 +0000","Tweetbot for Mac","@saschaholesch @marcoarment Could be. I’m unsure if the API supports them or not.","","","","" +"486907407269130241","486900560289742848","261980725","2014-07-09 16:19:06 +0000","Tweetbot for Mac","@saschaholesch @marcoarment Not in third party apps or their mobile website. Terrible experience. I thought Twitter images were just broken.","","","","" "486603456229425154","486579427900686336","14106454","2014-07-08 20:11:19 +0000","Tweetbot for iΟS","@srbaker SizeUp might fit the bill. I use SizeUp and Divvy. SizeUp is less flexible so it depends on your needs.","","","","" "486260668077600770","","","2014-07-07 21:29:12 +0000","Tweetbot for iΟS","Short guy in the exit row. And I didn’t even choose my seat. @JimRoepcke http://t.co/0ENKFD7f5L","","","","https://twitter.com/_sjs/status/486260668077600770/photo/1" "486259253334663168","486258984509136896","27302287","2014-07-07 21:23:34 +0000","Tweetbot for iΟS","@jacobrothstein Rats.","","","","" "486259131716612098","","","2014-07-07 21:23:05 +0000","Tweetbot for iΟS","RT @jacobrothstein: @_sjs Updated Jun 12, 2014 (screenshot from iTunes books page) http://t.co/fuHG3QVGtY","486258984509136896","27302287","2014-07-07 21:22:30 +0000","https://twitter.com/jacobrothstein/status/486258984509136896/photo/1,https://twitter.com/jacobrothstein/status/486258984509136896/photo/1" -"486258484862648321","","","2014-07-07 21:20:31 +0000","Twitterrific","I searched for the Swift book and found the update that way.","","","","" -"486258250245865472","","","2014-07-07 21:19:35 +0000","Twitterrific","RT @JimRoepcke: @_sjs the release notes say it's been updated.","486258091949056000","894911","2014-07-07 21:18:58 +0000","" -"486258042443288576","","","2014-07-07 21:18:46 +0000","Twitterrific","Looking at the range operator, my copy has not been updated,","","","","" -"486257734438760449","","","2014-07-07 21:17:32 +0000","Twitterrific","Anyone know if the Swift iBook has been updated? Or how to tell if an iBook has been updated in general?","","","","" +"486258484862648321","","","2014-07-07 21:20:31 +0000","Twitterrific for iOS","I searched for the Swift book and found the update that way.","","","","" +"486258250245865472","","","2014-07-07 21:19:35 +0000","Twitterrific for iOS","RT @JimRoepcke: @_sjs the release notes say it's been updated.","486258091949056000","894911","2014-07-07 21:18:58 +0000","" +"486258042443288576","","","2014-07-07 21:18:46 +0000","Twitterrific for iOS","Looking at the range operator, my copy has not been updated,","","","","" +"486257734438760449","","","2014-07-07 21:17:32 +0000","Twitterrific for iOS","Anyone know if the Swift iBook has been updated? Or how to tell if an iBook has been updated in general?","","","","" "486256855232950272","","","2014-07-07 21:14:03 +0000","Tweetbot for iΟS","I didn’t Elevate or walk yesterday, ending two good streaks. C’est la vie. https://t.co/7CNY6nuXSU http://t.co/NA6tsd3ZJx","","","","https://itunes.apple.com/ca/app/elevate-brain-training/id875063456?mt=8,https://twitter.com/_sjs/status/486256855232950272/photo/1" "486255811832737792","","","2014-07-07 21:09:54 +0000","Tweetbot for iΟS","RT @JimRoepcke: @_sjs http://t.co/rGTkdJmWCS","486254687239540737","894911","2014-07-07 21:05:26 +0000","https://twitter.com/JimRoepcke/status/486254687239540737/photo/1,https://twitter.com/JimRoepcke/status/486254687239540737/photo/1" "486254449472466944","","","2014-07-07 21:04:29 +0000","Tweetbot for iΟS","RT @JimRoepcke: Should I file a radar to describe the parts of Swift I don't want changed, to balance against those asking for changes? #no…","486254242697842688","894911","2014-07-07 21:03:40 +0000","" @@ -3151,35 +3249,35 @@ He also might be taking one to send someone immediately.","","","","" "486213469415686146","","","2014-07-07 18:21:39 +0000","Tweetbot for iΟS","Still a problem 20 years later. https://t.co/l4mZEmbSoQ","","","","https://twitter.com/wwwtxt/status/486180851081043968" "486213299638632448","","","2014-07-07 18:20:58 +0000","Tweetbot for iΟS","RT @wwwtxt: Has anyone else here seen the World Wide Web? It's one of the best new things on Internet. ☯94MAY","486180164108558336","207756340","2014-07-07 16:09:18 +0000","" "485836452995944450","485835756985135104","815114","2014-07-06 17:23:31 +0000","Tweetbot for iΟS","@jedschmidt @brooklyn_js Won’t be able to make it. I’m only in town for the week. I’ll be back though.","","","","" -"485831332048551936","","","2014-07-06 17:03:10 +0000","Twitterrific","🌄YYJ ✈️LGA 🗽","","","","" -"485106477598642176","485078360096141313","14231571","2014-07-04 17:02:51 +0000","Tweetbot for Mac","@marcoarment What you actually want from Bootstrap is normalization + about 20 lines of CSS. http://t.co/jqKI0Da61s","","","","http://www.adamkaplan.me/grid/" -"484827080132022275","484826910367551488","15292261","2014-07-03 22:32:38 +0000","Tweetbot for Mac","@gregbate Ha ha. Of course you are. I can’t keep up 😝","","","","" -"484826271277273088","484817880165257220","15292261","2014-07-03 22:29:25 +0000","Tweetbot for Mac","@gregbate TweetRM’s theme on April 1.","","","","" -"484782963964407809","","894911","2014-07-03 19:37:20 +0000","Tweetbot for Mac","@JimRoepcke I wonder if he read that article on optimal listicles.","","","","" -"484544471434924032","","","2014-07-03 03:49:39 +0000","Tweetbot for Mac","This mori: http://t.co/KiDYounWuw","","","","http://swannodette.github.io/mori/" -"484544002637590528","","","2014-07-03 03:47:47 +0000","Twitterrific","Added to my never-ending list of things to play with: mori. http://t.co/B58PqsS5k0","","","","http://youtu.be/SiFwRtCnxv4" -"484457496942108672","484377046542319617","13889622","2014-07-02 22:04:02 +0000","Tweetbot for Mac","@lukew @paul_irish This is unintentionally misleading, at best. I’ll give you the benefit of the doubt but this comparison smells fishy.","","","","" -"484384356161429504","","","2014-07-02 17:13:24 +0000","Tweetbot for Mac","Can you initiate a phone call or send an initial SMS message from your Mac with Yosemite and iOS 8?","","","","" -"484372975198552064","","","2014-07-02 16:28:11 +0000","Tweetbot for Mac","There was a contest to speed up my strftime JavaScript library by 50x. That explains the pull requests. https://t.co/otAAiKSfPP","","","","https://hola.org/challenge_js" -"484364591653064705","","","2014-07-02 15:54:52 +0000","Twitterrific","RT @3eanuts: April 24, 1986 — ""Do you?"" http://t.co/jnj57gsY1f","484336671857852418","273025851","2014-07-02 14:03:55 +0000","http://tmblr.co/ZfFJgx1KLazfS,http://tmblr.co/ZfFJgx1KLazfS" +"485831332048551936","","","2014-07-06 17:03:10 +0000","Twitterrific for iOS","🌄YYJ ✈️LGA 🗽","","","","" +"485106477598642176","485078360096141313","14231571","2014-07-04 17:02:51 +0000","Tweetbot for Mac","@marcoarment What you actually want from Bootstrap is normalization + about 20 lines of CSS. http://t.co/jqKI0Da61s","","","","http://www.adamkaplan.me/grid/" +"484827080132022275","484826910367551488","15292261","2014-07-03 22:32:38 +0000","Tweetbot for Mac","@gregbate Ha ha. Of course you are. I can’t keep up 😝","","","","" +"484826271277273088","484817880165257220","15292261","2014-07-03 22:29:25 +0000","Tweetbot for Mac","@gregbate TweetRM’s theme on April 1.","","","","" +"484782963964407809","","894911","2014-07-03 19:37:20 +0000","Tweetbot for Mac","@JimRoepcke I wonder if he read that article on optimal listicles.","","","","" +"484544471434924032","","","2014-07-03 03:49:39 +0000","Tweetbot for Mac","This mori: http://t.co/KiDYounWuw","","","","http://swannodette.github.io/mori/" +"484544002637590528","","","2014-07-03 03:47:47 +0000","Twitterrific for iOS","Added to my never-ending list of things to play with: mori. http://t.co/B58PqsS5k0","","","","http://youtu.be/SiFwRtCnxv4" +"484457496942108672","484377046542319617","13889622","2014-07-02 22:04:02 +0000","Tweetbot for Mac","@lukew @paul_irish This is unintentionally misleading, at best. I’ll give you the benefit of the doubt but this comparison smells fishy.","","","","" +"484384356161429504","","","2014-07-02 17:13:24 +0000","Tweetbot for Mac","Can you initiate a phone call or send an initial SMS message from your Mac with Yosemite and iOS 8?","","","","" +"484372975198552064","","","2014-07-02 16:28:11 +0000","Tweetbot for Mac","There was a contest to speed up my strftime JavaScript library by 50x. That explains the pull requests. https://t.co/otAAiKSfPP","","","","https://hola.org/challenge_js" +"484364591653064705","","","2014-07-02 15:54:52 +0000","Twitterrific for iOS","RT @3eanuts: April 24, 1986 — ""Do you?"" http://t.co/jnj57gsY1f","484336671857852418","273025851","2014-07-02 14:03:55 +0000","http://tmblr.co/ZfFJgx1KLazfS,http://tmblr.co/ZfFJgx1KLazfS" "484176308423766017","","","2014-07-02 03:26:42 +0000","Tweetbot for iΟS","I hope these new Emoji include some that convey rocking out. Can’t find any in the current set.","","","","" "484161290168848384","","","2014-07-02 02:27:01 +0000","Tweetbot for iΟS","iOS 7.1.2 isn’t autocorrecting “fuck” for me anymore. http://t.co/LdPx1X9K2I @gruber","","","","http://m.youtube.com/watch?v=hQ7lIRvb4-g" -"484091212534525952","","","2014-07-01 21:48:33 +0000","Tweetbot for Mac","☕️🍸🍻","","","","" +"484091212534525952","","","2014-07-01 21:48:33 +0000","Tweetbot for Mac","☕️🍸🍻","","","","" "483658929931419648","483658715472482304","15292261","2014-06-30 17:10:49 +0000","Tweetbot for iΟS","@gregbate Sounds plausible to me.","","","","" "483658283496927233","483657942328045568","15292261","2014-06-30 17:08:15 +0000","Tweetbot for iΟS","@gregbate It does, and I wonder why it may have been cut. Stealing too much focus from Bond?","","","","" "483651724024877056","483643343801307136","15292261","2014-06-30 16:42:11 +0000","Tweetbot for iΟS","@gregbate Well now I have to watch Skyfall again.","","","","" "483650891031920640","483640741575794688","13363282","2014-06-30 16:38:52 +0000","Tweetbot for iΟS","@ericasadun @Cocoanetics Sharing data between apps and their extensions.","","","","" "483330872825761792","","","2014-06-29 19:27:14 +0000","Tweetbot for iΟS","I’ve taken the iPhone’s ambient light sensor for granted all these years. I miss it so much now that I’m using an iPod touch with iOS 8.","","","","" -"483292550174748673","","","2014-06-29 16:54:57 +0000","Twitterrific","RT @raganwald: Repost: ""What's the difference between Currying and Partial Application?"" +"483292550174748673","","","2014-06-29 16:54:57 +0000","Twitterrific for iOS","RT @raganwald: Repost: ""What's the difference between Currying and Partial Application?"" http://t.co/7a2JITdwwX","483264588419301376","18137723","2014-06-29 15:03:51 +0000","http://raganwald.com/2013/03/07/currying-and-partial-application.html,http://raganwald.com/2013/03/07/currying-and-partial-application.html" "483110208869117952","","","2014-06-29 04:50:24 +0000","iOS","Things U Could of Said But U Didn't!!!! Because sometimes you just need 4 exclamation points. http://t.co/2BrmsKNU4V","","","","http://theworstthingsforsale.com/2014/06/28/things-u-could-of-said/" -"482995791091363840","482913529532788736","14308739","2014-06-28 21:15:44 +0000","Twitterrific","@gisikw GIF(331MB)","","","","" -"482994834026680320","482891592563314688","108814849","2014-06-28 21:11:56 +0000","Twitterrific","@snarfmason That's fucking awesome.","","","","" -"482695209189273600","","","2014-06-28 01:21:20 +0000","Twitterrific","RT @GonzoVice: Life has become immeasurably better since I have been forced to stop taking it seriously.","482679366841688064","874651740","2014-06-28 00:18:23 +0000","" -"482695057955229696","","","2014-06-28 01:20:44 +0000","Twitterrific","RT @relativesanity: Reminder: +"482995791091363840","482913529532788736","14308739","2014-06-28 21:15:44 +0000","Twitterrific for iOS","@gisikw GIF(331MB)","","","","" +"482994834026680320","482891592563314688","108814849","2014-06-28 21:11:56 +0000","Twitterrific for iOS","@snarfmason That's fucking awesome.","","","","" +"482695209189273600","","","2014-06-28 01:21:20 +0000","Twitterrific for iOS","RT @GonzoVice: Life has become immeasurably better since I have been forced to stop taking it seriously.","482679366841688064","874651740","2014-06-28 00:18:23 +0000","" +"482695057955229696","","","2014-06-28 01:20:44 +0000","Twitterrific for iOS","RT @relativesanity: Reminder: Junior Dev: thinks they know everything Regular Dev: thinks they know nothing @@ -3187,59 +3285,59 @@ Senior Dev: hates computers -…","481749485681668096","6040962","2014-06-25 10:43:22 +0000","" "482683436746809344","","18119839","2014-06-28 00:34:33 +0000","Tweetbot for iΟS","@caseyliss You probably heard about this by now, but look into node’s uncaught exception handler for the show bot.","","","","" -"482620744229060608","482620150235930624","15292261","2014-06-27 20:25:26 +0000","Tweetbot for Mac","@gregbate It didn’t seem ready when I looked at it last year, but I haven’t look again recently.","","","","" -"482620007524732928","","","2014-06-27 20:22:31 +0000","Tweetbot for Mac","RT @cramforce: Woot! Hangouts on the web is now plugin free and uses WebRTC https://t.co/knzxb4A24e","482600971562803200","15534471","2014-06-27 19:06:52 +0000","https://plus.google.com/103171586947853434456/posts/39TCW3PcLye,https://plus.google.com/103171586947853434456/posts/39TCW3PcLye" -"482619582377521154","482594869181816833","15292261","2014-06-27 20:20:49 +0000","Tweetbot for Mac","@gregbate Polymer looks really cool. Haven’t played with it yet though. You should be the guinea pig!","","","","" -"482578412322553856","","","2014-06-27 17:37:14 +0000","Tweetbot for Mac","RT @backblaze: There's no #WorldCup today, so what is everyone up to? Work?","482565436349759488","18236716","2014-06-27 16:45:40 +0000","" -"482564875776823296","","","2014-06-27 16:43:26 +0000","Twitterrific","Not all small components will be designed to work together. Not all big systems will be designed well. There's no panacea. Use what works.","","","","" -"482564486369259520","","","2014-06-27 16:41:53 +0000","Twitterrific","Some prefer cohesion, some prefer choice. Some prefer KDE, some Xmonad. None are wrong. As long as you're getting shit done it's fine.","","","","" -"482561581557891072","482560618260488192","676363","2014-06-27 16:30:21 +0000","Twitterrific","@brianleroux @jdalton Agreed. That's the best reason to worry that I have heard, though. And it's a legit concern.","","","","" -"482559860383301632","482523260576206848","14272162","2014-06-27 16:23:30 +0000","Twitterrific","@jdalton And sometimes one bigger thing can be better than 10 smaller things glued together. Sum of the parts. Everyone knows this.","","","","" -"482559573916536834","482523260576206848","14272162","2014-06-27 16:22:22 +0000","Twitterrific","@jdalton Small modules are fine, but you need more than that. Someone has to be looking at the bigger picture. They have to fit together.","","","","" -"482293203865858048","","","2014-06-26 22:43:55 +0000","Twitterrific","RT @GMinusG: New strip - Breakfast Gnomes. +"482620744229060608","482620150235930624","15292261","2014-06-27 20:25:26 +0000","Tweetbot for Mac","@gregbate It didn’t seem ready when I looked at it last year, but I haven’t look again recently.","","","","" +"482620007524732928","","","2014-06-27 20:22:31 +0000","Tweetbot for Mac","RT @cramforce: Woot! Hangouts on the web is now plugin free and uses WebRTC https://t.co/knzxb4A24e","482600971562803200","15534471","2014-06-27 19:06:52 +0000","https://plus.google.com/103171586947853434456/posts/39TCW3PcLye,https://plus.google.com/103171586947853434456/posts/39TCW3PcLye" +"482619582377521154","482594869181816833","15292261","2014-06-27 20:20:49 +0000","Tweetbot for Mac","@gregbate Polymer looks really cool. Haven’t played with it yet though. You should be the guinea pig!","","","","" +"482578412322553856","","","2014-06-27 17:37:14 +0000","Tweetbot for Mac","RT @backblaze: There's no #WorldCup today, so what is everyone up to? Work?","482565436349759488","18236716","2014-06-27 16:45:40 +0000","" +"482564875776823296","","","2014-06-27 16:43:26 +0000","Twitterrific for iOS","Not all small components will be designed to work together. Not all big systems will be designed well. There's no panacea. Use what works.","","","","" +"482564486369259520","","","2014-06-27 16:41:53 +0000","Twitterrific for iOS","Some prefer cohesion, some prefer choice. Some prefer KDE, some Xmonad. None are wrong. As long as you're getting shit done it's fine.","","","","" +"482561581557891072","482560618260488192","676363","2014-06-27 16:30:21 +0000","Twitterrific for iOS","@brianleroux @jdalton Agreed. That's the best reason to worry that I have heard, though. And it's a legit concern.","","","","" +"482559860383301632","482523260576206848","14272162","2014-06-27 16:23:30 +0000","Twitterrific for iOS","@jdalton And sometimes one bigger thing can be better than 10 smaller things glued together. Sum of the parts. Everyone knows this.","","","","" +"482559573916536834","482523260576206848","14272162","2014-06-27 16:22:22 +0000","Twitterrific for iOS","@jdalton Small modules are fine, but you need more than that. Someone has to be looking at the bigger picture. They have to fit together.","","","","" +"482293203865858048","","","2014-06-26 22:43:55 +0000","Twitterrific for iOS","RT @GMinusG: New strip - Breakfast Gnomes. http://t.co/6RebaBaZmp http://t.co/pWmsZYuShR","482281045161943041","16419203","2014-06-26 21:55:36 +0000","http://garfieldminusgarfield.net/post/89998482477/,http://fb.me/3buxesmWM,http://garfieldminusgarfield.net/post/89998482477/,http://fb.me/3buxesmWM" -"482278307350585346","482278023043903489","14231571","2014-06-26 21:44:43 +0000","Tweetbot for Mac","@marcoarment Maybe 100 MB? If someone wants to use their last space for podcasts they should be able to do so.","","","","" -"482264404163977216","","","2014-06-26 20:49:28 +0000","Tweetbot for Mac","It sure did take a long time to find the right checkbox.","","","","" +"482278307350585346","482278023043903489","14231571","2014-06-26 21:44:43 +0000","Tweetbot for Mac","@marcoarment Maybe 100 MB? If someone wants to use their last space for podcasts they should be able to do so.","","","","" +"482264404163977216","","","2014-06-26 20:49:28 +0000","Tweetbot for Mac","It sure did take a long time to find the right checkbox.","","","","" "482001965329555456","","266197818","2014-06-26 03:26:38 +0000","Twitter Web Client","@xscopeapp Typos on http://t.co/zJhNXMovxl 1) ""as a single icons"" 2) ""xScope longer forces""","","","","http://xscopeapp.com/features" -"482000332906459136","","","2014-06-26 03:20:09 +0000","Tweetbot for Mac","“@chockenberry: It's June 26th in some parts of the world.” +"482000332906459136","","","2014-06-26 03:20:09 +0000","Tweetbot for Mac","“@chockenberry: It's June 26th in some parts of the world.” https://t.co/URKz6VsKhk","","","","https://www.youtube.com/watch?v=OC4f3bKLXDg" "481976641896202240","","","2014-06-26 01:46:00 +0000","Tweetbot for iΟS","Martini Diavolo: add a drop or two of Tabasco to a Dirty Martini.","","","","" "481966743745609728","","","2014-06-26 01:06:40 +0000","Tweetbot for iΟS","Better video: http://t.co/rJaf8k0Egx … Gone Google!","","","","http://youtu.be/XgsJJjNRhDw" "481963536822718465","","","2014-06-26 00:53:56 +0000","Tweetbot for iΟS","Wat. http://t.co/euGrIUgSYd","","","","http://moby.to/f69hy4" -"481956095305318400","","","2014-06-26 00:24:22 +0000","Tweetbot for Mac","I’m rarely so happy to find a checkbox that I did not know about. http://t.co/xiWiity7Ud","","","","https://twitter.com/_sjs/status/481956095305318400/photo/1" -"481883543774040066","","","2014-06-25 19:36:04 +0000","Tweetbot for Mac","RT @BenedictEvans: Market share means lots of different things, depending on who and where you are: http://t.co/RiTFqOrgKn","481874619356286978","1236101","2014-06-25 19:00:36 +0000","https://twitter.com/BenedictEvans/status/481874619356286978/photo/1,https://twitter.com/BenedictEvans/status/481874619356286978/photo/1" -"481837072211144706","481836676705427456","33423","2014-06-25 16:31:24 +0000","Tweetbot for Mac","@gruber ‘At Google we say, “Focus on the user and all else will follow.”’ +"481956095305318400","","","2014-06-26 00:24:22 +0000","Tweetbot for Mac","I’m rarely so happy to find a checkbox that I did not know about. http://t.co/xiWiity7Ud","","","","https://twitter.com/_sjs/status/481956095305318400/photo/1" +"481883543774040066","","","2014-06-25 19:36:04 +0000","Tweetbot for Mac","RT @BenedictEvans: Market share means lots of different things, depending on who and where you are: http://t.co/RiTFqOrgKn","481874619356286978","1236101","2014-06-25 19:00:36 +0000","https://twitter.com/BenedictEvans/status/481874619356286978/photo/1,https://twitter.com/BenedictEvans/status/481874619356286978/photo/1" +"481837072211144706","481836676705427456","33423","2014-06-25 16:31:24 +0000","Tweetbot for Mac","@gruber ‘At Google we say, “Focus on the user and all else will follow.”’ They do? Huh.","","","","" -"481831282226102272","","","2014-06-25 16:08:24 +0000","Twitterrific","RT @siracusa: At least he didn't use a ""/"" https://t.co/pGUXJImDsS","481807431857872896","636923","2014-06-25 14:33:37 +0000","https://twitter.com/tim_cook/status/481798806028046336,https://twitter.com/tim_cook/status/481798806028046336" -"481831188584091648","","","2014-06-25 16:08:02 +0000","Twitterrific","Biggest ಠ_ಠ I can muster for @tim_cook tweeting ""OSX"". If he says ""oh ess ecks"" I will literally die. http://t.co/cOZW5hXOnP (╯°□°)╯︵ ┻━┻","","","","https://twitter.com/tim_cook/status/481798806028046336" -"481681763505143809","","","2014-06-25 06:14:16 +0000","Twitterrific","RT @SpinningSpoons: I just...love this: Hex clock, a clock that tells both what time and color it is http://t.co/J2zDKILYWI","481581963921223680","155125025","2014-06-24 23:37:42 +0000","http://www.jacopocolo.com/hexclock,http://www.jacopocolo.com/hexclock" +"481831282226102272","","","2014-06-25 16:08:24 +0000","Twitterrific for iOS","RT @siracusa: At least he didn't use a ""/"" https://t.co/pGUXJImDsS","481807431857872896","636923","2014-06-25 14:33:37 +0000","https://twitter.com/tim_cook/status/481798806028046336,https://twitter.com/tim_cook/status/481798806028046336" +"481831188584091648","","","2014-06-25 16:08:02 +0000","Twitterrific for iOS","Biggest ಠ_ಠ I can muster for @tim_cook tweeting ""OSX"". If he says ""oh ess ecks"" I will literally die. http://t.co/cOZW5hXOnP (╯°□°)╯︵ ┻━┻","","","","https://twitter.com/tim_cook/status/481798806028046336" +"481681763505143809","","","2014-06-25 06:14:16 +0000","Twitterrific for iOS","RT @SpinningSpoons: I just...love this: Hex clock, a clock that tells both what time and color it is http://t.co/J2zDKILYWI","481581963921223680","155125025","2014-06-24 23:37:42 +0000","http://www.jacopocolo.com/hexclock,http://www.jacopocolo.com/hexclock" "481669297836531712","481654113965318144","15292261","2014-06-25 05:24:44 +0000","Tweetbot for iΟS","@gregbate Yeah it’s ingrained.","","","","" -"481584689300271104","","","2014-06-24 23:48:32 +0000","Tweetbot for Mac","RT @siracusa: @Catfish_Man Luckily, Clang has excellent dead code elimination.","481584575949570048","636923","2014-06-24 23:48:04 +0000","" -"481584679007449089","","","2014-06-24 23:48:29 +0000","Tweetbot for Mac","RT @Catfish_Man: OH: “Actually, if you assume our codebase is haunted it explains an awful lot”","481584297669718016","15444008","2014-06-24 23:46:58 +0000","" -"481584130593812480","481582715213320192","8259712","2014-06-24 23:46:18 +0000","Tweetbot for Mac","@DanFrakes @TheMacalope Even if the Fire Phone attained 100% market share in the USA, it would have 0% in the rest of the world. Yawn.","","","","" -"481558446337032192","","","2014-06-24 22:04:15 +0000","Tweetbot for Mac","“changed equlity for better performance” https://t.co/U8lNBZm9Qk +"481584689300271104","","","2014-06-24 23:48:32 +0000","Tweetbot for Mac","RT @siracusa: @Catfish_Man Luckily, Clang has excellent dead code elimination.","481584575949570048","636923","2014-06-24 23:48:04 +0000","" +"481584679007449089","","","2014-06-24 23:48:29 +0000","Tweetbot for Mac","RT @Catfish_Man: OH: “Actually, if you assume our codebase is haunted it explains an awful lot”","481584297669718016","15444008","2014-06-24 23:46:58 +0000","" +"481584130593812480","481582715213320192","8259712","2014-06-24 23:46:18 +0000","Tweetbot for Mac","@DanFrakes @TheMacalope Even if the Fire Phone attained 100% market share in the USA, it would have 0% in the rest of the world. Yawn.","","","","" +"481558446337032192","","","2014-06-24 22:04:15 +0000","Tweetbot for Mac","“changed equlity for better performance” https://t.co/U8lNBZm9Qk http://t.co/zkfze25gYb","","","","https://github.com/samsonjs/strftime/commit/376c9cd550d059726d6ac30a1887d4c66ae33609,http://i.imgur.com/Kl0HDtx.gif" -"481328469146480640","","","2014-06-24 06:50:24 +0000","Tweetbot for Mac","If you use my JavaScript implementation of strftime I’d appreciate some input on an API overhaul coming in v0.9. https://t.co/cH3p4FFPAq","","","","https://github.com/samsonjs/strftime/pull/42" -"481272710283014145","481260870253551616","14231571","2014-06-24 03:08:50 +0000","Tweetbot for Mac","@marcoarment “Hide it in Home Movies. They’ll lose it, give up, and then go buy it in iTunes! Mwa ha ha ha!”","","","","" -"481170290592858112","481152042547675137","7854152","2014-06-23 20:21:51 +0000","Tweetbot for Mac","@dtome Typical Apple, making them incompatible with the OpenSock 2.1 spec.","","","","" -"480825458590642176","","","2014-06-22 21:31:37 +0000","Twitterrific","RT @davemethvin: This is the kind of information the Internet should have been providing all along. http://t.co/9M3XU0KmpP","480761232186937344","14563904","2014-06-22 17:16:24 +0000","http://runpee.com/,http://runpee.com/" +"481328469146480640","","","2014-06-24 06:50:24 +0000","Tweetbot for Mac","If you use my JavaScript implementation of strftime I’d appreciate some input on an API overhaul coming in v0.9. https://t.co/cH3p4FFPAq","","","","https://github.com/samsonjs/strftime/pull/42" +"481272710283014145","481260870253551616","14231571","2014-06-24 03:08:50 +0000","Tweetbot for Mac","@marcoarment “Hide it in Home Movies. They’ll lose it, give up, and then go buy it in iTunes! Mwa ha ha ha!”","","","","" +"481170290592858112","481152042547675137","7854152","2014-06-23 20:21:51 +0000","Tweetbot for Mac","@dtome Typical Apple, making them incompatible with the OpenSock 2.1 spec.","","","","" +"480825458590642176","","","2014-06-22 21:31:37 +0000","Twitterrific for iOS","RT @davemethvin: This is the kind of information the Internet should have been providing all along. http://t.co/9M3XU0KmpP","480761232186937344","14563904","2014-06-22 17:16:24 +0000","http://runpee.com/,http://runpee.com/" "480582032280408064","480447944181555200","15056792","2014-06-22 05:24:19 +0000","Tweetbot for iΟS","@yesthatallen @xscopeapp You still make mental notes? That’s so 2010. http://t.co/SBtLciYn4B","","","","https://twitter.com/_sjs/status/480582032280408064/photo/1" -"480494980851433473","","","2014-06-21 23:38:25 +0000","Tweetbot for Mac","I am overjoyed that you can activate the Finder from Spotlight in Yosemite. Finally!","","","","" -"480455298830704643","","","2014-06-21 21:00:44 +0000","Tweetbot for Mac","RT @kangax: `WebKit.render(document.documentElement.outerHTML)`? :) RT @bga_: @kangax <!--[if IE]><script src=webkit.js></script><![endif]-…","480410858066288640","9973082","2014-06-21 18:04:08 +0000","" -"480453592248119296","","","2014-06-21 20:53:57 +0000","Tweetbot for Mac","Technically I suppose you’d have to compile LLVM with Emscripten and then use that to compile webkit.js in WebKit.","","","","" -"480453121190002688","","","2014-06-21 20:52:05 +0000","Tweetbot for Mac","WebKit is now self-hosting. https://t.co/1hhaLCq53n","","","","https://twitter.com/kangax/status/480405684375531520" -"480152995137474560","","","2014-06-21 00:59:29 +0000","Tweetbot for Mac","RT @jdalton: Auto-currying all the things totally sinks JS performance. That syntactic sugar comes at a high price.","480141335383400448","14272162","2014-06-21 00:13:09 +0000","" -"480136974477434883","","","2014-06-20 23:55:49 +0000","Tweetbot for Mac","If you liked that last retweet, check out the article: http://t.co/gITCOZs3GF","","","","http://fr.umio.us/favoring-curry/" -"480136834500943872","","","2014-06-20 23:55:16 +0000","Tweetbot for Mac","RT @jdalton: Favoring Curry - https://t.co/nHGrVxb0gu","480112145321836544","14272162","2014-06-20 22:17:10 +0000","https://gist.github.com/jdalton/94c8091820948c9cbb41,https://gist.github.com/jdalton/94c8091820948c9cbb41" -"480073129088126976","","636923","2014-06-20 19:42:07 +0000","Tweetbot for Mac","@siracusa This seems up your alley. Super Mario Bros, World 2-2 theme played on an accordion. https://t.co/pG1rF7hWKJ","","","","https://twitter.com/brooklyn_js/status/480065841577205760" -"480063276538032128","","108814849","2014-06-20 19:02:58 +0000","Tweetbot for Mac","@snarfmason @gregbate R u drunk? http://t.co/cgC3K6vXz8","","","","https://twitter.com/_sjs/status/480063276538032128/photo/1" -"480038135976304640","480007216884236288","108814849","2014-06-20 17:23:04 +0000","Tweetbot for Mac","@snarfmason @gregbate Yes, we should!","","","","" +"480494980851433473","","","2014-06-21 23:38:25 +0000","Tweetbot for Mac","I am overjoyed that you can activate the Finder from Spotlight in Yosemite. Finally!","","","","" +"480455298830704643","","","2014-06-21 21:00:44 +0000","Tweetbot for Mac","RT @kangax: `WebKit.render(document.documentElement.outerHTML)`? :) RT @bga_: @kangax <!--[if IE]><script src=webkit.js></script><![endif]-…","480410858066288640","9973082","2014-06-21 18:04:08 +0000","" +"480453592248119296","","","2014-06-21 20:53:57 +0000","Tweetbot for Mac","Technically I suppose you’d have to compile LLVM with Emscripten and then use that to compile webkit.js in WebKit.","","","","" +"480453121190002688","","","2014-06-21 20:52:05 +0000","Tweetbot for Mac","WebKit is now self-hosting. https://t.co/1hhaLCq53n","","","","https://twitter.com/kangax/status/480405684375531520" +"480152995137474560","","","2014-06-21 00:59:29 +0000","Tweetbot for Mac","RT @jdalton: Auto-currying all the things totally sinks JS performance. That syntactic sugar comes at a high price.","480141335383400448","14272162","2014-06-21 00:13:09 +0000","" +"480136974477434883","","","2014-06-20 23:55:49 +0000","Tweetbot for Mac","If you liked that last retweet, check out the article: http://t.co/gITCOZs3GF","","","","http://fr.umio.us/favoring-curry/" +"480136834500943872","","","2014-06-20 23:55:16 +0000","Tweetbot for Mac","RT @jdalton: Favoring Curry - https://t.co/nHGrVxb0gu","480112145321836544","14272162","2014-06-20 22:17:10 +0000","https://gist.github.com/jdalton/94c8091820948c9cbb41,https://gist.github.com/jdalton/94c8091820948c9cbb41" +"480073129088126976","","636923","2014-06-20 19:42:07 +0000","Tweetbot for Mac","@siracusa This seems up your alley. Super Mario Bros, World 2-2 theme played on an accordion. https://t.co/pG1rF7hWKJ","","","","https://twitter.com/brooklyn_js/status/480065841577205760" +"480063276538032128","","108814849","2014-06-20 19:02:58 +0000","Tweetbot for Mac","@snarfmason @gregbate R u drunk? http://t.co/cgC3K6vXz8","","","","https://twitter.com/_sjs/status/480063276538032128/photo/1" +"480038135976304640","480007216884236288","108814849","2014-06-20 17:23:04 +0000","Tweetbot for Mac","@snarfmason @gregbate Yes, we should!","","","","" "479888274492624896","","","2014-06-20 07:27:35 +0000","Tweetbot for iΟS","RT @ecetweets: but instead I get to go up to the bar and be like ""I would like a martini"" and feel classy as fuck","479726439311228928","22961921","2014-06-19 20:44:30 +0000","" "479888263507750912","","","2014-06-20 07:27:32 +0000","Tweetbot for iΟS","RT @ecetweets: I love society for inventing martinis because otherwise you'd have to go up to the bar & say ""I would like a cup of gin plea…","479726138596421632","22961921","2014-06-19 20:43:18 +0000","" "479887761646694400","","","2014-06-20 07:25:32 +0000","Tweetbot for iΟS","RT @Steve_Yegge: I've been writing Obj C for iOS lately. I suspect they called it ""Objective C"" because that was shorter than ""Objective P…","479887294174732289","429567341","2014-06-20 07:23:41 +0000","" @@ -3249,7 +3347,7 @@ http://t.co/zkfze25gYb","","","","https://github.com/samsonjs/strftime/commit/37 3 oz Plymouth gin 1/4 oz olive brine Olive garnish (two if you’re fancy) http://t.co/FvZFEClui1","","","","https://twitter.com/_sjs/status/479886204003831809/photo/1" -"479869762172772352","479869187347603456","1325272543","2014-06-20 06:14:01 +0000","Tweetbot for Mac","@Timeneverwasted Thanks! It’s a Vesper-like recipe for people who prefer gin martinis. 🍸","","","","" +"479869762172772352","479869187347603456","1325272543","2014-06-20 06:14:01 +0000","Tweetbot for Mac","@Timeneverwasted Thanks! It’s a Vesper-like recipe for people who prefer gin martinis. 🍸","","","","" "479868147927769088","","","2014-06-20 06:07:36 +0000","Tweetbot for iΟS","Not bad. With these ratios I’ll use less Lillet in the future though. 1/4 oz.","","","","" "479867257141465088","","","2014-06-20 06:04:04 +0000","Tweetbot for iΟS","Happy Martini day! @@ -3257,24 +3355,24 @@ Olive garnish (two if you’re fancy) http://t.co/FvZFEClui1","","","","https:// 1 oz Russian Standard 1/2 oz Lillet Lemon twist http://t.co/a3U6j2Lh5P","","","","https://twitter.com/_sjs/status/479867257141465088/photo/1" -"479727507134889984","","","2014-06-19 20:48:45 +0000","Tweetbot for Mac","iOS 7 doesn’t let you check if Reduce Motion is enabled. 😒","","","","" -"479726297216606208","479726157403660289","108814849","2014-06-19 20:43:56 +0000","Tweetbot for Mac","@snarfmason @ryanstenhouse @srbaker Obligatory: https://t.co/MUesA93Rcc","","","","https://www.youtube.com/watch?v=in9SiDtJLaU" +"479727507134889984","","","2014-06-19 20:48:45 +0000","Tweetbot for Mac","iOS 7 doesn’t let you check if Reduce Motion is enabled. 😒","","","","" +"479726297216606208","479726157403660289","108814849","2014-06-19 20:43:56 +0000","Tweetbot for Mac","@snarfmason @ryanstenhouse @srbaker Obligatory: https://t.co/MUesA93Rcc","","","","https://www.youtube.com/watch?v=in9SiDtJLaU" "479468084323835904","","","2014-06-19 03:37:54 +0000","Tweetbot for iΟS","Is The Golden Child any good? http://t.co/OsK5YWLXdP","","","","http://m.imdb.com/title/tt0091129/" -"479409566845652992","","","2014-06-18 23:45:22 +0000","Tweetbot for Mac","RT @snarfmason: @_sjs hope you have a deal with a reputable cryogenics provider.","479409424541286400","108814849","2014-06-18 23:44:48 +0000","" +"479409566845652992","","","2014-06-18 23:45:22 +0000","Tweetbot for Mac","RT @snarfmason: @_sjs hope you have a deal with a reputable cryogenics provider.","479409424541286400","108814849","2014-06-18 23:44:48 +0000","" "479344323557736448","479344092413825024","15874978","2014-06-18 19:26:07 +0000","Tweetbot for iΟS","@jake_va 😒","","","","" "479342054938386432","478708109167558656","15874978","2014-06-18 19:17:06 +0000","Twitter Web Client","@jake_va Does this still work on Mavericks? defaults write com.apple.desktopservices DSDontWriteNetworkStores YES","","","","" -"479339541480759296","","","2014-06-18 19:07:07 +0000","Tweetbot for Mac","Has anyone made a Mac app that wraps @beatsmusic and provides all the nice things app-ish you want for music? AirPlay & keyboard controls.","","","","" -"479327570018582528","479326335467143168","108814849","2014-06-18 18:19:32 +0000","Tweetbot for Mac","@snarfmason Basically I like the idea of Ethernet more than I have a need for it :)","","","","" -"479327477995536384","479326335467143168","108814849","2014-06-18 18:19:10 +0000","Tweetbot for Mac","@snarfmason That’s starting to be too many cables to plug & unplug. And wifi is good enough for me most of the time, so meh.","","","","" -"479325698922799104","","","2014-06-18 18:12:06 +0000","Tweetbot for Mac","Wake me up when Amazon gets serious outside of the USA.","","","","" -"479325072268595200","479324719896739840","108814849","2014-06-18 18:09:37 +0000","Tweetbot for Mac","@snarfmason Even better! Then you won’t feel bad when the new one comes out in the next year or two.","","","","" -"479324063014203394","479321607047888896","108814849","2014-06-18 18:05:36 +0000","Tweetbot for Mac","@snarfmason I want one so badly. Especially for Ethernet.","","","","" +"479339541480759296","","","2014-06-18 19:07:07 +0000","Tweetbot for Mac","Has anyone made a Mac app that wraps @beatsmusic and provides all the nice things app-ish you want for music? AirPlay & keyboard controls.","","","","" +"479327570018582528","479326335467143168","108814849","2014-06-18 18:19:32 +0000","Tweetbot for Mac","@snarfmason Basically I like the idea of Ethernet more than I have a need for it :)","","","","" +"479327477995536384","479326335467143168","108814849","2014-06-18 18:19:10 +0000","Tweetbot for Mac","@snarfmason That’s starting to be too many cables to plug & unplug. And wifi is good enough for me most of the time, so meh.","","","","" +"479325698922799104","","","2014-06-18 18:12:06 +0000","Tweetbot for Mac","Wake me up when Amazon gets serious outside of the USA.","","","","" +"479325072268595200","479324719896739840","108814849","2014-06-18 18:09:37 +0000","Tweetbot for Mac","@snarfmason Even better! Then you won’t feel bad when the new one comes out in the next year or two.","","","","" +"479324063014203394","479321607047888896","108814849","2014-06-18 18:05:36 +0000","Tweetbot for Mac","@snarfmason I want one so badly. Especially for Ethernet.","","","","" "479287973234503681","","","2014-06-18 15:42:12 +0000","Tweetbot for iΟS","RT @mrgan: ""In iOS 8 beta 2 it's possible to leave reviews in the App Store again, a feature unavailable in beta 1 due to a bug"" Noooo you …","478978311041736706","35293","2014-06-17 19:11:43 +0000","" -"479137872029569025","479083207027998720","108814849","2014-06-18 05:45:45 +0000","Twitterrific","@snarfmason You probably still use a dirty coffee mug. There's a balance somewhere.","","","","" -"478698900065251328","478697660946186240","22406953","2014-06-17 00:41:26 +0000","Tweetbot for Mac","@mahyarm And now the companion site: http://t.co/CtIFEcmKp9","","","","http://fuckingclosuresyntax.com" -"478697926542114816","","","2014-06-17 00:37:34 +0000","Tweetbot for Mac","“Fixed a bug where pod bay doors could not be opened under certain circumstances.”","","","","" -"478638674293190656","","","2014-06-16 20:42:07 +0000","Tweetbot for Mac","Do you even Swift? http://t.co/NnH7YT1Br1","","","","https://twitter.com/_sjs/status/478638674293190656/photo/1" -"478583201720320001","","","2014-06-16 17:01:41 +0000","Tweetbot for Mac","Never cross the streams.","","","","" +"479137872029569025","479083207027998720","108814849","2014-06-18 05:45:45 +0000","Twitterrific for iOS","@snarfmason You probably still use a dirty coffee mug. There's a balance somewhere.","","","","" +"478698900065251328","478697660946186240","22406953","2014-06-17 00:41:26 +0000","Tweetbot for Mac","@mahyarm And now the companion site: http://t.co/CtIFEcmKp9","","","","http://fuckingclosuresyntax.com" +"478697926542114816","","","2014-06-17 00:37:34 +0000","Tweetbot for Mac","“Fixed a bug where pod bay doors could not be opened under certain circumstances.”","","","","" +"478638674293190656","","","2014-06-16 20:42:07 +0000","Tweetbot for Mac","Do you even Swift? http://t.co/NnH7YT1Br1","","","","https://twitter.com/_sjs/status/478638674293190656/photo/1" +"478583201720320001","","","2014-06-16 17:01:41 +0000","Tweetbot for Mac","Never cross the streams.","","","","" "478412072481341441","","","2014-06-16 05:41:41 +0000","Tweetbot for iΟS","It’s been too long since I’ve made one of these. http://t.co/pIKwGcqKMs","","","","https://twitter.com/_sjs/status/478412072481341441/photo/1" "477900440659451904","477848091156967424","15292261","2014-06-14 19:48:38 +0000","Tweetbot for iΟS","@gregbate @paulleduc_5 @lucaboq I didn’t know @lucaboq was here! Megan is @fyrite btw.","","","","" "477715790473359360","477710285067661312","894911","2014-06-14 07:34:54 +0000","Tweetbot for iΟS","@JimRoepcke It’s a longer game when people are drinking.","","","","" @@ -3282,314 +3380,314 @@ Lemon twist http://t.co/a3U6j2Lh5P","","","","https://twitter.com/_sjs/status/47 "477705766212616193","","","2014-06-14 06:55:04 +0000","Tweetbot for iΟS","Losing at Power Grid. (╯°□°)╯︵ ┻━┻","","","","" -"477559328916783104","477559179247251456","14180235","2014-06-13 21:13:11 +0000","Tweetbot for Mac","@daveeed @JimRoepcke @fyrite We can play a 4-player game some time.","","","","" -"477552162898063360","","","2014-06-13 20:44:42 +0000","Tweetbot for Mac","RT @importantshock: Protip: use /// for method/class/function-level comments in Swift. Xcode will display the comments inline in autocomple…","477548720477585408","7611992","2014-06-13 20:31:02 +0000","" -"477551727063752704","477538626272641024","894911","2014-06-13 20:42:58 +0000","Tweetbot for Mac","@JimRoepcke Woot! Just purchased Agricola and Lords of Waterdeep for me & @fyrite for a pittance. I almost feel bad. *Almost*.","","","","" -"477511098078220288","477510312455700482","15292261","2014-06-13 18:01:32 +0000","Tweetbot for Mac","@gregbate Really though, that just means you need a second 4k display and you’re good to go. Right? :p","","","","" -"477510879974395905","477510312455700482","15292261","2014-06-13 18:00:40 +0000","Tweetbot for Mac","@gregbate Obligatory: http://t.co/onejrmETJQ","","","","http://dilbert.com/strips/comic/1995-06-24/" +"477559328916783104","477559179247251456","14180235","2014-06-13 21:13:11 +0000","Tweetbot for Mac","@daveeed @JimRoepcke @fyrite We can play a 4-player game some time.","","","","" +"477552162898063360","","","2014-06-13 20:44:42 +0000","Tweetbot for Mac","RT @importantshock: Protip: use /// for method/class/function-level comments in Swift. Xcode will display the comments inline in autocomple…","477548720477585408","7611992","2014-06-13 20:31:02 +0000","" +"477551727063752704","477538626272641024","894911","2014-06-13 20:42:58 +0000","Tweetbot for Mac","@JimRoepcke Woot! Just purchased Agricola and Lords of Waterdeep for me & @fyrite for a pittance. I almost feel bad. *Almost*.","","","","" +"477511098078220288","477510312455700482","15292261","2014-06-13 18:01:32 +0000","Tweetbot for Mac","@gregbate Really though, that just means you need a second 4k display and you’re good to go. Right? :p","","","","" +"477510879974395905","477510312455700482","15292261","2014-06-13 18:00:40 +0000","Tweetbot for Mac","@gregbate Obligatory: http://t.co/onejrmETJQ","","","","http://dilbert.com/strips/comic/1995-06-24/" "477483263854772225","","","2014-06-13 16:10:55 +0000","Tweetbot for iΟS","RT @GonzoHacker: Free As In Broken","477470725276585984","773009000","2014-06-13 15:21:06 +0000","" -"477246241596665857","","","2014-06-13 00:29:05 +0000","Tweetbot for Mac","RT @elonmusk: Apparently, lots of confused media inquiries about blog title. Look, we just to make sure they don't set us up the bomb.","477223079421046785","44196397","2014-06-12 22:57:03 +0000","" -"477244429745405952","477217569774903296","894911","2014-06-13 00:21:53 +0000","Tweetbot for Mac","@JimRoepcke Someone tweeted this earlier today. Appropriate. http://t.co/i83l4Y9Ekj","","","","http://blog.codinghorror.com/your-code-oop-or-poo/" -"477241904468205569","","","2014-06-13 00:11:51 +0000","Tweetbot for Mac","You can’t make this up. I don’t think it’s a parody. http://t.co/m5jaRDrgBz +"477246241596665857","","","2014-06-13 00:29:05 +0000","Tweetbot for Mac","RT @elonmusk: Apparently, lots of confused media inquiries about blog title. Look, we just to make sure they don't set us up the bomb.","477223079421046785","44196397","2014-06-12 22:57:03 +0000","" +"477244429745405952","477217569774903296","894911","2014-06-13 00:21:53 +0000","Tweetbot for Mac","@JimRoepcke Someone tweeted this earlier today. Appropriate. http://t.co/i83l4Y9Ekj","","","","http://blog.codinghorror.com/your-code-oop-or-poo/" +"477241904468205569","","","2014-06-13 00:11:51 +0000","Tweetbot for Mac","You can’t make this up. I don’t think it’s a parody. http://t.co/m5jaRDrgBz “Engage…Digitally! Move Towards Web 3.0”","","","","http://www.newearthmarketing.com" "477208251818184704","477201406063943680","894911","2014-06-12 21:58:07 +0000","Tweetbot for iΟS","@JimRoepcke Oh that would be nice. I’m not crazy about parsing strings to achieve that.","","","","" -"477164462797901824","","","2014-06-12 19:04:07 +0000","Tweetbot for Mac","RT @Twitterrific: Drag left/right on a gif to scrub through the animation. #T5Tips","477148506441121792","643443","2014-06-12 18:00:43 +0000","" -"477162417999183872","477155039966818305","894911","2014-06-12 18:56:00 +0000","Tweetbot for Mac","@JimRoepcke Life is too short to read the comments. Ignore them for greater happiness.","","","","" -"477154743727321088","","","2014-06-12 18:25:30 +0000","Tweetbot for Mac","Beats Music is good … when it works. Maybe it’s a perfect fit as an Apple service.","","","","" -"477148063476494336","","","2014-06-12 17:58:57 +0000","Tweetbot for Mac","I tried to handle the keyboard show/hide notification in Swift and it did not go well. Interacting with ObjC and Cocoa isn’t always easy.","","","","" -"477125344000888832","","","2014-06-12 16:28:41 +0000","Twitterrific","RT @ishra: @olemoritz @comex :-( I see no distinction between formulas in Numbers files and python in text files. Both executable.","476977278556336128","5537792","2014-06-12 06:40:19 +0000","" +"477164462797901824","","","2014-06-12 19:04:07 +0000","Tweetbot for Mac","RT @Twitterrific: Drag left/right on a gif to scrub through the animation. #T5Tips","477148506441121792","643443","2014-06-12 18:00:43 +0000","" +"477162417999183872","477155039966818305","894911","2014-06-12 18:56:00 +0000","Tweetbot for Mac","@JimRoepcke Life is too short to read the comments. Ignore them for greater happiness.","","","","" +"477154743727321088","","","2014-06-12 18:25:30 +0000","Tweetbot for Mac","Beats Music is good … when it works. Maybe it’s a perfect fit as an Apple service.","","","","" +"477148063476494336","","","2014-06-12 17:58:57 +0000","Tweetbot for Mac","I tried to handle the keyboard show/hide notification in Swift and it did not go well. Interacting with ObjC and Cocoa isn’t always easy.","","","","" +"477125344000888832","","","2014-06-12 16:28:41 +0000","Twitterrific for iOS","RT @ishra: @olemoritz @comex :-( I see no distinction between formulas in Numbers files and python in text files. Both executable.","476977278556336128","5537792","2014-06-12 06:40:19 +0000","" "476818348228227072","","","2014-06-11 20:08:47 +0000","Tweetbot for iΟS","RT @typeoneerror: BC organ donor registration has a field for a ""personal message"" #canada #organs #wtf http://t.co/9IY1Mv2fkL","476806771747848192","11973362","2014-06-11 19:22:47 +0000","http://instagram.com/p/pHYevBr8E3/,http://instagram.com/p/pHYevBr8E3/" -"476805544586407937","476805236355792896","108814849","2014-06-11 19:17:55 +0000","Tweetbot for Mac","@snarfmason Oh god. Well, it’s a waste of a good chair if you don’t upgrade the rest! 😝","","","","" -"476804758414430209","476803011621421056","108814849","2014-06-11 19:14:47 +0000","Tweetbot for Mac","@snarfmason I wasn’t gung-ho on those things anyway, but I don’t think I’ll jump on this sale :(","","","","" -"476802485550469120","476782081599483905","108814849","2014-06-11 19:05:45 +0000","Tweetbot for Mac","@snarfmason I’m curious what the difference is between their lumbar support and fancy posture thing. I might have to go sit in one somewhere","","","","" -"476770552087330816","","","2014-06-11 16:58:52 +0000","Tweetbot for Mac","RT @chriseidhof: My first steps in Swift: A QuickCheck proof of concept (with Playground!): http://t.co/cRJw9tB4yR","476767571648450561","4295181","2014-06-11 16:47:01 +0000","http://chris.eidhof.nl/posts/quickcheck-in-swift.html,http://chris.eidhof.nl/posts/quickcheck-in-swift.html" -"476480333181751296","","","2014-06-10 21:45:38 +0000","Tweetbot for Mac","Someone said “on a go-forward basis” to me today but I’m not going to hold it against them.","","","","" -"476409384491155456","","","2014-06-10 17:03:43 +0000","Twitterrific","RT @MashableHQ: Excited to announce our partnership w. @360i bringing @mashable Velocity to brand marketers. http://t.co/rk83ANBfmP @wsjCMO","476345477085294592","140569932","2014-06-10 12:49:46 +0000","http://on.wsj.com/1jhRaVk,http://on.wsj.com/1jhRaVk" -"476219235463467008","","","2014-06-10 04:28:08 +0000","Twitterrific","I'm not much for conspiracy theories, but 😯 https://t.co/hPDz8mndkq","","","","https://www.google.ca/search?q=denver+airport+art" -"476192350985666560","476146316918005761","18702069","2014-06-10 02:41:18 +0000","Tweetbot for Mac","@gu3st @gruber It uses a Mac user agent but it’s smarter than just that. If you were redirected it goes back to the original URL, too.","","","","" -"476128264436875264","476127737850372096","108814849","2014-06-09 22:26:38 +0000","Tweetbot for Mac","@snarfmason Ha ha. My new awesome chair will eat such lesser chairs for breakfast.","","","","" -"476124113493176322","476123920785883136","108814849","2014-06-09 22:10:09 +0000","Tweetbot for Mac","@snarfmason I saw the sale on HM’s site, but it wasn’t available to Canadians so it’s nice to know I can still get in on the sale.","","","","" -"476123621833064449","476123256684949505","108814849","2014-06-09 22:08:12 +0000","Tweetbot for Mac","@snarfmason Sweet! I’ll check it out. I briefly sat in @gregbate’s in April and it was glorious.","","","","" -"476122085165522946","","","2014-06-09 22:02:05 +0000","Tweetbot for Mac","RT @jkuss: @gruber that’s called a tweeticle","476119472130899968","14176862","2014-06-09 21:51:42 +0000","" -"476122004962418688","476119740839370753","108814849","2014-06-09 22:01:46 +0000","Tweetbot for Mac","@snarfmason How much of a sale? I want one next month, but if it’s a great sale I’ll buy one now and then move it.","","","","" -"476120550713327616","476108687732256769","894911","2014-06-09 21:55:59 +0000","Tweetbot for Mac","@JimRoepcke They’ve come a long way! https://t.co/MO2gS0x3yx","","","","https://www.youtube.com/watch?v=zscUp2Ng8hw" -"476086684480962560","","","2014-06-09 19:41:25 +0000","Tweetbot for Mac","RT @stroughtonsmith: So… just in case there was any doubt left… iOS 8’s SpringBoard has code to run two apps side-by-side. 1/4 size, 1/2 si…","476074737081536512","15267898","2014-06-09 18:53:57 +0000","" -"476061159796117504","","","2014-06-09 17:59:59 +0000","Tweetbot for Mac","RT @Horse_iOS: According to multiple sources, Tapbots have delayed Tweetbot 3 for iPad in order to rewrite it in Swift and build a new UI d…","476060998190002176","1518266449","2014-06-09 17:59:21 +0000","" -"475754302783229952","475076384499326976","108814849","2014-06-08 21:40:39 +0000","Twitterrific","@snarfmason Lager hater!","","","","" -"475748629798342657","475393962740441088","108814849","2014-06-08 21:18:06 +0000","Twitterrific","@snarfmason @gregbate What were they thinking!","","","","" -"474995299292045312","","","2014-06-06 19:24:39 +0000","Tweetbot for Mac","RT @WaltFrench: Why ‘debates’ over science are proliferating in US politics “@semibogan: Science realities. http://t.co/Kjq3QmPiGx” Predict…","474959743124267008","14911096","2014-06-06 17:03:21 +0000","https://twitter.com/semibogan/status/472945650468810752/photo/1,https://twitter.com/semibogan/status/472945650468810752/photo/1" -"474952253997326337","","","2014-06-06 16:33:36 +0000","Tweetbot for Mac","RT @mattgemmell: Haven't confirmed this myself, but apparently you can't leave App Store reviews from the iOS 8 beta. If true, that's fanta…","474843523356041216","755859","2014-06-06 09:21:32 +0000","" -"474790208240508928","","","2014-06-06 05:49:41 +0000","Twitterrific","RT @henryctaylor: A tale of two technologies. Newspaper vs internet publishing. Taken from this amazing graphic http://t.co/u1lteYBkXx http…","474655322318311424","30189894","2014-06-05 20:53:42 +0000","http://nyti.ms/1i6GHvT,http://nyti.ms/1i6GHvT,https://twitter.com/henryctaylor/status/474655322318311424/photo/1" +"476805544586407937","476805236355792896","108814849","2014-06-11 19:17:55 +0000","Tweetbot for Mac","@snarfmason Oh god. Well, it’s a waste of a good chair if you don’t upgrade the rest! 😝","","","","" +"476804758414430209","476803011621421056","108814849","2014-06-11 19:14:47 +0000","Tweetbot for Mac","@snarfmason I wasn’t gung-ho on those things anyway, but I don’t think I’ll jump on this sale :(","","","","" +"476802485550469120","476782081599483905","108814849","2014-06-11 19:05:45 +0000","Tweetbot for Mac","@snarfmason I’m curious what the difference is between their lumbar support and fancy posture thing. I might have to go sit in one somewhere","","","","" +"476770552087330816","","","2014-06-11 16:58:52 +0000","Tweetbot for Mac","RT @chriseidhof: My first steps in Swift: A QuickCheck proof of concept (with Playground!): http://t.co/cRJw9tB4yR","476767571648450561","4295181","2014-06-11 16:47:01 +0000","http://chris.eidhof.nl/posts/quickcheck-in-swift.html,http://chris.eidhof.nl/posts/quickcheck-in-swift.html" +"476480333181751296","","","2014-06-10 21:45:38 +0000","Tweetbot for Mac","Someone said “on a go-forward basis” to me today but I’m not going to hold it against them.","","","","" +"476409384491155456","","","2014-06-10 17:03:43 +0000","Twitterrific for iOS","RT @MashableHQ: Excited to announce our partnership w. @360i bringing @mashable Velocity to brand marketers. http://t.co/rk83ANBfmP @wsjCMO","476345477085294592","140569932","2014-06-10 12:49:46 +0000","http://on.wsj.com/1jhRaVk,http://on.wsj.com/1jhRaVk" +"476219235463467008","","","2014-06-10 04:28:08 +0000","Twitterrific for iOS","I'm not much for conspiracy theories, but 😯 https://t.co/hPDz8mndkq","","","","https://www.google.ca/search?q=denver+airport+art" +"476192350985666560","476146316918005761","18702069","2014-06-10 02:41:18 +0000","Tweetbot for Mac","@gu3st @gruber It uses a Mac user agent but it’s smarter than just that. If you were redirected it goes back to the original URL, too.","","","","" +"476128264436875264","476127737850372096","108814849","2014-06-09 22:26:38 +0000","Tweetbot for Mac","@snarfmason Ha ha. My new awesome chair will eat such lesser chairs for breakfast.","","","","" +"476124113493176322","476123920785883136","108814849","2014-06-09 22:10:09 +0000","Tweetbot for Mac","@snarfmason I saw the sale on HM’s site, but it wasn’t available to Canadians so it’s nice to know I can still get in on the sale.","","","","" +"476123621833064449","476123256684949505","108814849","2014-06-09 22:08:12 +0000","Tweetbot for Mac","@snarfmason Sweet! I’ll check it out. I briefly sat in @gregbate’s in April and it was glorious.","","","","" +"476122085165522946","","","2014-06-09 22:02:05 +0000","Tweetbot for Mac","RT @jkuss: @gruber that’s called a tweeticle","476119472130899968","14176862","2014-06-09 21:51:42 +0000","" +"476122004962418688","476119740839370753","108814849","2014-06-09 22:01:46 +0000","Tweetbot for Mac","@snarfmason How much of a sale? I want one next month, but if it’s a great sale I’ll buy one now and then move it.","","","","" +"476120550713327616","476108687732256769","894911","2014-06-09 21:55:59 +0000","Tweetbot for Mac","@JimRoepcke They’ve come a long way! https://t.co/MO2gS0x3yx","","","","https://www.youtube.com/watch?v=zscUp2Ng8hw" +"476086684480962560","","","2014-06-09 19:41:25 +0000","Tweetbot for Mac","RT @stroughtonsmith: So… just in case there was any doubt left… iOS 8’s SpringBoard has code to run two apps side-by-side. 1/4 size, 1/2 si…","476074737081536512","15267898","2014-06-09 18:53:57 +0000","" +"476061159796117504","","","2014-06-09 17:59:59 +0000","Tweetbot for Mac","RT @Horse_iOS: According to multiple sources, Tapbots have delayed Tweetbot 3 for iPad in order to rewrite it in Swift and build a new UI d…","476060998190002176","1518266449","2014-06-09 17:59:21 +0000","" +"475754302783229952","475076384499326976","108814849","2014-06-08 21:40:39 +0000","Twitterrific for iOS","@snarfmason Lager hater!","","","","" +"475748629798342657","475393962740441088","108814849","2014-06-08 21:18:06 +0000","Twitterrific for iOS","@snarfmason @gregbate What were they thinking!","","","","" +"474995299292045312","","","2014-06-06 19:24:39 +0000","Tweetbot for Mac","RT @WaltFrench: Why ‘debates’ over science are proliferating in US politics “@semibogan: Science realities. http://t.co/Kjq3QmPiGx” Predict…","474959743124267008","14911096","2014-06-06 17:03:21 +0000","https://twitter.com/semibogan/status/472945650468810752/photo/1,https://twitter.com/semibogan/status/472945650468810752/photo/1" +"474952253997326337","","","2014-06-06 16:33:36 +0000","Tweetbot for Mac","RT @mattgemmell: Haven't confirmed this myself, but apparently you can't leave App Store reviews from the iOS 8 beta. If true, that's fanta…","474843523356041216","755859","2014-06-06 09:21:32 +0000","" +"474790208240508928","","","2014-06-06 05:49:41 +0000","Twitterrific for iOS","RT @henryctaylor: A tale of two technologies. Newspaper vs internet publishing. Taken from this amazing graphic http://t.co/u1lteYBkXx http…","474655322318311424","30189894","2014-06-05 20:53:42 +0000","http://nyti.ms/1i6GHvT,http://nyti.ms/1i6GHvT,https://twitter.com/henryctaylor/status/474655322318311424/photo/1" "474715562502025216","","","2014-06-06 00:53:04 +0000","Tweetbot for iΟS","RT @BiasedRNG: @_sjs Damn straight! If I were a playground my seed would be 2. #randomlol","474704935029063681","2533351076","2014-06-06 00:10:50 +0000","" -"474681699658240000","474679884456136705","894911","2014-06-05 22:38:31 +0000","Tweetbot for Mac","@JimRoepcke Looks like you used to be able to do this. It must be possible, somehow. Maybe in the first-run setup? https://t.co/2GF6xERsQj","","","","https://discussions.apple.com/message/16969852#16969852" -"474666023313240064","","","2014-06-05 21:36:13 +0000","Tweetbot for Mac","Swift playgrounds seed the random number generator consistently.","","","","" -"474660792496029696","474659799876263938","53010195","2014-06-05 21:15:26 +0000","Tweetbot for Mac","@mraleph Switch! https://t.co/t2igiL2NJW","","","","https://www.youtube.com/watch?v=pygwaX2VNzQ" -"474642446001795072","474642011266363392","108814849","2014-06-05 20:02:32 +0000","Tweetbot for Mac","@snarfmason xcrun is in /usr/bin, so you don’t have to monkey with your shell’s PATH either.","","","","" -"474642300811767808","474642011266363392","108814849","2014-06-05 20:01:57 +0000","Tweetbot for Mac","@snarfmason You can install multiple versions of Xcode. xcrun runs a program in the currently selected version, managed with xcode-select.","","","","" +"474681699658240000","474679884456136705","894911","2014-06-05 22:38:31 +0000","Tweetbot for Mac","@JimRoepcke Looks like you used to be able to do this. It must be possible, somehow. Maybe in the first-run setup? https://t.co/2GF6xERsQj","","","","https://discussions.apple.com/message/16969852#16969852" +"474666023313240064","","","2014-06-05 21:36:13 +0000","Tweetbot for Mac","Swift playgrounds seed the random number generator consistently.","","","","" +"474660792496029696","474659799876263938","53010195","2014-06-05 21:15:26 +0000","Tweetbot for Mac","@mraleph Switch! https://t.co/t2igiL2NJW","","","","https://www.youtube.com/watch?v=pygwaX2VNzQ" +"474642446001795072","474642011266363392","108814849","2014-06-05 20:02:32 +0000","Tweetbot for Mac","@snarfmason xcrun is in /usr/bin, so you don’t have to monkey with your shell’s PATH either.","","","","" +"474642300811767808","474642011266363392","108814849","2014-06-05 20:01:57 +0000","Tweetbot for Mac","@snarfmason You can install multiple versions of Xcode. xcrun runs a program in the currently selected version, managed with xcode-select.","","","","" "474640954696007680","474640305879527426","14180235","2014-06-05 19:56:36 +0000","Tweetbot for iΟS","@daveeed @EDIBLSPACESHIPS Zing!","","","","" -"474640033496834049","474629657514344448","512040508","2014-06-05 19:52:57 +0000","Twitterrific","@EDIBLSPACESHIPS @daveeed Wiiiiiffffiiiiiii. Give us wiiiiffffiiiii!","","","","" -"474639376106782720","","","2014-06-05 19:50:20 +0000","Twitterrific","RT @snarfmason: Working from home milestone! Having a beer before I have showered. Partly for the benefit of @_sjs","474638939513307136","108814849","2014-06-05 19:48:36 +0000","" -"474615403122266112","474607937957019648","15292261","2014-06-05 18:15:04 +0000","Tweetbot for Mac","@gregbate You could put http://t.co/uIu4yHgcEw on one of them, too.","","","","http://thedash.com" -"474593813391237120","","","2014-06-05 16:49:17 +0000","Tweetbot for Mac","It works! https://t.co/fusWXipamC","","","","https://gist.github.com/samsonjs/d42968a6513a730226a2" -"474593755874729984","","","2014-06-05 16:49:03 +0000","Tweetbot for Mac","RT @clattner_llvm: Of course Swift supports #! scripts, you can immediately execute a swift script with ""xcrun swift -i"".","474593140511211520","2543588034","2014-06-05 16:46:36 +0000","" +"474640033496834049","474629657514344448","512040508","2014-06-05 19:52:57 +0000","Twitterrific for iOS","@EDIBLSPACESHIPS @daveeed Wiiiiiffffiiiiiii. Give us wiiiiffffiiiii!","","","","" +"474639376106782720","","","2014-06-05 19:50:20 +0000","Twitterrific for iOS","RT @snarfmason: Working from home milestone! Having a beer before I have showered. Partly for the benefit of @_sjs","474638939513307136","108814849","2014-06-05 19:48:36 +0000","" +"474615403122266112","474607937957019648","15292261","2014-06-05 18:15:04 +0000","Tweetbot for Mac","@gregbate You could put http://t.co/uIu4yHgcEw on one of them, too.","","","","http://thedash.com" +"474593813391237120","","","2014-06-05 16:49:17 +0000","Tweetbot for Mac","It works! https://t.co/fusWXipamC","","","","https://gist.github.com/samsonjs/d42968a6513a730226a2" +"474593755874729984","","","2014-06-05 16:49:03 +0000","Tweetbot for Mac","RT @clattner_llvm: Of course Swift supports #! scripts, you can immediately execute a swift script with ""xcrun swift -i"".","474593140511211520","2543588034","2014-06-05 16:46:36 +0000","" "474578395989147648","","","2014-06-05 15:48:01 +0000","Tweetbot for iΟS","Have any of you ever even seen a chainsaw? It was clearly a hedge trimmer.","","","","" -"474571687330320384","","","2014-06-05 15:21:22 +0000","Twitterrific","The @anandtech podcast really was just resting! Beautiful plumage.","","","","" +"474571687330320384","","","2014-06-05 15:21:22 +0000","Twitterrific for iOS","The @anandtech podcast really was just resting! Beautiful plumage.","","","","" "474397823501606912","","","2014-06-05 03:50:29 +0000","Tweetbot for iΟS","RT @stevedekorte: Anyone else concerned that new OSX desktop phone integration is a threat to two factor auth?","474372944689242114","3237831","2014-06-05 02:11:38 +0000","" -"474352347372863488","","","2014-06-05 00:49:47 +0000","Tweetbot for Mac","Xcode 6 uncomments lines that have leading whitespace, instead of doubly commenting them.","","","","" -"474347255961374720","","","2014-06-05 00:29:33 +0000","Tweetbot for Mac","RT @cabel: My 2¢: for the past few years it's felt like Apple's only goal was to put us in our place. Now it feels like they might want to …","474264692009861120","1919231","2014-06-04 19:01:28 +0000","" -"474083957475012608","","","2014-06-04 07:03:18 +0000","Tweetbot for Mac","“libextobjc's @weakify/@strongify is the least-bad solution I've seen in obj-c, and it's pretty bad.”","","","","" -"474051501854572544","473984962010427393","894911","2014-06-04 04:54:20 +0000","Twitterrific","@JimRoepcke Is it the ""Modern"" syntax? That is just gross.","","","","" -"473940149420568577","473906572003774466","15292261","2014-06-03 21:31:51 +0000","Tweetbot for Mac","@gregbate Works in Safari, too.","","","","" -"473938850922762240","","","2014-06-03 21:26:42 +0000","Tweetbot for Mac","RT @andy_matuschak: Psst. Check out @auto_closure.","473898774364823553","10724012","2014-06-03 18:47:27 +0000","" -"473863616316571648","","","2014-06-03 16:27:44 +0000","Tweetbot for Mac","RT @chockenberry: I've been hearing people say there's ""no NDA"" this year at WWDC. @olebegemann found what's changed for the better: http:/…","473849245577916416","36183","2014-06-03 15:30:38 +0000","http://oleb.net/blog/2014/06/apple-lifted-beta-nda/" -"473862208556789760","","","2014-06-03 16:22:09 +0000","Tweetbot for Mac","RT @mikeash: TestFlight beta testing requires app review. What the fuck.","473819947827998720","8142952","2014-06-03 13:34:13 +0000","" +"474352347372863488","","","2014-06-05 00:49:47 +0000","Tweetbot for Mac","Xcode 6 uncomments lines that have leading whitespace, instead of doubly commenting them.","","","","" +"474347255961374720","","","2014-06-05 00:29:33 +0000","Tweetbot for Mac","RT @cabel: My 2¢: for the past few years it's felt like Apple's only goal was to put us in our place. Now it feels like they might want to …","474264692009861120","1919231","2014-06-04 19:01:28 +0000","" +"474083957475012608","","","2014-06-04 07:03:18 +0000","Tweetbot for Mac","“libextobjc's @weakify/@strongify is the least-bad solution I've seen in obj-c, and it's pretty bad.”","","","","" +"474051501854572544","473984962010427393","894911","2014-06-04 04:54:20 +0000","Twitterrific for iOS","@JimRoepcke Is it the ""Modern"" syntax? That is just gross.","","","","" +"473940149420568577","473906572003774466","15292261","2014-06-03 21:31:51 +0000","Tweetbot for Mac","@gregbate Works in Safari, too.","","","","" +"473938850922762240","","","2014-06-03 21:26:42 +0000","Tweetbot for Mac","RT @andy_matuschak: Psst. Check out @auto_closure.","473898774364823553","10724012","2014-06-03 18:47:27 +0000","" +"473863616316571648","","","2014-06-03 16:27:44 +0000","Tweetbot for Mac","RT @chockenberry: I've been hearing people say there's ""no NDA"" this year at WWDC. @olebegemann found what's changed for the better: http:/…","473849245577916416","36183","2014-06-03 15:30:38 +0000","http://oleb.net/blog/2014/06/apple-lifted-beta-nda/" +"473862208556789760","","","2014-06-03 16:22:09 +0000","Tweetbot for Mac","RT @mikeash: TestFlight beta testing requires app review. What the fuck.","473819947827998720","8142952","2014-06-03 13:34:13 +0000","" "473854269326503936","473854136564191232","108814849","2014-06-03 15:50:36 +0000","Tweetbot for iΟS","@snarfmason @gregbate No worries. Tomorrow it is!","","","","" "473852933893652480","473852400873132032","108814849","2014-06-03 15:45:17 +0000","Tweetbot for iΟS","@snarfmason @gregbate I can do Wed after 12 or Thurs after 12:30.","","","","" -"473724017112006656","473723238581694464","15444008","2014-06-03 07:13:01 +0000","Tweetbot for Mac","@Catfish_Man @jspahrsummers @Javi It’s the opposite. If you subclass an ObjC class you don’t need @objc, but @objc doesn’t imply NSObject.","","","","" -"473723512872386560","473723238581694464","15444008","2014-06-03 07:11:01 +0000","Tweetbot for Mac","@Catfish_Man @jspahrsummers @Javi That was my impression as well. I’m surprised it doesn’t work.","","","","" -"473723023942774784","473706484463710208","15444008","2014-06-03 07:09:04 +0000","Tweetbot for Mac","@Catfish_Man @jspahrsummers @Javi For some reason that doesn’t seem to work. -addObserver:forKeyPath:options:context: is missing without it.","","","","" -"473705431219855360","473705343654957056","166028855","2014-06-03 05:59:10 +0000","Tweetbot for Mac","@jspahrsummers Sadly, yes.","","","","" -"473705229075374080","473675129809956864","7213362","2014-06-03 05:58:22 +0000","Tweetbot for Mac","@Javi @jspahrsummers Looks like the existing API still works, with the caveat that you have to subclass NSObject. https://t.co/kiekn1JsDT","","","","https://gist.github.com/samsonjs/db44564b7a40865cc76f" +"473724017112006656","473723238581694464","15444008","2014-06-03 07:13:01 +0000","Tweetbot for Mac","@Catfish_Man @jspahrsummers @Javi It’s the opposite. If you subclass an ObjC class you don’t need @objc, but @objc doesn’t imply NSObject.","","","","" +"473723512872386560","473723238581694464","15444008","2014-06-03 07:11:01 +0000","Tweetbot for Mac","@Catfish_Man @jspahrsummers @Javi That was my impression as well. I’m surprised it doesn’t work.","","","","" +"473723023942774784","473706484463710208","15444008","2014-06-03 07:09:04 +0000","Tweetbot for Mac","@Catfish_Man @jspahrsummers @Javi For some reason that doesn’t seem to work. -addObserver:forKeyPath:options:context: is missing without it.","","","","" +"473705431219855360","473705343654957056","166028855","2014-06-03 05:59:10 +0000","Tweetbot for Mac","@jspahrsummers Sadly, yes.","","","","" +"473705229075374080","473675129809956864","7213362","2014-06-03 05:58:22 +0000","Tweetbot for Mac","@Javi @jspahrsummers Looks like the existing API still works, with the caveat that you have to subclass NSObject. https://t.co/kiekn1JsDT","","","","https://gist.github.com/samsonjs/db44564b7a40865cc76f" "473652028325896192","","1253355925","2014-06-03 02:26:58 +0000","Tweetbot for iΟS","@atpfm I don’t usually listen live, but today I saw the tweet and couldn’t resist.","","","","" "473646053187911681","","","2014-06-03 02:03:13 +0000","Tweetbot for iΟS","Who will be first to write their server in Swift?","","","","" -"473590153768747008","","","2014-06-02 22:21:06 +0000","Tweetbot for Mac","RT @dijkstracula: Three Krispy Kreme donuts later: teeth are starting to ache, typing accuracy decreasing, transending into a being of pure…","473588378131132416","14216743","2014-06-02 22:14:02 +0000","" -"473589228618936320","473588378131132416","14216743","2014-06-02 22:17:25 +0000","Tweetbot for Mac","@dijkstracula Now eat 3 cronuts and report the results.","","","","" -"473584388068749312","473584173534691328","2469287023","2014-06-02 21:58:11 +0000","Twitterrific","@getnotifyr That's good! I like Notifyr btw :)","","","","" -"473558376233066496","473558224352722944","894911","2014-06-02 20:14:49 +0000","Tweetbot for Mac","@JimRoepcke 2:30 pm PT. I don’t have a link yet. I hope it’s at https://t.co/tVVs2FGsx0 but I don’t know 😒","","","","https://developer.apple.com/videos/" -"473558129246879744","473557743433809920","894911","2014-06-02 20:13:50 +0000","Tweetbot for Mac","@JimRoepcke Platforms state of the union?","","","","" -"473557864041447425","473557649468841984","22406953","2014-06-02 20:12:47 +0000","Tweetbot for Mac","@mahyarm That’s fair. I’m just bitter about buying the 4th generation only a year before they dropped support for it with iOS 7.","","","","" -"473557082566692864","","","2014-06-02 20:09:41 +0000","Tweetbot for Mac","RT @shit_so_says: Immutable objects are a good thing if you can manage it. But the program is going to be rather boring.","473554015171903488","1084490250","2014-06-02 19:57:30 +0000","" -"473556686008250369","473556328015613953","22406953","2014-06-02 20:08:06 +0000","Tweetbot for Mac","@mahyarm Yeah, the latest. 5th generation. It’s almost 2 years old. Poor time to purchase.","","","","" -"473545953215926272","473545773955571712","15292261","2014-06-02 19:25:27 +0000","Tweetbot for Mac","@gregbate Ha ha. #iosdevproblems … yeah finding a used one is a good idea.","","","","" -"473540458933534721","","","2014-06-02 19:03:38 +0000","Tweetbot for Mac","Every time I want to buy an iPod Touch as a test device, the iPod is ancient and probably about to be dropped as a supported device.","","","","" -"473539549990109184","","","2014-06-02 19:00:01 +0000","Tweetbot for Mac","RT @gruber: Siracusa is actually happy: http://t.co/WgcJMVRbO1","473539404381040640","33423","2014-06-02 18:59:26 +0000","https://twitter.com/gruber/status/473539404381040640/photo/1,https://twitter.com/gruber/status/473539404381040640/photo/1" -"473539513721962496","","","2014-06-02 18:59:52 +0000","Tweetbot for Mac","The things that leaked were pretty minor. I guess @tim_cook wasn’t joking about doubling down on secrecy. They can keep software secrets.","","","","" -"473539113548017664","473539024930365441","636923","2014-06-02 18:58:17 +0000","Tweetbot for Mac","@siracusa Apple is doomed.","","","","" -"473536888524271616","","","2014-06-02 18:49:26 +0000","Tweetbot for Mac","+ for string concatenation. Sorry @siracusa!","","","","" -"473536622567235584","","","2014-06-02 18:48:23 +0000","Tweetbot for Mac","RT @andy_matuschak: Basically exploding with excitement over here to finally be able to talk about Swift. LET’S DO THIS 🌈🎉✨","473536487976607744","10724012","2014-06-02 18:47:51 +0000","" -"473536430799872000","","","2014-06-02 18:47:37 +0000","Tweetbot for Mac","Mutability syntax!","","","","" -"473536283705241600","","","2014-06-02 18:47:02 +0000","Tweetbot for Mac","http://t.co/TkIRNNBrAD","","","","http://i.imgur.com/5RRJzsc.gif" -"473534910662459392","","","2014-06-02 18:41:35 +0000","Tweetbot for Mac","RT @kieran: ""Open the garage door, Siri."" +"473590153768747008","","","2014-06-02 22:21:06 +0000","Tweetbot for Mac","RT @dijkstracula: Three Krispy Kreme donuts later: teeth are starting to ache, typing accuracy decreasing, transending into a being of pure…","473588378131132416","14216743","2014-06-02 22:14:02 +0000","" +"473589228618936320","473588378131132416","14216743","2014-06-02 22:17:25 +0000","Tweetbot for Mac","@dijkstracula Now eat 3 cronuts and report the results.","","","","" +"473584388068749312","473584173534691328","2469287023","2014-06-02 21:58:11 +0000","Twitterrific for iOS","@getnotifyr That's good! I like Notifyr btw :)","","","","" +"473558376233066496","473558224352722944","894911","2014-06-02 20:14:49 +0000","Tweetbot for Mac","@JimRoepcke 2:30 pm PT. I don’t have a link yet. I hope it’s at https://t.co/tVVs2FGsx0 but I don’t know 😒","","","","https://developer.apple.com/videos/" +"473558129246879744","473557743433809920","894911","2014-06-02 20:13:50 +0000","Tweetbot for Mac","@JimRoepcke Platforms state of the union?","","","","" +"473557864041447425","473557649468841984","22406953","2014-06-02 20:12:47 +0000","Tweetbot for Mac","@mahyarm That’s fair. I’m just bitter about buying the 4th generation only a year before they dropped support for it with iOS 7.","","","","" +"473557082566692864","","","2014-06-02 20:09:41 +0000","Tweetbot for Mac","RT @shit_so_says: Immutable objects are a good thing if you can manage it. But the program is going to be rather boring.","473554015171903488","1084490250","2014-06-02 19:57:30 +0000","" +"473556686008250369","473556328015613953","22406953","2014-06-02 20:08:06 +0000","Tweetbot for Mac","@mahyarm Yeah, the latest. 5th generation. It’s almost 2 years old. Poor time to purchase.","","","","" +"473545953215926272","473545773955571712","15292261","2014-06-02 19:25:27 +0000","Tweetbot for Mac","@gregbate Ha ha. #iosdevproblems … yeah finding a used one is a good idea.","","","","" +"473540458933534721","","","2014-06-02 19:03:38 +0000","Tweetbot for Mac","Every time I want to buy an iPod Touch as a test device, the iPod is ancient and probably about to be dropped as a supported device.","","","","" +"473539549990109184","","","2014-06-02 19:00:01 +0000","Tweetbot for Mac","RT @gruber: Siracusa is actually happy: http://t.co/WgcJMVRbO1","473539404381040640","33423","2014-06-02 18:59:26 +0000","https://twitter.com/gruber/status/473539404381040640/photo/1,https://twitter.com/gruber/status/473539404381040640/photo/1" +"473539513721962496","","","2014-06-02 18:59:52 +0000","Tweetbot for Mac","The things that leaked were pretty minor. I guess @tim_cook wasn’t joking about doubling down on secrecy. They can keep software secrets.","","","","" +"473539113548017664","473539024930365441","636923","2014-06-02 18:58:17 +0000","Tweetbot for Mac","@siracusa Apple is doomed.","","","","" +"473536888524271616","","","2014-06-02 18:49:26 +0000","Tweetbot for Mac","+ for string concatenation. Sorry @siracusa!","","","","" +"473536622567235584","","","2014-06-02 18:48:23 +0000","Tweetbot for Mac","RT @andy_matuschak: Basically exploding with excitement over here to finally be able to talk about Swift. LET’S DO THIS 🌈🎉✨","473536487976607744","10724012","2014-06-02 18:47:51 +0000","" +"473536430799872000","","","2014-06-02 18:47:37 +0000","Tweetbot for Mac","Mutability syntax!","","","","" +"473536283705241600","","","2014-06-02 18:47:02 +0000","Tweetbot for Mac","http://t.co/TkIRNNBrAD","","","","http://i.imgur.com/5RRJzsc.gif" +"473534910662459392","","","2014-06-02 18:41:35 +0000","Tweetbot for Mac","RT @kieran: ""Open the garage door, Siri."" ""I'm sorry, Dave. I'm afraid I can't do that.""","473534159185395712","1304261","2014-06-02 18:38:36 +0000","" -"473530185762217986","","","2014-06-02 18:22:48 +0000","Tweetbot for Mac","I love the idea of Shazam in Siri. That’s perfect.","","","","" -"473530022058524672","","","2014-06-02 18:22:09 +0000","Tweetbot for Mac","Sane storage pricing! This is good. Very good. I still think people should be able to backup all iOS devices for free though.","","","","" -"473528589863116800","473528338779484160","14538248","2014-06-02 18:16:28 +0000","Tweetbot for Mac","@robynpeterson @JimRoepcke I don’t personally need it, but it’s really great to see them acknowledge the problem!","","","","" -"473528003792629760","","","2014-06-02 18:14:08 +0000","Tweetbot for Mac","RT @siracusa: Apple acknowledges the existence of family! Finally.","473527643787124736","636923","2014-06-02 18:12:42 +0000","" -"473526966927499264","","","2014-06-02 18:10:01 +0000","Tweetbot for Mac","RT @JimRoepcke: 3rd party cloud drive integration - Apple gets it.","473526877185773568","894911","2014-06-02 18:09:39 +0000","" -"473526094407032832","","","2014-06-02 18:06:33 +0000","Tweetbot for Mac","Takeaway: Forget Siri transcription, just send audio messages.","","","","" -"473525050117586944","473524896660611072","894911","2014-06-02 18:02:24 +0000","Tweetbot for Mac","@JimRoepcke And Voxer, WhatsApp, etc. Although to a lesser extent because they are not cross-platform.","","","","" -"473524313916977152","","","2014-06-02 17:59:28 +0000","Tweetbot for Mac","Is this new keyboard feature the same one that was found hidden and disabled back in iOS 3 or 4?","","","","" -"473524063772889088","473523205190066176","894911","2014-06-02 17:58:29 +0000","Tweetbot for Mac","@JimRoepcke You’re cursed. Like @zeldman ;-)","","","","" -"473522761177260032","473522569937580032","894911","2014-06-02 17:53:18 +0000","Tweetbot for Mac","@JimRoepcke My phone has never slid to unlock on its own. I don’t see why sliding to act would be any different.","","","","" -"473522412945162240","","","2014-06-02 17:51:55 +0000","Tweetbot for Mac","Pull down for actions. That’s slick.","","","","" -"473522126306041856","","","2014-06-02 17:50:47 +0000","Tweetbot for Mac","RT @marcoarment: Where’s Phil?","473522072925122560","14231571","2014-06-02 17:50:34 +0000","" -"473521770444488704","","","2014-06-02 17:49:22 +0000","Tweetbot for Mac","Tim sounds like he’s telling a ghost story around a campfire.","","","","" -"473520281995468801","","","2014-06-02 17:43:27 +0000","Tweetbot for Mac","This rivals Steve Jobs prank calling Starbucks at the iPhone introduction at MacWorld.","","","","" +"473530185762217986","","","2014-06-02 18:22:48 +0000","Tweetbot for Mac","I love the idea of Shazam in Siri. That’s perfect.","","","","" +"473530022058524672","","","2014-06-02 18:22:09 +0000","Tweetbot for Mac","Sane storage pricing! This is good. Very good. I still think people should be able to backup all iOS devices for free though.","","","","" +"473528589863116800","473528338779484160","14538248","2014-06-02 18:16:28 +0000","Tweetbot for Mac","@robynpeterson @JimRoepcke I don’t personally need it, but it’s really great to see them acknowledge the problem!","","","","" +"473528003792629760","","","2014-06-02 18:14:08 +0000","Tweetbot for Mac","RT @siracusa: Apple acknowledges the existence of family! Finally.","473527643787124736","636923","2014-06-02 18:12:42 +0000","" +"473526966927499264","","","2014-06-02 18:10:01 +0000","Tweetbot for Mac","RT @JimRoepcke: 3rd party cloud drive integration - Apple gets it.","473526877185773568","894911","2014-06-02 18:09:39 +0000","" +"473526094407032832","","","2014-06-02 18:06:33 +0000","Tweetbot for Mac","Takeaway: Forget Siri transcription, just send audio messages.","","","","" +"473525050117586944","473524896660611072","894911","2014-06-02 18:02:24 +0000","Tweetbot for Mac","@JimRoepcke And Voxer, WhatsApp, etc. Although to a lesser extent because they are not cross-platform.","","","","" +"473524313916977152","","","2014-06-02 17:59:28 +0000","Tweetbot for Mac","Is this new keyboard feature the same one that was found hidden and disabled back in iOS 3 or 4?","","","","" +"473524063772889088","473523205190066176","894911","2014-06-02 17:58:29 +0000","Tweetbot for Mac","@JimRoepcke You’re cursed. Like @zeldman ;-)","","","","" +"473522761177260032","473522569937580032","894911","2014-06-02 17:53:18 +0000","Tweetbot for Mac","@JimRoepcke My phone has never slid to unlock on its own. I don’t see why sliding to act would be any different.","","","","" +"473522412945162240","","","2014-06-02 17:51:55 +0000","Tweetbot for Mac","Pull down for actions. That’s slick.","","","","" +"473522126306041856","","","2014-06-02 17:50:47 +0000","Tweetbot for Mac","RT @marcoarment: Where’s Phil?","473522072925122560","14231571","2014-06-02 17:50:34 +0000","" +"473521770444488704","","","2014-06-02 17:49:22 +0000","Tweetbot for Mac","Tim sounds like he’s telling a ghost story around a campfire.","","","","" +"473520281995468801","","","2014-06-02 17:43:27 +0000","Tweetbot for Mac","This rivals Steve Jobs prank calling Starbucks at the iPhone introduction at MacWorld.","","","","" "473519763608449024","473518597608706048","14864447","2014-06-02 17:41:23 +0000","Twitter Web Client","@bryan_kyle @JimRoepcke Interesting to see them not even mention the version number at all. The version number is effectively gone.","","","","" -"473519503305740288","","","2014-06-02 17:40:21 +0000","Tweetbot for Mac","Notifyr: “Shit.” +"473519503305740288","","","2014-06-02 17:40:21 +0000","Tweetbot for Mac","Notifyr: “Shit.” /cc @marcoarment @getnotifyr","","","","" -"473515618994360320","","","2014-06-02 17:24:55 +0000","Tweetbot for Mac","Now we know how Apple is bringing Siri to the Mac. Spotlight.","","","","" -"473515333257404416","","","2014-06-02 17:23:47 +0000","Tweetbot for Mac","RT @siracusa: Apple finally realized that Quicksilver has existed for a decade.","473515226852118528","636923","2014-06-02 17:23:22 +0000","" -"473515186242871296","","","2014-06-02 17:23:12 +0000","Tweetbot for Mac","Craig is on fire.","","","","" -"473514934811115522","473514785233854464","33423","2014-06-02 17:22:12 +0000","Tweetbot for Mac","@gruber Dashboard has been dead for a long time.","","","","" -"473514232601116672","","","2014-06-02 17:19:25 +0000","Tweetbot for Mac","“In fact, now an entire Dashboard just slides out of Notification Center!”","","","","" -"473513909887197184","","","2014-06-02 17:18:08 +0000","Tweetbot for Mac","Dock icon dots for running apps are in the screenshots. I wonder if they are on by default.","","","","" -"473513311066005504","","","2014-06-02 17:15:45 +0000","Tweetbot for Mac","Stoked about the new iTunes icon. Enough with the blue circles.","","","","" -"473512497920483328","","","2014-06-02 17:12:31 +0000","Tweetbot for Mac","Augh! Spoilers on Twitter because the stream is slightly delayed! +"473515618994360320","","","2014-06-02 17:24:55 +0000","Tweetbot for Mac","Now we know how Apple is bringing Siri to the Mac. Spotlight.","","","","" +"473515333257404416","","","2014-06-02 17:23:47 +0000","Tweetbot for Mac","RT @siracusa: Apple finally realized that Quicksilver has existed for a decade.","473515226852118528","636923","2014-06-02 17:23:22 +0000","" +"473515186242871296","","","2014-06-02 17:23:12 +0000","Tweetbot for Mac","Craig is on fire.","","","","" +"473514934811115522","473514785233854464","33423","2014-06-02 17:22:12 +0000","Tweetbot for Mac","@gruber Dashboard has been dead for a long time.","","","","" +"473514232601116672","","","2014-06-02 17:19:25 +0000","Tweetbot for Mac","“In fact, now an entire Dashboard just slides out of Notification Center!”","","","","" +"473513909887197184","","","2014-06-02 17:18:08 +0000","Tweetbot for Mac","Dock icon dots for running apps are in the screenshots. I wonder if they are on by default.","","","","" +"473513311066005504","","","2014-06-02 17:15:45 +0000","Tweetbot for Mac","Stoked about the new iTunes icon. Enough with the blue circles.","","","","" +"473512497920483328","","","2014-06-02 17:12:31 +0000","Tweetbot for Mac","Augh! Spoilers on Twitter because the stream is slightly delayed! Yeah, I’m live-tweeting my viewing of the keynote. http://t.co/Ttstidb1l7","","","","http://i.imgur.com/qF2YNzb.gif" -"473511326023565312","473510999203385344","894911","2014-06-02 17:07:52 +0000","Tweetbot for Mac","@JimRoepcke That just doesn’t make any sense. If I have to say “oh ess ten eleven point one” I will literally die.","","","","" -"473510759012380672","473496525138427904","894911","2014-06-02 17:05:37 +0000","Tweetbot for Mac","@JimRoepcke Mac OS 11.0? OS XI? No way. 10.10 without a shred of doubt.","","","","" +"473511326023565312","473510999203385344","894911","2014-06-02 17:07:52 +0000","Tweetbot for Mac","@JimRoepcke That just doesn’t make any sense. If I have to say “oh ess ten eleven point one” I will literally die.","","","","" +"473510759012380672","473496525138427904","894911","2014-06-02 17:05:37 +0000","Tweetbot for Mac","@JimRoepcke Mac OS 11.0? OS XI? No way. 10.10 without a shred of doubt.","","","","" "473509581055066112","","","2014-06-02 17:00:56 +0000","Tweetbot for iΟS","The stream died. Emergency reboot everything!","","","","" "473201833226551296","473113308304637952","146601627","2014-06-01 20:38:03 +0000","Tweetbot for iΟS","@FozzTexx @amyengineer @laurencstill @Badger32d I didn’t know about VTs and rebooted. This was in 2001 on my only computer. Learning Linux.","","","","" -"473171484978868224","473169784415072257","894911","2014-06-01 18:37:27 +0000","Twitterrific","@JimRoepcke lol","","","","" -"473169649446944770","","","2014-06-01 18:30:10 +0000","Tweetbot for Mac","What’s your favourite camping activity, or favourite part of camping? Favourite camping meal, food, or snack?","","","","" -"472954858828337153","472892446569791489","15500308","2014-06-01 04:16:40 +0000","Tweetbot for Mac","@MikeFalzone @gisikw http://t.co/6Esj0nvhgV","","","","http://www.ecis.com/~d/punny2.htm" -"472935538656149504","","","2014-06-01 02:59:53 +0000","Twitterrific","Relax! http://t.co/j0fdhH2Zqe","","","","http://www.youtube.com/watch?v=w2FJTnK4yEo&feature=kp" -"472623375135686656","472555830957838336","894911","2014-05-31 06:19:28 +0000","Twitterrific","@JimRoepcke (─‿‿─)","","","","" +"473171484978868224","473169784415072257","894911","2014-06-01 18:37:27 +0000","Twitterrific for iOS","@JimRoepcke lol","","","","" +"473169649446944770","","","2014-06-01 18:30:10 +0000","Tweetbot for Mac","What’s your favourite camping activity, or favourite part of camping? Favourite camping meal, food, or snack?","","","","" +"472954858828337153","472892446569791489","15500308","2014-06-01 04:16:40 +0000","Tweetbot for Mac","@MikeFalzone @gisikw http://t.co/6Esj0nvhgV","","","","http://www.ecis.com/~d/punny2.htm" +"472935538656149504","","","2014-06-01 02:59:53 +0000","Twitterrific for iOS","Relax! http://t.co/j0fdhH2Zqe","","","","http://www.youtube.com/watch?v=w2FJTnK4yEo&feature=kp" +"472623375135686656","472555830957838336","894911","2014-05-31 06:19:28 +0000","Twitterrific for iOS","@JimRoepcke (─‿‿─)","","","","" "472581616448339968","","","2014-05-31 03:33:32 +0000","Tweetbot for iΟS","This PT Cruiser has a QR code on it. http://t.co/J2ZxpJOiSx","","","","https://twitter.com/_sjs/status/472581616448339968/photo/1" -"472535094318862336","470981151533064193","31867293","2014-05-31 00:28:40 +0000","Tweetbot for Mac","@taitooz @gisikw The first time I ran vi I didn’t know how to quit and had to hard reboot. I didn’t know that I could switch VTs (no GUI).","","","","" -"472414287525191681","","","2014-05-30 16:28:37 +0000","Twitterrific","RT @DanFrakes: Interesting: If you enable VoiceOver on iOS, you can use Command+Tab and Shift+Command+Tab on an external kb to switch apps.","472413090219171843","8259712","2014-05-30 16:23:52 +0000","" -"472414253538750464","472412271856320512","8276742","2014-05-30 16:28:29 +0000","Twitterrific","@roustem @siracusa The review process is far from perfect. They should be striving for better. Rules aren't perfect either. But burn it all?","","","","" -"472411639342329856","472406015301148672","8276742","2014-05-30 16:18:06 +0000","Twitterrific","@roustem @siracusa The fact that crimes are still committed doesn't mean that we should abandon the police force entirely.","","","","" -"472410052117032960","","","2014-05-30 16:11:48 +0000","Twitterrific","RT @GonzoHacker: If only I lived in a civilized nation that enshrined my cultural preferences into law","472398798375763971","773009000","2014-05-30 15:27:04 +0000","" -"472207843987169280","","","2014-05-30 02:48:17 +0000","Twitterrific","RT @stats_canada: Sales of razors have increased by 170% in Quebec","472205557324337152","701267743","2014-05-30 02:39:12 +0000","" -"472207726861238273","472205294638858240","15292261","2014-05-30 02:47:49 +0000","Twitterrific","@gregbate I read something about Rogers rolling out NFC with partners in Canada a couple years ago. They shipped! http://t.co/91ALCWxsOx","","","","http://www.rogers.com/web/content/suretap?setLanguage=en" +"472535094318862336","470981151533064193","31867293","2014-05-31 00:28:40 +0000","Tweetbot for Mac","@taitooz @gisikw The first time I ran vi I didn’t know how to quit and had to hard reboot. I didn’t know that I could switch VTs (no GUI).","","","","" +"472414287525191681","","","2014-05-30 16:28:37 +0000","Twitterrific for iOS","RT @DanFrakes: Interesting: If you enable VoiceOver on iOS, you can use Command+Tab and Shift+Command+Tab on an external kb to switch apps.","472413090219171843","8259712","2014-05-30 16:23:52 +0000","" +"472414253538750464","472412271856320512","8276742","2014-05-30 16:28:29 +0000","Twitterrific for iOS","@roustem @siracusa The review process is far from perfect. They should be striving for better. Rules aren't perfect either. But burn it all?","","","","" +"472411639342329856","472406015301148672","8276742","2014-05-30 16:18:06 +0000","Twitterrific for iOS","@roustem @siracusa The fact that crimes are still committed doesn't mean that we should abandon the police force entirely.","","","","" +"472410052117032960","","","2014-05-30 16:11:48 +0000","Twitterrific for iOS","RT @GonzoHacker: If only I lived in a civilized nation that enshrined my cultural preferences into law","472398798375763971","773009000","2014-05-30 15:27:04 +0000","" +"472207843987169280","","","2014-05-30 02:48:17 +0000","Twitterrific for iOS","RT @stats_canada: Sales of razors have increased by 170% in Quebec","472205557324337152","701267743","2014-05-30 02:39:12 +0000","" +"472207726861238273","472205294638858240","15292261","2014-05-30 02:47:49 +0000","Twitterrific for iOS","@gregbate I read something about Rogers rolling out NFC with partners in Canada a couple years ago. They shipped! http://t.co/91ALCWxsOx","","","","http://www.rogers.com/web/content/suretap?setLanguage=en" "472189135248044032","","","2014-05-30 01:33:57 +0000","Tweetbot for iΟS","RT @AirCanada: As of this morning, you can use personal electronic devices at all times during flights, as long as they’re in “airplane mod…","472035763560140800","54904679","2014-05-29 15:24:30 +0000","" "472187675416354816","472186374578532352","22961921","2014-05-30 01:28:09 +0000","Tweetbot for iΟS","@ecetweets Canucks fans are basically in an abusive relationship. That’s my observation after 10 years in BC.","","","","" "472187187816312832","472157889537126401","15292261","2014-05-30 01:26:13 +0000","Tweetbot for iΟS","@gregbate I’ve heard that NFC is used in the US, especially for cabs and stuff. Anything in Canada yet?","","","","" -"472158148015312897","472157889537126401","15292261","2014-05-29 23:30:49 +0000","Tweetbot for Mac","@gregbate Ha ha. 2014 is the year of NFC!","","","","" -"472055151021154304","472053305724502016","18137723","2014-05-29 16:41:33 +0000","Tweetbot for Mac","@raganwald More or less. Those who feel strongly speak the loudest, and speak the most.","","","","" +"472158148015312897","472157889537126401","15292261","2014-05-29 23:30:49 +0000","Tweetbot for Mac","@gregbate Ha ha. 2014 is the year of NFC!","","","","" +"472055151021154304","472053305724502016","18137723","2014-05-29 16:41:33 +0000","Tweetbot for Mac","@raganwald More or less. Those who feel strongly speak the loudest, and speak the most.","","","","" "472052781713346560","472052328741101568","108814849","2014-05-29 16:32:08 +0000","Tweetbot for iOS","@snarfmason Yeah. More like a metre though. Some women basically get that all day, every day from what I have heard.","","","","" -"472051777940905986","472051513854939136","15292261","2014-05-29 16:28:08 +0000","Twitterrific","@gregbate @snarfmason Moon on Tuesday?","","","","" -"472051675985752066","472050944109060096","108814849","2014-05-29 16:27:44 +0000","Twitterrific","@snarfmason I'm not sure, but I got a minuscule taste of what it feels like to be treated like a piece if meat.","","","","" -"472050159442874369","472047709419876352","15292261","2014-05-29 16:21:42 +0000","Twitterrific","@gregbate @snarfmason 👍","","","","" -"472049725441458177","472039444392841216","108814849","2014-05-29 16:19:59 +0000","Twitterrific","@snarfmason I lived near Church street in Toronto and once had a guy yell at me ""wanna have a threesome with me and my boyfriend?""","","","","" -"471754700413755394","","","2014-05-28 20:47:40 +0000","Tweetbot for Mac","Keyboard shortcuts created on iOS sync to other iOS devices, but don’t sync to my Mac. Shortcuts created on my Mac sync to iOS. ಠ_ಠ","","","","" -"471510171290976256","","","2014-05-28 04:35:59 +0000","Tweetbot for Mac","RT @dakami: “@lucabruno: CVE-2014-3445 is probably the most ridiculous web flaw I've ever seen https://t.co/8YLX9dQ53s” < WOW.","471470711840993280","8917142","2014-05-28 01:59:11 +0000","https://www.portcullis-security.com/security-research-and-downloads/security-advisories/cve-2014-3445/,https://www.portcullis-security.com/security-research-and-downloads/security-advisories/cve-2014-3445/" +"472051777940905986","472051513854939136","15292261","2014-05-29 16:28:08 +0000","Twitterrific for iOS","@gregbate @snarfmason Moon on Tuesday?","","","","" +"472051675985752066","472050944109060096","108814849","2014-05-29 16:27:44 +0000","Twitterrific for iOS","@snarfmason I'm not sure, but I got a minuscule taste of what it feels like to be treated like a piece if meat.","","","","" +"472050159442874369","472047709419876352","15292261","2014-05-29 16:21:42 +0000","Twitterrific for iOS","@gregbate @snarfmason 👍","","","","" +"472049725441458177","472039444392841216","108814849","2014-05-29 16:19:59 +0000","Twitterrific for iOS","@snarfmason I lived near Church street in Toronto and once had a guy yell at me ""wanna have a threesome with me and my boyfriend?""","","","","" +"471754700413755394","","","2014-05-28 20:47:40 +0000","Tweetbot for Mac","Keyboard shortcuts created on iOS sync to other iOS devices, but don’t sync to my Mac. Shortcuts created on my Mac sync to iOS. ಠ_ಠ","","","","" +"471510171290976256","","","2014-05-28 04:35:59 +0000","Tweetbot for Mac","RT @dakami: “@lucabruno: CVE-2014-3445 is probably the most ridiculous web flaw I've ever seen https://t.co/8YLX9dQ53s” < WOW.","471470711840993280","8917142","2014-05-28 01:59:11 +0000","https://www.portcullis-security.com/security-research-and-downloads/security-advisories/cve-2014-3445/,https://www.portcullis-security.com/security-research-and-downloads/security-advisories/cve-2014-3445/" "471495813596590080","","","2014-05-28 03:38:56 +0000","Tweetbot for iOS","RT @lorenb: @gruber I'm more disappointed by it the more I think about it. Was just pointless cinemagraphic fappery. Rather watch Apollo 13…","471494187620519937","9943672","2014-05-28 03:32:28 +0000","" -"471444589564682240","471442655247740928","108814849","2014-05-28 00:15:23 +0000","Tweetbot for Mac","@snarfmason It must be limited to extremely casual users.","","","","" -"471384725161254912","","","2014-05-27 20:17:31 +0000","Tweetbot for Mac","RT @SMBCComics: Privacy vs. Awesomeness http://t.co/vCTxOVoVCm #SMBC","471348528728399872","454672697","2014-05-27 17:53:41 +0000","http://www.smbc-comics.com/?id=3370,http://www.smbc-comics.com/?id=3370" -"471352361932582913","","","2014-05-27 18:08:55 +0000","Tweetbot for Mac","RT @HackerNewsOnion: More realistic Java Garbage Collector runs only on Tuesdays at 4am and makes an obscene amount of noise","471349585273581568","1263967268","2014-05-27 17:57:53 +0000","" -"471345789512712192","471345204218175488","27302287","2014-05-27 17:42:48 +0000","Tweetbot for Mac","@jacobrothstein @Trotify If they’re delivered by a team of African swallows then I’ll take two of them.","","","","" -"471345134353661952","471344167353057280","8142952","2014-05-27 17:40:11 +0000","Tweetbot for Mac","@mikeash The less cynical answer is that they are having fun guessing and thinking “what if”.","","","","" -"471344726374096896","471344167353057280","8142952","2014-05-27 17:38:34 +0000","Tweetbot for Mac","@mikeash Because people with seemingly prescient guesses may be perceived to be wise rather than simply lucky.","","","","" -"471343339640332289","471341894996594688","335991063","2014-05-27 17:33:03 +0000","Tweetbot for Mac","@AnthonyNystrom It might just be a park for stoners. http://t.co/hxJY9XTfuS","","","","http://highactivities.com" +"471444589564682240","471442655247740928","108814849","2014-05-28 00:15:23 +0000","Tweetbot for Mac","@snarfmason It must be limited to extremely casual users.","","","","" +"471384725161254912","","","2014-05-27 20:17:31 +0000","Tweetbot for Mac","RT @SMBCComics: Privacy vs. Awesomeness http://t.co/vCTxOVoVCm #SMBC","471348528728399872","454672697","2014-05-27 17:53:41 +0000","http://www.smbc-comics.com/?id=3370,http://www.smbc-comics.com/?id=3370" +"471352361932582913","","","2014-05-27 18:08:55 +0000","Tweetbot for Mac","RT @HackerNewsOnion: More realistic Java Garbage Collector runs only on Tuesdays at 4am and makes an obscene amount of noise","471349585273581568","1263967268","2014-05-27 17:57:53 +0000","" +"471345789512712192","471345204218175488","27302287","2014-05-27 17:42:48 +0000","Tweetbot for Mac","@jacobrothstein @Trotify If they’re delivered by a team of African swallows then I’ll take two of them.","","","","" +"471345134353661952","471344167353057280","8142952","2014-05-27 17:40:11 +0000","Tweetbot for Mac","@mikeash The less cynical answer is that they are having fun guessing and thinking “what if”.","","","","" +"471344726374096896","471344167353057280","8142952","2014-05-27 17:38:34 +0000","Tweetbot for Mac","@mikeash Because people with seemingly prescient guesses may be perceived to be wise rather than simply lucky.","","","","" +"471343339640332289","471341894996594688","335991063","2014-05-27 17:33:03 +0000","Tweetbot for Mac","@AnthonyNystrom It might just be a park for stoners. http://t.co/hxJY9XTfuS","","","","http://highactivities.com" "471339209513377794","","","2014-05-27 17:16:39 +0000","Twitter Web Client","RT @jedschmidt: ordering a lemonade, no sweat. http://t.co/xtmth7aZ34","471325187292405761","815114","2014-05-27 16:20:56 +0000","https://twitter.com/jedschmidt/status/471325187292405761/photo/1,https://twitter.com/jedschmidt/status/471325187292405761/photo/1" "471339156011249664","471331857788063745","815114","2014-05-27 17:16:26 +0000","Twitter Web Client","@jedschmidt Ha! Didn't know about that one and had to look it up. I did come across Calpis in Dubai though.","","","","" "471333276989157378","","","2014-05-27 16:53:04 +0000","Tweetbot for iOS","Waiting for Wile E. Coyote to show up and maim himself. http://t.co/nVbJ3jbkvq","","","","https://twitter.com/_sjs/status/471333276989157378/photo/1" "471331676610908161","471325187292405761","815114","2014-05-27 16:46:43 +0000","Tweetbot for iOS","@jedschmidt You have options when you change your mind about the sweat. http://t.co/jmJiQ3mmGZ","","","","http://en.m.wikipedia.org/wiki/Pocari_Sweat" -"471146652003467265","","","2014-05-27 04:31:29 +0000","Tweetbot for Mac","RT @timocratic: Any python, node, or data peeps interested in a gig for a client in the education space who is actually making a difference…","471106645880475649","14086000","2014-05-27 01:52:31 +0000","" -"471146247915458560","","","2014-05-27 04:29:53 +0000","Tweetbot for Mac","Another day of iOS development, another day of trying to scroll in Tweetbot and Safari by throwing the view upwards with my trackpad.","","","","" +"471146652003467265","","","2014-05-27 04:31:29 +0000","Tweetbot for Mac","RT @timocratic: Any python, node, or data peeps interested in a gig for a client in the education space who is actually making a difference…","471106645880475649","14086000","2014-05-27 01:52:31 +0000","" +"471146247915458560","","","2014-05-27 04:29:53 +0000","Tweetbot for Mac","Another day of iOS development, another day of trying to scroll in Tweetbot and Safari by throwing the view upwards with my trackpad.","","","","" "471087408143147008","","","2014-05-27 00:36:05 +0000","Tweetbot for iOS","Not just an attack, but a cyberattack!","","","","" "470752421569134592","","","2014-05-26 02:24:58 +0000","Tweetbot for iOS","No bed bugs! How can I resist?! ಠ_ಠ #freecouch http://t.co/CaX6V1OYRA","","","","https://twitter.com/_sjs/status/470752421569134592/photo/1" -"470655484223954945","","","2014-05-25 19:59:46 +0000","Tweetbot for Mac","My first pull request was a small fix for @cappuccino almost 4 years ago. https://t.co/oembcOy8ox (via http://t.co/VOnEm7MQfe)","","","","https://github.com/cappuccino/cappuccino/pull/862,http://firstpr.me" -"470652339724881920","","14618863","2014-05-25 19:47:16 +0000","Tweetbot for Mac","@anandshimpi What’s the status of the AT podcast? I hope it’s just a hiatus but I’m starting to get worried.","","","","" -"470599120801890304","","","2014-05-25 16:15:48 +0000","Twitterrific","RT @asymco: You know about faster horses but did you know about rocket mailmen? http://t.co/ocJDcffZSX","470514091917078528","110520327","2014-05-25 10:37:55 +0000","https://twitter.com/asymco/status/470514091917078528/photo/1,https://twitter.com/asymco/status/470514091917078528/photo/1" -"470291972549537792","470282276912508928","1253355925","2014-05-24 19:55:18 +0000","Twitterrific","@atpfm The Sprite glass could be a sippy cup.","","","","" -"470291708836454400","","","2014-05-24 19:54:15 +0000","Twitterrific","RT @JimRoepcke: It’s pretty incredible that a JavaScript can cause an app to deadlock the main thread by getting stuck in the WebThreadLock.","470281318886940673","894911","2014-05-24 19:12:58 +0000","" +"470655484223954945","","","2014-05-25 19:59:46 +0000","Tweetbot for Mac","My first pull request was a small fix for @cappuccino almost 4 years ago. https://t.co/oembcOy8ox (via http://t.co/VOnEm7MQfe)","","","","https://github.com/cappuccino/cappuccino/pull/862,http://firstpr.me" +"470652339724881920","","14618863","2014-05-25 19:47:16 +0000","Tweetbot for Mac","@anandshimpi What’s the status of the AT podcast? I hope it’s just a hiatus but I’m starting to get worried.","","","","" +"470599120801890304","","","2014-05-25 16:15:48 +0000","Twitterrific for iOS","RT @asymco: You know about faster horses but did you know about rocket mailmen? http://t.co/ocJDcffZSX","470514091917078528","110520327","2014-05-25 10:37:55 +0000","https://twitter.com/asymco/status/470514091917078528/photo/1,https://twitter.com/asymco/status/470514091917078528/photo/1" +"470291972549537792","470282276912508928","1253355925","2014-05-24 19:55:18 +0000","Twitterrific for iOS","@atpfm The Sprite glass could be a sippy cup.","","","","" +"470291708836454400","","","2014-05-24 19:54:15 +0000","Twitterrific for iOS","RT @JimRoepcke: It’s pretty incredible that a JavaScript can cause an app to deadlock the main thread by getting stuck in the WebThreadLock.","470281318886940673","894911","2014-05-24 19:12:58 +0000","" "469690213392850944","","","2014-05-23 04:04:07 +0000","Twitter Web Client","Still the best list on Twitter. https://t.co/Z2NrgLkmpU","","","","https://twitter.com/JimRoepcke/people-who-owe-me-money/members" -"469676357383753728","","","2014-05-23 03:09:04 +0000","Tweetbot for Mac","RT @JimRoepcke: We have a reduced test case that shows GADBannerView deadlocks the main thread when a view controller containing a UIWebVie…","469612466230423554","894911","2014-05-22 22:55:11 +0000","" -"469599427225591808","469594578119847936","14180235","2014-05-22 22:03:22 +0000","Twitterrific for Mac","@daveeed This is what I get for brushing my teeth before coffee.","","","","" -"469587774577070080","","","2014-05-22 21:17:04 +0000","Twitterrific for Mac","RT @DLin71: Fascinating map shows what the United States would look like if it were a dachshund. http://t.co/ccFoJFt0mK","469470090052636674","144408677","2014-05-22 13:29:26 +0000","https://twitter.com/DLin71/status/469470090052636674/photo/1,https://twitter.com/DLin71/status/469470090052636674/photo/1" -"469531320973295617","","","2014-05-22 17:32:45 +0000","Twitterrific for Mac","While I was brushing my teeth this morning, I somehow managed to get toothpaste in my eye. I don’t recommend it.","","","","" +"469676357383753728","","","2014-05-23 03:09:04 +0000","Tweetbot for Mac","RT @JimRoepcke: We have a reduced test case that shows GADBannerView deadlocks the main thread when a view controller containing a UIWebVie…","469612466230423554","894911","2014-05-22 22:55:11 +0000","" +"469599427225591808","469594578119847936","14180235","2014-05-22 22:03:22 +0000","Twitterrific for Mac","@daveeed This is what I get for brushing my teeth before coffee.","","","","" +"469587774577070080","","","2014-05-22 21:17:04 +0000","Twitterrific for Mac","RT @DLin71: Fascinating map shows what the United States would look like if it were a dachshund. http://t.co/ccFoJFt0mK","469470090052636674","144408677","2014-05-22 13:29:26 +0000","https://twitter.com/DLin71/status/469470090052636674/photo/1,https://twitter.com/DLin71/status/469470090052636674/photo/1" +"469531320973295617","","","2014-05-22 17:32:45 +0000","Twitterrific for Mac","While I was brushing my teeth this morning, I somehow managed to get toothpaste in my eye. I don’t recommend it.","","","","" "469340612253458433","","","2014-05-22 04:54:56 +0000","OS X","Music for fighting bugs! https://t.co/DppG3i3Eph","","","","https://www.youtube.com/watch?v=0iRTB-FTMdk" -"469243125613862912","469221262393221120","27302287","2014-05-21 22:27:33 +0000","Twitterrific for Mac","@jacobrothstein Ruby and JS are both nuts. And I say that as someone who likes both of them.","","","","" -"469203189720698880","469179136347750400","972651","2014-05-21 19:48:52 +0000","Twitterrific for Mac","@mashable ¯\_(ツ)_/¯ forever!","","","","" -"469177343031119872","469176869946785792","108814849","2014-05-21 18:06:10 +0000","Twitterrific for Mac","@snarfmason Night and day. It baffles me that people still buy computers without them. Fuck the discrete GPU, your machine is crippled!","","","","" -"469176974162669569","469176732231020546","335991063","2014-05-21 18:04:42 +0000","Twitterrific for Mac","@AnthonyNystrom Backup plan: http://t.co/yqKg0UynpX","","","","http://www.zazzle.com/custom/mens+tshirts" -"469176450453475328","469176136535007233","15292261","2014-05-21 18:02:37 +0000","Twitterrific for Mac","@gregbate Yeah, after writing that I thought about using it with a pen and it makes a lot of sense to detach the keyboard in that scenario.","","","","" -"469175975356690432","469173166711902209","335991063","2014-05-21 18:00:44 +0000","Twitterrific for Mac","@AnthonyNystrom ha ha! Great shirt. Did you buy one?","","","","" -"469175842204311553","469172534349291520","108814849","2014-05-21 18:00:12 +0000","Twitterrific for Mac","@snarfmason I ❤️ SSDs so hard. Spent a fortune on my first one but it was 100% worth it.","","","","" -"469151415722446850","469148244530827264","15292261","2014-05-21 16:23:08 +0000","Twitterrific","@gregbate Do you use your Surface as a tablet? At this point it seems like they should make a touch-screen laptop. At 12"" anyway.","","","","" +"469243125613862912","469221262393221120","27302287","2014-05-21 22:27:33 +0000","Twitterrific for Mac","@jacobrothstein Ruby and JS are both nuts. And I say that as someone who likes both of them.","","","","" +"469203189720698880","469179136347750400","972651","2014-05-21 19:48:52 +0000","Twitterrific for Mac","@mashable ¯\_(ツ)_/¯ forever!","","","","" +"469177343031119872","469176869946785792","108814849","2014-05-21 18:06:10 +0000","Twitterrific for Mac","@snarfmason Night and day. It baffles me that people still buy computers without them. Fuck the discrete GPU, your machine is crippled!","","","","" +"469176974162669569","469176732231020546","335991063","2014-05-21 18:04:42 +0000","Twitterrific for Mac","@AnthonyNystrom Backup plan: http://t.co/yqKg0UynpX","","","","http://www.zazzle.com/custom/mens+tshirts" +"469176450453475328","469176136535007233","15292261","2014-05-21 18:02:37 +0000","Twitterrific for Mac","@gregbate Yeah, after writing that I thought about using it with a pen and it makes a lot of sense to detach the keyboard in that scenario.","","","","" +"469175975356690432","469173166711902209","335991063","2014-05-21 18:00:44 +0000","Twitterrific for Mac","@AnthonyNystrom ha ha! Great shirt. Did you buy one?","","","","" +"469175842204311553","469172534349291520","108814849","2014-05-21 18:00:12 +0000","Twitterrific for Mac","@snarfmason I ❤️ SSDs so hard. Spent a fortune on my first one but it was 100% worth it.","","","","" +"469151415722446850","469148244530827264","15292261","2014-05-21 16:23:08 +0000","Twitterrific for iOS","@gregbate Do you use your Surface as a tablet? At this point it seems like they should make a touch-screen laptop. At 12"" anyway.","","","","" "469007324678348800","","","2014-05-21 06:50:34 +0000","iOS","The Rise of Nintendo: A Story in 8 Bits http://t.co/Zkqq9BGEP8","","","","http://grantland.com/features/the-rise-of-nintendo-video-games-history/" "468994038365179904","","","2014-05-21 05:57:46 +0000","iOS","Secrets, lies and Snowden's email: why I was forced to shut down Lavabit http://t.co/gkOFde7UqY","","","","http://www.theguardian.com/commentisfree/2014/may/20/why-did-lavabit-shut-down-snowden-email" -"468954682497728512","468946925258305536","894911","2014-05-21 03:21:23 +0000","Twitterrific","@JimRoepcke I've seen 10-15 second commercials on some sites. They probably need to start at 2-3 seconds though.","","","","" -"468914219803754496","","","2014-05-21 00:40:36 +0000","Twitterrific for Mac","RT @jaffathecake: Completed my Rubik's Cube speedrun https://t.co/S3yuo9igPf","468336546073309184","15390783","2014-05-19 10:25:08 +0000","https://www.youtube.com/watch?v=Nxqe1CE8mAc,https://www.youtube.com/watch?v=Nxqe1CE8mAc" -"468807051204775936","","","2014-05-20 17:34:45 +0000","Twitterrific for Mac","RT @igrigorik: Script-injected ""async scripts"" considered harmful: http://t.co/820X0sUXQd - tl;dr use <script async>, its time has come.","468803525393137664","9980812","2014-05-20 17:20:45 +0000","http://bit.ly/1i0xbKl,http://bit.ly/1i0xbKl" -"468548495784157185","","","2014-05-20 00:27:21 +0000","Twitterrific","RT @siracusa: @marcoarment http://t.co/72uEiSPLLm","468540528486023169","636923","2014-05-19 23:55:41 +0000","http://cl.ly/image/2C2y3s1g3Q2s,http://cl.ly/image/2C2y3s1g3Q2s" -"468447161009840129","","","2014-05-19 17:44:41 +0000","Twitterrific for Mac","RT @MattMickiewicz: SpaceX achieved orbital flight, with less capital than Pinterest has raised to allow people to pin photos ($764 million…","467563459832721408","16349641","2014-05-17 07:13:10 +0000","" -"468445105415004161","","","2014-05-19 17:36:31 +0000","Twitterrific for Mac","RT @rob_rix: Victoria Day, traditionally celebrated by waiting ’til nightfall and then scaring all the neighbourhood pets with small but lo…","468393248109920256","14056827","2014-05-19 14:10:27 +0000","" -"468135211222331392","468135027419537408","15292261","2014-05-18 21:05:06 +0000","Twitterrific","@gregbate Yeah that thing is creepy. I wouldn't want one on my hand either.","","","","" -"468134269382963201","468125199594819584","15292261","2014-05-18 21:01:21 +0000","Twitterrific","@gregbate I guess you're not a fan of the bug zoo.","","","","" -"468132867013234688","","","2014-05-18 20:55:47 +0000","Twitterrific","RT @GMinusG: Hope you're having a great weekend. Here's one from the dusty archives.... http://t.co/nfgjQ8VFeT","468097888472809472","16419203","2014-05-18 18:36:48 +0000","http://fb.me/6uqnpf8vH,http://fb.me/6uqnpf8vH" -"468131078419386368","","","2014-05-18 20:48:41 +0000","Twitterrific","RT @siracusa: I apologize for the capital ""Of"" in this week's @atpfm title. I was not consulted.","468082152496959488","636923","2014-05-18 17:34:16 +0000","" -"467826355590025217","","","2014-05-18 00:37:49 +0000","Twitterrific for Mac","RT @sigfpe: Types, and two approaches to problem solving http://t.co/c7sS2KiTdU","467692482902245377","16748247","2014-05-17 15:45:51 +0000","http://blog.sigfpe.com/2014/05/types-and-two-approaches-to-problem.html,http://blog.sigfpe.com/2014/05/types-and-two-approaches-to-problem.html" -"467823694283173889","467793836379365376","108814849","2014-05-18 00:27:15 +0000","Twitterrific for Mac","@snarfmason Oh the Highland games are on now? Nice day to be outside drinking!","","","","" -"467755247255830529","467731591016349696","10760422","2014-05-17 19:55:16 +0000","Twitterrific","@daringfireball @gruber Finally.","","","","" -"467592838893420544","","","2014-05-17 09:09:54 +0000","Twitterrific","RT @jacobrothstein: .@geeksam This, a thousand times over! Also ""set up"" vs ""setup.""","467572847393533952","27302287","2014-05-17 07:50:28 +0000","" -"467592832836853762","","","2014-05-17 09:09:53 +0000","Twitterrific","RT @telent_net: @geeksam wtf does ""log in"" even mean anyway? ""Insert timber here""?","467567396350615552","19567770","2014-05-17 07:28:48 +0000","" -"467592798514860033","","","2014-05-17 09:09:45 +0000","Twitterrific","RT @geeksam: Memo to all web developers everywhere: “Login” is a noun. “Log in” is a verb phrase. KNOW THE DIFFERENCE.","467393114395918336","38699900","2014-05-16 19:56:16 +0000","" -"467592679824441345","467393114395918336","38699900","2014-05-17 09:09:16 +0000","Twitterrific","@geeksam @jacobrothstein Pet peeve of mine. I prefer ""sign in"" because it avoids the whole issue, but that's an uphill battle in itself.","","","","" -"467536443074547712","","","2014-05-17 05:25:49 +0000","Twitterrific","RT @donmelton: @gte Of course, that never went anywhere. Much like the “Children’s Finder” (or whatever they called it). DOA.","467525556394016769","11201752","2014-05-17 04:42:33 +0000","" -"467536407095820288","","","2014-05-17 05:25:40 +0000","Twitterrific","RT @donmelton: @gte We talked about hiding the file system, not just /Applications, several times at The Fruit Company. And this was before…","467525245620858881","11201752","2014-05-17 04:41:19 +0000","" -"467386683126579201","467333837044060160","894911","2014-05-16 19:30:43 +0000","Twitterrific for Mac","@JimRoepcke Luckily most method names don’t fit into tweets anyway! :p https://t.co/bmUqokHMDY","","","","https://github.com/Quotation/LongestCocoa" -"467142905329483776","467140645430112256","108814849","2014-05-16 03:22:02 +0000","Twitterrific","@snarfmason Yup! Next game weekend we could do homemade pulled pork. That'd be a fuck load of pork butt.","","","","" -"467137147133120512","467127907068825600","108814849","2014-05-16 02:59:09 +0000","Twitterrific","@snarfmason Yummy! I didn't put liquid smoke on last night which was a mistake. But my best yet for consistency.","","","","" -"467113671936999426","","","2014-05-16 01:25:52 +0000","Twitterrific","It all pulled! Pretty successful. http://t.co/OmY0qFHrQK","","","","https://twitter.com/_sjs/status/467113671936999426/photo/1" -"467018069593034753","","","2014-05-15 19:05:59 +0000","Twitterrific","RT @JimRoepcke: @myell0w and if you have a UIWebView inside a UIWebView, you're going to have a bad time.","467017663516921856","894911","2014-05-15 19:04:22 +0000","" -"467016251072466944","467015099174379520","108814849","2014-05-15 18:58:45 +0000","Twitterrific for Mac","@snarfmason Fodder for my epitaph, thanks!","","","","" +"468954682497728512","468946925258305536","894911","2014-05-21 03:21:23 +0000","Twitterrific for iOS","@JimRoepcke I've seen 10-15 second commercials on some sites. They probably need to start at 2-3 seconds though.","","","","" +"468914219803754496","","","2014-05-21 00:40:36 +0000","Twitterrific for Mac","RT @jaffathecake: Completed my Rubik's Cube speedrun https://t.co/S3yuo9igPf","468336546073309184","15390783","2014-05-19 10:25:08 +0000","https://www.youtube.com/watch?v=Nxqe1CE8mAc,https://www.youtube.com/watch?v=Nxqe1CE8mAc" +"468807051204775936","","","2014-05-20 17:34:45 +0000","Twitterrific for Mac","RT @igrigorik: Script-injected ""async scripts"" considered harmful: http://t.co/820X0sUXQd - tl;dr use <script async>, its time has come.","468803525393137664","9980812","2014-05-20 17:20:45 +0000","http://bit.ly/1i0xbKl,http://bit.ly/1i0xbKl" +"468548495784157185","","","2014-05-20 00:27:21 +0000","Twitterrific for iOS","RT @siracusa: @marcoarment http://t.co/72uEiSPLLm","468540528486023169","636923","2014-05-19 23:55:41 +0000","http://cl.ly/image/2C2y3s1g3Q2s,http://cl.ly/image/2C2y3s1g3Q2s" +"468447161009840129","","","2014-05-19 17:44:41 +0000","Twitterrific for Mac","RT @MattMickiewicz: SpaceX achieved orbital flight, with less capital than Pinterest has raised to allow people to pin photos ($764 million…","467563459832721408","16349641","2014-05-17 07:13:10 +0000","" +"468445105415004161","","","2014-05-19 17:36:31 +0000","Twitterrific for Mac","RT @rob_rix: Victoria Day, traditionally celebrated by waiting ’til nightfall and then scaring all the neighbourhood pets with small but lo…","468393248109920256","14056827","2014-05-19 14:10:27 +0000","" +"468135211222331392","468135027419537408","15292261","2014-05-18 21:05:06 +0000","Twitterrific for iOS","@gregbate Yeah that thing is creepy. I wouldn't want one on my hand either.","","","","" +"468134269382963201","468125199594819584","15292261","2014-05-18 21:01:21 +0000","Twitterrific for iOS","@gregbate I guess you're not a fan of the bug zoo.","","","","" +"468132867013234688","","","2014-05-18 20:55:47 +0000","Twitterrific for iOS","RT @GMinusG: Hope you're having a great weekend. Here's one from the dusty archives.... http://t.co/nfgjQ8VFeT","468097888472809472","16419203","2014-05-18 18:36:48 +0000","http://fb.me/6uqnpf8vH,http://fb.me/6uqnpf8vH" +"468131078419386368","","","2014-05-18 20:48:41 +0000","Twitterrific for iOS","RT @siracusa: I apologize for the capital ""Of"" in this week's @atpfm title. I was not consulted.","468082152496959488","636923","2014-05-18 17:34:16 +0000","" +"467826355590025217","","","2014-05-18 00:37:49 +0000","Twitterrific for Mac","RT @sigfpe: Types, and two approaches to problem solving http://t.co/c7sS2KiTdU","467692482902245377","16748247","2014-05-17 15:45:51 +0000","http://blog.sigfpe.com/2014/05/types-and-two-approaches-to-problem.html,http://blog.sigfpe.com/2014/05/types-and-two-approaches-to-problem.html" +"467823694283173889","467793836379365376","108814849","2014-05-18 00:27:15 +0000","Twitterrific for Mac","@snarfmason Oh the Highland games are on now? Nice day to be outside drinking!","","","","" +"467755247255830529","467731591016349696","10760422","2014-05-17 19:55:16 +0000","Twitterrific for iOS","@daringfireball @gruber Finally.","","","","" +"467592838893420544","","","2014-05-17 09:09:54 +0000","Twitterrific for iOS","RT @jacobrothstein: .@geeksam This, a thousand times over! Also ""set up"" vs ""setup.""","467572847393533952","27302287","2014-05-17 07:50:28 +0000","" +"467592832836853762","","","2014-05-17 09:09:53 +0000","Twitterrific for iOS","RT @telent_net: @geeksam wtf does ""log in"" even mean anyway? ""Insert timber here""?","467567396350615552","19567770","2014-05-17 07:28:48 +0000","" +"467592798514860033","","","2014-05-17 09:09:45 +0000","Twitterrific for iOS","RT @geeksam: Memo to all web developers everywhere: “Login” is a noun. “Log in” is a verb phrase. KNOW THE DIFFERENCE.","467393114395918336","38699900","2014-05-16 19:56:16 +0000","" +"467592679824441345","467393114395918336","38699900","2014-05-17 09:09:16 +0000","Twitterrific for iOS","@geeksam @jacobrothstein Pet peeve of mine. I prefer ""sign in"" because it avoids the whole issue, but that's an uphill battle in itself.","","","","" +"467536443074547712","","","2014-05-17 05:25:49 +0000","Twitterrific for iOS","RT @donmelton: @gte Of course, that never went anywhere. Much like the “Children’s Finder” (or whatever they called it). DOA.","467525556394016769","11201752","2014-05-17 04:42:33 +0000","" +"467536407095820288","","","2014-05-17 05:25:40 +0000","Twitterrific for iOS","RT @donmelton: @gte We talked about hiding the file system, not just /Applications, several times at The Fruit Company. And this was before…","467525245620858881","11201752","2014-05-17 04:41:19 +0000","" +"467386683126579201","467333837044060160","894911","2014-05-16 19:30:43 +0000","Twitterrific for Mac","@JimRoepcke Luckily most method names don’t fit into tweets anyway! :p https://t.co/bmUqokHMDY","","","","https://github.com/Quotation/LongestCocoa" +"467142905329483776","467140645430112256","108814849","2014-05-16 03:22:02 +0000","Twitterrific for iOS","@snarfmason Yup! Next game weekend we could do homemade pulled pork. That'd be a fuck load of pork butt.","","","","" +"467137147133120512","467127907068825600","108814849","2014-05-16 02:59:09 +0000","Twitterrific for iOS","@snarfmason Yummy! I didn't put liquid smoke on last night which was a mistake. But my best yet for consistency.","","","","" +"467113671936999426","","","2014-05-16 01:25:52 +0000","Twitterrific for iOS","It all pulled! Pretty successful. http://t.co/OmY0qFHrQK","","","","https://twitter.com/_sjs/status/467113671936999426/photo/1" +"467018069593034753","","","2014-05-15 19:05:59 +0000","Twitterrific for iOS","RT @JimRoepcke: @myell0w and if you have a UIWebView inside a UIWebView, you're going to have a bad time.","467017663516921856","894911","2014-05-15 19:04:22 +0000","" +"467016251072466944","467015099174379520","108814849","2014-05-15 18:58:45 +0000","Twitterrific for Mac","@snarfmason Fodder for my epitaph, thanks!","","","","" "467014745430978560","467014567579901952","108814849","2014-05-15 18:52:46 +0000","Twitter Web Client","@snarfmason I hope this batch turns out well. This is my third attempt. The first was fairly bad, second was 1/2 pullable. Third time lucky!","","","","" -"467014375292043264","467014066188607489","108814849","2014-05-15 18:51:18 +0000","Twitterrific for Mac","@snarfmason It is, assuredly, the worst sauce.","","","","" +"467014375292043264","467014066188607489","108814849","2014-05-15 18:51:18 +0000","Twitterrific for Mac","@snarfmason It is, assuredly, the worst sauce.","","","","" "467014268395593728","467014066188607489","108814849","2014-05-15 18:50:52 +0000","Twitter Web Client","@snarfmason Oh yeah! Making up some pulled pork today.","","","","" -"467013181806637056","","","2014-05-15 18:46:33 +0000","Twitterrific","RT @myell0w: @JimRoepcke works great without zooming, didn't get it to work correctly with zooming enabled iirc.","466999796554035200","16004268","2014-05-15 17:53:22 +0000","" -"467013084649775104","","","2014-05-15 18:46:10 +0000","Twitterrific","RT @JimRoepcke: So far two have said they've resized UIWebView to fit its content and made it a subview of a UIScrollView with no ill effec…","466993868001800192","894911","2014-05-15 17:29:49 +0000","" -"467013042224373760","","","2014-05-15 18:46:00 +0000","Twitterrific","Close enough, I guess. http://t.co/kOX3AnmEol","","","","https://twitter.com/_sjs/status/467013042224373760/photo/1" -"466989377428529152","","","2014-05-15 17:11:58 +0000","Twitterrific for Mac","RT @JimRoepcke: How bad of an idea is it to resize a UIWebView to the size of its content, disable scrolling and stick it in a UIScrollView?","466988264142807040","894911","2014-05-15 17:07:33 +0000","" -"466988508435845120","","","2014-05-15 17:08:31 +0000","Twitterrific for Mac","See you at @BreweryTheBeast in September! Looks like tickets are basically sold out. Glad I had my finger on the trigger.","","","","" -"466759148403576832","466754557905625088","31442511","2014-05-15 01:57:07 +0000","Twitterrific","@RogersHelps No problem! 😀","","","","" +"467013181806637056","","","2014-05-15 18:46:33 +0000","Twitterrific for iOS","RT @myell0w: @JimRoepcke works great without zooming, didn't get it to work correctly with zooming enabled iirc.","466999796554035200","16004268","2014-05-15 17:53:22 +0000","" +"467013084649775104","","","2014-05-15 18:46:10 +0000","Twitterrific for iOS","RT @JimRoepcke: So far two have said they've resized UIWebView to fit its content and made it a subview of a UIScrollView with no ill effec…","466993868001800192","894911","2014-05-15 17:29:49 +0000","" +"467013042224373760","","","2014-05-15 18:46:00 +0000","Twitterrific for iOS","Close enough, I guess. http://t.co/kOX3AnmEol","","","","https://twitter.com/_sjs/status/467013042224373760/photo/1" +"466989377428529152","","","2014-05-15 17:11:58 +0000","Twitterrific for Mac","RT @JimRoepcke: How bad of an idea is it to resize a UIWebView to the size of its content, disable scrolling and stick it in a UIScrollView?","466988264142807040","894911","2014-05-15 17:07:33 +0000","" +"466988508435845120","","","2014-05-15 17:08:31 +0000","Twitterrific for Mac","See you at @BreweryTheBeast in September! Looks like tickets are basically sold out. Glad I had my finger on the trigger.","","","","" +"466759148403576832","466754557905625088","31442511","2014-05-15 01:57:07 +0000","Twitterrific for iOS","@RogersHelps No problem! 😀","","","","" "466753018520944640","","","2014-05-15 01:32:46 +0000","Twitter Web Client","Way to go Deanna at @RogersHelps. Above and beyond what I could reasonably expect in this situation. 👍","","","","" -"466691429067001856","466681014618980352","14864447","2014-05-14 21:28:02 +0000","Twitterrific for Mac","@bryan_kyle I still haven’t tried either of them so I’m curious to see which one you land on.","","","","" -"466651987027582976","","","2014-05-14 18:51:18 +0000","Twitterrific","RT @incanus77: Best slide of @donmelton's talk, about assembling a team: #NSNorth http://t.co/ueclEVD61g","464584151417749504","4765141","2014-05-09 01:54:27 +0000","https://twitter.com/incanus77/status/464584151417749504/photo/1,https://twitter.com/incanus77/status/464584151417749504/photo/1" -"466651907054792704","466651361010917376","108814849","2014-05-14 18:50:59 +0000","Twitterrific","@snarfmason Yeah. The first time I flipped through it I was like ""Oh, these patterns have names!""","","","","" -"466648144957022209","","","2014-05-14 18:36:02 +0000","Twitterrific for Mac","RT @mraleph: now here is a question: which tier(s) of JSC do you hit when you run jsperf test case","466629454010548224","53010195","2014-05-14 17:21:46 +0000","" -"466648093614538752","466626611433844736","894911","2014-05-14 18:35:50 +0000","Twitterrific for Mac","@JimRoepcke @alexmoto Description: “Create a superlative user experience” +"466691429067001856","466681014618980352","14864447","2014-05-14 21:28:02 +0000","Twitterrific for Mac","@bryan_kyle I still haven’t tried either of them so I’m curious to see which one you land on.","","","","" +"466651987027582976","","","2014-05-14 18:51:18 +0000","Twitterrific for iOS","RT @incanus77: Best slide of @donmelton's talk, about assembling a team: #NSNorth http://t.co/ueclEVD61g","464584151417749504","4765141","2014-05-09 01:54:27 +0000","https://twitter.com/incanus77/status/464584151417749504/photo/1,https://twitter.com/incanus77/status/464584151417749504/photo/1" +"466651907054792704","466651361010917376","108814849","2014-05-14 18:50:59 +0000","Twitterrific for iOS","@snarfmason Yeah. The first time I flipped through it I was like ""Oh, these patterns have names!""","","","","" +"466648144957022209","","","2014-05-14 18:36:02 +0000","Twitterrific for Mac","RT @mraleph: now here is a question: which tier(s) of JSC do you hit when you run jsperf test case","466629454010548224","53010195","2014-05-14 17:21:46 +0000","" +"466648093614538752","466626611433844736","894911","2014-05-14 18:35:50 +0000","Twitterrific for Mac","@JimRoepcke @alexmoto Description: “Create a superlative user experience” Oops.","","","","" -"466647125997019136","466626162232279040","108814849","2014-05-14 18:31:59 +0000","Twitterrific for Mac","@snarfmason I need to pick up a copy of that book. It’s good stuff.","","","","" -"466386702203113473","466358254071971841","108814849","2014-05-14 01:17:09 +0000","Twitterrific for Mac","@snarfmason 90210 is definitely in the rotation.","","","","" -"466346810228105216","","108814849","2014-05-13 22:38:38 +0000","Twitterrific for Mac","@snarfmason @ATXChristina Illinois is surrounded. I wonder if that makes them nervous.","","","","" -"466009494242480128","466008028295462914","17810599","2014-05-13 00:18:16 +0000","Twitterrific for Mac","@HipChat A glimmer of hope! Thanks for letting me know :)","","","","" -"465976722882437120","465968938393022464","108814849","2014-05-12 22:08:02 +0000","Twitterrific for Mac","@snarfmason After using HipChat’s video chat, Hangouts can’t do video until I reboot. Green light comes on but no video. 😃🔫","","","","" -"465885744603492352","465869653668265984","108814849","2014-05-12 16:06:31 +0000","Twitterrific for Mac","@snarfmason Exactly! I’ll take one with a drone and a Boston Dynamics Big Dog please.","","","","" -"465751291843473408","","","2014-05-12 07:12:15 +0000","Twitterrific","It's like being a warg.","","","","" -"465751216438673408","","","2014-05-12 07:11:57 +0000","Twitterrific","Want. +"466647125997019136","466626162232279040","108814849","2014-05-14 18:31:59 +0000","Twitterrific for Mac","@snarfmason I need to pick up a copy of that book. It’s good stuff.","","","","" +"466386702203113473","466358254071971841","108814849","2014-05-14 01:17:09 +0000","Twitterrific for Mac","@snarfmason 90210 is definitely in the rotation.","","","","" +"466346810228105216","","108814849","2014-05-13 22:38:38 +0000","Twitterrific for Mac","@snarfmason @ATXChristina Illinois is surrounded. I wonder if that makes them nervous.","","","","" +"466009494242480128","466008028295462914","17810599","2014-05-13 00:18:16 +0000","Twitterrific for Mac","@HipChat A glimmer of hope! Thanks for letting me know :)","","","","" +"465976722882437120","465968938393022464","108814849","2014-05-12 22:08:02 +0000","Twitterrific for Mac","@snarfmason After using HipChat’s video chat, Hangouts can’t do video until I reboot. Green light comes on but no video. 😃🔫","","","","" +"465885744603492352","465869653668265984","108814849","2014-05-12 16:06:31 +0000","Twitterrific for Mac","@snarfmason Exactly! I’ll take one with a drone and a Boston Dynamics Big Dog please.","","","","" +"465751291843473408","","","2014-05-12 07:12:15 +0000","Twitterrific for iOS","It's like being a warg.","","","","" +"465751216438673408","","","2014-05-12 07:11:57 +0000","Twitterrific for iOS","Want. MT @mashabletech: Parrot has unveiled an Oculus Rift-enabled flying drone http://t.co/wznXJ3onZJ http://t.co/OEXkPLCvUq","","","","http://on.mash.to/1l0AUJV,https://twitter.com/mashabletech/status/465668381132455937/photo/1" "465562322774532096","465560812162387969","1075183315","2014-05-11 18:41:22 +0000","Twitter for iPhone","@vesperapp Largely a compulsion. I put them there purposefully and would like them to remain. It's usually for lists that I append to.","","","","" -"465288787572965377","","","2014-05-11 00:34:26 +0000","Twitterrific","Curses! @vesperapp trims my trailing newlines. I want those to stay there.","","","","" -"465270695531151360","465270533685129218","15292261","2014-05-10 23:22:32 +0000","Twitterrific for Mac","@gregbate I’d definitely check it out!","","","","" -"465270279745601538","","15292261","2014-05-10 23:20:53 +0000","Twitterrific for Mac","@gregbate Are you excited? +"465288787572965377","","","2014-05-11 00:34:26 +0000","Twitterrific for iOS","Curses! @vesperapp trims my trailing newlines. I want those to stay there.","","","","" +"465270695531151360","465270533685129218","15292261","2014-05-10 23:22:32 +0000","Twitterrific for Mac","@gregbate I’d definitely check it out!","","","","" +"465270279745601538","","15292261","2014-05-10 23:20:53 +0000","Twitterrific for Mac","@gregbate Are you excited? 'Dawn of the Planets of the Apes' Trailer: It's Humans vs. Apes http://t.co/f3hPGZYqjn via @mashable","","","","http://mashable.com/2014/05/08/dawn-of-the-planets-of-the-apes-trailer/#:eyJzIjoidCIsImkiOiJfa3Mzbngzd2Rqa2Y1dnRleCJ9" -"465269149116403712","","","2014-05-10 23:16:24 +0000","Twitterrific for Mac","Number of people who died by becoming tangled in their bedsheets. http://t.co/aOF0pROksz +"465269149116403712","","","2014-05-10 23:16:24 +0000","Twitterrific for Mac","Number of people who died by becoming tangled in their bedsheets. http://t.co/aOF0pROksz How is that figure increasing? Morbidly funny.","","","","http://img.ly/yR71" -"465207511516061696","","","2014-05-10 19:11:28 +0000","Twitterrific for Mac","“The rufous-tailed hummingbird is quite aggressive, despite its size.”","","","","" -"464869913400582144","464869524937125889","108814849","2014-05-09 20:49:58 +0000","Twitterrific for Mac","@snarfmason @VanIsleBrewery http://t.co/pSoTSPBZXz","","","","http://img.ly/yQp4" -"464869232899936256","464866939001921536","108814849","2014-05-09 20:47:16 +0000","Twitterrific for Mac","@snarfmason @VanIsleBrewery Nooooooo!","","","","" -"464230914268987392","","","2014-05-08 02:30:49 +0000","Twitterrific for Mac","RT @stats_canada: There will be no census data this year: everything was eaten by bears","464206341125705730","701267743","2014-05-08 00:53:10 +0000","" -"464225654289207296","464191531247620096","15292261","2014-05-08 02:09:55 +0000","Twitterrific","@gregbate @snarfmason Yeah man, jeez. Wtf.","","","","" -"464122225780461569","464116447929581568","108814849","2014-05-07 19:18:56 +0000","Twitterrific","@snarfmason @gregbate Argh. One day I will come to moon, but sadly that day is not today. 🌙","","","","" -"464109495937822720","464100003443531776","15292261","2014-05-07 18:28:21 +0000","Twitterrific for Mac","@gregbate Sounds like a good strat!","","","","" -"464095075106955265","464078619925430272","15292261","2014-05-07 17:31:03 +0000","Twitterrific for Mac","@gregbate I’m pretty vigilant about who I follow. If someone is too high volume or irrelevant to my interests I drop ‘em. Have to manage it!","","","","" -"463481688320782336","","","2014-05-06 00:53:40 +0000","Twitterrific","View-Model is a good concept with a bad name.","","","","" -"463465443311640576","","","2014-05-05 23:49:07 +0000","Twitterrific for Mac","Put settings in the Settings app, or put them inside your app. Please don’t do both.","","","","" -"463367084664045568","","","2014-05-05 17:18:16 +0000","Twitterrific","3 years ago today I moved back to Victoria from Shawnigan Lake. http://t.co/mLlC2clqgW","","","","https://twitter.com/_sjs/status/463367084664045568/photo/1" -"462410045846589442","","","2014-05-03 01:55:20 +0000","Twitterrific","RT @cabel: No matter how hard I try I can't convince Joby to price his lemonade stand anything other than free. So, we IPO next Thursday","462373107903107072","1919231","2014-05-02 23:28:34 +0000","" -"462304937926344704","","","2014-05-02 18:57:41 +0000","Twitterrific for Mac","John Roderick has some hilarious impressions of his dad. Supercut! http://t.co/7t4phIazyZ","","","","http://capnmariam.tumblr.com/post/84537343501/miasmaofdata-t-12-36-a-good-number-i" -"462296668650471424","","","2014-05-02 18:24:49 +0000","Twitterrific for Mac","Sigh. http://t.co/pf4IKmBNNA","","","","http://img.ly/yMb5" -"462294591991857155","","","2014-05-02 18:16:34 +0000","Twitterrific for Mac","RT @sternbergh: After I retweeted this, an American replied ""50 weeks?!?"" and a Canadian replied ""0 weeks?!?"" https://t.co/urrstFI8YS","451764537247924224","66822783","2014-04-03 16:53:53 +0000","https://twitter.com/urbandata/status/450958872883511296/photo/1,https://twitter.com/urbandata/status/450958872883511296/photo/1" -"462290221661298695","462289278970904576","88489441","2014-05-02 17:59:12 +0000","Twitterrific for Mac","@AdamBFerg … and 2) inline exports above or below each function, like the broccoli example you linked.","","","","" -"462290082926297089","462289278970904576","88489441","2014-05-02 17:58:39 +0000","Twitterrific for Mac","@AdamBFerg Two methods seem most common in my experience. 1) Assign an object to module.exports at the top (could be a function).","","","","" -"462286478932836352","462286066972884992","88489441","2014-05-02 17:44:20 +0000","Twitterrific for Mac","@AdamBFerg Maybe overviews are better left for the docs anyway?","","","","" -"462286359302926338","462286066972884992","88489441","2014-05-02 17:43:51 +0000","Twitterrific for Mac","@AdamBFerg I have mixed feelings on that pattern. I like the export by the function definition (one place to edit!), but no more overview.","","","","" -"462285282658643968","462284391746928640","88489441","2014-05-02 17:39:34 +0000","Twitterrific for Mac","@AdamBFerg But yeah, that’s just my preference. No reason you can’t put it all at the bottom as a convention.","","","","" -"462285195291291648","462284391746928640","88489441","2014-05-02 17:39:14 +0000","Twitterrific for Mac","@AdamBFerg I think of it like a header so I like it up top. It’s the interface. Hoisting is very well defined, too. Not hacky at all.","","","","" -"462275259593261056","","","2014-05-02 16:59:45 +0000","Twitterrific for Mac","RT @Beavs: Yeah the mosquito one is flashy because it's big but can we all talk about murderous fresh water snails for a second? http://t.c…","462236896886673408","19007577","2014-05-02 14:27:18 +0000","https://twitter.com/conradhackett/status/461620944964829184/photo/1" -"462272758303309824","","","2014-05-02 16:49:48 +0000","Twitterrific for Mac","RT @chockenberry: Protip: Menlo, a standard font on iOS and OS X, has a lot of good glyphs for UI controls. Use them as placeholder or fina…","462269009992232960","36183","2014-05-02 16:34:55 +0000","" -"462262407365029888","462239894992334848","88489441","2014-05-02 16:08:40 +0000","Twitterrific","@AdamBFerg Absolutely. Relying on that behaviour is very common. I much prefer it to hiding exports all throughout a file.","","","","" +"465207511516061696","","","2014-05-10 19:11:28 +0000","Twitterrific for Mac","“The rufous-tailed hummingbird is quite aggressive, despite its size.”","","","","" +"464869913400582144","464869524937125889","108814849","2014-05-09 20:49:58 +0000","Twitterrific for Mac","@snarfmason @VanIsleBrewery http://t.co/pSoTSPBZXz","","","","http://img.ly/yQp4" +"464869232899936256","464866939001921536","108814849","2014-05-09 20:47:16 +0000","Twitterrific for Mac","@snarfmason @VanIsleBrewery Nooooooo!","","","","" +"464230914268987392","","","2014-05-08 02:30:49 +0000","Twitterrific for Mac","RT @stats_canada: There will be no census data this year: everything was eaten by bears","464206341125705730","701267743","2014-05-08 00:53:10 +0000","" +"464225654289207296","464191531247620096","15292261","2014-05-08 02:09:55 +0000","Twitterrific for iOS","@gregbate @snarfmason Yeah man, jeez. Wtf.","","","","" +"464122225780461569","464116447929581568","108814849","2014-05-07 19:18:56 +0000","Twitterrific for iOS","@snarfmason @gregbate Argh. One day I will come to moon, but sadly that day is not today. 🌙","","","","" +"464109495937822720","464100003443531776","15292261","2014-05-07 18:28:21 +0000","Twitterrific for Mac","@gregbate Sounds like a good strat!","","","","" +"464095075106955265","464078619925430272","15292261","2014-05-07 17:31:03 +0000","Twitterrific for Mac","@gregbate I’m pretty vigilant about who I follow. If someone is too high volume or irrelevant to my interests I drop ‘em. Have to manage it!","","","","" +"463481688320782336","","","2014-05-06 00:53:40 +0000","Twitterrific for iOS","View-Model is a good concept with a bad name.","","","","" +"463465443311640576","","","2014-05-05 23:49:07 +0000","Twitterrific for Mac","Put settings in the Settings app, or put them inside your app. Please don’t do both.","","","","" +"463367084664045568","","","2014-05-05 17:18:16 +0000","Twitterrific for iOS","3 years ago today I moved back to Victoria from Shawnigan Lake. http://t.co/mLlC2clqgW","","","","https://twitter.com/_sjs/status/463367084664045568/photo/1" +"462410045846589442","","","2014-05-03 01:55:20 +0000","Twitterrific for iOS","RT @cabel: No matter how hard I try I can't convince Joby to price his lemonade stand anything other than free. So, we IPO next Thursday","462373107903107072","1919231","2014-05-02 23:28:34 +0000","" +"462304937926344704","","","2014-05-02 18:57:41 +0000","Twitterrific for Mac","John Roderick has some hilarious impressions of his dad. Supercut! http://t.co/7t4phIazyZ","","","","http://capnmariam.tumblr.com/post/84537343501/miasmaofdata-t-12-36-a-good-number-i" +"462296668650471424","","","2014-05-02 18:24:49 +0000","Twitterrific for Mac","Sigh. http://t.co/pf4IKmBNNA","","","","http://img.ly/yMb5" +"462294591991857155","","","2014-05-02 18:16:34 +0000","Twitterrific for Mac","RT @sternbergh: After I retweeted this, an American replied ""50 weeks?!?"" and a Canadian replied ""0 weeks?!?"" https://t.co/urrstFI8YS","451764537247924224","66822783","2014-04-03 16:53:53 +0000","https://twitter.com/urbandata/status/450958872883511296/photo/1,https://twitter.com/urbandata/status/450958872883511296/photo/1" +"462290221661298695","462289278970904576","88489441","2014-05-02 17:59:12 +0000","Twitterrific for Mac","@AdamBFerg … and 2) inline exports above or below each function, like the broccoli example you linked.","","","","" +"462290082926297089","462289278970904576","88489441","2014-05-02 17:58:39 +0000","Twitterrific for Mac","@AdamBFerg Two methods seem most common in my experience. 1) Assign an object to module.exports at the top (could be a function).","","","","" +"462286478932836352","462286066972884992","88489441","2014-05-02 17:44:20 +0000","Twitterrific for Mac","@AdamBFerg Maybe overviews are better left for the docs anyway?","","","","" +"462286359302926338","462286066972884992","88489441","2014-05-02 17:43:51 +0000","Twitterrific for Mac","@AdamBFerg I have mixed feelings on that pattern. I like the export by the function definition (one place to edit!), but no more overview.","","","","" +"462285282658643968","462284391746928640","88489441","2014-05-02 17:39:34 +0000","Twitterrific for Mac","@AdamBFerg But yeah, that’s just my preference. No reason you can’t put it all at the bottom as a convention.","","","","" +"462285195291291648","462284391746928640","88489441","2014-05-02 17:39:14 +0000","Twitterrific for Mac","@AdamBFerg I think of it like a header so I like it up top. It’s the interface. Hoisting is very well defined, too. Not hacky at all.","","","","" +"462275259593261056","","","2014-05-02 16:59:45 +0000","Twitterrific for Mac","RT @Beavs: Yeah the mosquito one is flashy because it's big but can we all talk about murderous fresh water snails for a second? http://t.c…","462236896886673408","19007577","2014-05-02 14:27:18 +0000","https://twitter.com/conradhackett/status/461620944964829184/photo/1" +"462272758303309824","","","2014-05-02 16:49:48 +0000","Twitterrific for Mac","RT @chockenberry: Protip: Menlo, a standard font on iOS and OS X, has a lot of good glyphs for UI controls. Use them as placeholder or fina…","462269009992232960","36183","2014-05-02 16:34:55 +0000","" +"462262407365029888","462239894992334848","88489441","2014-05-02 16:08:40 +0000","Twitterrific for iOS","@AdamBFerg Absolutely. Relying on that behaviour is very common. I much prefer it to hiding exports all throughout a file.","","","","" "462062536724971520","462061380535721984","14180235","2014-05-02 02:54:28 +0000","Twitter Web Client","@daveeed I only discovered what it was by tapping on it. The problem is that nobody seems to have a better one. http://t.co/jlBaDVtpPj","","","","https://twitter.com/_sjs/status/462062536724971520/photo/1" -"462027747443748864","","","2014-05-02 00:36:13 +0000","Twitterrific for Mac","What are the odds that the @getsecret team will be contacted by Apple’s lawyers tomorrow? (If they haven’t already) http://t.co/moBbKR4xW5","","","","http://mashable.com/2014/05/01/apple-earpods-iwatch/?utm_cid=mash-com-Tw-tech-link" -"462009692655333376","","","2014-05-01 23:24:29 +0000","Twitterrific for Mac","RT @arstechnica: Microsoft’s decision to patch Windows XP is a mistake http://t.co/MUhLYlzCgP by @drpizza","461977391087091713","717313","2014-05-01 21:16:07 +0000","http://ars.to/1iOn3Zc,http://ars.to/1iOn3Zc" -"461922327203028992","","","2014-05-01 17:37:19 +0000","Twitterrific for Mac","In your experience, do people generally know what the iOS share icon is for? http://t.co/3Fl4uY3Eyh","","","","http://img.ly/yLDi" -"461617237447946240","","","2014-04-30 21:25:00 +0000","Twitterrific for Mac","Check out the one person in Greenland. RT @mashabletech Watch the world greet sunrise in real time on Twitter http://t.co/QEjN6erbnH","","","","http://on.mash.to/1kuFnpr" -"461606068129263616","461605119591579648","108814849","2014-04-30 20:40:37 +0000","Twitterrific for Mac","@snarfmason @garybernhardt It exists if you believe in it!","","","","" -"461599871137742849","461587181924925440","232701963","2014-04-30 20:16:00 +0000","Twitterrific for Mac","@fyrite Spread a little tuna melt on top of some cream cheese.","","","","" -"461588819947429888","","","2014-04-30 19:32:05 +0000","Twitterrific for Mac","Working at @UPcoffee and the tables here are so much better than my breakfast bar. It’s almost like a real desk! +"462027747443748864","","","2014-05-02 00:36:13 +0000","Twitterrific for Mac","What are the odds that the @getsecret team will be contacted by Apple’s lawyers tomorrow? (If they haven’t already) http://t.co/moBbKR4xW5","","","","http://mashable.com/2014/05/01/apple-earpods-iwatch/?utm_cid=mash-com-Tw-tech-link" +"462009692655333376","","","2014-05-01 23:24:29 +0000","Twitterrific for Mac","RT @arstechnica: Microsoft’s decision to patch Windows XP is a mistake http://t.co/MUhLYlzCgP by @drpizza","461977391087091713","717313","2014-05-01 21:16:07 +0000","http://ars.to/1iOn3Zc,http://ars.to/1iOn3Zc" +"461922327203028992","","","2014-05-01 17:37:19 +0000","Twitterrific for Mac","In your experience, do people generally know what the iOS share icon is for? http://t.co/3Fl4uY3Eyh","","","","http://img.ly/yLDi" +"461617237447946240","","","2014-04-30 21:25:00 +0000","Twitterrific for Mac","Check out the one person in Greenland. RT @mashabletech Watch the world greet sunrise in real time on Twitter http://t.co/QEjN6erbnH","","","","http://on.mash.to/1kuFnpr" +"461606068129263616","461605119591579648","108814849","2014-04-30 20:40:37 +0000","Twitterrific for Mac","@snarfmason @garybernhardt It exists if you believe in it!","","","","" +"461599871137742849","461587181924925440","232701963","2014-04-30 20:16:00 +0000","Twitterrific for Mac","@fyrite Spread a little tuna melt on top of some cream cheese.","","","","" +"461588819947429888","","","2014-04-30 19:32:05 +0000","Twitterrific for Mac","Working at @UPcoffee and the tables here are so much better than my breakfast bar. It’s almost like a real desk! Almost…","","","","" -"461566782222770176","","","2014-04-30 18:04:31 +0000","Twitterrific for Mac","RT @robynpeterson: Rarely a mention of web, mobile or otherwise, in Facebook #F8 keynote. The message: It's a mobile world, and it's all ab…","461566164364034048","14538248","2014-04-30 18:02:03 +0000","" -"461565299263680512","461563830196129792","271545671","2014-04-30 17:58:37 +0000","Twitterrific for Mac",".@getcloak My only feedback is that I love automatic cloaking on untrusted networks. Really, really love it!","","","","" -"461377669301420032","461373167391350785","108814849","2014-04-30 05:33:03 +0000","Twitterrific for Mac","@snarfmason Aaaaand battery is almost dead. It was a good run though!","","","","" -"461375856162525184","461373167391350785","108814849","2014-04-30 05:25:50 +0000","Twitterrific","@snarfmason Yeah, it's not bad! Playable. Latency is decent.","","","","" -"461372175954370560","461371629130350592","108814849","2014-04-30 05:11:13 +0000","Twitterrific","@snarfmason Shaw open wifi and LTE. Shaw crapped out, yay LTE!","","","","" -"461367330333675520","","","2014-04-30 04:51:58 +0000","Twitterrific","What else to do while the power is out? ESO obviously. http://t.co/6yz4y5uiJ6","","","","https://twitter.com/_sjs/status/461367330333675520/photo/1" -"461343809893175296","","","2014-04-30 03:18:30 +0000","Twitterrific","""We want our competitors to do well... except when our movie's out. Then they can burn and die."" http://t.co/rzBofG9HUG","","","","http://youtu.be/tLSgRzCAtXA" -"461333303698522112","","","2014-04-30 02:36:45 +0000","Twitterrific","RT @kstep92: Another photo from fire downtown #yyj this evening. http://t.co/Sh0xYcTXIx","461332658790748160","15954961","2014-04-30 02:34:11 +0000","https://twitter.com/kstep92/status/461332658790748160/photo/1,https://twitter.com/kstep92/status/461332658790748160/photo/1" -"461331475917307904","","","2014-04-30 02:29:29 +0000","Twitterrific","RT @Aikard: More pictures http://t.co/fyYv1RDPjd #fire #yyj Sorry for dissing your camera guy Mr Chek News, but he totally stood in front o…","461330399612788737","10577662","2014-04-30 02:25:13 +0000","http://m.imgur.com/VCYoZhV,y9Jcsgh,Seavq5e,uz8Sm5q,Fb9wU3G,yoaJip0,Gbqp408,LTd22jH,ffYRlDU,http://m.imgur.com/VCYoZhV,y9Jcsgh,Seavq5e,uz8Sm5q,Fb9wU3G,yoaJip0,Gbqp408,LTd22jH,ffYRlDU" -"461331304336732160","","","2014-04-30 02:28:48 +0000","Twitterrific","RT @kstep92: Got stuck in traffic due to this fire so I took some photos. #fire #yyj http://t.co/tG5THAbTLt","461331186623586304","15954961","2014-04-30 02:28:20 +0000","https://twitter.com/kstep92/status/461331186623586304/photo/1,https://twitter.com/kstep92/status/461331186623586304/photo/1" -"461331215803351040","","","2014-04-30 02:28:27 +0000","Twitterrific","Big fire in the next block and power is out. Tempted to go take a look. #yyj","","","","" -"461327263812698113","","","2014-04-30 02:12:45 +0000","Twitterrific","The DeLorean is assembled! What year do I visit first? http://t.co/Hc6jJAWUWm","","","","https://twitter.com/_sjs/status/461327263812698113/photo/1" -"461310859306758144","461309777998409728","14538248","2014-04-30 01:07:34 +0000","Twitterrific for Mac","@robynpeterson @mashable Especially over Jimmy Fallon. Although, I keep enjoying clips from his show so maybe I should give him a chance.","","","","" -"461309288619589632","","","2014-04-30 01:01:19 +0000","Twitterrific for Mac","Emma wins! MT @robynpeterson Actually lol'ed: Emma Stone and Jimmy Fallon in Epic Lip Sync Battle http://t.co/QbgoYNpMcG via @mashable","","","","http://mashable.com/2014/04/29/emma-stone-and-jimmy-fallon-engage-in-epic-lip-sync-battle/#:eyJzIjoidCIsImkiOiJfM25hZWMxZHkzMGV2eWR2NCJ9" -"461171201390288896","","","2014-04-29 15:52:37 +0000","Twitterrific","RT @dhh: Still running Basecamp off single main database server with slaves for redundancy, but not performance: https://t.co/CvYFHV47nd. 3…","461148420364050432","14561327","2014-04-29 14:22:05 +0000","https://signalvnoise.com/posts/1509-mr-moore-gets-to-punt-on-sharding,https://signalvnoise.com/posts/1509-mr-moore-gets-to-punt-on-sharding" -"461171146600087554","","","2014-04-29 15:52:24 +0000","Twitterrific","RT @dhh: Basecamp by the numbers: ~70 million Rails requests/day, 1.5 terabyte database, half a petabyte of file storage, 100 physical mach…","461145907095166976","14561327","2014-04-29 14:12:06 +0000","" -"460965855254167554","","","2014-04-29 02:16:38 +0000","Twitterrific","RT @irwindigital: @marcoarment John’s “relatively speaking” approval T-shirt. cc: @siracusa http://t.co/esTSCPzw9U","460929898714918913","19579586","2014-04-28 23:53:46 +0000","https://twitter.com/irwindigital/status/460929898714918913/photo/1,https://twitter.com/irwindigital/status/460929898714918913/photo/1" -"460965334564868096","","","2014-04-29 02:14:34 +0000","Twitterrific","RT @siracusa: @marcoarment That seems unlikely.","460921211938410496","636923","2014-04-28 23:19:15 +0000","" -"460910048747610112","460908501070782464","14231571","2014-04-28 22:34:53 +0000","Twitterrific","@marcoarment The same goes for their iPhone wallpaper. Which actually looks great with iOS 7. http://t.co/mgHf9wUXw4","","","","https://twitter.com/_sjs/status/460910048747610112/photo/1" +"461566782222770176","","","2014-04-30 18:04:31 +0000","Twitterrific for Mac","RT @robynpeterson: Rarely a mention of web, mobile or otherwise, in Facebook #F8 keynote. The message: It's a mobile world, and it's all ab…","461566164364034048","14538248","2014-04-30 18:02:03 +0000","" +"461565299263680512","461563830196129792","271545671","2014-04-30 17:58:37 +0000","Twitterrific for Mac",".@getcloak My only feedback is that I love automatic cloaking on untrusted networks. Really, really love it!","","","","" +"461377669301420032","461373167391350785","108814849","2014-04-30 05:33:03 +0000","Twitterrific for Mac","@snarfmason Aaaaand battery is almost dead. It was a good run though!","","","","" +"461375856162525184","461373167391350785","108814849","2014-04-30 05:25:50 +0000","Twitterrific for iOS","@snarfmason Yeah, it's not bad! Playable. Latency is decent.","","","","" +"461372175954370560","461371629130350592","108814849","2014-04-30 05:11:13 +0000","Twitterrific for iOS","@snarfmason Shaw open wifi and LTE. Shaw crapped out, yay LTE!","","","","" +"461367330333675520","","","2014-04-30 04:51:58 +0000","Twitterrific for iOS","What else to do while the power is out? ESO obviously. http://t.co/6yz4y5uiJ6","","","","https://twitter.com/_sjs/status/461367330333675520/photo/1" +"461343809893175296","","","2014-04-30 03:18:30 +0000","Twitterrific for iOS","""We want our competitors to do well... except when our movie's out. Then they can burn and die."" http://t.co/rzBofG9HUG","","","","http://youtu.be/tLSgRzCAtXA" +"461333303698522112","","","2014-04-30 02:36:45 +0000","Twitterrific for iOS","RT @kstep92: Another photo from fire downtown #yyj this evening. http://t.co/Sh0xYcTXIx","461332658790748160","15954961","2014-04-30 02:34:11 +0000","https://twitter.com/kstep92/status/461332658790748160/photo/1,https://twitter.com/kstep92/status/461332658790748160/photo/1" +"461331475917307904","","","2014-04-30 02:29:29 +0000","Twitterrific for iOS","RT @Aikard: More pictures http://t.co/fyYv1RDPjd #fire #yyj Sorry for dissing your camera guy Mr Chek News, but he totally stood in front o…","461330399612788737","10577662","2014-04-30 02:25:13 +0000","http://m.imgur.com/VCYoZhV,y9Jcsgh,Seavq5e,uz8Sm5q,Fb9wU3G,yoaJip0,Gbqp408,LTd22jH,ffYRlDU,http://m.imgur.com/VCYoZhV,y9Jcsgh,Seavq5e,uz8Sm5q,Fb9wU3G,yoaJip0,Gbqp408,LTd22jH,ffYRlDU" +"461331304336732160","","","2014-04-30 02:28:48 +0000","Twitterrific for iOS","RT @kstep92: Got stuck in traffic due to this fire so I took some photos. #fire #yyj http://t.co/tG5THAbTLt","461331186623586304","15954961","2014-04-30 02:28:20 +0000","https://twitter.com/kstep92/status/461331186623586304/photo/1,https://twitter.com/kstep92/status/461331186623586304/photo/1" +"461331215803351040","","","2014-04-30 02:28:27 +0000","Twitterrific for iOS","Big fire in the next block and power is out. Tempted to go take a look. #yyj","","","","" +"461327263812698113","","","2014-04-30 02:12:45 +0000","Twitterrific for iOS","The DeLorean is assembled! What year do I visit first? http://t.co/Hc6jJAWUWm","","","","https://twitter.com/_sjs/status/461327263812698113/photo/1" +"461310859306758144","461309777998409728","14538248","2014-04-30 01:07:34 +0000","Twitterrific for Mac","@robynpeterson @mashable Especially over Jimmy Fallon. Although, I keep enjoying clips from his show so maybe I should give him a chance.","","","","" +"461309288619589632","","","2014-04-30 01:01:19 +0000","Twitterrific for Mac","Emma wins! MT @robynpeterson Actually lol'ed: Emma Stone and Jimmy Fallon in Epic Lip Sync Battle http://t.co/QbgoYNpMcG via @mashable","","","","http://mashable.com/2014/04/29/emma-stone-and-jimmy-fallon-engage-in-epic-lip-sync-battle/#:eyJzIjoidCIsImkiOiJfM25hZWMxZHkzMGV2eWR2NCJ9" +"461171201390288896","","","2014-04-29 15:52:37 +0000","Twitterrific for iOS","RT @dhh: Still running Basecamp off single main database server with slaves for redundancy, but not performance: https://t.co/CvYFHV47nd. 3…","461148420364050432","14561327","2014-04-29 14:22:05 +0000","https://signalvnoise.com/posts/1509-mr-moore-gets-to-punt-on-sharding,https://signalvnoise.com/posts/1509-mr-moore-gets-to-punt-on-sharding" +"461171146600087554","","","2014-04-29 15:52:24 +0000","Twitterrific for iOS","RT @dhh: Basecamp by the numbers: ~70 million Rails requests/day, 1.5 terabyte database, half a petabyte of file storage, 100 physical mach…","461145907095166976","14561327","2014-04-29 14:12:06 +0000","" +"460965855254167554","","","2014-04-29 02:16:38 +0000","Twitterrific for iOS","RT @irwindigital: @marcoarment John’s “relatively speaking” approval T-shirt. cc: @siracusa http://t.co/esTSCPzw9U","460929898714918913","19579586","2014-04-28 23:53:46 +0000","https://twitter.com/irwindigital/status/460929898714918913/photo/1,https://twitter.com/irwindigital/status/460929898714918913/photo/1" +"460965334564868096","","","2014-04-29 02:14:34 +0000","Twitterrific for iOS","RT @siracusa: @marcoarment That seems unlikely.","460921211938410496","636923","2014-04-28 23:19:15 +0000","" +"460910048747610112","460908501070782464","14231571","2014-04-28 22:34:53 +0000","Twitterrific for iOS","@marcoarment The same goes for their iPhone wallpaper. Which actually looks great with iOS 7. http://t.co/mgHf9wUXw4","","","","https://twitter.com/_sjs/status/460910048747610112/photo/1" "460899895281348608","","","2014-04-28 21:54:32 +0000","Twitter for Websites","Verifying myself: I am samsonjs on Keybase.io. g5Qmaq-pbCj7jP6E66GfBwZt4TV7u3K-F9o3 / https://t.co/9YpKUcE4oU","","","","https://keybase.io/samsonjs/sigs/g5Qmaq-pbCj7jP6E66GfBwZt4TV7u3K-F9o3" -"460852584278798336","","","2014-04-28 18:46:32 +0000","Twitterrific for Mac","Another reason to keep Flash uninstalled and use Chrome as a quarantine. Flash zero-day affects OS X and Linux too. http://t.co/Bojs8TfDWF","","","","http://ars.to/PLtUqi" -"460830550932996096","","","2014-04-28 17:18:59 +0000","Twitterrific for Mac","RT @tmaes: The plan that lead to the amazing Monument Valley. Gives me hope that games like this can still succeed. #ullconf http://t.co/JX…","460812301676052480","8241952","2014-04-28 16:06:28 +0000","https://twitter.com/tmaes/status/460812301676052480/photo/1" +"460852584278798336","","","2014-04-28 18:46:32 +0000","Twitterrific for Mac","Another reason to keep Flash uninstalled and use Chrome as a quarantine. Flash zero-day affects OS X and Linux too. http://t.co/Bojs8TfDWF","","","","http://ars.to/PLtUqi" +"460830550932996096","","","2014-04-28 17:18:59 +0000","Twitterrific for Mac","RT @tmaes: The plan that lead to the amazing Monument Valley. Gives me hope that games like this can still succeed. #ullconf http://t.co/JX…","460812301676052480","8241952","2014-04-28 16:06:28 +0000","https://twitter.com/tmaes/status/460812301676052480/photo/1" "460808160123449344","","","2014-04-28 15:50:01 +0000","iOS","Bill Gates: We Need Mosquito Week More Than Shark Week http://t.co/CVx1b1nWCD via @mashable","","","","http://on.mash.to/1lQBAT1" -"460475858155610113","460475750395572224","222358903","2014-04-27 17:49:34 +0000","Twitterrific","@Sarah_SLP Thanks! 😀","","","","" -"460469731049213953","","","2014-04-27 17:25:13 +0000","Twitterrific","Finished the #tc10k in under 1h45m. I might even set a real goal one year!","","","","" -"460469140122132481","","","2014-04-27 17:22:52 +0000","Twitterrific","RT @mbrubeck: Not found in Chrome's User-Agent string: +"460475858155610113","460475750395572224","222358903","2014-04-27 17:49:34 +0000","Twitterrific for iOS","@Sarah_SLP Thanks! 😀","","","","" +"460469731049213953","","","2014-04-27 17:25:13 +0000","Twitterrific for iOS","Finished the #tc10k in under 1h45m. I might even set a real goal one year!","","","","" +"460469140122132481","","","2014-04-27 17:22:52 +0000","Twitterrific for iOS","RT @mbrubeck: Not found in Chrome's User-Agent string: Blink Google Chromium @@ -3599,659 +3697,658 @@ Mozilla Apple WebKit KHT…","459471758697848832","10531662","2014-04-24 23:19:38 +0000","" -"460459489133481984","","","2014-04-27 16:44:31 +0000","Twitterrific","RT @chemikadze: Engineer: +"460459489133481984","","","2014-04-27 16:44:31 +0000","Twitterrific for iOS","RT @chemikadze: Engineer: 1900 Can build a bridge 1960 Can assemble computer from parts 1995 Knows how to compile kernel 2014 Makes button …","458902376729309184","97214278","2014-04-23 09:37:07 +0000","" -"460167722479783936","","","2014-04-26 21:25:09 +0000","Twitterrific","Training for the #tc10k. And by training I mean playing ESO. And by for the tc10k I mean for great justice!","","","","" -"460088233636802561","460067558914142208","14618863","2014-04-26 16:09:17 +0000","Twitterrific","@anandshimpi Congrats! Here's to 17 more. 🍻","","","","" -"460088125474086912","","","2014-04-26 16:08:51 +0000","Twitterrific","RT @anandshimpi: 17 http://t.co/xHjZYWKbG5","460067558914142208","14618863","2014-04-26 14:47:08 +0000","https://twitter.com/anandshimpi/status/460067558914142208/photo/1,https://twitter.com/anandshimpi/status/460067558914142208/photo/1" -"459988967392165888","459923936042840064","14308739","2014-04-26 09:34:50 +0000","Twitterrific","@gisikw What a great movie. I need to watch more Kubrick.","","","","" -"459829990348320768","","","2014-04-25 23:03:07 +0000","Twitterrific for Mac","Some of these Xcode plugins look useful. Fuzzy autocomplete and code aligning? Yes please! http://t.co/jq90QAILpp","","","","http://iosdevtips.co/post/82232620790/best-xcode-plugins" -"459828307824222208","","","2014-04-25 22:56:26 +0000","Twitterrific for Mac","O_o RT @newsycombinator Facebook's git repo is 54GB https://t.co/aUwetExIQO","","","","https://twitter.com/feross/status/459259593630433280" -"459827814129471488","459792095721439232","335991063","2014-04-25 22:54:28 +0000","Twitterrific for Mac","@AnthonyNystrom @gisikw Coffee is fucking great! That was awesome.","","","","" -"459826388963688449","","","2014-04-25 22:48:48 +0000","Twitterrific for Mac","RT @lawblob: a cool thing about conference calls working from home is nobody knows I’m shirtless, so it gives me a great ice-breaker to bri…","459768617622843392","41875694","2014-04-25 18:59:15 +0000","" +"460167722479783936","","","2014-04-26 21:25:09 +0000","Twitterrific for iOS","Training for the #tc10k. And by training I mean playing ESO. And by for the tc10k I mean for great justice!","","","","" +"460088233636802561","460067558914142208","14618863","2014-04-26 16:09:17 +0000","Twitterrific for iOS","@anandshimpi Congrats! Here's to 17 more. 🍻","","","","" +"460088125474086912","","","2014-04-26 16:08:51 +0000","Twitterrific for iOS","RT @anandshimpi: 17 http://t.co/xHjZYWKbG5","460067558914142208","14618863","2014-04-26 14:47:08 +0000","https://twitter.com/anandshimpi/status/460067558914142208/photo/1,https://twitter.com/anandshimpi/status/460067558914142208/photo/1" +"459988967392165888","459923936042840064","14308739","2014-04-26 09:34:50 +0000","Twitterrific for iOS","@gisikw What a great movie. I need to watch more Kubrick.","","","","" +"459829990348320768","","","2014-04-25 23:03:07 +0000","Twitterrific for Mac","Some of these Xcode plugins look useful. Fuzzy autocomplete and code aligning? Yes please! http://t.co/jq90QAILpp","","","","http://iosdevtips.co/post/82232620790/best-xcode-plugins" +"459828307824222208","","","2014-04-25 22:56:26 +0000","Twitterrific for Mac","O_o RT @newsycombinator Facebook's git repo is 54GB https://t.co/aUwetExIQO","","","","https://twitter.com/feross/status/459259593630433280" +"459827814129471488","459792095721439232","335991063","2014-04-25 22:54:28 +0000","Twitterrific for Mac","@AnthonyNystrom @gisikw Coffee is fucking great! That was awesome.","","","","" +"459826388963688449","","","2014-04-25 22:48:48 +0000","Twitterrific for Mac","RT @lawblob: a cool thing about conference calls working from home is nobody knows I’m shirtless, so it gives me a great ice-breaker to bri…","459768617622843392","41875694","2014-04-25 18:59:15 +0000","" "459817044331208704","459815819024035841","14538248","2014-04-25 22:11:41 +0000","Twitter Web Client","@robynpeterson @JimRoepcke Ha! Close enough. Except Jim would program the robot to throw the cat outside.","","","","" -"459814852983537664","459762212937007105","894911","2014-04-25 22:02:58 +0000","Twitterrific","@JimRoepcke Well once you're going micro-robots you go all out and spring for the custom meeple.","","","","" -"459759708346142720","","","2014-04-25 18:23:51 +0000","Twitterrific for Mac","RT @3eanuts: September 8, 1985 — ""He said to be there!"" http://t.co/bRZcvJLYnd","459759431191134208","273025851","2014-04-25 18:22:44 +0000","http://tmblr.co/ZfFJgx1E4s_hb,http://tmblr.co/ZfFJgx1E4s_hb" -"459759452707504128","459759117645537281","15292261","2014-04-25 18:22:50 +0000","Twitterrific for Mac","@gregbate I’m going to bide my time on 4k displays. It’s tempting though!","","","","" -"459758937227534337","459755078094577664","15292261","2014-04-25 18:20:47 +0000","Twitterrific for Mac","@gregbate Did it arrive?","","","","" -"459758707404840960","459752400094392320","894911","2014-04-25 18:19:52 +0000","Twitterrific for Mac","@JimRoepcke How about those magnetic micro-robots? They might do the trick.","","","","" -"459744923449688064","","97011478","2014-04-25 17:25:06 +0000","Twitterrific for Mac","@FitchGreg Happy birthday! 🎂 Everyone on Twitter loves you.","","","","" -"459744234476539904","459723610723061760","108814849","2014-04-25 17:22:21 +0000","Twitterrific for Mac","@snarfmason Yours doesn’t work *at all* though? That’s just fucking insane.","","","","" -"459744137848172544","459723610723061760","108814849","2014-04-25 17:21:58 +0000","Twitterrific for Mac","@snarfmason I installed Logitech’s driver for my MX whatever, and I still don’t get MB4+ on it. OS X limitation? I generally avoid drivers.","","","","" -"459742996095721473","","","2014-04-25 17:17:26 +0000","Twitterrific for Mac","I miss the matte screen on my old MacBook.","","","","" +"459814852983537664","459762212937007105","894911","2014-04-25 22:02:58 +0000","Twitterrific for iOS","@JimRoepcke Well once you're going micro-robots you go all out and spring for the custom meeple.","","","","" +"459759708346142720","","","2014-04-25 18:23:51 +0000","Twitterrific for Mac","RT @3eanuts: September 8, 1985 — ""He said to be there!"" http://t.co/bRZcvJLYnd","459759431191134208","273025851","2014-04-25 18:22:44 +0000","http://tmblr.co/ZfFJgx1E4s_hb,http://tmblr.co/ZfFJgx1E4s_hb" +"459759452707504128","459759117645537281","15292261","2014-04-25 18:22:50 +0000","Twitterrific for Mac","@gregbate I’m going to bide my time on 4k displays. It’s tempting though!","","","","" +"459758937227534337","459755078094577664","15292261","2014-04-25 18:20:47 +0000","Twitterrific for Mac","@gregbate Did it arrive?","","","","" +"459758707404840960","459752400094392320","894911","2014-04-25 18:19:52 +0000","Twitterrific for Mac","@JimRoepcke How about those magnetic micro-robots? They might do the trick.","","","","" +"459744923449688064","","97011478","2014-04-25 17:25:06 +0000","Twitterrific for Mac","@FitchGreg Happy birthday! 🎂 Everyone on Twitter loves you.","","","","" +"459744234476539904","459723610723061760","108814849","2014-04-25 17:22:21 +0000","Twitterrific for Mac","@snarfmason Yours doesn’t work *at all* though? That’s just fucking insane.","","","","" +"459744137848172544","459723610723061760","108814849","2014-04-25 17:21:58 +0000","Twitterrific for Mac","@snarfmason I installed Logitech’s driver for my MX whatever, and I still don’t get MB4+ on it. OS X limitation? I generally avoid drivers.","","","","" +"459742996095721473","","","2014-04-25 17:17:26 +0000","Twitterrific for Mac","I miss the matte screen on my old MacBook.","","","","" "459741698004774912","","","2014-04-25 17:12:17 +0000","Twitter Web Client","RT @rexytseng: ""Mashable kicks ass, says someone who isn't Mashable. And also Mashable says it too."" - @thetrendycyborg","459741427959095296","128721761","2014-04-25 17:11:12 +0000","" "459740979952504832","","","2014-04-25 17:09:25 +0000","Twitter Web Client","RT @NewsWhip: How @mashable was Twitter's 2nd biggest publisher in February, with less than 1,500 articles: http://t.co/SNz8fAL3Lu http://t…","459735666654711808","132573995","2014-04-25 16:48:19 +0000","http://bit.ly/1fuwmIF,http://bit.ly/1fuwmIF,https://twitter.com/NewsWhip/status/459735666654711808/photo/1" -"459569615031386112","","14231571","2014-04-25 05:48:29 +0000","Twitterrific","@marcoarment For what it's worth I only listen to podcasts on my phone. Never on my Mac or iPad.","","","","" -"459493604692459523","","","2014-04-25 00:46:27 +0000","Twitterrific for Mac","“Bookmarks are being synced. Please edit the bookmarks once syncing has completed.” +"459569615031386112","","14231571","2014-04-25 05:48:29 +0000","Twitterrific for iOS","@marcoarment For what it's worth I only listen to podcasts on my phone. Never on my Mac or iPad.","","","","" +"459493604692459523","","","2014-04-25 00:46:27 +0000","Twitterrific for Mac","“Bookmarks are being synced. Please edit the bookmarks once syncing has completed.” ಠ_ಠ","","","","" -"459445137857196032","","","2014-04-24 21:33:51 +0000","Twitterrific","RT @paul_irish: Two small Chrome Canary updates I noticed: Load failed page request from cache, and *centered* images. I like. http://t.co/…","459443634857705473","1671811","2014-04-24 21:27:53 +0000","https://twitter.com/paul_irish/status/459443634857705473/photo/1" -"459400776834490368","","","2014-04-24 18:37:35 +0000","Twitterrific for Mac","RT @Horse_iOS: In addition, the new MacBooks feature a unique keyboard that prevents the user from comprehending whether or not they’re hol…","459380299474800641","1518266449","2014-04-24 17:16:12 +0000","" -"459362818362327040","","","2014-04-24 16:06:45 +0000","Twitterrific","I had a reminder set up to check if @TeamLoom is around in a year or two. Guess we know the answer to that question. https://t.co/EvbACQbHLD","","","","https://alpha.app.net/siracusa/post/14328626" +"459445137857196032","","","2014-04-24 21:33:51 +0000","Twitterrific for iOS","RT @paul_irish: Two small Chrome Canary updates I noticed: Load failed page request from cache, and *centered* images. I like. http://t.co/…","459443634857705473","1671811","2014-04-24 21:27:53 +0000","https://twitter.com/paul_irish/status/459443634857705473/photo/1" +"459400776834490368","","","2014-04-24 18:37:35 +0000","Twitterrific for Mac","RT @Horse_iOS: In addition, the new MacBooks feature a unique keyboard that prevents the user from comprehending whether or not they’re hol…","459380299474800641","1518266449","2014-04-24 17:16:12 +0000","" +"459362818362327040","","","2014-04-24 16:06:45 +0000","Twitterrific for iOS","I had a reminder set up to check if @TeamLoom is around in a year or two. Guess we know the answer to that question. https://t.co/EvbACQbHLD","","","","https://alpha.app.net/siracusa/post/14328626" "459361386116550656","","","2014-04-24 16:01:03 +0000","Mobile Web","I'm glad I didn't start using @TeamLoom when I found a replacement for @everpix. Hopefully @picturelife doesn't sell to anyone!","","","","" -"459164007681634304","","","2014-04-24 02:56:44 +0000","Twitterrific","RT @wilshipley: I'm not saying Four Barrel is full of hipsters, I'm just saying...would you guess this is a coffee house? http://t.co/LmxQ8…","459132347313430529","2911221","2014-04-24 00:50:56 +0000","https://twitter.com/wilshipley/status/459132347313430529/photo/1" +"459164007681634304","","","2014-04-24 02:56:44 +0000","Twitterrific for iOS","RT @wilshipley: I'm not saying Four Barrel is full of hipsters, I'm just saying...would you guess this is a coffee house? http://t.co/LmxQ8…","459132347313430529","2911221","2014-04-24 00:50:56 +0000","https://twitter.com/wilshipley/status/459132347313430529/photo/1" "458816782036262912","458814645684273152","4777951","2014-04-23 03:56:59 +0000","Twitter Web Client","@caseyjohnston But I had the luxury of time, so I switched completely. I'm glad you're keeping at it and think you can do it with more time.","","","","" "458814645684273152","","16472748","2014-04-23 03:48:30 +0000","Twitter Web Client","@caseyjohnston When I learned Dvorak I used a sharpie to draw the letters on my keyboard. By the time each letter wore off, I knew it.","","","","" -"458630869951844352","","","2014-04-22 15:38:15 +0000","Twitterrific","RT @caseyjohnston: Things that are now more expensive than an Android tablet http://t.co/IHOKGauBU3 http://t.co/wix3FIxkEZ","458581588016893952","16472748","2014-04-22 12:22:25 +0000","http://caseyjohnston.net/post/83475170512/things-that-are-more-expensive-than-a-tablet-now,https://twitter.com/caseyjohnston/status/457974094701420545/photo/1,http://caseyjohnston.net/post/83475170512/things-that-are-more-expensive-than-a-tablet-now,https://twitter.com/caseyjohnston/status/457974094701420545/photo/1" -"458263482043887616","458262763907715072","14272162","2014-04-21 15:18:22 +0000","Twitterrific","@jdalton Too broad for useful answers. Depends on specifics about the type of payments, and geography.","","","","" -"458113359951306754","","","2014-04-21 05:21:51 +0000","Twitterrific","RT @stats_canada: 85% of Canadian moms need you to fix their computer this afternoon","457953657846530048","701267743","2014-04-20 18:47:15 +0000","" -"457177145505116160","","","2014-04-18 15:21:40 +0000","Twitterrific","RT @paulleduc_5: @_sjs I'm not late to this whole facetweet thing am I? #kony2012 #yolo","457091439373991936","1702595204","2014-04-18 09:41:06 +0000","" -"457085085989085184","457075885397377024","1702595204","2014-04-18 09:15:51 +0000","Twitterrific","@paulleduc_5 OMG YOU GUYS! Paul tweeted! And is no longer an egg!","","","","" -"457008809961992193","456991261254094849","88489441","2014-04-18 04:12:45 +0000","Twitterrific","@AdamBFerg It's pretty weird that functions don't care about the number of parameters passed in. Pretty, pretty, pretty weird.","","","","" -"456960603764957184","456942201595891712","88489441","2014-04-18 01:01:12 +0000","Twitterrific","@AdamBFerg For this particular case a.map(Number) does what you want. +"458630869951844352","","","2014-04-22 15:38:15 +0000","Twitterrific for iOS","RT @caseyjohnston: Things that are now more expensive than an Android tablet http://t.co/IHOKGauBU3 http://t.co/wix3FIxkEZ","458581588016893952","16472748","2014-04-22 12:22:25 +0000","http://caseyjohnston.net/post/83475170512/things-that-are-more-expensive-than-a-tablet-now,https://twitter.com/caseyjohnston/status/457974094701420545/photo/1,http://caseyjohnston.net/post/83475170512/things-that-are-more-expensive-than-a-tablet-now,https://twitter.com/caseyjohnston/status/457974094701420545/photo/1" +"458263482043887616","458262763907715072","14272162","2014-04-21 15:18:22 +0000","Twitterrific for iOS","@jdalton Too broad for useful answers. Depends on specifics about the type of payments, and geography.","","","","" +"458113359951306754","","","2014-04-21 05:21:51 +0000","Twitterrific for iOS","RT @stats_canada: 85% of Canadian moms need you to fix their computer this afternoon","457953657846530048","701267743","2014-04-20 18:47:15 +0000","" +"457177145505116160","","","2014-04-18 15:21:40 +0000","Twitterrific for iOS","RT @paulleduc_5: @_sjs I'm not late to this whole facetweet thing am I? #kony2012 #yolo","457091439373991936","1702595204","2014-04-18 09:41:06 +0000","" +"457085085989085184","457075885397377024","1702595204","2014-04-18 09:15:51 +0000","Twitterrific for iOS","@paulleduc_5 OMG YOU GUYS! Paul tweeted! And is no longer an egg!","","","","" +"457008809961992193","456991261254094849","88489441","2014-04-18 04:12:45 +0000","Twitterrific for iOS","@AdamBFerg It's pretty weird that functions don't care about the number of parameters passed in. Pretty, pretty, pretty weird.","","","","" +"456960603764957184","456942201595891712","88489441","2014-04-18 01:01:12 +0000","Twitterrific for iOS","@AdamBFerg For this particular case a.map(Number) does what you want. But yeah, http://t.co/4tA9JEzk6J","","","","http://wtfjs.com" -"456958741984735232","456938592233746432","74837444","2014-04-18 00:53:48 +0000","Twitterrific","@Badger32d Hell yeah! Easter weekend gaming! We're playing ESO here.","","","","" -"456932267105865728","","","2014-04-17 23:08:36 +0000","Twitterrific","LAN party like it's 1998! http://t.co/Z9AFKnuXDB","","","","https://twitter.com/_sjs/status/456932267105865728/photo/1" -"456861266225934336","","","2014-04-17 18:26:28 +0000","Twitterrific","RT @andy_matuschak: ""Do not feed RSA private key information to the random subsystem as entropy."" ahhh ahhh ahhkljs +"456958741984735232","456938592233746432","74837444","2014-04-18 00:53:48 +0000","Twitterrific for iOS","@Badger32d Hell yeah! Easter weekend gaming! We're playing ESO here.","","","","" +"456932267105865728","","","2014-04-17 23:08:36 +0000","Twitterrific for iOS","LAN party like it's 1998! http://t.co/Z9AFKnuXDB","","","","https://twitter.com/_sjs/status/456932267105865728/photo/1" +"456861266225934336","","","2014-04-17 18:26:28 +0000","Twitterrific for iOS","RT @andy_matuschak: ""Do not feed RSA private key information to the random subsystem as entropy."" ahhh ahhh ahhkljs http://t.co/QVrmlbfZy6…","456839876952879104","10724012","2014-04-17 17:01:29 +0000","http://freshbsd.org/commit/openbsd/e5136d69ece4682e6167c8f4a8122270236898bf,http://freshbsd.org/commit/openbsd/e5136d69ece4682e6167c8f4a8122270236898bf" -"456824079685672960","456792571206172672","14538248","2014-04-17 15:58:42 +0000","Twitterrific for Mac","@robynpeterson I have what seem like reasonable ideas on basic walking etiquette and so many people don’t seem to get it. Need to post rules","","","","" -"456823931488333825","","","2014-04-17 15:58:07 +0000","Twitterrific for Mac","RT @robynpeterson: Kinda love this. NYC Basic Tips and Etiquette by Nathan W. Pyle http://t.co/v731XfEdTR http://t.co/0QixYzllVz","456792571206172672","14538248","2014-04-17 13:53:30 +0000","http://m.imgur.com/a/mq8jH,https://twitter.com/robynpeterson/status/456792571206172672/photo/1,http://m.imgur.com/a/mq8jH,https://twitter.com/robynpeterson/status/456792571206172672/photo/1" -"456518781506830336","","216808077","2014-04-16 19:45:33 +0000","Twitterrific","@Shawhelp Major connectivity problems in Victoria today. Any suggested workarounds? Change DNS maybe?","","","","" -"456483267059798016","456482055337963521","29255412","2014-04-16 17:24:26 +0000","Twitterrific for Mac","@tjholowaychuk It’s so high profile that you really risk having lots spoiled if you watch it a year later. Can’t have that!","","","","" -"456482948267524096","456482055337963521","29255412","2014-04-16 17:23:10 +0000","Twitterrific for Mac","@tjholowaychuk Maybe, maybe not. It’s like $20/month so even just 4 months for GoT might net them $10-15 / month = $40-60. Either way, lame!","","","","" -"456481843261349888","","","2014-04-16 17:18:47 +0000","Twitterrific for Mac","RT @shit_so_says: Languages with dynamic (duck) typing employ lazy evaluation, which is favored by lazy programmers.","456456598542512128","1084490250","2014-04-16 15:38:28 +0000","" -"456481680543318017","456455153193725952","29255412","2014-04-16 17:18:08 +0000","Twitterrific for Mac","@tjholowaychuk I’ve got cash in hand, but there’s no way I’m subscribing to cable and then HBO just to get one show. Even if it’s amazing.","","","","" -"456444888758755329","","","2014-04-16 14:51:56 +0000","Twitterrific","RT @bob_beck: 55000 lines of code removed before I went for dinner. Wonder what it'll be when I return.. #OpenBSD #OpenSSH","456231797110493184","18111630","2014-04-16 00:45:11 +0000","" -"456278959030665216","","","2014-04-16 03:52:35 +0000","Twitterrific","RT @raganwald: Nitpicking is grooming, it's a sign of affection. If you're criticizing to attack and not to improve, you're doing it wrong.","456277809673932801","18137723","2014-04-16 03:48:01 +0000","" -"455991548656627712","","","2014-04-15 08:50:31 +0000","Twitterrific","In case you missed the eclipse. RT @nerdtalker: Dat lunar eclipse (took some pics with a Nikon 500mm F/8 reflex) http://t.co/UD1xNeTm1Y","","","","http://cl.ly/image/3q2Q2i2Z0H3x" -"455990928528777216","","","2014-04-15 08:48:03 +0000","Twitterrific","RT @wwwtxt: I wonder if people living on the moon would think of tonight as a solar eclipse? ☯89MAY","455984070615662592","207756340","2014-04-15 08:20:48 +0000","" -"455972447594897408","","","2014-04-15 07:34:37 +0000","Twitterrific","Lousy clouds.","","","","" -"455969563427880961","","","2014-04-15 07:23:10 +0000","Twitterrific","Heading out to see the eclipse. Hopefully it's not too cloudy.","","","","" -"455932845639213056","","","2014-04-15 04:57:15 +0000","Twitterrific","Let's not build a future where we use our smart watches to open our smart locks to enter our smart houses before taking off our smart shoes.","","","","" -"455873321167372288","","","2014-04-15 01:00:44 +0000","Twitterrific for Mac","… such as pausing and resuming, skip existing files, verify after copy/move, etc. And it is rock solid. +"456824079685672960","456792571206172672","14538248","2014-04-17 15:58:42 +0000","Twitterrific for Mac","@robynpeterson I have what seem like reasonable ideas on basic walking etiquette and so many people don’t seem to get it. Need to post rules","","","","" +"456823931488333825","","","2014-04-17 15:58:07 +0000","Twitterrific for Mac","RT @robynpeterson: Kinda love this. NYC Basic Tips and Etiquette by Nathan W. Pyle http://t.co/v731XfEdTR http://t.co/0QixYzllVz","456792571206172672","14538248","2014-04-17 13:53:30 +0000","http://m.imgur.com/a/mq8jH,https://twitter.com/robynpeterson/status/456792571206172672/photo/1,http://m.imgur.com/a/mq8jH,https://twitter.com/robynpeterson/status/456792571206172672/photo/1" +"456518781506830336","","216808077","2014-04-16 19:45:33 +0000","Twitterrific for iOS","@Shawhelp Major connectivity problems in Victoria today. Any suggested workarounds? Change DNS maybe?","","","","" +"456483267059798016","456482055337963521","29255412","2014-04-16 17:24:26 +0000","Twitterrific for Mac","@tjholowaychuk It’s so high profile that you really risk having lots spoiled if you watch it a year later. Can’t have that!","","","","" +"456482948267524096","456482055337963521","29255412","2014-04-16 17:23:10 +0000","Twitterrific for Mac","@tjholowaychuk Maybe, maybe not. It’s like $20/month so even just 4 months for GoT might net them $10-15 / month = $40-60. Either way, lame!","","","","" +"456481843261349888","","","2014-04-16 17:18:47 +0000","Twitterrific for Mac","RT @shit_so_says: Languages with dynamic (duck) typing employ lazy evaluation, which is favored by lazy programmers.","456456598542512128","1084490250","2014-04-16 15:38:28 +0000","" +"456481680543318017","456455153193725952","29255412","2014-04-16 17:18:08 +0000","Twitterrific for Mac","@tjholowaychuk I’ve got cash in hand, but there’s no way I’m subscribing to cable and then HBO just to get one show. Even if it’s amazing.","","","","" +"456444888758755329","","","2014-04-16 14:51:56 +0000","Twitterrific for iOS","RT @bob_beck: 55000 lines of code removed before I went for dinner. Wonder what it'll be when I return.. #OpenBSD #OpenSSH","456231797110493184","18111630","2014-04-16 00:45:11 +0000","" +"456278959030665216","","","2014-04-16 03:52:35 +0000","Twitterrific for iOS","RT @raganwald: Nitpicking is grooming, it's a sign of affection. If you're criticizing to attack and not to improve, you're doing it wrong.","456277809673932801","18137723","2014-04-16 03:48:01 +0000","" +"455991548656627712","","","2014-04-15 08:50:31 +0000","Twitterrific for iOS","In case you missed the eclipse. RT @nerdtalker: Dat lunar eclipse (took some pics with a Nikon 500mm F/8 reflex) http://t.co/UD1xNeTm1Y","","","","http://cl.ly/image/3q2Q2i2Z0H3x" +"455990928528777216","","","2014-04-15 08:48:03 +0000","Twitterrific for iOS","RT @wwwtxt: I wonder if people living on the moon would think of tonight as a solar eclipse? ☯89MAY","455984070615662592","207756340","2014-04-15 08:20:48 +0000","" +"455972447594897408","","","2014-04-15 07:34:37 +0000","Twitterrific for iOS","Lousy clouds.","","","","" +"455969563427880961","","","2014-04-15 07:23:10 +0000","Twitterrific for iOS","Heading out to see the eclipse. Hopefully it's not too cloudy.","","","","" +"455932845639213056","","","2014-04-15 04:57:15 +0000","Twitterrific for iOS","Let's not build a future where we use our smart watches to open our smart locks to enter our smart houses before taking off our smart shoes.","","","","" +"455873321167372288","","","2014-04-15 01:00:44 +0000","Twitterrific for Mac","… such as pausing and resuming, skip existing files, verify after copy/move, etc. And it is rock solid. I end up using rsync on OS X :/","","","","" -"455872866815197184","","","2014-04-15 00:58:55 +0000","Twitterrific for Mac","Is there anything like TeraCopy for OS X? http://t.co/VtJaoHVo9I It takes over Explorer’s copy & move and provides better functionality.","","","","http://codesector.com/teracopy" -"455803204425355265","455802805890985984","108814849","2014-04-14 20:22:07 +0000","Twitterrific","@snarfmason Ah I see. The last I was really into it was iOS 4 or 5. So much has changed since then!","","","","" -"455802109057708032","455800904877604864","53010195","2014-04-14 20:17:45 +0000","Twitterrific for Mac","@mraleph I feel inspired to go have fun at the pub. YMMV.","","","","" -"455800545987407872","455790021908250624","108814849","2014-04-14 20:11:33 +0000","Twitterrific for Mac","@snarfmason Heh, yeah. In general I like iOS dev quite a bit. I didn’t know that you did iOS too.","","","","" -"455788516153126912","455787514570080256","108814849","2014-04-14 19:23:45 +0000","Twitterrific for Mac","@snarfmason Yup! I’ve dabbled in the past, but have done very little for the last couple of years.","","","","" -"455784963841855488","","","2014-04-14 19:09:38 +0000","Twitterrific for Mac","Welcome to Xcode, where the indent level is made up and the context doesn’t matter!","","","","" -"455739980476719104","","","2014-04-14 16:10:53 +0000","Twitterrific","From the CRA here in Canada. RT @arstechnica: Heartbleed bug exploited to steal taxpayer data http://t.co/Kovmeo6ljJ by @dangoodin001","","","","http://ars.to/1kRMqvP" -"455494916995440640","","","2014-04-13 23:57:05 +0000","Twitterrific","Is there a Poe's law for Kickstarter? https://t.co/GpA2ZeM9P2","","","","https://www.kickstarter.com/projects/478222000/orbit-flying-hovering-autonomous-smart-device-prot" -"455493183799975937","455485390259240960","18247541","2014-04-13 23:50:12 +0000","Twitterrific","@tapbot_paul I'm so glad I stayed until the end. That music being his own music is so perfect.","","","","" -"455190187245453312","","","2014-04-13 03:46:12 +0000","Twitterrific","RT @Kickingbear: Preaching To The Choir +"455872866815197184","","","2014-04-15 00:58:55 +0000","Twitterrific for Mac","Is there anything like TeraCopy for OS X? http://t.co/VtJaoHVo9I It takes over Explorer’s copy & move and provides better functionality.","","","","http://codesector.com/teracopy" +"455803204425355265","455802805890985984","108814849","2014-04-14 20:22:07 +0000","Twitterrific for iOS","@snarfmason Ah I see. The last I was really into it was iOS 4 or 5. So much has changed since then!","","","","" +"455802109057708032","455800904877604864","53010195","2014-04-14 20:17:45 +0000","Twitterrific for Mac","@mraleph I feel inspired to go have fun at the pub. YMMV.","","","","" +"455800545987407872","455790021908250624","108814849","2014-04-14 20:11:33 +0000","Twitterrific for Mac","@snarfmason Heh, yeah. In general I like iOS dev quite a bit. I didn’t know that you did iOS too.","","","","" +"455788516153126912","455787514570080256","108814849","2014-04-14 19:23:45 +0000","Twitterrific for Mac","@snarfmason Yup! I’ve dabbled in the past, but have done very little for the last couple of years.","","","","" +"455784963841855488","","","2014-04-14 19:09:38 +0000","Twitterrific for Mac","Welcome to Xcode, where the indent level is made up and the context doesn’t matter!","","","","" +"455739980476719104","","","2014-04-14 16:10:53 +0000","Twitterrific for iOS","From the CRA here in Canada. RT @arstechnica: Heartbleed bug exploited to steal taxpayer data http://t.co/Kovmeo6ljJ by @dangoodin001","","","","http://ars.to/1kRMqvP" +"455494916995440640","","","2014-04-13 23:57:05 +0000","Twitterrific for iOS","Is there a Poe's law for Kickstarter? https://t.co/GpA2ZeM9P2","","","","https://www.kickstarter.com/projects/478222000/orbit-flying-hovering-autonomous-smart-device-prot" +"455493183799975937","455485390259240960","18247541","2014-04-13 23:50:12 +0000","Twitterrific for iOS","@tapbot_paul I'm so glad I stayed until the end. That music being his own music is so perfect.","","","","" +"455190187245453312","","","2014-04-13 03:46:12 +0000","Twitterrific for iOS","RT @Kickingbear: Preaching To The Choir http://t.co/kvSjn3c4NL","455186163771637760","225220363","2014-04-13 03:30:13 +0000","http://kickingbear.com/blog/archives/442,http://kickingbear.com/blog/archives/442" -"455019690583003136","","","2014-04-12 16:28:42 +0000","Twitterrific","RT @snarfmason: This is what advertising should look like to me. @cwgabriel probably got paid but he's well known for actually loving the s…","454999263743717376","108814849","2014-04-12 15:07:32 +0000","" -"455019634681335808","455016263333736448","21505836","2014-04-12 16:28:29 +0000","Twitterrific","@samuelwford @nacran @gte @siracusa That's 100% fair. I think many Obj-C, Perl, Python, and Ruby devs could agree on a whole lot though.","","","","" -"455012289490333696","","","2014-04-12 15:59:18 +0000","Twitterrific","@nacran @gte @siracusa Nothing, I was referencing the recent Debug episode on which they had a good discussion about this stuff.","","","","" -"455009987735994368","454860203352416256","7125712","2014-04-12 15:50:09 +0000","Twitterrific","@gte @siracusa That's good to hear. And I appreciate your position, but sense that you have a different perspective coming from C and C++.","","","","" -"455009657984008192","","","2014-04-12 15:48:50 +0000","Twitterrific","RT @gte: @_sjs @siracusa Heh. That wasn’t a fight. There was a lot of red cape there. John makes terrific points. We agree more than you’d …","454860203352416256","7125712","2014-04-12 05:54:58 +0000","" -"455009616607191040","454965996651290624","21505836","2014-04-12 15:48:40 +0000","Twitterrific","@samuelwford @nacran @gte @siracusa Not namespaces specifically, just higher level in general. Stuff we all mostly agree is better.","","","","" -"454858241072041984","","","2014-04-12 05:47:10 +0000","Twitterrific","This illustrates why you should take @gte's opinions with a giant grain of C salt, and take @siracusa seriously. http://t.co/j20ylQhQGX","","","","https://twitter.com/gte/status/454853255403950080" -"454853867394461696","","","2014-04-12 05:29:47 +0000","Twitterrific","RT @rentzsch: Apple Claims Mogenerator’s Methods http://t.co/wCElY8Ozz0","454852059099955200","663463","2014-04-12 05:22:36 +0000","http://rentzsch.tumblr.com/post/82453434093/apple-claims-mogenerators-methods,http://rentzsch.tumblr.com/post/82453434093/apple-claims-mogenerators-methods" +"455019690583003136","","","2014-04-12 16:28:42 +0000","Twitterrific for iOS","RT @snarfmason: This is what advertising should look like to me. @cwgabriel probably got paid but he's well known for actually loving the s…","454999263743717376","108814849","2014-04-12 15:07:32 +0000","" +"455019634681335808","455016263333736448","21505836","2014-04-12 16:28:29 +0000","Twitterrific for iOS","@samuelwford @nacran @gte @siracusa That's 100% fair. I think many Obj-C, Perl, Python, and Ruby devs could agree on a whole lot though.","","","","" +"455012289490333696","","","2014-04-12 15:59:18 +0000","Twitterrific for iOS","@nacran @gte @siracusa Nothing, I was referencing the recent Debug episode on which they had a good discussion about this stuff.","","","","" +"455009987735994368","454860203352416256","7125712","2014-04-12 15:50:09 +0000","Twitterrific for iOS","@gte @siracusa That's good to hear. And I appreciate your position, but sense that you have a different perspective coming from C and C++.","","","","" +"455009657984008192","","","2014-04-12 15:48:50 +0000","Twitterrific for iOS","RT @gte: @_sjs @siracusa Heh. That wasn’t a fight. There was a lot of red cape there. John makes terrific points. We agree more than you’d …","454860203352416256","7125712","2014-04-12 05:54:58 +0000","" +"455009616607191040","454965996651290624","21505836","2014-04-12 15:48:40 +0000","Twitterrific for iOS","@samuelwford @nacran @gte @siracusa Not namespaces specifically, just higher level in general. Stuff we all mostly agree is better.","","","","" +"454858241072041984","","","2014-04-12 05:47:10 +0000","Twitterrific for iOS","This illustrates why you should take @gte's opinions with a giant grain of C salt, and take @siracusa seriously. http://t.co/j20ylQhQGX","","","","https://twitter.com/gte/status/454853255403950080" +"454853867394461696","","","2014-04-12 05:29:47 +0000","Twitterrific for iOS","RT @rentzsch: Apple Claims Mogenerator’s Methods http://t.co/wCElY8Ozz0","454852059099955200","663463","2014-04-12 05:22:36 +0000","http://rentzsch.tumblr.com/post/82453434093/apple-claims-mogenerators-methods,http://rentzsch.tumblr.com/post/82453434093/apple-claims-mogenerators-methods" "454853829570220032","","","2014-04-12 05:29:38 +0000","Twitter Lite","RT @tonyarnold: I just lost an afternoon because an Apple library uses mogenerator and claims its methods: https://t.co/QbrqbkN5va *sigh* …","454841192404881408","640903","2014-04-12 04:39:25 +0000","https://github.com/magicalpanda/MagicalRecord/pull/74#issuecomment-40271111,https://github.com/magicalpanda/MagicalRecord/pull/74#issuecomment-40271111" -"454837846994464769","454836087962099712","11346922","2014-04-12 04:26:07 +0000","Twitterrific","@IainDelaney @brentsimmons TextMate, Sublime, vim, and Emacs each do both of those things with 2 keystrokes.","","","","" -"454773356542177280","","","2014-04-12 00:09:52 +0000","Twitterrific","RT @HackerNewsOnion: Daft Punk admits #1 hit song ""Up All Night To Get Lucky"" is actually about programming","454767310029328384","1263967268","2014-04-11 23:45:50 +0000","" -"454763315151925248","454762892126994432","216806575","2014-04-11 23:29:58 +0000","Twitterrific for Mac","@pete_higgins @snarfmason “You probably haven’t heard of it…”","","","","" -"454758721663426560","454758558953795585","4777951","2014-04-11 23:11:42 +0000","Twitterrific for Mac","@daringfireball Er, or s/full/few/ maybe? @gruber","","","","" -"454758558953795585","454756366419103744","10760422","2014-04-11 23:11:04 +0000","Twitterrific for Mac","@daringfireball Looks like you accidentally a word. +"454837846994464769","","","2014-04-12 04:26:07 +0000","Twitterrific for iOS","@IainDelaney @brentsimmons TextMate, Sublime, vim, and Emacs each do both of those things with 2 keystrokes.","","","","" +"454773356542177280","","","2014-04-12 00:09:52 +0000","Twitterrific for iOS","RT @HackerNewsOnion: Daft Punk admits #1 hit song ""Up All Night To Get Lucky"" is actually about programming","454767310029328384","1263967268","2014-04-11 23:45:50 +0000","" +"454763315151925248","454762892126994432","216806575","2014-04-11 23:29:58 +0000","Twitterrific for Mac","@pete_higgins @snarfmason “You probably haven’t heard of it…”","","","","" +"454758721663426560","454758558953795585","4777951","2014-04-11 23:11:42 +0000","Twitterrific for Mac","@daringfireball Er, or s/full/few/ maybe? @gruber","","","","" +"454758558953795585","454756366419103744","10760422","2014-04-11 23:11:04 +0000","Twitterrific for Mac","@daringfireball Looks like you accidentally a word. “is just a full days old”","","","","" -"454748631124303872","454747908936437760","894911","2014-04-11 22:31:37 +0000","Twitterrific for Mac","@JimRoepcke I’m installing it on my iPad right now.","","","","" -"454747075607924736","","","2014-04-11 22:25:26 +0000","Twitterrific for Mac","I can’t believe Microsoft doesn’t support Dvorak in their Escape from XP game. +"454748631124303872","454747908936437760","894911","2014-04-11 22:31:37 +0000","Twitterrific for Mac","@JimRoepcke I’m installing it on my iPad right now.","","","","" +"454747075607924736","","","2014-04-11 22:25:26 +0000","Twitterrific for Mac","I can’t believe Microsoft doesn’t support Dvorak in their Escape from XP game. ONE STAR","","","","" -"454714563351425024","454696416351240192","108814849","2014-04-11 20:16:14 +0000","Twitterrific for Mac","@snarfmason I drank some PBR at a dive bar in Seattle last year because it was cheap and appropriate for the setting. “Like” is different…","","","","" -"454689176986734592","","","2014-04-11 18:35:22 +0000","Twitterrific for Mac","RT @maelman: @tenderlove Fixed that for you. http://t.co/3rIpwgyXlF","454686842609078273","7285862","2014-04-11 18:26:05 +0000","https://twitter.com/maelman/status/454686842609078273/photo/1,https://twitter.com/maelman/status/454686842609078273/photo/1" -"454431451413377024","","","2014-04-11 01:31:15 +0000","Twitterrific","RT @macworld: Macworld Lab is testing for an upcoming Thunderbolt story. In this pic, all the devices are connected to 1 Mac Pro: http://t.…","454379821741514752","611823","2014-04-10 22:06:06 +0000","http://instagram.com/p/moAyEzL9Xb/" -"454398955770482688","","","2014-04-10 23:22:08 +0000","Twitterrific for Mac","Streeeeeetch! https://t.co/oFVSomR2xz","","","","https://www.kickstarter.com/projects/xyfindit/xy-the-secure-tracking-tag/posts/807116" -"454391968382988288","","","2014-04-10 22:54:22 +0000","Twitterrific for Mac","Looking at Something Awful, 4chan, and the Fark. You know, for science.","","","","" -"454319636855521280","","","2014-04-10 18:06:56 +0000","Twitterrific for Mac","So I’m not as bad at autolayout as I thought I was! Just wasn’t expecting the right result. Thanks @JimRoepcke.","","","","" +"454714563351425024","454696416351240192","108814849","2014-04-11 20:16:14 +0000","Twitterrific for Mac","@snarfmason I drank some PBR at a dive bar in Seattle last year because it was cheap and appropriate for the setting. “Like” is different…","","","","" +"454689176986734592","","","2014-04-11 18:35:22 +0000","Twitterrific for Mac","RT @maelman: @tenderlove Fixed that for you. http://t.co/3rIpwgyXlF","454686842609078273","7285862","2014-04-11 18:26:05 +0000","https://twitter.com/maelman/status/454686842609078273/photo/1,https://twitter.com/maelman/status/454686842609078273/photo/1" +"454431451413377024","","","2014-04-11 01:31:15 +0000","Twitterrific for iOS","RT @macworld: Macworld Lab is testing for an upcoming Thunderbolt story. In this pic, all the devices are connected to 1 Mac Pro: http://t.…","454379821741514752","611823","2014-04-10 22:06:06 +0000","http://instagram.com/p/moAyEzL9Xb/" +"454398955770482688","","","2014-04-10 23:22:08 +0000","Twitterrific for Mac","Streeeeeetch! https://t.co/oFVSomR2xz","","","","https://www.kickstarter.com/projects/xyfindit/xy-the-secure-tracking-tag/posts/807116" +"454391968382988288","","","2014-04-10 22:54:22 +0000","Twitterrific for Mac","Looking at Something Awful, 4chan, and the Fark. You know, for science.","","","","" +"454319636855521280","","","2014-04-10 18:06:56 +0000","Twitterrific for Mac","So I’m not as bad at autolayout as I thought I was! Just wasn’t expecting the right result. Thanks @JimRoepcke.","","","","" "454286657252900864","","","2014-04-10 15:55:53 +0000","iOS","Cocoa method names that barely fit in a tweet. This is my favourite GitHub project this morning. https://t.co/bmUqokHMDY","","","","https://github.com/Quotation/LongestCocoa" -"454138556034736128","454125303648890880","4777951","2014-04-10 06:07:23 +0000","Twitterrific for Mac","@_sjs Adding width & height constraints shows the text view, but not centered. https://t.co/9VViuTuOSP +"454138556034736128","454125303648890880","4777951","2014-04-10 06:07:23 +0000","Twitterrific for Mac","@_sjs Adding width & height constraints shows the text view, but not centered. https://t.co/9VViuTuOSP Progress?","","","","https://gist.github.com/samsonjs/10344353" -"454135683246866432","","","2014-04-10 05:55:58 +0000","Twitterrific","RT @mashable: You should be changing a bunch of passwords right now because of the Heartbleed bug. Here's a list of which ones: http://t.co…","454053031794208768","972651","2014-04-10 00:27:33 +0000","http://on.mash.to/1ebMVxR" -"454125303648890880","","","2014-04-10 05:14:44 +0000","Twitterrific for Mac","I can’t auto layout. Why doesn’t this show a text view in the middle of the view? https://t.co/9VViuTuOSP","","","","https://gist.github.com/samsonjs/10344353" -"454022291609776129","","","2014-04-09 22:25:24 +0000","Twitterrific for Mac","Props to Adobe for helping me out in all 3 places I whined about broken download links on their Marketing Cloud. /cc @AdobeMktgCare","","","","" -"453986825212674048","","","2014-04-09 20:04:28 +0000","Twitterrific for Mac","RT @waxpancake: Worth noting: Quora has no public API, no backup/export tools, blocks anonymous display of answers, and banned the Wayback …","453958676529696769","13461","2014-04-09 18:12:37 +0000","" -"453985128407003136","","","2014-04-09 19:57:43 +0000","Twitterrific for Mac","It’s not an Enterprise Ready™ forum unless it notifies you about your own replies on a thread.","","","","" -"453977827382022145","453977604501291008","18192654","2014-04-09 19:28:43 +0000","Twitterrific","@AdobeMktgCare Ha ha. Hopefully it was an easy switch to unflip. Thanks again Russ!","","","","" +"454135683246866432","","","2014-04-10 05:55:58 +0000","Twitterrific for iOS","RT @mashable: You should be changing a bunch of passwords right now because of the Heartbleed bug. Here's a list of which ones: http://t.co…","454053031794208768","972651","2014-04-10 00:27:33 +0000","http://on.mash.to/1ebMVxR" +"454125303648890880","","","2014-04-10 05:14:44 +0000","Twitterrific for Mac","I can’t auto layout. Why doesn’t this show a text view in the middle of the view? https://t.co/9VViuTuOSP","","","","https://gist.github.com/samsonjs/10344353" +"454022291609776129","","","2014-04-09 22:25:24 +0000","Twitterrific for Mac","Props to Adobe for helping me out in all 3 places I whined about broken download links on their Marketing Cloud. /cc @AdobeMktgCare","","","","" +"453986825212674048","","","2014-04-09 20:04:28 +0000","Twitterrific for Mac","RT @waxpancake: Worth noting: Quora has no public API, no backup/export tools, blocks anonymous display of answers, and banned the Wayback …","453958676529696769","13461","2014-04-09 18:12:37 +0000","" +"453985128407003136","","","2014-04-09 19:57:43 +0000","Twitterrific for Mac","It’s not an Enterprise Ready™ forum unless it notifies you about your own replies on a thread.","","","","" +"453977827382022145","453977604501291008","18192654","2014-04-09 19:28:43 +0000","Twitterrific for iOS","@AdobeMktgCare Ha ha. Hopefully it was an easy switch to unflip. Thanks again Russ!","","","","" "453963715587477504","453962887015321600","18192654","2014-04-09 18:32:38 +0000","Twitter Web Client","@AdobeMktgCare Hooray! Thanks :)","","","","" -"453963288003375104","453956538752045056","14231571","2014-04-09 18:30:56 +0000","Twitterrific for Mac","@marcoarment Beware. You will anger @siracusa when he requests a reset from Chrome on iOS.","","","","" -"453953974505189376","453936828827971584","108814849","2014-04-09 17:53:56 +0000","Twitterrific for Mac","@snarfmason Do you have persistent connections on for GitHub in ~/.ssh/config? e.g. “ControlPersist 1h”","","","","" +"453963288003375104","453956538752045056","14231571","2014-04-09 18:30:56 +0000","Twitterrific for Mac","@marcoarment Beware. You will anger @siracusa when he requests a reset from Chrome on iOS.","","","","" +"453953974505189376","453936828827971584","108814849","2014-04-09 17:53:56 +0000","Twitterrific for Mac","@snarfmason Do you have persistent connections on for GitHub in ~/.ssh/config? e.g. “ControlPersist 1h”","","","","" "453925550663290881","","18192654","2014-04-09 16:00:59 +0000","Twitter Web Client","@AdobeMktgCare Bloodhound download links are broken on https://t.co/Ao6NEwSPYb :(","","","","https://marketing.adobe.com/developer/en_US/gallery/bloodhound-app-measurement-qa-tool-1" -"453919391780843520","453885811885228034","17609423","2014-04-09 15:36:31 +0000","Twitterrific for Mac","@secoif Looks weird to me.","","","","" -"453778527599341568","","","2014-04-09 06:16:46 +0000","Twitterrific","RT @sentience: Mac-toting backend devs, you probably also want to do this on your machine: +"453919391780843520","453885811885228034","17609423","2014-04-09 15:36:31 +0000","Twitterrific for Mac","@secoif Looks weird to me.","","","","" +"453778527599341568","","","2014-04-09 06:16:46 +0000","Twitterrific for iOS","RT @sentience: Mac-toting backend devs, you probably also want to do this on your machine: brew update brew upgrade openssl #heartbleed","453722565245014016","8796452","2014-04-09 02:34:23 +0000","" -"453604233540304896","453603290119671808","894911","2014-04-08 18:44:11 +0000","Twitterrific for Mac","@JimRoepcke @marcoarment So is the cost of stagnation. If one’s vendor disappears it’s their choice to do nothing or do something.","","","","" -"453602926519648257","453595939681632256","894911","2014-04-08 18:38:59 +0000","Twitterrific for Mac","@JimRoepcke @marcoarment Only up to a certain point. If they don’t hound their vendors or switch to other software they are responsible.","","","","" -"453576561254338560","","","2014-04-08 16:54:13 +0000","Twitterrific for Mac","RT @ErikHallander: @LastPass Confidence level: Concerned. #heartbleed #zeroday http://t.co/0pO8fPEarm","453481816062562305","228595291","2014-04-08 10:37:45 +0000","https://twitter.com/ErikHallander/status/453481816062562305/photo/1,https://twitter.com/ErikHallander/status/453481816062562305/photo/1" -"453392561432846337","","","2014-04-08 04:43:04 +0000","Twitterrific","RT @monkbent: I was early on the apps > mobile web bandwagon. But people have gone too far, and are too binary. The web isn’t going anywher…","453357461143949312","40273","2014-04-08 02:23:36 +0000","" -"453366688080089088","452882161599672320","165517420","2014-04-08 03:00:16 +0000","Twitterrific","@BenBrocka @WebReflection Logical fallacy.","","","","" -"453366197073891328","","","2014-04-08 02:58:19 +0000","Twitterrific","RT @tomhut: Twitter right now http://t.co/sUaaq29TpG","453339173349773312","1343871","2014-04-08 01:10:56 +0000","https://twitter.com/tomhut/status/453339173349773312/photo/1,https://twitter.com/tomhut/status/453339173349773312/photo/1" -"453365760677527552","","","2014-04-08 02:56:35 +0000","Twitterrific","RT @rentzsch: I’ll let you have uppercase *and* lowercase characters. All seven bits. I’m not a monster","453328769785159680","663463","2014-04-08 00:29:35 +0000","" -"452488959939977216","","","2014-04-05 16:52:29 +0000","Twitterrific","RT @peterc: ""I wrote a C compiler as a hobby."" http://t.co/HlLWHis6IG .. nice thread for fellow compiler/PL implementation dabblers","452444601593626625","33493","2014-04-05 13:56:13 +0000","http://www.reddit.com/r/programming/comments/2277wu/i_wrote_a_c_compiler_as_a_hobby_currently_targets/,http://www.reddit.com/r/programming/comments/2277wu/i_wrote_a_c_compiler_as_a_hobby_currently_targets/" -"452362533349752832","452348656000069632","17088322","2014-04-05 08:30:07 +0000","Twitterrific","@HipwoodDigital Cool, thanks!","","","","" +"453604233540304896","453603290119671808","894911","2014-04-08 18:44:11 +0000","Twitterrific for Mac","@JimRoepcke @marcoarment So is the cost of stagnation. If one’s vendor disappears it’s their choice to do nothing or do something.","","","","" +"453602926519648257","453595939681632256","894911","2014-04-08 18:38:59 +0000","Twitterrific for Mac","@JimRoepcke @marcoarment Only up to a certain point. If they don’t hound their vendors or switch to other software they are responsible.","","","","" +"453576561254338560","","","2014-04-08 16:54:13 +0000","Twitterrific for Mac","RT @ErikHallander: @LastPass Confidence level: Concerned. #heartbleed #zeroday http://t.co/0pO8fPEarm","453481816062562305","228595291","2014-04-08 10:37:45 +0000","https://twitter.com/ErikHallander/status/453481816062562305/photo/1,https://twitter.com/ErikHallander/status/453481816062562305/photo/1" +"453392561432846337","","","2014-04-08 04:43:04 +0000","Twitterrific for iOS","RT @monkbent: I was early on the apps > mobile web bandwagon. But people have gone too far, and are too binary. The web isn’t going anywher…","453357461143949312","40273","2014-04-08 02:23:36 +0000","" +"453366688080089088","452882161599672320","165517420","2014-04-08 03:00:16 +0000","Twitterrific for iOS","@BenBrocka @WebReflection Logical fallacy.","","","","" +"453366197073891328","","","2014-04-08 02:58:19 +0000","Twitterrific for iOS","RT @tomhut: Twitter right now http://t.co/sUaaq29TpG","453339173349773312","1343871","2014-04-08 01:10:56 +0000","https://twitter.com/tomhut/status/453339173349773312/photo/1,https://twitter.com/tomhut/status/453339173349773312/photo/1" +"453365760677527552","","","2014-04-08 02:56:35 +0000","Twitterrific for iOS","RT @rentzsch: I’ll let you have uppercase *and* lowercase characters. All seven bits. I’m not a monster","453328769785159680","663463","2014-04-08 00:29:35 +0000","" +"452611469809422336","","","2014-04-06 00:59:18 +0000","Twitterrific for Mac","RT @KyleHughes: You can use the timer in the Clock app for iOS, with the alert set to “Stop Playing”, to have a sleep timer for any app.","452515614616461312","10572372","2014-04-05 18:38:24 +0000","" +"452488959939977216","","","2014-04-05 16:52:29 +0000","Twitterrific for iOS","RT @peterc: ""I wrote a C compiler as a hobby."" http://t.co/HlLWHis6IG .. nice thread for fellow compiler/PL implementation dabblers","452444601593626625","33493","2014-04-05 13:56:13 +0000","http://www.reddit.com/r/programming/comments/2277wu/i_wrote_a_c_compiler_as_a_hobby_currently_targets/,http://www.reddit.com/r/programming/comments/2277wu/i_wrote_a_c_compiler_as_a_hobby_currently_targets/" +"452362533349752832","452348656000069632","17088322","2014-04-05 08:30:07 +0000","Twitterrific for iOS","@HipwoodDigital Cool, thanks!","","","","" "452344525323632640","452342197245857792","17088322","2014-04-05 07:18:33 +0000","Twitter Web Client","@HipwoodDigital Walking to and from work was about 7-9k steps for me, and I didn't do much else weekdays.","","","","" -"452335920310542336","","","2014-04-05 06:44:22 +0000","Twitterrific","First week working from home. Not bad. http://t.co/RKOAZfPM2X","","","","https://twitter.com/_sjs/status/452335920310542336/photo/1" -"452199499117518848","452199190643220480","335991063","2014-04-04 21:42:16 +0000","Twitterrific for Mac","@AnthonyNystrom It makes sense since they are using fundamentally different techniques.","","","","" -"452197772335144960","452197427014291456","14561327","2014-04-04 21:35:25 +0000","Twitterrific for Mac","@dhh I’ve tried a few Nexus devices and never stuck with any of them. If I give Android another shot I’ll probably see what HTC is up to.","","","","" -"452196196442857472","452185083332399105","335991063","2014-04-04 21:29:09 +0000","Twitterrific for Mac","@AnthonyNystrom Woah, that’s cool. I wonder why they didn’t put work into PyPy or something though. I should read their post first I guess.","","","","" -"452169186450497537","","","2014-04-04 19:41:49 +0000","Twitterrific for Mac","RT @macworld: You may not need to buy the most powerful Mac anymore, but that's okay. A cartoon on Mac Pros and cons by @rstevens. http://t…","452117916314771456","611823","2014-04-04 16:18:05 +0000","http://macw.us/1hoizCW" -"452164064571965440","452148170718322688","108814849","2014-04-04 19:21:28 +0000","Twitterrific for Mac","@snarfmason Twitteriffic is decent. Needs an update but it’s $5 instead of $20 for TweetBot. I think EchoFon is still a thing too.","","","","" -"452156140831264769","","","2014-04-04 18:49:59 +0000","Twitterrific","NewEgg thinks I need to wash my clothes. Is this schwag? http://t.co/mazJkIWHzG","","","","https://twitter.com/_sjs/status/452156140831264769/photo/1" +"452335920310542336","","","2014-04-05 06:44:22 +0000","Twitterrific for iOS","First week working from home. Not bad. http://t.co/RKOAZfPM2X","","","","https://twitter.com/_sjs/status/452335920310542336/photo/1" +"452199499117518848","452199190643220480","335991063","2014-04-04 21:42:16 +0000","Twitterrific for Mac","@AnthonyNystrom It makes sense since they are using fundamentally different techniques.","","","","" +"452197772335144960","452197427014291456","14561327","2014-04-04 21:35:25 +0000","Twitterrific for Mac","@dhh I’ve tried a few Nexus devices and never stuck with any of them. If I give Android another shot I’ll probably see what HTC is up to.","","","","" +"452196196442857472","452185083332399105","335991063","2014-04-04 21:29:09 +0000","Twitterrific for Mac","@AnthonyNystrom Woah, that’s cool. I wonder why they didn’t put work into PyPy or something though. I should read their post first I guess.","","","","" +"452169186450497537","","","2014-04-04 19:41:49 +0000","Twitterrific for Mac","RT @macworld: You may not need to buy the most powerful Mac anymore, but that's okay. A cartoon on Mac Pros and cons by @rstevens. http://t…","452117916314771456","611823","2014-04-04 16:18:05 +0000","http://macw.us/1hoizCW" +"452164064571965440","452148170718322688","108814849","2014-04-04 19:21:28 +0000","Twitterrific for Mac","@snarfmason Twitteriffic is decent. Needs an update but it’s $5 instead of $20 for TweetBot. I think EchoFon is still a thing too.","","","","" +"452156140831264769","","","2014-04-04 18:49:59 +0000","Twitterrific for iOS","NewEgg thinks I need to wash my clothes. Is this schwag? http://t.co/mazJkIWHzG","","","","https://twitter.com/_sjs/status/452156140831264769/photo/1" "452107709773406209","","","2014-04-04 15:37:32 +0000","Twitter Web Client","RT @MashableHQ: #FF @_sjs, Mashable's new iOS Engineer! Welcome Sami!","452106478204514304","140569932","2014-04-04 15:32:38 +0000","" "452095912672641024","451987651252322305","222358903","2014-04-04 14:50:39 +0000","Twitter Web Client","@Sarah_SLP Thanks! :)","","","","" -"451962605335113728","","","2014-04-04 06:00:56 +0000","Twitterrific for Mac","Time for a little night cooking. Anyone have a good barbecue sauce recipe?","","","","" -"451926229021519872","451921889561026561","2897431","2014-04-04 03:36:24 +0000","Twitterrific for Mac","@dwiskus Are you usually barefoot in your house? Socks after a shower, and shoes later when leaving my place.","","","","" -"451782406781943808","","","2014-04-03 18:04:54 +0000","Twitterrific for Mac","RT @antirez: As a reaction to Microsoft open sourcing .NET we are closed sourcing Redis with a per-query license.","451780041958252544","5813712","2014-04-03 17:55:30 +0000","" -"451777085418119168","451774137715802113","108814849","2014-04-03 17:43:45 +0000","Twitterrific for Mac","@snarfmason Oh, yeah that is also weird. One of my least favourite things about Ruby is the complicated syntax.","","","","" -"451776952420937728","451773921302282240","108814849","2014-04-03 17:43:13 +0000","Twitterrific for Mac","@snarfmason As someone who has written such files, I’m sorry.","","","","" -"451776896854802432","451773650165714944","108814849","2014-04-03 17:43:00 +0000","Twitterrific for Mac","@snarfmason @gregbate @HVST Ha! Let’s hope not.","","","","" -"451776280078188544","","","2014-04-03 17:40:33 +0000","Twitterrific for Mac","RT @hotdogsladies: I would listen to John Siracusa talk about anything. +"451962605335113728","","","2014-04-04 06:00:56 +0000","Twitterrific for Mac","Time for a little night cooking. Anyone have a good barbecue sauce recipe?","","","","" +"451926229021519872","451921889561026561","2897431","2014-04-04 03:36:24 +0000","Twitterrific for Mac","@dwiskus Are you usually barefoot in your house? Socks after a shower, and shoes later when leaving my place.","","","","" +"451782406781943808","","","2014-04-03 18:04:54 +0000","Twitterrific for Mac","RT @antirez: As a reaction to Microsoft open sourcing .NET we are closed sourcing Redis with a per-query license.","451780041958252544","5813712","2014-04-03 17:55:30 +0000","" +"451777085418119168","451774137715802113","108814849","2014-04-03 17:43:45 +0000","Twitterrific for Mac","@snarfmason Oh, yeah that is also weird. One of my least favourite things about Ruby is the complicated syntax.","","","","" +"451776952420937728","451773921302282240","108814849","2014-04-03 17:43:13 +0000","Twitterrific for Mac","@snarfmason As someone who has written such files, I’m sorry.","","","","" +"451776896854802432","451773650165714944","108814849","2014-04-03 17:43:00 +0000","Twitterrific for Mac","@snarfmason @gregbate @HVST Ha! Let’s hope not.","","","","" +"451776280078188544","","","2014-04-03 17:40:33 +0000","Twitterrific for Mac","RT @hotdogsladies: I would listen to John Siracusa talk about anything. And I do.","451771421992419328","749863","2014-04-03 17:21:15 +0000","" -"451770058117640192","451769378497773568","108814849","2014-04-03 17:15:50 +0000","Twitterrific for Mac","@snarfmason I like the idea of it, but I don’t like mixing styles once you need a non-symbol key.","","","","" -"451760977499807744","451752718202187776","15292261","2014-04-03 16:39:45 +0000","Twitterrific for Mac","@gregbate @snarfmason So far so good! Everyone at @mashable is awesome. Fun to switch gears and do some iOS dev again.","","","","" -"451754955498483712","","","2014-04-03 16:15:49 +0000","Twitterrific for Mac","RT @asymco: MEPs vote for net neutrality law http://t.co/B1IS7hZmDY","451736097920262144","110520327","2014-04-03 15:00:53 +0000","http://www.bbc.co.uk/news/technology-26865869,http://www.bbc.co.uk/news/technology-26865869" -"451754936586354688","","","2014-04-03 16:15:44 +0000","Twitterrific for Mac","RT @asymco: MEPs vote to scrap roaming fees http://t.co/dvdep9IR8h","451734875326791680","110520327","2014-04-03 14:56:01 +0000","http://www.bbc.co.uk/news/world-europe-26866966,http://www.bbc.co.uk/news/world-europe-26866966" -"451728178571005952","","","2014-04-03 14:29:25 +0000","Twitterrific","RT @simbeckhampson: Learning by messing around... http://t.co/1DF53eHI0u http://t.co/g8xojSUlsq","451592686261129216","39944598","2014-04-03 05:31:01 +0000","http://fplus.me/p/6nPM,https://twitter.com/simbeckhampson/status/451592686261129216/photo/1,http://fplus.me/p/6nPM,https://twitter.com/simbeckhampson/status/451592686261129216/photo/1" -"451468870205714432","","","2014-04-02 21:19:01 +0000","Twitterrific","RT @JimRoepcke: Blogger Pulls Off $30,000 Sting to Get Her Stolen Site Back http://t.co/TH6bgVAfxb via @mashable +"451770058117640192","451769378497773568","108814849","2014-04-03 17:15:50 +0000","Twitterrific for Mac","@snarfmason I like the idea of it, but I don’t like mixing styles once you need a non-symbol key.","","","","" +"451760977499807744","451752718202187776","15292261","2014-04-03 16:39:45 +0000","Twitterrific for Mac","@gregbate @snarfmason So far so good! Everyone at @mashable is awesome. Fun to switch gears and do some iOS dev again.","","","","" +"451754955498483712","","","2014-04-03 16:15:49 +0000","Twitterrific for Mac","RT @asymco: MEPs vote for net neutrality law http://t.co/B1IS7hZmDY","451736097920262144","110520327","2014-04-03 15:00:53 +0000","http://www.bbc.co.uk/news/technology-26865869,http://www.bbc.co.uk/news/technology-26865869" +"451754936586354688","","","2014-04-03 16:15:44 +0000","Twitterrific for Mac","RT @asymco: MEPs vote to scrap roaming fees http://t.co/dvdep9IR8h","451734875326791680","110520327","2014-04-03 14:56:01 +0000","http://www.bbc.co.uk/news/world-europe-26866966,http://www.bbc.co.uk/news/world-europe-26866966" +"451728178571005952","","","2014-04-03 14:29:25 +0000","Twitterrific for iOS","RT @simbeckhampson: Learning by messing around... http://t.co/1DF53eHI0u http://t.co/g8xojSUlsq","451592686261129216","39944598","2014-04-03 05:31:01 +0000","http://fplus.me/p/6nPM,https://twitter.com/simbeckhampson/status/451592686261129216/photo/1,http://fplus.me/p/6nPM,https://twitter.com/simbeckhampson/status/451592686261129216/photo/1" +"451468870205714432","","","2014-04-02 21:19:01 +0000","Twitterrific for iOS","RT @JimRoepcke: Blogger Pulls Off $30,000 Sting to Get Her Stolen Site Back http://t.co/TH6bgVAfxb via @mashable This was a great read. Gl…","451417219163910144","894911","2014-04-02 17:53:46 +0000","http://mashable.com/2014/04/02/ramshackle-glam-hacking/#:eyJzIjoidCIsImkiOiJfcWJmNGZjaG8zbmNyeG5rbyJ9,http://mashable.com/2014/04/02/ramshackle-glam-hacking/#:eyJzIjoidCIsImkiOiJfcWJmNGZjaG8zbmNyeG5rbyJ9" "451445270576779264","451444220604059650","22755138","2014-04-02 19:45:14 +0000","Twitter Web Client","@CherylRoepcke @ThreesGame :o Wow...","","","","" "451394387524595712","","","2014-04-02 16:23:03 +0000","Twitter Web Client","RT @robynpeterson: “We use tech to make humans better"" - @hailekofi, @mashable's chief data scientist. Newsrooms enlist data scientists ht…","451356582933454848","14538248","2014-04-02 13:52:49 +0000","http://digiday.com/publishers/data-scientists/" -"451250839395377152","451205201848848384","894911","2014-04-02 06:52:38 +0000","Twitterrific","@JimRoepcke @ThreesGame Woah nice one! 👏","","","","" -"451130809953427456","451086882580226048","717313","2014-04-01 22:55:41 +0000","Twitterrific for Mac","@arstechnica @caseyjohnston It’s a slog. I switched in college to escape RSI. Took about 2 full weeks to feel somewhat proficient.","","","","" -"451129767538872320","451101023361196032","108814849","2014-04-01 22:51:32 +0000","Twitterrific for Mac","@snarfmason https://t.co/mkANyhY2Q3","","","","https://twitter.com/arnemart/status/215678696005189632" -"451032132215783425","451031206499328001","108814849","2014-04-01 16:23:34 +0000","Twitterrific for Mac","@snarfmason Ah yes. The Harvest I hadn’t heard of before. 👍","","","","" -"451030498001702915","451030024414441472","36183","2014-04-01 16:17:05 +0000","Twitterrific for Mac",".@chockenberry Woah. I didn’t even click because I thought it was a complete joke. +"451250839395377152","451205201848848384","894911","2014-04-02 06:52:38 +0000","Twitterrific for iOS","@JimRoepcke @ThreesGame Woah nice one! 👏","","","","" +"451130809953427456","451086882580226048","717313","2014-04-01 22:55:41 +0000","Twitterrific for Mac","@arstechnica @caseyjohnston It’s a slog. I switched in college to escape RSI. Took about 2 full weeks to feel somewhat proficient.","","","","" +"451129767538872320","451101023361196032","108814849","2014-04-01 22:51:32 +0000","Twitterrific for Mac","@snarfmason https://t.co/mkANyhY2Q3","","","","https://twitter.com/arnemart/status/215678696005189632" +"451032132215783425","451031206499328001","108814849","2014-04-01 16:23:34 +0000","Twitterrific for Mac","@snarfmason Ah yes. The Harvest I hadn’t heard of before. 👍","","","","" +"451030498001702915","451030024414441472","36183","2014-04-01 16:17:05 +0000","Twitterrific for Mac",".@chockenberry Woah. I didn’t even click because I thought it was a complete joke. Reminds me of @github and svn. https://t.co/oczkGUqi7s","","","","https://github.com/blog/626-announcing-svn-support" -"451030144593829888","451008262037463040","108814849","2014-04-01 16:15:40 +0000","Twitterrific for Mac","@snarfmason @pete_higgins @srbaker Congrats! Where are you working now? Greg told me but I was drunk and forgot. Story of my life.","","","","" -"451026091579154432","450993520304611328","18137723","2014-04-01 15:59:34 +0000","Twitterrific for Mac","@raganwald raise ‘hell’ if shit.looks?(:broken)","","","","" -"450872347164024832","450854676246704128","108814849","2014-04-01 05:48:39 +0000","Twitterrific","@snarfmason I'm with you on that. Plus it makes it easy to find dependencies.","","","","" -"450765714589114368","","","2014-03-31 22:44:55 +0000","Twitterrific for Mac","It has begun. Happy Ignore-everything-you-see-on-the-Internet day! +"451030144593829888","451008262037463040","108814849","2014-04-01 16:15:40 +0000","Twitterrific for Mac","@snarfmason @pete_higgins @srbaker Congrats! Where are you working now? Greg told me but I was drunk and forgot. Story of my life.","","","","" +"451026091579154432","450993520304611328","18137723","2014-04-01 15:59:34 +0000","Twitterrific for Mac","@raganwald raise ‘hell’ if shit.looks?(:broken)","","","","" +"450872347164024832","450854676246704128","108814849","2014-04-01 05:48:39 +0000","Twitterrific for iOS","@snarfmason I'm with you on that. Plus it makes it easy to find dependencies.","","","","" +"450765714589114368","","","2014-03-31 22:44:55 +0000","Twitterrific for Mac","It has begun. Happy Ignore-everything-you-see-on-the-Internet day! http://t.co/QWXAdd6wz3","","","","http://gmailblog.blogspot.ca/2014/03/introducing-gmail-shelfie.html" -"450723660525891584","450722126178181120","17088322","2014-03-31 19:57:49 +0000","Twitterrific","@HipwoodDigital @mashable @JimRoepcke Thanks Chris!","","","","" -"450723590485188608","","","2014-03-31 19:57:32 +0000","Twitterrific","RT @JimRoepcke: Very excited that @_sjs has joined @Mashable! Thrilled to have Sami on our mobile development team. :-)","450720443045912576","894911","2014-03-31 19:45:02 +0000","" -"450720224715608064","","","2014-03-31 19:44:10 +0000","Twitterrific for Mac","Excited to start working with @mashable today! @JimRoepcke just can’t get enough of me.","","","","" -"450353627777863680","","","2014-03-30 19:27:26 +0000","Twitterrific","Siri seems really good these days. I don't remember the last time it was unavailable.","","","","" -"450031229404844032","450028556798525440","894911","2014-03-29 22:06:20 +0000","Twitterrific","@JimRoepcke So angry. http://t.co/hVbaPR3gR0","","","","https://twitter.com/tenderlove/status/449946466581094400" -"449970480053624833","","","2014-03-29 18:04:57 +0000","Twitterrific for Mac","Day 2 of bad Internet service from @Shawhelp. Hope that they sort this out soon. +"450723660525891584","450722126178181120","17088322","2014-03-31 19:57:49 +0000","Twitterrific for iOS","@HipwoodDigital @mashable @JimRoepcke Thanks Chris!","","","","" +"450723590485188608","","","2014-03-31 19:57:32 +0000","Twitterrific for iOS","RT @JimRoepcke: Very excited that @_sjs has joined @Mashable! Thrilled to have Sami on our mobile development team. :-)","450720443045912576","894911","2014-03-31 19:45:02 +0000","" +"450720224715608064","","","2014-03-31 19:44:10 +0000","Twitterrific for Mac","Excited to start working with @mashable today! @JimRoepcke just can’t get enough of me.","","","","" +"450353627777863680","","","2014-03-30 19:27:26 +0000","Twitterrific for iOS","Siri seems really good these days. I don't remember the last time it was unavailable.","","","","" +"450031229404844032","450028556798525440","894911","2014-03-29 22:06:20 +0000","Twitterrific for iOS","@JimRoepcke So angry. http://t.co/hVbaPR3gR0","","","","https://twitter.com/tenderlove/status/449946466581094400" +"449970480053624833","","","2014-03-29 18:04:57 +0000","Twitterrific for Mac","Day 2 of bad Internet service from @Shawhelp. Hope that they sort this out soon. I’M ADDICTED TO THE INTERWEBS","","","","" -"449947895949586432","","","2014-03-29 16:35:12 +0000","Twitterrific for Mac","I’m happy to hear others pronouncing the .io TLD as “ee-oh”. Check the weather on Forecastio. Find the app on Fndio. Hope it catches on.","","","","" -"449735545548066816","","","2014-03-29 02:31:24 +0000","Twitterrific","RT @JimRoepcke: @_sjs *deletes hockey tweet he was writing*","449729046008446976","894911","2014-03-29 02:05:34 +0000","" -"449728944527253505","","","2014-03-29 02:05:10 +0000","Twitterrific","Oh yeah. That's why I don't follow MG Siegler. #SPORTSBALL","","","","" -"449722279639801856","449699452895240192","14761655","2014-03-29 01:38:41 +0000","Twitterrific","@tenderlove Those seconds will add up to so many days and years for so many people. Thanks!","","","","" -"449721917541347328","","","2014-03-29 01:37:15 +0000","Twitterrific","RT @tenderlove: `gem install` before and after. Combines https://t.co/fXHJ6Ww1Zj and https://t.co/KF9ISlYT3J and gzip http://t.co/5ApJmuAcJT","449699452895240192","14761655","2014-03-29 00:07:59 +0000","https://github.com/rubygems/rubygems/pull/871,https://github.com/rubygems/rubygems/pull/869,https://twitter.com/tenderlove/status/449699452895240192/photo/1,https://github.com/rubygems/rubygems/pull/871,https://github.com/rubygems/rubygems/pull/869,https://twitter.com/tenderlove/status/449699452895240192/photo/1" -"449646688823562240","","","2014-03-28 20:38:19 +0000","Twitterrific for Mac","RT @fitzgen: #prolog in es6: https://t.co/u5pQQQEKOA","449641605461331968","182855710","2014-03-28 20:18:07 +0000","https://curiosity-driven.org/prolog-interpreter,https://curiosity-driven.org/prolog-interpreter" -"449632828817289216","","","2014-03-28 19:43:14 +0000","Twitterrific for Mac","So far I like Apple under @tim_cook and Microsoft under @satyanadella. I see good changes in both companies, especially with communication.","","","","" +"449947895949586432","","","2014-03-29 16:35:12 +0000","Twitterrific for Mac","I’m happy to hear others pronouncing the .io TLD as “ee-oh”. Check the weather on Forecastio. Find the app on Fndio. Hope it catches on.","","","","" +"449735545548066816","","","2014-03-29 02:31:24 +0000","Twitterrific for iOS","RT @JimRoepcke: @_sjs *deletes hockey tweet he was writing*","449729046008446976","894911","2014-03-29 02:05:34 +0000","" +"449728944527253505","","","2014-03-29 02:05:10 +0000","Twitterrific for iOS","Oh yeah. That's why I don't follow MG Siegler. #SPORTSBALL","","","","" +"449722279639801856","449699452895240192","14761655","2014-03-29 01:38:41 +0000","Twitterrific for iOS","@tenderlove Those seconds will add up to so many days and years for so many people. Thanks!","","","","" +"449721917541347328","","","2014-03-29 01:37:15 +0000","Twitterrific for iOS","RT @tenderlove: `gem install` before and after. Combines https://t.co/fXHJ6Ww1Zj and https://t.co/KF9ISlYT3J and gzip http://t.co/5ApJmuAcJT","449699452895240192","14761655","2014-03-29 00:07:59 +0000","https://github.com/rubygems/rubygems/pull/871,https://github.com/rubygems/rubygems/pull/869,https://twitter.com/tenderlove/status/449699452895240192/photo/1,https://github.com/rubygems/rubygems/pull/871,https://github.com/rubygems/rubygems/pull/869,https://twitter.com/tenderlove/status/449699452895240192/photo/1" +"449646688823562240","","","2014-03-28 20:38:19 +0000","Twitterrific for Mac","RT @fitzgen: #prolog in es6: https://t.co/u5pQQQEKOA","449641605461331968","182855710","2014-03-28 20:18:07 +0000","https://curiosity-driven.org/prolog-interpreter,https://curiosity-driven.org/prolog-interpreter" +"449632828817289216","","","2014-03-28 19:43:14 +0000","Twitterrific for Mac","So far I like Apple under @tim_cook and Microsoft under @satyanadella. I see good changes in both companies, especially with communication.","","","","" "449631763417927680","449631009542115328","46852648","2014-03-28 19:39:00 +0000","Twitter Web Client","@postmodern_mod3 @snarfmason I'll keep that in mind. Most of the time all I really need is ruby-build or ruby-install now that I think of it","","","","" -"449612328653185025","449612016336912384","108814849","2014-03-28 18:21:47 +0000","Twitterrific for Mac","@snarfmason @tef I’m seriously going to look at PostgreSQL one day. I swear.","","","","" -"449612105402953728","449610897967685632","16681276","2014-03-28 18:20:53 +0000","Twitterrific for Mac","@tef @snarfmason Yikes. Good to know, thanks.","","","","" -"449608068460863488","449606549153931264","108814849","2014-03-28 18:04:51 +0000","Twitterrific for Mac","@snarfmason This is the last day I’ll be working on this project, so if it doesn’t get solved I’ll bequeath the force_encoding hack.","","","","" -"449607899216502784","449606549153931264","108814849","2014-03-28 18:04:11 +0000","Twitterrific for Mac","@snarfmason Hmm. Server was using latin1 but connections were using utf8. Fixed that, still no dice. Thanks for the rewteet!","","","","" -"449607691422294017","449606088912957441","108814849","2014-03-28 18:03:21 +0000","Twitterrific for Mac","@snarfmason Oh god, yeah I forgot about that! Maybe that’s part of the reason I ditched it.","","","","" -"449605625857585155","449604548139573248","108814849","2014-03-28 17:55:09 +0000","Twitterrific for Mac","@snarfmason Yes, same on both. mysql2 is handing me ASCII, so that’s the problem. I set encoding: ‘utf8’ even. At least that eliminates AR.","","","","" -"449604503793180672","449604116759597056","108814849","2014-03-28 17:50:41 +0000","Twitterrific for Mac","@snarfmason I should check which encoding I get using mysql2 directly. After that I guess I’ll have to delve into ActiveRecord.","","","","" -"449604087042953216","449603802220339200","108814849","2014-03-28 17:49:02 +0000","Twitterrific for Mac","@snarfmason Also Encoding::UTF_8 😭","","","","" +"449612328653185025","449612016336912384","108814849","2014-03-28 18:21:47 +0000","Twitterrific for Mac","@snarfmason @tef I’m seriously going to look at PostgreSQL one day. I swear.","","","","" +"449612105402953728","449610897967685632","16681276","2014-03-28 18:20:53 +0000","Twitterrific for Mac","@tef @snarfmason Yikes. Good to know, thanks.","","","","" +"449608068460863488","449606549153931264","108814849","2014-03-28 18:04:51 +0000","Twitterrific for Mac","@snarfmason This is the last day I’ll be working on this project, so if it doesn’t get solved I’ll bequeath the force_encoding hack.","","","","" +"449607899216502784","449606549153931264","108814849","2014-03-28 18:04:11 +0000","Twitterrific for Mac","@snarfmason Hmm. Server was using latin1 but connections were using utf8. Fixed that, still no dice. Thanks for the rewteet!","","","","" +"449607691422294017","449606088912957441","108814849","2014-03-28 18:03:21 +0000","Twitterrific for Mac","@snarfmason Oh god, yeah I forgot about that! Maybe that’s part of the reason I ditched it.","","","","" +"449605625857585155","449604548139573248","108814849","2014-03-28 17:55:09 +0000","Twitterrific for Mac","@snarfmason Yes, same on both. mysql2 is handing me ASCII, so that’s the problem. I set encoding: ‘utf8’ even. At least that eliminates AR.","","","","" +"449604503793180672","449604116759597056","108814849","2014-03-28 17:50:41 +0000","Twitterrific for Mac","@snarfmason I should check which encoding I get using mysql2 directly. After that I guess I’ll have to delve into ActiveRecord.","","","","" +"449604087042953216","449603802220339200","108814849","2014-03-28 17:49:02 +0000","Twitterrific for Mac","@snarfmason Also Encoding::UTF_8 😭","","","","" "449603489723715584","449603227508420608","108814849","2014-03-28 17:46:39 +0000","Twitter Web Client","@snarfmason Encoding::UTF_8 :(","","","","" -"449602942484492288","","","2014-03-28 17:44:29 +0000","Twitterrific for Mac","Asked my encoding question on @StackOverflow http://t.co/v1Lq3zGlNY +"449602942484492288","","","2014-03-28 17:44:29 +0000","Twitterrific for Mac","Asked my encoding question on @StackOverflow http://t.co/v1Lq3zGlNY Appreciate any help!","","","","http://stackoverflow.com/questions/22719767/activerecord-in-rails-4-0-4-gives-ascii-8bit-with-mysql2-encoding-set-to-utf8" -"449602849706483713","","","2014-03-28 17:44:07 +0000","Twitterrific for Mac","RT @snarfmason: hahaha on being an rbenv user. RT @_sjs @snarfmason I am the 1%!","449602679770062848","108814849","2014-03-28 17:43:26 +0000","" -"449602809667674112","449602476367282176","108814849","2014-03-28 17:43:57 +0000","Twitterrific for Mac","@snarfmason I had some trouble with RVM, but never with rbenv. It works great and I can easily play around with JRuby, Rubinius, etc.","","","","" -"449600899296399361","","","2014-03-28 17:36:22 +0000","Twitterrific for Mac","Oh, and it works fine on my Mac but not on the production Linux server. Tried setting LANG and LC_ALL to “en_US.UTF-8”.","","","","" -"449600186172456960","449599691945025536","108814849","2014-03-28 17:33:32 +0000","Twitterrific for Mac","@snarfmason I am the 1%!","","","","" -"449600036460965888","449598764026974210","216808077","2014-03-28 17:32:56 +0000","Twitterrific for Mac","@Shawhelp Yeah I’ve been able to workaround it using a VPN, but it’s hardly practical to go switching DNS on every computer in the office.","","","","" -"449597776800649216","","","2014-03-28 17:23:57 +0000","Twitterrific for Mac","Rails 4.0.2 running on Ruby 2.0.0-p353 bulit from source (ruby-build + rbenv). MySQL 5.1.71. +"449602849706483713","","","2014-03-28 17:44:07 +0000","Twitterrific for Mac","RT @snarfmason: hahaha on being an rbenv user. RT @_sjs @snarfmason I am the 1%!","449602679770062848","108814849","2014-03-28 17:43:26 +0000","" +"449602809667674112","449602476367282176","108814849","2014-03-28 17:43:57 +0000","Twitterrific for Mac","@snarfmason I had some trouble with RVM, but never with rbenv. It works great and I can easily play around with JRuby, Rubinius, etc.","","","","" +"449600899296399361","","","2014-03-28 17:36:22 +0000","Twitterrific for Mac","Oh, and it works fine on my Mac but not on the production Linux server. Tried setting LANG and LC_ALL to “en_US.UTF-8”.","","","","" +"449600186172456960","449599691945025536","108814849","2014-03-28 17:33:32 +0000","Twitterrific for Mac","@snarfmason I am the 1%!","","","","" +"449600036460965888","449598764026974210","216808077","2014-03-28 17:32:56 +0000","Twitterrific for Mac","@Shawhelp Yeah I’ve been able to workaround it using a VPN, but it’s hardly practical to go switching DNS on every computer in the office.","","","","" +"449597776800649216","","","2014-03-28 17:23:57 +0000","Twitterrific for Mac","Rails 4.0.2 running on Ruby 2.0.0-p353 bulit from source (ruby-build + rbenv). MySQL 5.1.71. (Third time’s the charm!)","","","","" -"449597023453327360","","","2014-03-28 17:20:58 +0000","Twitterrific for Mac","MySQL tables are definitely using UTF-8. The data is correct and I can force_encoding(‘utf8’), but obviously shouldn’t have to.","","","","" -"449596787964141569","","","2014-03-28 17:20:02 +0000","Twitterrific for Mac","ActiveRecord is fetching string fields as ASCII, even though I’m using mysql2 with “utf8” encoding in database.yml. What else can I check?","","","","" -"449594367418712064","","31442511","2014-03-28 17:10:24 +0000","Twitterrific for Mac","@RogersHelps Some text and a confirmation button is fine, but it should be one tap to stop them. Look to MailChimp to see how it’s done.","","","","" -"449593907408424962","","31442511","2014-03-28 17:08:35 +0000","Twitterrific for Mac","@RogersHelps The “stop” link in promo texts shouldn’t tell me to sign in and mess w/ settings. It should stop them immediately, w/o sign-in.","","","","" -"449592729522028544","","","2014-03-28 17:03:54 +0000","Twitterrific for Mac","If you have a VPN then switch it on. Assuming the VPN itself is not affected by @ShawHelp’s current trouble, everything should work fine.","","","","" -"449592456288292864","","","2014-03-28 17:02:49 +0000","Twitterrific for Mac","Seems like @ShawHelp is having some trouble today. Some domains are slow, others unavailable entirely. At home and work.","","","","" -"449590364685365248","449581871324602368","23516090","2014-03-28 16:54:30 +0000","Twitterrific for Mac","@marcelosomers @marcoarment At a previous gig we could deploy a new web server with a few clicks. 10 mins later it’s up, added to the LB.","","","","" -"449590215913385984","449581871324602368","23516090","2014-03-28 16:53:55 +0000","Twitterrific for Mac","@marcelosomers @marcoarment And if you’re into automation, you can set ENV variables when creating new VMs. e.g. set the role for Chef.","","","","" +"449597023453327360","","","2014-03-28 17:20:58 +0000","Twitterrific for Mac","MySQL tables are definitely using UTF-8. The data is correct and I can force_encoding(‘utf8’), but obviously shouldn’t have to.","","","","" +"449596787964141569","","","2014-03-28 17:20:02 +0000","Twitterrific for Mac","ActiveRecord is fetching string fields as ASCII, even though I’m using mysql2 with “utf8” encoding in database.yml. What else can I check?","","","","" +"449594367418712064","","31442511","2014-03-28 17:10:24 +0000","Twitterrific for Mac","@RogersHelps Some text and a confirmation button is fine, but it should be one tap to stop them. Look to MailChimp to see how it’s done.","","","","" +"449593907408424962","","31442511","2014-03-28 17:08:35 +0000","Twitterrific for Mac","@RogersHelps The “stop” link in promo texts shouldn’t tell me to sign in and mess w/ settings. It should stop them immediately, w/o sign-in.","","","","" +"449592729522028544","","","2014-03-28 17:03:54 +0000","Twitterrific for Mac","If you have a VPN then switch it on. Assuming the VPN itself is not affected by @ShawHelp’s current trouble, everything should work fine.","","","","" +"449592456288292864","","","2014-03-28 17:02:49 +0000","Twitterrific for Mac","Seems like @ShawHelp is having some trouble today. Some domains are slow, others unavailable entirely. At home and work.","","","","" +"449590364685365248","449581871324602368","23516090","2014-03-28 16:54:30 +0000","Twitterrific for Mac","@marcelosomers @marcoarment At a previous gig we could deploy a new web server with a few clicks. 10 mins later it’s up, added to the LB.","","","","" +"449590215913385984","449581871324602368","23516090","2014-03-28 16:53:55 +0000","Twitterrific for Mac","@marcelosomers @marcoarment And if you’re into automation, you can set ENV variables when creating new VMs. e.g. set the role for Chef.","","","","" "449574681301876737","449574170913804288","1170518132","2014-03-28 15:52:11 +0000","Twitter Web Client","@feedbin Next time I'll check isup.me first, I promise.","","","","" "449574441828118528","449574170913804288","1170518132","2014-03-28 15:51:14 +0000","Twitter Web Client","@feedbin Sorry about that! Looks like I spoke prematurely. My ISP must be having issues because I have no trouble connecting via VPN.","","","","" -"449569980833488896","","1170518132","2014-03-28 15:33:30 +0000","Twitterrific","@feedbin You seem to have fallen over.","","","","" -"449411728153919489","449404910816096256","12712742","2014-03-28 05:04:40 +0000","Twitterrific","@zii You should go to a meet up. http://t.co/tIPiB62eqS","","","","http://i.imgur.com/zOSiG9T.gif" -"449405890391597056","449403424929746944","7125712","2014-03-28 04:41:28 +0000","Twitterrific","@gte Lots of time to learn how things work. Yeah that helps.","","","","" -"449345860577411072","449333242987302912","7125712","2014-03-28 00:42:56 +0000","Twitterrific for Mac","@gte It seems like more than that (knowing what esp/rsp is), but even if that’s it you prepare pretty fucking well then.","","","","" -"449308587676819456","449307041337589761","14761655","2014-03-27 22:14:49 +0000","Twitterrific for Mac","@tenderlove I can’t find the upvote arrow. Consider yourself upvoted! http://t.co/ruoA006FOT","","","","http://img.ly/yrwC" -"449308309854502912","","","2014-03-27 22:13:43 +0000","Twitterrific for Mac","RT @tenderlove: OP delivers: speed up `gem install` (12.8 seconds down to 8.1) https://t.co/KF9ISlYT3J","449307041337589761","14761655","2014-03-27 22:08:41 +0000","https://github.com/rubygems/rubygems/pull/869,https://github.com/rubygems/rubygems/pull/869" -"449305681057693696","","","2014-03-27 22:03:16 +0000","Twitterrific for Mac","RT @pcwalton: Servo passes Acid2 in my branch: http://t.co/1ICAgSMRXg","449299846873108480","88751152","2014-03-27 21:40:05 +0000","http://i.imgur.com/CsLkgLl.png,http://i.imgur.com/CsLkgLl.png" -"449289849002946560","","","2014-03-27 21:00:22 +0000","Twitterrific for Mac","RT @raganwald: @dhh All of my tweets should link to https://t.co/d00HmNziPD","449288017295835136","18137723","2014-03-27 20:53:05 +0000","https://en.wikipedia.org/wiki/Poe's_law,https://en.wikipedia.org/wiki/Poe's_law" -"449246088537452544","449243824569995264","14231571","2014-03-27 18:06:28 +0000","Twitterrific for Mac","@marcoarment Maybe ask @elephpant?","","","","" -"449231842831372289","","","2014-03-27 17:09:52 +0000","Twitterrific for Mac","RT @eallam: @marcoarment heroku is about an order of magnitude more expensive, for about 50% time savings","449226904068186112","46783","2014-03-27 16:50:14 +0000","" -"448952546984357888","448945718607093760","894911","2014-03-26 22:40:03 +0000","Twitterrific for Mac","@JimRoepcke I don’t think it’s a software issue. Either way you should probably contact Apple for support.","","","","" -"448897933820182528","","","2014-03-26 19:03:02 +0000","Twitterrific for Mac","ASCII delimited text is neat. But can I import it into Excel, Numbers, or Google Docs? And how does it look in a text editor?","","","","" -"448894677538729984","","","2014-03-26 18:50:05 +0000","Twitterrific for Mac","@icambron @raganwald But I like your perspective on it. I don’t understand how people see it as anything but a donation (even with rewards).","","","","" -"448894481706651648","","","2014-03-26 18:49:19 +0000","Twitterrific for Mac","@icambron @raganwald One difference is that people feel that if they don’t back the Kickstarter campaign then it may never exist at all.","","","","" -"448866855264862208","","","2014-03-26 16:59:32 +0000","Twitterrific","RT @Badger32d: Backing a kickstarter gives you precisely zero say in their business practices. It's a kickstarter, not an investment. Don't…","448860595912077312","74837444","2014-03-26 16:34:40 +0000","" -"448680163895566336","448615808688586752","11113","2014-03-26 04:37:41 +0000","Twitterrific","@mat @marcoarment It's a donation, not an investment. Everyone who backs a project and pays attention to what they're doing knows that.","","","","" -"448657408802320385","448653344051961856","108814849","2014-03-26 03:07:16 +0000","Twitterrific","@snarfmason Oh, yeah that sounds right. I was surprised by it when I started using OS X.","","","","" -"448642516447801344","","","2014-03-26 02:08:05 +0000","Twitterrific","RT @JimRoepcke: Tweaks looks extremely cool and useful. Thanks for open-sourcing it @chpwn! https://t.co/9q3DIa87Dk","448512746439852033","894911","2014-03-25 17:32:26 +0000","https://github.com/facebook/Tweaks,https://github.com/facebook/Tweaks" -"448641498901270528","448506823138496512","108814849","2014-03-26 02:04:03 +0000","Twitterrific","@snarfmason Default install is case-insensitive HFS+ for reads. Weird, but I use that all the time when doing tab completion in Finder, zsh.","","","","" -"448496200077934592","","","2014-03-25 16:26:41 +0000","Twitterrific","RT @dhh: ""Why your previous developer was terrible"", https://t.co/ziOLeQAqev, this applies to whole architectures as well. Great post.","448416945638227969","14561327","2014-03-25 11:11:45 +0000","https://medium.com/p/506a06ae35ea,https://medium.com/p/506a06ae35ea" -"448129390048595968","448125067205947392","18137723","2014-03-24 16:09:07 +0000","Twitterrific","@raganwald That could work. I bet there are some low bits that could be used to tag null values.","","","","" -"448124698451144705","448099535110144000","18137723","2014-03-24 15:50:28 +0000","Twitterrific","@raganwald #define NULL 0","","","","" -"447233460088750080","447230132629942272","8549992","2014-03-22 04:49:00 +0000","Twitterrific","@pdenya The requests you get are insane, even without a domain hooked up. People just scan every IP trying their bag of exploits.","","","","" -"447114497904226304","447112326718963712","14231571","2014-03-21 20:56:17 +0000","Twitterrific for Mac","@marcoarment If Linode’s CPU priority numbers mean anything, their 16 GB VMs should perform at least as good as that E3.","","","","" -"447055888117813248","","","2014-03-21 17:03:24 +0000","Twitterrific for Mac","“first to bring gradual typing to a “real, industrial strength” language.” +"449569980833488896","","1170518132","2014-03-28 15:33:30 +0000","Twitterrific for iOS","@feedbin You seem to have fallen over.","","","","" +"449411728153919489","449404910816096256","12712742","2014-03-28 05:04:40 +0000","Twitterrific for iOS","@zii You should go to a meet up. http://t.co/tIPiB62eqS","","","","http://i.imgur.com/zOSiG9T.gif" +"449405890391597056","449403424929746944","7125712","2014-03-28 04:41:28 +0000","Twitterrific for iOS","@gte Lots of time to learn how things work. Yeah that helps.","","","","" +"449345860577411072","449333242987302912","7125712","2014-03-28 00:42:56 +0000","Twitterrific for Mac","@gte It seems like more than that (knowing what esp/rsp is), but even if that’s it you prepare pretty fucking well then.","","","","" +"449308587676819456","449307041337589761","14761655","2014-03-27 22:14:49 +0000","Twitterrific for Mac","@tenderlove I can’t find the upvote arrow. Consider yourself upvoted! http://t.co/ruoA006FOT","","","","http://img.ly/yrwC" +"449308309854502912","","","2014-03-27 22:13:43 +0000","Twitterrific for Mac","RT @tenderlove: OP delivers: speed up `gem install` (12.8 seconds down to 8.1) https://t.co/KF9ISlYT3J","449307041337589761","14761655","2014-03-27 22:08:41 +0000","https://github.com/rubygems/rubygems/pull/869,https://github.com/rubygems/rubygems/pull/869" +"449305681057693696","","","2014-03-27 22:03:16 +0000","Twitterrific for Mac","RT @pcwalton: Servo passes Acid2 in my branch: http://t.co/1ICAgSMRXg","449299846873108480","88751152","2014-03-27 21:40:05 +0000","http://i.imgur.com/CsLkgLl.png,http://i.imgur.com/CsLkgLl.png" +"449289849002946560","","","2014-03-27 21:00:22 +0000","Twitterrific for Mac","RT @raganwald: @dhh All of my tweets should link to https://t.co/d00HmNziPD","449288017295835136","18137723","2014-03-27 20:53:05 +0000","https://en.wikipedia.org/wiki/Poe's_law,https://en.wikipedia.org/wiki/Poe's_law" +"449246088537452544","449243824569995264","14231571","2014-03-27 18:06:28 +0000","Twitterrific for Mac","@marcoarment Maybe ask @elephpant?","","","","" +"448952546984357888","448945718607093760","894911","2014-03-26 22:40:03 +0000","Twitterrific for Mac","@JimRoepcke I don’t think it’s a software issue. Either way you should probably contact Apple for support.","","","","" +"448897933820182528","","","2014-03-26 19:03:02 +0000","Twitterrific for Mac","ASCII delimited text is neat. But can I import it into Excel, Numbers, or Google Docs? And how does it look in a text editor?","","","","" +"448894677538729984","","","2014-03-26 18:50:05 +0000","Twitterrific for Mac","@icambron @raganwald But I like your perspective on it. I don’t understand how people see it as anything but a donation (even with rewards).","","","","" +"448894481706651648","","","2014-03-26 18:49:19 +0000","Twitterrific for Mac","@icambron @raganwald One difference is that people feel that if they don’t back the Kickstarter campaign then it may never exist at all.","","","","" +"448866855264862208","","","2014-03-26 16:59:32 +0000","Twitterrific for iOS","RT @Badger32d: Backing a kickstarter gives you precisely zero say in their business practices. It's a kickstarter, not an investment. Don't…","448860595912077312","74837444","2014-03-26 16:34:40 +0000","" +"448680163895566336","448615808688586752","11113","2014-03-26 04:37:41 +0000","Twitterrific for iOS","@mat @marcoarment It's a donation, not an investment. Everyone who backs a project and pays attention to what they're doing knows that.","","","","" +"448657408802320385","448653344051961856","108814849","2014-03-26 03:07:16 +0000","Twitterrific for iOS","@snarfmason Oh, yeah that sounds right. I was surprised by it when I started using OS X.","","","","" +"448642516447801344","","","2014-03-26 02:08:05 +0000","Twitterrific for iOS","RT @JimRoepcke: Tweaks looks extremely cool and useful. Thanks for open-sourcing it @chpwn! https://t.co/9q3DIa87Dk","448512746439852033","894911","2014-03-25 17:32:26 +0000","https://github.com/facebook/Tweaks,https://github.com/facebook/Tweaks" +"448641498901270528","448506823138496512","108814849","2014-03-26 02:04:03 +0000","Twitterrific for iOS","@snarfmason Default install is case-insensitive HFS+ for reads. Weird, but I use that all the time when doing tab completion in Finder, zsh.","","","","" +"448496200077934592","","","2014-03-25 16:26:41 +0000","Twitterrific for iOS","RT @dhh: ""Why your previous developer was terrible"", https://t.co/ziOLeQAqev, this applies to whole architectures as well. Great post.","448416945638227969","14561327","2014-03-25 11:11:45 +0000","https://medium.com/p/506a06ae35ea,https://medium.com/p/506a06ae35ea" +"448129390048595968","448125067205947392","18137723","2014-03-24 16:09:07 +0000","Twitterrific for iOS","@raganwald That could work. I bet there are some low bits that could be used to tag null values.","","","","" +"448124698451144705","448099535110144000","18137723","2014-03-24 15:50:28 +0000","Twitterrific for iOS","@raganwald #define NULL 0","","","","" +"447233460088750080","447230132629942272","8549992","2014-03-22 04:49:00 +0000","Twitterrific for iOS","@pdenya The requests you get are insane, even without a domain hooked up. People just scan every IP trying their bag of exploits.","","","","" +"447114497904226304","447112326718963712","14231571","2014-03-21 20:56:17 +0000","Twitterrific for Mac","@marcoarment If Linode’s CPU priority numbers mean anything, their 16 GB VMs should perform at least as good as that E3.","","","","" +"447055888117813248","","","2014-03-21 17:03:24 +0000","Twitterrific for Mac","“first to bring gradual typing to a “real, industrial strength” language.” Suddenly, all 4 Common Lisp developers cried out in agony.","","","","" -"447053819147329536","","","2014-03-21 16:55:11 +0000","Twitterrific for Mac","RT @stevenf: Is the whole exercise moot if I’m still pushing all my passwords and a copy of my entire hard drive up to a mystery server?","447039574120742912","733813","2014-03-21 15:58:34 +0000","" -"446921095594000384","","","2014-03-21 08:07:47 +0000","Twitterrific","RT @rstacruz: TIL Dropbox is a terrible place to store Git repositories.","446822189413572608","9513832","2014-03-21 01:34:46 +0000","" -"446920674435555329","446880057177284608","747153","2014-03-21 08:06:06 +0000","Twitterrific","@jackerhack @rstacruz I get sync conflicts all the time with 2-3 machines involved. Separate projects dir for each machine is my workaround.","","","","" -"446920346361294848","446822189413572608","9513832","2014-03-21 08:04:48 +0000","Twitterrific","@rstacruz ""Oh, those files you git added? They're un-added now."" +"446921095594000384","","","2014-03-21 08:07:47 +0000","Twitterrific for iOS","RT @rstacruz: TIL Dropbox is a terrible place to store Git repositories.","446822189413572608","9513832","2014-03-21 01:34:46 +0000","" +"446920674435555329","446880057177284608","747153","2014-03-21 08:06:06 +0000","Twitterrific for iOS","@jackerhack @rstacruz I get sync conflicts all the time with 2-3 machines involved. Separate projects dir for each machine is my workaround.","","","","" +"446920346361294848","446822189413572608","9513832","2014-03-21 08:04:48 +0000","Twitterrific for iOS","@rstacruz ""Oh, those files you git added? They're un-added now."" .git/index (Sami's conflicted copy 2014-03-20 (1))","","","","" -"446793061314486272","446791003697991680","108814849","2014-03-20 23:39:01 +0000","Twitterrific for Mac","@snarfmason http://t.co/uyeUhv5pOk","","","","http://facefuckbook.com" -"446789672740478976","446787605862948864","108814849","2014-03-20 23:25:33 +0000","Twitterrific for Mac","@snarfmason Fuckbook? Facefuck? Probably already porn sites.","","","","" -"446759594904154112","446749202580660224","15292261","2014-03-20 21:26:02 +0000","Twitterrific for Mac","@gregbate @thedailybeast Measles, yellow fever, deaths caused by the flu, … 😔","","","","" -"446719239873785857","446718139095470080","29255412","2014-03-20 18:45:41 +0000","Twitterrific for Mac","@tjholowaychuk So, probably not by default. But should be possible.","","","","" -"446719140946923520","446718139095470080","29255412","2014-03-20 18:45:17 +0000","Twitterrific for Mac","@tjholowaychuk Seems like eslint might be up for the task since all rules are plugins. Unsure what’s involved though.","","","","" -"446713058174332928","446712049519689728","8549992","2014-03-20 18:21:07 +0000","Twitterrific for Mac","@pdenya lol","","","","" -"446713000401965056","","","2014-03-20 18:20:53 +0000","Twitterrific for Mac","RT @pdenya: @_sjs that's hilarious. I'd retweet it if my name wasn't paul..","446712049519689728","8549992","2014-03-20 18:17:06 +0000","" -"446711107374153728","","","2014-03-20 18:13:22 +0000","Twitterrific for Mac","OH: alert('Failed. Tell Paul.’);","","","","" -"446695996697763840","","","2014-03-20 17:13:19 +0000","Twitterrific for Mac","RT @hdediu: twitter","773554511","14172679","2008-03-18 21:26:55 +0000","" -"446695468496457728","","","2014-03-20 17:11:13 +0000","Twitterrific for Mac","RT @jfbastien: Everyone thought that Leslie Lamport had a Turing award. Consensus was just reached, he indeed does have a Turing award.","446480224469778432","29315623","2014-03-20 02:55:55 +0000","" -"446513014913519616","","","2014-03-20 05:06:13 +0000","Twitterrific","Everything above my DNS and host, that is.","","","","" -"446509510211817472","","","2014-03-20 04:52:17 +0000","Twitterrific for Mac","Got my site loading about as fast as possible while still using a web font, Font Awesome, some scripts, styles, etc. Inline CSS is a win.","","","","" -"446138274516463616","445995343000641536","2172691","2014-03-19 04:17:08 +0000","Twitterrific","@Whatleydude @monkbent 2014 is the year of the Windows smartphone! http://t.co/RrSUON3ifi","","","","http://yearofthelinuxdesktop.tumblr.com" -"446136955441405952","","","2014-03-19 04:11:53 +0000","Twitterrific","RT @siracusa: @wilshipley Why no alt text button for people who read by tapping links to the non-mobile site in tweets on iOS? Drives me cr…","446117673039331328","636923","2014-03-19 02:55:16 +0000","" -"445693307532754944","445692458383331330","5637652","2014-03-17 22:48:59 +0000","Twitterrific for Mac","@codinghorror “Only $9.99. That’s less than ten bucks!” ಠ_ಠ","","","","" -"445627446360952832","445625181558431744","14761655","2014-03-17 18:27:17 +0000","Twitterrific for Mac","@tenderlove Another reason to use Underscore/Lo-dash. http://t.co/z5B6DqMfhB","","","","http://lodash.com/docs#sortBy" -"445613596668481536","445613436731281408","14761655","2014-03-17 17:32:15 +0000","Twitterrific for Mac","@tenderlove It’s not intuitive. It’s terrible.","","","","" -"445613530062938112","445612559379361792","14761655","2014-03-17 17:31:59 +0000","Twitterrific for Mac","@tenderlove Otherwise, `this` is global/window by default. In strict mode `this` is undefined. (maybe null?)","","","","" -"445613231222960128","445612559379361792","14761655","2014-03-17 17:30:48 +0000","Twitterrific for Mac","@tenderlove `this` is dynamically bound for every function call. If the function is bound or invoked via an object then `this` is the obj.","","","","" -"445292148754112512","445278332653813760","14761655","2014-03-16 20:14:56 +0000","Twitterrific","@tenderlove Ninetenelevendo","","","","" -"445039827763728384","445032177164902400","7125712","2014-03-16 03:32:18 +0000","Twitterrific","@gte @monkbent Either one alone is lifeless. Either one being terrible ruins it. Without assuming a minimum quality it's a crapshoot.","","","","" -"445037013121499136","445032177164902400","7125712","2014-03-16 03:21:06 +0000","Twitterrific","@gte @monkbent Most of us would take Windows or Android over nothing. Assuming some competence I can see hardware at #1. Hard to cram in 140","","","","" -"445035271289982977","445032177164902400","7125712","2014-03-16 03:14:11 +0000","Twitterrific","@gte @monkbent Yeah, things move fast. BlackBerry aged quickly after the iPhone came out. iOS today leaves older versions way behind.","","","","" -"445031815573549056","445007578779885568","7125712","2014-03-16 03:00:27 +0000","Twitterrific","@gte @monkbent If the software meets a minimum level of usefulness then hardware trumps software. If not then it may be software.","","","","" -"444996179747557376","444985243640922112","48093353","2014-03-16 00:38:51 +0000","Twitterrific","@sachasayan @marcoarment But there's still a distinction. Stagnation is different.","","","","" -"444996042019192832","444985243640922112","48093353","2014-03-16 00:38:18 +0000","Twitterrific","@sachasayan @marcoarment Windows suffered, and the company paid a hefty opportunity cost.","","","","" -"444969539516645376","444953915860070400","48093353","2014-03-15 22:53:00 +0000","Twitterrific","@sachasayan @marcoarment They also tried to compete with the iPad and MacBook with Surface.","","","","" -"444870007151796224","444856135489556481","40273","2014-03-15 16:17:29 +0000","Twitterrific","@monkbent @drance I don't think many use calendars much or at all. Same for contacts. Contacts probably tied to email in most cases.","","","","" -"444869828222799872","444856135489556481","40273","2014-03-15 16:16:46 +0000","Twitterrific","@monkbent @drance The idea that everyone uses Google services is wrong outside geek circles. Many still on Yahoo and Hotmail.","","","","" -"444869250591637504","444852196757471233","14231571","2014-03-15 16:14:29 +0000","Twitterrific","@marcoarment I did the same. The microblogging part didn't take off, and if I cared about the other stuff I guess I'd be on Facebook.","","","","" -"444868725234089985","","","2014-03-15 16:12:24 +0000","Twitterrific","RT @jaffathecake: Whoa, look how much promises improve testing with Mocha https://t.co/QwphSu49SR http://t.co/MqGLd7AhoE","444409258986070016","15390783","2014-03-14 09:46:38 +0000","https://github.com/domenic/mocha/blob/gh-pages-promises/index.md#asynchronous-code,https://twitter.com/jaffathecake/status/444409258986070016/photo/1,https://github.com/domenic/mocha/blob/gh-pages-promises/index.md#asynchronous-code,https://twitter.com/jaffathecake/status/444409258986070016/photo/1" -"444676540891009024","","","2014-03-15 03:28:43 +0000","Twitterrific","RT @DFstyleguide: Woz thinks the game is Yahtzee.","444666228603228160","840829712","2014-03-15 02:47:45 +0000","" -"444620442536402944","444618008493711362","232701963","2014-03-14 23:45:48 +0000","Twitterrific for Mac","@fyrite Yum!","","","","" -"444615585381367810","444611594173947904","4777951","2014-03-14 23:26:30 +0000","Twitterrific for Mac","@marco_org Although, I’m not sure how useful it’d be for those of us outside the USA. e.g. Amazon’s selection is lacking quite a bit.","","","","" -"444611594173947904","444609991216234496","477898117","2014-03-14 23:10:39 +0000","Twitterrific for Mac","@marco_org 👍 to the store idea.","","","","" -"444598824451862528","444598760866213889","108814849","2014-03-14 22:19:54 +0000","Twitterrific for Mac","@snarfmason Heh, no problem.","","","","" -"444598627801915393","444598056340553728","108814849","2014-03-14 22:19:07 +0000","Twitterrific for Mac","@snarfmason Now I’m curious wtf you are up to. http://t.co/dsEU1LOdzc","","","","http://img.ly/yk2w" -"444597552336220161","444596926365696000","108814849","2014-03-14 22:14:51 +0000","Twitterrific for Mac","@snarfmason Good luck!","","","","" -"444596761303068672","444596112687513600","108814849","2014-03-14 22:11:42 +0000","Twitterrific for Mac","@snarfmason You’re a maniac! You deserve what you get ;-) +"446793061314486272","446791003697991680","108814849","2014-03-20 23:39:01 +0000","Twitterrific for Mac","@snarfmason http://t.co/uyeUhv5pOk","","","","http://facefuckbook.com" +"446789672740478976","446787605862948864","108814849","2014-03-20 23:25:33 +0000","Twitterrific for Mac","@snarfmason Fuckbook? Facefuck? Probably already porn sites.","","","","" +"446759594904154112","446749202580660224","15292261","2014-03-20 21:26:02 +0000","Twitterrific for Mac","@gregbate @thedailybeast Measles, yellow fever, deaths caused by the flu, … 😔","","","","" +"446719239873785857","446718139095470080","29255412","2014-03-20 18:45:41 +0000","Twitterrific for Mac","@tjholowaychuk So, probably not by default. But should be possible.","","","","" +"446719140946923520","446718139095470080","29255412","2014-03-20 18:45:17 +0000","Twitterrific for Mac","@tjholowaychuk Seems like eslint might be up for the task since all rules are plugins. Unsure what’s involved though.","","","","" +"446713058174332928","446712049519689728","8549992","2014-03-20 18:21:07 +0000","Twitterrific for Mac","@pdenya lol","","","","" +"446713000401965056","","","2014-03-20 18:20:53 +0000","Twitterrific for Mac","RT @pdenya: @_sjs that's hilarious. I'd retweet it if my name wasn't paul..","446712049519689728","8549992","2014-03-20 18:17:06 +0000","" +"446711107374153728","","","2014-03-20 18:13:22 +0000","Twitterrific for Mac","OH: alert('Failed. Tell Paul.’);","","","","" +"446695996697763840","","","2014-03-20 17:13:19 +0000","Twitterrific for Mac","RT @hdediu: twitter","773554511","14172679","2008-03-18 21:26:55 +0000","" +"446695468496457728","","","2014-03-20 17:11:13 +0000","Twitterrific for Mac","RT @jfbastien: Everyone thought that Leslie Lamport had a Turing award. Consensus was just reached, he indeed does have a Turing award.","446480224469778432","29315623","2014-03-20 02:55:55 +0000","" +"446513014913519616","","","2014-03-20 05:06:13 +0000","Twitterrific for iOS","Everything above my DNS and host, that is.","","","","" +"446509510211817472","","","2014-03-20 04:52:17 +0000","Twitterrific for Mac","Got my site loading about as fast as possible while still using a web font, Font Awesome, some scripts, styles, etc. Inline CSS is a win.","","","","" +"446138274516463616","445995343000641536","2172691","2014-03-19 04:17:08 +0000","Twitterrific for iOS","@Whatleydude @monkbent 2014 is the year of the Windows smartphone! http://t.co/RrSUON3ifi","","","","http://yearofthelinuxdesktop.tumblr.com" +"446136955441405952","","","2014-03-19 04:11:53 +0000","Twitterrific for iOS","RT @siracusa: @wilshipley Why no alt text button for people who read by tapping links to the non-mobile site in tweets on iOS? Drives me cr…","446117673039331328","636923","2014-03-19 02:55:16 +0000","" +"445693307532754944","445692458383331330","5637652","2014-03-17 22:48:59 +0000","Twitterrific for Mac","@codinghorror “Only $9.99. That’s less than ten bucks!” ಠ_ಠ","","","","" +"445627446360952832","445625181558431744","14761655","2014-03-17 18:27:17 +0000","Twitterrific for Mac","@tenderlove Another reason to use Underscore/Lo-dash. http://t.co/z5B6DqMfhB","","","","http://lodash.com/docs#sortBy" +"445613596668481536","445613436731281408","14761655","2014-03-17 17:32:15 +0000","Twitterrific for Mac","@tenderlove It’s not intuitive. It’s terrible.","","","","" +"445613530062938112","445612559379361792","14761655","2014-03-17 17:31:59 +0000","Twitterrific for Mac","@tenderlove Otherwise, `this` is global/window by default. In strict mode `this` is undefined. (maybe null?)","","","","" +"445613231222960128","445612559379361792","14761655","2014-03-17 17:30:48 +0000","Twitterrific for Mac","@tenderlove `this` is dynamically bound for every function call. If the function is bound or invoked via an object then `this` is the obj.","","","","" +"445292148754112512","445278332653813760","14761655","2014-03-16 20:14:56 +0000","Twitterrific for iOS","@tenderlove Ninetenelevendo","","","","" +"445039827763728384","445032177164902400","7125712","2014-03-16 03:32:18 +0000","Twitterrific for iOS","@gte @monkbent Either one alone is lifeless. Either one being terrible ruins it. Without assuming a minimum quality it's a crapshoot.","","","","" +"445037013121499136","445032177164902400","7125712","2014-03-16 03:21:06 +0000","Twitterrific for iOS","@gte @monkbent Most of us would take Windows or Android over nothing. Assuming some competence I can see hardware at #1. Hard to cram in 140","","","","" +"445035271289982977","445032177164902400","7125712","2014-03-16 03:14:11 +0000","Twitterrific for iOS","@gte @monkbent Yeah, things move fast. BlackBerry aged quickly after the iPhone came out. iOS today leaves older versions way behind.","","","","" +"445031815573549056","445007578779885568","7125712","2014-03-16 03:00:27 +0000","Twitterrific for iOS","@gte @monkbent If the software meets a minimum level of usefulness then hardware trumps software. If not then it may be software.","","","","" +"444996179747557376","444985243640922112","48093353","2014-03-16 00:38:51 +0000","Twitterrific for iOS","@sachasayan @marcoarment But there's still a distinction. Stagnation is different.","","","","" +"444996042019192832","444985243640922112","48093353","2014-03-16 00:38:18 +0000","Twitterrific for iOS","@sachasayan @marcoarment Windows suffered, and the company paid a hefty opportunity cost.","","","","" +"444969539516645376","444953915860070400","48093353","2014-03-15 22:53:00 +0000","Twitterrific for iOS","@sachasayan @marcoarment They also tried to compete with the iPad and MacBook with Surface.","","","","" +"444870007151796224","444856135489556481","40273","2014-03-15 16:17:29 +0000","Twitterrific for iOS","@monkbent @drance I don't think many use calendars much or at all. Same for contacts. Contacts probably tied to email in most cases.","","","","" +"444869828222799872","444856135489556481","40273","2014-03-15 16:16:46 +0000","Twitterrific for iOS","@monkbent @drance The idea that everyone uses Google services is wrong outside geek circles. Many still on Yahoo and Hotmail.","","","","" +"444869250591637504","444852196757471233","14231571","2014-03-15 16:14:29 +0000","Twitterrific for iOS","@marcoarment I did the same. The microblogging part didn't take off, and if I cared about the other stuff I guess I'd be on Facebook.","","","","" +"444868725234089985","","","2014-03-15 16:12:24 +0000","Twitterrific for iOS","RT @jaffathecake: Whoa, look how much promises improve testing with Mocha https://t.co/QwphSu49SR http://t.co/MqGLd7AhoE","444409258986070016","15390783","2014-03-14 09:46:38 +0000","https://github.com/domenic/mocha/blob/gh-pages-promises/index.md#asynchronous-code,https://twitter.com/jaffathecake/status/444409258986070016/photo/1,https://github.com/domenic/mocha/blob/gh-pages-promises/index.md#asynchronous-code,https://twitter.com/jaffathecake/status/444409258986070016/photo/1" +"444676540891009024","","","2014-03-15 03:28:43 +0000","Twitterrific for iOS","RT @DFstyleguide: Woz thinks the game is Yahtzee.","444666228603228160","840829712","2014-03-15 02:47:45 +0000","" +"444647986270699520","","","2014-03-15 01:35:15 +0000","Twitterrific for iOS","RT @JoshHelfferich: Hipsters at SXSW professing to love bands that don't exist: http://t.co/xBJdcsdAuz","444612377254719488","563200400","2014-03-14 23:13:45 +0000","http://www.youtube.com/watch?v=frjaQ17yAww,http://www.youtube.com/watch?v=frjaQ17yAww" +"444620442536402944","444618008493711362","232701963","2014-03-14 23:45:48 +0000","Twitterrific for Mac","@fyrite Yum!","","","","" +"444615585381367810","444611594173947904","4777951","2014-03-14 23:26:30 +0000","Twitterrific for Mac","@marco_org Although, I’m not sure how useful it’d be for those of us outside the USA. e.g. Amazon’s selection is lacking quite a bit.","","","","" +"444611594173947904","444609991216234496","477898117","2014-03-14 23:10:39 +0000","Twitterrific for Mac","@marco_org 👍 to the store idea.","","","","" +"444598824451862528","444598760866213889","108814849","2014-03-14 22:19:54 +0000","Twitterrific for Mac","@snarfmason Heh, no problem.","","","","" +"444598627801915393","444598056340553728","108814849","2014-03-14 22:19:07 +0000","Twitterrific for Mac","@snarfmason Now I’m curious wtf you are up to. http://t.co/dsEU1LOdzc","","","","http://img.ly/yk2w" +"444597552336220161","444596926365696000","108814849","2014-03-14 22:14:51 +0000","Twitterrific for Mac","@snarfmason Good luck!","","","","" +"444596761303068672","444596112687513600","108814849","2014-03-14 22:11:42 +0000","Twitterrific for Mac","@snarfmason You’re a maniac! You deserve what you get ;-) What about ulimit -n 16000, or however big you need it?","","","","" -"444595480140337153","444594451978002432","108814849","2014-03-14 22:06:37 +0000","Twitterrific for Mac","@snarfmason Where is stderr going? This might help: http://t.co/Wt33lXloqR","","","","http://nodejs.org/api/process.html#process_event_uncaughtexception" -"444555095468826625","444554786138902528","108814849","2014-03-14 19:26:08 +0000","Twitterrific for Mac","@snarfmason @phillipsbeer Totally! I had one last night and that was enough for a weekday.","","","","" -"444540495096578048","","","2014-03-14 18:28:07 +0000","Twitterrific for Mac","I was a little worried when I saw that @phillipsbeer’s Double Dragon is 8.2%. But, of course, it is delicious. Like all of their brews.","","","","" -"444529761474187264","","","2014-03-14 17:45:28 +0000","Twitterrific for Mac","Shocking! RT @arstechnica Google and Microsoft are out to stop dual-boot Windows/Android devices http://t.co/yPSbOmw64d by @RonAmadeo","","","","http://ars.to/1giBIpc" -"444510510885531648","444505532427014144","232701963","2014-03-14 16:28:59 +0000","Twitterrific for Mac","@fyrite Woah, nice use of MT. I only learned what that was yesterday. You’re a twitter pro!","","","","" -"444504163787890688","","","2014-03-14 16:03:45 +0000","Twitterrific for Mac","RT @jc: In celebration of Pi day, here’s the most accurate pie chart ever. http://t.co/Av0Sv27af7","444452635538497536","877421","2014-03-14 12:39:00 +0000","https://twitter.com/jc/status/444452635538497536/photo/1,https://twitter.com/jc/status/444452635538497536/photo/1" -"444327658009010177","","","2014-03-14 04:22:23 +0000","Twitterrific","Hmmm. Someone tried to reset my Disqus password this morning, and now my reddit password. sjs is popular.","","","","" -"444184072223330304","","","2014-03-13 18:51:50 +0000","Twitterrific","RT @CompSciFact: ""Lisp isn't a language, it's a building material."" -- Alan Kay.","444181273696010240","220145170","2014-03-13 18:40:42 +0000","" -"443976439612702720","","","2014-03-13 05:06:46 +0000","Twitterrific","RT @tenderlove: Calling `send` is basically the Bill O'Reilly’s ""WE’LL DO IT LIVE"" of Ruby code.","443973147029565440","14761655","2014-03-13 04:53:41 +0000","" -"443863625069899777","443859746253463553","14561327","2014-03-12 21:38:29 +0000","Twitterrific for Mac","@dhh @tenderlove What @dhh said, but not all the time. And only when I would otherwise be working at home, alone.","","","","" -"443850659029200896","","","2014-03-12 20:46:58 +0000","Twitterrific for Mac","RT @raganwald: It’s common to design around objects (nouns) and functions (verbs). That’s great, but I’d like to see more adjectives and ad…","443848691065958400","18137723","2014-03-12 20:39:08 +0000","" -"443808470035214336","","","2014-03-12 17:59:19 +0000","Twitterrific","So I traded working buttons in Music on iOS 7.0 for broken buttons with shapes in 7.1? I don't even care about button shapes. Yay.","","","","" -"443802267737538560","","","2014-03-12 17:34:40 +0000","Twitterrific for Mac","RT @dhh: Corruption of the NSA seems so thorough that its hard to imagine anything left to salvage in that agency. Abolish it all.","443785585820700672","14561327","2014-03-12 16:28:23 +0000","" +"444595480140337153","444594451978002432","108814849","2014-03-14 22:06:37 +0000","Twitterrific for Mac","@snarfmason Where is stderr going? This might help: http://t.co/Wt33lXloqR","","","","http://nodejs.org/api/process.html#process_event_uncaughtexception" +"444555095468826625","444554786138902528","108814849","2014-03-14 19:26:08 +0000","Twitterrific for Mac","@snarfmason @phillipsbeer Totally! I had one last night and that was enough for a weekday.","","","","" +"444540495096578048","","","2014-03-14 18:28:07 +0000","Twitterrific for Mac","I was a little worried when I saw that @phillipsbeer’s Double Dragon is 8.2%. But, of course, it is delicious. Like all of their brews.","","","","" +"444529761474187264","","","2014-03-14 17:45:28 +0000","Twitterrific for Mac","Shocking! RT @arstechnica Google and Microsoft are out to stop dual-boot Windows/Android devices http://t.co/yPSbOmw64d by @RonAmadeo","","","","http://ars.to/1giBIpc" +"444510510885531648","444505532427014144","232701963","2014-03-14 16:28:59 +0000","Twitterrific for Mac","@fyrite Woah, nice use of MT. I only learned what that was yesterday. You’re a twitter pro!","","","","" +"444504163787890688","","","2014-03-14 16:03:45 +0000","Twitterrific for Mac","RT @jc: In celebration of Pi day, here’s the most accurate pie chart ever. http://t.co/Av0Sv27af7","444452635538497536","877421","2014-03-14 12:39:00 +0000","https://twitter.com/jc/status/444452635538497536/photo/1,https://twitter.com/jc/status/444452635538497536/photo/1" +"444327658009010177","","","2014-03-14 04:22:23 +0000","Twitterrific for iOS","Hmmm. Someone tried to reset my Disqus password this morning, and now my reddit password. sjs is popular.","","","","" +"444184072223330304","","","2014-03-13 18:51:50 +0000","Twitterrific for iOS","RT @CompSciFact: ""Lisp isn't a language, it's a building material."" -- Alan Kay.","444181273696010240","220145170","2014-03-13 18:40:42 +0000","" +"443976439612702720","","","2014-03-13 05:06:46 +0000","Twitterrific for iOS","RT @tenderlove: Calling `send` is basically the Bill O'Reilly’s ""WE’LL DO IT LIVE"" of Ruby code.","443973147029565440","14761655","2014-03-13 04:53:41 +0000","" +"443863625069899777","443859746253463553","14561327","2014-03-12 21:38:29 +0000","Twitterrific for Mac","@dhh @tenderlove What @dhh said, but not all the time. And only when I would otherwise be working at home, alone.","","","","" +"443850659029200896","","","2014-03-12 20:46:58 +0000","Twitterrific for Mac","RT @raganwald: It’s common to design around objects (nouns) and functions (verbs). That’s great, but I’d like to see more adjectives and ad…","443848691065958400","18137723","2014-03-12 20:39:08 +0000","" +"443808470035214336","","","2014-03-12 17:59:19 +0000","Twitterrific for iOS","So I traded working buttons in Music on iOS 7.0 for broken buttons with shapes in 7.1? I don't even care about button shapes. Yay.","","","","" +"443802267737538560","","","2014-03-12 17:34:40 +0000","Twitterrific for Mac","RT @dhh: Corruption of the NSA seems so thorough that its hard to imagine anything left to salvage in that agency. Abolish it all.","443785585820700672","14561327","2014-03-12 16:28:23 +0000","" "443783114666414080","443781631669592065","108814849","2014-03-12 16:18:34 +0000","Twitter Web Client","@snarfmason I hear ya. People treat it like public infrastructure. Myself included.","","","","" "443782771740123137","443781587683901440","15292261","2014-03-12 16:17:12 +0000","Twitter Web Client","@gregbate Yeah, I got it the other day. It looks promising for a beta! Need an invite?","","","","" -"443780982093533185","","","2014-03-12 16:10:05 +0000","Twitterrific","RT @snarfmason: Man, people sure get touchy when I say bad things about github. I'm sorry everyone, github is the bestest and I love it's a…","443779033071751168","108814849","2014-03-12 16:02:21 +0000","" -"443780958118899712","443779033071751168","108814849","2014-03-12 16:10:00 +0000","Twitterrific","@snarfmason Bow to the octocat!","","","","" +"443780982093533185","","","2014-03-12 16:10:05 +0000","Twitterrific for iOS","RT @snarfmason: Man, people sure get touchy when I say bad things about github. I'm sorry everyone, github is the bestest and I love it's a…","443779033071751168","108814849","2014-03-12 16:02:21 +0000","" +"443780958118899712","443779033071751168","108814849","2014-03-12 16:10:00 +0000","Twitterrific for iOS","@snarfmason Bow to the octocat!","","","","" "443583556996972544","","","2014-03-12 03:05:36 +0000","iOS","Great article about creating something better than <select>. https://t.co/HXzma22kxz","","","","https://medium.com/design-ux/bc190d62eff5" -"443564601540505600","443556186109923329","108814849","2014-03-12 01:50:16 +0000","Twitterrific","@snarfmason Yeah, it got me too. Was a huge outage. Luckily I didn't have anything pressing held up!","","","","" -"443553098934415361","443547821304598528","108814849","2014-03-12 01:04:34 +0000","Twitterrific for Mac","@snarfmason But if you’re just making a joke, carry on and ignore me.","","","","" -"443552252561608707","443547821304598528","108814849","2014-03-12 01:01:12 +0000","Twitterrific for Mac","@snarfmason There’s as much reason to avoid GitHub as there is to avoid BitBucket or anyone else. Or in other areas, Gmail, Netflix, etc.","","","","" -"443552019890978818","443547821304598528","108814849","2014-03-12 01:00:17 +0000","Twitterrific for Mac","@snarfmason If you’re sharing git repos they’ll be hosted. And no matter where you host them, they will be unavailable now and then.","","","","" -"443522794597281792","443519204759965696","1699999614","2014-03-11 23:04:09 +0000","Twitterrific for Mac","@EmberSherpa @ebryn Uh-oh. Interest in JavaScript is on the decline! I’m switching to Dart. http://t.co/urH9QE5Ugp","","","","http://www.google.com/trends/explore?hl=en-US&q=jquery,+angular,+ember&cmpt=q&content=1#q=jquery%2C%20angular%2C%20ember%2C%20javascript&cmpt=q" -"443442142967390208","443441801756569600","108814849","2014-03-11 17:43:40 +0000","Twitterrific for Mac","@snarfmason Good luck out there!","","","","" -"443441077735809024","443439316019081216","108814849","2014-03-11 17:39:26 +0000","Twitterrific for Mac","@snarfmason … then Report a Problem. It opens a web page. +"443564601540505600","443556186109923329","108814849","2014-03-12 01:50:16 +0000","Twitterrific for iOS","@snarfmason Yeah, it got me too. Was a huge outage. Luckily I didn't have anything pressing held up!","","","","" +"443553098934415361","443547821304598528","108814849","2014-03-12 01:04:34 +0000","Twitterrific for Mac","@snarfmason But if you’re just making a joke, carry on and ignore me.","","","","" +"443552252561608707","443547821304598528","108814849","2014-03-12 01:01:12 +0000","Twitterrific for Mac","@snarfmason There’s as much reason to avoid GitHub as there is to avoid BitBucket or anyone else. Or in other areas, Gmail, Netflix, etc.","","","","" +"443552019890978818","443547821304598528","108814849","2014-03-12 01:00:17 +0000","Twitterrific for Mac","@snarfmason If you’re sharing git repos they’ll be hosted. And no matter where you host them, they will be unavailable now and then.","","","","" +"443522794597281792","443519204759965696","1699999614","2014-03-11 23:04:09 +0000","Twitterrific for Mac","@EmberSherpa @ebryn Uh-oh. Interest in JavaScript is on the decline! I’m switching to Dart. http://t.co/urH9QE5Ugp","","","","http://www.google.com/trends/explore?hl=en-US&q=jquery,+angular,+ember&cmpt=q&content=1#q=jquery%2C%20angular%2C%20ember%2C%20javascript&cmpt=q" +"443442142967390208","443441801756569600","108814849","2014-03-11 17:43:40 +0000","Twitterrific for Mac","@snarfmason Good luck out there!","","","","" +"443441077735809024","443439316019081216","108814849","2014-03-11 17:39:26 +0000","Twitterrific for Mac","@snarfmason … then Report a Problem. It opens a web page. WTF","","","","" -"443440980378001408","443439316019081216","108814849","2014-03-11 17:39:03 +0000","Twitterrific for Mac","@snarfmason It’s batshit crazy, but you do it in iTunes. Go to iTunes Store, Account, Purchase History, find the order, click the arrow…","","","","" -"443431562768441344","443424091039494145","1170518132","2014-03-11 17:01:37 +0000","Twitterrific for Mac","@feedbin Thanks for the great service with a boring business model. So far it has been good for everyone.","","","","" -"443431370539274240","","","2014-03-11 17:00:51 +0000","Twitterrific for Mac","RT @feedbin: Feedbin’s First Year http://t.co/l9jdcqoOja","443424091039494145","1170518132","2014-03-11 16:31:56 +0000","http://blog.feedbin.me/2014/03/11/feedbins-first-year/,http://blog.feedbin.me/2014/03/11/feedbins-first-year/" -"443430492616933376","","","2014-03-11 16:57:22 +0000","Twitterrific for Mac","Current status: aspiring Unix greybeard.","","","","" +"443440980378001408","443439316019081216","108814849","2014-03-11 17:39:03 +0000","Twitterrific for Mac","@snarfmason It’s batshit crazy, but you do it in iTunes. Go to iTunes Store, Account, Purchase History, find the order, click the arrow…","","","","" +"443431562768441344","443424091039494145","1170518132","2014-03-11 17:01:37 +0000","Twitterrific for Mac","@feedbin Thanks for the great service with a boring business model. So far it has been good for everyone.","","","","" +"443431370539274240","","","2014-03-11 17:00:51 +0000","Twitterrific for Mac","RT @feedbin: Feedbin’s First Year http://t.co/l9jdcqoOja","443424091039494145","1170518132","2014-03-11 16:31:56 +0000","http://blog.feedbin.me/2014/03/11/feedbins-first-year/,http://blog.feedbin.me/2014/03/11/feedbins-first-year/" +"443430492616933376","","","2014-03-11 16:57:22 +0000","Twitterrific for Mac","Current status: aspiring Unix greybeard.","","","","" "443208462906839040","","","2014-03-11 02:15:06 +0000","Twitter Lite","RT @raganwald: Blogged: “Writing OOP using OOP” http://t.co/mtTydAruqb","443202635017883648","18137723","2014-03-11 01:51:57 +0000","http://raganwald.com/2014/03/10/writing-oop-using-oop.html,http://raganwald.com/2014/03/10/writing-oop-using-oop.html" -"443194203288260608","443180154236321792","8315692","2014-03-11 01:18:26 +0000","Twitterrific for Mac","@GlennF @thoughtbrain @arstechnica @caseyjohnston Sorry, not my intent. Sometimes I’m too familiar with people I don’t know.","","","","" -"443178109492158464","443171214517747712","8315692","2014-03-11 00:14:29 +0000","Twitterrific for Mac","@GlennF @thoughtbrain @arstechnica @caseyjohnston “I know this sounds like a semantic quibble, but words mean things.”","","","","" -"443145359699619840","","","2014-03-10 22:04:21 +0000","Twitterrific for Mac","<vendor>atom.io invitations! Get your atom.io invitations right here!</vendor> +"443194203288260608","443180154236321792","8315692","2014-03-11 01:18:26 +0000","Twitterrific for Mac","@GlennF @thoughtbrain @arstechnica @caseyjohnston Sorry, not my intent. Sometimes I’m too familiar with people I don’t know.","","","","" +"443178109492158464","443171214517747712","8315692","2014-03-11 00:14:29 +0000","Twitterrific for Mac","@GlennF @thoughtbrain @arstechnica @caseyjohnston “I know this sounds like a semantic quibble, but words mean things.”","","","","" +"443145359699619840","","","2014-03-10 22:04:21 +0000","Twitterrific for Mac","<vendor>atom.io invitations! Get your atom.io invitations right here!</vendor> I only have 2 of them.","","","","" -"443126635286368256","443126260622168064","8142952","2014-03-10 20:49:57 +0000","Twitterrific for Mac","@mikeash Wow. And I thought TextMate was bad.","","","","" -"443114782053253120","","","2014-03-10 20:02:51 +0000","Twitterrific for Mac","Cron job scheduled for 1AM ran twice this morning. The world should abolish daylight savings to make my life easier.","","","","" -"443109284910727168","443099345454256128","9533042","2014-03-10 19:41:00 +0000","Twitterrific for Mac","@BrendanEich http://t.co/qHWvf1kDiK","","","","http://willingtofail.com/origin.html" -"443106991544606720","","","2014-03-10 19:31:53 +0000","Twitterrific for Mac","RT @gparker: @gparker As I understand it, it's a ten year old bug in the virtual memory system that happened to be harmless until now.","443088488150228994","16318564","2014-03-10 18:18:22 +0000","" -"443069702328156160","443068447098798080","894911","2014-03-10 17:03:43 +0000","Twitterrific for Mac","@JimRoepcke Hooray! My poor iPad has the 7.1 beta w/o the TLS fix. 😬","","","","" -"442817803611947008","442814853359484928","894911","2014-03-10 00:22:46 +0000","Twitterrific","@JimRoepcke @HipwoodDigital I'm ready too. Bring on the warmth.","","","","" -"442813726442258433","442750767552659456","894911","2014-03-10 00:06:34 +0000","Twitterrific","@JimRoepcke @HipwoodDigital Turned it around with some geocaching! So nice out. http://t.co/YpV9EEd18i","","","","https://twitter.com/_sjs/status/442813726442258433/photo/1" -"442751481389658112","442750767552659456","894911","2014-03-09 19:59:13 +0000","Twitterrific","@JimRoepcke @HipwoodDigital You're not alone. http://t.co/GCdL72YSKO","","","","https://twitter.com/_sjs/status/442751481389658112/photo/1" +"443126635286368256","443126260622168064","8142952","2014-03-10 20:49:57 +0000","Twitterrific for Mac","@mikeash Wow. And I thought TextMate was bad.","","","","" +"443114782053253120","","","2014-03-10 20:02:51 +0000","Twitterrific for Mac","Cron job scheduled for 1AM ran twice this morning. The world should abolish daylight savings to make my life easier.","","","","" +"443109284910727168","443099345454256128","9533042","2014-03-10 19:41:00 +0000","Twitterrific for Mac","@BrendanEich http://t.co/qHWvf1kDiK","","","","http://willingtofail.com/origin.html" +"443106991544606720","","","2014-03-10 19:31:53 +0000","Twitterrific for Mac","RT @gparker: @gparker As I understand it, it's a ten year old bug in the virtual memory system that happened to be harmless until now.","443088488150228994","16318564","2014-03-10 18:18:22 +0000","" +"443069702328156160","443068447098798080","894911","2014-03-10 17:03:43 +0000","Twitterrific for Mac","@JimRoepcke Hooray! My poor iPad has the 7.1 beta w/o the TLS fix. 😬","","","","" +"442817803611947008","442814853359484928","894911","2014-03-10 00:22:46 +0000","Twitterrific for iOS","@JimRoepcke @HipwoodDigital I'm ready too. Bring on the warmth.","","","","" +"442813726442258433","442750767552659456","894911","2014-03-10 00:06:34 +0000","Twitterrific for iOS","@JimRoepcke @HipwoodDigital Turned it around with some geocaching! So nice out. http://t.co/YpV9EEd18i","","","","https://twitter.com/_sjs/status/442813726442258433/photo/1" +"442751481389658112","442750767552659456","894911","2014-03-09 19:59:13 +0000","Twitterrific for iOS","@JimRoepcke @HipwoodDigital You're not alone. http://t.co/GCdL72YSKO","","","","https://twitter.com/_sjs/status/442751481389658112/photo/1" "442750381160816640","442750335577096192","894911","2014-03-09 19:54:51 +0000","Twitter Web Client","@JimRoepcke @HipwoodDigital Exactly!","","","","" "442750126931451904","442749847125250048","894911","2014-03-09 19:53:50 +0000","Twitter Web Client","@JimRoepcke @HipwoodDigital Are you rocking a 5s? The M7 chip stores 7 days of data. https://t.co/EcSEZFOKCN","","","","https://itunes.apple.com/ca/app/pedometer++/id712286167?mt=8" -"442748018303827968","442716655479578624","894911","2014-03-09 19:45:28 +0000","Twitterrific for Mac","@JimRoepcke @HipwoodDigital When I was in NYC I took around 15-25k steps every day. So much walking when you’re trying to see everything!","","","","" -"442743534177624064","","","2014-03-09 19:27:39 +0000","Twitterrific for Mac","Don’t forget to check out Webmachine after this diagram. RT @jboner Nice HTTP decision diagram: https://t.co/cerEN5qJ2N","","","","https://raw.github.com/for-GET/http-decision-diagram/master/httpdd.png" -"442335810910564352","442220199492980736","57622045","2014-03-08 16:27:30 +0000","Twitterrific","@johnwilander @BrendanEich People who don't understand C used casting syntax for conversions in PHP. They had a hand in this, surely.","","","","" -"442137061563195392","442103897369231360","894911","2014-03-08 03:17:44 +0000","Twitterrific for Mac","@JimRoepcke We have legs too!","","","","" -"442136536687980544","","","2014-03-08 03:15:39 +0000","Twitterrific for Mac","atom.io editor invitation, woohoo wild Friday night!","","","","" -"442094012766253056","442092848599416832","108814849","2014-03-08 00:26:41 +0000","Twitterrific for Mac","@snarfmason ""Therefore if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it."" Brian Kernighan","","","","" -"442093907984121856","442092848599416832","108814849","2014-03-08 00:26:16 +0000","Twitterrific for Mac","@snarfmason “this is the clever part” http://t.co/g5BJHF0K85","","","","http://cm.bell-labs.com/who/dmr/odd.html#muldiv" -"442092929612406784","","","2014-03-08 00:22:22 +0000","Twitterrific for Mac","RT @mraleph: I just need an non-technical cofounder with an idea that can be sold for $$$ by this morning.","442091565855809536","53010195","2014-03-08 00:16:57 +0000","" -"442062938816258048","442060592778452992","3594","2014-03-07 22:23:12 +0000","Twitterrific for Mac","@ebryn Returning promises unintentionally from hooks? That could be fun.","","","","" -"442049052696256512","442048250653065216","894911","2014-03-07 21:28:01 +0000","Twitterrific for Mac","@JimRoepcke It’s a fantastic city! I’ve only been once but I had a blast. So much to do, lots of energy.","","","","" -"442042833310982144","442032816545890304","894911","2014-03-07 21:03:18 +0000","Twitterrific for Mac","@JimRoepcke Airlines amirite http://t.co/SScxcN4rfZ","","","","http://www.youtube.com/watch?v=MK6TXMsvgQg" -"441813954189197312","","","2014-03-07 05:53:49 +0000","Twitterrific for Mac","Now that scaling works 4k on a Mac is interesting.","","","","" -"441813405192581120","","","2014-03-07 05:51:38 +0000","Twitterrific for Mac","RT @KhaosT: @marcoarment OS X 10.9.3 brings official option for upscale resolution and full MST support. http://t.co/GjKYJZBYZi","441758367178964992","16167171","2014-03-07 02:12:56 +0000","https://twitter.com/KhaosT/status/441758367178964992/photo/1,https://twitter.com/KhaosT/status/441758367178964992/photo/1" -"441813211692556288","","","2014-03-07 05:50:52 +0000","Twitterrific for Mac","RT @toranb: Anyone who wants to see a simple ember + handlebars + coffee + css + concat with Broccoli look no further! https://t.co/BQ8d9og…","441800602733932544","16091517","2014-03-07 05:00:46 +0000","https://github.com/toranb/ember-broccoli-example" -"441793692324487168","","","2014-03-07 04:33:19 +0000","Twitterrific for Mac","PSA: HTMLBARS PROMISED BY APRIL RT @ebryn Spending this weekend working on HTMLBars. Only three weeks left until EmberConf O_O #shipit","","","","" -"441793303386677248","441773765861838848","19225408","2014-03-07 04:31:46 +0000","Twitterrific for Mac","@counternotions Less than $X. While you’re not driving you’ll use your phone or tablet and hopefully see some Google ads.","","","","" -"441765297767198721","441696135254536192","6083342","2014-03-07 02:40:29 +0000","Twitterrific","@bascule @wagenet What do they expect to get from him? They wouldn't know what to ask even if he was answering.","","","","" -"441693562900475904","","","2014-03-06 21:55:26 +0000","Twitterrific for Mac","RT @jsnell: Journalists have discovered the original Doge and are now chasing him through the streets of Japan on tricycles.","441687399467200512","784912","2014-03-06 21:30:56 +0000","" -"441652715672715265","441644217916325888","652293","2014-03-06 19:13:07 +0000","Twitterrific for Mac","@brentsimmons (Oops, s/switch/switched/. I’m not commanding you to use Harp.)","","","","" -"441651901646397440","441644217916325888","652293","2014-03-06 19:09:53 +0000","Twitterrific for Mac","@brentsimmons You can look at my project here: https://t.co/lBexuqRsps Posts are Markdown in public/posts/YYYY/MM. Metadata in _data.json.","","","","https://github.com/samsonjs/samhuri.net" -"441651695269867520","441644217916325888","652293","2014-03-06 19:09:04 +0000","Twitterrific for Mac","@brentsimmons I previously had metadata at the top of Markdown posts. Just switch to http://t.co/caPrckserv (compiled, not using server).","","","","http://harpjs.com" +"442748018303827968","442716655479578624","894911","2014-03-09 19:45:28 +0000","Twitterrific for Mac","@JimRoepcke @HipwoodDigital When I was in NYC I took around 15-25k steps every day. So much walking when you’re trying to see everything!","","","","" +"442743534177624064","","","2014-03-09 19:27:39 +0000","Twitterrific for Mac","Don’t forget to check out Webmachine after this diagram. RT @jboner Nice HTTP decision diagram: https://t.co/cerEN5qJ2N","","","","https://raw.github.com/for-GET/http-decision-diagram/master/httpdd.png" +"442335810910564352","442220199492980736","57622045","2014-03-08 16:27:30 +0000","Twitterrific for iOS","@johnwilander @BrendanEich People who don't understand C used casting syntax for conversions in PHP. They had a hand in this, surely.","","","","" +"442137061563195392","442103897369231360","894911","2014-03-08 03:17:44 +0000","Twitterrific for Mac","@JimRoepcke We have legs too!","","","","" +"442136536687980544","","","2014-03-08 03:15:39 +0000","Twitterrific for Mac","atom.io editor invitation, woohoo wild Friday night!","","","","" +"442094012766253056","442092848599416832","108814849","2014-03-08 00:26:41 +0000","Twitterrific for Mac","@snarfmason ""Therefore if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it."" Brian Kernighan","","","","" +"442093907984121856","442092848599416832","108814849","2014-03-08 00:26:16 +0000","Twitterrific for Mac","@snarfmason “this is the clever part” http://t.co/g5BJHF0K85","","","","http://cm.bell-labs.com/who/dmr/odd.html#muldiv" +"442092929612406784","","","2014-03-08 00:22:22 +0000","Twitterrific for Mac","RT @mraleph: I just need an non-technical cofounder with an idea that can be sold for $$$ by this morning.","442091565855809536","53010195","2014-03-08 00:16:57 +0000","" +"442062938816258048","442060592778452992","3594","2014-03-07 22:23:12 +0000","Twitterrific for Mac","@ebryn Returning promises unintentionally from hooks? That could be fun.","","","","" +"442049052696256512","442048250653065216","894911","2014-03-07 21:28:01 +0000","Twitterrific for Mac","@JimRoepcke It’s a fantastic city! I’ve only been once but I had a blast. So much to do, lots of energy.","","","","" +"442042833310982144","442032816545890304","894911","2014-03-07 21:03:18 +0000","Twitterrific for Mac","@JimRoepcke Airlines amirite http://t.co/SScxcN4rfZ","","","","http://www.youtube.com/watch?v=MK6TXMsvgQg" +"441813954189197312","","","2014-03-07 05:53:49 +0000","Twitterrific for Mac","Now that scaling works 4k on a Mac is interesting.","","","","" +"441813405192581120","","","2014-03-07 05:51:38 +0000","Twitterrific for Mac","RT @KhaosT: @marcoarment OS X 10.9.3 brings official option for upscale resolution and full MST support. http://t.co/GjKYJZBYZi","441758367178964992","16167171","2014-03-07 02:12:56 +0000","https://twitter.com/KhaosT/status/441758367178964992/photo/1,https://twitter.com/KhaosT/status/441758367178964992/photo/1" +"441813211692556288","","","2014-03-07 05:50:52 +0000","Twitterrific for Mac","RT @toranb: Anyone who wants to see a simple ember + handlebars + coffee + css + concat with Broccoli look no further! https://t.co/BQ8d9og…","441800602733932544","16091517","2014-03-07 05:00:46 +0000","https://github.com/toranb/ember-broccoli-example" +"441793692324487168","","","2014-03-07 04:33:19 +0000","Twitterrific for Mac","PSA: HTMLBARS PROMISED BY APRIL RT @ebryn Spending this weekend working on HTMLBars. Only three weeks left until EmberConf O_O #shipit","","","","" +"441793303386677248","441773765861838848","19225408","2014-03-07 04:31:46 +0000","Twitterrific for Mac","@counternotions Less than $X. While you’re not driving you’ll use your phone or tablet and hopefully see some Google ads.","","","","" +"441765297767198721","441696135254536192","6083342","2014-03-07 02:40:29 +0000","Twitterrific for iOS","@bascule @wagenet What do they expect to get from him? They wouldn't know what to ask even if he was answering.","","","","" +"441693562900475904","","","2014-03-06 21:55:26 +0000","Twitterrific for Mac","RT @jsnell: Journalists have discovered the original Doge and are now chasing him through the streets of Japan on tricycles.","441687399467200512","784912","2014-03-06 21:30:56 +0000","" +"441652715672715265","441644217916325888","652293","2014-03-06 19:13:07 +0000","Twitterrific for Mac","@brentsimmons (Oops, s/switch/switched/. I’m not commanding you to use Harp.)","","","","" +"441651901646397440","441644217916325888","652293","2014-03-06 19:09:53 +0000","Twitterrific for Mac","@brentsimmons You can look at my project here: https://t.co/lBexuqRsps Posts are Markdown in public/posts/YYYY/MM. Metadata in _data.json.","","","","https://github.com/samsonjs/samhuri.net" +"441651695269867520","441644217916325888","652293","2014-03-06 19:09:04 +0000","Twitterrific for Mac","@brentsimmons I previously had metadata at the top of Markdown posts. Just switch to http://t.co/caPrckserv (compiled, not using server).","","","","http://harpjs.com" "441647133783900160","441646984563130368","108814849","2014-03-06 18:50:56 +0000","Twitter Web Client","@snarfmason Sadly not! Just sharing in the puns on Twitter and wishing I was at the conf. Super jealous.","","","","" -"441640671665864704","","","2014-03-06 18:25:16 +0000","Twitterrific for Mac","RT @snarfmason: Ruby on Ales 2014 is under way. And @tenderlove is making awful puns before 10am. Someone stop him.","441634824030146560","108814849","2014-03-06 18:02:01 +0000","" -"441619649164103680","441617712398082048","14761655","2014-03-06 17:01:43 +0000","Twitterrific","@tenderlove They're big proponents of the actor model.","","","","" -"441471438101282816","","","2014-03-06 07:12:47 +0000","Twitterrific","RT @matthavener: Dear scp: no one has ever wanted to use scp to locally copy a file and name it 'user@host' (cc @technomancy)","283024720281075712","1451761","2012-12-24 01:42:06 +0000","" -"441375550741827584","","","2014-03-06 00:51:46 +0000","Twitterrific for Mac","RT @Supermathie: .@0xabad1dea Hah, this made me realize: We have the notion of a gold standard, what is the opposite? A PHP standard?","441371346560630784","17052596","2014-03-06 00:35:03 +0000","" -"441374875387564032","441366012764913664","894911","2014-03-06 00:49:05 +0000","Twitterrific for Mac","@JimRoepcke You need a Dr. Suess hat so I can spot you on TV. http://t.co/5QCy8kKo8W","","","","http://img.ly/yeOC" -"441273277109907457","441250880336449536","14231571","2014-03-05 18:05:22 +0000","Twitterrific","@marcoarment git clean -fdx","","","","" -"441272019703693315","","","2014-03-05 18:00:22 +0000","Twitterrific","RT @ebryn: I treat my Ember.js apps just like my iOS app. It has it’s own repo. Nobody sticks their iOS code in their backend @delwynd @bca…","441236014820900864","3594","2014-03-05 15:37:18 +0000","" -"441262123256000512","441169151504039936","30182704","2014-03-05 17:21:03 +0000","Twitterrific","@johnchidgey @marcoarment It's already too late.","","","","" -"441075048275652608","441068737874382848","14231571","2014-03-05 04:57:40 +0000","Twitterrific for Mac","@marcoarment Anyone who hasn’t done that is either brilliant or oblivious.","","","","" -"441041157200441344","441039121218547712","7125712","2014-03-05 02:43:00 +0000","Twitterrific for Mac","@gte @HistoryInPics He appears to handle the rock’n’rolling better than Slash. Slash looks like someone you avoid in McD’s late at night.","","","","" -"441039699365199872","","","2014-03-05 02:37:13 +0000","Twitterrific for Mac","Couldn’t make the Octocat work, so it had to go. Safari has some serious font rendering problems. Using the GPU just yields different bugs.","","","","" -"441023725295509504","441022212439416832","16318564","2014-03-05 01:33:44 +0000","Twitterrific for Mac","@gparker @gruber I heard that worrying about cancer gives you cancer.","","","","" -"440897953310318592","440867349219246081","894911","2014-03-04 17:13:58 +0000","Twitterrific","@JimRoepcke Ha ha. Yup. Now you're part of the backlog.","","","","" -"440773928068214785","440688686858899456","14761655","2014-03-04 09:01:08 +0000","Twitterrific","@tenderlove When there's more ceremony than ShinyThing.new(...) to make one. When # files loaded to use the class > $arbitrary_big_number.","","","","" -"440760509290123264","","","2014-03-04 08:07:49 +0000","Twitterrific for Mac","I love the smell of a freshly deployed site. http://t.co/BEQuIHt7gd just got a new coat of paint. It’s not done but I decided to ship it.","","","","http://samhuri.net" -"440651501329870848","440647299165745152","9462972","2014-03-04 00:54:39 +0000","Twitterrific for Mac","@bitsweat Awesome! Thanks @chancancode.","","","","" -"440651226032533504","","","2014-03-04 00:53:33 +0000","Twitterrific for Mac","RT @bitsweat: Chrome extension turns the GitHub blame view into a time machine: https://t.co/nX1YmVN8l8","440647299165745152","9462972","2014-03-04 00:37:57 +0000","https://github.com/chancancode/blame_parent,https://github.com/chancancode/blame_parent" -"440588328618827776","","","2014-03-03 20:43:37 +0000","Twitterrific for Mac","RT @HackerNewsOnion: New node.js co-working space has 1 table and everyone takes turns","440586112579284992","1263967268","2014-03-03 20:34:49 +0000","" -"440580996451160064","","","2014-03-03 20:14:29 +0000","Twitterrific for Mac","RT @jerkob: http://t.co/tGME16auYK: Anatomy of a feature http://t.co/5Gxdgv0lpI","440571421392375808","15427589","2014-03-03 19:36:26 +0000","http://inessential.com,http://inessential.com/2009/07/30/anatomy_of_a_feature,http://inessential.com,http://inessential.com/2009/07/30/anatomy_of_a_feature" -"440576589680500736","440553070208905216","15816595","2014-03-03 19:56:59 +0000","Twitterrific for Mac","@radleybalko @drance The White Slitherers!","","","","" -"440524051409158144","","","2014-03-03 16:28:13 +0000","Twitterrific","RT @thomasfuchs: To become good at something you need to know what’s going on one layer deeper. +"441640671665864704","","","2014-03-06 18:25:16 +0000","Twitterrific for Mac","RT @snarfmason: Ruby on Ales 2014 is under way. And @tenderlove is making awful puns before 10am. Someone stop him.","441634824030146560","108814849","2014-03-06 18:02:01 +0000","" +"441619649164103680","441617712398082048","14761655","2014-03-06 17:01:43 +0000","Twitterrific for iOS","@tenderlove They're big proponents of the actor model.","","","","" +"441471438101282816","","","2014-03-06 07:12:47 +0000","Twitterrific for iOS","RT @matthavener: Dear scp: no one has ever wanted to use scp to locally copy a file and name it 'user@host' (cc @technomancy)","283024720281075712","1451761","2012-12-24 01:42:06 +0000","" +"441375550741827584","","","2014-03-06 00:51:46 +0000","Twitterrific for Mac","RT @Supermathie: .@0xabad1dea Hah, this made me realize: We have the notion of a gold standard, what is the opposite? A PHP standard?","441371346560630784","17052596","2014-03-06 00:35:03 +0000","" +"441374875387564032","441366012764913664","894911","2014-03-06 00:49:05 +0000","Twitterrific for Mac","@JimRoepcke You need a Dr. Suess hat so I can spot you on TV. http://t.co/5QCy8kKo8W","","","","http://img.ly/yeOC" +"441273277109907457","441250880336449536","14231571","2014-03-05 18:05:22 +0000","Twitterrific for iOS","@marcoarment git clean -fdx","","","","" +"441272019703693315","","","2014-03-05 18:00:22 +0000","Twitterrific for iOS","RT @ebryn: I treat my Ember.js apps just like my iOS app. It has it’s own repo. Nobody sticks their iOS code in their backend @delwynd @bca…","441236014820900864","3594","2014-03-05 15:37:18 +0000","" +"441262123256000512","441169151504039936","30182704","2014-03-05 17:21:03 +0000","Twitterrific for iOS","@johnchidgey @marcoarment It's already too late.","","","","" +"441075048275652608","441068737874382848","14231571","2014-03-05 04:57:40 +0000","Twitterrific for Mac","@marcoarment Anyone who hasn’t done that is either brilliant or oblivious.","","","","" +"441041157200441344","441039121218547712","7125712","2014-03-05 02:43:00 +0000","Twitterrific for Mac","@gte @HistoryInPics He appears to handle the rock’n’rolling better than Slash. Slash looks like someone you avoid in McD’s late at night.","","","","" +"441039699365199872","","","2014-03-05 02:37:13 +0000","Twitterrific for Mac","Couldn’t make the Octocat work, so it had to go. Safari has some serious font rendering problems. Using the GPU just yields different bugs.","","","","" +"441023725295509504","441022212439416832","16318564","2014-03-05 01:33:44 +0000","Twitterrific for Mac","@gparker @gruber I heard that worrying about cancer gives you cancer.","","","","" +"440897953310318592","440867349219246081","894911","2014-03-04 17:13:58 +0000","Twitterrific for iOS","@JimRoepcke Ha ha. Yup. Now you're part of the backlog.","","","","" +"440773928068214785","440688686858899456","14761655","2014-03-04 09:01:08 +0000","Twitterrific for iOS","@tenderlove When there's more ceremony than ShinyThing.new(...) to make one. When # files loaded to use the class > $arbitrary_big_number.","","","","" +"440760509290123264","","","2014-03-04 08:07:49 +0000","Twitterrific for Mac","I love the smell of a freshly deployed site. http://t.co/BEQuIHt7gd just got a new coat of paint. It’s not done but I decided to ship it.","","","","http://samhuri.net" +"440651501329870848","440647299165745152","9462972","2014-03-04 00:54:39 +0000","Twitterrific for Mac","@bitsweat Awesome! Thanks @chancancode.","","","","" +"440651226032533504","","","2014-03-04 00:53:33 +0000","Twitterrific for Mac","RT @bitsweat: Chrome extension turns the GitHub blame view into a time machine: https://t.co/nX1YmVN8l8","440647299165745152","9462972","2014-03-04 00:37:57 +0000","https://github.com/chancancode/blame_parent,https://github.com/chancancode/blame_parent" +"440588328618827776","","","2014-03-03 20:43:37 +0000","Twitterrific for Mac","RT @HackerNewsOnion: New node.js co-working space has 1 table and everyone takes turns","440586112579284992","1263967268","2014-03-03 20:34:49 +0000","" +"440580996451160064","","","2014-03-03 20:14:29 +0000","Twitterrific for Mac","RT @jerkob: http://t.co/tGME16auYK: Anatomy of a feature http://t.co/5Gxdgv0lpI","440571421392375808","15427589","2014-03-03 19:36:26 +0000","http://inessential.com,http://inessential.com/2009/07/30/anatomy_of_a_feature,http://inessential.com,http://inessential.com/2009/07/30/anatomy_of_a_feature" +"440576589680500736","440553070208905216","15816595","2014-03-03 19:56:59 +0000","Twitterrific for Mac","@radleybalko @drance The White Slitherers!","","","","" +"440524051409158144","","","2014-03-03 16:28:13 +0000","Twitterrific for iOS","RT @thomasfuchs: To become good at something you need to know what’s going on one layer deeper. E.g. for web apps understand how browsers …","439973109341224961","6927562","2014-03-02 03:58:58 +0000","" -"440382769399480320","440366794729984001","968881477","2014-03-03 07:06:48 +0000","Twitterrific","@bcrypt @zii @fugueish Yet another reason why Windows isn't suitable for doing Unixy stuff or development. Better off with a Linux VM.","","","","" -"440381672043716608","","","2014-03-03 07:02:27 +0000","Twitterrific","RT @siracusa: @caseyjohnston Hush now, important people are tweeting.","440346730258001920","636923","2014-03-03 04:43:36 +0000","" -"439914165914697728","","","2014-03-02 00:04:45 +0000","Twitterrific for Mac","Well after spending an afternoon using LESS I’m sold. I just renamed a class and that was the clincher.","","","","" -"439902759840514048","439898100896112641","14465889","2014-03-01 23:19:25 +0000","Twitterrific","@jalbertbowdenii Well there's -o- and the Scooby Doo version -ro-.","","","","" -"439902612813393920","439890130946764801","14465889","2014-03-01 23:18:50 +0000","Twitterrific","@jalbertbowdenii Cheers!","","","","" -"439867783803719680","","","2014-03-01 21:00:26 +0000","Twitterrific for Mac","Looks like setting padding-left affects -webkit-padding-start, so it’s just an implementation detail. Phew.","","","","" +"440382769399480320","440366794729984001","968881477","2014-03-03 07:06:48 +0000","Twitterrific for iOS","@bcrypt @zii @fugueish Yet another reason why Windows isn't suitable for doing Unixy stuff or development. Better off with a Linux VM.","","","","" +"440381672043716608","","","2014-03-03 07:02:27 +0000","Twitterrific for iOS","RT @siracusa: @caseyjohnston Hush now, important people are tweeting.","440346730258001920","636923","2014-03-03 04:43:36 +0000","" +"439914165914697728","","","2014-03-02 00:04:45 +0000","Twitterrific for Mac","Well after spending an afternoon using LESS I’m sold. I just renamed a class and that was the clincher.","","","","" +"439902759840514048","439898100896112641","14465889","2014-03-01 23:19:25 +0000","Twitterrific for iOS","@jalbertbowdenii Well there's -o- and the Scooby Doo version -ro-.","","","","" +"439902612813393920","439890130946764801","14465889","2014-03-01 23:18:50 +0000","Twitterrific for iOS","@jalbertbowdenii Cheers!","","","","" +"439867783803719680","","","2014-03-01 21:00:26 +0000","Twitterrific for Mac","Looks like setting padding-left affects -webkit-padding-start, so it’s just an implementation detail. Phew.","","","","" "439859080509669376","439858148565057536","14465889","2014-03-01 20:25:51 +0000","Twitter Web Client","@jalbertbowdenii Good to know, thanks. Makes normalizing/resetting CSS more of a pain. I wonder why padding-left was passed over for this.","","","","" -"439856995286257664","","","2014-03-01 20:17:34 +0000","Twitterrific for Mac","I just had to remove a user agent style on <ul> in Safari: -webkit-padding-start. WTF is that? ಠ_ಠ","","","","" +"439856995286257664","","","2014-03-01 20:17:34 +0000","Twitterrific for Mac","I just had to remove a user agent style on <ul> in Safari: -webkit-padding-start. WTF is that? ಠ_ಠ","","","","" "439853978709266432","439853651180269569","8038312","2014-03-01 20:05:35 +0000","Twitter Web Client","@izs @npmjs @paulg Ha! Nah, total wannabe.","","","","" -"439851992081375232","439851291783593984","8038312","2014-03-01 19:57:41 +0000","Twitterrific for Mac","@izs @npmjs @paulg Banning seems to be reserved for real trolls, spammers, and hateful people.","","","","" -"439851802201030656","439851291783593984","8038312","2014-03-01 19:56:56 +0000","Twitterrific for Mac","@izs @npmjs @paulg Seems like they jumped to a hasty conclusion. (People do get banned, and the effect is all comments are instantly dead.)","","","","" -"439850834784837632","439843823397531648","8038312","2014-03-01 19:53:05 +0000","Twitterrific for Mac","@izs @npmjs @paulg In case you don’t see what I’m seeing… http://t.co/u1vKHrDt8n","","","","http://img.ly/yctR" -"439850216762519552","439843823397531648","8038312","2014-03-01 19:50:38 +0000","Twitterrific for Mac","@izs @npmjs @paulg It doesn’t look like you’re banned. It looks like your last comment was detected as a dupe. https://t.co/JyPxYa7pr3","","","","https://news.ycombinator.com/threads?id=IsaacSchlueter" -"439572492785442816","","","2014-03-01 01:27:03 +0000","Twitterrific","RT @daringfireball: Apple Offers More Details on iMessage Security: http://t.co/VtVErOYqSD","439559051735609345","10760422","2014-03-01 00:33:39 +0000","http://df4.us/mi5,http://df4.us/mi5" -"439521654427746304","439519801661083648","14272162","2014-02-28 22:05:02 +0000","Twitterrific for Mac","@jdalton @ReturnFalse kebab-case is great. Okay, I do have a soft-spot for Lisp BUT I also like that it doesn’t require shifting.","","","","" -"439509978991177728","439504073755484160","156361232","2014-02-28 21:18:39 +0000","Twitterrific for Mac","@rwjblue 👏","","","","" -"439468257368498176","439467219475394560","36183","2014-02-28 18:32:52 +0000","Twitterrific for Mac","@chockenberry Nice humble brag.","","","","" -"439468078519156736","","33423","2014-02-28 18:32:09 +0000","Twitterrific for Mac","@gruber Description: “*** Cited as having the ""The User Interface of the Week"" by the Daring Fireball (http://t.co/EZ6t7yFcY6).”","","","","http://daringfireball.net" -"439462466125176836","","","2014-02-28 18:09:51 +0000","Twitterrific for Mac","“Casey's and Marco's hard-to-find bugs and language misfeatures. (Perl protects John from writing bugs.)”","","","","" -"439462060028485632","","","2014-02-28 18:08:14 +0000","Twitterrific for Mac","Scumbag users: annouce a new release with several new features, comments are (almost) all unrelated feature requests. http://t.co/izrE2HUBJN","","","","http://blog.instapaper.com/post/78011513031" -"439319862993641472","439309506959663104","180383784","2014-02-28 08:43:12 +0000","Twitterrific","@ineptlyawesome @tomdale @emberjs http://t.co/8AMBJxl20t","","","","https://twitter.com/_sjs/status/439319862993641472/photo/1" -"439251816438444032","","","2014-02-28 04:12:48 +0000","Twitterrific","RT @mikeash: ""Apple designed the iOS platform with security at its core, which is why it took us a year to notice that we didn't validate T…","439121965690155009","8142952","2014-02-27 19:36:49 +0000","" -"439198988655263744","","","2014-02-28 00:42:53 +0000","Twitterrific for Mac","RT @juhasaarinen: I so... whatever. http://t.co/6XkKZ3yvsH","439176400696659969","15829574","2014-02-27 23:13:08 +0000","https://twitter.com/juhasaarinen/status/439176400696659969/photo/1,https://twitter.com/juhasaarinen/status/439176400696659969/photo/1" -"439193552715665408","439193027689852928","19225408","2014-02-28 00:21:17 +0000","Twitterrific for Mac","@counternotions “Those who would give up freedoms for some temporary safety deserve neither freedom nor safety.” — Sundar Pichai","","","","" -"439163566349123584","","","2014-02-27 22:22:08 +0000","Twitterrific for Mac","Are there any operation queues for Ember or Ember Data? Seems like a big part of a robust and responsive client-side web app. #emberjs","","","","" -"439161505880473600","439160821600776192","1170518132","2014-02-27 22:13:56 +0000","Twitterrific for Mac","@feedbin Hooray! \o/","","","","" -"439161452633784320","","","2014-02-27 22:13:44 +0000","Twitterrific for Mac","Server-rendered web apps are akin to Opera’s dumbphone browser that renders images on its proxy servers. Except they emit HTML instead.","","","","" -"439157338772344832","439154478642921472","1170518132","2014-02-27 21:57:23 +0000","Twitterrific for Mac","@feedbin Cool! Is there (or will there be) support for that in the API?","","","","" -"439095035754053632","","","2014-02-27 17:49:49 +0000","Twitterrific for Mac","RT @GMinusG: Big tools! +"439851992081375232","439851291783593984","8038312","2014-03-01 19:57:41 +0000","Twitterrific for Mac","@izs @npmjs @paulg Banning seems to be reserved for real trolls, spammers, and hateful people.","","","","" +"439851802201030656","439851291783593984","8038312","2014-03-01 19:56:56 +0000","Twitterrific for Mac","@izs @npmjs @paulg Seems like they jumped to a hasty conclusion. (People do get banned, and the effect is all comments are instantly dead.)","","","","" +"439850834784837632","439843823397531648","8038312","2014-03-01 19:53:05 +0000","Twitterrific for Mac","@izs @npmjs @paulg In case you don’t see what I’m seeing… http://t.co/u1vKHrDt8n","","","","http://img.ly/yctR" +"439850216762519552","439843823397531648","8038312","2014-03-01 19:50:38 +0000","Twitterrific for Mac","@izs @npmjs @paulg It doesn’t look like you’re banned. It looks like your last comment was detected as a dupe. https://t.co/JyPxYa7pr3","","","","https://news.ycombinator.com/threads?id=IsaacSchlueter" +"439572492785442816","","","2014-03-01 01:27:03 +0000","Twitterrific for iOS","RT @daringfireball: Apple Offers More Details on iMessage Security: http://t.co/VtVErOYqSD","439559051735609345","10760422","2014-03-01 00:33:39 +0000","http://df4.us/mi5,http://df4.us/mi5" +"439521654427746304","439519801661083648","14272162","2014-02-28 22:05:02 +0000","Twitterrific for Mac","@jdalton @ReturnFalse kebab-case is great. Okay, I do have a soft-spot for Lisp BUT I also like that it doesn’t require shifting.","","","","" +"439509978991177728","439504073755484160","156361232","2014-02-28 21:18:39 +0000","Twitterrific for Mac","@rwjblue 👏","","","","" +"439468257368498176","439467219475394560","36183","2014-02-28 18:32:52 +0000","Twitterrific for Mac","@chockenberry Nice humble brag.","","","","" +"439468078519156736","","33423","2014-02-28 18:32:09 +0000","Twitterrific for Mac","@gruber Description: “*** Cited as having the ""The User Interface of the Week"" by the Daring Fireball (http://t.co/EZ6t7yFcY6).”","","","","http://daringfireball.net" +"439462466125176836","","","2014-02-28 18:09:51 +0000","Twitterrific for Mac","“Casey's and Marco's hard-to-find bugs and language misfeatures. (Perl protects John from writing bugs.)”","","","","" +"439462060028485632","","","2014-02-28 18:08:14 +0000","Twitterrific for Mac","Scumbag users: annouce a new release with several new features, comments are (almost) all unrelated feature requests. http://t.co/izrE2HUBJN","","","","http://blog.instapaper.com/post/78011513031" +"439319862993641472","439309506959663104","180383784","2014-02-28 08:43:12 +0000","Twitterrific for iOS","@ineptlyawesome @tomdale @emberjs http://t.co/8AMBJxl20t","","","","https://twitter.com/_sjs/status/439319862993641472/photo/1" +"439251816438444032","","","2014-02-28 04:12:48 +0000","Twitterrific for iOS","RT @mikeash: ""Apple designed the iOS platform with security at its core, which is why it took us a year to notice that we didn't validate T…","439121965690155009","8142952","2014-02-27 19:36:49 +0000","" +"439198988655263744","","","2014-02-28 00:42:53 +0000","Twitterrific for Mac","RT @juhasaarinen: I so... whatever. http://t.co/6XkKZ3yvsH","439176400696659969","15829574","2014-02-27 23:13:08 +0000","https://twitter.com/juhasaarinen/status/439176400696659969/photo/1,https://twitter.com/juhasaarinen/status/439176400696659969/photo/1" +"439193552715665408","439193027689852928","19225408","2014-02-28 00:21:17 +0000","Twitterrific for Mac","@counternotions “Those who would give up freedoms for some temporary safety deserve neither freedom nor safety.” — Sundar Pichai","","","","" +"439163566349123584","","","2014-02-27 22:22:08 +0000","Twitterrific for Mac","Are there any operation queues for Ember or Ember Data? Seems like a big part of a robust and responsive client-side web app. #emberjs","","","","" +"439161505880473600","439160821600776192","1170518132","2014-02-27 22:13:56 +0000","Twitterrific for Mac","@feedbin Hooray! \o/","","","","" +"439161452633784320","","","2014-02-27 22:13:44 +0000","Twitterrific for Mac","Server-rendered web apps are akin to Opera’s dumbphone browser that renders images on its proxy servers. Except they emit HTML instead.","","","","" +"439157338772344832","439154478642921472","1170518132","2014-02-27 21:57:23 +0000","Twitterrific for Mac","@feedbin Cool! Is there (or will there be) support for that in the API?","","","","" +"439095035754053632","","","2014-02-27 17:49:49 +0000","Twitterrific for Mac","RT @GMinusG: Big tools! http://t.co/iXJ24yOrV9 http://t.co/hYaSHochl6","439090102401134592","16419203","2014-02-27 17:30:12 +0000","http://garfieldminusgarfield.net/post/78019284760/,http://fb.me/14KFIUThb,http://garfieldminusgarfield.net/post/78019284760/,http://fb.me/14KFIUThb" -"439072997865816064","438916984269324288","5511322","2014-02-27 16:22:14 +0000","Twitterrific","@BinaryMuse @trek @AtomEditor Yeah, that is amazing. Currently using TextMate and I miss that sort of power from Emacs. Can't wait to try it","","","","" -"439072093057998848","439067547942793217","92915570","2014-02-27 16:18:39 +0000","Twitterrific","@indutny Yes please!","","","","" -"439065374756052992","","","2014-02-27 15:51:57 +0000","Twitterrific","RT @shit_so_says: To use CUDA you need to use C, which doesn't support inheritance. Therefore, you need to be clever.","439041176659034112","1084490250","2014-02-27 14:15:48 +0000","" -"439064280587980800","438958650598903808","14618863","2014-02-27 15:47:36 +0000","Twitterrific","@anandshimpi Wow. I don't know how you can pull that off! I'd be asleep on my feet.","","","","" -"438912920278163456","438867072370491392","217540637","2014-02-27 05:46:09 +0000","Twitterrific","@JosephMartel Heh, close. Update Android SDK stuff. Know anyone who wants the job? Pay sucks but all the yak hair they can carry!","","","","" -"438832831171538944","","33423","2014-02-27 00:27:54 +0000","Twitterrific for Mac","@gruber Al Franken didn’t write any letters for fingerprint scanners before the iPhone 5S either. People only care because Apple. ✊🍆","","","","" -"438757727334965249","438754106195582976","1236101","2014-02-26 19:29:28 +0000","Twitterrific for Mac","@BenedictEvans Any chance of that audio being recorded? Sounds interesting.","","","","" -"438757365387497472","","","2014-02-26 19:28:02 +0000","Twitterrific for Mac","RT @HackerNewsOnion: New Github IDE can tab-complete an entire Rails app","438749165267320832","1263967268","2014-02-26 18:55:27 +0000","" -"438757327525535744","","","2014-02-26 19:27:53 +0000","Twitterrific for Mac","PBX admins have some serious job security. The configs that drive Asterisk are insane. Making simple things simple clearly was not a goal.","","","","" -"438746327749369856","","","2014-02-26 18:44:10 +0000","Twitterrific for Mac","Ugh. Somebody please breed a yak that shaves itself. http://t.co/azzFV2n2fR","","","","http://www.dailymotion.com/video/x79zxf_ren-stimpy-the-royal-canadian-kilte_shortfilms" -"438733816031494145","","","2014-02-26 17:54:27 +0000","Twitterrific for Mac","RT @izs: @indutny @3rdeden @npmjs I would have done the same if GitHub had asked him to remove a module called ""github"". It's confusing.","438716818618724352","8038312","2014-02-26 16:46:55 +0000","" -"438730883168612352","","","2014-02-26 17:42:48 +0000","Twitterrific for Mac","Huh, SIP is like HTTP in that if you bring up a new server you’ll be port scanned and someone will try to use/own that service immediately.","","","","" -"438700779952558080","","","2014-02-26 15:43:11 +0000","Twitterrific","RT @monkbent: At the risk of getting a ton of replies trying to prove me wrong, it’s hard to imagine a better 404 page. http://t.co/FgXEGqA…","438691212225417216","40273","2014-02-26 15:05:10 +0000","http://www.romainbrasier.fr/404" -"438503472028082176","","","2014-02-26 02:39:09 +0000","Twitterrific","Between Apple and government agencies, security on the Internet is a farce. http://t.co/SScxcN4rfZ","","","","http://www.youtube.com/watch?v=MK6TXMsvgQg" -"438448327810494464","","","2014-02-25 23:00:01 +0000","Twitterrific for Mac","RT @JimRoepcke: Amber Alert: RCMP looking for 4-door, light brown 2010 Dodge Ram stolen in Grand Prairie containing 7 month old girl. http:…","438427660507566080","894911","2014-02-25 21:37:54 +0000","http://www.cbc.ca/news/canada/edmonton/truck-stolen-with-7-month-old-child-inside-in-grande-prairie-1.2551175" -"438388242979622912","","","2014-02-25 19:01:16 +0000","Twitterrific for Mac","RT @tapbot_paul: When is Apple going to fix this security bug I feel totally unsafe. +"439072997865816064","438916984269324288","5511322","2014-02-27 16:22:14 +0000","Twitterrific for iOS","@BinaryMuse @trek @AtomEditor Yeah, that is amazing. Currently using TextMate and I miss that sort of power from Emacs. Can't wait to try it","","","","" +"439072093057998848","439067547942793217","92915570","2014-02-27 16:18:39 +0000","Twitterrific for iOS","@indutny Yes please!","","","","" +"439065374756052992","","","2014-02-27 15:51:57 +0000","Twitterrific for iOS","RT @shit_so_says: To use CUDA you need to use C, which doesn't support inheritance. Therefore, you need to be clever.","439041176659034112","1084490250","2014-02-27 14:15:48 +0000","" +"439064280587980800","438958650598903808","14618863","2014-02-27 15:47:36 +0000","Twitterrific for iOS","@anandshimpi Wow. I don't know how you can pull that off! I'd be asleep on my feet.","","","","" +"438912920278163456","438867072370491392","217540637","2014-02-27 05:46:09 +0000","Twitterrific for iOS","@JosephMartel Heh, close. Update Android SDK stuff. Know anyone who wants the job? Pay sucks but all the yak hair they can carry!","","","","" +"438832831171538944","","33423","2014-02-27 00:27:54 +0000","Twitterrific for Mac","@gruber Al Franken didn’t write any letters for fingerprint scanners before the iPhone 5S either. People only care because Apple. ✊🍆","","","","" +"438757727334965249","438754106195582976","1236101","2014-02-26 19:29:28 +0000","Twitterrific for Mac","@BenedictEvans Any chance of that audio being recorded? Sounds interesting.","","","","" +"438757365387497472","","","2014-02-26 19:28:02 +0000","Twitterrific for Mac","RT @HackerNewsOnion: New Github IDE can tab-complete an entire Rails app","438749165267320832","1263967268","2014-02-26 18:55:27 +0000","" +"438757327525535744","","","2014-02-26 19:27:53 +0000","Twitterrific for Mac","PBX admins have some serious job security. The configs that drive Asterisk are insane. Making simple things simple clearly was not a goal.","","","","" +"438746327749369856","","","2014-02-26 18:44:10 +0000","Twitterrific for Mac","Ugh. Somebody please breed a yak that shaves itself. http://t.co/azzFV2n2fR","","","","http://www.dailymotion.com/video/x79zxf_ren-stimpy-the-royal-canadian-kilte_shortfilms" +"438733816031494145","","","2014-02-26 17:54:27 +0000","Twitterrific for Mac","RT @izs: @indutny @3rdeden @npmjs I would have done the same if GitHub had asked him to remove a module called ""github"". It's confusing.","438716818618724352","8038312","2014-02-26 16:46:55 +0000","" +"438730883168612352","","","2014-02-26 17:42:48 +0000","Twitterrific for Mac","Huh, SIP is like HTTP in that if you bring up a new server you’ll be port scanned and someone will try to use/own that service immediately.","","","","" +"438700779952558080","","","2014-02-26 15:43:11 +0000","Twitterrific for iOS","RT @monkbent: At the risk of getting a ton of replies trying to prove me wrong, it’s hard to imagine a better 404 page. http://t.co/FgXEGqA…","438691212225417216","40273","2014-02-26 15:05:10 +0000","http://www.romainbrasier.fr/404" +"438503472028082176","","","2014-02-26 02:39:09 +0000","Twitterrific for iOS","Between Apple and government agencies, security on the Internet is a farce. http://t.co/SScxcN4rfZ","","","","http://www.youtube.com/watch?v=MK6TXMsvgQg" +"438448327810494464","","","2014-02-25 23:00:01 +0000","Twitterrific for Mac","RT @JimRoepcke: Amber Alert: RCMP looking for 4-door, light brown 2010 Dodge Ram stolen in Grand Prairie containing 7 month old girl. http:…","438427660507566080","894911","2014-02-25 21:37:54 +0000","http://www.cbc.ca/news/canada/edmonton/truck-stolen-with-7-month-old-child-inside-in-grande-prairie-1.2551175" +"438388242979622912","","","2014-02-25 19:01:16 +0000","Twitterrific for Mac","RT @tapbot_paul: When is Apple going to fix this security bug I feel totally unsafe. ""OS X Update 10.9.2"" Restart Required? Screw it, it'…","438375138908581888","18247541","2014-02-25 18:09:12 +0000","" -"438175053792833536","","","2014-02-25 04:54:08 +0000","Twitterrific","RT @appcode: Tip of the day: Detecting unreachable code is easy with AppCode. Can your IDE do the same? http://t.co/ap5XXr6W7n","437896886649757696","256494877","2014-02-24 10:28:48 +0000","https://twitter.com/appcode/status/437896886649757696/photo/1,https://twitter.com/appcode/status/437896886649757696/photo/1" -"438157636194668544","","","2014-02-25 03:44:55 +0000","Twitterrific","Microsoft will have to assemble an Android development toolchain if it makes Android phones. Including Java. That'd be something.","","","","" +"438175053792833536","","","2014-02-25 04:54:08 +0000","Twitterrific for iOS","RT @appcode: Tip of the day: Detecting unreachable code is easy with AppCode. Can your IDE do the same? http://t.co/ap5XXr6W7n","437896886649757696","256494877","2014-02-24 10:28:48 +0000","https://twitter.com/appcode/status/437896886649757696/photo/1,https://twitter.com/appcode/status/437896886649757696/photo/1" +"438157636194668544","","","2014-02-25 03:44:55 +0000","Twitterrific for iOS","Microsoft will have to assemble an Android development toolchain if it makes Android phones. Including Java. That'd be something.","","","","" "438144598309748736","","","2014-02-25 02:53:07 +0000","iOS","The Comcast-Netflix deal isn't a bad sign of things to come. http://t.co/PfT3lq9mgW","","","","http://blog.streamingmedia.com/2014/02/media-botching-coverage-netflix-comcast-deal-getting-basics-wrong.html" -"438024900209422336","438004977835859968","15122081","2014-02-24 18:57:28 +0000","Twitterrific for Mac","BREAKING: @nerdtalker is live-tweeting his jamon adventures from #MWC2014. Follow him for updates on where and when he eats too much jamon.","","","","" -"437995498343899136","437970949585911808","3594","2014-02-24 17:00:39 +0000","Twitterrific","@ebryn @danielbeach I have done very little Django but I think it embraces convention as well.","","","","" -"437386070750027776","437378529341472768","11973362","2014-02-23 00:39:00 +0000","Twitterrific","@typeoneerror 🎉👍😀🎊","","","","" -"437289370526052353","","","2014-02-22 18:14:45 +0000","Twitterrific","RT @JimRoepcke: Why haven’t SSL patches been released for OS X yet?","437271378492809216","894911","2014-02-22 17:03:15 +0000","" -"437289057987489792","437260704135909376","15122081","2014-02-22 18:13:30 +0000","Twitterrific","@nerdtalker I don't know what that is but that all looks delicious.","","","","" -"437247952482889729","","","2014-02-22 15:30:10 +0000","Twitterrific","Wow. This is brutal. And Macs are still affected? ಠ_ಠ RT @agl__: Apple's SSL/TLS bug: https://t.co/G89cXLHSXB","","","","https://www.imperialviolet.org/2014/02/22/applebug.html" -"437093753350680576","","","2014-02-22 05:17:26 +0000","Twitterrific","RT @exponentfm: Hello World. +"438024900209422336","438004977835859968","15122081","2014-02-24 18:57:28 +0000","Twitterrific for Mac","BREAKING: @nerdtalker is live-tweeting his jamon adventures from #MWC2014. Follow him for updates on where and when he eats too much jamon.","","","","" +"437995498343899136","437970949585911808","3594","2014-02-24 17:00:39 +0000","Twitterrific for iOS","@ebryn @danielbeach I have done very little Django but I think it embraces convention as well.","","","","" +"437386070750027776","437378529341472768","11973362","2014-02-23 00:39:00 +0000","Twitterrific for iOS","@typeoneerror 🎉👍😀🎊","","","","" +"437289370526052353","","","2014-02-22 18:14:45 +0000","Twitterrific for iOS","RT @JimRoepcke: Why haven’t SSL patches been released for OS X yet?","437271378492809216","894911","2014-02-22 17:03:15 +0000","" +"437289057987489792","437260704135909376","15122081","2014-02-22 18:13:30 +0000","Twitterrific for iOS","@nerdtalker I don't know what that is but that all looks delicious.","","","","" +"437247952482889729","","","2014-02-22 15:30:10 +0000","Twitterrific for iOS","Wow. This is brutal. And Macs are still affected? ಠ_ಠ RT @agl__: Apple's SSL/TLS bug: https://t.co/G89cXLHSXB","","","","https://www.imperialviolet.org/2014/02/22/applebug.html" +"437093753350680576","","","2014-02-22 05:17:26 +0000","Twitterrific for iOS","RT @exponentfm: Hello World. http://t.co/6Va8HmKMZV","437077893907095552","1923374760","2014-02-22 04:14:25 +0000","http://exponent.fm,http://exponent.fm" -"437066721958977536","437061129387270144","14206068","2014-02-22 03:30:01 +0000","Twitterrific","@tlrobinson 13"" or 15""?","","","","" -"437008832548466688","","","2014-02-21 23:39:59 +0000","Twitterrific for Mac","RT @csoghoian: Don't worry. The security update used to patch Apple's iOS SSL authentication flaw will be delivered to you securely via a S…","436997563343200256","14669471","2014-02-21 22:55:12 +0000","" -"437006954045517824","","","2014-02-21 23:32:31 +0000","Twitterrific for Mac","RT @mariaignatova: Hilarious yet absolutely spot-on writing rules http://t.co/J7fDjp6Ozr","436974335098486784","55608606","2014-02-21 21:22:54 +0000","https://twitter.com/mariaignatova/status/436974335098486784/photo/1,https://twitter.com/mariaignatova/status/436974335098486784/photo/1" -"437006020712230912","436963320650690560","11973362","2014-02-21 23:28:49 +0000","Twitterrific for Mac","@typeoneerror woohoo!","","","","" -"436941598589333504","436937906494525440","733813","2014-02-21 19:12:49 +0000","Twitterrific for Mac","@stevenf Also, if you accidentally add a duplicate instance variable PHP segfaults without an error message. Yay PHP!","","","","" -"436941496709697537","436937906494525440","733813","2014-02-21 19:12:25 +0000","Twitterrific for Mac","@stevenf You can also call static methods from instance context and vice versa. Can’t have static & instance methods with the same name.","","","","" -"436933930915098624","","","2014-02-21 18:42:21 +0000","Twitterrific for Mac","RT @fyrite: @_sjs yup, one of the reasons I've come to prefer sublime text over Textpad","436932322391101440","232701963","2014-02-21 18:35:58 +0000","" -"436928666912567296","","","2014-02-21 18:21:26 +0000","Twitterrific for Mac","Are you using multi cursors in your text editor? TextMate and Sublime Text famously have great support for this. http://t.co/9GQJ2Ya97D","","","","http://i.imgur.com/XH6icZO.gif" -"436926546477985792","436918104845987840","752673","2014-02-21 18:13:01 +0000","Twitterrific for Mac","@jeresig Not to mention navigation with multiple cursors active! http://t.co/9GQJ2Ya97D … I love this feature so hard.","","","","http://i.imgur.com/XH6icZO.gif" -"436890127395061760","","","2014-02-21 15:48:18 +0000","Twitterrific","RT @RichardDawkins: I would use ""troll"" to mean someone who seeks not to enlighten, persuade or amuse, but to ""get a rise out of"" or pointl…","436765377008529408","15143478","2014-02-21 07:32:35 +0000","" -"436890117613965313","","","2014-02-21 15:48:15 +0000","Twitterrific","RT @RichardDawkins: Anyone who loves language welcomes useful neologisms. But ""troll"" is increasingly used to mean only ""someone who disagr…","436765145617145856","15143478","2014-02-21 07:31:40 +0000","" -"436750979422113792","436746164738609152","22196723","2014-02-21 06:35:22 +0000","Twitterrific","@markkolich lulz, start a war! Pipe /dev/zero into a POST request. +"437066721958977536","437061129387270144","14206068","2014-02-22 03:30:01 +0000","Twitterrific for iOS","@tlrobinson 13"" or 15""?","","","","" +"437006954045517824","","","2014-02-21 23:32:31 +0000","Twitterrific for Mac","RT @mariaignatova: Hilarious yet absolutely spot-on writing rules http://t.co/J7fDjp6Ozr","436974335098486784","55608606","2014-02-21 21:22:54 +0000","https://twitter.com/mariaignatova/status/436974335098486784/photo/1,https://twitter.com/mariaignatova/status/436974335098486784/photo/1" +"437006020712230912","436963320650690560","11973362","2014-02-21 23:28:49 +0000","Twitterrific for Mac","@typeoneerror woohoo!","","","","" +"436941598589333504","436937906494525440","733813","2014-02-21 19:12:49 +0000","Twitterrific for Mac","@stevenf Also, if you accidentally add a duplicate instance variable PHP segfaults without an error message. Yay PHP!","","","","" +"436941496709697537","436937906494525440","733813","2014-02-21 19:12:25 +0000","Twitterrific for Mac","@stevenf You can also call static methods from instance context and vice versa. Can’t have static & instance methods with the same name.","","","","" +"436933930915098624","","","2014-02-21 18:42:21 +0000","Twitterrific for Mac","RT @fyrite: @_sjs yup, one of the reasons I've come to prefer sublime text over Textpad","436932322391101440","232701963","2014-02-21 18:35:58 +0000","" +"436928666912567296","","","2014-02-21 18:21:26 +0000","Twitterrific for Mac","Are you using multi cursors in your text editor? TextMate and Sublime Text famously have great support for this. http://t.co/9GQJ2Ya97D","","","","http://i.imgur.com/XH6icZO.gif" +"436926546477985792","436918104845987840","752673","2014-02-21 18:13:01 +0000","Twitterrific for Mac","@jeresig Not to mention navigation with multiple cursors active! http://t.co/9GQJ2Ya97D … I love this feature so hard.","","","","http://i.imgur.com/XH6icZO.gif" +"436890127395061760","","","2014-02-21 15:48:18 +0000","Twitterrific for iOS","RT @RichardDawkins: I would use ""troll"" to mean someone who seeks not to enlighten, persuade or amuse, but to ""get a rise out of"" or pointl…","436765377008529408","15143478","2014-02-21 07:32:35 +0000","" +"436890117613965313","","","2014-02-21 15:48:15 +0000","Twitterrific for iOS","RT @RichardDawkins: Anyone who loves language welcomes useful neologisms. But ""troll"" is increasingly used to mean only ""someone who disagr…","436765145617145856","15143478","2014-02-21 07:31:40 +0000","" +"436750979422113792","436746164738609152","22196723","2014-02-21 06:35:22 +0000","Twitterrific for iOS","@markkolich lulz, start a war! Pipe /dev/zero into a POST request. Content-Length: ∞","","","","" -"436392936951922688","","","2014-02-20 06:52:38 +0000","Twitterrific","RT @joeerl: http://t.co/OEfKeS2c1P #erlang and #WhatsApp - this is what a 55 people company can do with erlang.","436378084049420288","51546468","2014-02-20 05:53:37 +0000","http://ow.ly/tO7kd,http://ow.ly/tO7kd" -"436341629603942400","","","2014-02-20 03:28:46 +0000","Twitterrific","RT @BenedictEvans: Flickr: $35m. +"436392936951922688","","","2014-02-20 06:52:38 +0000","Twitterrific for iOS","RT @joeerl: http://t.co/OEfKeS2c1P #erlang and #WhatsApp - this is what a 55 people company can do with erlang.","436378084049420288","51546468","2014-02-20 05:53:37 +0000","http://ow.ly/tO7kd,http://ow.ly/tO7kd" +"436341629603942400","","","2014-02-20 03:28:46 +0000","Twitterrific for iOS","RT @BenedictEvans: Flickr: $35m. Youtube: $1.65bn Whatsapp: $19bn. Mobile is big. And global. And the next computing platform. Paying att…","436271026914095104","1236101","2014-02-19 22:48:13 +0000","" -"436339500386488320","436265964897042432","809685","2014-02-20 03:20:18 +0000","Twitterrific","@garybernhardt Hmmm... because it's like longjmp?","","","","" -"435997923952713728","435960043238735872","74837444","2014-02-19 04:43:00 +0000","Twitterrific","@Badger32d Welcome to the first world!","","","","" -"435997573451509760","","","2014-02-19 04:41:36 +0000","Twitterrific","RT @topherbullock: @tenderlove throw some ""!important"" on that, its basically the YOLO of CSS.","435951509977567233","83164095","2014-02-19 01:38:34 +0000","" -"435953280103903232","","","2014-02-19 01:45:36 +0000","Twitterrific","RT @benschwarz: ""Menu"" label tested better than ""Menu"" label w/ hamburger +"436339500386488320","436265964897042432","809685","2014-02-20 03:20:18 +0000","Twitterrific for iOS","@garybernhardt Hmmm... because it's like longjmp?","","","","" +"435997923952713728","435960043238735872","74837444","2014-02-19 04:43:00 +0000","Twitterrific for iOS","@Badger32d Welcome to the first world!","","","","" +"435997573451509760","","","2014-02-19 04:41:36 +0000","Twitterrific for iOS","RT @topherbullock: @tenderlove throw some ""!important"" on that, its basically the YOLO of CSS.","435951509977567233","83164095","2014-02-19 01:38:34 +0000","" +"435953280103903232","","","2014-02-19 01:45:36 +0000","Twitterrific for iOS","RT @benschwarz: ""Menu"" label tested better than ""Menu"" label w/ hamburger http://t.co/LWjWXMXkv7","435922467920420865","14431882","2014-02-18 23:43:10 +0000","http://exisweb.net/mobile-menu-abtest,http://exisweb.net/mobile-menu-abtest" -"435898903158743040","435839772720771072","208595633","2014-02-18 22:09:31 +0000","Twitterrific for Mac","@bobodtech @techpinions The absolute worst part of using someone’s laptop that isn’t a MacBook is the awful touchpad. Invariably.","","","","" -"435898782530560000","","","2014-02-18 22:09:03 +0000","Twitterrific for Mac","RT @bobodtech: The Trouble with Touchpads, my latest column @techpinions: http://t.co/uIaPIQ4Ltf","435839772720771072","208595633","2014-02-18 18:14:33 +0000","http://bit.ly/O57ikB,http://bit.ly/O57ikB" -"435892012332507137","435889828610056192","809685","2014-02-18 21:42:08 +0000","Twitterrific for Mac","@garybernhardt Ah, gotcha. It must run before ~/.zshenv and ~/.zshrc.","","","","" -"435889340971896832","435868022159310848","809685","2014-02-18 21:31:31 +0000","Twitterrific for Mac","@garybernhardt At least, in the 8 years I’ve been using zsh on OS X I’ve never experienced that PATH clobbering behaviour.","","","","" -"435889187317751809","435868022159310848","809685","2014-02-18 21:30:55 +0000","Twitterrific for Mac","@garybernhardt Wow, it prepends stuff on PATH. That’s crazy. If you have a .zshrc or .zshenv it doesn’t seem to use /etc/zshenv though.","","","","" -"435861617121587201","","33423","2014-02-18 19:41:22 +0000","Twitterrific for Mac","@gruber There’s a difference between being able to discern an individual pixel and being able to see more detail.","","","","" -"435834814222970880","","","2014-02-18 17:54:51 +0000","Twitterrific for Mac","RT @tylerhunt: Checking out pull requests locally: https://t.co/yZoEV6KEjJ. This is so much easier than adding a new remote. Just `git chec…","435796383111475200","4384181","2014-02-18 15:22:09 +0000","https://help.github.com/articles/checking-out-pull-requests-locally,https://help.github.com/articles/checking-out-pull-requests-locally" -"435562351132028928","","","2014-02-17 23:52:11 +0000","Twitterrific for Mac","RT @anildash: All retweets are theft.","435547057408212993","36823","2014-02-17 22:51:25 +0000","" -"435505026933342209","","","2014-02-17 20:04:24 +0000","Twitterrific for Mac","“Apple may also be asking some existing clone apps to change their names to put an end to the Flappy frenzy.”","","","","" -"435504438384422912","","","2014-02-17 20:02:04 +0000","Twitterrific for Mac","RT @trek: You can help clean up old Ember.js StackOverflow questions: +"435898903158743040","435839772720771072","208595633","2014-02-18 22:09:31 +0000","Twitterrific for Mac","@bobodtech @techpinions The absolute worst part of using someone’s laptop that isn’t a MacBook is the awful touchpad. Invariably.","","","","" +"435898782530560000","","","2014-02-18 22:09:03 +0000","Twitterrific for Mac","RT @bobodtech: The Trouble with Touchpads, my latest column @techpinions: http://t.co/uIaPIQ4Ltf","435839772720771072","208595633","2014-02-18 18:14:33 +0000","http://bit.ly/O57ikB,http://bit.ly/O57ikB" +"435892012332507137","435889828610056192","809685","2014-02-18 21:42:08 +0000","Twitterrific for Mac","@garybernhardt Ah, gotcha. It must run before ~/.zshenv and ~/.zshrc.","","","","" +"435889340971896832","435868022159310848","809685","2014-02-18 21:31:31 +0000","Twitterrific for Mac","@garybernhardt At least, in the 8 years I’ve been using zsh on OS X I’ve never experienced that PATH clobbering behaviour.","","","","" +"435889187317751809","435868022159310848","809685","2014-02-18 21:30:55 +0000","Twitterrific for Mac","@garybernhardt Wow, it prepends stuff on PATH. That’s crazy. If you have a .zshrc or .zshenv it doesn’t seem to use /etc/zshenv though.","","","","" +"435861617121587201","","33423","2014-02-18 19:41:22 +0000","Twitterrific for Mac","@gruber There’s a difference between being able to discern an individual pixel and being able to see more detail.","","","","" +"435834814222970880","","","2014-02-18 17:54:51 +0000","Twitterrific for Mac","RT @tylerhunt: Checking out pull requests locally: https://t.co/yZoEV6KEjJ. This is so much easier than adding a new remote. Just `git chec…","435796383111475200","4384181","2014-02-18 15:22:09 +0000","https://help.github.com/articles/checking-out-pull-requests-locally,https://help.github.com/articles/checking-out-pull-requests-locally" +"435562351132028928","","","2014-02-17 23:52:11 +0000","Twitterrific for Mac","RT @anildash: All retweets are theft.","435547057408212993","36823","2014-02-17 22:51:25 +0000","" +"435505026933342209","","","2014-02-17 20:04:24 +0000","Twitterrific for Mac","“Apple may also be asking some existing clone apps to change their names to put an end to the Flappy frenzy.”","","","","" +"435504438384422912","","","2014-02-17 20:02:04 +0000","Twitterrific for Mac","RT @trek: You can help clean up old Ember.js StackOverflow questions: http://t.co/RUMaPaWzH4 tag them with ember-invalid and we'll come r…","435502536808611841","1291711","2014-02-17 19:54:30 +0000","http://stackoverflow.com/questions/tagged/ember-invalid,http://stackoverflow.com/questions/tagged/ember-invalid" -"435503649754599424","435490232222638080","15292261","2014-02-17 19:58:56 +0000","Twitterrific for Mac","@gregbate That’s cool to see! When’s the launch? ;-)","","","","" -"435488133749035008","","","2014-02-17 18:57:16 +0000","Twitterrific for Mac","RT @jammiesblvd: The Birds of the App Store. http://t.co/ylFLR107Pk","435485100315119616","213803207","2014-02-17 18:45:13 +0000","https://twitter.com/jammiesblvd/status/435485100315119616/photo/1,https://twitter.com/jammiesblvd/status/435485100315119616/photo/1" -"435453282136252416","","","2014-02-17 16:38:47 +0000","Twitterrific for Mac","RT @monkbent: This might be a great article. http://t.co/ZmzbDFmqP2","435343819135913984","40273","2014-02-17 09:23:49 +0000","http://www.theverge.com/2014/2/14/5411934/youre-not-going-to-read-this,http://www.theverge.com/2014/2/14/5411934/youre-not-going-to-read-this" -"435450845291741185","","","2014-02-17 16:29:06 +0000","Twitterrific for Mac","RT @CompSciFact: ""One person's syntax is another person's semantics."" -- Joseph Goguen","435431033681764352","220145170","2014-02-17 15:10:23 +0000","" +"435503649754599424","435490232222638080","15292261","2014-02-17 19:58:56 +0000","Twitterrific for Mac","@gregbate That’s cool to see! When’s the launch? ;-)","","","","" +"435488133749035008","","","2014-02-17 18:57:16 +0000","Twitterrific for Mac","RT @jammiesblvd: The Birds of the App Store. http://t.co/ylFLR107Pk","435485100315119616","213803207","2014-02-17 18:45:13 +0000","https://twitter.com/jammiesblvd/status/435485100315119616/photo/1,https://twitter.com/jammiesblvd/status/435485100315119616/photo/1" +"435453282136252416","","","2014-02-17 16:38:47 +0000","Twitterrific for Mac","RT @monkbent: This might be a great article. http://t.co/ZmzbDFmqP2","435343819135913984","40273","2014-02-17 09:23:49 +0000","http://www.theverge.com/2014/2/14/5411934/youre-not-going-to-read-this,http://www.theverge.com/2014/2/14/5411934/youre-not-going-to-read-this" +"435450845291741185","","","2014-02-17 16:29:06 +0000","Twitterrific for Mac","RT @CompSciFact: ""One person's syntax is another person's semantics."" -- Joseph Goguen","435431033681764352","220145170","2014-02-17 15:10:23 +0000","" "435298502197776385","","","2014-02-17 06:23:45 +0000","OS X","% uglifyjs --compress --mangle --screw-ie8","","","","" -"435213216239468544","435206591273385984","18137723","2014-02-17 00:44:51 +0000","Twitterrific","@raganwald It depends on the context and purpose of the discussion. It could be acute, or it could be a distraction.","","","","" -"435212699924844545","435206591273385984","18137723","2014-02-17 00:42:48 +0000","Twitterrific","@raganwald It depends on the pattern being used. If it's CS or Ember.Object then the pattern is classical. That's not to say it always is.","","","","" -"435193132104159232","435191698897911808","18137723","2014-02-16 23:25:02 +0000","Twitterrific","@raganwald It's like talking about pushing arguments on the stack and jumping instead of saying that you're calling a function.","","","","" -"435192844970496000","435191698897911808","18137723","2014-02-16 23:23:54 +0000","Twitterrific","@raganwald I see it as a design pattern. You don't have to explain the mechanism if everyone knows the generation gap, or class, pattern.","","","","" -"435190962327805953","435182468459540480","18137723","2014-02-16 23:16:25 +0000","Twitterrific","@raganwald There's no reason to use more verbose explanations if everyone understands what is being discussed with more concise jargon.","","","","" -"435190439751069696","435182468459540480","18137723","2014-02-16 23:14:20 +0000","Twitterrific","@raganwald Exactly. Unless it's relevant to take advantage of features specific to prototypal inheritance. Then talk prototypes.","","","","" -"435182456287666176","435182004217577472","16472748","2014-02-16 22:42:37 +0000","Twitterrific","@caseyjohnston Oh, maybe I'm thinking of the iOS app? Not sure now but I think something besides the PS3 does it as well.","","","","" -"435182117597622272","435178680227078144","18137723","2014-02-16 22:41:16 +0000","Twitterrific","@raganwald As long as everyone's on the same page the word class can have a real and useful meaning.","","","","" -"435181978657095680","435178680227078144","18137723","2014-02-16 22:40:43 +0000","Twitterrific","@raganwald If you're using a classical pattern then you have, as you put it, a ""class"" anyway. Mainly just the mechanism differs.","","","","" -"435181644538859520","435178133361549312","16472748","2014-02-16 22:39:24 +0000","Twitterrific","@caseyjohnston The problem is that the PS3 and website do that by default. Binge inducing rather than detection.","","","","" -"435092727714160640","","","2014-02-16 16:46:04 +0000","Twitterrific for Mac","Now I sometimes forget parentheses in JavaScript. Shouldn’t take long to recover. +"435213216239468544","435206591273385984","18137723","2014-02-17 00:44:51 +0000","Twitterrific for iOS","@raganwald It depends on the context and purpose of the discussion. It could be acute, or it could be a distraction.","","","","" +"435212699924844545","435206591273385984","18137723","2014-02-17 00:42:48 +0000","Twitterrific for iOS","@raganwald It depends on the pattern being used. If it's CS or Ember.Object then the pattern is classical. That's not to say it always is.","","","","" +"435193132104159232","435191698897911808","18137723","2014-02-16 23:25:02 +0000","Twitterrific for iOS","@raganwald It's like talking about pushing arguments on the stack and jumping instead of saying that you're calling a function.","","","","" +"435192844970496000","435191698897911808","18137723","2014-02-16 23:23:54 +0000","Twitterrific for iOS","@raganwald I see it as a design pattern. You don't have to explain the mechanism if everyone knows the generation gap, or class, pattern.","","","","" +"435190962327805953","435182468459540480","18137723","2014-02-16 23:16:25 +0000","Twitterrific for iOS","@raganwald There's no reason to use more verbose explanations if everyone understands what is being discussed with more concise jargon.","","","","" +"435190439751069696","435182468459540480","18137723","2014-02-16 23:14:20 +0000","Twitterrific for iOS","@raganwald Exactly. Unless it's relevant to take advantage of features specific to prototypal inheritance. Then talk prototypes.","","","","" +"435182456287666176","435182004217577472","16472748","2014-02-16 22:42:37 +0000","Twitterrific for iOS","@caseyjohnston Oh, maybe I'm thinking of the iOS app? Not sure now but I think something besides the PS3 does it as well.","","","","" +"435182117597622272","435178680227078144","18137723","2014-02-16 22:41:16 +0000","Twitterrific for iOS","@raganwald As long as everyone's on the same page the word class can have a real and useful meaning.","","","","" +"435181978657095680","435178680227078144","18137723","2014-02-16 22:40:43 +0000","Twitterrific for iOS","@raganwald If you're using a classical pattern then you have, as you put it, a ""class"" anyway. Mainly just the mechanism differs.","","","","" +"435181644538859520","435178133361549312","16472748","2014-02-16 22:39:24 +0000","Twitterrific for iOS","@caseyjohnston The problem is that the PS3 and website do that by default. Binge inducing rather than detection.","","","","" +"435092727714160640","","","2014-02-16 16:46:04 +0000","Twitterrific for Mac","Now I sometimes forget parentheses in JavaScript. Shouldn’t take long to recover. Hi. My name is Sami and I’m a recovering CoffeeScripter.","","","","" -"435092229292445696","","","2014-02-16 16:44:05 +0000","Twitterrific for Mac","I recently built a web app using Ember and Rails. Since CoffeeScript is the default in Rails I went with it, and I liked it.","","","","" -"434930802300690432","434900658098274304","14231571","2014-02-16 06:02:38 +0000","Twitterrific","@marcoarment Analyst: ""According to my awesome source, Apple may or may not introduce a new iPad model this year! Or maybe (not) next year!""","","","","" -"434800438156595200","","","2014-02-15 21:24:37 +0000","Twitterrific","Migrating from my homegrown static site generator to Harp (http://t.co/caPrcka5dn) and so far it's slick. Thanks @sintaxi!","","","","http://harpjs.com" -"434750921558331392","434749223083331584","1291711","2014-02-15 18:07:51 +0000","Twitterrific for Mac","@trek Try to put one over your head and then blow it up by exhaling out your nose. Not at all dangerous, I promise. +"435092229292445696","","","2014-02-16 16:44:05 +0000","Twitterrific for Mac","I recently built a web app using Ember and Rails. Since CoffeeScript is the default in Rails I went with it, and I liked it.","","","","" +"434930802300690432","434900658098274304","14231571","2014-02-16 06:02:38 +0000","Twitterrific for iOS","@marcoarment Analyst: ""According to my awesome source, Apple may or may not introduce a new iPad model this year! Or maybe (not) next year!""","","","","" +"434800438156595200","","","2014-02-15 21:24:37 +0000","Twitterrific for iOS","Migrating from my homegrown static site generator to Harp (http://t.co/caPrcka5dn) and so far it's slick. Thanks @sintaxi!","","","","http://harpjs.com" +"434750921558331392","434749223083331584","1291711","2014-02-15 18:07:51 +0000","Twitterrific for Mac","@trek Try to put one over your head and then blow it up by exhaling out your nose. Not at all dangerous, I promise. Safer: balloon animals.","","","","" -"434742367023685632","434700228445208579","18137723","2014-02-15 17:33:52 +0000","Twitterrific for Mac","@raganwald Kept hitting Cmd-R to run, couldn’t get past the third question. I am not used to writing code in a browser.","","","","" -"434591535170990080","","","2014-02-15 07:34:31 +0000","Twitterrific","RT @dontcallmeDOM: Apple just joined the #WebRTC Working Group; welcome on board, guys!","434448884262117376","19218240","2014-02-14 22:07:40 +0000","" -"434591482356301824","434448884262117376","19218240","2014-02-15 07:34:18 +0000","Twitterrific","@dontcallmeDOM @BenedictEvans Better late than never I suppose.","","","","" -"434442174789214208","","","2014-02-14 21:41:00 +0000","Twitterrific for Mac","Trying to write PHP without jumping through hoops is some bizarre kind of mental exercise.","","","","" -"434442001715449857","","","2014-02-14 21:40:19 +0000","Twitterrific for Mac","You can’t have a static and instance method with the same name in the same class in PHP. Sefgault without an error message.","","","","" -"434412063889186816","","","2014-02-14 19:41:21 +0000","Twitterrific for Mac","RT @codinghorror: Apparently the Silence of the Lambs was not actually a ""romance"" and thus is an ""inappropriate"" valentine reference. I re…","434381383847251969","5637652","2014-02-14 17:39:26 +0000","" -"434412053130801153","","","2014-02-14 19:41:19 +0000","Twitterrific for Mac","RT @codinghorror: Happy Valentine's Day! Here's to placing the lotion in someone's basket. http://t.co/6DmZG3cZBs","434379473601826816","5637652","2014-02-14 17:31:51 +0000","https://twitter.com/codinghorror/status/434379473601826816/photo/1,https://twitter.com/codinghorror/status/434379473601826816/photo/1" -"434411478800535552","","","2014-02-14 19:39:02 +0000","Twitterrific for Mac","RT @fjsteele: My 7yo daughter captured the essence of programming after an hour with @hopscotch http://t.co/693pMHmZFX","434249935316615168","12242992","2014-02-14 08:57:07 +0000","https://twitter.com/fjsteele/status/434249935316615168/photo/1,https://twitter.com/fjsteele/status/434249935316615168/photo/1" +"434742367023685632","434700228445208579","18137723","2014-02-15 17:33:52 +0000","Twitterrific for Mac","@raganwald Kept hitting Cmd-R to run, couldn’t get past the third question. I am not used to writing code in a browser.","","","","" +"434591535170990080","","","2014-02-15 07:34:31 +0000","Twitterrific for iOS","RT @dontcallmeDOM: Apple just joined the #WebRTC Working Group; welcome on board, guys!","434448884262117376","19218240","2014-02-14 22:07:40 +0000","" +"434591482356301824","434448884262117376","19218240","2014-02-15 07:34:18 +0000","Twitterrific for iOS","@dontcallmeDOM @BenedictEvans Better late than never I suppose.","","","","" +"434442174789214208","","","2014-02-14 21:41:00 +0000","Twitterrific for Mac","Trying to write PHP without jumping through hoops is some bizarre kind of mental exercise.","","","","" +"434442001715449857","","","2014-02-14 21:40:19 +0000","Twitterrific for Mac","You can’t have a static and instance method with the same name in the same class in PHP. Sefgault without an error message.","","","","" +"434412063889186816","","","2014-02-14 19:41:21 +0000","Twitterrific for Mac","RT @codinghorror: Apparently the Silence of the Lambs was not actually a ""romance"" and thus is an ""inappropriate"" valentine reference. I re…","434381383847251969","5637652","2014-02-14 17:39:26 +0000","" +"434412053130801153","","","2014-02-14 19:41:19 +0000","Twitterrific for Mac","RT @codinghorror: Happy Valentine's Day! Here's to placing the lotion in someone's basket. http://t.co/6DmZG3cZBs","434379473601826816","5637652","2014-02-14 17:31:51 +0000","https://twitter.com/codinghorror/status/434379473601826816/photo/1,https://twitter.com/codinghorror/status/434379473601826816/photo/1" +"434411478800535552","","","2014-02-14 19:39:02 +0000","Twitterrific for Mac","RT @fjsteele: My 7yo daughter captured the essence of programming after an hour with @hopscotch http://t.co/693pMHmZFX","434249935316615168","12242992","2014-02-14 08:57:07 +0000","https://twitter.com/fjsteele/status/434249935316615168/photo/1,https://twitter.com/fjsteele/status/434249935316615168/photo/1" "434380399645437952","","","2014-02-14 17:35:32 +0000","Twitter Web Client","RT @JosephMartel: @_sjs It's a social linguistic process.","434374384875077632","217540637","2014-02-14 17:11:38 +0000","" "434380386596966400","434374384875077632","217540637","2014-02-14 17:35:29 +0000","Twitter Web Client","@JosephMartel Heh, yeah. I can be a grumpy prescriptivist.","","","","" -"434363757104340992","","","2014-02-14 16:29:24 +0000","Twitterrific","""I know this sounds like a semantic quibble, but words mean things.""","","","","" -"434363552032247808","","","2014-02-14 16:28:35 +0000","Twitterrific","While I'm at it, the same goes for ""troll"". What word do we now use to mean what ""troll"" used to mean? We already had prank and joke. Argh.","","","","" -"434363217800753152","","","2014-02-14 16:27:15 +0000","Twitterrific","""Social messing"" isn't a thing. It's just ""messaging"". Why must people latch onto words and abuse them until they're meaningless?","","","","" -"434137749604409344","","","2014-02-14 01:31:20 +0000","Twitterrific","Honestly, it could be worse. http://t.co/40V8KP70JF +"434363757104340992","","","2014-02-14 16:29:24 +0000","Twitterrific for iOS","""I know this sounds like a semantic quibble, but words mean things.""","","","","" +"434363552032247808","","","2014-02-14 16:28:35 +0000","Twitterrific for iOS","While I'm at it, the same goes for ""troll"". What word do we now use to mean what ""troll"" used to mean? We already had prank and joke. Argh.","","","","" +"434363217800753152","","","2014-02-14 16:27:15 +0000","Twitterrific for iOS","""Social messing"" isn't a thing. It's just ""messaging"". Why must people latch onto words and abuse them until they're meaningless?","","","","" +"434137749604409344","","","2014-02-14 01:31:20 +0000","Twitterrific for iOS","Honestly, it could be worse. http://t.co/40V8KP70JF (Don't worry @anandshimpi it's strictly platonic!)","","","","http://twitamore.com/_sjs" -"434134852560887808","","","2014-02-14 01:19:49 +0000","Twitterrific for Mac","RT @JimRoepcke: The Heart and Stroke Foundation Owes Canadian Parents an Apology: http://t.co/yYDnOX8MEx","434130588744699904","894911","2014-02-14 01:02:52 +0000","http://youtu.be/PfGzJ4mkSa0,http://youtu.be/PfGzJ4mkSa0" -"434133250932367360","","","2014-02-14 01:13:27 +0000","Twitterrific for Mac","RT @stevenf: lol http://t.co/aqlxzTEwhq","434112678445846529","733813","2014-02-13 23:51:42 +0000","https://twitter.com/stevenf/status/434112678445846529/photo/1,https://twitter.com/stevenf/status/434112678445846529/photo/1" -"433772429232459776","433762468880330752","18740111","2014-02-13 01:19:40 +0000","Twitterrific for Mac","@machty I was going to use it, but it seemed to do way more than I needed and rolling some auth+forgotpass with has_secure_password is easy.","","","","" -"433745246946484224","433743109705310208","11973362","2014-02-12 23:31:40 +0000","Twitterrific for Mac","@typeoneerror Enjoy it while you can. Amazon sucks in Canada compared to the USA.","","","","" -"433503428828860416","","","2014-02-12 07:30:46 +0000","Twitterrific","RT @anandshimpi: Note: zero attempts to email me, no follow up tweets, the investigator also asked my mom for my email address…I tend to be…","433483288561590272","14618863","2014-02-12 06:10:44 +0000","" -"433503289942896640","","","2014-02-12 07:30:13 +0000","Twitterrific","RT @anandshimpi: Seriously, if at first you can’t reach me via twitter, apparently just hire a private investigator.","433482965361106944","14618863","2014-02-12 06:09:27 +0000","" -"433503278941208576","","","2014-02-12 07:30:10 +0000","Twitterrific","RT @anandshimpi: I landed from a trip a few hours ago, apparently the investigator followed my mom to her house and asked to speak to me wh…","433482757638197248","14618863","2014-02-12 06:08:37 +0000","" -"433503257516728320","","","2014-02-12 07:30:05 +0000","Twitterrific","RT @anandshimpi: What’s her next step for trying to get ahold of me? @CalTweagle hires a private investigator to try and track me down","433482503123652608","14618863","2014-02-12 06:07:37 +0000","" -"433503249203609600","","","2014-02-12 07:30:03 +0000","Twitterrific","RT @anandshimpi: So @CalTweagle sends me this tweet back at the end of January https://t.co/x4grLM16lD, Jan was particularly busy, didn’t r…","433482341328379904","14618863","2014-02-12 06:06:58 +0000","https://twitter.com/CalTweagle/status/429022175492710401,https://twitter.com/CalTweagle/status/429022175492710401" -"433503243281252352","","","2014-02-12 07:30:01 +0000","Twitterrific","RT @anandshimpi: Anyone up for bizarre story time?","433482137036414976","14618863","2014-02-12 06:06:09 +0000","" -"433503002905681920","","","2014-02-12 07:29:04 +0000","Twitterrific","People still care about this? http://t.co/2x6D8O0xXz","","","","https://twitter.com/izs/status/433464696289497088" -"433451939355824128","433446977809154048","14231571","2014-02-12 04:06:10 +0000","Twitterrific","@marcoarment Too picky to use the good parts of the language you know, and too pragmatic to switch to something better. You're an odd one.","","","","" -"433443861860323328","433442044837888000","14231571","2014-02-12 03:34:04 +0000","Twitterrific","@marcoarment Someone is going to hate it. If even one person uses it, something from it, or reports a bug, it's a net win. I say go for it.","","","","" -"433437132758077441","433424737402757120","129064295","2014-02-12 03:07:19 +0000","Twitterrific","@jerelunruh @tomdale At a certain point you're using services for your backend, whether that's at the persistence layer or the data centre.","","","","" -"433417774879109121","","","2014-02-12 01:50:24 +0000","Twitterrific","RT @timbray: How I’m thinking about browsers these days. http://t.co/DiqYFKSal6","433362625276018689","1235521","2014-02-11 22:11:16 +0000","https://twitter.com/timbray/status/433362625276018689/photo/1,https://twitter.com/timbray/status/433362625276018689/photo/1" -"433279175235891200","432720496338034688","23141473","2014-02-11 16:39:39 +0000","Twitterrific","@aurosan @siracusa Impressive. Real blondes *and* bleached blondes.","","","","" -"433271073199517696","","","2014-02-11 16:07:28 +0000","Twitterrific","RT @arqbackup: Seth's Blog: Do you love your customers? (We do!) +"434134852560887808","","","2014-02-14 01:19:49 +0000","Twitterrific for Mac","RT @JimRoepcke: The Heart and Stroke Foundation Owes Canadian Parents an Apology: http://t.co/yYDnOX8MEx","434130588744699904","894911","2014-02-14 01:02:52 +0000","http://youtu.be/PfGzJ4mkSa0,http://youtu.be/PfGzJ4mkSa0" +"433772429232459776","433762468880330752","18740111","2014-02-13 01:19:40 +0000","Twitterrific for Mac","@machty I was going to use it, but it seemed to do way more than I needed and rolling some auth+forgotpass with has_secure_password is easy.","","","","" +"433745246946484224","433743109705310208","11973362","2014-02-12 23:31:40 +0000","Twitterrific for Mac","@typeoneerror Enjoy it while you can. Amazon sucks in Canada compared to the USA.","","","","" +"433503428828860416","","","2014-02-12 07:30:46 +0000","Twitterrific for iOS","RT @anandshimpi: Note: zero attempts to email me, no follow up tweets, the investigator also asked my mom for my email address…I tend to be…","433483288561590272","14618863","2014-02-12 06:10:44 +0000","" +"433503289942896640","","","2014-02-12 07:30:13 +0000","Twitterrific for iOS","RT @anandshimpi: Seriously, if at first you can’t reach me via twitter, apparently just hire a private investigator.","433482965361106944","14618863","2014-02-12 06:09:27 +0000","" +"433503278941208576","","","2014-02-12 07:30:10 +0000","Twitterrific for iOS","RT @anandshimpi: I landed from a trip a few hours ago, apparently the investigator followed my mom to her house and asked to speak to me wh…","433482757638197248","14618863","2014-02-12 06:08:37 +0000","" +"433503257516728320","","","2014-02-12 07:30:05 +0000","Twitterrific for iOS","RT @anandshimpi: What’s her next step for trying to get ahold of me? @CalTweagle hires a private investigator to try and track me down","433482503123652608","14618863","2014-02-12 06:07:37 +0000","" +"433503249203609600","","","2014-02-12 07:30:03 +0000","Twitterrific for iOS","RT @anandshimpi: So @CalTweagle sends me this tweet back at the end of January https://t.co/x4grLM16lD, Jan was particularly busy, didn’t r…","433482341328379904","14618863","2014-02-12 06:06:58 +0000","https://twitter.com/CalTweagle/status/429022175492710401,https://twitter.com/CalTweagle/status/429022175492710401" +"433503243281252352","","","2014-02-12 07:30:01 +0000","Twitterrific for iOS","RT @anandshimpi: Anyone up for bizarre story time?","433482137036414976","14618863","2014-02-12 06:06:09 +0000","" +"433503002905681920","","","2014-02-12 07:29:04 +0000","Twitterrific for iOS","People still care about this? http://t.co/2x6D8O0xXz","","","","https://twitter.com/izs/status/433464696289497088" +"433451939355824128","433446977809154048","14231571","2014-02-12 04:06:10 +0000","Twitterrific for iOS","@marcoarment Too picky to use the good parts of the language you know, and too pragmatic to switch to something better. You're an odd one.","","","","" +"433443861860323328","433442044837888000","14231571","2014-02-12 03:34:04 +0000","Twitterrific for iOS","@marcoarment Someone is going to hate it. If even one person uses it, something from it, or reports a bug, it's a net win. I say go for it.","","","","" +"433437132758077441","433424737402757120","129064295","2014-02-12 03:07:19 +0000","Twitterrific for iOS","@jerelunruh @tomdale At a certain point you're using services for your backend, whether that's at the persistence layer or the data centre.","","","","" +"433417774879109121","","","2014-02-12 01:50:24 +0000","Twitterrific for iOS","RT @timbray: How I’m thinking about browsers these days. http://t.co/DiqYFKSal6","433362625276018689","1235521","2014-02-11 22:11:16 +0000","https://twitter.com/timbray/status/433362625276018689/photo/1,https://twitter.com/timbray/status/433362625276018689/photo/1" +"433279175235891200","432720496338034688","23141473","2014-02-11 16:39:39 +0000","Twitterrific for iOS","@aurosan @siracusa Impressive. Real blondes *and* bleached blondes.","","","","" +"433271073199517696","","","2014-02-11 16:07:28 +0000","Twitterrific for iOS","RT @arqbackup: Seth's Blog: Do you love your customers? (We do!) http://t.co/jRF7akW6Dv","433241235684593664","76699143","2014-02-11 14:08:54 +0000","http://sethgodin.typepad.com/seths_blog/2014/02/do-you-love-your-customers.html,http://sethgodin.typepad.com/seths_blog/2014/02/do-you-love-your-customers.html" -"433010575543529472","433003461328642048","232701963","2014-02-10 22:52:20 +0000","Twitterrific for Mac","@fyrite Nooooooo!","","","","" -"432952365264535552","432942086883921921","636923","2014-02-10 19:01:02 +0000","Twitterrific","@siracusa You're not doing them a favour. Let us put them out of our misery.","","","","" -"432940869717463040","","","2014-02-10 18:15:21 +0000","Twitterrific for Mac","Google image search for “derp dog” is a gold mine. http://t.co/PDUPXrrkXd","","","","http://www.google.com/images?q=derp+dog" -"432929135640330240","","","2014-02-10 17:28:44 +0000","Twitterrific for Mac","RT @gte: This is not a promise but I promise that our next Çingleton will feature a mechanical mammoth.","432762648141107200","7125712","2014-02-10 06:27:10 +0000","" -"432779082560839681","432759702582087680","894911","2014-02-10 07:32:28 +0000","Twitterrific","@JimRoepcke Ha ha. I was going to see if there was anything interesting. Maybe I should check it out.","","","","" -"432726976550289409","","","2014-02-10 04:05:25 +0000","Twitterrific","RT @marcoarment: Now try to match your Flappy Bird high score in Desert Bus.","432689586985504768","14231571","2014-02-10 01:36:51 +0000","" -"432381020910788608","432205693114781696","14231571","2014-02-09 05:10:43 +0000","Twitterrific","@marcoarment Classic case of worse is better. For most people the benefits outweigh the poor design they're not aware of, or can accept.","","","","" -"432380828799078401","432205693114781696","14231571","2014-02-09 05:09:57 +0000","Twitterrific","@marcoarment People get worked up because the language is technically abysmal from a design perspective. It's proven itself anyway though.","","","","" -"432271957023670273","","","2014-02-08 21:57:20 +0000","Twitterrific for Mac","RT @codinghorror: @marcoarment server herpes!","432201773294432256","5637652","2014-02-08 17:18:27 +0000","" -"431986849569972224","431966121663541248","22196723","2014-02-08 03:04:25 +0000","Twitterrific","@markkolich if (browser.msie && browser.version <= 8) $('body').html('<iframe src=""http://t.co/cHTV4jCVjC""></iframe>')","","","","http://goatse.cx" -"431951859478040576","","","2014-02-08 00:45:23 +0000","Twitterrific for Mac","RT @HackerNewsOnion: A gorgeous, opinionated JavaScript microframework hand-delivered to your door every month","431946978751021056","1263967268","2014-02-08 00:25:59 +0000","" -"431929243698593792","","","2014-02-07 23:15:31 +0000","Twitterrific for Mac","Throw it out. Start over. Switch to anything else. I’d rather write C.","","","","" -"431929113197043712","","","2014-02-07 23:15:00 +0000","Twitterrific for Mac","I try not to bash PHP just for the sake of it, but it’s a mess of a language. I mean, you can’t assign arrays to constants in PHP.","","","","" -"431928435456212992","","","2014-02-07 23:12:18 +0000","Twitterrific for Mac","I tried $(‘body’).append(<html>). I tried setting the google_* globals and then $.getScript to include their script. Nada. Zip. Zero. Zilch","","","","" -"431927809649295360","","","2014-02-07 23:09:49 +0000","Twitterrific for Mac","How do you use AdWords conversion tracking and remarketing tags in single-page web apps? It’s insane that this use case isn’t documented.","","","","" +"433010575543529472","433003461328642048","232701963","2014-02-10 22:52:20 +0000","Twitterrific for Mac","@fyrite Nooooooo!","","","","" +"432952365264535552","432942086883921921","636923","2014-02-10 19:01:02 +0000","Twitterrific for iOS","@siracusa You're not doing them a favour. Let us put them out of our misery.","","","","" +"432940869717463040","","","2014-02-10 18:15:21 +0000","Twitterrific for Mac","Google image search for “derp dog” is a gold mine. http://t.co/PDUPXrrkXd","","","","http://www.google.com/images?q=derp+dog" +"432929135640330240","","","2014-02-10 17:28:44 +0000","Twitterrific for Mac","RT @gte: This is not a promise but I promise that our next Çingleton will feature a mechanical mammoth.","432762648141107200","7125712","2014-02-10 06:27:10 +0000","" +"432779082560839681","432759702582087680","894911","2014-02-10 07:32:28 +0000","Twitterrific for iOS","@JimRoepcke Ha ha. I was going to see if there was anything interesting. Maybe I should check it out.","","","","" +"432726976550289409","","","2014-02-10 04:05:25 +0000","Twitterrific for iOS","RT @marcoarment: Now try to match your Flappy Bird high score in Desert Bus.","432689586985504768","14231571","2014-02-10 01:36:51 +0000","" +"432381020910788608","432205693114781696","14231571","2014-02-09 05:10:43 +0000","Twitterrific for iOS","@marcoarment Classic case of worse is better. For most people the benefits outweigh the poor design they're not aware of, or can accept.","","","","" +"432380828799078401","432205693114781696","14231571","2014-02-09 05:09:57 +0000","Twitterrific for iOS","@marcoarment People get worked up because the language is technically abysmal from a design perspective. It's proven itself anyway though.","","","","" +"432271957023670273","","","2014-02-08 21:57:20 +0000","Twitterrific for Mac","RT @codinghorror: @marcoarment server herpes!","432201773294432256","5637652","2014-02-08 17:18:27 +0000","" +"431986849569972224","431966121663541248","22196723","2014-02-08 03:04:25 +0000","Twitterrific for iOS","@markkolich if (browser.msie && browser.version <= 8) $('body').html('<iframe src=""http://t.co/cHTV4jCVjC""></iframe>')","","","","http://goatse.cx" +"431951859478040576","","","2014-02-08 00:45:23 +0000","Twitterrific for Mac","RT @HackerNewsOnion: A gorgeous, opinionated JavaScript microframework hand-delivered to your door every month","431946978751021056","1263967268","2014-02-08 00:25:59 +0000","" +"431929243698593792","","","2014-02-07 23:15:31 +0000","Twitterrific for Mac","Throw it out. Start over. Switch to anything else. I’d rather write C.","","","","" +"431929113197043712","","","2014-02-07 23:15:00 +0000","Twitterrific for Mac","I try not to bash PHP just for the sake of it, but it’s a mess of a language. I mean, you can’t assign arrays to constants in PHP.","","","","" +"431928435456212992","","","2014-02-07 23:12:18 +0000","Twitterrific for Mac","I tried $(‘body’).append(<html>). I tried setting the google_* globals and then $.getScript to include their script. Nada. Zip. Zero. Zilch","","","","" +"431927809649295360","","","2014-02-07 23:09:49 +0000","Twitterrific for Mac","How do you use AdWords conversion tracking and remarketing tags in single-page web apps? It’s insane that this use case isn’t documented.","","","","" "431926019147067392","","","2014-02-07 23:02:42 +0000","Twitter Web Client","Other things are still problems. Like being able to call instance methods from static context. http://t.co/Y8I28y0CP2 😃🔫","","","","http://samhuri.net/blog/2006.07.21-class-method-instance-method-it-doesnt-matter-to-php" -"431924845178130432","","","2014-02-07 22:58:02 +0000","Twitterrific for Mac","The last time I wrote PHP there was no late static binding. http://t.co/mJWAYK6SUW +"431924845178130432","","","2014-02-07 22:58:02 +0000","Twitterrific for Mac","The last time I wrote PHP there was no late static binding. http://t.co/mJWAYK6SUW Now it has it, but use self:: by mistake & it segfaults.","","","","http://samhuri.net/blog/2006.07.19-late-static-binding" -"431895590524313601","","","2014-02-07 21:01:47 +0000","Twitterrific for Mac","RT @wwwtxt: At any moment, I could lose my connectivity and disappear. Some would wonder what happened, some may cheer, most would never no…","431889370959069184","207756340","2014-02-07 20:37:04 +0000","" -"431592483600879617","431586558748016640","5637652","2014-02-07 00:57:21 +0000","Twitterrific for Mac","@codinghorror They probably chew through thousands of posts each day using mutt or something. +"431895590524313601","","","2014-02-07 21:01:47 +0000","Twitterrific for Mac","RT @wwwtxt: At any moment, I could lose my connectivity and disappear. Some would wonder what happened, some may cheer, most would never no…","431889370959069184","207756340","2014-02-07 20:37:04 +0000","" +"431592483600879617","431586558748016640","5637652","2014-02-07 00:57:21 +0000","Twitterrific for Mac","@codinghorror They probably chew through thousands of posts each day using mutt or something. (Love, the guy whining about Emacs shortcuts)","","","","" "431573720902021120","431572093608534016","13977542","2014-02-06 23:42:47 +0000","Twitter Web Client","@abuiles @discourse Is pretty annoying. There are userscripts & bookmarklets available that unbreak WMD fields on StackOverflow. Still lame.","","","","" -"431560254229204992","","","2014-02-06 22:49:17 +0000","Twitterrific for Mac","StackOverflow, a site for programmers, breaks Emacs keyboard shortcuts for navigating around a text field. +"431560254229204992","","","2014-02-06 22:49:17 +0000","Twitterrific for Mac","StackOverflow, a site for programmers, breaks Emacs keyboard shortcuts for navigating around a text field. *shakes fist at @codinghorror*","","","","" -"431471169510703104","","","2014-02-06 16:55:17 +0000","Twitterrific","RT @tapbot_paul: NBC should be ashamed of itself for running this story. +"431471169510703104","","","2014-02-06 16:55:17 +0000","Twitterrific for iOS","RT @tapbot_paul: NBC should be ashamed of itself for running this story. http://t.co/XBiIuOCwBz Details on what actually happened. http://…","431437996831686656","18247541","2014-02-06 14:43:28 +0000","http://www.youtube.com/watch?v=waEeJJVZ5P8,http://www.youtube.com/watch?v=waEeJJVZ5P8,http://www.reddit.com/r/videos/comments/1x2t3j/all_visitors_to_sochi_olympics_hacked_immediately/cf7sbwo" "431190536284696576","431159985637036032","643443","2014-02-05 22:20:09 +0000","Twitter Web Client","@Twitterrific 10-4, just thought I'd report in case it happens on the stable release as well.","","","","" -"431128951377760256","431113294594990080","18247541","2014-02-05 18:15:26 +0000","Twitterrific","@tapbot_paul Some places in the UK do this too. I felt so bad for the people I was staying with. Pretty nasty.","","","","" -"431128636343582720","","643443","2014-02-05 18:14:11 +0000","Twitterrific","@Twitterrific Opening the image on this tweet crashes consistently on retina iPad mini. But I'm on 7.1 beta 4, so... http://t.co/qk6PjXbNbb","","","","https://twitter.com/tomdale/status/431111918929985536" +"431128951377760256","431113294594990080","18247541","2014-02-05 18:15:26 +0000","Twitterrific for iOS","@tapbot_paul Some places in the UK do this too. I felt so bad for the people I was staying with. Pretty nasty.","","","","" +"431128636343582720","","643443","2014-02-05 18:14:11 +0000","Twitterrific for iOS","@Twitterrific Opening the image on this tweet crashes consistently on retina iPad mini. But I'm on 7.1 beta 4, so... http://t.co/qk6PjXbNbb","","","","https://twitter.com/tomdale/status/431111918929985536" "430881199557324800","430751510679400448","83275985","2014-02-05 01:50:58 +0000","Twitter Web Client","@eliperelman @AdamBFerg @tjholowaychuk Ha ha. New sport for Victorians, try to snap a selfie with TJ and Tobi.","","","","" -"430749615525097472","430745161438486529","894911","2014-02-04 17:08:05 +0000","Twitterrific","@JimRoepcke Congrats on the new job! And congrats to @Mashable, you picked the right guy.","","","","" -"430542709829292032","430538776813633536","88489441","2014-02-04 03:25:55 +0000","Twitterrific for Mac","@AdamBFerg Thanks for the feedback. I need to research that area and fix it up. Glad you find it helpful!","","","","" -"430524314002001920","","","2014-02-04 02:12:49 +0000","Twitterrific for Mac","Here are 2 permanent links for that diagram of an Ember app’s structure I posted yesterday http://t.co/jyUFX00DJk and http://t.co/gHD61LsyGc","","","","http://samhuri.net/blog/2014.02.03-ember-structure,http://discuss.emberjs.com/t/diagram-of-an-ember-apps-structure/4060" -"430524116546777088","430317721280983040","88489441","2014-02-04 02:12:02 +0000","Twitterrific for Mac","@AdamBFerg http://t.co/jyUFX00DJk and a discussion http://t.co/gHD61LsyGc","","","","http://samhuri.net/blog/2014.02.03-ember-structure,http://discuss.emberjs.com/t/diagram-of-an-ember-apps-structure/4060" -"430524051862208512","430278136400736256","56992811","2014-02-04 02:11:47 +0000","Twitterrific for Mac","@rauschma http://t.co/jyUFX00DJk and a discussion http://t.co/gHD61LsyGc","","","","http://samhuri.net/blog/2014.02.03-ember-structure,http://discuss.emberjs.com/t/diagram-of-an-ember-apps-structure/4060" -"430523938955735040","430172738326507520","1699999614","2014-02-04 02:11:20 +0000","Twitterrific for Mac","@EmberSherpa http://t.co/gHD61LsyGc … I wanted to ask for clarification on your point about events going from controllers to views.","","","","http://discuss.emberjs.com/t/diagram-of-an-ember-apps-structure/4060" -"430400749604835328","430392557676138496","166403387","2014-02-03 18:01:49 +0000","Twitterrific for Mac","@bmoeskau Fair enough! If you have an organizational method that works there’s nothing wrong with that.","","","","" -"430381750267551744","430278136400736256","56992811","2014-02-03 16:46:20 +0000","Twitterrific","@rauschma Sure can. I should post it on my blog. Will tweet it later.","","","","" -"430381629412892673","","","2014-02-03 16:45:51 +0000","Twitterrific","RT @EmberSherpa: @_sjs arrow from controller to view should have events because events are handled within the Views.","430172401251270656","1699999614","2014-02-03 02:54:27 +0000","" -"430381620399316992","","","2014-02-03 16:45:49 +0000","Twitterrific","RT @EmberSherpa: @_sjs your diagram shows views and components sending actions to the route directly, which doesn’t happen. It goes through…","430172105238278145","1699999614","2014-02-03 02:53:16 +0000","" -"430381587776040961","430317721280983040","88489441","2014-02-03 16:45:41 +0000","Twitterrific","@AdamBFerg Absolutely not! I plan on revising is based on feedback from the forums. Will tweet the link later today.","","","","" -"430381418535870464","430361943736451072","166403387","2014-02-03 16:45:00 +0000","Twitterrific","@bmoeskau It's a perfect example of why @emberjs is great. You'll have that complexity anyway, but it'll be wired up in an ad-hoc manner.","","","","" -"430171456707002368","","","2014-02-03 02:50:42 +0000","Twitterrific for Mac","First try at a diagram of an Ember app’s structure. What’s missing? http://t.co/VIm9aKp4Mi @EmberWatch @emberjs @EmberSherpa","","","","http://img.ly/xWjy" -"430147338183536640","430112744700780544","894911","2014-02-03 01:14:51 +0000","Twitterrific","@JimRoepcke 😃🔫","","","","" -"429779983800598528","","","2014-02-02 00:55:07 +0000","Twitterrific","RT @raganwald: CoffeeScript, where “foo isnt bar” isnt “foo is not bar""","429775420435599360","18137723","2014-02-02 00:36:59 +0000","" -"429748394513281024","","","2014-02-01 22:49:36 +0000","Twitterrific","The fake EQ is over the track number. Is that a bug or a joke? ಠ_ಠ http://t.co/M8XwCrY6st","","","","https://twitter.com/_sjs/status/429748394513281024/photo/1" -"429699916936396800","429661426483875840","1291711","2014-02-01 19:36:58 +0000","Twitterrific","@trek Pesky youngsters! Always makin' us sick!","","","","" +"430749615525097472","430745161438486529","894911","2014-02-04 17:08:05 +0000","Twitterrific for iOS","@JimRoepcke Congrats on the new job! And congrats to @Mashable, you picked the right guy.","","","","" +"430542709829292032","430538776813633536","88489441","2014-02-04 03:25:55 +0000","Twitterrific for Mac","@AdamBFerg Thanks for the feedback. I need to research that area and fix it up. Glad you find it helpful!","","","","" +"430524314002001920","","","2014-02-04 02:12:49 +0000","Twitterrific for Mac","Here are 2 permanent links for that diagram of an Ember app’s structure I posted yesterday http://t.co/jyUFX00DJk and http://t.co/gHD61LsyGc","","","","http://samhuri.net/blog/2014.02.03-ember-structure,http://discuss.emberjs.com/t/diagram-of-an-ember-apps-structure/4060" +"430524116546777088","430317721280983040","88489441","2014-02-04 02:12:02 +0000","Twitterrific for Mac","@AdamBFerg http://t.co/jyUFX00DJk and a discussion http://t.co/gHD61LsyGc","","","","http://samhuri.net/blog/2014.02.03-ember-structure,http://discuss.emberjs.com/t/diagram-of-an-ember-apps-structure/4060" +"430524051862208512","430278136400736256","56992811","2014-02-04 02:11:47 +0000","Twitterrific for Mac","@rauschma http://t.co/jyUFX00DJk and a discussion http://t.co/gHD61LsyGc","","","","http://samhuri.net/blog/2014.02.03-ember-structure,http://discuss.emberjs.com/t/diagram-of-an-ember-apps-structure/4060" +"430523938955735040","430172738326507520","1699999614","2014-02-04 02:11:20 +0000","Twitterrific for Mac","@EmberSherpa http://t.co/gHD61LsyGc … I wanted to ask for clarification on your point about events going from controllers to views.","","","","http://discuss.emberjs.com/t/diagram-of-an-ember-apps-structure/4060" +"430400749604835328","430392557676138496","166403387","2014-02-03 18:01:49 +0000","Twitterrific for Mac","@bmoeskau Fair enough! If you have an organizational method that works there’s nothing wrong with that.","","","","" +"430381750267551744","430278136400736256","56992811","2014-02-03 16:46:20 +0000","Twitterrific for iOS","@rauschma Sure can. I should post it on my blog. Will tweet it later.","","","","" +"430381629412892673","","","2014-02-03 16:45:51 +0000","Twitterrific for iOS","RT @EmberSherpa: @_sjs arrow from controller to view should have events because events are handled within the Views.","430172401251270656","1699999614","2014-02-03 02:54:27 +0000","" +"430381620399316992","","","2014-02-03 16:45:49 +0000","Twitterrific for iOS","RT @EmberSherpa: @_sjs your diagram shows views and components sending actions to the route directly, which doesn’t happen. It goes through…","430172105238278145","1699999614","2014-02-03 02:53:16 +0000","" +"430381587776040961","430317721280983040","88489441","2014-02-03 16:45:41 +0000","Twitterrific for iOS","@AdamBFerg Absolutely not! I plan on revising is based on feedback from the forums. Will tweet the link later today.","","","","" +"430381418535870464","430361943736451072","166403387","2014-02-03 16:45:00 +0000","Twitterrific for iOS","@bmoeskau It's a perfect example of why @emberjs is great. You'll have that complexity anyway, but it'll be wired up in an ad-hoc manner.","","","","" +"430171456707002368","","","2014-02-03 02:50:42 +0000","Twitterrific for Mac","First try at a diagram of an Ember app’s structure. What’s missing? http://t.co/VIm9aKp4Mi @EmberWatch @emberjs @EmberSherpa","","","","http://img.ly/xWjy" +"430147338183536640","430112744700780544","894911","2014-02-03 01:14:51 +0000","Twitterrific for iOS","@JimRoepcke 😃🔫","","","","" +"429779983800598528","","","2014-02-02 00:55:07 +0000","Twitterrific for iOS","RT @raganwald: CoffeeScript, where “foo isnt bar” isnt “foo is not bar""","429775420435599360","18137723","2014-02-02 00:36:59 +0000","" +"429748394513281024","","","2014-02-01 22:49:36 +0000","Twitterrific for iOS","The fake EQ is over the track number. Is that a bug or a joke? ಠ_ಠ http://t.co/M8XwCrY6st","","","","https://twitter.com/_sjs/status/429748394513281024/photo/1" +"429699916936396800","429661426483875840","1291711","2014-02-01 19:36:58 +0000","Twitterrific for iOS","@trek Pesky youngsters! Always makin' us sick!","","","","" "429429559503507458","","","2014-02-01 01:42:40 +0000","Twitter Web Client","By expressive I mean that trackpads have gestures and you can trigger more commands with a single action with a trackpad.","","","","" "429428421890805761","429426843159392257","636923","2014-02-01 01:38:08 +0000","Twitter Web Client","@siracusa Gestures. I'm not counting the Magic Mouse because I find its gestures clumsy, but it is more expressive as well.","","","","" -"429426337296547841","","","2014-02-01 01:29:51 +0000","Twitterrific","But @siracusa is right about watching blinkenlights all day, @marcoarment and @caseyliss ought to ditch the stat menus.","","","","" -"429425667931791361","","","2014-02-01 01:27:12 +0000","Twitterrific","Trackpads are more expressive and less precise than mice. I'm relatively lousy with mice anyway so I prefer trackpads. @siracusa","","","","" -"429412575223103488","429403910910930945","18740111","2014-02-01 00:35:10 +0000","Twitterrific for Mac","@machty Game night! Playing games and drinking with friends.","","","","" +"429426337296547841","","","2014-02-01 01:29:51 +0000","Twitterrific for iOS","But @siracusa is right about watching blinkenlights all day, @marcoarment and @caseyliss ought to ditch the stat menus.","","","","" +"429425667931791361","","","2014-02-01 01:27:12 +0000","Twitterrific for iOS","Trackpads are more expressive and less precise than mice. I'm relatively lousy with mice anyway so I prefer trackpads. @siracusa","","","","" +"429412575223103488","429403910910930945","18740111","2014-02-01 00:35:10 +0000","Twitterrific for Mac","@machty Game night! Playing games and drinking with friends.","","","","" "429368283054084096","429368110152691712","14651212","2014-01-31 21:39:10 +0000","Twitter Web Client","@dgeb @toranb That's not a bad thing. I'll cling to my cynicism as well to keep it balanced.","","","","" -"429350895659126784","","","2014-01-31 20:30:05 +0000","Twitterrific","RT @ryan: This is by far the best bit of user interface design I have ever seen. Ever. EVER. http://t.co/zrRs4bDRH3","313755123295854592","862681","2013-03-18 20:53:45 +0000","https://twitter.com/ryan/status/313755123295854592/photo/1,https://twitter.com/ryan/status/313755123295854592/photo/1" -"429349385760018432","429267179641769984","14651212","2014-01-31 20:24:05 +0000","Twitterrific","@dgeb @toranb Boring and optimistic. New features aren't bug-free even if it's generally a lot better than it used to be.","","","","" -"429166723774685184","429147894231228416","36183","2014-01-31 08:18:15 +0000","Twitterrific","@chockenberry @gruber @drdrang The interview with Tog, linked at the end, is great.","","","","" -"429041442518888449","","","2014-01-31 00:00:25 +0000","Twitterrific for Mac","RT @oscargodson: @tomdale https://t.co/BIn7l5Z5Hj","428974673905582080","10138412","2014-01-30 19:35:06 +0000","https://medium.com/the-javascript-collection/ce3645cca083,https://medium.com/the-javascript-collection/ce3645cca083" -"429023663539499009","429015075039367168","9973082","2014-01-30 22:49:46 +0000","Twitterrific for Mac","@kangax 4: Don’t gloss over things that might not be obvious, e.g. having addClass and leaving out removeClass.","","","","" -"429020343487848449","","","2014-01-30 22:36:35 +0000","Twitterrific for Mac","RT @jquery: @jeresig tell me about it!","429017149630189569","14538601","2014-01-30 22:23:53 +0000","" -"428932839887736832","428890034855350273","818728921","2014-01-30 16:48:52 +0000","Twitterrific","@elrickvm @EmberSherpa Then write a small Ember app, and then go read it again. So much more will sink in that second time.","","","","" -"427959187239219200","427958104462880768","894911","2014-01-28 00:19:55 +0000","Twitterrific for Mac","@JimRoepcke Okay. How about a dog barking? +"429350895659126784","","","2014-01-31 20:30:05 +0000","Twitterrific for iOS","RT @ryan: This is by far the best bit of user interface design I have ever seen. Ever. EVER. http://t.co/zrRs4bDRH3","313755123295854592","862681","2013-03-18 20:53:45 +0000","https://twitter.com/ryan/status/313755123295854592/photo/1,https://twitter.com/ryan/status/313755123295854592/photo/1" +"429349385760018432","429267179641769984","14651212","2014-01-31 20:24:05 +0000","Twitterrific for iOS","@dgeb @toranb Boring and optimistic. New features aren't bug-free even if it's generally a lot better than it used to be.","","","","" +"429166723774685184","429147894231228416","36183","2014-01-31 08:18:15 +0000","Twitterrific for iOS","@chockenberry @gruber @drdrang The interview with Tog, linked at the end, is great.","","","","" +"429041442518888449","","","2014-01-31 00:00:25 +0000","Twitterrific for Mac","RT @oscargodson: @tomdale https://t.co/BIn7l5Z5Hj","428974673905582080","10138412","2014-01-30 19:35:06 +0000","https://medium.com/the-javascript-collection/ce3645cca083,https://medium.com/the-javascript-collection/ce3645cca083" +"429023663539499009","429015075039367168","9973082","2014-01-30 22:49:46 +0000","Twitterrific for Mac","@kangax 4: Don’t gloss over things that might not be obvious, e.g. having addClass and leaving out removeClass.","","","","" +"429020343487848449","","","2014-01-30 22:36:35 +0000","Twitterrific for Mac","RT @jquery: @jeresig tell me about it!","429017149630189569","14538601","2014-01-30 22:23:53 +0000","" +"428932839887736832","428890034855350273","818728921","2014-01-30 16:48:52 +0000","Twitterrific for iOS","@elrickvm @EmberSherpa Then write a small Ember app, and then go read it again. So much more will sink in that second time.","","","","" +"427959187239219200","427958104462880768","894911","2014-01-28 00:19:55 +0000","Twitterrific for Mac","@JimRoepcke Okay. How about a dog barking? … No good?","","","","" -"427215463114739713","427197107691216896","22196723","2014-01-25 23:04:38 +0000","Twitterrific","@markkolich Try ""askew"".","","","","" -"427106167332958208","","","2014-01-25 15:50:20 +0000","Twitterrific","RT @wwwtxt: I suggest that the net as a whole shutdown for an entire week so that people can see how much we DESIRE to use it. ☯85NOV","427102826591178752","207756340","2014-01-25 15:37:03 +0000","" -"426933697732808704","","","2014-01-25 04:25:00 +0000","Twitterrific","Sugar gliders in slow motion http://t.co/KhNAOxV7Zw","","","","http://i.imgur.com/Xo7s3ef.gif" -"426801449637392384","426797186106417152","894911","2014-01-24 19:39:29 +0000","Twitterrific for Mac","@JimRoepcke I realize they don’t want to say “Gmail is down” because it might not be down for everyone, but I don’t care. For me it’s down.","","","","" -"426801110804738048","426797186106417152","894911","2014-01-24 19:38:09 +0000","Twitterrific for Mac","@JimRoepcke The wording of that message is terrible. At first I thought my account was suspended or something.","","","","" -"426791965187768320","426791069657735168","11973362","2014-01-24 19:01:48 +0000","Twitterrific for Mac","@typeoneerror Good stuff! Sounds like you’re looking forward to it :) http://t.co/PwHQEI4dn1","","","","http://img.ly/xQLK" -"426790808855916544","426777466976235520","11973362","2014-01-24 18:57:12 +0000","Twitterrific for Mac","@typeoneerror “You’re sitting next to me, so you must be trustworthy!” +"427215463114739713","427197107691216896","22196723","2014-01-25 23:04:38 +0000","Twitterrific for iOS","@markkolich Try ""askew"".","","","","" +"427106167332958208","","","2014-01-25 15:50:20 +0000","Twitterrific for iOS","RT @wwwtxt: I suggest that the net as a whole shutdown for an entire week so that people can see how much we DESIRE to use it. ☯85NOV","427102826591178752","207756340","2014-01-25 15:37:03 +0000","" +"426933697732808704","","","2014-01-25 04:25:00 +0000","Twitterrific for iOS","Sugar gliders in slow motion http://t.co/KhNAOxV7Zw","","","","http://i.imgur.com/Xo7s3ef.gif" +"426833802631983105","","","2014-01-24 21:48:03 +0000","Twitterrific for Mac","RT @tlrobinson: If you think you have an email problem, just be thankful you’re not David S. Peck: http://t.co/UmCnAJN8E6","426825611978346496","14206068","2014-01-24 21:15:30 +0000","http://techcrunch.com/2014/01/24/gmail-glitch-is-causing-thousands-of-emails-to-be-sent-to-one-mans-hotmail-account/,http://techcrunch.com/2014/01/24/gmail-glitch-is-causing-thousands-of-emails-to-be-sent-to-one-mans-hotmail-account/" +"426801449637392384","426797186106417152","894911","2014-01-24 19:39:29 +0000","Twitterrific for Mac","@JimRoepcke I realize they don’t want to say “Gmail is down” because it might not be down for everyone, but I don’t care. For me it’s down.","","","","" +"426801110804738048","426797186106417152","894911","2014-01-24 19:38:09 +0000","Twitterrific for Mac","@JimRoepcke The wording of that message is terrible. At first I thought my account was suspended or something.","","","","" +"426791965187768320","426791069657735168","11973362","2014-01-24 19:01:48 +0000","Twitterrific for Mac","@typeoneerror Good stuff! Sounds like you’re looking forward to it :) http://t.co/PwHQEI4dn1","","","","http://img.ly/xQLK" +"426790808855916544","426777466976235520","11973362","2014-01-24 18:57:12 +0000","Twitterrific for Mac","@typeoneerror “You’re sitting next to me, so you must be trustworthy!” We’re a strange lot.","","","","" -"426790550973333504","426776637603344384","9973082","2014-01-24 18:56:11 +0000","Twitterrific for Mac","@kangax Also see “jQuery code” (e.g. http://t.co/2lWuPlgre1) … It’s not “jQuery code” unless you’re talking about the jQuery implementation.","","","","http://moviecode.tumblr.com/post/74358817427/overriding-guided-missile-with-jquery-in-the-tv" -"426754310857166848","","","2014-01-24 16:32:11 +0000","Twitterrific","Smartphones are overtaking PCs as we speak. Developing for mobile first is probably a good idea. http://t.co/YzRXfNZoyC","","","","http://ben-evans.com/benedictevans/2014/1/24/smartphones-and-pcs" -"426750132780933121","","","2014-01-24 16:15:34 +0000","Twitterrific","My first Mac was a Mac mini in 2005 while I was at UVic. Thanks @JimRoepcke for introducing me to Mac!","","","","" -"426517769991888896","426512535596974080","74837444","2014-01-24 00:52:15 +0000","Twitterrific","@Badger32d It's cool but can be fiddly. You have to want it. It's like using Linux in the 90s!","","","","" -"426512337491607552","426511766793629697","74837444","2014-01-24 00:30:40 +0000","Twitterrific for Mac","@Badger32d Now I mostly use Macs but have a Hackintosh that dual boots Windows. Yay choices!","","","","" -"426512178078683136","426511766793629697","74837444","2014-01-24 00:30:02 +0000","Twitterrific for Mac","@Badger32d Very true. For a year or two I ran Windows on my desktop and worked in a Linux VM. It doesn’t have to be all or nothing.","","","","" -"426511860926394368","426510993795981312","74837444","2014-01-24 00:28:46 +0000","Twitterrific for Mac","@Badger32d Wealth of WMs is really cool and useful. Wealth of GUI toolkits is a negative in some ways, for some people. Hated Qt in Gnome.","","","","" -"426511419756908544","426510993795981312","74837444","2014-01-24 00:27:01 +0000","Twitterrific for Mac","@Badger32d It can be great for some things, bad for others. For example the lack of consensus on next gen window system is a real problem.","","","","" -"426510424863813632","426509340996956160","74837444","2014-01-24 00:23:04 +0000","Twitterrific for Mac","@Badger32d For some reason many people love to view things in monochrome.","","","","" -"426478141113004032","426469562595278848","74837444","2014-01-23 22:14:47 +0000","Twitterrific for Mac","@Badger32d @codinghorror @bai_hao @FuelCell250 Note that the current batch have greens not clears. Clears are coming later.","","","","" -"426442129347342336","","","2014-01-23 19:51:41 +0000","Twitterrific","RT @gte: 'Mobster' charged in Lufthansa 'Goodfellas' cash robbery +"426790550973333504","426776637603344384","9973082","2014-01-24 18:56:11 +0000","Twitterrific for Mac","@kangax Also see “jQuery code” (e.g. http://t.co/2lWuPlgre1) … It’s not “jQuery code” unless you’re talking about the jQuery implementation.","","","","http://moviecode.tumblr.com/post/74358817427/overriding-guided-missile-with-jquery-in-the-tv" +"426754310857166848","","","2014-01-24 16:32:11 +0000","Twitterrific for iOS","Smartphones are overtaking PCs as we speak. Developing for mobile first is probably a good idea. http://t.co/YzRXfNZoyC","","","","http://ben-evans.com/benedictevans/2014/1/24/smartphones-and-pcs" +"426750132780933121","","","2014-01-24 16:15:34 +0000","Twitterrific for iOS","My first Mac was a Mac mini in 2005 while I was at UVic. Thanks @JimRoepcke for introducing me to Mac!","","","","" +"426517769991888896","426512535596974080","74837444","2014-01-24 00:52:15 +0000","Twitterrific for iOS","@Badger32d It's cool but can be fiddly. You have to want it. It's like using Linux in the 90s!","","","","" +"426512337491607552","426511766793629697","74837444","2014-01-24 00:30:40 +0000","Twitterrific for Mac","@Badger32d Now I mostly use Macs but have a Hackintosh that dual boots Windows. Yay choices!","","","","" +"426512178078683136","426511766793629697","74837444","2014-01-24 00:30:02 +0000","Twitterrific for Mac","@Badger32d Very true. For a year or two I ran Windows on my desktop and worked in a Linux VM. It doesn’t have to be all or nothing.","","","","" +"426511860926394368","426510993795981312","74837444","2014-01-24 00:28:46 +0000","Twitterrific for Mac","@Badger32d Wealth of WMs is really cool and useful. Wealth of GUI toolkits is a negative in some ways, for some people. Hated Qt in Gnome.","","","","" +"426511419756908544","426510993795981312","74837444","2014-01-24 00:27:01 +0000","Twitterrific for Mac","@Badger32d It can be great for some things, bad for others. For example the lack of consensus on next gen window system is a real problem.","","","","" +"426510424863813632","426509340996956160","74837444","2014-01-24 00:23:04 +0000","Twitterrific for Mac","@Badger32d For some reason many people love to view things in monochrome.","","","","" +"426478141113004032","426469562595278848","74837444","2014-01-23 22:14:47 +0000","Twitterrific for Mac","@Badger32d @codinghorror @bai_hao @FuelCell250 Note that the current batch have greens not clears. Clears are coming later.","","","","" +"426442129347342336","","","2014-01-23 19:51:41 +0000","Twitterrific for iOS","RT @gte: 'Mobster' charged in Lufthansa 'Goodfellas' cash robbery http://t.co/4hwBXipZoj Time for a sequel!","426406803589849088","7125712","2014-01-23 17:31:18 +0000","http://www.bbc.co.uk/news/world-us-canada-25866101,http://www.bbc.co.uk/news/world-us-canada-25866101" -"426384370887172097","","","2014-01-23 16:02:10 +0000","Twitterrific","""It has a 2GB DDR3 hard drive and 16GB of memory"" O_o","","","","" -"426376781180841986","426317102744469504","14672744","2014-01-23 15:32:00 +0000","Twitterrific","@danbarker @peterc @CNN @turnitupalittle CNN has turned into a tabloid. Disgusting.","","","","" -"426202342451466240","426153353299886080","19376410","2014-01-23 03:58:51 +0000","Twitterrific","@lucalanca @tomdale @emberjs Totally. It moves so much tedious wiring and boilerplate up into well tested framework code. Love it.","","","","" -"426156220269858818","","","2014-01-23 00:55:35 +0000","Twitterrific for Mac","RT @viktorklang: @prasinous +"426384370887172097","","","2014-01-23 16:02:10 +0000","Twitterrific for iOS","""It has a 2GB DDR3 hard drive and 16GB of memory"" O_o","","","","" +"426376781180841986","426317102744469504","14672744","2014-01-23 15:32:00 +0000","Twitterrific for iOS","@danbarker @peterc @CNN @turnitupalittle CNN has turned into a tabloid. Disgusting.","","","","" +"426202342451466240","426153353299886080","19376410","2014-01-23 03:58:51 +0000","Twitterrific for iOS","@lucalanca @tomdale @emberjs Totally. It moves so much tedious wiring and boilerplate up into well tested framework code. Love it.","","","","" +"426156220269858818","","","2014-01-23 00:55:35 +0000","Twitterrific for Mac","RT @viktorklang: @prasinous > git merge fix master Git dodges your attack! Git's diff maims you! @@ -4260,886 +4357,885 @@ You are bleed…","426010903947915264","52061552","2014-01-22 15:18:09 +0000","" "426109104990347264","426108560871677952","33493","2014-01-22 21:48:22 +0000","Twitter Web Client","@peterc That's interesting. Both look odd to me. This time I decided to not link the whole sentence and entirely sidestep the issue.","","","","" "426108785556324352","","","2014-01-22 21:47:05 +0000","Twitter Web Client","RT @JosephMartel: @_sjs Whole sentence? Yes. Sentence fragment? No.","426108546648788992","217540637","2014-01-22 21:46:08 +0000","" "426108161502617600","","","2014-01-22 21:44:37 +0000","Twitter Web Client","RT @peterc: @_sjs If it's the complete sentence, yes. If it's a URL at the end of a sentence, no.","426108008335044608","33493","2014-01-22 21:44:00 +0000","" -"426107064062996481","","","2014-01-22 21:40:15 +0000","Twitterrific for Mac","You’re linking a sentence. Do you include the ending punctuation in the link or not?","","","","" -"426051373273063424","","","2014-01-22 17:58:57 +0000","Twitterrific for Mac","RT @ajpiano: moral: tossing jQuery for native DOM doesn't make the difference, understanding browser rendering and layout does https://t.co…","426046280872517632","16502211","2014-01-22 17:38:43 +0000","https://twitter.com/spolsky/status/426041505812598784" -"425866673791307777","423913850665041920","2236788145","2014-01-22 05:45:01 +0000","Twitterrific","@userhue @ajordens All those persuade me to do is close the tab. Ain't nobody got time for that.","","","","" -"425865749786148864","","","2014-01-22 05:41:21 +0000","Twitterrific","RT @ajordens: They should hire @JimRoepcke “@mtippett: Fallen out of love with @car2goVancouver . App doesn't cut it. Heartbroken”","425848735877173248","2262091","2014-01-22 04:33:45 +0000","" -"425779772656873472","","","2014-01-21 23:59:43 +0000","Twitterrific","RT @NitrousIO: The new Mac App is built on node.js and ember.js! /cc @wycats @tomdale @raingrove +"426107064062996481","","","2014-01-22 21:40:15 +0000","Twitterrific for Mac","You’re linking a sentence. Do you include the ending punctuation in the link or not?","","","","" +"426051373273063424","","","2014-01-22 17:58:57 +0000","Twitterrific for Mac","RT @ajpiano: moral: tossing jQuery for native DOM doesn't make the difference, understanding browser rendering and layout does https://t.co…","426046280872517632","16502211","2014-01-22 17:38:43 +0000","https://twitter.com/spolsky/status/426041505812598784" +"425866673791307777","423913850665041920","2236788145","2014-01-22 05:45:01 +0000","Twitterrific for iOS","@userhue @ajordens All those persuade me to do is close the tab. Ain't nobody got time for that.","","","","" +"425865749786148864","","","2014-01-22 05:41:21 +0000","Twitterrific for iOS","RT @ajordens: They should hire @JimRoepcke “@mtippett: Fallen out of love with @car2goVancouver . App doesn't cut it. Heartbroken”","425848735877173248","2262091","2014-01-22 04:33:45 +0000","" +"425779772656873472","","","2014-01-21 23:59:43 +0000","Twitterrific for iOS","RT @NitrousIO: The new Mac App is built on node.js and ember.js! /cc @wycats @tomdale @raingrove http://t.co/48VuijesL7","425712704674725888","571491988","2014-01-21 19:33:12 +0000","http://bitly.com/nitrousmac,http://bitly.com/nitrousmac" -"425551815245959168","425498468187394048","156361232","2014-01-21 08:53:53 +0000","Twitterrific","@rwjblue @machty @jo_liss Broccolifile.not-a-FIFO.or-a-block-device.just-a-file.js","","","","" -"425331013422546944","","","2014-01-20 18:16:30 +0000","Twitterrific for Mac","“I am new in Ruby but not in Visual Foxpro, if somebody needs my help, I can exchange knowledge” +"425551815245959168","425498468187394048","156361232","2014-01-21 08:53:53 +0000","Twitterrific for iOS","@rwjblue @machty @jo_liss Broccolifile.not-a-FIFO.or-a-block-device.just-a-file.js","","","","" +"425331013422546944","","","2014-01-20 18:16:30 +0000","Twitterrific for Mac","“I am new in Ruby but not in Visual Foxpro, if somebody needs my help, I can exchange knowledge” Sorry, I’m still using dBASE III. rofl","","","","" -"425301556125106176","425272470267236352","15135024","2014-01-20 16:19:27 +0000","Twitterrific","@Space36 @MintySnacks @siracusa No, there isn't. Citizens pay for the NHS damn near directly via taxes.","","","","" -"425059828868710400","425059355864494082","4777951","2014-01-20 00:18:55 +0000","Twitterrific","@_sjs Chief indicator if you miss the flash: scroll position is lost.","","","","" -"425059639483314177","424976046023122944","4777951","2014-01-20 00:18:09 +0000","Twitterrific","@_sjs @JonathonW @codinghorror Better but still lame. Loses scroll position :/ http://t.co/5B1LoiGD4n","","","","https://twitter.com/_sjs/status/425059355864494082" -"425059355864494082","","","2014-01-20 00:17:02 +0000","Twitterrific","Well, Safari on iOS 7.1 is still evicting tabs but has some kind of cached version ready and shows it quickly. It's better but still lame.","","","","" -"424991479191175169","","","2014-01-19 19:47:19 +0000","Twitterrific","Here's a tip/warning. If you don't finish a growler you may get/have to drink some breakfast beer. Blue Buck & eggs! @phillipsbeer","","","","" -"424976539604639744","","","2014-01-19 18:47:57 +0000","Twitterrific","Those plagued by Safari evicting tabs from memory on iOS 7: try the 7.1 beta if you have access. It seems better to me.","","","","" -"424976046023122944","422150895720071168","14402479","2014-01-19 18:45:59 +0000","Twitterrific","@JonathonW @codinghorror Follow up: after a week on the beta it seems much better to me as well. Thanks for the tip.","","","","" -"424971585229828096","424965323075227648","18137723","2014-01-19 18:28:16 +0000","Twitterrific","@raganwald I don't think you are abrasive, but I could be oblivious.","","","","" -"424953082120658944","424922288291459072","11996","2014-01-19 17:14:44 +0000","Twitterrific","@nickmomrik @monkbent @stroughtonsmith Added ""iPhone crash"" http://t.co/kEMWUJl2iB","","","","http://www.google.com/trends/explore?hl=en-US&q=android+crash,+ios+crash,+iPhone+crash&cmpt=q&content=1" -"424752583865942016","424751895106695168","18740111","2014-01-19 03:58:02 +0000","Twitterrific","@machty @rwjblue @fivetanley @tomdale Well what do you expect moving to Oregon.","","","","" -"424669250289016834","","","2014-01-18 22:26:53 +0000","Twitterrific","RT @danparsons: http://t.co/79secR9BGR","424328368230649856","3827111","2014-01-17 23:52:21 +0000","https://twitter.com/steven_lebron/status/423958089440567296/photo/1,https://twitter.com/steven_lebron/status/423958089440567296/photo/1" -"424487052441169920","424345205303943168","33423","2014-01-18 10:22:54 +0000","Twitterrific","@gruber Yes! It is. Gets me every time too.","","","","" -"424317352386125825","424308780273119232","27302287","2014-01-17 23:08:34 +0000","Twitterrific","@jacobrothstein I do like that Dropbox works offline. Hence pushing to git in Dropbox not remote. But location is just a detail.","","","","" -"424316727745196032","","","2014-01-17 23:06:05 +0000","Twitterrific","RT @siracusa: @marcoarment Doing nothing—pah! ABC: Always Be Compiling.","424296423178649600","636923","2014-01-17 21:45:24 +0000","" -"424316599701491713","424308780273119232","27302287","2014-01-17 23:05:35 +0000","Twitterrific","@jacobrothstein I already have one piece of the puzzle: http://t.co/mjvHJcoGct +"425301556125106176","425272470267236352","15135024","2014-01-20 16:19:27 +0000","Twitterrific for iOS","@Space36 @MintySnacks @siracusa No, there isn't. Citizens pay for the NHS damn near directly via taxes.","","","","" +"425059828868710400","425059355864494082","4777951","2014-01-20 00:18:55 +0000","Twitterrific for iOS","@_sjs Chief indicator if you miss the flash: scroll position is lost.","","","","" +"425059639483314177","424976046023122944","4777951","2014-01-20 00:18:09 +0000","Twitterrific for iOS","@_sjs @JonathonW @codinghorror Better but still lame. Loses scroll position :/ http://t.co/5B1LoiGD4n","","","","https://twitter.com/_sjs/status/425059355864494082" +"425059355864494082","","","2014-01-20 00:17:02 +0000","Twitterrific for iOS","Well, Safari on iOS 7.1 is still evicting tabs but has some kind of cached version ready and shows it quickly. It's better but still lame.","","","","" +"424991479191175169","","","2014-01-19 19:47:19 +0000","Twitterrific for iOS","Here's a tip/warning. If you don't finish a growler you may get/have to drink some breakfast beer. Blue Buck & eggs! @phillipsbeer","","","","" +"424976539604639744","","","2014-01-19 18:47:57 +0000","Twitterrific for iOS","Those plagued by Safari evicting tabs from memory on iOS 7: try the 7.1 beta if you have access. It seems better to me.","","","","" +"424976046023122944","422150895720071168","14402479","2014-01-19 18:45:59 +0000","Twitterrific for iOS","@JonathonW @codinghorror Follow up: after a week on the beta it seems much better to me as well. Thanks for the tip.","","","","" +"424971585229828096","424965323075227648","18137723","2014-01-19 18:28:16 +0000","Twitterrific for iOS","@raganwald I don't think you are abrasive, but I could be oblivious.","","","","" +"424953082120658944","424922288291459072","11996","2014-01-19 17:14:44 +0000","Twitterrific for iOS","@nickmomrik @monkbent @stroughtonsmith Added ""iPhone crash"" http://t.co/kEMWUJl2iB","","","","http://www.google.com/trends/explore?hl=en-US&q=android+crash,+ios+crash,+iPhone+crash&cmpt=q&content=1" +"424752583865942016","424751895106695168","18740111","2014-01-19 03:58:02 +0000","Twitterrific for iOS","@machty @rwjblue @fivetanley @tomdale Well what do you expect moving to Oregon.","","","","" +"424669250289016834","","","2014-01-18 22:26:53 +0000","Twitterrific for iOS","RT @danparsons: http://t.co/79secR9BGR","424328368230649856","3827111","2014-01-17 23:52:21 +0000","https://twitter.com/steven_lebron/status/423958089440567296/photo/1,https://twitter.com/steven_lebron/status/423958089440567296/photo/1" +"424487052441169920","424345205303943168","33423","2014-01-18 10:22:54 +0000","Twitterrific for iOS","@gruber Yes! It is. Gets me every time too.","","","","" +"424317352386125825","424308780273119232","27302287","2014-01-17 23:08:34 +0000","Twitterrific for iOS","@jacobrothstein I do like that Dropbox works offline. Hence pushing to git in Dropbox not remote. But location is just a detail.","","","","" +"424316727745196032","","","2014-01-17 23:06:05 +0000","Twitterrific for iOS","RT @siracusa: @marcoarment Doing nothing—pah! ABC: Always Be Compiling.","424296423178649600","636923","2014-01-17 21:45:24 +0000","" +"424316599701491713","424308780273119232","27302287","2014-01-17 23:05:35 +0000","Twitterrific for iOS","@jacobrothstein I already have one piece of the puzzle: http://t.co/mjvHJcoGct Now just a script to do the git part.","","","","http://github.com/samsonjs/northwatcher" "424307518366429185","424293319103889408","27302287","2014-01-17 22:29:30 +0000","Twitter Web Client","@jacobrothstein That's an idea! Could even push to a repo in Dropbox, or `git add -N . && git diff >~/Dropbox/.../$(hostname -s).patch`","","","","" "424292284511711232","424291968839999488","4777951","2014-01-17 21:28:58 +0000","Twitter Web Client","@jacobrothstein I want to just pick up and leave off wherever I'm at without having to remember to push, and take time to commit neatly.","","","","" "424291968839999488","424289570109145088","27302287","2014-01-17 21:27:42 +0000","Twitter Web Client","@jacobrothstein The problem is that I want it to sync the entire repo. I use it to be lazy and avoid pushing WIP commits to sync up boxes.","","","","" -"424291062195036160","","","2014-01-17 21:24:06 +0000","Twitterrific for Mac","RT @ebryn: . @floydophone Ember.js will be the #1 JS framework for spinning circles","424250707294699520","3594","2014-01-17 18:43:45 +0000","" -"424290460413095936","","","2014-01-17 21:21:43 +0000","Twitterrific for Mac","RT @JimRoepcke: (repost) Looking for a senior / lead iOS Developer or Mentor? I’m available. http://t.co/8Zu6lsrmST +"424291062195036160","","","2014-01-17 21:24:06 +0000","Twitterrific for Mac","RT @ebryn: . @floydophone Ember.js will be the #1 JS framework for spinning circles","424250707294699520","3594","2014-01-17 18:43:45 +0000","" +"424290460413095936","","","2014-01-17 21:21:43 +0000","Twitterrific for Mac","RT @JimRoepcke: (repost) Looking for a senior / lead iOS Developer or Mentor? I’m available. http://t.co/8Zu6lsrmST Please retweet! #iOS","424249514187186176","894911","2014-01-17 18:39:01 +0000","http://about.me/jimroepcke,http://about.me/jimroepcke" -"424290405656449024","","","2014-01-17 21:21:30 +0000","Twitterrific for Mac","RT @ebryn: We’re getting close to raw JS speed here with Ember.js + HTMLBars: http://t.co/eZaU8HPPJa Faster than React.js now at least :)","424247675026808832","3594","2014-01-17 18:31:42 +0000","http://bit.ly/1dCA0SL,http://bit.ly/1dCA0SL" -"424289110639923201","","","2014-01-17 21:16:21 +0000","Twitterrific for Mac","Symptom: me angrily cursing at my computer while changes staged to the index are reverted a second after staging them.","","","","" -"424288905374871552","","","2014-01-17 21:15:32 +0000","Twitterrific for Mac","Dropbox will have fits where it creates several identical conflicted copies of the index from one machine. Or battle other machines.","","","","" -"424288499542413313","","","2014-01-17 21:13:55 +0000","Twitterrific for Mac","Tip for puting git repos in Dropbox: create a copy of the repo for each machine you use it on. Else suffer endless conflicts on .git/index.","","","","" -"424084526101311489","","","2014-01-17 07:43:24 +0000","Twitterrific","RT @antonarhipov: IDEs as seen by each other http://t.co/JlUzEcbml8","423739169098063872","94757717","2014-01-16 08:51:05 +0000","http://twitpic.com/dseptp,http://twitpic.com/dseptp" -"424035370250948608","","","2014-01-17 04:28:05 +0000","Twitterrific","RT @newrelic: i heard you want to be a web developer here are a few devices to test your site... (Ugh) http://t.co/jTIx0v7yF3","424028099273957376","15527007","2014-01-17 03:59:11 +0000","https://twitter.com/newrelic/status/424028099273957376/photo/1,https://twitter.com/newrelic/status/424028099273957376/photo/1" -"424017399608639488","","","2014-01-17 03:16:40 +0000","Twitterrific","RT @ButtCoin: Anything is possible with Zombocoin","423959384780070913","305854715","2014-01-16 23:26:08 +0000","" -"423910043688247296","423865932847386624","733813","2014-01-16 20:10:04 +0000","Twitterrific for Mac","@stevenf Relevant XKCD http://t.co/0IWMg3Z2Vr","","","","http://xkcd.com/1316/" -"423715033965539328","","","2014-01-16 07:15:11 +0000","Twitterrific","RT @tenderlove: AdequateRecord is even more Adequate than ever. http://t.co/ERKV4MaY3j","423571625737342976","14761655","2014-01-15 21:45:19 +0000","https://twitter.com/tenderlove/status/423571625737342976/photo/1,https://twitter.com/tenderlove/status/423571625737342976/photo/1" -"423524100376891393","423332392154058752","15292261","2014-01-15 18:36:28 +0000","Twitterrific","@gregbate I think it'd be interesting to develop on a Chromebook Pixel with Nitrous.io and Cloud9. Fun experiment anyway.","","","","" -"423135185203249152","","","2014-01-14 16:51:04 +0000","Twitterrific","Hey @caseyliss, here's @siracusa talking about the new Mac Pro in 2011. http://t.co/t2VXVKdEFW +"424290405656449024","","","2014-01-17 21:21:30 +0000","Twitterrific for Mac","RT @ebryn: We’re getting close to raw JS speed here with Ember.js + HTMLBars: http://t.co/eZaU8HPPJa Faster than React.js now at least :)","424247675026808832","3594","2014-01-17 18:31:42 +0000","http://bit.ly/1dCA0SL,http://bit.ly/1dCA0SL" +"424289110639923201","","","2014-01-17 21:16:21 +0000","Twitterrific for Mac","Symptom: me angrily cursing at my computer while changes staged to the index are reverted a second after staging them.","","","","" +"424288905374871552","","","2014-01-17 21:15:32 +0000","Twitterrific for Mac","Dropbox will have fits where it creates several identical conflicted copies of the index from one machine. Or battle other machines.","","","","" +"424288499542413313","","","2014-01-17 21:13:55 +0000","Twitterrific for Mac","Tip for puting git repos in Dropbox: create a copy of the repo for each machine you use it on. Else suffer endless conflicts on .git/index.","","","","" +"424084526101311489","","","2014-01-17 07:43:24 +0000","Twitterrific for iOS","RT @antonarhipov: IDEs as seen by each other http://t.co/JlUzEcbml8","423739169098063872","94757717","2014-01-16 08:51:05 +0000","http://twitpic.com/dseptp,http://twitpic.com/dseptp" +"424035370250948608","","","2014-01-17 04:28:05 +0000","Twitterrific for iOS","RT @newrelic: i heard you want to be a web developer here are a few devices to test your site... (Ugh) http://t.co/jTIx0v7yF3","424028099273957376","15527007","2014-01-17 03:59:11 +0000","https://twitter.com/newrelic/status/424028099273957376/photo/1,https://twitter.com/newrelic/status/424028099273957376/photo/1" +"424017399608639488","","","2014-01-17 03:16:40 +0000","Twitterrific for iOS","RT @ButtCoin: Anything is possible with Zombocoin","423959384780070913","305854715","2014-01-16 23:26:08 +0000","" +"423910043688247296","423865932847386624","733813","2014-01-16 20:10:04 +0000","Twitterrific for Mac","@stevenf Relevant XKCD http://t.co/0IWMg3Z2Vr","","","","http://xkcd.com/1316/" +"423715033965539328","","","2014-01-16 07:15:11 +0000","Twitterrific for iOS","RT @tenderlove: AdequateRecord is even more Adequate than ever. http://t.co/ERKV4MaY3j","423571625737342976","14761655","2014-01-15 21:45:19 +0000","https://twitter.com/tenderlove/status/423571625737342976/photo/1,https://twitter.com/tenderlove/status/423571625737342976/photo/1" +"423524100376891393","423332392154058752","15292261","2014-01-15 18:36:28 +0000","Twitterrific for iOS","@gregbate I think it'd be interesting to develop on a Chromebook Pixel with Nitrous.io and Cloud9. Fun experiment anyway.","","","","" +"423135185203249152","","","2014-01-14 16:51:04 +0000","Twitterrific for iOS","Hey @caseyliss, here's @siracusa talking about the new Mac Pro in 2011. http://t.co/t2VXVKdEFW You're welcome.","","","","http://5by5.tv/hypercritical/31" -"423126765582553088","","","2014-01-14 16:17:36 +0000","Twitterrific","Breakfast is delicious. I love the taste of schadenfreude in the morning.","","","","" -"422953732775493632","","","2014-01-14 04:50:02 +0000","Twitterrific","RT @chockenberry: IS THERE A TRIPPIN BALLS EMOJI ASKING FOR A FRIEND","422952272213966848","36183","2014-01-14 04:44:14 +0000","" -"422819127711911936","422812079779635200","20079975","2014-01-13 19:55:10 +0000","Twitterrific for Mac","@polotek Thanks for the pointer. I’m going to mull this on a background thread while we try to get the product off the ground for now.","","","","" -"422811284879319040","422810974781837312","20079975","2014-01-13 19:24:00 +0000","Twitterrific for Mac",".@polotek Nor am I. My best source so far is an answer on Stack Overflow :/ But the answer seems good http://t.co/aYQHyxmmyW","","","","http://stackoverflow.com/questions/15870457/affects-to-the-server-from-running-eventsources" -"422810713090842624","","","2014-01-13 19:21:44 +0000","Twitterrific for Mac","EventSource sould be more efficient than the constant reconnection of long polling.","","","","" -"422810439114711040","","","2014-01-13 19:20:38 +0000","Twitterrific for Mac","From the server perspective there’s little difference between long-polling and EventSource. My overhead concerns are mainly about clients.","","","","" -"422809722798878720","422809590531489792","4777951","2014-01-13 19:17:48 +0000","Twitterrific for Mac","@polotek really isn’t up to the polling/event serving task without a lot of fuss.","","","","" -"422809590531489792","422807742252716032","20079975","2014-01-13 19:17:16 +0000","Twitterrific for Mac","@polotek The overhead I’m worried about is a laptop battery draining on the client side more than server. I’ll add a node server if Rails…","","","","" -"422809105737080833","422807994447835136","20079975","2014-01-13 19:15:20 +0000","Twitterrific for Mac","@polotek There is another upcoming use case for which a 30-60s interval would be adequate. Polling might be the way to go for that.","","","","" -"422791058448060416","","","2014-01-13 18:03:38 +0000","Twitterrific for Mac",".@jedschmidt Yeah, it really isn’t different from my current method which is a one-off request that hangs until the event occurs server-side","","","","" -"422790877254131713","","","2014-01-13 18:02:54 +0000","Twitterrific for Mac","RT @jedschmidt: @_sjs why close it? at that point you're just long polling.","422790353763434496","815114","2014-01-13 18:00:50 +0000","" -"422790034899484672","","","2014-01-13 17:59:34 +0000","Twitterrific for Mac","I guess I just initialize an EventSource, wait for the event, and then close it. That makes the server side easier as well, given Rails.","","","","" -"422789705109741568","","","2014-01-13 17:58:15 +0000","Twitterrific for Mac","I’m worried about overhead. I only need to listen for an event every now and then so I don’t want to constantly poll.","","","","" -"422788490745487360","","","2014-01-13 17:53:25 +0000","Twitterrific for Mac","It seems like EventSource (Server-sent events) + polyfill is the way to go. My current project uses Rails 4 on the server.","","","","" -"422787114925707264","","","2014-01-13 17:47:57 +0000","Twitterrific for Mac","What are you all using to push events from the server in your single-page web apps? Seems like a basic necessity.","","","","" -"422485134361628672","","","2014-01-12 21:48:00 +0000","Twitterrific","I've shipped a static library for an iOS SDK and it was a terrible experience. Just figuring out how to build it was an ordeal.","","","","" -"422484690600079360","","","2014-01-12 21:46:14 +0000","Twitterrific","RT @landonfuller: Finally sharing how I really feel: iOS Static Libraries Are, Like, Really Bad, And Stuff: http://t.co/5vKqLrLUft","422467706311696385","17947796","2014-01-12 20:38:44 +0000","http://landonf.bikemonkey.org/code/ios/Radar_15800975_iOS_Frameworks.20140112.html,http://landonf.bikemonkey.org/code/ios/Radar_15800975_iOS_Frameworks.20140112.html" -"422193152124919809","","","2014-01-12 02:27:46 +0000","Twitterrific","RT @Horse_iOS: nil, NULL, and NSNull walk into a bar","422176768330448896","1518266449","2014-01-12 01:22:39 +0000","" -"422185603455664128","422174588999458816","14402479","2014-01-12 01:57:46 +0000","Twitterrific","@JonathonW Too late! ¯\_(ツ)_/¯ +"423126765582553088","","","2014-01-14 16:17:36 +0000","Twitterrific for iOS","Breakfast is delicious. I love the taste of schadenfreude in the morning.","","","","" +"422953732775493632","","","2014-01-14 04:50:02 +0000","Twitterrific for iOS","RT @chockenberry: IS THERE A TRIPPIN BALLS EMOJI ASKING FOR A FRIEND","422952272213966848","36183","2014-01-14 04:44:14 +0000","" +"422819127711911936","422812079779635200","20079975","2014-01-13 19:55:10 +0000","Twitterrific for Mac","@polotek Thanks for the pointer. I’m going to mull this on a background thread while we try to get the product off the ground for now.","","","","" +"422811284879319040","422810974781837312","20079975","2014-01-13 19:24:00 +0000","Twitterrific for Mac",".@polotek Nor am I. My best source so far is an answer on Stack Overflow :/ But the answer seems good http://t.co/aYQHyxmmyW","","","","http://stackoverflow.com/questions/15870457/affects-to-the-server-from-running-eventsources" +"422810713090842624","","","2014-01-13 19:21:44 +0000","Twitterrific for Mac","EventSource sould be more efficient than the constant reconnection of long polling.","","","","" +"422810439114711040","","","2014-01-13 19:20:38 +0000","Twitterrific for Mac","From the server perspective there’s little difference between long-polling and EventSource. My overhead concerns are mainly about clients.","","","","" +"422809722798878720","422809590531489792","4777951","2014-01-13 19:17:48 +0000","Twitterrific for Mac","@polotek really isn’t up to the polling/event serving task without a lot of fuss.","","","","" +"422809590531489792","422807742252716032","20079975","2014-01-13 19:17:16 +0000","Twitterrific for Mac","@polotek The overhead I’m worried about is a laptop battery draining on the client side more than server. I’ll add a node server if Rails…","","","","" +"422809105737080833","422807994447835136","20079975","2014-01-13 19:15:20 +0000","Twitterrific for Mac","@polotek There is another upcoming use case for which a 30-60s interval would be adequate. Polling might be the way to go for that.","","","","" +"422791058448060416","","","2014-01-13 18:03:38 +0000","Twitterrific for Mac",".@jedschmidt Yeah, it really isn’t different from my current method which is a one-off request that hangs until the event occurs server-side","","","","" +"422790877254131713","","","2014-01-13 18:02:54 +0000","Twitterrific for Mac","RT @jedschmidt: @_sjs why close it? at that point you're just long polling.","422790353763434496","815114","2014-01-13 18:00:50 +0000","" +"422790034899484672","","","2014-01-13 17:59:34 +0000","Twitterrific for Mac","I guess I just initialize an EventSource, wait for the event, and then close it. That makes the server side easier as well, given Rails.","","","","" +"422789705109741568","","","2014-01-13 17:58:15 +0000","Twitterrific for Mac","I’m worried about overhead. I only need to listen for an event every now and then so I don’t want to constantly poll.","","","","" +"422788490745487360","","","2014-01-13 17:53:25 +0000","Twitterrific for Mac","It seems like EventSource (Server-sent events) + polyfill is the way to go. My current project uses Rails 4 on the server.","","","","" +"422787114925707264","","","2014-01-13 17:47:57 +0000","Twitterrific for Mac","What are you all using to push events from the server in your single-page web apps? Seems like a basic necessity.","","","","" +"422485134361628672","","","2014-01-12 21:48:00 +0000","Twitterrific for iOS","I've shipped a static library for an iOS SDK and it was a terrible experience. Just figuring out how to build it was an ordeal.","","","","" +"422484690600079360","","","2014-01-12 21:46:14 +0000","Twitterrific for iOS","RT @landonfuller: Finally sharing how I really feel: iOS Static Libraries Are, Like, Really Bad, And Stuff: http://t.co/5vKqLrLUft","422467706311696385","17947796","2014-01-12 20:38:44 +0000","http://landonf.bikemonkey.org/code/ios/Radar_15800975_iOS_Frameworks.20140112.html,http://landonf.bikemonkey.org/code/ios/Radar_15800975_iOS_Frameworks.20140112.html" +"422193152124919809","","","2014-01-12 02:27:46 +0000","Twitterrific for iOS","RT @Horse_iOS: nil, NULL, and NSNull walk into a bar","422176768330448896","1518266449","2014-01-12 01:22:39 +0000","" +"422185603455664128","422174588999458816","14402479","2014-01-12 01:57:46 +0000","Twitterrific for iOS","@JonathonW Too late! ¯\_(ツ)_/¯ It's cool I have a backup if I need to restore. Thanks though.","","","","" "422165196094701568","422163528867278848","6608642","2014-01-12 00:36:40 +0000","Twitter Web Client","@action_jay Heh, that's one of the remaining categories I find lacking on Android. :) Press is great for RSS now.","","","","" -"422160364390723584","422159223451947008","2262091","2014-01-12 00:17:28 +0000","Twitterrific for Mac","@ajordens @mendelev In the spirit of @tenderlove, Saturday cheers! http://t.co/sARHOm6VbX","","","","http://img.ly/xJwV" +"422160364390723584","422159223451947008","2262091","2014-01-12 00:17:28 +0000","Twitterrific for Mac","@ajordens @mendelev In the spirit of @tenderlove, Saturday cheers! http://t.co/sARHOm6VbX","","","","http://img.ly/xJwV" "422157881857691649","422157531729756160","6608642","2014-01-12 00:07:37 +0000","Twitter Web Client","@action_jay Nice. I have the first one and it's a great device. Apps are a bit lacking for me in some areas, but otherwise good. 2nd gen 👍","","","","" "422156967079968768","422155017701711872","6608642","2014-01-12 00:03:58 +0000","Twitter Web Client","@action_jay In my experience the iPod touch is a good iPod but a bad machine for apps. It's at best a gateway to the iPhone. No replacement.","","","","" "422156711911116800","422155017701711872","6608642","2014-01-12 00:02:58 +0000","Twitter Web Client","@action_jay I mean this completely seriously, are there alternatives to the iPod touch? Is the Galaxy Player still a thing?","","","","" -"422154797383311360","422153947236007936","8953202","2014-01-11 23:55:21 +0000","Twitterrific for Mac","@clarity99 @codinghorror Oh, I misunderstood. I thought you meant upgrade to iOS 7, not get a new iPad. My advice is to wait if you can.","","","","" -"422153494305320960","","","2014-01-11 23:50:10 +0000","Twitterrific","RT @codinghorror: @_sjs it is horrid now. iPad went from being one of my fave browsing platforms to one I dread","422148993582260225","5637652","2014-01-11 23:32:17 +0000","" -"422153421328633856","422152182516162560","8953202","2014-01-11 23:49:53 +0000","Twitterrific","@clarity99 @codinghorror I upgraded from an iPad 3. It isn't much worse because it was already so bad ;-) If you like iOS 7 go for it (imho)","","","","" -"422152352473161729","422150895720071168","14402479","2014-01-11 23:45:38 +0000","Twitterrific","@JonathonW @codinghorror Really? I'm going to try the beta right now.","","","","" -"422147546840985600","","","2014-01-11 23:26:32 +0000","Twitterrific for Mac","RT @Oatmeal: Log out, right now. http://t.co/9chxJHNwsp","422140374866333696","4519121","2014-01-11 22:58:03 +0000","http://theoatmeal.com/comics/log_out,http://theoatmeal.com/comics/log_out" -"422147423423586304","422144344397606912","668863","2014-01-11 23:26:03 +0000","Twitterrific for Mac","@tomdale Hand towels are larger and meant for drying hands. Washcloths, also known as facecloths, are smaller and typically for your face.","","","","" -"422147299209269248","422143457604288512","5637652","2014-01-11 23:25:33 +0000","Twitterrific for Mac","@codinghorror It’s so bad now that I wonder if they optimized for keeping apps in memory over tabs in iOS 7.","","","","" -"422147113405796352","422139941632503808","44287241","2014-01-11 23:24:49 +0000","Twitterrific for Mac","@BradFazner Ha ha. Will do.","","","","" -"422146977216729088","","","2014-01-11 23:24:17 +0000","Twitterrific for Mac","“Better Than Olive Garden Alfredo Sauce” +"422154797383311360","422153947236007936","8953202","2014-01-11 23:55:21 +0000","Twitterrific for Mac","@clarity99 @codinghorror Oh, I misunderstood. I thought you meant upgrade to iOS 7, not get a new iPad. My advice is to wait if you can.","","","","" +"422153494305320960","","","2014-01-11 23:50:10 +0000","Twitterrific for iOS","RT @codinghorror: @_sjs it is horrid now. iPad went from being one of my fave browsing platforms to one I dread","422148993582260225","5637652","2014-01-11 23:32:17 +0000","" +"422153421328633856","422152182516162560","8953202","2014-01-11 23:49:53 +0000","Twitterrific for iOS","@clarity99 @codinghorror I upgraded from an iPad 3. It isn't much worse because it was already so bad ;-) If you like iOS 7 go for it (imho)","","","","" +"422152352473161729","422150895720071168","14402479","2014-01-11 23:45:38 +0000","Twitterrific for iOS","@JonathonW @codinghorror Really? I'm going to try the beta right now.","","","","" +"422147546840985600","","","2014-01-11 23:26:32 +0000","Twitterrific for Mac","RT @Oatmeal: Log out, right now. http://t.co/9chxJHNwsp","422140374866333696","4519121","2014-01-11 22:58:03 +0000","http://theoatmeal.com/comics/log_out,http://theoatmeal.com/comics/log_out" +"422147423423586304","422144344397606912","668863","2014-01-11 23:26:03 +0000","Twitterrific for Mac","@tomdale Hand towels are larger and meant for drying hands. Washcloths, also known as facecloths, are smaller and typically for your face.","","","","" +"422147299209269248","422143457604288512","5637652","2014-01-11 23:25:33 +0000","Twitterrific for Mac","@codinghorror It’s so bad now that I wonder if they optimized for keeping apps in memory over tabs in iOS 7.","","","","" +"422147113405796352","422139941632503808","44287241","2014-01-11 23:24:49 +0000","Twitterrific for Mac","@BradFazner Ha ha. Will do.","","","","" +"422146977216729088","","","2014-01-11 23:24:17 +0000","Twitterrific for Mac","“Better Than Olive Garden Alfredo Sauce” *closes tab*","","","","" -"422139726120751104","422129356232593408","5637652","2014-01-11 22:55:28 +0000","Twitterrific","@codinghorror I realize this is ridiculous, but when you're surfing and tabs are closing kill the last couple of apps you used. It helps.","","","","" -"422138900136472576","","","2014-01-11 22:52:11 +0000","Twitterrific","RT @BenedictEvans: A candidate for best financial news headline of 2013 http://t.co/RxfknHjBv8","422016470030114816","1236101","2014-01-11 14:45:41 +0000","https://twitter.com/BenedictEvans/status/422016470030114816/photo/1,https://twitter.com/BenedictEvans/status/422016470030114816/photo/1" -"422138542806941696","422087905595887616","44287241","2014-01-11 22:50:46 +0000","Twitterrific","@BradFazner Account hacked?","","","","" +"422139726120751104","422129356232593408","5637652","2014-01-11 22:55:28 +0000","Twitterrific for iOS","@codinghorror I realize this is ridiculous, but when you're surfing and tabs are closing kill the last couple of apps you used. It helps.","","","","" +"422138900136472576","","","2014-01-11 22:52:11 +0000","Twitterrific for iOS","RT @BenedictEvans: A candidate for best financial news headline of 2013 http://t.co/RxfknHjBv8","422016470030114816","1236101","2014-01-11 14:45:41 +0000","https://twitter.com/BenedictEvans/status/422016470030114816/photo/1,https://twitter.com/BenedictEvans/status/422016470030114816/photo/1" +"422138542806941696","422087905595887616","44287241","2014-01-11 22:50:46 +0000","Twitterrific for iOS","@BradFazner Account hacked?","","","","" "422113178055491584","422069289081139201","20693","2014-01-11 21:09:58 +0000","Twitter Web Client","@tanepiper @jedschmidt @jennschiffer Somehow. If one wasn't sure yet ""California Style Sheets"" should have tipped the scale.","","","","" "422065002002927616","","","2014-01-11 17:58:32 +0000","Tweetbot for iOS","RT @jedschmidt: watching css #thoughtleaders misread @jennschiffer and then claim to grok satire. backface-visibility: visible;","422064146872827904","815114","2014-01-11 17:55:08 +0000","" -"421829761870987264","","","2014-01-11 02:23:47 +0000","Twitterrific","RT @PressFriendly: Everpix spent $109,552.34 (~4% of total expenses) on public relations. https://t.co/vTSMXhKsp1","421798619633577986","20953171","2014-01-11 00:20:02 +0000","https://github.com/everpix/Everpix-Intelligence/blob/master/Financials.md,https://github.com/everpix/Everpix-Intelligence/blob/master/Financials.md" -"421796349286154240","","","2014-01-11 00:11:00 +0000","Twitterrific","RT @stockfinds: Junk food regret http://t.co/TAcjVnHkQZ","421758855765168128","2188800116","2014-01-10 21:42:01 +0000","https://twitter.com/stockfinds/status/421758855765168128/photo/1,https://twitter.com/stockfinds/status/421758855765168128/photo/1" -"421499888103219201","421489190824861696","15208068","2014-01-10 04:32:59 +0000","Twitterrific","@fgnass Beautiful! That just made my night.","","","","" -"421499664832008192","","","2014-01-10 04:32:05 +0000","Twitterrific","RT @fgnass: @_sjs I think ""verschlimmbessern"" is the term you're looking for: http://t.co/U55z88gL21","421489190824861696","15208068","2014-01-10 03:50:28 +0000","http://en.m.wiktionary.org/wiki/verschlimmbessern,http://en.m.wiktionary.org/wiki/verschlimmbessern" -"421441561235189760","421433593492041729","217540637","2014-01-10 00:41:12 +0000","Twitterrific for Mac","@JosephMartel I’m scared to ask how much of that is based in reality.","","","","" +"421829761870987264","","","2014-01-11 02:23:47 +0000","Twitterrific for iOS","RT @PressFriendly: Everpix spent $109,552.34 (~4% of total expenses) on public relations. https://t.co/vTSMXhKsp1","421798619633577986","20953171","2014-01-11 00:20:02 +0000","https://github.com/everpix/Everpix-Intelligence/blob/master/Financials.md,https://github.com/everpix/Everpix-Intelligence/blob/master/Financials.md" +"421796349286154240","","","2014-01-11 00:11:00 +0000","Twitterrific for iOS","RT @stockfinds: Junk food regret http://t.co/TAcjVnHkQZ","421758855765168128","2188800116","2014-01-10 21:42:01 +0000","https://twitter.com/stockfinds/status/421758855765168128/photo/1,https://twitter.com/stockfinds/status/421758855765168128/photo/1" +"421499888103219201","421489190824861696","15208068","2014-01-10 04:32:59 +0000","Twitterrific for iOS","@fgnass Beautiful! That just made my night.","","","","" +"421499664832008192","","","2014-01-10 04:32:05 +0000","Twitterrific for iOS","RT @fgnass: @_sjs I think ""verschlimmbessern"" is the term you're looking for: http://t.co/U55z88gL21","421489190824861696","15208068","2014-01-10 03:50:28 +0000","http://en.m.wiktionary.org/wiki/verschlimmbessern,http://en.m.wiktionary.org/wiki/verschlimmbessern" +"421441561235189760","421433593492041729","217540637","2014-01-10 00:41:12 +0000","Twitterrific for Mac","@JosephMartel I’m scared to ask how much of that is based in reality.","","","","" "421433808185851904","","","2014-01-10 00:10:24 +0000","Twitter Web Client","RT @JosephMartel: @_sjs Pfeilbreitermachensymmetrieanpassungverursachenverlust?","421433593492041729","217540637","2014-01-10 00:09:33 +0000","" -"421429596358053888","","","2014-01-09 23:53:40 +0000","Twitterrific for Mac","What’s the German word for when you’re sketching a diagram and try to even out an arrow only to fatten up both sides, completely ruining it?","","","","" +"421429596358053888","","","2014-01-09 23:53:40 +0000","Twitterrific for Mac","What’s the German word for when you’re sketching a diagram and try to even out an arrow only to fatten up both sides, completely ruining it?","","","","" "421414335504609280","","","2014-01-09 22:53:01 +0000","Tweetbot for iOS","RT @SChhen: ""Worry is a misuse of imagination.""","421131049725210624","31032963","2014-01-09 04:07:21 +0000","" -"421392356928000000","","","2014-01-09 21:25:41 +0000","Twitterrific for Mac","RT @wycats: Big congrats to @littlecalculist and @domenic for winning the TAG election. 2014 just got even more exciting! http://t.co/gr3Hv…","421361927269654529","8526432","2014-01-09 19:24:46 +0000","http://www.w3.org/blog/news/archives/3570" -"421392265932574720","421347910396047360","14761655","2014-01-09 21:25:19 +0000","Twitterrific for Mac","@tenderlove @tomdale That’s how many GSM phones got on the Internet before EDGE. When I was in highschool it was the new, fast standard.","","","","" +"421392356928000000","","","2014-01-09 21:25:41 +0000","Twitterrific for Mac","RT @wycats: Big congrats to @littlecalculist and @domenic for winning the TAG election. 2014 just got even more exciting! http://t.co/gr3Hv…","421361927269654529","8526432","2014-01-09 19:24:46 +0000","http://www.w3.org/blog/news/archives/3570" +"421392265932574720","421347910396047360","14761655","2014-01-09 21:25:19 +0000","Twitterrific for Mac","@tenderlove @tomdale That’s how many GSM phones got on the Internet before EDGE. When I was in highschool it was the new, fast standard.","","","","" "421374231008403456","","","2014-01-09 20:13:40 +0000","Tweetbot for iOS","RT @raganwald: flavourize.js http://t.co/EKkLfYhYTn","421323606509903872","18137723","2014-01-09 16:52:30 +0000","http://raganwald.com/2014/01/09/flavourize.html,http://raganwald.com/2014/01/09/flavourize.html" -"421086078322630656","","","2014-01-09 01:08:39 +0000","Twitterrific","RT @Jury: Are you a fan of custom keybindings? Keyboard Shortcuts supports MenuTitle->SubmenuTitle syntax if you ever need to particularly …","421029097691947008","10754282","2014-01-08 21:22:13 +0000","" +"421086078322630656","","","2014-01-09 01:08:39 +0000","Twitterrific for iOS","RT @Jury: Are you a fan of custom keybindings? Keyboard Shortcuts supports MenuTitle->SubmenuTitle syntax if you ever need to particularly …","421029097691947008","10754282","2014-01-08 21:22:13 +0000","" "421067351719546880","421065732806701057","668863","2014-01-08 23:54:14 +0000","Tweetbot for iOS","@tomdale Baratza makes some good burr grinders.","","","","" "421061106983907328","421021260114853888","8464692","2014-01-08 23:29:25 +0000","Tweetbot for iOS","@5tu @gruber Only .markdown and .md are acceptable. Anything else is insanity. Does anyone actually use the others?","","","","" "421057701213257729","","","2014-01-08 23:15:53 +0000","Tweetbot for iOS","RT @JimRoepcke: Rogers charges for “data usage” for traffic *between devices on a local home network*! http://t.co/IH1DVSt5WK (Please RT to…","420974351161122817","894911","2014-01-08 17:44:41 +0000","http://www.reddit.com/r/canada/comments/1uoobz/60_gigs_of_usage_came_out_of_nowhere_so_i_called/,http://www.reddit.com/r/canada/comments/1uoobz/60_gigs_of_usage_came_out_of_nowhere_so_i_called/" -"420777863940280320","","","2014-01-08 04:43:55 +0000","Twitterrific","RT @tenderlove: I'm getting fewer and fewer serious responses to my pun tweets. #thoughtleaderintraining","420768294929321984","14761655","2014-01-08 04:05:53 +0000","" -"420712499709607936","","","2014-01-08 00:24:11 +0000","Twitterrific for Mac","Problems with models on parent routes in the #emberjs 1.4.0 beta? It might be a bug: https://t.co/tCaarLWAhZ","","","","https://github.com/emberjs/ember.js/issues/4105" -"420361083614797824","420345587687370753","14761655","2014-01-07 01:07:46 +0000","Twitterrific for Mac","@tenderlove Hey-oh! Zing.","","","","" -"420360076390457344","420324141925814272","18247541","2014-01-07 01:03:46 +0000","Twitterrific for Mac","@tapbot_paul Wow, that’s barely more than what I paid for a decent 24” 1200p display 5 years ago. (Dell WFP2408) … Very enticing.","","","","" -"420296998005141504","","","2014-01-06 20:53:07 +0000","Twitterrific for Mac","OH: “For some reason now it thinks I want anal.”","","","","" -"420227497033080835","","","2014-01-06 16:16:57 +0000","Twitterrific","RT @siracusa: If I reposted this with a new date, I wonder if anyone would notice: http://t.co/ZcWkBrWs4H /cc @counternotions","420210871680643072","636923","2014-01-06 15:10:53 +0000","http://hypercritical.co/2013/01/07/ces-worse-products-through-software,http://hypercritical.co/2013/01/07/ces-worse-products-through-software" -"420072924016439296","420013592436436992","2911221","2014-01-06 06:02:44 +0000","Twitterrific","@wilshipley @codinghorror I have a bookmarklet titled ""Fix SO comments"". Gets me every time.","","","","" -"420072678049861632","","","2014-01-06 06:01:45 +0000","Twitterrific","RT @wilshipley: Is the worst sin @codinghorror ever committed replacing standard emacs editing bindings with crazy formatting commands? +"420777863940280320","","","2014-01-08 04:43:55 +0000","Twitterrific for iOS","RT @tenderlove: I'm getting fewer and fewer serious responses to my pun tweets. #thoughtleaderintraining","420768294929321984","14761655","2014-01-08 04:05:53 +0000","" +"420712499709607936","","","2014-01-08 00:24:11 +0000","Twitterrific for Mac","Problems with models on parent routes in the #emberjs 1.4.0 beta? It might be a bug: https://t.co/tCaarLWAhZ","","","","https://github.com/emberjs/ember.js/issues/4105" +"420361083614797824","420345587687370753","14761655","2014-01-07 01:07:46 +0000","Twitterrific for Mac","@tenderlove Hey-oh! Zing.","","","","" +"420360076390457344","420324141925814272","18247541","2014-01-07 01:03:46 +0000","Twitterrific for Mac","@tapbot_paul Wow, that’s barely more than what I paid for a decent 24” 1200p display 5 years ago. (Dell WFP2408) … Very enticing.","","","","" +"420296998005141504","","","2014-01-06 20:53:07 +0000","Twitterrific for Mac","OH: “For some reason now it thinks I want anal.”","","","","" +"420227497033080835","","","2014-01-06 16:16:57 +0000","Twitterrific for iOS","RT @siracusa: If I reposted this with a new date, I wonder if anyone would notice: http://t.co/ZcWkBrWs4H /cc @counternotions","420210871680643072","636923","2014-01-06 15:10:53 +0000","http://hypercritical.co/2013/01/07/ces-worse-products-through-software,http://hypercritical.co/2013/01/07/ces-worse-products-through-software" +"420072924016439296","420013592436436992","2911221","2014-01-06 06:02:44 +0000","Twitterrific for iOS","@wilshipley @codinghorror I have a bookmarklet titled ""Fix SO comments"". Gets me every time.","","","","" +"420072678049861632","","","2014-01-06 06:01:45 +0000","Twitterrific for iOS","RT @wilshipley: Is the worst sin @codinghorror ever committed replacing standard emacs editing bindings with crazy formatting commands? Ye…","420013592436436992","2911221","2014-01-06 02:06:58 +0000","" -"419888862811275265","419832586303967232","14231571","2014-01-05 17:51:20 +0000","Twitterrific","@marcoarment I used Music, then Podcasts, and now Castro. I never liked Downcast or Instacast yet they are very popular. None are perfect.","","","","" -"419512634388389889","","","2014-01-04 16:56:20 +0000","Twitterrific","RT @tomdale: Literally the best error message I’ve ever seen, from @slackhq. https://t.co/NNZiAce90G","419493469007011841","668863","2014-01-04 15:40:11 +0000","https://www.monosnap.com/image/kbTfC2hyiGHEqBuNNw7ctKDUJ,https://www.monosnap.com/image/kbTfC2hyiGHEqBuNNw7ctKDUJ" -"419316868537520128","","","2014-01-04 03:58:26 +0000","Twitterrific","RT @horse_js: the one that everyone is using now is ember.js but it makes absolutely no sense","419301197409828864","497617437","2014-01-04 02:56:10 +0000","" -"419237780829376513","","","2014-01-03 22:44:10 +0000","Twitterrific for Mac","OH: “I don’t think I’ve ever made a useful comment.”","","","","" -"419168657525059584","419003769410441217","5637652","2014-01-03 18:09:30 +0000","Twitterrific for Mac","@codinghorror @wilshipley Yup, I just built another Hackintosh. I didn’t have to hack around any activation or licensing bullshit.","","","","" -"418962367234338816","","652293","2014-01-03 04:29:46 +0000","Twitterrific","@brentsimmons I'm really enjoying the Vesper Sync Diaries. Thoughtful and honest. Thanks for sharing.","","","","" -"418959532979539968","418940291421204482","13941522","2014-01-03 04:18:31 +0000","Twitterrific","@picandocodigo @tenderlove @mikedanko That bulge.","","","","" -"418876909510860800","","","2014-01-02 22:50:12 +0000","Twitterrific for Mac","I’m going to make it less flexible and clever, but more explicit.","","","","" -"418876677070929920","","","2014-01-02 22:49:16 +0000","Twitterrific for Mac","Uh oh. I made a mistake with this data model. Models & assocations are hidden with flexible and clever field choices. It’s opaque and bad.","","","","" -"418840269048389633","","","2014-01-02 20:24:36 +0000","Twitterrific for Mac","RT @jacobrothstein: I really hope some linguist has studied the phenomenon of having a Facebook/Twitter/etc standing for having an account.…","418838732528029696","27302287","2014-01-02 20:18:30 +0000","" -"418445261426274304","418388085546577920","1636590253","2014-01-01 18:14:59 +0000","Twitterrific","@tim_cook We have an enormous year to announce today. Thanks to our brilliant engineering and design teams iYear 2014 is the best year ever.","","","","" -"418297611464867840","","","2014-01-01 08:28:16 +0000","Twitterrific","RT @wwwtxt: If you're a long-distance telephone company and want me to switch to your service, please hang up and try again in the year 201…","418279119533932545","207756340","2014-01-01 07:14:48 +0000","" -"418250973346140160","417893753941409793","636923","2014-01-01 05:22:57 +0000","Twitterrific","@siracusa @raydorman There's also some stuff in a Mac Power Users episode or two.","","","","" -"418250650275676160","417893753941409793","636923","2014-01-01 05:21:40 +0000","Twitterrific","@siracusa @raydorman Happy new year http://t.co/wRfCnUUuYr","","","","http://5by5.tv/hypercritical/23" -"418168831169658880","","","2013-12-31 23:56:33 +0000","Twitterrific for Mac","RT @spolsky: @roxaloxa @raganwald that's the only way they make money. if you like the service why not pay them for building and hosting it…","418161178506829824","15948437","2013-12-31 23:26:08 +0000","" -"418168761200308225","418128316365676544","14467421","2013-12-31 23:56:16 +0000","Twitterrific for Mac","@roxaloxa @Evernote @raganwald Hey, they have to test & support that. Changes have to be buffered until a connection is available. Not free!","","","","" -"418167206170476544","418106786000814080","18247541","2013-12-31 23:50:05 +0000","Twitterrific for Mac","@tapbot_paul I am shocked – shocked! – that somebody known as iCrackGames101 would pirate an app. Who are these people? Are they lucid?","","","","" -"418103043607887872","","","2013-12-31 19:35:08 +0000","Twitterrific for Mac","RT @trek: Protip: add `&vt=tl` to any netflix category to get a sortable list view (even by rating!)","418082875339059200","1291711","2013-12-31 18:14:59 +0000","" -"418057697884246017","418052709192069120","18247541","2013-12-31 16:34:56 +0000","Twitterrific","@tapbot_paul I've seen two here in BC. One was used but eventually replaced with a MacBook Air. The other unused.","","","","" -"418056683898687488","","","2013-12-31 16:30:55 +0000","Twitterrific","RT @counternotions: I love the ""X pwned Y"" stories that begin with physical access to the device.","417996918405361664","19225408","2013-12-31 12:33:26 +0000","" -"417781553268129792","","","2013-12-30 22:17:38 +0000","Twitterrific","RT @matthelm: Shopify was deployed to production ~1,835 times in 2013","417752374464098304","14166206","2013-12-30 20:21:42 +0000","" -"417779176557400064","417762878012547072","97482220","2013-12-30 22:08:12 +0000","Twitterrific","@eLobatoss @benprunty She's in the top 3% this month or last month.","","","","" -"417762412557639680","417720652721041408","14231571","2013-12-30 21:01:35 +0000","Twitterrific for Mac","@marcoarment The cable on my PX 200-IIi went after about a year as well. I won’t buy those again.","","","","" -"417487252554387456","","","2013-12-30 02:48:12 +0000","Twitterrific","RT @Horse_iOS: A last-minute change has opened up next week’s Horse_iOS sponsorship. For only $9500 you can get a sarcastic oblique referen…","417486381418442753","1518266449","2013-12-30 02:44:44 +0000","" +"419888862811275265","419832586303967232","14231571","2014-01-05 17:51:20 +0000","Twitterrific for iOS","@marcoarment I used Music, then Podcasts, and now Castro. I never liked Downcast or Instacast yet they are very popular. None are perfect.","","","","" +"419512634388389889","","","2014-01-04 16:56:20 +0000","Twitterrific for iOS","RT @tomdale: Literally the best error message I’ve ever seen, from @slackhq. https://t.co/NNZiAce90G","419493469007011841","668863","2014-01-04 15:40:11 +0000","https://www.monosnap.com/image/kbTfC2hyiGHEqBuNNw7ctKDUJ,https://www.monosnap.com/image/kbTfC2hyiGHEqBuNNw7ctKDUJ" +"419316868537520128","","","2014-01-04 03:58:26 +0000","Twitterrific for iOS","RT @horse_js: the one that everyone is using now is ember.js but it makes absolutely no sense","419301197409828864","497617437","2014-01-04 02:56:10 +0000","" +"419237780829376513","","","2014-01-03 22:44:10 +0000","Twitterrific for Mac","OH: “I don’t think I’ve ever made a useful comment.”","","","","" +"419168657525059584","419003769410441217","5637652","2014-01-03 18:09:30 +0000","Twitterrific for Mac","@codinghorror @wilshipley Yup, I just built another Hackintosh. I didn’t have to hack around any activation or licensing bullshit.","","","","" +"418962367234338816","","652293","2014-01-03 04:29:46 +0000","Twitterrific for iOS","@brentsimmons I'm really enjoying the Vesper Sync Diaries. Thoughtful and honest. Thanks for sharing.","","","","" +"418959532979539968","418940291421204482","13941522","2014-01-03 04:18:31 +0000","Twitterrific for iOS","@picandocodigo @tenderlove @mikedanko That bulge.","","","","" +"418876909510860800","","","2014-01-02 22:50:12 +0000","Twitterrific for Mac","I’m going to make it less flexible and clever, but more explicit.","","","","" +"418876677070929920","","","2014-01-02 22:49:16 +0000","Twitterrific for Mac","Uh oh. I made a mistake with this data model. Models & assocations are hidden with flexible and clever field choices. It’s opaque and bad.","","","","" +"418840269048389633","","","2014-01-02 20:24:36 +0000","Twitterrific for Mac","RT @jacobrothstein: I really hope some linguist has studied the phenomenon of having a Facebook/Twitter/etc standing for having an account.…","418838732528029696","27302287","2014-01-02 20:18:30 +0000","" +"418445261426274304","418388085546577920","1636590253","2014-01-01 18:14:59 +0000","Twitterrific for iOS","@tim_cook We have an enormous year to announce today. Thanks to our brilliant engineering and design teams iYear 2014 is the best year ever.","","","","" +"418297611464867840","","","2014-01-01 08:28:16 +0000","Twitterrific for iOS","RT @wwwtxt: If you're a long-distance telephone company and want me to switch to your service, please hang up and try again in the year 201…","418279119533932545","207756340","2014-01-01 07:14:48 +0000","" +"418250973346140160","417893753941409793","636923","2014-01-01 05:22:57 +0000","Twitterrific for iOS","@siracusa @raydorman There's also some stuff in a Mac Power Users episode or two.","","","","" +"418250650275676160","417893753941409793","636923","2014-01-01 05:21:40 +0000","Twitterrific for iOS","@siracusa @raydorman Happy new year http://t.co/wRfCnUUuYr","","","","http://5by5.tv/hypercritical/23" +"418168831169658880","","","2013-12-31 23:56:33 +0000","Twitterrific for Mac","RT @spolsky: @roxaloxa @raganwald that's the only way they make money. if you like the service why not pay them for building and hosting it…","418161178506829824","15948437","2013-12-31 23:26:08 +0000","" +"418168761200308225","418128316365676544","14467421","2013-12-31 23:56:16 +0000","Twitterrific for Mac","@roxaloxa @Evernote @raganwald Hey, they have to test & support that. Changes have to be buffered until a connection is available. Not free!","","","","" +"418167206170476544","418106786000814080","18247541","2013-12-31 23:50:05 +0000","Twitterrific for Mac","@tapbot_paul I am shocked – shocked! – that somebody known as iCrackGames101 would pirate an app. Who are these people? Are they lucid?","","","","" +"418103043607887872","","","2013-12-31 19:35:08 +0000","Twitterrific for Mac","RT @trek: Protip: add `&vt=tl` to any netflix category to get a sortable list view (even by rating!)","418082875339059200","1291711","2013-12-31 18:14:59 +0000","" +"418057697884246017","418052709192069120","18247541","2013-12-31 16:34:56 +0000","Twitterrific for iOS","@tapbot_paul I've seen two here in BC. One was used but eventually replaced with a MacBook Air. The other unused.","","","","" +"418056683898687488","","","2013-12-31 16:30:55 +0000","Twitterrific for iOS","RT @counternotions: I love the ""X pwned Y"" stories that begin with physical access to the device.","417996918405361664","19225408","2013-12-31 12:33:26 +0000","" +"417781553268129792","","","2013-12-30 22:17:38 +0000","Twitterrific for iOS","RT @matthelm: Shopify was deployed to production ~1,835 times in 2013","417752374464098304","14166206","2013-12-30 20:21:42 +0000","" +"417779176557400064","417762878012547072","97482220","2013-12-30 22:08:12 +0000","Twitterrific for iOS","@eLobatoss @benprunty She's in the top 3% this month or last month.","","","","" +"417762412557639680","417720652721041408","14231571","2013-12-30 21:01:35 +0000","Twitterrific for Mac","@marcoarment The cable on my PX 200-IIi went after about a year as well. I won’t buy those again.","","","","" +"417487252554387456","","","2013-12-30 02:48:12 +0000","Twitterrific for iOS","RT @Horse_iOS: A last-minute change has opened up next week’s Horse_iOS sponsorship. For only $9500 you can get a sarcastic oblique referen…","417486381418442753","1518266449","2013-12-30 02:44:44 +0000","" "417464699710492672","","102550526","2013-12-30 01:18:35 +0000","Twitter Web Client","@gnachman http://t.co/GRkuduidxy is down. I'm using Terminal on my new machine, like an animal! :)","","","","http://iterm2.com" -"417130316575162368","","","2013-12-29 03:09:52 +0000","Twitterrific","RT @HistoryInPics: Behind the scene of 2001: A Space Odyssey http://t.co/XvgWgPcjJu","417100417815023616","1582853809","2013-12-29 01:11:03 +0000","https://twitter.com/HistoryInPics/status/417100417815023616/photo/1,https://twitter.com/HistoryInPics/status/417100417815023616/photo/1" -"417113139520352256","417047209561948160","74837444","2013-12-29 02:01:36 +0000","Twitterrific","@Badger32d The sub-$800 notebook market is a terrible place.","","","","" -"416983078599266304","","","2013-12-28 17:24:47 +0000","Twitterrific","RT @BarnabyEdwards: The X-rated sequel to Blade Runner? http://t.co/nhIi2jJCHZ","416925199947538432","112125663","2013-12-28 13:34:48 +0000","https://twitter.com/BarnabyEdwards/status/416925199947538432/photo/1,https://twitter.com/BarnabyEdwards/status/416925199947538432/photo/1" -"416982055973445632","416888799944511488","33423","2013-12-28 17:20:43 +0000","Twitterrific","@gruber And that's one of the nice comments.","","","","" -"416620157465673728","","","2013-12-27 17:22:40 +0000","Twitterrific","RT @fogus: I'm working on a new book ""JavaScript: The Good-enough Parts""","416597972818731008","14375110","2013-12-27 15:54:31 +0000","" -"416380008588775424","","","2013-12-27 01:28:24 +0000","Twitterrific","RT @caseyjohnston: Netflix nail, meet cable coffin http://t.co/ZSebEIoita","416339242705367040","16472748","2013-12-26 22:46:25 +0000","https://twitter.com/caseyjohnston/status/416339242705367040/photo/1,https://twitter.com/caseyjohnston/status/416339242705367040/photo/1" -"416299142441205760","","","2013-12-26 20:07:04 +0000","Twitterrific","RT @gruber: Gag gift of the year award goes to @tonxcoffee: http://t.co/m7aOOMACCe","416287777542930432","33423","2013-12-26 19:21:55 +0000","https://twitter.com/gruber/status/416287777542930432/photo/1,https://twitter.com/gruber/status/416287777542930432/photo/1" -"416239777185136640","416186833295659008","53010195","2013-12-26 16:11:10 +0000","Twitterrific","@mraleph CloJavaScripture?","","","","" -"415936999774642177","","","2013-12-25 20:08:03 +0000","Twitterrific","Oh no, @McDonalds is closed! Christmas lunch is ruined!","","","","" -"415581989199036416","415555253799370753","18247541","2013-12-24 20:37:22 +0000","Twitterrific","@tapbot_paul I have a feeling that over the next few years we'll see software use those GPUs and open up new use cases though.","","","","" -"415581775050448896","415555253799370753","18247541","2013-12-24 20:36:30 +0000","Twitterrific","@tapbot_paul If someone wants the fastest Mac they can get, the Mac Pro is it. If someone wants a Mac with ECC RAM, the Mac Pro is it.","","","","" +"417130316575162368","","","2013-12-29 03:09:52 +0000","Twitterrific for iOS","RT @HistoryInPics: Behind the scene of 2001: A Space Odyssey http://t.co/XvgWgPcjJu","417100417815023616","1582853809","2013-12-29 01:11:03 +0000","https://twitter.com/HistoryInPics/status/417100417815023616/photo/1,https://twitter.com/HistoryInPics/status/417100417815023616/photo/1" +"417113139520352256","417047209561948160","74837444","2013-12-29 02:01:36 +0000","Twitterrific for iOS","@Badger32d The sub-$800 notebook market is a terrible place.","","","","" +"416983078599266304","","","2013-12-28 17:24:47 +0000","Twitterrific for iOS","RT @BarnabyEdwards: The X-rated sequel to Blade Runner? http://t.co/nhIi2jJCHZ","416925199947538432","112125663","2013-12-28 13:34:48 +0000","https://twitter.com/BarnabyEdwards/status/416925199947538432/photo/1,https://twitter.com/BarnabyEdwards/status/416925199947538432/photo/1" +"416982055973445632","416888799944511488","33423","2013-12-28 17:20:43 +0000","Twitterrific for iOS","@gruber And that's one of the nice comments.","","","","" +"416620157465673728","","","2013-12-27 17:22:40 +0000","Twitterrific for iOS","RT @fogus: I'm working on a new book ""JavaScript: The Good-enough Parts""","416597972818731008","14375110","2013-12-27 15:54:31 +0000","" +"416380008588775424","","","2013-12-27 01:28:24 +0000","Twitterrific for iOS","RT @caseyjohnston: Netflix nail, meet cable coffin http://t.co/ZSebEIoita","416339242705367040","16472748","2013-12-26 22:46:25 +0000","https://twitter.com/caseyjohnston/status/416339242705367040/photo/1,https://twitter.com/caseyjohnston/status/416339242705367040/photo/1" +"416299142441205760","","","2013-12-26 20:07:04 +0000","Twitterrific for iOS","RT @gruber: Gag gift of the year award goes to @tonxcoffee: http://t.co/m7aOOMACCe","416287777542930432","33423","2013-12-26 19:21:55 +0000","https://twitter.com/gruber/status/416287777542930432/photo/1,https://twitter.com/gruber/status/416287777542930432/photo/1" +"416239777185136640","416186833295659008","53010195","2013-12-26 16:11:10 +0000","Twitterrific for iOS","@mraleph CloJavaScripture?","","","","" +"415936999774642177","","","2013-12-25 20:08:03 +0000","Twitterrific for iOS","Oh no, @McDonalds is closed! Christmas lunch is ruined!","","","","" +"415581989199036416","415555253799370753","18247541","2013-12-24 20:37:22 +0000","Twitterrific for iOS","@tapbot_paul I have a feeling that over the next few years we'll see software use those GPUs and open up new use cases though.","","","","" +"415581775050448896","415555253799370753","18247541","2013-12-24 20:36:30 +0000","Twitterrific for iOS","@tapbot_paul If someone wants the fastest Mac they can get, the Mac Pro is it. If someone wants a Mac with ECC RAM, the Mac Pro is it.","","","","" "415563971756703744","415556594202836993","6927562","2013-12-24 19:25:46 +0000","Twitter Web Client","@thomasfuchs You get in the door at $3k which is easy enough for most professionals, who probably won't use all that power.","","","","" -"415554035903512576","415547440574783488","6927562","2013-12-24 18:46:17 +0000","Twitterrific","@thomasfuchs The thing is most people don't need that power and it's probably bad value for most consumers because they won't use it.","","","","" -"415553825043259392","415547440574783488","6927562","2013-12-24 18:45:27 +0000","Twitterrific","@thomasfuchs The comments are a train wreck. People too lazy to price components or competitors and realize that the Mac Pro is good value.","","","","" -"415529643878256640","","","2013-12-24 17:09:21 +0000","Twitterrific","RT @lukeoneil47: It's pronounced Christmas jift, actually.","415347426795343872","108338399","2013-12-24 05:05:17 +0000","" -"415528468340674560","415462886853865472","9405632","2013-12-24 17:04:41 +0000","Twitterrific","@rascalking @siracusa I'm neither mad nor surprised at the bank's actions. The US government is the hypocritical offender here.","","","","" -"415523944158875648","","","2013-12-24 16:46:43 +0000","Twitterrific","RT @monkbent: The reason @samfbiddle pulls it off is because he's genuinely funny. http://t.co/95VYRBFLDx","415448995708694528","40273","2013-12-24 11:48:53 +0000","http://valleywag.gawker.com/the-biggest-dick-moves-of-silicon-valley-2013-1488642817/,http://valleywag.gawker.com/the-biggest-dick-moves-of-silicon-valley-2013-1488642817/" -"415523870389448705","415448995708694528","40273","2013-12-24 16:46:25 +0000","Twitterrific","@monkbent @samfbiddle And those all sound like genuine dick moves. If anyone mentioned is upset they can only blame themselves.","","","","" -"415198820167712769","","","2013-12-23 19:14:47 +0000","Twitterrific","RT @TheNodeLebowski: JSLint vs. JSHint. Well, you know, that's just like, your opinion, man. http://t.co/xxdLHfxl9H","415182150988611584","1339240128","2013-12-23 18:08:33 +0000","https://twitter.com/TheNodeLebowski/status/415182150988611584/photo/1,https://twitter.com/TheNodeLebowski/status/415182150988611584/photo/1" -"415198418563112960","415162623735246848","14864447","2013-12-23 19:13:11 +0000","Twitterrific","@bryan_kyle That post is so good I like reading it again every now and then.","","","","" -"415161487934500864","","","2013-12-23 16:46:26 +0000","Twitterrific","Right or wrong, someone was going to get that money by providing the service that is clearly in high demand.","","","","" -"415161289384546304","","","2013-12-23 16:45:39 +0000","Twitterrific","Megaupload profited mainly from subscriptions. Movie studios could have taken that money but they left it on the table for @KimDotcom.","","","","" -"415156284044754944","","","2013-12-23 16:25:46 +0000","Twitterrific","RT @GeorgeRRMartin_: Well played bookstore, well played. #asoiaf http://t.co/0PklpWzv6L","413542106595352576","425938818","2013-12-19 05:31:36 +0000","https://twitter.com/GeorgeRRMartin_/status/413542106595352576/photo/1,https://twitter.com/GeorgeRRMartin_/status/413542106595352576/photo/1" -"415156186854334466","415142693312794624","1291711","2013-12-23 16:25:22 +0000","Twitterrific","@trek Kiind might be the next best thing.","","","","" -"414857884028002304","414834894422814720","18137723","2013-12-22 20:40:01 +0000","Twitterrific","@raganwald I haven't seen him say anything like that before. But hey, he thinks that god channels him to communicate to the world, so...","","","","" -"414324783543615488","414278407095332864","14231571","2013-12-21 09:21:40 +0000","Twitterrific","@marcoarment The Mac Pro is for A/V work. It doesn't make sense for any other use case.","","","","" -"414213001479065600","","","2013-12-21 01:57:29 +0000","Twitterrific","It seems like iOS sets the flash to Auto every time you take a photo with Messages. Wtf? Don't do that. Someone get @nerdtalker on the case.","","","","" -"414130317423689728","","","2013-12-20 20:28:56 +0000","Twitterrific for Mac","Ruby 2.1-rc1 is out. I like new lambda return semantics, Array/Enumerable#to_h and String#scrub. Haven’t used refinements yet, but should.","","","","" -"414122791470788608","414122205513936897","14618863","2013-12-20 19:59:02 +0000","Twitterrific for Mac","@anandshimpi @siracusa But maybe I’m just too cheap for the Mac Pro :)","","","","" -"414122615310008320","414122205513936897","14618863","2013-12-20 19:58:20 +0000","Twitterrific for Mac","@anandshimpi @siracusa It’s just a waste of those GPUs. I could put together a hell of a quad-core Mac mini w/ SSDs and displays for $3000.","","","","" -"414116467081084928","414113385148862464","636923","2013-12-20 19:33:54 +0000","Twitterrific for Mac","@siracusa @anandshimpi It’s crazy that Apple doesn’t make a reasonable machine for devs. Pro is too much, mini too little, and iMac ROFL.","","","","" -"414094884136439808","","","2013-12-20 18:08:08 +0000","Twitterrific for Mac","RT @thomasfuchs: Wow! So journalism. Such reporting. http://t.co/wFAIMQUKQS","414091191211532288","6927562","2013-12-20 17:53:28 +0000","https://twitter.com/thomasfuchs/status/414091191211532288/photo/1,https://twitter.com/thomasfuchs/status/414091191211532288/photo/1" -"414094814167052288","414089844277927936","1699999614","2013-12-20 18:07:51 +0000","Twitterrific for Mac","@EmberSherpa Good timing. Just this week I made a component that was leaking an event handler. Fixed now.","","","","" -"413912828718743552","413838906178555904","8259712","2013-12-20 06:04:43 +0000","Twitterrific","@DanFrakes @marcoarment That's the first photo that really showed me how small that Mac is. Incredible power / volume ratio.","","","","" -"413706019835895808","413661605507764224","18247541","2013-12-19 16:22:56 +0000","Twitterrific","@tapbot_paul Man I wish they made sense. There is the 4k angle, and the fact that iMacs are a non-starter. Still waiting for xMac. @siracusa","","","","" -"413705634802970624","","","2013-12-19 16:21:24 +0000","Twitterrific","RT @tapbot_paul: Current Mac Pro is only for devs with more money than sense. So I probably won’t be buying one, until at least the first r…","413661605507764224","18247541","2013-12-19 13:26:26 +0000","" -"413705624547893249","","","2013-12-19 16:21:21 +0000","Twitterrific","RT @tapbot_paul: As a dev who doesn’t give a crap about video/image editing this is probably the only config that makes any sense. http://t…","413656619642527744","18247541","2013-12-19 13:06:38 +0000","https://twitter.com/tapbot_paul/status/413656619642527744/photo/1" -"413703830254018560","413577276035313664","29255412","2013-12-19 16:14:14 +0000","Twitterrific","@tjholowaychuk Yeah, could be worse though. I haven't really played with them yet but I like what I've seen.","","","","" -"413575321611280384","413561066308644864","29255412","2013-12-19 07:43:35 +0000","Twitterrific","@tjholowaychuk I like the API. Context has some nice conveniences. Are you using generators all over now? It seems like you like them a lot.","","","","" -"413574686593658881","","","2013-12-19 07:41:03 +0000","Twitterrific","RT @IsTheStoreDown: The Apple Store is down! The average Store downtime is about 3 hours and 2 minutes. http://t.co/rNSW61xwjS","413564735754620928","71861246","2013-12-19 07:01:31 +0000","http://istheapplestoredown.com/alarm,http://istheapplestoredown.com/alarm" -"413543332061528064","","","2013-12-19 05:36:28 +0000","Twitterrific","RT @jeresig: A plea for those writing complex libraries: Include practical examples. Use of foo/bar/baz and single-letter variables is forb…","413527935019003904","752673","2013-12-19 04:35:17 +0000","" -"413542982650843136","413509052593745920","814316","2013-12-19 05:35:04 +0000","Twitterrific","@beltzner Yeah, they are trying to fix it albeit for a different reason. Mainly anyway. @textfiles @BrendanEich","","","","" -"413448732344991744","413446848641130496","18247541","2013-12-18 23:20:33 +0000","Twitterrific for Mac","@tapbot_paul @marcoarment On the MacBook Air, MacBook Pro, and iMac the current 256 GB -> 512 GB SSD upgrade price is $300 across the board.","","","","" -"413415315364511744","","","2013-12-18 21:07:46 +0000","Twitterrific for Mac","RT @tarikh: @gruber ""this keyboard represents everything about Apple that I hate"" http://t.co/PhrZBw5FWr","413413708170153984","7535272","2013-12-18 21:01:23 +0000","http://youtu.be/O2tK0Wl2F8w?t=42m10s,http://youtu.be/O2tK0Wl2F8w?t=42m10s" -"413409717487034368","","","2013-12-18 20:45:32 +0000","Twitterrific for Mac","I wish I could rate websites ★ ☆ ☆ ☆ ☆ when they puke up garbage right over top of what I’m trying to read. Closing the tab doesn’t cut it.","","","","" -"413403806823489536","","","2013-12-18 20:22:02 +0000","Twitterrific for Mac","I started using http://t.co/DmTXDPGYhg to make my locally developed app available publicly (for Twilio integration). It’s awesome.","","","","http://ngrok.com" -"413387103708258305","413385989743476736","33423","2013-12-18 19:15:40 +0000","Twitterrific for Mac","@gruber Or a 32” Sharp for more than twice the price. Sane people would get the Dell I guess.","","","","" -"413067504244629504","","","2013-12-17 22:05:42 +0000","Twitterrific","RT @charliesome: TIL PHP originally used strlen() as its hash function, so function names were picked to ensure an even distribution: http:…","412780320685957120","16142240","2013-12-17 03:04:32 +0000","http://news.php.net/php.internals/70691" -"412971686552547328","","","2013-12-17 15:44:57 +0000","Twitterrific","RT @CarcassonneApp: Happy to announce the next expansion update is becoming available! Update the app, get Dragon and Princess as In-App pu…","412964522454827009","49669910","2013-12-17 15:16:29 +0000","" -"412970551607439360","","","2013-12-17 15:40:26 +0000","Twitterrific","RT @monkbent: I’m surprised Apple released the agency pitch video for “Misunderstood” +"415554035903512576","415547440574783488","6927562","2013-12-24 18:46:17 +0000","Twitterrific for iOS","@thomasfuchs The thing is most people don't need that power and it's probably bad value for most consumers because they won't use it.","","","","" +"415553825043259392","415547440574783488","6927562","2013-12-24 18:45:27 +0000","Twitterrific for iOS","@thomasfuchs The comments are a train wreck. People too lazy to price components or competitors and realize that the Mac Pro is good value.","","","","" +"415529643878256640","","","2013-12-24 17:09:21 +0000","Twitterrific for iOS","RT @lukeoneil47: It's pronounced Christmas jift, actually.","415347426795343872","108338399","2013-12-24 05:05:17 +0000","" +"415528468340674560","415462886853865472","9405632","2013-12-24 17:04:41 +0000","Twitterrific for iOS","@rascalking @siracusa I'm neither mad nor surprised at the bank's actions. The US government is the hypocritical offender here.","","","","" +"415523944158875648","","","2013-12-24 16:46:43 +0000","Twitterrific for iOS","RT @monkbent: The reason @samfbiddle pulls it off is because he's genuinely funny. http://t.co/95VYRBFLDx","415448995708694528","40273","2013-12-24 11:48:53 +0000","http://valleywag.gawker.com/the-biggest-dick-moves-of-silicon-valley-2013-1488642817/,http://valleywag.gawker.com/the-biggest-dick-moves-of-silicon-valley-2013-1488642817/" +"415523870389448705","415448995708694528","40273","2013-12-24 16:46:25 +0000","Twitterrific for iOS","@monkbent @samfbiddle And those all sound like genuine dick moves. If anyone mentioned is upset they can only blame themselves.","","","","" +"415198820167712769","","","2013-12-23 19:14:47 +0000","Twitterrific for iOS","RT @TheNodeLebowski: JSLint vs. JSHint. Well, you know, that's just like, your opinion, man. http://t.co/xxdLHfxl9H","415182150988611584","1339240128","2013-12-23 18:08:33 +0000","https://twitter.com/TheNodeLebowski/status/415182150988611584/photo/1,https://twitter.com/TheNodeLebowski/status/415182150988611584/photo/1" +"415198418563112960","415162623735246848","14864447","2013-12-23 19:13:11 +0000","Twitterrific for iOS","@bryan_kyle That post is so good I like reading it again every now and then.","","","","" +"415161487934500864","","","2013-12-23 16:46:26 +0000","Twitterrific for iOS","Right or wrong, someone was going to get that money by providing the service that is clearly in high demand.","","","","" +"415161289384546304","","","2013-12-23 16:45:39 +0000","Twitterrific for iOS","Megaupload profited mainly from subscriptions. Movie studios could have taken that money but they left it on the table for @KimDotcom.","","","","" +"415156284044754944","","","2013-12-23 16:25:46 +0000","Twitterrific for iOS","RT @GeorgeRRMartin_: Well played bookstore, well played. #asoiaf http://t.co/0PklpWzv6L","413542106595352576","425938818","2013-12-19 05:31:36 +0000","https://twitter.com/GeorgeRRMartin_/status/413542106595352576/photo/1,https://twitter.com/GeorgeRRMartin_/status/413542106595352576/photo/1" +"415156186854334466","415142693312794624","1291711","2013-12-23 16:25:22 +0000","Twitterrific for iOS","@trek Kiind might be the next best thing.","","","","" +"414857884028002304","414834894422814720","18137723","2013-12-22 20:40:01 +0000","Twitterrific for iOS","@raganwald I haven't seen him say anything like that before. But hey, he thinks that god channels him to communicate to the world, so...","","","","" +"414324783543615488","414278407095332864","14231571","2013-12-21 09:21:40 +0000","Twitterrific for iOS","@marcoarment The Mac Pro is for A/V work. It doesn't make sense for any other use case.","","","","" +"414213277636255744","","","2013-12-21 01:58:35 +0000","Twitterrific for iOS","RT @tlrobinson: This is either a really good idea, or a really terrible idea. Either way, Merry Christmas! http://t.co/sihU1ralRm","414198869958733825","14206068","2013-12-21 01:01:20 +0000","https://twitter.com/tlrobinson/status/414198869958733825/photo/1,https://twitter.com/tlrobinson/status/414198869958733825/photo/1" +"414213001479065600","","","2013-12-21 01:57:29 +0000","Twitterrific for iOS","It seems like iOS sets the flash to Auto every time you take a photo with Messages. Wtf? Don't do that. Someone get @nerdtalker on the case.","","","","" +"414130317423689728","","","2013-12-20 20:28:56 +0000","Twitterrific for Mac","Ruby 2.1-rc1 is out. I like new lambda return semantics, Array/Enumerable#to_h and String#scrub. Haven’t used refinements yet, but should.","","","","" +"414122791470788608","414122205513936897","14618863","2013-12-20 19:59:02 +0000","Twitterrific for Mac","@anandshimpi @siracusa But maybe I’m just too cheap for the Mac Pro :)","","","","" +"414122615310008320","414122205513936897","14618863","2013-12-20 19:58:20 +0000","Twitterrific for Mac","@anandshimpi @siracusa It’s just a waste of those GPUs. I could put together a hell of a quad-core Mac mini w/ SSDs and displays for $3000.","","","","" +"414116467081084928","414113385148862464","636923","2013-12-20 19:33:54 +0000","Twitterrific for Mac","@siracusa @anandshimpi It’s crazy that Apple doesn’t make a reasonable machine for devs. Pro is too much, mini too little, and iMac ROFL.","","","","" +"414094884136439808","","","2013-12-20 18:08:08 +0000","Twitterrific for Mac","RT @thomasfuchs: Wow! So journalism. Such reporting. http://t.co/wFAIMQUKQS","414091191211532288","6927562","2013-12-20 17:53:28 +0000","https://twitter.com/thomasfuchs/status/414091191211532288/photo/1,https://twitter.com/thomasfuchs/status/414091191211532288/photo/1" +"414094814167052288","414089844277927936","1699999614","2013-12-20 18:07:51 +0000","Twitterrific for Mac","@EmberSherpa Good timing. Just this week I made a component that was leaking an event handler. Fixed now.","","","","" +"413912828718743552","413838906178555904","8259712","2013-12-20 06:04:43 +0000","Twitterrific for iOS","@DanFrakes @marcoarment That's the first photo that really showed me how small that Mac is. Incredible power / volume ratio.","","","","" +"413706019835895808","413661605507764224","18247541","2013-12-19 16:22:56 +0000","Twitterrific for iOS","@tapbot_paul Man I wish they made sense. There is the 4k angle, and the fact that iMacs are a non-starter. Still waiting for xMac. @siracusa","","","","" +"413705634802970624","","","2013-12-19 16:21:24 +0000","Twitterrific for iOS","RT @tapbot_paul: Current Mac Pro is only for devs with more money than sense. So I probably won’t be buying one, until at least the first r…","413661605507764224","18247541","2013-12-19 13:26:26 +0000","" +"413705624547893249","","","2013-12-19 16:21:21 +0000","Twitterrific for iOS","RT @tapbot_paul: As a dev who doesn’t give a crap about video/image editing this is probably the only config that makes any sense. http://t…","413656619642527744","18247541","2013-12-19 13:06:38 +0000","https://twitter.com/tapbot_paul/status/413656619642527744/photo/1" +"413703830254018560","413577276035313664","29255412","2013-12-19 16:14:14 +0000","Twitterrific for iOS","@tjholowaychuk Yeah, could be worse though. I haven't really played with them yet but I like what I've seen.","","","","" +"413575321611280384","413561066308644864","29255412","2013-12-19 07:43:35 +0000","Twitterrific for iOS","@tjholowaychuk I like the API. Context has some nice conveniences. Are you using generators all over now? It seems like you like them a lot.","","","","" +"413574686593658881","","","2013-12-19 07:41:03 +0000","Twitterrific for iOS","RT @IsTheStoreDown: The Apple Store is down! The average Store downtime is about 3 hours and 2 minutes. http://t.co/rNSW61xwjS","413564735754620928","71861246","2013-12-19 07:01:31 +0000","http://istheapplestoredown.com/alarm,http://istheapplestoredown.com/alarm" +"413543332061528064","","","2013-12-19 05:36:28 +0000","Twitterrific for iOS","RT @jeresig: A plea for those writing complex libraries: Include practical examples. Use of foo/bar/baz and single-letter variables is forb…","413527935019003904","752673","2013-12-19 04:35:17 +0000","" +"413542982650843136","413509052593745920","814316","2013-12-19 05:35:04 +0000","Twitterrific for iOS","@beltzner Yeah, they are trying to fix it albeit for a different reason. Mainly anyway. @textfiles @BrendanEich","","","","" +"413448732344991744","413446848641130496","18247541","2013-12-18 23:20:33 +0000","Twitterrific for Mac","@tapbot_paul @marcoarment On the MacBook Air, MacBook Pro, and iMac the current 256 GB -> 512 GB SSD upgrade price is $300 across the board.","","","","" +"413415315364511744","","","2013-12-18 21:07:46 +0000","Twitterrific for Mac","RT @tarikh: @gruber ""this keyboard represents everything about Apple that I hate"" http://t.co/PhrZBw5FWr","413413708170153984","7535272","2013-12-18 21:01:23 +0000","http://youtu.be/O2tK0Wl2F8w?t=42m10s,http://youtu.be/O2tK0Wl2F8w?t=42m10s" +"413409717487034368","","","2013-12-18 20:45:32 +0000","Twitterrific for Mac","I wish I could rate websites ★ ☆ ☆ ☆ ☆ when they puke up garbage right over top of what I’m trying to read. Closing the tab doesn’t cut it.","","","","" +"413403806823489536","","","2013-12-18 20:22:02 +0000","Twitterrific for Mac","I started using http://t.co/DmTXDPGYhg to make my locally developed app available publicly (for Twilio integration). It’s awesome.","","","","http://ngrok.com" +"413387103708258305","413385989743476736","33423","2013-12-18 19:15:40 +0000","Twitterrific for Mac","@gruber Or a 32” Sharp for more than twice the price. Sane people would get the Dell I guess.","","","","" +"413067504244629504","","","2013-12-17 22:05:42 +0000","Twitterrific for iOS","RT @charliesome: TIL PHP originally used strlen() as its hash function, so function names were picked to ensure an even distribution: http:…","412780320685957120","16142240","2013-12-17 03:04:32 +0000","http://news.php.net/php.internals/70691" +"412971686552547328","","","2013-12-17 15:44:57 +0000","Twitterrific for iOS","RT @CarcassonneApp: Happy to announce the next expansion update is becoming available! Update the app, get Dragon and Princess as In-App pu…","412964522454827009","49669910","2013-12-17 15:16:29 +0000","" +"412970551607439360","","","2013-12-17 15:40:26 +0000","Twitterrific for iOS","RT @monkbent: I’m surprised Apple released the agency pitch video for “Misunderstood” http://t.co/DhtON6wHXR (@stratechery: http://t.co/…","412932529495101441","40273","2013-12-17 13:09:21 +0000","http://www.youtube.com/watch?v=suRDUFpsHus,http://www.youtube.com/watch?v=suRDUFpsHus,http://stratechery.com/2013/misunderstood/" -"412839996874178560","412790939283771393","74837444","2013-12-17 07:01:40 +0000","Twitterrific","@Badger32d Ha ha. Masochist! Whenever I set up old machines in Gentoo days I went stage 3 and it wasn't that bad though.","","","","" +"412839996874178560","412790939283771393","74837444","2013-12-17 07:01:40 +0000","Twitterrific for iOS","@Badger32d Ha ha. Masochist! Whenever I set up old machines in Gentoo days I went stage 3 and it wasn't that bad though.","","","","" "412789586218074112","412781006446292992","74837444","2013-12-17 03:41:21 +0000","Twitter Web Client","@Badger32d Everything seems fast after Gentoo.","","","","" -"412778267284762624","412775931262935041","74837444","2013-12-17 02:56:22 +0000","Twitterrific","@Badger32d Ah, I'm too late. At least you didn't reinstall! \o/","","","","" -"412778007896420352","412773101693194240","74837444","2013-12-17 02:55:20 +0000","Twitterrific","@Badger32d Single-user mode?","","","","" -"412610688272842752","","","2013-12-16 15:50:28 +0000","Twitterrific","RT @stopsatgreen: Good news: Safari/iOS 7.1 will introduce a viewport flag that allows for hiding the top and bottom bars: https://t.co/OKc…","412522788633587712","13407012","2013-12-16 10:01:11 +0000","https://twitter.com/benjamincrozat/status/411614161286991872/photo/1" -"412610680533942272","","","2013-12-16 15:50:26 +0000","Twitterrific","RT @andreasbovens: If the viewport meta tag wasn’t convoluted enough, Apple now has added a “minimal-ui” property to it in iOS 7.1 https://…","412539269463277568","15736487","2013-12-16 11:06:41 +0000","https://pbs.twimg.com/media/BbZY5hTIYAA0d56.jpg:large" -"412368699539345408","412326689587224577","894911","2013-12-15 23:48:54 +0000","Twitterrific","@JimRoepcke Succumb to the dark side.","","","","" -"412310155104387073","412046820383002624","86400592","2013-12-15 19:56:15 +0000","Twitterrific","@mcardleliam @tomdale @emberjs I like it more than iOS development.","","","","" -"412099026134134784","412002687299764224","8526432","2013-12-15 05:57:18 +0000","Twitterrific","@wycats Thanks for your work on it!","","","","" -"412098964494618624","412002687299764224","8526432","2013-12-15 05:57:04 +0000","Twitterrific","@wycats I've been using it for a few weeks and really enjoy it so far. It addresses a lot of client side pain points simply and elegantly.","","","","" -"412097159933095936","412096317855256576","1572159853","2013-12-15 05:49:53 +0000","Twitterrific","@elkmovie @counternotions I agree 100% there. However maybe Candy Crush is a better game for lots of people.","","","","" -"412096790502977536","411978407027552257","18247541","2013-12-15 05:48:25 +0000","Twitterrific","@tapbot_paul At least you can stuff a second disk in the mini for time machine. I mean, come on.","","","","" -"412096598408040448","411978407027552257","18247541","2013-12-15 05:47:40 +0000","Twitterrific","@tapbot_paul Until those GPUs are really exploited I don't know how a developer can buy a Mac Pro over a Mac mini and justify the cost.","","","","" -"412095418558709760","411975528397029376","15122081","2013-12-15 05:42:58 +0000","Twitterrific","@nerdtalker If they put that technology in consumers' hands I'm fucking stoked. I don't care what it is. http://t.co/FKGo0JzXSB","","","","https://twitter.com/_sjs/status/412095418558709760/photo/1" -"412095057101983745","412068883235733504","1572159853","2013-12-15 05:41:32 +0000","Twitterrific","@elkmovie @counternotions That's not really step backwards though, is it? Everything is prone to manipulation somehow.","","","","" -"412094430993055744","","","2013-12-15 05:39:03 +0000","Twitterrific","RT @JimRoepcke: One reason I didn’t release it is it doesn’t have (IMHO) sufficient docs or sample code, but better this than keeping it hi…","411968028436209664","894911","2013-12-14 21:16:46 +0000","" -"412094417676144640","","","2013-12-15 05:39:00 +0000","Twitterrific","RT @JimRoepcke: In the spirit of that blog post, I’ve finally made RCSTableKit public. I should have done this years ago. https://t.co/s9I0…","411967147057758208","894911","2013-12-14 21:13:16 +0000","https://github.com/JimRoepcke/RCSTableKit" -"412094318904479744","412031139650744320","13977542","2013-12-15 05:38:36 +0000","Twitterrific","@abuiles No problem. I messed it up though, I didn't put the restructuring in the function argument position. /hangs head in shame","","","","" -"411632527993208832","411609098539778048","13977542","2013-12-13 23:03:37 +0000","Twitterrific","@abuiles @wycats RSVP.hash(...).then (data) -> +"412778267284762624","412775931262935041","74837444","2013-12-17 02:56:22 +0000","Twitterrific for iOS","@Badger32d Ah, I'm too late. At least you didn't reinstall! \o/","","","","" +"412778007896420352","412773101693194240","74837444","2013-12-17 02:55:20 +0000","Twitterrific for iOS","@Badger32d Single-user mode?","","","","" +"412610688272842752","","","2013-12-16 15:50:28 +0000","Twitterrific for iOS","RT @stopsatgreen: Good news: Safari/iOS 7.1 will introduce a viewport flag that allows for hiding the top and bottom bars: https://t.co/OKc…","412522788633587712","13407012","2013-12-16 10:01:11 +0000","https://twitter.com/benjamincrozat/status/411614161286991872/photo/1" +"412610680533942272","","","2013-12-16 15:50:26 +0000","Twitterrific for iOS","RT @andreasbovens: If the viewport meta tag wasn’t convoluted enough, Apple now has added a “minimal-ui” property to it in iOS 7.1 https://…","412539269463277568","15736487","2013-12-16 11:06:41 +0000","https://pbs.twimg.com/media/BbZY5hTIYAA0d56.jpg:large" +"412368699539345408","412326689587224577","894911","2013-12-15 23:48:54 +0000","Twitterrific for iOS","@JimRoepcke Succumb to the dark side.","","","","" +"412310155104387073","412046820383002624","86400592","2013-12-15 19:56:15 +0000","Twitterrific for iOS","@mcardleliam @tomdale @emberjs I like it more than iOS development.","","","","" +"412099026134134784","412002687299764224","8526432","2013-12-15 05:57:18 +0000","Twitterrific for iOS","@wycats Thanks for your work on it!","","","","" +"412098964494618624","412002687299764224","8526432","2013-12-15 05:57:04 +0000","Twitterrific for iOS","@wycats I've been using it for a few weeks and really enjoy it so far. It addresses a lot of client side pain points simply and elegantly.","","","","" +"412097159933095936","412096317855256576","1572159853","2013-12-15 05:49:53 +0000","Twitterrific for iOS","@elkmovie @counternotions I agree 100% there. However maybe Candy Crush is a better game for lots of people.","","","","" +"412096790502977536","411978407027552257","18247541","2013-12-15 05:48:25 +0000","Twitterrific for iOS","@tapbot_paul At least you can stuff a second disk in the mini for time machine. I mean, come on.","","","","" +"412096598408040448","411978407027552257","18247541","2013-12-15 05:47:40 +0000","Twitterrific for iOS","@tapbot_paul Until those GPUs are really exploited I don't know how a developer can buy a Mac Pro over a Mac mini and justify the cost.","","","","" +"412095418558709760","411975528397029376","15122081","2013-12-15 05:42:58 +0000","Twitterrific for iOS","@nerdtalker If they put that technology in consumers' hands I'm fucking stoked. I don't care what it is. http://t.co/FKGo0JzXSB","","","","https://twitter.com/_sjs/status/412095418558709760/photo/1" +"412095057101983745","412068883235733504","1572159853","2013-12-15 05:41:32 +0000","Twitterrific for iOS","@elkmovie @counternotions That's not really step backwards though, is it? Everything is prone to manipulation somehow.","","","","" +"412094430993055744","","","2013-12-15 05:39:03 +0000","Twitterrific for iOS","RT @JimRoepcke: One reason I didn’t release it is it doesn’t have (IMHO) sufficient docs or sample code, but better this than keeping it hi…","411968028436209664","894911","2013-12-14 21:16:46 +0000","" +"412094417676144640","","","2013-12-15 05:39:00 +0000","Twitterrific for iOS","RT @JimRoepcke: In the spirit of that blog post, I’ve finally made RCSTableKit public. I should have done this years ago. https://t.co/s9I0…","411967147057758208","894911","2013-12-14 21:13:16 +0000","https://github.com/JimRoepcke/RCSTableKit" +"412094318904479744","412031139650744320","13977542","2013-12-15 05:38:36 +0000","Twitterrific for iOS","@abuiles No problem. I messed it up though, I didn't put the restructuring in the function argument position. /hangs head in shame","","","","" +"411632527993208832","411609098539778048","13977542","2013-12-13 23:03:37 +0000","Twitterrific for iOS","@abuiles @wycats RSVP.hash(...).then (data) -> {posts, comments} = data CoffeeScript","","","","" -"411631975435624448","411602383848751104","14761655","2013-12-13 23:01:25 +0000","Twitterrific","@tenderlove @thomasfuchs There are worse deaths than choking on pie.","","","","" -"411609162523893761","","","2013-12-13 21:30:46 +0000","Twitterrific","RT @neiltyson: There are two kinds of people in the world: Those who divide everybody into two kinds of people, and those who don't.","411517240064737280","19725644","2013-12-13 15:25:30 +0000","" -"411335362095497219","411331608361598976","194688433","2013-12-13 03:22:47 +0000","Twitterrific","@Carols10cents @tenderlove Twilio error 😔 +"411631975435624448","411602383848751104","14761655","2013-12-13 23:01:25 +0000","Twitterrific for iOS","@tenderlove @thomasfuchs There are worse deaths than choking on pie.","","","","" +"411609162523893761","","","2013-12-13 21:30:46 +0000","Twitterrific for iOS","RT @neiltyson: There are two kinds of people in the world: Those who divide everybody into two kinds of people, and those who don't.","411517240064737280","19725644","2013-12-13 15:25:30 +0000","" +"411335362095497219","411331608361598976","194688433","2013-12-13 03:22:47 +0000","Twitterrific for iOS","@Carols10cents @tenderlove Twilio error 😔 ""We're sorry. An application error has occurred. Goodbye.""","","","","" -"411332480281481216","","","2013-12-13 03:11:20 +0000","Twitterrific","RT @ryanflorence: If you've used some of @wycats software today, retweet. +"411332480281481216","","","2013-12-13 03:11:20 +0000","Twitterrific for iOS","RT @ryanflorence: If you've used some of @wycats software today, retweet. (that's pretty much everybody) #YehudaGetWell","411192296038608896","16468446","2013-12-12 17:54:17 +0000","" -"411009226278846464","410947463600545792","40273","2013-12-12 05:46:50 +0000","Twitterrific","@monkbent I like it because full screen is great, but I agree that it's terrible. Tap a link at the bottom, the toolbar appears. Facepalm.","","","","" -"410925508654661632","","","2013-12-12 00:14:10 +0000","Twitterrific","RT @Gotham3: Allow me to play with your mind by showing you 4 perfect circles. http://t.co/b05qncGs8v","401120129137655810","126903716","2013-11-14 22:51:06 +0000","https://twitter.com/Gotham3/status/401120129137655810/photo/1,https://twitter.com/Gotham3/status/401120129137655810/photo/1" -"410647920501743616","","","2013-12-11 05:51:08 +0000","Twitterrific","RT @paul_irish: Improving your mobile web experience. Checklist and recommendations from Google Search: http://t.co/VDgCNgL07n","410540997961998336","1671811","2013-12-10 22:46:16 +0000","http://googlewebmastercentral.blogspot.com/2013/12/checklist-and-videos-for-mobile-website.html,http://googlewebmastercentral.blogspot.com/2013/12/checklist-and-videos-for-mobile-website.html" -"410236072850108416","","","2013-12-10 02:34:36 +0000","Twitterrific","RT @cabel: When informed that, in 2013, people would be pirating software that costs $1.99, and has no packaging, Peter died. http://t.co/K…","410201956120928256","1919231","2013-12-10 00:19:02 +0000","https://twitter.com/cabel/status/410201956120928256/photo/1" -"410144430281478144","410126268164628480","1919231","2013-12-09 20:30:26 +0000","Twitterrific for Mac","@cabel @mantia @alexpalex It’s become an established term in marketing and advertising, and your guess as to the origin is correct.","","","","" -"409880774926540801","","","2013-12-09 03:02:46 +0000","Twitterrific","RT @tapbot_paul: Pretty impressive tech/design for a speaker. +"411009226278846464","410947463600545792","40273","2013-12-12 05:46:50 +0000","Twitterrific for iOS","@monkbent I like it because full screen is great, but I agree that it's terrible. Tap a link at the bottom, the toolbar appears. Facepalm.","","","","" +"410925508654661632","","","2013-12-12 00:14:10 +0000","Twitterrific for iOS","RT @Gotham3: Allow me to play with your mind by showing you 4 perfect circles. http://t.co/b05qncGs8v","401120129137655810","126903716","2013-11-14 22:51:05 +0000","https://twitter.com/Gotham3/status/401120129137655810/photo/1,https://twitter.com/Gotham3/status/401120129137655810/photo/1" +"410647920501743616","","","2013-12-11 05:51:08 +0000","Twitterrific for iOS","RT @paul_irish: Improving your mobile web experience. Checklist and recommendations from Google Search: http://t.co/VDgCNgL07n","410540997961998336","1671811","2013-12-10 22:46:16 +0000","http://googlewebmastercentral.blogspot.com/2013/12/checklist-and-videos-for-mobile-website.html,http://googlewebmastercentral.blogspot.com/2013/12/checklist-and-videos-for-mobile-website.html" +"410236072850108416","","","2013-12-10 02:34:36 +0000","Twitterrific for iOS","RT @cabel: When informed that, in 2013, people would be pirating software that costs $1.99, and has no packaging, Peter died. http://t.co/K…","410201956120928256","1919231","2013-12-10 00:19:02 +0000","https://twitter.com/cabel/status/410201956120928256/photo/1" +"410144430281478144","410126268164628480","1919231","2013-12-09 20:30:26 +0000","Twitterrific for Mac","@cabel @mantia @alexpalex It’s become an established term in marketing and advertising, and your guess as to the origin is correct.","","","","" +"409880774926540801","","","2013-12-09 03:02:46 +0000","Twitterrific for iOS","RT @tapbot_paul: Pretty impressive tech/design for a speaker. http://t.co/8Tn4qgZiWP","409877673645600768","18247541","2013-12-09 02:50:27 +0000","http://www.kickstarter.com/projects/2107726947/hiddenradio2-bluetooth-multispeaker/,http://www.kickstarter.com/projects/2107726947/hiddenradio2-bluetooth-multispeaker/" -"409757375604613120","409487998762246144","15122081","2013-12-08 18:52:25 +0000","Twitterrific","@nerdtalker They know this too, because it offers to disable it immediately.","","","","" -"409006825422336000","409003928164913154","18247541","2013-12-06 17:10:00 +0000","Twitterrific","@tapbot_paul Really? I swear that cow looked alive. I'll take your word for it though. Don't need to see that again with my coffee.","","","","" -"409006330167304193","408995458107719680","18137723","2013-12-06 17:08:02 +0000","Twitterrific","@raganwald What if editors let us configure syntax definitions with contexts that count as invisibles like other whitepsace? Toggle noise.","","","","" -"409003534886006784","408966145488588802","18247541","2013-12-06 16:56:56 +0000","Twitterrific","@tapbot_paul It got to me when the live cow went in. That's just mean.","","","","" -"409000577524178944","408915911005839360","44287241","2013-12-06 16:45:11 +0000","Twitterrific","@BradFazner I haven't noticed much different really, but I know how that upgrade itch feels. You have to have it.","","","","" -"408816750348607488","","","2013-12-06 04:34:43 +0000","Twitterrific","The best thing about Android 4.4 KitKat? The lock screen doesn't wiggle the edge of an off-screen widget on Nexus 7, begging for attention.","","","","" +"409757375604613120","409487998762246144","15122081","2013-12-08 18:52:25 +0000","Twitterrific for iOS","@nerdtalker They know this too, because it offers to disable it immediately.","","","","" +"409006825422336000","409003928164913154","18247541","2013-12-06 17:10:00 +0000","Twitterrific for iOS","@tapbot_paul Really? I swear that cow looked alive. I'll take your word for it though. Don't need to see that again with my coffee.","","","","" +"409006330167304193","408995458107719680","18137723","2013-12-06 17:08:02 +0000","Twitterrific for iOS","@raganwald What if editors let us configure syntax definitions with contexts that count as invisibles like other whitepsace? Toggle noise.","","","","" +"409003534886006784","408966145488588802","18247541","2013-12-06 16:56:56 +0000","Twitterrific for iOS","@tapbot_paul It got to me when the live cow went in. That's just mean.","","","","" +"409000577524178944","408915911005839360","44287241","2013-12-06 16:45:11 +0000","Twitterrific for iOS","@BradFazner I haven't noticed much different really, but I know how that upgrade itch feels. You have to have it.","","","","" +"408816750348607488","","","2013-12-06 04:34:43 +0000","Twitterrific for iOS","The best thing about Android 4.4 KitKat? The lock screen doesn't wiggle the edge of an off-screen widget on Nexus 7, begging for attention.","","","","" "408727168194068480","408692165682790400","14761655","2013-12-05 22:38:45 +0000","Twitter Web Client","@tenderlove @wycats Will do. http://t.co/ZWVLJf0s3n","","","","https://twitter.com/_sjs/status/408727168194068480/photo/1" -"408683901217824768","408669234290360320","217540637","2013-12-05 19:46:49 +0000","Twitterrific for Mac","@JosephMartel ZOMG!!1","","","","" -"408639659007172608","408507645608210432","14618863","2013-12-05 16:51:01 +0000","Twitterrific","@anandshimpi You guys work really hard though so don't feel bad about it on my account. Enjoy your December! @Broadwayblues","","","","" -"408639445634535424","408507645608210432","14618863","2013-12-05 16:50:10 +0000","Twitterrific","@anandshimpi @Broadwayblues I thought about the podcast the other day and was sad to realize it'd probably be a month out due to holidays.","","","","" -"408508392542453760","","","2013-12-05 08:09:25 +0000","Twitterrific","RT @creationix: Today's mad science hack is a utility that uses async-listener to trace and draw all events in your node program. +"408683901217824768","408669234290360320","217540637","2013-12-05 19:46:49 +0000","Twitterrific for Mac","@JosephMartel ZOMG!!1","","","","" +"408639659007172608","408507645608210432","14618863","2013-12-05 16:51:01 +0000","Twitterrific for iOS","@anandshimpi You guys work really hard though so don't feel bad about it on my account. Enjoy your December! @Broadwayblues","","","","" +"408639445634535424","408507645608210432","14618863","2013-12-05 16:50:10 +0000","Twitterrific for iOS","@anandshimpi @Broadwayblues I thought about the podcast the other day and was sad to realize it'd probably be a month out due to holidays.","","","","" +"408508392542453760","","","2013-12-05 08:09:25 +0000","Twitterrific for iOS","RT @creationix: Today's mad science hack is a utility that uses async-listener to trace and draw all events in your node program. https://t…","408356459886292992","70596949","2013-12-04 22:05:41 +0000","https://gist.github.com/creationix/7796338" -"408284081151938560","408268113688289280","11973362","2013-12-04 17:18:05 +0000","Twitterrific for Mac","@typeoneerror I don't think it's possible unless both apps use x-callback-url to jump.","","","","" -"408258992477970432","","","2013-12-04 15:38:23 +0000","Twitterrific","RT @matt_pardee: This sucks. +"408284081151938560","408268113688289280","11973362","2013-12-04 17:18:05 +0000","Twitterrific for Mac","@typeoneerror I don't think it's possible unless both apps use x-callback-url to jump.","","","","" +"408258992477970432","","","2013-12-04 15:38:23 +0000","Twitterrific for iOS","RT @matt_pardee: This sucks. http://t.co/SrnhnTzTPH","408132348815745024","16225162","2013-12-04 07:15:09 +0000","http://blog.nodejs.org/2013/12/03/bnoordhuis-departure/,http://blog.nodejs.org/2013/12/03/bnoordhuis-departure/" -"408078630758006784","","","2013-12-04 03:41:41 +0000","Twitterrific","RT @DougPawl: @tapbot_paul pirating occurs because greedy DEV'S like u charge for updates. I paid for v2, now u want us to pay again for v3…","408059711138037761","53507520","2013-12-04 02:26:31 +0000","" -"407649326060408832","407647845224026112","636923","2013-12-02 23:15:47 +0000","Twitterrific for Mac","@siracusa @letterpressapp Wow! How many words was that?","","","","" -"407608367088009216","407597150751580160","18137723","2013-12-02 20:33:02 +0000","Twitterrific for Mac","@raganwald I don't know what's with the meat names, but it's been going on for at least a few weeks now.","","","","" -"407587026695778304","","","2013-12-02 19:08:14 +0000","Twitterrific for Mac","RT @QuantumPirate: I missed an Amazon drone delivery. http://t.co/neJxYANj6p","407439281989640192","161373868","2013-12-02 09:21:09 +0000","https://twitter.com/QuantumPirate/status/407439281989640192/photo/1,https://twitter.com/QuantumPirate/status/407439281989640192/photo/1" -"407209600140595200","407196873037197312","204008694","2013-12-01 18:08:28 +0000","Twitterrific","@Jameslfc19 @tapbot_paul And the question of how we are to know which 0.N -> 0.N+1 updates are major (2.2, 2.3) and which are minor (4.4).","","","","" -"407209339057758208","407196873037197312","204008694","2013-12-01 18:07:26 +0000","Twitterrific","@Jameslfc19 @tapbot_paul That raises the question of where the next major release is.","","","","" -"406979192752840704","","","2013-12-01 02:52:55 +0000","Twitterrific","RT @newsycombinator: A spreadsheet in fewer than 30 lines of JavaScript, no library used http://t.co/2nn3YkpnXS","400942095386824704","14335498","2013-11-14 11:03:39 +0000","http://jsfiddle.net/ondras/hYfN3/,http://jsfiddle.net/ondras/hYfN3/" -"405160374518833152","","","2013-11-26 02:25:35 +0000","Twitterrific","3 days and counting. No way to check the progress or status. I'm too curious if it will ever finish to cancel it. http://t.co/aenTH3JfBn","","","","https://twitter.com/_sjs/status/405160374518833152/photo/1" +"408078630758006784","","","2013-12-04 03:41:41 +0000","Twitterrific for iOS","RT @DougPawl: @tapbot_paul pirating occurs because greedy DEV'S like u charge for updates. I paid for v2, now u want us to pay again for v3…","408059711138037761","53507520","2013-12-04 02:26:31 +0000","" +"407649326060408832","407647845224026112","636923","2013-12-02 23:15:47 +0000","Twitterrific for Mac","@siracusa @letterpressapp Wow! How many words was that?","","","","" +"407608367088009216","407597150751580160","18137723","2013-12-02 20:33:02 +0000","Twitterrific for Mac","@raganwald I don't know what's with the meat names, but it's been going on for at least a few weeks now.","","","","" +"407587026695778304","","","2013-12-02 19:08:14 +0000","Twitterrific for Mac","RT @QuantumPirate: I missed an Amazon drone delivery. http://t.co/neJxYANj6p","407439281989640192","161373868","2013-12-02 09:21:09 +0000","https://twitter.com/QuantumPirate/status/407439281989640192/photo/1,https://twitter.com/QuantumPirate/status/407439281989640192/photo/1" +"407209600140595200","407196873037197312","204008694","2013-12-01 18:08:28 +0000","Twitterrific for iOS","@Jameslfc19 @tapbot_paul And the question of how we are to know which 0.N -> 0.N+1 updates are major (2.2, 2.3) and which are minor (4.4).","","","","" +"407209339057758208","407196873037197312","204008694","2013-12-01 18:07:26 +0000","Twitterrific for iOS","@Jameslfc19 @tapbot_paul That raises the question of where the next major release is.","","","","" +"406979192752840704","","","2013-12-01 02:52:55 +0000","Twitterrific for iOS","RT @newsycombinator: A spreadsheet in fewer than 30 lines of JavaScript, no library used http://t.co/2nn3YkpnXS","400942095386824704","14335498","2013-11-14 11:03:39 +0000","http://jsfiddle.net/ondras/hYfN3/,http://jsfiddle.net/ondras/hYfN3/" +"405160374518833152","","","2013-11-26 02:25:35 +0000","Twitterrific for iOS","3 days and counting. No way to check the progress or status. I'm too curious if it will ever finish to cancel it. http://t.co/aenTH3JfBn","","","","https://twitter.com/_sjs/status/405160374518833152/photo/1" "404277343046225920","403636753950453761","35745942","2013-11-23 15:56:44 +0000","Twitter for iPad","@ALL_CAPS @deanlandolt Give them some credit. It could be an impeccable typeface selection.","","","","" -"404057393371176960","","","2013-11-23 01:22:44 +0000","Twitterrific","Man, HFS+ really stinks. @siracusa","","","","" -"404056906794164224","","","2013-11-23 01:20:48 +0000","Twitterrific","Thanks to @siracusa I'm spending my Friday night restoring from backup because Disk Utility found irreparable errors on my boot drive.","","","","" -"403960188475957248","","","2013-11-22 18:56:28 +0000","Twitterrific for Mac","RT @siracusa: By popular demand, here's a feed to keep up with my appearances on other podcasts and websites: http://t.co/gJXuhBcQAi","403954283856793600","636923","2013-11-22 18:33:01 +0000","http://hypercritical.co/feeds/appearances,http://hypercritical.co/feeds/appearances" -"403923270019211264","403769438597836800","23365210","2013-11-22 16:29:46 +0000","Twitterrific","@flogehring @marcoarment @siracusa @caseyliss Don't forget iPAD. Do you guys see that one too? Grating.","","","","" -"403622565131735040","403612296955449345","11973362","2013-11-21 20:34:53 +0000","Twitterrific for Mac","@typeoneerror Seems like a good general rule to me.","","","","" -"403612118827556864","403593528632426496","20092406","2013-11-21 19:53:22 +0000","Twitterrific for Mac","@ramsden @typeoneerror I've heard ""you-ee"" ... but blech!","","","","" -"403041389723676672","","","2013-11-20 06:05:30 +0000","Twitterrific","RT @raganwald: The thing about “Jumping the Shark?” Happy Days was #1 for three more years after The Fonz jumped the shark.","403027906818895873","18137723","2013-11-20 05:11:55 +0000","" -"403017002995814400","","","2013-11-20 04:28:35 +0000","Twitterrific","Sriracha jumped the shark.","","","","" -"402235486854340610","","","2013-11-18 00:43:07 +0000","Twitterrific","RT @dmost: Noticing the UI elements in XCode. Button looks like text, and text looks like button. http://t.co/uOMDLqTjKc","402208518792417280","16489633","2013-11-17 22:55:58 +0000","https://twitter.com/dmost/status/402208518792417280/photo/1,https://twitter.com/dmost/status/402208518792417280/photo/1" -"402137658953973760","","","2013-11-17 18:14:23 +0000","Twitterrific","RT @jesseschell: A truer flowchart was never whiteboarded. http://t.co/RSn7WufBqL","321209685631963136","11591662","2013-04-08 10:35:31 +0000","https://twitter.com/jcolman/status/320917928881033218/photo/1,https://twitter.com/jcolman/status/320917928881033218/photo/1" -"402137568105336832","","","2013-11-17 18:14:02 +0000","Twitterrific","RT @substack: task automation with `npm run` http://t.co/iuE0TGOUto","402132695137779712","125027291","2013-11-17 17:54:40 +0000","http://substack.net/task_automation_with_npm_run,http://substack.net/task_automation_with_npm_run" -"401819098755002368","401804100653678592","95938827","2013-11-16 21:08:33 +0000","Twitterrific","@hij1nx New past-time: sneakily deselecting floors in tall buildings.","","","","" -"401745058312892417","","","2013-11-16 16:14:20 +0000","Tweetings for Android Holo","RT @jaffathecake: ""With camelCasing, what do we do with abbreviations? Capitalise all, or just the first letter?"" +"404057393371176960","","","2013-11-23 01:22:44 +0000","Twitterrific for iOS","Man, HFS+ really stinks. @siracusa","","","","" +"404056906794164224","","","2013-11-23 01:20:48 +0000","Twitterrific for iOS","Thanks to @siracusa I'm spending my Friday night restoring from backup because Disk Utility found irreparable errors on my boot drive.","","","","" +"403960188475957248","","","2013-11-22 18:56:28 +0000","Twitterrific for Mac","RT @siracusa: By popular demand, here's a feed to keep up with my appearances on other podcasts and websites: http://t.co/gJXuhBcQAi","403954283856793600","636923","2013-11-22 18:33:01 +0000","http://hypercritical.co/feeds/appearances,http://hypercritical.co/feeds/appearances" +"403947320657457152","","","2013-11-22 18:05:20 +0000","Twitterrific for Mac","RT @tlrobinson: Rappers can't make it rain Bitcoins, but they can sign a message with a rich Bitcoin address' private key provably attestin…","403923535661236224","14206068","2013-11-22 16:30:50 +0000","" +"403923270019211264","403769438597836800","23365210","2013-11-22 16:29:46 +0000","Twitterrific for iOS","@flogehring @marcoarment @siracusa @caseyliss Don't forget iPAD. Do you guys see that one too? Grating.","","","","" +"403622565131735040","403612296955449345","11973362","2013-11-21 20:34:53 +0000","Twitterrific for Mac","@typeoneerror Seems like a good general rule to me.","","","","" +"403612118827556864","403593528632426496","20092406","2013-11-21 19:53:22 +0000","Twitterrific for Mac","@ramsden @typeoneerror I've heard ""you-ee"" ... but blech!","","","","" +"403041389723676672","","","2013-11-20 06:05:30 +0000","Twitterrific for iOS","RT @raganwald: The thing about “Jumping the Shark?” Happy Days was #1 for three more years after The Fonz jumped the shark.","403027906818895873","18137723","2013-11-20 05:11:55 +0000","" +"403017002995814400","","","2013-11-20 04:28:35 +0000","Twitterrific for iOS","Sriracha jumped the shark.","","","","" +"402627149854543873","","","2013-11-19 02:39:27 +0000","Twitterrific for iOS","RT @tlrobinson: If Bitcoin volatility entertains you, this is entertaining as hell right now: http://t.co/rca33ZjPPx","402614497015115776","14206068","2013-11-19 01:49:10 +0000","http://bitcoinwisdom.com/markets/mtgox/btcusd,http://bitcoinwisdom.com/markets/mtgox/btcusd" +"402235486854340610","","","2013-11-18 00:43:07 +0000","Twitterrific for iOS","RT @dmost: Noticing the UI elements in XCode. Button looks like text, and text looks like button. http://t.co/uOMDLqTjKc","402208518792417280","16489633","2013-11-17 22:55:58 +0000","https://twitter.com/dmost/status/402208518792417280/photo/1,https://twitter.com/dmost/status/402208518792417280/photo/1" +"402137658953973760","","","2013-11-17 18:14:23 +0000","Twitterrific for iOS","RT @jesseschell: A truer flowchart was never whiteboarded. http://t.co/RSn7WufBqL","321209685631963136","11591662","2013-04-08 10:35:31 +0000","https://twitter.com/jcolman/status/320917928881033218/photo/1,https://twitter.com/jcolman/status/320917928881033218/photo/1" +"402137568105336832","","","2013-11-17 18:14:02 +0000","Twitterrific for iOS","RT @substack: task automation with `npm run` http://t.co/iuE0TGOUto","402132695137779712","125027291","2013-11-17 17:54:40 +0000","http://substack.net/task_automation_with_npm_run,http://substack.net/task_automation_with_npm_run" +"401819098755002368","401804100653678592","95938827","2013-11-16 21:08:33 +0000","Twitterrific for iOS","@hij1nx New past-time: sneakily deselecting floors in tall buildings.","","","","" +"401745058312892417","","","2013-11-16 16:14:20 +0000","Tweetings for Windows","RT @jaffathecake: ""With camelCasing, what do we do with abbreviations? Capitalise all, or just the first letter?"" ""Fuck it, both"" XMLHttp…","401643673022001152","15390783","2013-11-16 09:31:28 +0000","" -"401453621914505216","401421572906303489","18978610","2013-11-15 20:56:16 +0000","Twitterrific for Mac","@sallykohn @raganwald What about Marion Barry?","","","","" -"401452332723888128","401419889434308608","5444392","2013-11-15 20:51:09 +0000","Twitterrific for Mac","@evanphx ... that can't be serious. Nobody is that crazy.","","","","" -"401410819201593345","401409677462085632","18247541","2013-11-15 18:06:11 +0000","Twitterrific for Mac","@tapbot_paul Some people I know don't care about the new features at all. They'll update eventually because it's free. Probably wouldn't buy","","","","" -"401194964580696065","401182143596208129","477898117","2013-11-15 03:48:28 +0000","Twitterrific","@marco_org @marcoarment My iPad 3 has it too. Have not noticed in real usage either.","","","","" -"401187311477469184","401186798182739969","4777951","2013-11-15 03:18:03 +0000","Twitterrific","@_sjs @JimRoepcke (not representative of typical results, usually it's 15-30 down / 2-5 up)","","","","" -"401186798182739969","401176001348001792","894911","2013-11-15 03:16:01 +0000","Twitterrific","@JimRoepcke Here's a good run from when I first got my 5s. http://t.co/DViwfPX56u","","","","https://twitter.com/_sjs/status/401186798182739969/photo/1" -"401156884985421824","401155430493478912","14231571","2013-11-15 01:17:09 +0000","Twitterrific for Mac","@marcoarment I'm still trying to figure out when and why episodes are sometimes listed in ascending order, and sometimes descending order.","","","","" -"400004844813307904","399976584834457601","710563","2013-11-11 20:59:21 +0000","Twitterrific","@ccgus That happened to me with v3. Good riddance.","","","","" -"399230744846798848","399199904767434752","10194392","2013-11-09 17:43:21 +0000","Twitterrific","@reneritchie I know! It feels so rigid. It's the same with scrolling on Windows and Linux now too. Feels terrible.","","","","" -"399091242144780289","","","2013-11-09 08:29:01 +0000","Twitterrific","RT @gte: @siracusa You blew off Debug to yap about, ""tl;dr""!? Bah!","399018683596832768","7125712","2013-11-09 03:40:42 +0000","" -"399016746285166592","398952186249375744","2176864190","2013-11-09 03:33:00 +0000","Twitterrific","@tussleouddgGait DIE IN A FIRE","","","","" -"398927534135320576","","","2013-11-08 21:38:30 +0000","Twitterrific for Mac","RT @everydayscott: @siracusa iCloud Photo Sharing updated in the last month. 1000 per stream cap is gone. Also allows video up to 5 min +"401453621914505216","401421572906303489","18978610","2013-11-15 20:56:16 +0000","Twitterrific for Mac","@sallykohn @raganwald What about Marion Barry?","","","","" +"401452332723888128","401419889434308608","5444392","2013-11-15 20:51:09 +0000","Twitterrific for Mac","@evanphx ... that can't be serious. Nobody is that crazy.","","","","" +"401410819201593345","401409677462085632","18247541","2013-11-15 18:06:11 +0000","Twitterrific for Mac","@tapbot_paul Some people I know don't care about the new features at all. They'll update eventually because it's free. Probably wouldn't buy","","","","" +"401194964580696065","401182143596208129","477898117","2013-11-15 03:48:28 +0000","Twitterrific for iOS","@marco_org @marcoarment My iPad 3 has it too. Have not noticed in real usage either.","","","","" +"401187311477469184","401186798182739969","4777951","2013-11-15 03:18:03 +0000","Twitterrific for iOS","@_sjs @JimRoepcke (not representative of typical results, usually it's 15-30 down / 2-5 up)","","","","" +"401186798182739969","401176001348001792","894911","2013-11-15 03:16:01 +0000","Twitterrific for iOS","@JimRoepcke Here's a good run from when I first got my 5s. http://t.co/DViwfPX56u","","","","https://twitter.com/_sjs/status/401186798182739969/photo/1" +"401156884985421824","401155430493478912","14231571","2013-11-15 01:17:09 +0000","Twitterrific for Mac","@marcoarment I'm still trying to figure out when and why episodes are sometimes listed in ascending order, and sometimes descending order.","","","","" +"400004844813307904","399976584834457601","710563","2013-11-11 20:59:21 +0000","Twitterrific for iOS","@ccgus That happened to me with v3. Good riddance.","","","","" +"399230744846798848","399199904767434752","10194392","2013-11-09 17:43:21 +0000","Twitterrific for iOS","@reneritchie I know! It feels so rigid. It's the same with scrolling on Windows and Linux now too. Feels terrible.","","","","" +"399091242144780289","","","2013-11-09 08:29:01 +0000","Twitterrific for iOS","RT @gte: @siracusa You blew off Debug to yap about, ""tl;dr""!? Bah!","399018683596832768","7125712","2013-11-09 03:40:42 +0000","" +"399016746285166592","398952186249375744","2176864190","2013-11-09 03:33:00 +0000","Twitterrific for iOS","@tussleouddgGait DIE IN A FIRE","","","","" +"398927534135320576","","","2013-11-08 21:38:30 +0000","Twitterrific for Mac","RT @everydayscott: @siracusa iCloud Photo Sharing updated in the last month. 1000 per stream cap is gone. Also allows video up to 5 min ht…","398917658969526273","22854817","2013-11-08 20:59:16 +0000","http://support.apple.com/kb/HT4858" -"398897541451751424","","","2013-11-08 19:39:19 +0000","Twitterrific for Mac","This line of thinking is brought to you by fs_usage and OS X's energy shaming menu.","","","","" -"398897165335932928","","","2013-11-08 19:37:50 +0000","Twitterrific for Mac","What do you all do about @Dropbox greatly affecting battery life on MacBooks? It's painful to wait for launch, but I won't leave it open.","","","","" -"398896587922878464","","","2013-11-08 19:35:32 +0000","Twitterrific for Mac","I only use LaunchBar for launching & clipboard history, and could replace it w/ something lighter. Any good clipboard history apps for OS X?","","","","" -"398889557908660224","","","2013-11-08 19:07:36 +0000","Twitterrific for Mac","RT @tomdale: So I think @machty may have come up with the single best answer to the pros and cons between Ember.js and Angular: http://t.co…","398646477742145536","668863","2013-11-08 03:01:41 +0000","http://buff.ly/1iQEtAo" -"398683451995348992","398676362103648256","15292261","2013-11-08 05:28:36 +0000","Twitterrific","@gregbate Drink more.","","","","" -"398493592131354624","398440860008062976","18247541","2013-11-07 16:54:10 +0000","Twitterrific","@tapbot_paul My guess: bandwidth throttling. Carriers don't want people inadvertently seeding torrents or having Xcode auto update on LTE.","","","","" +"398897541451751424","","","2013-11-08 19:39:19 +0000","Twitterrific for Mac","This line of thinking is brought to you by fs_usage and OS X's energy shaming menu.","","","","" +"398897165335932928","","","2013-11-08 19:37:50 +0000","Twitterrific for Mac","What do you all do about @Dropbox greatly affecting battery life on MacBooks? It's painful to wait for launch, but I won't leave it open.","","","","" +"398896587922878464","","","2013-11-08 19:35:32 +0000","Twitterrific for Mac","I only use LaunchBar for launching & clipboard history, and could replace it w/ something lighter. Any good clipboard history apps for OS X?","","","","" +"398889557908660224","","","2013-11-08 19:07:36 +0000","Twitterrific for Mac","RT @tomdale: So I think @machty may have come up with the single best answer to the pros and cons between Ember.js and Angular: http://t.co…","398646477742145536","668863","2013-11-08 03:01:41 +0000","http://buff.ly/1iQEtAo" +"398683451995348992","398676362103648256","15292261","2013-11-08 05:28:36 +0000","Twitterrific for iOS","@gregbate Drink more.","","","","" +"398493592131354624","398440860008062976","18247541","2013-11-07 16:54:10 +0000","Twitterrific for iOS","@tapbot_paul My guess: bandwidth throttling. Carriers don't want people inadvertently seeding torrents or having Xcode auto update on LTE.","","","","" "398234497612668928","398177548880060416","92915570","2013-11-06 23:44:37 +0000","Tweetbot for iOS","@indutny Yep.","","","","" "398234098524647424","","","2013-11-06 23:43:02 +0000","Tweetbot for iOS","@AdobeRevel Thanks, good to know!","","","","" -"398162040142843905","398150668449357824","22196723","2013-11-06 18:56:42 +0000","Twitterrific","@markkolich IDEA FTW","","","","" -"398127613509513217","398003451499540481","2475171","2013-11-06 16:39:54 +0000","Twitterrific","@rsms @felixge @jedschmidt Of course there's a difference. As you surely know there are proto chains used for inheritance in JS.","","","","" -"398126911756304384","397990788308549632","14824763","2013-11-06 16:37:07 +0000","Twitterrific","@yuusharo Good to know! Revel or Loom?","","","","" -"398126719237754880","","","2013-11-06 16:36:21 +0000","Twitterrific","RT @yuusharo: @_sjs @picturelife @TeamLoom @AdobeRevel @siracusa They don’t dedup now, but they hint it’s coming soon.","397990788308549632","14824763","2013-11-06 07:36:12 +0000","" -"397971134009712641","","","2013-11-06 06:18:06 +0000","Twitterrific","Trying @Picturelife and like it so far. @TeamLoom doesn't appear to dedupe and @AdobeRevel doesn't say if they do. @siracusa","","","","" -"397816588469940224","","","2013-11-05 20:04:00 +0000","Twitterrific for Mac","Here's a round-up of possible @everpix alternatives courtesy of @siracusa's awesome followers: @TeamLoom, @PictureLife, and @AdobeRevel.","","","","" -"397815139505676288","397813304610934784","10946872","2013-11-05 19:58:14 +0000","Twitterrific for Mac","@benlozano @siracusa @AdobeRevel I can't decide if Revel being an Adobe product is a good or bad thing. I'll put it on the list though!","","","","" -"397807117576318976","397803301158518784","798978","2013-11-05 19:26:22 +0000","Twitterrific for Mac","@xac @siracusa Thanks, that looks promising too. I'll check it out. I hope some of these companies can turn a profit.","","","","" -"397799372194185216","397797824542560256","636923","2013-11-05 18:55:35 +0000","Twitterrific for Mac","@siracusa Thanks! That looks promising. I wish there was something I could recommend to family in good conscience. It's a whack-a-mole game.","","","","" -"397796763823644672","","","2013-11-05 18:45:13 +0000","Twitterrific for Mac","RT @siracusa: Everything about @everpix worked except the business model. Apple can fix that by making it part of a profitable overall pac…","397789011743621120","636923","2013-11-05 18:14:25 +0000","" -"397796434222673920","397779967876288512","636923","2013-11-05 18:43:55 +0000","Twitterrific for Mac","@siracusa Do you know of any alternatives? I really liked Everpix.","","","","" -"397794434638548992","397777870983921664","325814484","2013-11-05 18:35:58 +0000","Twitterrific for Mac","@everpix Sorry to hear that. You guys have done a great job.","","","","" -"397585763719602176","","","2013-11-05 04:46:47 +0000","Twitterrific","RT @HackerNewsOnion: Startup naming trends: +"398162040142843905","398150668449357824","22196723","2013-11-06 18:56:42 +0000","Twitterrific for iOS","@markkolich IDEA FTW","","","","" +"398127613509513217","398003451499540481","2475171","2013-11-06 16:39:54 +0000","Twitterrific for iOS","@rsms @felixge @jedschmidt Of course there's a difference. As you surely know there are proto chains used for inheritance in JS.","","","","" +"398126911756304384","397990788308549632","14824763","2013-11-06 16:37:07 +0000","Twitterrific for iOS","@yuusharo Good to know! Revel or Loom?","","","","" +"398126719237754880","","","2013-11-06 16:36:21 +0000","Twitterrific for iOS","RT @yuusharo: @_sjs @picturelife @TeamLoom @AdobeRevel @siracusa They don’t dedup now, but they hint it’s coming soon.","397990788308549632","14824763","2013-11-06 07:36:12 +0000","" +"397971134009712641","","","2013-11-06 06:18:06 +0000","Twitterrific for iOS","Trying @Picturelife and like it so far. @TeamLoom doesn't appear to dedupe and @AdobeRevel doesn't say if they do. @siracusa","","","","" +"397816588469940224","","","2013-11-05 20:04:00 +0000","Twitterrific for Mac","Here's a round-up of possible @everpix alternatives courtesy of @siracusa's awesome followers: @TeamLoom, @PictureLife, and @AdobeRevel.","","","","" +"397815139505676288","397813304610934784","10946872","2013-11-05 19:58:14 +0000","Twitterrific for Mac","@benlozano @siracusa @AdobeRevel I can't decide if Revel being an Adobe product is a good or bad thing. I'll put it on the list though!","","","","" +"397807117576318976","397803301158518784","798978","2013-11-05 19:26:22 +0000","Twitterrific for Mac","@xac @siracusa Thanks, that looks promising too. I'll check it out. I hope some of these companies can turn a profit.","","","","" +"397799372194185216","397797824542560256","636923","2013-11-05 18:55:35 +0000","Twitterrific for Mac","@siracusa Thanks! That looks promising. I wish there was something I could recommend to family in good conscience. It's a whack-a-mole game.","","","","" +"397796763823644672","","","2013-11-05 18:45:13 +0000","Twitterrific for Mac","RT @siracusa: Everything about @everpix worked except the business model. Apple can fix that by making it part of a profitable overall pac…","397789011743621120","636923","2013-11-05 18:14:25 +0000","" +"397796434222673920","397779967876288512","636923","2013-11-05 18:43:55 +0000","Twitterrific for Mac","@siracusa Do you know of any alternatives? I really liked Everpix.","","","","" +"397794434638548992","397777870983921664","325814484","2013-11-05 18:35:58 +0000","Twitterrific for Mac","@everpix Sorry to hear that. You guys have done a great job.","","","","" +"397585763719602176","","","2013-11-05 04:46:47 +0000","Twitterrific for iOS","RT @HackerNewsOnion: Startup naming trends: -ster, 1999 -ify, 2006 -ly, 2009 .io, 2013","397539910501924865","1263967268","2013-11-05 01:44:35 +0000","" -"397158126283001856","","","2013-11-04 00:27:30 +0000","Twitterrific","So Coxsackie isn't a joke by the Archer writers. It's a real town in New York.","","","","" -"397014818546135040","397000775143923712","20218024","2013-11-03 14:58:03 +0000","Twitterrific","@rosyna Same size, to the byte. Corruption is afoot. @siracusa @danfrakes","","","","" -"396814220492152832","","","2013-11-03 01:40:57 +0000","Twitterrific","RT @iamdevloper: 1. This is going to be great +"397158126283001856","","","2013-11-04 00:27:30 +0000","Twitterrific for iOS","So Coxsackie isn't a joke by the Archer writers. It's a real town in New York.","","","","" +"397014818546135040","397000775143923712","20218024","2013-11-03 14:58:03 +0000","Twitterrific for iOS","@rosyna Same size, to the byte. Corruption is afoot. @siracusa @danfrakes","","","","" +"396814220492152832","","","2013-11-03 01:40:57 +0000","Twitterrific for iOS","RT @iamdevloper: 1. This is going to be great 2. I'll put that in just for now 3. It's gone to shit 4. Let's do a rewrite 5. GOTO 1 Softwa…","395883063177383936","564919357","2013-10-31 12:00:52 +0000","" -"396485737849184256","","","2013-11-02 03:55:40 +0000","Twitterrific","RT @marcoarment: Tiff got the iPad Air today. It’s very nice and light, but if you like the Mini, it’s still too big. +"396485737849184256","","","2013-11-02 03:55:40 +0000","Twitterrific for iOS","RT @marcoarment: Tiff got the iPad Air today. It’s very nice and light, but if you like the Mini, it’s still too big. I’m happy to wait fo…","396436875466264577","14231571","2013-11-02 00:41:31 +0000","" -"396145398470815744","","","2013-11-01 05:23:17 +0000","Twitterrific","RT @mikeal: why node’s module system is winning https://t.co/tinUvsNedP","396072803931156480","668423","2013-11-01 00:34:49 +0000","https://gist.github.com/jrburke/0479f25edfc6bb043ddb#comment-941599,https://gist.github.com/jrburke/0479f25edfc6bb043ddb#comment-941599" -"396000306695135233","395994034113884160","15122081","2013-10-31 19:46:45 +0000","Twitterrific for Mac","@nerdtalker @anexanhume @rguadalupejr He is not buying an Android phone again. Soured on the entire experience.","","","","" -"396000221227786240","395994034113884160","15122081","2013-10-31 19:46:24 +0000","Twitterrific for Mac","@nerdtalker @anexanhume @rguadalupejr And his LTE doesn't even work... can't get support from carrier or LG.","","","","" -"396000103590137857","395994034113884160","15122081","2013-10-31 19:45:56 +0000","Twitterrific for Mac","@nerdtalker @anexanhume @rguadalupejr Until recently we had 3 year contracts in Canada. My co-worker has the Optimus LTE for 1 more year.","","","","" -"395998565555658752","395990596319727616","15122081","2013-10-31 19:39:49 +0000","Twitterrific for Mac","@nerdtalker So that means most Android devices see at most one update (assuming yearly cadence)? 4.4 could be the last for my Nexus 7 then.","","","","" -"395395559827046400","395395046402314240","15122081","2013-10-30 03:43:42 +0000","Twitterrific","@nerdtalker Yeah! I want to return my $35 OtterBox.","","","","" -"395395186475294720","395373993131122688","14561327","2013-10-30 03:42:13 +0000","Twitterrific","@dhh LOL, I just deleted that BS a minute ago. They are spamming everyone.","","","","" -"395394970720292865","","","2013-10-30 03:41:21 +0000","Twitterrific","Picked up a Magpul Field case for my iPhone on @nerdtalker's recommendation. Amazing value. $14 on Amazon Canada, even less in the USA.","","","","" -"395208302612582400","","","2013-10-29 15:19:36 +0000","Twitterrific","RT @antirez: Just blogged ""Finally Redis collections are iterable"" -> http://t.co/t5eS4s5SC4","395132967959678976","5813712","2013-10-29 10:20:15 +0000","http://antirez.com/news/63,http://antirez.com/news/63" -"394977899649843200","394970818134167552","18247541","2013-10-29 00:04:04 +0000","Twitterrific for Mac","@tapbot_paul I didn't own an iPhone 4 so I have to go w/ iPad 3. Scrolling on that thing is so chunky. Ka-chunk, ka-chunk, ka-chunk!","","","","" -"394960884914978816","394960747442499584","1236101","2013-10-28 22:56:27 +0000","Twitterrific for Mac","@BenedictEvans @tim_cook Sorry, perhaps it was a bad joke. I am in no way serious.","","","","" -"394960529346662401","394958518257975296","1236101","2013-10-28 22:55:02 +0000","Twitterrific for Mac","@BenedictEvans Simply blanket the earth with coverage. Problem solved! I can hear @tim_cook already: ""Only Apple could do this.""","","","","" -"394904594171449344","394890915627532288","274626857","2013-10-28 19:12:46 +0000","Twitterrific for Mac","@tweetbot You guys rock! Keep it up.","","","","" -"394904255183609856","","","2013-10-28 19:11:26 +0000","Twitterrific for Mac","RT @nerdtalker: Phone includes microSD, I comment about how I won’t have to hear bitching about it, comments proceed to bitch about it. +"396145398470815744","","","2013-11-01 05:23:17 +0000","Twitterrific for iOS","RT @mikeal: why node’s module system is winning https://t.co/tinUvsNedP","396072803931156480","668423","2013-11-01 00:34:49 +0000","https://gist.github.com/jrburke/0479f25edfc6bb043ddb#comment-941599,https://gist.github.com/jrburke/0479f25edfc6bb043ddb#comment-941599" +"396000306695135233","395994034113884160","15122081","2013-10-31 19:46:45 +0000","Twitterrific for Mac","@nerdtalker @anexanhume @rguadalupejr He is not buying an Android phone again. Soured on the entire experience.","","","","" +"396000221227786240","395994034113884160","15122081","2013-10-31 19:46:24 +0000","Twitterrific for Mac","@nerdtalker @anexanhume @rguadalupejr And his LTE doesn't even work... can't get support from carrier or LG.","","","","" +"396000103590137857","395994034113884160","15122081","2013-10-31 19:45:56 +0000","Twitterrific for Mac","@nerdtalker @anexanhume @rguadalupejr Until recently we had 3 year contracts in Canada. My co-worker has the Optimus LTE for 1 more year.","","","","" +"395998565555658752","395990596319727616","15122081","2013-10-31 19:39:49 +0000","Twitterrific for Mac","@nerdtalker So that means most Android devices see at most one update (assuming yearly cadence)? 4.4 could be the last for my Nexus 7 then.","","","","" +"395395559827046400","395395046402314240","15122081","2013-10-30 03:43:42 +0000","Twitterrific for iOS","@nerdtalker Yeah! I want to return my $35 OtterBox.","","","","" +"395395186475294720","395373993131122688","14561327","2013-10-30 03:42:13 +0000","Twitterrific for iOS","@dhh LOL, I just deleted that BS a minute ago. They are spamming everyone.","","","","" +"395394970720292865","","","2013-10-30 03:41:21 +0000","Twitterrific for iOS","Picked up a Magpul Field case for my iPhone on @nerdtalker's recommendation. Amazing value. $14 on Amazon Canada, even less in the USA.","","","","" +"395208302612582400","","","2013-10-29 15:19:36 +0000","Twitterrific for iOS","RT @antirez: Just blogged ""Finally Redis collections are iterable"" -> http://t.co/t5eS4s5SC4","395132967959678976","5813712","2013-10-29 10:20:15 +0000","http://antirez.com/news/63,http://antirez.com/news/63" +"394977899649843200","394970818134167552","18247541","2013-10-29 00:04:04 +0000","Twitterrific for Mac","@tapbot_paul I didn't own an iPhone 4 so I have to go w/ iPad 3. Scrolling on that thing is so chunky. Ka-chunk, ka-chunk, ka-chunk!","","","","" +"394960884914978816","394960747442499584","1236101","2013-10-28 22:56:27 +0000","Twitterrific for Mac","@BenedictEvans @tim_cook Sorry, perhaps it was a bad joke. I am in no way serious.","","","","" +"394960529346662401","394958518257975296","1236101","2013-10-28 22:55:02 +0000","Twitterrific for Mac","@BenedictEvans Simply blanket the earth with coverage. Problem solved! I can hear @tim_cook already: ""Only Apple could do this.""","","","","" +"394904594171449344","394890915627532288","274626857","2013-10-28 19:12:46 +0000","Twitterrific for Mac","@tweetbot You guys rock! Keep it up.","","","","" +"394904255183609856","","","2013-10-28 19:11:26 +0000","Twitterrific for Mac","RT @nerdtalker: Phone includes microSD, I comment about how I won’t have to hear bitching about it, comments proceed to bitch about it. S…","394890754859884544","15122081","2013-10-28 18:17:47 +0000","" -"394661587220320256","394634491374751744","22196723","2013-10-28 03:07:09 +0000","Twitterrific","@markkolich I checked out the Wikipedia article on initialization vectors but didn't really glean anything I hadn't already inferred.","","","","" -"394336012119203841","","86629833","2013-10-27 05:33:26 +0000","Twitterrific","@Bemorte @monkbent It requires a change in mindset and expectations about how thing should and do work. Arguably harder for current users.","","","","" -"394271934759714816","","","2013-10-27 01:18:49 +0000","Twitterrific","Say what you want about the Nexus 7. I think it’s a fantastic cup holder. http://t.co/orApsEh7F1","","","","https://twitter.com/_sjs/status/394271934759714816/photo/1" -"394271752647213056","","","2013-10-27 01:18:05 +0000","Twitterrific","RT @BenedictEvans: Funny how even a company with >$100bn of cash can be resource-constrained http://t.co/5aGAuBPW8B","394264455153864704","1236101","2013-10-27 00:49:05 +0000","https://twitter.com/BenedictEvans/status/394264455153864704/photo/1,https://twitter.com/BenedictEvans/status/394264455153864704/photo/1" -"394199477805793281","394143749552345090","5905672","2013-10-26 20:30:54 +0000","Twitterrific","@danbenjamin Nice of you to celebrate my birthday down there in Austin.","","","","" -"394197961237745665","394186529284702208","14864447","2013-10-26 20:24:52 +0000","Twitterrific","@bryan_kyle Heh, wow. Yeah Podcasts only has playlists. Maybe retention but I don't use it. I just want to know what's new and stream it all","","","","" -"394185750670868480","394009708001914880","14864447","2013-10-26 19:36:21 +0000","Twitterrific","@bryan_kyle I don't understand what people want from a podcast client. I used iPod/Music.app and now I use Podcasts.app. It's fine.","","","","" +"394661587220320256","394634491374751744","22196723","2013-10-28 03:07:09 +0000","Twitterrific for iOS","@markkolich I checked out the Wikipedia article on initialization vectors but didn't really glean anything I hadn't already inferred.","","","","" +"394336012119203841","","86629833","2013-10-27 05:33:26 +0000","Twitterrific for iOS","@Bemorte @monkbent It requires a change in mindset and expectations about how thing should and do work. Arguably harder for current users.","","","","" +"394271934759714816","","","2013-10-27 01:18:49 +0000","Twitterrific for iOS","Say what you want about the Nexus 7. I think it’s a fantastic cup holder. http://t.co/orApsEh7F1","","","","https://twitter.com/_sjs/status/394271934759714816/photo/1" +"394271752647213056","","","2013-10-27 01:18:05 +0000","Twitterrific for iOS","RT @BenedictEvans: Funny how even a company with >$100bn of cash can be resource-constrained http://t.co/5aGAuBPW8B","394264455153864704","1236101","2013-10-27 00:49:05 +0000","https://twitter.com/BenedictEvans/status/394264455153864704/photo/1,https://twitter.com/BenedictEvans/status/394264455153864704/photo/1" +"394199477805793281","394143749552345090","5905672","2013-10-26 20:30:54 +0000","Twitterrific for iOS","@danbenjamin Nice of you to celebrate my birthday down there in Austin.","","","","" +"394197961237745665","394186529284702208","14864447","2013-10-26 20:24:52 +0000","Twitterrific for iOS","@bryan_kyle Heh, wow. Yeah Podcasts only has playlists. Maybe retention but I don't use it. I just want to know what's new and stream it all","","","","" +"394185750670868480","394009708001914880","14864447","2013-10-26 19:36:21 +0000","Twitterrific for iOS","@bryan_kyle I don't understand what people want from a podcast client. I used iPod/Music.app and now I use Podcasts.app. It's fine.","","","","" "393959412831756288","393883215200407552","4525221","2013-10-26 04:36:58 +0000","Twitter Web Client","@harpaa01 @chockenberry Mind blown http://t.co/FJGAcbGYeK","","","","http://i.imgur.com/5RRJzsc.gif" -"393869899681898496","393868981737488384","28265820","2013-10-25 22:41:16 +0000","Twitterrific for Mac","@isoiphone Boy would I throw an exception.","","","","" -"393863112450785280","393862471535972352","13818902","2013-10-25 22:14:18 +0000","Twitterrific for Mac","@aaronheckmann @brandonmblack Is SQL old enough to have run on machines without lowercase? That was also a thing back in the day.","","","","" -"393855910302334976","393853684301324288","28265820","2013-10-25 21:45:41 +0000","Twitterrific for Mac","@isoiphone Seems normal to me. That's how I ask my girlfriend for breakfast.","","","","" -"393849731429830656","","","2013-10-25 21:21:08 +0000","Twitterrific for Mac","Now that's an app review. RT @JaySan25 @tapbot_paul LOL? http://t.co/QDpwIPadbt","","","","https://twitter.com/JaySan25/status/393848241516974080/photo/1" -"393749386154344448","393746930167451648","9599342","2013-10-25 14:42:23 +0000","Twitterrific","@felixge In Ruby ^ matches beginning of line. Use \A to match the beginning of string.","","","","" -"393631844563824640","","","2013-10-25 06:55:19 +0000","Twitterrific","RT @edog1203: Cover looks pretty great. Wish this sort of thing was possible on iOS! http://t.co/E6BaS2qRHK","393587990213046273","14305022","2013-10-25 04:01:04 +0000","http://coverscreen.tumblr.com/post/64965314790/introducing-cover,http://coverscreen.tumblr.com/post/64965314790/introducing-cover" -"393534985665146880","393533078284406785","169298343","2013-10-25 00:30:26 +0000","Twitterrific for Mac","@jlt50 @tapbots @tweetbot @tapbot_paul You want to enjoy the fruits of their labour for free, yet @tapbots are the greedy ones? Nice logic.","","","","" -"393526928549761024","","","2013-10-24 23:58:25 +0000","Twitterrific for Mac","Hi @FileTransporter. You made a sale to @JosephMartel, on my recommendation, because of the podcasts you sponsor. If I had to pick: @atpfm","","","","" -"393509527611379713","","","2013-10-24 22:49:17 +0000","Twitterrific for Mac","RT @bergmayer: I love that @nerdtalker has been appearing on podcasts lately since he actually knows what he's talking about. +"393869899681898496","393868981737488384","28265820","2013-10-25 22:41:16 +0000","Twitterrific for Mac","@isoiphone Boy would I throw an exception.","","","","" +"393863112450785280","393862471535972352","13818902","2013-10-25 22:14:18 +0000","Twitterrific for Mac","@aaronheckmann @brandonmblack Is SQL old enough to have run on machines without lowercase? That was also a thing back in the day.","","","","" +"393855910302334976","393853684301324288","28265820","2013-10-25 21:45:41 +0000","Twitterrific for Mac","@isoiphone Seems normal to me. That's how I ask my girlfriend for breakfast.","","","","" +"393849731429830656","","","2013-10-25 21:21:08 +0000","Twitterrific for Mac","Now that's an app review. RT @JaySan25 @tapbot_paul LOL? http://t.co/QDpwIPadbt","","","","https://twitter.com/JaySan25/status/393848241516974080/photo/1" +"393749386154344448","393746930167451648","9599342","2013-10-25 14:42:23 +0000","Twitterrific for iOS","@felixge In Ruby ^ matches beginning of line. Use \A to match the beginning of string.","","","","" +"393534985665146880","393533078284406785","169298343","2013-10-25 00:30:26 +0000","Twitterrific for Mac","@jlt50 @tapbots @tweetbot @tapbot_paul You want to enjoy the fruits of their labour for free, yet @tapbots are the greedy ones? Nice logic.","","","","" +"393526928549761024","","","2013-10-24 23:58:25 +0000","Twitterrific for Mac","Hi @FileTransporter. You made a sale to @JosephMartel, on my recommendation, because of the podcasts you sponsor. If I had to pick: @atpfm","","","","" +"393509527611379713","","","2013-10-24 22:49:17 +0000","Twitterrific for Mac","RT @bergmayer: I love that @nerdtalker has been appearing on podcasts lately since he actually knows what he's talking about. http://t.co/…","393504635451113472","18322285","2013-10-24 22:29:50 +0000","http://pcasts.in/nGgt" -"393508660757790720","393492572343398400","5905672","2013-10-24 22:45:50 +0000","Twitterrific for Mac","@danbenjamin The NeXT box is going to eat those tiny Apple machines.","","","","" -"393259492889985024","393216244868186112","19225408","2013-10-24 06:15:44 +0000","Twitterrific","@counternotions @gruber And possibly a larger display.","","","","" -"393214725476978688","393196327716143104","15122081","2013-10-24 03:17:50 +0000","Twitterrific","@nerdtalker My status bar gets so full that my carrier's name is truncated. Trying the signal strength for a while.","","","","" +"393508660757790720","393492572343398400","5905672","2013-10-24 22:45:50 +0000","Twitterrific for Mac","@danbenjamin The NeXT box is going to eat those tiny Apple machines.","","","","" +"393259492889985024","393216244868186112","19225408","2013-10-24 06:15:44 +0000","Twitterrific for iOS","@counternotions @gruber And possibly a larger display.","","","","" +"393214725476978688","393196327716143104","15122081","2013-10-24 03:17:50 +0000","Twitterrific for iOS","@nerdtalker My status bar gets so full that my carrier's name is truncated. Trying the signal strength for a while.","","","","" "392784960240627712","392784447273062400","217540637","2013-10-22 22:50:06 +0000","Twitter Web Client","@JosephMartel I charge only $50 to stage a B&E where, miraculously, only your iPad is damaged.","","","","" -"392783484890013696","392782920475095041","217540637","2013-10-22 22:44:15 +0000","Twitterrific for Mac","@JosephMartel No kidding. Fortunately I don't actually need, well, *any* of it, so that makes some decisions easier.","","","","" -"392782418962173952","392777253483868160","217540637","2013-10-22 22:40:00 +0000","Twitterrific for Mac","@JosephMartel Retina for yourself, old one for the family. Starts to get expensive though!","","","","" -"392739667864350720","392738766630027264","33423","2013-10-22 19:50:08 +0000","Twitterrific for Mac","@gruber I was set on the iPad mini, largely because of its weight. Is it likely that the weight of the iPad Air would change that?","","","","" -"392736161187123201","","","2013-10-22 19:36:12 +0000","Twitterrific for Mac","RT @rands: This is a really expensive Apple event.","392716525389369345","30923","2013-10-22 18:18:10 +0000","" -"392717900265443328","392717314539286528","15122081","2013-10-22 18:23:38 +0000","Twitterrific for Mac","@nerdtalker Is the Nexus 7 really that popular that Apple would care?","","","","" -"392717460610105344","392716018537091072","15292261","2013-10-22 18:21:53 +0000","Twitterrific for Mac","@gregbate Happens at almost every launch. http://t.co/VeDBCCJP0o","","","","http://daringfireball.net/2013/10/apples_stock_price_product_announcements" -"392699459588481024","","","2013-10-22 17:10:21 +0000","Twitterrific for Mac","RT @stevenf: lol get your wallets out for apple, sheeple *notices own wallet is out* hey what in the","392692594393616384","733813","2013-10-22 16:43:05 +0000","" +"392783484890013696","392782920475095041","217540637","2013-10-22 22:44:15 +0000","Twitterrific for Mac","@JosephMartel No kidding. Fortunately I don't actually need, well, *any* of it, so that makes some decisions easier.","","","","" +"392782418962173952","392777253483868160","217540637","2013-10-22 22:40:00 +0000","Twitterrific for Mac","@JosephMartel Retina for yourself, old one for the family. Starts to get expensive though!","","","","" +"392739667864350720","392738766630027264","33423","2013-10-22 19:50:08 +0000","Twitterrific for Mac","@gruber I was set on the iPad mini, largely because of its weight. Is it likely that the weight of the iPad Air would change that?","","","","" +"392736161187123201","","","2013-10-22 19:36:12 +0000","Twitterrific for Mac","RT @rands: This is a really expensive Apple event.","392716525389369345","30923","2013-10-22 18:18:10 +0000","" +"392717900265443328","392717314539286528","15122081","2013-10-22 18:23:38 +0000","Twitterrific for Mac","@nerdtalker Is the Nexus 7 really that popular that Apple would care?","","","","" +"392717460610105344","392716018537091072","15292261","2013-10-22 18:21:53 +0000","Twitterrific for Mac","@gregbate Happens at almost every launch. http://t.co/VeDBCCJP0o","","","","http://daringfireball.net/2013/10/apples_stock_price_product_announcements" "392698929130643456","","","2013-10-22 17:08:15 +0000","OS X","You know you're in for trouble when API docs arrive as a Word document. Give me strength.","","","","" -"392671108761001985","","","2013-10-22 15:17:42 +0000","Twitterrific","RT @BenedictEvans: Nokia continues to create great products from a parallel universe in which Windows was the right OS choice.","392622669566197761","1236101","2013-10-22 12:05:13 +0000","" -"392462345697390593","","","2013-10-22 01:28:09 +0000","Twitterrific","RT @chockenberry: It's like I'm @siracusa, but with bugs instead of screenshots.","392449725812584449","36183","2013-10-22 00:38:00 +0000","" -"392461598297575425","392333894642454528","14148308","2013-10-22 01:25:11 +0000","Twitterrific","@dilvie @tjholowaychuk I also deal with Dropbox sync conflicts in .git folders which is mildly annoying. I don't really recommend it.","","","","" -"392461275290034178","392333894642454528","14148308","2013-10-22 01:23:54 +0000","Twitterrific","@dilvie @tjholowaychuk Me too, and it sucks when I move between OS X and Linux and have to recompile binary deps in node_modules.","","","","" -"392405220908466176","392403676691562496","8549992","2013-10-21 21:41:09 +0000","Twitterrific for Mac","@pdenya And URLs!","","","","" -"392369835440496641","392367754256580608","636923","2013-10-21 19:20:33 +0000","Twitterrific for Mac","@siracusa @TraceMcJoy Looks like Zalgo got the guy from SLC.","","","","" -"392108008060108800","392098086337519616","18247541","2013-10-21 02:00:08 +0000","Twitterrific","@tapbot_paul Only because they couldn't make it free altogether. According to that article anyway. You have a very different business model.","","","","" -"391983826051690496","391951605001912320","10194392","2013-10-20 17:46:41 +0000","Twitterrific","@reneritchie Retina on mini 2 is less likely. If Touch ID is on iPad 5 – as it should be – then do they open up more than 5 finger slots?","","","","" +"392671108761001985","","","2013-10-22 15:17:42 +0000","Twitterrific for iOS","RT @BenedictEvans: Nokia continues to create great products from a parallel universe in which Windows was the right OS choice.","392622669566197761","1236101","2013-10-22 12:05:13 +0000","" +"392462345697390593","","","2013-10-22 01:28:09 +0000","Twitterrific for iOS","RT @chockenberry: It's like I'm @siracusa, but with bugs instead of screenshots.","392449725812584449","36183","2013-10-22 00:38:00 +0000","" +"392461598297575425","392333894642454528","14148308","2013-10-22 01:25:11 +0000","Twitterrific for iOS","@dilvie @tjholowaychuk I also deal with Dropbox sync conflicts in .git folders which is mildly annoying. I don't really recommend it.","","","","" +"392461275290034178","392333894642454528","14148308","2013-10-22 01:23:54 +0000","Twitterrific for iOS","@dilvie @tjholowaychuk Me too, and it sucks when I move between OS X and Linux and have to recompile binary deps in node_modules.","","","","" +"392405220908466176","392403676691562496","8549992","2013-10-21 21:41:09 +0000","Twitterrific for Mac","@pdenya And URLs!","","","","" +"392369835440496641","392367754256580608","636923","2013-10-21 19:20:33 +0000","Twitterrific for Mac","@siracusa @TraceMcJoy Looks like Zalgo got the guy from SLC.","","","","" +"392108008060108800","392098086337519616","18247541","2013-10-21 02:00:08 +0000","Twitterrific for iOS","@tapbot_paul Only because they couldn't make it free altogether. According to that article anyway. You have a very different business model.","","","","" +"391983826051690496","391951605001912320","10194392","2013-10-20 17:46:41 +0000","Twitterrific for iOS","@reneritchie Retina on mini 2 is less likely. If Touch ID is on iPad 5 – as it should be – then do they open up more than 5 finger slots?","","","","" "391319015588515841","","","2013-10-18 21:44:58 +0000","Twitter Web Client","RT @daringfireball: Elon Musk to Make James Bond Submarine Car a Reality: http://t.co/fLjRqbnL9B","391265903481864193","10760422","2013-10-18 18:13:55 +0000","http://df4.us/ly6,http://df4.us/ly6" "391292571978178561","391292085573136384","29255412","2013-10-18 19:59:53 +0000","Twitter Web Client","@tjholowaychuk Time for a *new project* that scans ~/Projects and shows a local notification if you have a git repo w/ no remotes yet.","","","","" "391292179013836800","391292008465047552","29255412","2013-10-18 19:58:19 +0000","Twitter Web Client","@tjholowaychuk Hmm, yeah node_modules is definitely a problem! git folders can be a pain in Dropbox too. There's no panacea.","","","","" -"391289138504540160","391262571350593536","29255412","2013-10-18 19:46:15 +0000","Twitterrific for Mac","@tjholowaychuk Dropbox? Time Machine? Online backup? Having a single copy of anything small, like code, is so 2007.","","","","" -"391281742293635072","","","2013-10-18 19:16:51 +0000","Twitterrific","RT @wwwtxt: I make no apologies for screening calls. It's my home, and if I decline to be tyrannized by the machines in it, it's my preroga…","391235159808569345","207756340","2013-10-18 16:11:45 +0000","" -"391281735582752768","","","2013-10-18 19:16:50 +0000","Twitterrific","RT @wwwtxt: AARGH! Please don't leave your answering machines on all the time when you are home. Humans deserve more respect than that! ☯90…","391234495820877824","207756340","2013-10-18 16:09:07 +0000","" -"390855334014627841","390818883357011969","18247541","2013-10-17 15:02:28 +0000","Twitterrific","@tapbot_paul Seems to be only SpringBoard. No need to re-type pass code and such. I haven't seen SpringBoard crashes since jailbroken iOS 3.","","","","" -"390665266335453184","390658808965767168","1235521","2013-10-17 02:27:12 +0000","Twitterrific","@timbray @gruber Email money transfers aren't initiated by sending an email. It is not the same.","","","","" -"390663946358628352","390611751676297217","5637652","2013-10-17 02:21:57 +0000","Twitterrific","@codinghorror I don't think you can draw conclusions about a strategy for non-enthusiasts before it's been in place for a year or two.","","","","" -"390663316278116352","390605823606411264","28265820","2013-10-17 02:19:27 +0000","Twitterrific","@isoiphone Does Network Link Conditioner help? http://t.co/7IOv7n062P","","","","http://mattgemmell.com/2011/07/25/network-link-conditioner-in-lion/" -"390349211163586560","390333904185356288","894911","2013-10-16 05:31:18 +0000","Twitterrific","@JimRoepcke They don't achieve it through voice recognition, just the same result. I agree that it should be possible soon though!","","","","" -"390327315881668608","390304881510072321","894911","2013-10-16 04:04:18 +0000","Twitterrific","@JimRoepcke I believe Android apps – including one by Microsoft – can do this today.","","","","" -"390223720200941568","390218842548342784","10754282","2013-10-15 21:12:39 +0000","Twitterrific for Mac","@Jury I use @reederapp on iOS and ReadKit or @feedbin's website directly on OS X. I usually read RSS on iOS though.","","","","" -"390173227697180672","","","2013-10-15 17:52:01 +0000","Twitterrific for Mac","It's great that people are using Content-Security-Policy, but it breaks my @instapaper bookmarklet. Please allow http://t.co/TRgrgrPb6U.","","","","http://instapaper.com" -"390142365551185920","","","2013-10-15 15:49:23 +0000","Twitterrific","RT @TheMacalope: Steve Jobs never would have hired a senior vice president of retail.","390127788910718976","15212527","2013-10-15 14:51:27 +0000","" -"389800526445293568","389793860999602176","5637652","2013-10-14 17:11:02 +0000","Twitterrific","@codinghorror I agree. They have changed.","","","","" -"389800379372023808","389788818486099968","1236101","2013-10-14 17:10:27 +0000","Twitterrific","@BenedictEvans Also great how people think they can draw conclusions about the 5c strategy before it has been available for 1 to 2 years.","","","","" -"389483277632802816","","","2013-10-13 20:10:24 +0000","Twitterrific","RT @TheMoonBrewpub: This year, I'm thankful for beer. If you're without beer for your Thanksgiving dinner, come on down and stock up befor…","389480851819737088","286865421","2013-10-13 20:00:45 +0000","" -"389160997694365696","389119009662050305","104245499","2013-10-12 22:49:46 +0000","Twitterrific","@littlecalculist Oh, of course. You're right.","","","","" -"389103683159347200","388907873004052480","104245499","2013-10-12 19:02:01 +0000","Twitterrific","@littlecalculist It seems like UTF8 should just be the default charset.","","","","" -"389103464657084416","","","2013-10-12 19:01:09 +0000","Twitterrific","RT @rauchg: Signup autocompletion with Gravatar. It doesn't have to be just the avatar! +"391289138504540160","391262571350593536","29255412","2013-10-18 19:46:15 +0000","Twitterrific for Mac","@tjholowaychuk Dropbox? Time Machine? Online backup? Having a single copy of anything small, like code, is so 2007.","","","","" +"391281742293635072","","","2013-10-18 19:16:51 +0000","Twitterrific for iOS","RT @wwwtxt: I make no apologies for screening calls. It's my home, and if I decline to be tyrannized by the machines in it, it's my preroga…","391235159808569345","207756340","2013-10-18 16:11:45 +0000","" +"391281735582752768","","","2013-10-18 19:16:50 +0000","Twitterrific for iOS","RT @wwwtxt: AARGH! Please don't leave your answering machines on all the time when you are home. Humans deserve more respect than that! ☯90…","391234495820877824","207756340","2013-10-18 16:09:07 +0000","" +"390855334014627841","390818883357011969","18247541","2013-10-17 15:02:28 +0000","Twitterrific for iOS","@tapbot_paul Seems to be only SpringBoard. No need to re-type pass code and such. I haven't seen SpringBoard crashes since jailbroken iOS 3.","","","","" +"390665266335453184","390658808965767168","1235521","2013-10-17 02:27:12 +0000","Twitterrific for iOS","@timbray @gruber Email money transfers aren't initiated by sending an email. It is not the same.","","","","" +"390663946358628352","390611751676297217","5637652","2013-10-17 02:21:57 +0000","Twitterrific for iOS","@codinghorror I don't think you can draw conclusions about a strategy for non-enthusiasts before it's been in place for a year or two.","","","","" +"390663316278116352","390605823606411264","28265820","2013-10-17 02:19:27 +0000","Twitterrific for iOS","@isoiphone Does Network Link Conditioner help? http://t.co/7IOv7n062P","","","","http://mattgemmell.com/2011/07/25/network-link-conditioner-in-lion/" +"390349211163586560","390333904185356288","894911","2013-10-16 05:31:18 +0000","Twitterrific for iOS","@JimRoepcke They don't achieve it through voice recognition, just the same result. I agree that it should be possible soon though!","","","","" +"390327315881668608","390304881510072321","894911","2013-10-16 04:04:18 +0000","Twitterrific for iOS","@JimRoepcke I believe Android apps – including one by Microsoft – can do this today.","","","","" +"390223720200941568","390218842548342784","10754282","2013-10-15 21:12:39 +0000","Twitterrific for Mac","@Jury I use @reederapp on iOS and ReadKit or @feedbin's website directly on OS X. I usually read RSS on iOS though.","","","","" +"390173227697180672","","","2013-10-15 17:52:01 +0000","Twitterrific for Mac","It's great that people are using Content-Security-Policy, but it breaks my @instapaper bookmarklet. Please allow http://t.co/TRgrgrPb6U.","","","","http://instapaper.com" +"390142365551185920","","","2013-10-15 15:49:23 +0000","Twitterrific for iOS","RT @TheMacalope: Steve Jobs never would have hired a senior vice president of retail.","390127788910718976","15212527","2013-10-15 14:51:27 +0000","" +"389800526445293568","389793860999602176","5637652","2013-10-14 17:11:02 +0000","Twitterrific for iOS","@codinghorror I agree. They have changed.","","","","" +"389800379372023808","389788818486099968","1236101","2013-10-14 17:10:27 +0000","Twitterrific for iOS","@BenedictEvans Also great how people think they can draw conclusions about the 5c strategy before it has been available for 1 to 2 years.","","","","" +"389483277632802816","","","2013-10-13 20:10:24 +0000","Twitterrific for iOS","RT @TheMoonBrewpub: This year, I'm thankful for beer. If you're without beer for your Thanksgiving dinner, come on down and stock up befor…","389480851819737088","286865421","2013-10-13 20:00:45 +0000","" +"389160997694365696","389119009662050305","104245499","2013-10-12 22:49:46 +0000","Twitterrific for iOS","@littlecalculist Oh, of course. You're right.","","","","" +"389103683159347200","388907873004052480","104245499","2013-10-12 19:02:01 +0000","Twitterrific for iOS","@littlecalculist It seems like UTF8 should just be the default charset.","","","","" +"389103464657084416","","","2013-10-12 19:01:09 +0000","Twitterrific for iOS","RT @rauchg: Signup autocompletion with Gravatar. It doesn't have to be just the avatar! https://t.co/8RijNbTUx2","388896092022005760","15540222","2013-10-12 05:17:08 +0000","https://cloudup.com/blog/signup-autocompletion-with-gravatar,https://cloudup.com/blog/signup-autocompletion-with-gravatar" -"388943954579693568","","","2013-10-12 08:27:19 +0000","Twitterrific","OH: “Tight and tough. I’m sad.”","","","","" -"388805440118591488","","","2013-10-11 23:16:55 +0000","Twitterrific for Mac","RT @feedbin: Looking for a consultant with Ruby and XML experience to improve or write new RSS parser. Send qualifications to ben@feedbin.m…","388804069780779008","1170518132","2013-10-11 23:11:28 +0000","" -"388764432844611584","388741482276196352","14335498","2013-10-11 20:33:58 +0000","Twitterrific for Mac","@newsycombinator @indutny I have to sign up for Google+ to opt out?","","","","" -"388678731432075265","","","2013-10-11 14:53:25 +0000","Twitterrific","RT @fraserspeirs: The four-finger swipe up for multitasking makes no sense at all with iOS 7’s multitasking UI.","388567019731558400","644603","2013-10-11 07:29:31 +0000","" +"388943954579693568","","","2013-10-12 08:27:19 +0000","Twitterrific for iOS","OH: “Tight and tough. I’m sad.”","","","","" +"388805440118591488","","","2013-10-11 23:16:55 +0000","Twitterrific for Mac","RT @feedbin: Looking for a consultant with Ruby and XML experience to improve or write new RSS parser. Send qualifications to ben@feedbin.m…","388804069780779008","1170518132","2013-10-11 23:11:28 +0000","" +"388764432844611584","388741482276196352","14335498","2013-10-11 20:33:58 +0000","Twitterrific for Mac","@newsycombinator @indutny I have to sign up for Google+ to opt out?","","","","" "388586848613724160","","","2013-10-11 08:48:18 +0000","Twitter Web Client","/dev/random as a service: http://t.co/IpFNfj6hnT","","","","http://bohodev.net:1234/dev/random?size=4k" "388586653989621760","388575342946185216","15122081","2013-10-11 08:47:32 +0000","Twitter Web Client","@nerdtalker http://t.co/Nsj5hle9RV","","","","http://bohodev.net:1243/dev/random?size=4k" -"388575928730660864","388575342946185216","15122081","2013-10-11 08:04:55 +0000","Twitterrific","@nerdtalker /dev/random as a service","","","","" -"388407180228968448","388354989849985024","10754282","2013-10-10 20:54:22 +0000","Twitterrific for Mac","@Jury We used to be able to visit the USA with just a driver's license, but no more.","","","","" -"387816046079791104","387802848450203649","14561327","2013-10-09 05:45:25 +0000","Twitterrific","@dhh They still make the Envy line, and this looks a lot like an old MacBook with a black bezel. Meh.","","","","" -"387785973607571456","","","2013-10-09 03:45:55 +0000","Twitterrific","@louisck Holy shit, my purchase actually worked. It was slow and ended with an error page but it fucking worked.","","","","" -"387727833495113728","387726018821505024","8021722","2013-10-08 23:54:53 +0000","Twitterrific for Mac","@siegel Yup.","","","","" -"387725252190429185","387715142840246273","10194392","2013-10-08 23:44:38 +0000","Twitterrific for Mac","@reneritchie Without a retina display I won't buy a mini. I'd rather wait for retina + performance but if Apple doesn't, I'll buy it anyway.","","","","" -"387725128315834368","387715142840246273","10194392","2013-10-08 23:44:08 +0000","Twitterrific for Mac","@reneritchie iPad 3 owner here. I'd prefer retina, as crazy as that might sound. My concern is more about battery life than performance.","","","","" -"387719748584103936","","","2013-10-08 23:22:46 +0000","Twitterrific for Mac","RT @Argorak: Homebrew users, be aware of this before Mavericks hits you: +"388575928730660864","388575342946185216","15122081","2013-10-11 08:04:55 +0000","Twitterrific for iOS","@nerdtalker /dev/random as a service","","","","" +"388407180228968448","388354989849985024","10754282","2013-10-10 20:54:22 +0000","Twitterrific for Mac","@Jury We used to be able to visit the USA with just a driver's license, but no more.","","","","" +"387816046079791104","387802848450203649","14561327","2013-10-09 05:45:25 +0000","Twitterrific for iOS","@dhh They still make the Envy line, and this looks a lot like an old MacBook with a black bezel. Meh.","","","","" +"387785973607571456","","","2013-10-09 03:45:55 +0000","Twitterrific for iOS","@louisck Holy shit, my purchase actually worked. It was slow and ended with an error page but it fucking worked.","","","","" +"387727833495113728","387726018821505024","8021722","2013-10-08 23:54:53 +0000","Twitterrific for Mac","@siegel Yup.","","","","" +"387725252190429185","387715142840246273","10194392","2013-10-08 23:44:38 +0000","Twitterrific for Mac","@reneritchie Without a retina display I won't buy a mini. I'd rather wait for retina + performance but if Apple doesn't, I'll buy it anyway.","","","","" +"387725128315834368","387715142840246273","10194392","2013-10-08 23:44:08 +0000","Twitterrific for Mac","@reneritchie iPad 3 owner here. I'd prefer retina, as crazy as that might sound. My concern is more about battery life than performance.","","","","" +"387719748584103936","","","2013-10-08 23:22:46 +0000","Twitterrific for Mac","RT @Argorak: Homebrew users, be aware of this before Mavericks hits you: https://t.co/5qk2oKNeHk","387502810046398464","27227212","2013-10-08 09:00:44 +0000","https://github.com/mxcl/homebrew/wiki/C++-Standard-Libraries,https://github.com/mxcl/homebrew/wiki/C++-Standard-Libraries" -"387719458300514304","387682559435350017","894911","2013-10-08 23:21:36 +0000","Twitterrific for Mac","@JimRoepcke Messages don't always make it to the Mac, but it otherwise works fine for me. I don't have iMessage problems through, many do.","","","","" -"387627705883054080","","","2013-10-08 17:17:01 +0000","Twitterrific for Mac","RT @BashoT: Basho throws out Oracle for National Health System of UK Database of Record. It's now #Riak. That is big. http://t.co/VBMqrm9…","387581162761109504","25982757","2013-10-08 14:12:04 +0000","http://bit.ly/16vbss3" -"387603329036980224","","","2013-10-08 15:40:09 +0000","Twitterrific","RT @mathias: Enabling negative array indices in JavaScript by using an ES6 proxy: http://t.co/7Lm7H7Ow8O","387509308524883968","532923","2013-10-08 09:26:33 +0000","http://mths.be/bpk,http://mths.be/bpk" -"387313149340184576","","","2013-10-07 20:27:05 +0000","Twitterrific for Mac","RT @wwwtxt: If Cyberspace is going to be for the masses, the masses will use it for whatever they see fit (mostly ‘junk-talk’ + ‘stupid-gam…","387300607427878912","207756340","2013-10-07 19:37:15 +0000","" -"387230087046647808","387192504808128512","636923","2013-10-07 14:57:01 +0000","Twitterrific","@siracusa @irandallmunroe +1 +"387719458300514304","387682559435350017","894911","2013-10-08 23:21:36 +0000","Twitterrific for Mac","@JimRoepcke Messages don't always make it to the Mac, but it otherwise works fine for me. I don't have iMessage problems through, many do.","","","","" +"387603329036980224","","","2013-10-08 15:40:09 +0000","Twitterrific for iOS","RT @mathias: Enabling negative array indices in JavaScript by using an ES6 proxy: http://t.co/7Lm7H7Ow8O","387509308524883968","532923","2013-10-08 09:26:33 +0000","http://mths.be/bpk,http://mths.be/bpk" +"387313149340184576","","","2013-10-07 20:27:05 +0000","Twitterrific for Mac","RT @wwwtxt: If Cyberspace is going to be for the masses, the masses will use it for whatever they see fit (mostly ‘junk-talk’ + ‘stupid-gam…","387300607427878912","207756340","2013-10-07 19:37:15 +0000","" +"387230087046647808","387192504808128512","636923","2013-10-07 14:57:01 +0000","Twitterrific for iOS","@siracusa @irandallmunroe +1 And/or an RSS feed for the mobile version. Pretty please.","","","","" -"387227325760155648","387113406836514816","819606","2013-10-07 14:46:03 +0000","Twitterrific","@janl @hij1nx @mindcrash Put the pitchforks away guys. Anyone can create and participate in community groups. Those are our fellow devs. 😨","","","","" -"387023775570485248","387014131091374080","894911","2013-10-07 01:17:13 +0000","Twitterrific","@JimRoepcke http://t.co/kIYX7LMyGA","","","","https://twitter.com/_sjs/status/387023775570485248/photo/1" -"387011950896377856","386999697123975168","894911","2013-10-07 00:30:14 +0000","Twitterrific","@JimRoepcke Lol, that's rough! Headphones?","","","","" -"386752702186668032","386733230969196544","27302287","2013-10-06 07:20:04 +0000","Twitterrific","@jacobrothstein There are no OTA upgrades for the GM, so you have to do a clean install with iTunes. Betas do expire, that's a known thing.","","","","" -"386639144761311233","","","2013-10-05 23:48:50 +0000","Twitterrific","A true poet. http://t.co/IUF1vmf9G1","","","","https://twitter.com/_sjs/status/386639144761311233/photo/1" -"386252895097606144","386249810728058881","894911","2013-10-04 22:14:01 +0000","Twitterrific for Mac","@JimRoepcke Just wait till he starts getting you to look up movie showtimes and do simple arithmetic for him.","","","","" -"385995546445377536","","","2013-10-04 05:11:24 +0000","Twitterrific","RT @creationix: I updated the chrome app version too, all versions even have basic code highlighting now. #jsgit http://t.co/1IkwAkvCZ4","385967654038564864","70596949","2013-10-04 03:20:34 +0000","https://twitter.com/creationix/status/385967654038564864/photo/1,https://twitter.com/creationix/status/385967654038564864/photo/1" -"385995539193409536","","","2013-10-04 05:11:22 +0000","Twitterrific","RT @creationix: The web version of git-browser now actually persists data using localStorage. +"387227325760155648","387113406836514816","819606","2013-10-07 14:46:03 +0000","Twitterrific for iOS","@janl @hij1nx @mindcrash Put the pitchforks away guys. Anyone can create and participate in community groups. Those are our fellow devs. 😨","","","","" +"387023775570485248","387014131091374080","894911","2013-10-07 01:17:13 +0000","Twitterrific for iOS","@JimRoepcke http://t.co/kIYX7LMyGA","","","","https://twitter.com/_sjs/status/387023775570485248/photo/1" +"387011950896377856","386999697123975168","894911","2013-10-07 00:30:14 +0000","Twitterrific for iOS","@JimRoepcke Lol, that's rough! Headphones?","","","","" +"386752702186668032","386733230969196544","27302287","2013-10-06 07:20:04 +0000","Twitterrific for iOS","@jacobrothstein There are no OTA upgrades for the GM, so you have to do a clean install with iTunes. Betas do expire, that's a known thing.","","","","" +"386639144761311233","","","2013-10-05 23:48:50 +0000","Twitterrific for iOS","A true poet. http://t.co/IUF1vmf9G1","","","","https://twitter.com/_sjs/status/386639144761311233/photo/1" +"386252895097606144","386249810728058881","894911","2013-10-04 22:14:01 +0000","Twitterrific for Mac","@JimRoepcke Just wait till he starts getting you to look up movie showtimes and do simple arithmetic for him.","","","","" +"385995546445377536","","","2013-10-04 05:11:24 +0000","Twitterrific for iOS","RT @creationix: I updated the chrome app version too, all versions even have basic code highlighting now. #jsgit http://t.co/1IkwAkvCZ4","385967654038564864","70596949","2013-10-04 03:20:34 +0000","https://twitter.com/creationix/status/385967654038564864/photo/1,https://twitter.com/creationix/status/385967654038564864/photo/1" +"385995539193409536","","","2013-10-04 05:11:22 +0000","Twitterrific for iOS","RT @creationix: The web version of git-browser now actually persists data using localStorage. http://t.co/BsbY7QENLc #jsgit http://t.co/VKq…","385967448832212993","70596949","2013-10-04 03:19:45 +0000","http://git-browser.creationix.com/,http://git-browser.creationix.com/,https://twitter.com/creationix/status/385967448832212993/photo/1" -"385782915520401408","","216808077","2013-10-03 15:06:29 +0000","Twitterrific","@Shawhelp What's the ETA on fixing this partial outage? Is there a status page?","","","","" -"385778047862837248","","","2013-10-03 14:47:08 +0000","Twitterrific","RT @patrickc: John McCarthy on AWS and APIs in 1962. http://t.co/1pIMwGJqev","385614140712042496","4939401","2013-10-03 03:55:50 +0000","https://twitter.com/patrickc/status/385614140712042496/photo/1,https://twitter.com/patrickc/status/385614140712042496/photo/1" -"384815334588293120","","","2013-09-30 23:01:39 +0000","Twitterrific for Mac","RT @jessiechar: 15% of design is making sure it doesn't look like a swastika or a dick.","384807382112415745","8552602","2013-09-30 22:30:03 +0000","" -"384533320144416768","","","2013-09-30 04:21:02 +0000","Twitterrific","Or is it the app itself? Killing it just fixed things.","","","","" -"384532935027589121","","","2013-09-30 04:19:30 +0000","Twitterrific","Is it just me or is the App Store always down and slow these days?","","","","" -"384496268451401729","384442590675730432","894911","2013-09-30 01:53:48 +0000","Twitterrific","@JimRoepcke Yup. It's fine and doesn't feel choppy, but frames are skipped all over.","","","","" -"384403685876301824","384394630302679040","894911","2013-09-29 19:45:55 +0000","Twitterrific","@JimRoepcke That would be nice.","","","","" -"384403426114695168","384378245556084736","894911","2013-09-29 19:44:53 +0000","Twitterrific","@JimRoepcke I mean that it's slow on my iPad 3.","","","","" -"384377098514595840","384372728867721216","5637652","2013-09-29 18:00:16 +0000","Twitterrific","@codinghorror Those saying it is smooth on an iPad 3 haven't seen it on an iPhone 5 or 5S. It is not smooth. I'm using one right now.","","","","" -"384369493880754177","384366621474578432","31245455","2013-09-29 17:30:03 +0000","Twitterrific","@ScoutApp Pocket tweeting on that slide again? 😝","","","","" +"385782915520401408","","216808077","2013-10-03 15:06:29 +0000","Twitterrific for iOS","@Shawhelp What's the ETA on fixing this partial outage? Is there a status page?","","","","" +"385778047862837248","","","2013-10-03 14:47:08 +0000","Twitterrific for iOS","RT @patrickc: John McCarthy on AWS and APIs in 1962. http://t.co/1pIMwGJqev","385614140712042496","4939401","2013-10-03 03:55:50 +0000","https://twitter.com/patrickc/status/385614140712042496/photo/1,https://twitter.com/patrickc/status/385614140712042496/photo/1" +"384815334588293120","","","2013-09-30 23:01:39 +0000","Twitterrific for Mac","RT @jessiechar: 15% of design is making sure it doesn't look like a swastika or a dick.","384807382112415745","8552602","2013-09-30 22:30:03 +0000","" +"384533320144416768","","","2013-09-30 04:21:02 +0000","Twitterrific for iOS","Or is it the app itself? Killing it just fixed things.","","","","" +"384532935027589121","","","2013-09-30 04:19:30 +0000","Twitterrific for iOS","Is it just me or is the App Store always down and slow these days?","","","","" +"384496268451401729","384442590675730432","894911","2013-09-30 01:53:48 +0000","Twitterrific for iOS","@JimRoepcke Yup. It's fine and doesn't feel choppy, but frames are skipped all over.","","","","" +"384403685876301824","384394630302679040","894911","2013-09-29 19:45:55 +0000","Twitterrific for iOS","@JimRoepcke That would be nice.","","","","" +"384403426114695168","384378245556084736","894911","2013-09-29 19:44:53 +0000","Twitterrific for iOS","@JimRoepcke I mean that it's slow on my iPad 3.","","","","" +"384377098514595840","384372728867721216","5637652","2013-09-29 18:00:16 +0000","Twitterrific for iOS","@codinghorror Those saying it is smooth on an iPad 3 haven't seen it on an iPhone 5 or 5S. It is not smooth. I'm using one right now.","","","","" +"384369493880754177","384366621474578432","31245455","2013-09-29 17:30:03 +0000","Twitterrific for iOS","@ScoutApp Pocket tweeting on that slide again? 😝","","","","" "384101615591899138","384096908169314305","14864447","2013-09-28 23:45:36 +0000","Twitter Web Client","@bryan_kyle Heh, thanks.","","","","" "384091558317813761","","","2013-09-28 23:05:38 +0000","OS X","I'm pretty happy with this Rube Goldberg device I devised for sending links from touch devices to my computers: http://t.co/7TD5hysGpw","","","","http://s42.ca/1G" -"384036784507584512","384019103062573056","15292261","2013-09-28 19:27:59 +0000","Twitterrific","@gregbate Mwa ha ha! http://t.co/5Mehl9KEfr","","","","http://images.fineartamerica.com/images-medium-large-5/the-frankenstein-monster-dick-bobnick.jpg" -"384009715975352321","383952981160243202","40273","2013-09-28 17:40:25 +0000","Twitterrific","@monkbent On the other hand, I enjoy seeing more. It's not necessarily a bad trade-off.","","","","" -"384009554670792704","383952981160243202","40273","2013-09-28 17:39:47 +0000","Twitterrific","@monkbent I just upgraded my 4S to a 5S and I gotta say, it is more difficult to operate with one hand. I have to regrip sometimes.","","","","" -"383824389394800640","383818762723418112","4777951","2013-09-28 05:24:00 +0000","Twitterrific","@lorenb err... ""caffeinate"". Which I just realized may not be a dictionary word. Sorry man. I take my fist-shaking back.","","","","" -"383818762723418112","","","2013-09-28 05:01:38 +0000","Twitterrific","Letterpress doesn't know about ""caffeinated""?! +"384036784507584512","384019103062573056","15292261","2013-09-28 19:27:59 +0000","Twitterrific for iOS","@gregbate Mwa ha ha! http://t.co/5Mehl9KEfr","","","","http://images.fineartamerica.com/images-medium-large-5/the-frankenstein-monster-dick-bobnick.jpg" +"384009715975352321","383952981160243202","40273","2013-09-28 17:40:25 +0000","Twitterrific for iOS","@monkbent On the other hand, I enjoy seeing more. It's not necessarily a bad trade-off.","","","","" +"384009554670792704","383952981160243202","40273","2013-09-28 17:39:47 +0000","Twitterrific for iOS","@monkbent I just upgraded my 4S to a 5S and I gotta say, it is more difficult to operate with one hand. I have to regrip sometimes.","","","","" +"383824389394800640","383818762723418112","4777951","2013-09-28 05:24:00 +0000","Twitterrific for iOS","@lorenb err... ""caffeinate"". Which I just realized may not be a dictionary word. Sorry man. I take my fist-shaking back.","","","","" +"383818762723418112","","","2013-09-28 05:01:38 +0000","Twitterrific for iOS","Letterpress doesn't know about ""caffeinated""?! /shakes fist at @lorenb","","","","" -"383800258372714496","383793907471241216","20904050","2013-09-28 03:48:06 +0000","Twitterrific","@viticci It looks like they cut out the best jumping parts.","","","","" -"383743424597225472","","","2013-09-28 00:02:16 +0000","Twitterrific","RT @CTVNewsVI: VicPD dealing w/ distraught woman on patio outside Bay Centre food court. Centre is behind police tape & traffic in area bei…","383742960161935361","56503668","2013-09-28 00:00:25 +0000","" -"383743381936947200","","","2013-09-28 00:02:06 +0000","Twitterrific","What's happening at the Bay Centre?! #yyj","","","","" -"383693680525058048","383676111025995777","1090141","2013-09-27 20:44:36 +0000","Twitterrific for Mac","@backlon @reneritchie Doomed.","","","","" +"383800258372714496","383793907471241216","20904050","2013-09-28 03:48:06 +0000","Twitterrific for iOS","@viticci It looks like they cut out the best jumping parts.","","","","" +"383743424597225472","","","2013-09-28 00:02:16 +0000","Twitterrific for iOS","RT @CTVNewsVI: VicPD dealing w/ distraught woman on patio outside Bay Centre food court. Centre is behind police tape & traffic in area bei…","383742960161935361","56503668","2013-09-28 00:00:25 +0000","" +"383743381936947200","","","2013-09-28 00:02:06 +0000","Twitterrific for iOS","What's happening at the Bay Centre?! #yyj","","","","" +"383693680525058048","383676111025995777","1090141","2013-09-27 20:44:36 +0000","Twitterrific for Mac","@backlon @reneritchie Doomed.","","","","" "383670497440833538","","","2013-09-27 19:12:29 +0000","OS X","Tackling one of the two hard programming problems, and it isn't cache invalidation or naming.","","","","" -"383640667953442816","383635655965696001","217540637","2013-09-27 17:13:57 +0000","Twitterrific for Mac","@JosephMartel w00t!","","","","" -"383638981050511360","383630712479313921","644603","2013-09-27 17:07:15 +0000","Twitterrific for Mac","@fraserspeirs @siegel There's a shortage of *good* developers. Anyone with a Mac and 3 days can crank out a shitty tip calculator.","","","","" -"383632136349048832","383604647598227456","1310721","2013-09-27 16:40:03 +0000","Twitterrific for Mac","@dionyziz @aaronheckmann That only recently started accepting names such as ""Foo::Bar"". ActiveSupport's version has always resolved those.","","","","" -"383453307420676097","383452883846328320","4777951","2013-09-27 04:49:27 +0000","Twitterrific","@marcoarment Huh, sorry to spam you but now a 74 MB episode is downloading. So it's sometimes 100 MB, who knows. Buggy.","","","","" -"383452883846328320","383450296560545792","4777951","2013-09-27 04:47:46 +0000","Twitterrific","@marcoarment I just got the same message for a supposed 72 MB file. It might still be 50 MB.","","","","" -"383450296560545792","383435443070840833","14231571","2013-09-27 04:37:29 +0000","Twitterrific","@marcoarment Looks like they did raise it to 100 MB. Perhaps only on LTE? http://t.co/FSJJZlU2up","","","","https://twitter.com/_sjs/status/383450296560545792/photo/1" -"383394437310595073","","","2013-09-27 00:55:31 +0000","Twitterrific","RT @SimplyImagined: @drance If I use NSInteger or CGFloat I don't want to think about the underlying architecture unless absolutely necessa…","383393195666591745","110233945","2013-09-27 00:50:35 +0000","" -"383359361415782400","","","2013-09-26 22:36:08 +0000","Twitterrific for Mac","RT @TechCrunchOnion: Some white guys from Stanford raised funding from some older white guys from Stanford.","383350280714076161","1262413328","2013-09-26 22:00:03 +0000","" -"383339397053038592","383311853725962240","14331688","2013-09-26 21:16:49 +0000","Twitterrific for Mac","@ClaytonMorris Yes. Except for the times when it still apologizes for not doing anything first and then works the second time.","","","","" -"382983804022820864","382908085209026560","733813","2013-09-25 21:43:49 +0000","Twitterrific","@stevenf Golden, plastic chalice.","","","","" -"382983538661785600","382905621462265856","118720182","2013-09-25 21:42:45 +0000","Twitterrific","@GrantCuster Oh yeah! I prefer #f7f7f7 to white, but yeah.","","","","" -"382898279458947072","382886408870199296","12131132","2013-09-25 16:03:58 +0000","Twitterrific","@jdalrymple Gold plastic trim nonetheless. Super classy.","","","","" -"382894784764850176","","","2013-09-25 15:50:05 +0000","Twitterrific","If @instapaper is showing you HTML, reinstalling may help. Worked on my iPad. @InstapaperHelp http://t.co/57iMEVaH3t","","","","https://twitter.com/_sjs/status/382894784764850176/photo/1" -"382558564062986241","382539521268531201","808627","2013-09-24 17:34:03 +0000","Twitterrific for Mac","@StevenLevy @parislemon Clusterfuck. Date and time handling is crazy, and then we throw constantly changing daylight savings times on top.","","","","" -"382539412623478784","382539028496539649","4777951","2013-09-24 16:17:57 +0000","Twitterrific","@InstapaperHelp Woah, it actually appears to be every article.","","","","" -"382539028496539649","","1517226020","2013-09-24 16:16:26 +0000","Twitterrific","@InstapaperHelp This page is showing raw HTML. http://t.co/nj04w5DmGr http://t.co/TXG0JXokjI","","","","http://arstechnica.com/gaming/2013/09/what-the-steamos-announcement-means-for-living-room-pc-gaming/,https://twitter.com/_sjs/status/382539028496539649/photo/1" -"382534159094140928","","","2013-09-24 15:57:05 +0000","Twitterrific","RT @diegoperini: element.dispatchEvent(new Event('click', { 'bubbles': true, 'cancelable': true })); all in one line ! - createEvent is dep…","382489047752380416","42855024","2013-09-24 12:57:49 +0000","" -"382533612349837312","382491080346075136","10194392","2013-09-24 15:54:54 +0000","Twitterrific","@reneritchie @counternotions Same thing with ""bricked"" Apple TVs that can be restored with iTunes.","","","","" -"382416026492608512","","15122081","2013-09-24 08:07:40 +0000","Twitterrific","@nerdtalker @reneritchie Old school signal dots. http://t.co/ZB8iZhwqmD","","","","https://twitter.com/_sjs/status/382416026492608512/photo/1" -"382375165146828800","","1517226020","2013-09-24 05:25:18 +0000","Twitterrific","@InstapaperHelp Looks like a bug. This page is rendered on white in dark mode: http://t.co/n8zzcY08ru http://t.co/vXE4LUEhGn","","","","http://www.takebetterphotos.com.au/iphone5s-camera-review.html,https://twitter.com/_sjs/status/382375165146828800/photo/1" -"382346207500066816","","","2013-09-24 03:30:14 +0000","Twitterrific","So does Surface 2's camera rotate with the kickstand or is it fixed at 22°? Or some other angle? http://t.co/NzJ4j1wden @siracusa","","","","http://5by5.tv/hypercritical/73" -"382328473584287744","382306398362550272","14561327","2013-09-24 02:19:46 +0000","Twitterrific","@dhh How about 4S to 5S?","","","","" -"382276583748169729","382275087367299072","65141250","2013-09-23 22:53:34 +0000","Twitterrific for Mac","@phillipsbeer @BreweryTheBeast It was awesome! You guys did a great job.","","","","" -"381921511877013504","","","2013-09-22 23:22:38 +0000","Twitterrific","iTunes Store app crashes on launch on iOS 7 for me. Any tips on recovery without a reinstall?","","","","" -"381492798580473856","381229785453584384","15122081","2013-09-21 18:59:05 +0000","Twitterrific","@nerdtalker Happened to me this morning. First time on the GM. You did this to me. I blame you.","","","","" -"381489429430296576","381487744062873600","46800814","2013-09-21 18:45:42 +0000","Twitterrific","@_DavidSmith No problem, and thank you as well. I've enjoyed following it.","","","","" +"383640667953442816","383635655965696001","217540637","2013-09-27 17:13:57 +0000","Twitterrific for Mac","@JosephMartel w00t!","","","","" +"383638981050511360","383630712479313921","644603","2013-09-27 17:07:15 +0000","Twitterrific for Mac","@fraserspeirs @siegel There's a shortage of *good* developers. Anyone with a Mac and 3 days can crank out a shitty tip calculator.","","","","" +"383632136349048832","383604647598227456","1310721","2013-09-27 16:40:03 +0000","Twitterrific for Mac","@dionyziz @aaronheckmann That only recently started accepting names such as ""Foo::Bar"". ActiveSupport's version has always resolved those.","","","","" +"383453307420676097","383452883846328320","4777951","2013-09-27 04:49:27 +0000","Twitterrific for iOS","@marcoarment Huh, sorry to spam you but now a 74 MB episode is downloading. So it's sometimes 100 MB, who knows. Buggy.","","","","" +"383452883846328320","383450296560545792","4777951","2013-09-27 04:47:46 +0000","Twitterrific for iOS","@marcoarment I just got the same message for a supposed 72 MB file. It might still be 50 MB.","","","","" +"383450296560545792","383435443070840833","14231571","2013-09-27 04:37:29 +0000","Twitterrific for iOS","@marcoarment Looks like they did raise it to 100 MB. Perhaps only on LTE? http://t.co/FSJJZlU2up","","","","https://twitter.com/_sjs/status/383450296560545792/photo/1" +"383394437310595073","","","2013-09-27 00:55:31 +0000","Twitterrific for iOS","RT @SimplyImagined: @drance If I use NSInteger or CGFloat I don't want to think about the underlying architecture unless absolutely necessa…","383393195666591745","110233945","2013-09-27 00:50:35 +0000","" +"383359361415782400","","","2013-09-26 22:36:08 +0000","Twitterrific for Mac","RT @TechCrunchOnion: Some white guys from Stanford raised funding from some older white guys from Stanford.","383350280714076161","1262413328","2013-09-26 22:00:03 +0000","" +"383339397053038592","383311853725962240","14331688","2013-09-26 21:16:49 +0000","Twitterrific for Mac","@ClaytonMorris Yes. Except for the times when it still apologizes for not doing anything first and then works the second time.","","","","" +"382983804022820864","382908085209026560","733813","2013-09-25 21:43:49 +0000","Twitterrific for iOS","@stevenf Golden, plastic chalice.","","","","" +"382983538661785600","382905621462265856","118720182","2013-09-25 21:42:45 +0000","Twitterrific for iOS","@GrantCuster Oh yeah! I prefer #f7f7f7 to white, but yeah.","","","","" +"382898279458947072","382886408870199296","12131132","2013-09-25 16:03:58 +0000","Twitterrific for iOS","@jdalrymple Gold plastic trim nonetheless. Super classy.","","","","" +"382894784764850176","","","2013-09-25 15:50:05 +0000","Twitterrific for iOS","If @instapaper is showing you HTML, reinstalling may help. Worked on my iPad. @InstapaperHelp http://t.co/57iMEVaH3t","","","","https://twitter.com/_sjs/status/382894784764850176/photo/1" +"382558564062986241","382539521268531201","808627","2013-09-24 17:34:03 +0000","Twitterrific for Mac","@StevenLevy @parislemon Clusterfuck. Date and time handling is crazy, and then we throw constantly changing daylight savings times on top.","","","","" +"382539412623478784","382539028496539649","4777951","2013-09-24 16:17:57 +0000","Twitterrific for iOS","@InstapaperHelp Woah, it actually appears to be every article.","","","","" +"382539028496539649","","1517226020","2013-09-24 16:16:26 +0000","Twitterrific for iOS","@InstapaperHelp This page is showing raw HTML. http://t.co/nj04w5DmGr http://t.co/TXG0JXokjI","","","","http://arstechnica.com/gaming/2013/09/what-the-steamos-announcement-means-for-living-room-pc-gaming/,https://twitter.com/_sjs/status/382539028496539649/photo/1" +"382534159094140928","","","2013-09-24 15:57:05 +0000","Twitterrific for iOS","RT @diegoperini: element.dispatchEvent(new Event('click', { 'bubbles': true, 'cancelable': true })); all in one line ! - createEvent is dep…","382489047752380416","42855024","2013-09-24 12:57:49 +0000","" +"382533612349837312","382491080346075136","10194392","2013-09-24 15:54:54 +0000","Twitterrific for iOS","@reneritchie @counternotions Same thing with ""bricked"" Apple TVs that can be restored with iTunes.","","","","" +"382416026492608512","","15122081","2013-09-24 08:07:40 +0000","Twitterrific for iOS","@nerdtalker @reneritchie Old school signal dots. http://t.co/ZB8iZhwqmD","","","","https://twitter.com/_sjs/status/382416026492608512/photo/1" +"382375165146828800","","1517226020","2013-09-24 05:25:18 +0000","Twitterrific for iOS","@InstapaperHelp Looks like a bug. This page is rendered on white in dark mode: http://t.co/n8zzcY08ru http://t.co/vXE4LUEhGn","","","","http://www.takebetterphotos.com.au/iphone5s-camera-review.html,https://twitter.com/_sjs/status/382375165146828800/photo/1" +"382346207500066816","","","2013-09-24 03:30:14 +0000","Twitterrific for iOS","So does Surface 2's camera rotate with the kickstand or is it fixed at 22°? Or some other angle? http://t.co/NzJ4j1wden @siracusa","","","","http://5by5.tv/hypercritical/73" +"382328473584287744","382306398362550272","14561327","2013-09-24 02:19:46 +0000","Twitterrific for iOS","@dhh How about 4S to 5S?","","","","" +"382276583748169729","382275087367299072","65141250","2013-09-23 22:53:34 +0000","Twitterrific for Mac","@phillipsbeer @BreweryTheBeast It was awesome! You guys did a great job.","","","","" +"381921511877013504","","","2013-09-22 23:22:38 +0000","Twitterrific for iOS","iTunes Store app crashes on launch on iOS 7 for me. Any tips on recovery without a reinstall?","","","","" +"381492798580473856","381229785453584384","15122081","2013-09-21 18:59:05 +0000","Twitterrific for iOS","@nerdtalker Happened to me this morning. First time on the GM. You did this to me. I blame you.","","","","" +"381489429430296576","381487744062873600","46800814","2013-09-21 18:45:42 +0000","Twitterrific for iOS","@_DavidSmith No problem, and thank you as well. I've enjoyed following it.","","","","" "381469422013014016","","46800814","2013-09-21 17:26:12 +0000","Twitter Lite","@_DavidSmith It looks like your iOS 7 adoption stats have stopped updating.","","","","" -"381309364985810946","","","2013-09-21 06:50:11 +0000","Twitterrific","RT @gparker: iOS 7 fixes a performance bug in some animated GIFs. I was annoyed enough to hunt it down one weekend. You're welcome.","380533597783871488","16318564","2013-09-19 03:27:34 +0000","" -"381308433342816256","380533597783871488","16318564","2013-09-21 06:46:29 +0000","Twitterrific","@gparker @tomdale Thanks! You have significantly improved my redditing. http://t.co/EAJHg3siMf","","","","http://i.imgur.com/geXrmng.jpg" -"381232511956680705","","","2013-09-21 01:44:48 +0000","Twitterrific","RT @Horse_iOS: As of 4:57pm PST today, two days after its release, iOS 7 is now installed on every iPhone and iPad in the entire world","381207826971906049","1518266449","2013-09-21 00:06:43 +0000","" -"381172420771446784","381171762622259200","217540637","2013-09-20 21:46:01 +0000","Twitterrific for Mac","@JosephMartel It's fairly subtle in the real photos I've seen so far. I'm not a fan of gold either but I think it's been done tastefully.","","","","" -"381168000981667840","","","2013-09-20 21:28:27 +0000","Twitterrific for Mac","RT @abdophoto: @marcoarment I think this image is fitting given today's news on Blackberry. +"381309364985810946","","","2013-09-21 06:50:11 +0000","Twitterrific for iOS","RT @gparker: iOS 7 fixes a performance bug in some animated GIFs. I was annoyed enough to hunt it down one weekend. You're welcome.","380533597783871488","16318564","2013-09-19 03:27:34 +0000","" +"381308433342816256","380533597783871488","16318564","2013-09-21 06:46:29 +0000","Twitterrific for iOS","@gparker @tomdale Thanks! You have significantly improved my redditing. http://t.co/EAJHg3siMf","","","","http://i.imgur.com/geXrmng.jpg" +"381232511956680705","","","2013-09-21 01:44:48 +0000","Twitterrific for iOS","RT @Horse_iOS: As of 4:57pm PST today, two days after its release, iOS 7 is now installed on every iPhone and iPad in the entire world","381207826971906049","1518266449","2013-09-21 00:06:43 +0000","" +"381172420771446784","381171762622259200","217540637","2013-09-20 21:46:01 +0000","Twitterrific for Mac","@JosephMartel It's fairly subtle in the real photos I've seen so far. I'm not a fan of gold either but I think it's been done tastefully.","","","","" +"381168000981667840","","","2013-09-20 21:28:27 +0000","Twitterrific for Mac","RT @abdophoto: @marcoarment I think this image is fitting given today's news on Blackberry. http://t.co/sBpm6el49G","381157911746985984","240886437","2013-09-20 20:48:22 +0000","http://www.marco.org/2012/01/22/rim-ceos-stepping-down,http://www.marco.org/2012/01/22/rim-ceos-stepping-down" -"381161247015587840","381153854584135680","894911","2013-09-20 21:01:37 +0000","Twitterrific for Mac","@JimRoepcke I almost switched to Koodo but they won't hook up my iPad with data. At all. For any amount of money.","","","","" -"381161033399664641","381157500428374016","36183","2013-09-20 21:00:46 +0000","Twitterrific for Mac","@chockenberry Heh. First comment: http://t.co/SAnOIpGlSO","","","","http://www.loopinsight.com/2013/09/19/twitterrific-5-5-for-ios-7" -"381160605651980288","381153854584135680","894911","2013-09-20 20:59:04 +0000","Twitterrific for Mac","@JimRoepcke Luckily I have a grandfathered 6 GB promo plan from a year or two back. Aren't they all terrible though? Last I looked they were","","","","" +"381161247015587840","381153854584135680","894911","2013-09-20 21:01:37 +0000","Twitterrific for Mac","@JimRoepcke I almost switched to Koodo but they won't hook up my iPad with data. At all. For any amount of money.","","","","" +"381161033399664641","381157500428374016","36183","2013-09-20 21:00:46 +0000","Twitterrific for Mac","@chockenberry Heh. First comment: http://t.co/SAnOIpGlSO","","","","http://www.loopinsight.com/2013/09/19/twitterrific-5-5-for-ios-7" +"381160605651980288","381153854584135680","894911","2013-09-20 20:59:04 +0000","Twitterrific for Mac","@JimRoepcke Luckily I have a grandfathered 6 GB promo plan from a year or two back. Aren't they all terrible though? Last I looked they were","","","","" "381151812914401280","381151190869737472","894911","2013-09-20 20:24:08 +0000","Twitter Web Client","@JimRoepcke Hmmm. Looks like it actually. Telus does it too. http://t.co/cIM0sei79l https://t.co/SLkkZ60cNP","","","","http://mobility.telus.com/en/BC/bring-own-device/,https://www.rogers.com/web/content/bring-your-own-phone" -"381150984681959425","381135266406100992","894911","2013-09-20 20:20:50 +0000","Twitterrific for Mac","@JimRoepcke Rogers is starting to offer discounts if you bring your own device. Time to switch again?","","","","" -"381115154869411841","381100567533076481","135727142","2013-09-20 17:58:28 +0000","Twitterrific for Mac","@ToddDunlop http://t.co/XFTNkHNA2Z","","","","http://inboxzero.com/" -"380965510529032192","380940926811521024","624683","2013-09-20 08:03:50 +0000","Twitterrific","@Stammy @mahyarm Lol! Yeah it's all downhill after that ;-)","","","","" +"381150984681959425","381135266406100992","894911","2013-09-20 20:20:50 +0000","Twitterrific for Mac","@JimRoepcke Rogers is starting to offer discounts if you bring your own device. Time to switch again?","","","","" +"381115154869411841","381100567533076481","135727142","2013-09-20 17:58:28 +0000","Twitterrific for Mac","@ToddDunlop http://t.co/XFTNkHNA2Z","","","","http://inboxzero.com/" +"380965510529032192","380940926811521024","624683","2013-09-20 08:03:50 +0000","Twitterrific for iOS","@Stammy @mahyarm Lol! Yeah it's all downhill after that ;-)","","","","" "380963020320411648","380961315860123648","15122081","2013-09-20 07:53:56 +0000","Twitter Web Client","@nerdtalker Thanks! It's not often a CDN saturates 100 mbit for me. This should be done by the morning.","","","","" -"380931230629249025","380927831640772608","894911","2013-09-20 05:47:37 +0000","Twitterrific","@JimRoepcke There are legit complaints. I'm glad to see big changes in 6 years rather than stagnation. I'll take missteps for that.","","","","" -"380927660383166465","380926882469797889","894911","2013-09-20 05:33:26 +0000","Twitterrific","@JimRoepcke There will be problems - like swipe to delete reversal and back gesture - but people can learn. It's like ""natural"" scrolling.","","","","" -"380927435346178048","380926882469797889","894911","2013-09-20 05:32:32 +0000","Twitterrific","@JimRoepcke Heh, really though I think some people just fear change. Given time they'll like it. I like it a lot now. More than at first.","","","","" -"380926609483526144","","894911","2013-09-20 05:29:15 +0000","Twitterrific","@JimRoepcke Relevant http://t.co/rJabPxYpSK","","","","http://www.youtube.com/watch?v=JTpXVv-DaBQ" -"380837775857045504","380837394095681536","15122081","2013-09-19 23:36:16 +0000","Twitterrific for Mac","@nerdtalker Thanks! I'm mostly interested in a few of them, but I like to hoard data…","","","","" -"380837567697920000","","","2013-09-19 23:35:26 +0000","Twitterrific for Mac","RT @nerdtalker: @_sjs yeah I just used wget and then cleaned up the folders, I’ll share","380837394095681536","15122081","2013-09-19 23:34:45 +0000","" -"380837546130825216","","","2013-09-19 23:35:21 +0000","Twitterrific for Mac","RT @nerdtalker: It’s a lot of files: http://t.co/qDsn8AoOzw","380828354510721024","15122081","2013-09-19 22:58:49 +0000","http://cl.ly/RUlW/image.png,http://cl.ly/RUlW/image.png" -"380837533812146176","","","2013-09-19 23:35:18 +0000","Twitterrific for Mac","RT @nerdtalker: So I downloaded all of the .ipsw restore images that Apple makes available online, all in all 228 GB.","380827957196886016","15122081","2013-09-19 22:57:15 +0000","" -"380833696212733952","380827957196886016","15122081","2013-09-19 23:20:03 +0000","Twitterrific for Mac","@nerdtalker Could you share the links for those in the dev forums, or somewhere? Or the command line or whatever you used.","","","","" -"380798077310730240","380792977293312000","1236101","2013-09-19 20:58:31 +0000","Twitterrific for Mac","@BenedictEvans That's why I think Apple's answer to the sub-$500 phone might be some form of wearable device. Independent, not tethered.","","","","" -"380775553260740608","380768583921324032","53010195","2013-09-19 19:29:01 +0000","Twitterrific for Mac","@mraleph What freaks me out is that some PHP devs use false for false/null/undefined/uninitialized/error in other languages too. Augh!","","","","" -"380737510738898944","380735877187510272","36183","2013-09-19 16:57:50 +0000","Twitterrific for Mac","@chockenberry They tossed those phones in the garbage after the shoot.","","","","" -"380601076413505536","380576874465751040","668863","2013-09-19 07:55:42 +0000","Twitterrific","@tomdale Tap the bottom of the screen where the toolbar would be. It appears. Same for the top bar. Oh, Apple.","","","","" -"380529773081939968","380527321943265280","4777951","2013-09-19 03:12:22 +0000","Twitterrific","@reneritchie I see you sorted it already. That'll learn me to reply to 3 hour old tweets without catching up.","","","","" -"380527321943265280","380474528952250368","10194392","2013-09-19 03:02:38 +0000","Twitterrific","@reneritchie 4 hours on my 4S","","","","" -"380526542322802688","380521335421554688","15122081","2013-09-19 02:59:32 +0000","Twitterrific","@nerdtalker Yeah ASR on device would be great. I'm just happy it's faster. If they even try to compete with Google it should get better.","","","","" -"380520856838873088","380520586625048576","15122081","2013-09-19 02:36:56 +0000","Twitterrific","@nerdtalker Poor wording, sorry. That particular problem is totally fixed for me.","","","","" -"380518392978890752","380471337698873344","15122081","2013-09-19 02:27:09 +0000","Twitterrific","@nerdtalker Weak. I am happy to see Siri totally fixed in the GM on my 4S. I had that *every* time during the betas.","","","","" -"380437797728829440","380426194568876033","20904050","2013-09-18 21:06:53 +0000","Twitterrific","@viticci @gruber @jdalrymple And which old fruit is ever ripening still? (Low-hanging or otherwise)","","","","" -"380404660407783424","","","2013-09-18 18:55:13 +0000","Twitterrific","RT @KKrzcuik: The new iPhone update is soooooo weird 😳 but I like it","380396192934670336","588435038","2013-09-18 18:21:34 +0000","" -"380386418477891584","380378411119546368","894911","2013-09-18 17:42:44 +0000","Twitterrific","@JimRoepcke Fo shizzle.","","","","" -"380364914985930753","380299629684076545","155408489","2013-09-18 16:17:17 +0000","Twitterrific","@pburford @BenedictEvans You may miss quality apps made by devs who don't rush things. I'd plan to revisit that in 3-6 months.","","","","" -"380362164579475458","380351793584029696","209916925","2013-09-18 16:06:21 +0000","Twitterrific","@rocksaucestudio Please take me off this list.","","","","" -"380356935960121344","","","2013-09-18 15:45:34 +0000","Twitterrific","Happy iOS 7 (code name ""What happened to my phone?!"") day!","","","","" -"380199520300068864","","","2013-09-18 05:20:04 +0000","Twitterrific","RT @anandshimpi: I just spent the past week doing the best I can to understand Apple's A7 SoC. In short? It's insanely fast. http://t.co/Ag…","380135477090598912","14618863","2013-09-18 01:05:34 +0000","http://www.anandtech.com/show/7335/the-iphone-5s-review" -"380070762939301888","380062188762722304","14090245","2013-09-17 20:48:25 +0000","Twitterrific for Mac","@swildstrom @BenedictEvans That implies that NFC has lived. It hasn't.","","","","" -"380051844816326657","","","2013-09-17 19:33:15 +0000","Twitterrific for Mac","Things like that combined with computed properties and powerful but simple routing are big wins.","","","","" -"380051515605397504","","","2013-09-17 19:31:56 +0000","Twitterrific for Mac","After an 18 month long detour using Backbone it feels good to get back into Ember.js. Instead of helping you wire up events it just does it.","","","","" -"380034585637040129","380032797291053056","33423","2013-09-17 18:24:40 +0000","Twitterrific for Mac","@gruber @codinghorror An iPhone 5C is a significant upgrade from the 4S on down (especially from no phone). People still use 3GSes.","","","","" -"380007706133671937","","","2013-09-17 16:37:52 +0000","Twitterrific for Mac","NSDateFormatter vs SQLite performance for parsing dates: http://t.co/GGzGiTKhJ0 (via https://t.co/v0vJew4aft)","","","","http://mjtsai.com/blog/2013/09/10/date-parsing-performance-nsdateformatter-vs-sqlite/,https://alpha.app.net/mikael/post/11059692" -"379989735168425984","","","2013-09-17 15:26:27 +0000","Twitterrific","RT @codinghorror: Too big for Excel is not “Big Data”. http://t.co/kpV78wh9Ew","379985634972008448","5637652","2013-09-17 15:10:09 +0000","http://www.chrisstucchio.com/blog/2013/hadoop_hatred.html,http://www.chrisstucchio.com/blog/2013/hadoop_hatred.html" -"379983647408799744","379943694797135872","10194392","2013-09-17 15:02:15 +0000","Twitterrific","@reneritchie As long as it allows downloads but not purchases it seems okay to me.","","","","" -"379655205454766080","379654997329203200","277724842","2013-09-16 17:17:09 +0000","Twitterrific for Mac","@TooTallNate So close. You almost qualify^W^Wmay already be a winner!","","","","" -"379654754458021889","379653776543453184","277724842","2013-09-16 17:15:21 +0000","Twitterrific for Mac","@TooTallNate Is your laptop a MacBook with stickers on it?","","","","" -"379472354771881984","379471573654450176","525226773","2013-09-16 05:10:34 +0000","Twitterrific","@muditosanchez @counternotions You don't need magic. Thunderbolt is a start.","","","","" -"379444376084021248","","","2013-09-16 03:19:23 +0000","Twitterrific","RT @wwwtxt: Considering that prices start at $799, not including a fax modem—Apple Newtons will only fit in deep pockets, in more ways than…","379414851946549248","207756340","2013-09-16 01:22:04 +0000","" -"379444345528541184","","","2013-09-16 03:19:16 +0000","Twitterrific","RT @wwwtxt: The MessagePad weighs less than a pound and is about the size of a videocassette. ☯93AUG","379414147311890433","207756340","2013-09-16 01:19:16 +0000","" -"379444328424148992","","","2013-09-16 03:19:12 +0000","Twitterrific","RT @wwwtxt: It seems as if everyone here in Silicon Valley is salivating over the new Apple Newton MessagePad. Not me. ☯93AUG","379413680653598720","207756340","2013-09-16 01:17:25 +0000","" -"379444280818823169","","","2013-09-16 03:19:00 +0000","Twitterrific","RT @igrigorik: Ruby HTTP 2.0 library is starting to come together... http://t.co/LpiswQlEh5 - 154 examples, 0 failures - woot.","379395441818759169","9980812","2013-09-16 00:04:56 +0000","http://bit.ly/16b5JDz,http://bit.ly/16b5JDz" -"379444229623123968","","","2013-09-16 03:18:48 +0000","Twitterrific","RT @HTTP_2: We now have *three* implementations of #HTTP2 draft -06, if you include Wireshark. https://t.co/TB3InG8r8z","379407656609271808","491179627","2013-09-16 00:53:29 +0000","https://github.com/http2/http2-spec/wiki/Implementations,https://github.com/http2/http2-spec/wiki/Implementations" -"379443146901299201","379367937838432256","525226773","2013-09-16 03:14:30 +0000","Twitterrific","@muditosanchez @counternotions Aside from the core components it is. The line is in a different place but the principle is the same.","","","","" -"379366438869286912","379355716143677440","525226773","2013-09-15 22:09:41 +0000","Twitterrific","@muditosanchez @counternotions The basic principle of those is quite similar to that of the new Mac Pro.","","","","" -"379277045064159232","379273607827828736","894911","2013-09-15 16:14:28 +0000","Twitterrific","@JimRoepcke Really? My favourite apps have been doing it for years. I love it.","","","","" -"379276871629684737","379275016077971459","74837444","2013-09-15 16:13:47 +0000","Twitterrific","@Badger32d @mckeay Well if comparing to Google puts it in perspective that seems like a good thing. It is outrageous.","","","","" -"379267379907137536","379234026101669888","813697","2013-09-15 15:36:04 +0000","Twitterrific","@mckeay @Badger32d I agree in spirit, but Google and the NSA are very different entities with very different rules. Not a useful comparison.","","","","" -"378650492210913280","378647668198608897","894911","2013-09-13 22:44:46 +0000","Twitterrific for Mac","@JimRoepcke Apple Maps is brutal for that! Searching for Mount Becher yielded garbage until I added "", BC"" at the end. Google got it right.","","","","" -"378643971397787648","378622643735261185","6687652","2013-09-13 22:18:52 +0000","Twitterrific for Mac","@panic Yay! Congrats on shipping. I've been anxious for this version of Prompt.","","","","" +"380931230629249025","380927831640772608","894911","2013-09-20 05:47:37 +0000","Twitterrific for iOS","@JimRoepcke There are legit complaints. I'm glad to see big changes in 6 years rather than stagnation. I'll take missteps for that.","","","","" +"380927660383166465","380926882469797889","894911","2013-09-20 05:33:26 +0000","Twitterrific for iOS","@JimRoepcke There will be problems - like swipe to delete reversal and back gesture - but people can learn. It's like ""natural"" scrolling.","","","","" +"380927435346178048","380926882469797889","894911","2013-09-20 05:32:32 +0000","Twitterrific for iOS","@JimRoepcke Heh, really though I think some people just fear change. Given time they'll like it. I like it a lot now. More than at first.","","","","" +"380926609483526144","","894911","2013-09-20 05:29:15 +0000","Twitterrific for iOS","@JimRoepcke Relevant http://t.co/rJabPxYpSK","","","","http://www.youtube.com/watch?v=JTpXVv-DaBQ" +"380837775857045504","380837394095681536","15122081","2013-09-19 23:36:16 +0000","Twitterrific for Mac","@nerdtalker Thanks! I'm mostly interested in a few of them, but I like to hoard data…","","","","" +"380837567697920000","","","2013-09-19 23:35:26 +0000","Twitterrific for Mac","RT @nerdtalker: @_sjs yeah I just used wget and then cleaned up the folders, I’ll share","380837394095681536","15122081","2013-09-19 23:34:45 +0000","" +"380837546130825216","","","2013-09-19 23:35:21 +0000","Twitterrific for Mac","RT @nerdtalker: It’s a lot of files: http://t.co/qDsn8AoOzw","380828354510721024","15122081","2013-09-19 22:58:49 +0000","http://cl.ly/RUlW/image.png,http://cl.ly/RUlW/image.png" +"380837533812146176","","","2013-09-19 23:35:18 +0000","Twitterrific for Mac","RT @nerdtalker: So I downloaded all of the .ipsw restore images that Apple makes available online, all in all 228 GB.","380827957196886016","15122081","2013-09-19 22:57:15 +0000","" +"380833696212733952","380827957196886016","15122081","2013-09-19 23:20:03 +0000","Twitterrific for Mac","@nerdtalker Could you share the links for those in the dev forums, or somewhere? Or the command line or whatever you used.","","","","" +"380798077310730240","380792977293312000","1236101","2013-09-19 20:58:31 +0000","Twitterrific for Mac","@BenedictEvans That's why I think Apple's answer to the sub-$500 phone might be some form of wearable device. Independent, not tethered.","","","","" +"380775553260740608","380768583921324032","53010195","2013-09-19 19:29:01 +0000","Twitterrific for Mac","@mraleph What freaks me out is that some PHP devs use false for false/null/undefined/uninitialized/error in other languages too. Augh!","","","","" +"380737510738898944","380735877187510272","36183","2013-09-19 16:57:50 +0000","Twitterrific for Mac","@chockenberry They tossed those phones in the garbage after the shoot.","","","","" +"380601076413505536","380576874465751040","668863","2013-09-19 07:55:42 +0000","Twitterrific for iOS","@tomdale Tap the bottom of the screen where the toolbar would be. It appears. Same for the top bar. Oh, Apple.","","","","" +"380529773081939968","380527321943265280","4777951","2013-09-19 03:12:22 +0000","Twitterrific for iOS","@reneritchie I see you sorted it already. That'll learn me to reply to 3 hour old tweets without catching up.","","","","" +"380527321943265280","380474528952250368","10194392","2013-09-19 03:02:38 +0000","Twitterrific for iOS","@reneritchie 4 hours on my 4S","","","","" +"380526542322802688","380521335421554688","15122081","2013-09-19 02:59:32 +0000","Twitterrific for iOS","@nerdtalker Yeah ASR on device would be great. I'm just happy it's faster. If they even try to compete with Google it should get better.","","","","" +"380520856838873088","380520586625048576","15122081","2013-09-19 02:36:56 +0000","Twitterrific for iOS","@nerdtalker Poor wording, sorry. That particular problem is totally fixed for me.","","","","" +"380518392978890752","380471337698873344","15122081","2013-09-19 02:27:09 +0000","Twitterrific for iOS","@nerdtalker Weak. I am happy to see Siri totally fixed in the GM on my 4S. I had that *every* time during the betas.","","","","" +"380437797728829440","380426194568876033","20904050","2013-09-18 21:06:53 +0000","Twitterrific for iOS","@viticci @gruber @jdalrymple And which old fruit is ever ripening still? (Low-hanging or otherwise)","","","","" +"380404660407783424","","","2013-09-18 18:55:13 +0000","Twitterrific for iOS","RT @KKrzcuik: The new iPhone update is soooooo weird 😳 but I like it","380396192934670336","588435038","2013-09-18 18:21:34 +0000","" +"380386418477891584","380378411119546368","894911","2013-09-18 17:42:44 +0000","Twitterrific for iOS","@JimRoepcke Fo shizzle.","","","","" +"380364914985930753","","","2013-09-18 16:17:17 +0000","Twitterrific for iOS","@pburford @BenedictEvans You may miss quality apps made by devs who don't rush things. I'd plan to revisit that in 3-6 months.","","","","" +"380362164579475458","380351793584029696","209916925","2013-09-18 16:06:21 +0000","Twitterrific for iOS","@rocksaucestudio Please take me off this list.","","","","" +"380356935960121344","","","2013-09-18 15:45:34 +0000","Twitterrific for iOS","Happy iOS 7 (code name ""What happened to my phone?!"") day!","","","","" +"380199520300068864","","","2013-09-18 05:20:04 +0000","Twitterrific for iOS","RT @anandshimpi: I just spent the past week doing the best I can to understand Apple's A7 SoC. In short? It's insanely fast. http://t.co/Ag…","380135477090598912","14618863","2013-09-18 01:05:34 +0000","http://www.anandtech.com/show/7335/the-iphone-5s-review" +"380070762939301888","380062188762722304","14090245","2013-09-17 20:48:25 +0000","Twitterrific for Mac","@swildstrom @BenedictEvans That implies that NFC has lived. It hasn't.","","","","" +"380051844816326657","","","2013-09-17 19:33:15 +0000","Twitterrific for Mac","Things like that combined with computed properties and powerful but simple routing are big wins.","","","","" +"380051515605397504","","","2013-09-17 19:31:56 +0000","Twitterrific for Mac","After an 18 month long detour using Backbone it feels good to get back into Ember.js. Instead of helping you wire up events it just does it.","","","","" +"380034585637040129","380032797291053056","33423","2013-09-17 18:24:40 +0000","Twitterrific for Mac","@gruber @codinghorror An iPhone 5C is a significant upgrade from the 4S on down (especially from no phone). People still use 3GSes.","","","","" +"380007706133671937","","","2013-09-17 16:37:52 +0000","Twitterrific for Mac","NSDateFormatter vs SQLite performance for parsing dates: http://t.co/GGzGiTKhJ0 (via https://t.co/v0vJew4aft)","","","","http://mjtsai.com/blog/2013/09/10/date-parsing-performance-nsdateformatter-vs-sqlite/,https://alpha.app.net/mikael/post/11059692" +"379989735168425984","","","2013-09-17 15:26:27 +0000","Twitterrific for iOS","RT @codinghorror: Too big for Excel is not “Big Data”. http://t.co/kpV78wh9Ew","379985634972008448","5637652","2013-09-17 15:10:09 +0000","http://www.chrisstucchio.com/blog/2013/hadoop_hatred.html,http://www.chrisstucchio.com/blog/2013/hadoop_hatred.html" +"379983647408799744","379943694797135872","10194392","2013-09-17 15:02:15 +0000","Twitterrific for iOS","@reneritchie As long as it allows downloads but not purchases it seems okay to me.","","","","" +"379655205454766080","379654997329203200","277724842","2013-09-16 17:17:09 +0000","Twitterrific for Mac","@TooTallNate So close. You almost qualify^W^Wmay already be a winner!","","","","" +"379654754458021889","379653776543453184","277724842","2013-09-16 17:15:21 +0000","Twitterrific for Mac","@TooTallNate Is your laptop a MacBook with stickers on it?","","","","" +"379472354771881984","379471573654450176","525226773","2013-09-16 05:10:34 +0000","Twitterrific for iOS","@muditosanchez @counternotions You don't need magic. Thunderbolt is a start.","","","","" +"379444376084021248","","","2013-09-16 03:19:23 +0000","Twitterrific for iOS","RT @wwwtxt: Considering that prices start at $799, not including a fax modem—Apple Newtons will only fit in deep pockets, in more ways than…","379414851946549248","207756340","2013-09-16 01:22:04 +0000","" +"379444345528541184","","","2013-09-16 03:19:16 +0000","Twitterrific for iOS","RT @wwwtxt: The MessagePad weighs less than a pound and is about the size of a videocassette. ☯93AUG","379414147311890433","207756340","2013-09-16 01:19:16 +0000","" +"379444328424148992","","","2013-09-16 03:19:12 +0000","Twitterrific for iOS","RT @wwwtxt: It seems as if everyone here in Silicon Valley is salivating over the new Apple Newton MessagePad. Not me. ☯93AUG","379413680653598720","207756340","2013-09-16 01:17:25 +0000","" +"379444280818823169","","","2013-09-16 03:19:00 +0000","Twitterrific for iOS","RT @igrigorik: Ruby HTTP 2.0 library is starting to come together... http://t.co/LpiswQlEh5 - 154 examples, 0 failures - woot.","379395441818759169","9980812","2013-09-16 00:04:56 +0000","http://bit.ly/16b5JDz,http://bit.ly/16b5JDz" +"379444229623123968","","","2013-09-16 03:18:48 +0000","Twitterrific for iOS","RT @HTTP_2: We now have *three* implementations of #HTTP2 draft -06, if you include Wireshark. https://t.co/TB3InG8r8z","379407656609271808","491179627","2013-09-16 00:53:29 +0000","https://github.com/http2/http2-spec/wiki/Implementations,https://github.com/http2/http2-spec/wiki/Implementations" +"379443146901299201","379367937838432256","525226773","2013-09-16 03:14:30 +0000","Twitterrific for iOS","@muditosanchez @counternotions Aside from the core components it is. The line is in a different place but the principle is the same.","","","","" +"379366438869286912","379355716143677440","525226773","2013-09-15 22:09:41 +0000","Twitterrific for iOS","@muditosanchez @counternotions The basic principle of those is quite similar to that of the new Mac Pro.","","","","" +"379277045064159232","379273607827828736","894911","2013-09-15 16:14:28 +0000","Twitterrific for iOS","@JimRoepcke Really? My favourite apps have been doing it for years. I love it.","","","","" +"379276871629684737","379275016077971459","74837444","2013-09-15 16:13:47 +0000","Twitterrific for iOS","@Badger32d @mckeay Well if comparing to Google puts it in perspective that seems like a good thing. It is outrageous.","","","","" +"379267379907137536","379234026101669888","813697","2013-09-15 15:36:04 +0000","Twitterrific for iOS","@mckeay @Badger32d I agree in spirit, but Google and the NSA are very different entities with very different rules. Not a useful comparison.","","","","" +"378650492210913280","378647668198608897","894911","2013-09-13 22:44:46 +0000","Twitterrific for Mac","@JimRoepcke Apple Maps is brutal for that! Searching for Mount Becher yielded garbage until I added "", BC"" at the end. Google got it right.","","","","" +"378643971397787648","378622643735261185","6687652","2013-09-13 22:18:52 +0000","Twitterrific for Mac","@panic Yay! Congrats on shipping. I've been anxious for this version of Prompt.","","","","" "378631709530398720","","","2013-09-13 21:30:08 +0000","OS X","""Here's our API for mobile apps. Just make the request and then put the response HTML on your website."" What?! Die in a fire.","","","","" -"378576924802445312","","","2013-09-13 17:52:27 +0000","Twitterrific for Mac","RT @Horse_iOS: Many plan to sell their iPhone 5s to upgrade to the new iPhone 5s. Demand for iPhone 5ses is high, due to their appealing pl…","378574819262234624","1518266449","2013-09-13 17:44:05 +0000","" -"378567738202931201","378564026370101248","61536181","2013-09-13 17:15:56 +0000","Twitterrific for Mac","@Daverecruit @fogus The problem isn't the question itself, it's that it highlights how the prior statement was complete and utter bullshit.","","","","" -"378545585906659328","378544154147422208","4777951","2013-09-13 15:47:55 +0000","Twitterrific for Mac","@monkbent @SammyWalrusIV Ah, unlocked & SIM-free is sold out in the USA, and we Canadians have looser delivery dates across the board.","","","","" -"378544495815446529","378533678239858689","894911","2013-09-13 15:43:35 +0000","Twitterrific","@JimRoepcke iCloud LOL","","","","" -"378544154147422208","378525290130980864","40273","2013-09-13 15:42:14 +0000","Twitterrific","@monkbent @SammyWalrusIV Same ship date as the others here in Canada. 9/20-9/24. Sold out on one carrier in the USA maybe?","","","","" -"378404569027321856","378390671859531779","15122081","2013-09-13 06:27:34 +0000","Twitterrific","@nerdtalker BIGGEST PIXEL IS BEST PIXEL http://t.co/DB03SGi878","","","","http://www.youtube.com/watch?v=i_APoSfCYwU" -"378304734563545089","378294392504610818","33493","2013-09-12 23:50:51 +0000","Twitterrific for Mac","@peterc *face palm* … did they even ask a single dev? Or just search for 2 seconds and then make something up based on their ""understanding""","","","","" -"378269104936726530","","","2013-09-12 21:29:17 +0000","Twitterrific for Mac","RT @HackerNewsOnion: Self-proclaimed ""visionary"" seeks technical cofounder.","376763816907767808","1263967268","2013-09-08 17:47:48 +0000","" -"378222167034306561","","","2013-09-12 18:22:46 +0000","Twitterrific for Mac","RT @maira: ""This painting is not available in your country."" // new artwork for the @EFF office. http://t.co/ewGjnqOHil","377234645471219713","397570506","2013-09-10 00:58:42 +0000","https://twitter.com/maira/status/377234645471219713/photo/1,https://twitter.com/maira/status/377234645471219713/photo/1" -"378221871784681472","378202642733744128","22196723","2013-09-12 18:21:35 +0000","Twitterrific for Mac","@markkolich ""I don't understand why you lesbians have to be so super lame about this.""","","","","" -"378213476176388096","378184895702786048","806757","2013-09-12 17:48:14 +0000","Twitterrific for Mac","@dshaw Textastic might be a good fit for that. Nice syntax highlighting and all that. I've even written some code with it.","","","","" -"378191110884958208","","","2013-09-12 16:19:21 +0000","Twitterrific","Siri works much better on my 4S with the iOS 7 GM. Animation is much smoother too. Overall pretty happy with it.","","","","" -"378177894591111168","","","2013-09-12 15:26:50 +0000","Twitterrific","So nice to be back in Reeder! Bylines at the top. UI that isn't garish or awkward to use. (Sorry Slow Feeds and Mr Reader.)","","","","" -"378175571810734082","378162584471744512","20904050","2013-09-12 15:17:37 +0000","Twitterrific","@viticci Arguably not small, but the fact that when one app launches another it visually appears from the correct side (left).","","","","" -"378045374180519936","","","2013-09-12 06:40:15 +0000","Twitterrific","RT @Horse_iOS: As we were designing iPhone 5c, we were also designing the case. We designed them together to ensure “hon” shows through one…","377936748183310336","1518266449","2013-09-11 23:28:37 +0000","" -"377879676477509632","377855039995670528","9513832","2013-09-11 19:41:50 +0000","Twitterrific","@rstacruz Dropbox and GitHub.","","","","" -"377877767813365760","377877601588895744","209916925","2013-09-11 19:34:15 +0000","Twitterrific","@rocksaucestudio Oh! Please remove me from the list. Thanks.","","","","" -"377877264379420672","377873380591931392","209916925","2013-09-11 19:32:15 +0000","Twitterrific","@rocksaucestudio ?","","","","" -"377831115836628993","377814440978423808","16472748","2013-09-11 16:28:52 +0000","Twitterrific","@caseyjohnston WTF?! When I handed out resumes at 14 my parents didn't accompany me. Don't see why they would now.","","","","" -"377644781016715264","377643718880530432","74837444","2013-09-11 04:08:26 +0000","Twitterrific","@Badger32d Heh no worries. +"378576924802445312","","","2013-09-13 17:52:27 +0000","Twitterrific for Mac","RT @Horse_iOS: Many plan to sell their iPhone 5s to upgrade to the new iPhone 5s. Demand for iPhone 5ses is high, due to their appealing pl…","378574819262234624","1518266449","2013-09-13 17:44:05 +0000","" +"378567738202931201","378564026370101248","61536181","2013-09-13 17:15:56 +0000","Twitterrific for Mac","@Daverecruit @fogus The problem isn't the question itself, it's that it highlights how the prior statement was complete and utter bullshit.","","","","" +"378545585906659328","378544154147422208","4777951","2013-09-13 15:47:55 +0000","Twitterrific for Mac","@monkbent @SammyWalrusIV Ah, unlocked & SIM-free is sold out in the USA, and we Canadians have looser delivery dates across the board.","","","","" +"378544495815446529","378533678239858689","894911","2013-09-13 15:43:35 +0000","Twitterrific for iOS","@JimRoepcke iCloud LOL","","","","" +"378544154147422208","378525290130980864","40273","2013-09-13 15:42:14 +0000","Twitterrific for iOS","@monkbent @SammyWalrusIV Same ship date as the others here in Canada. 9/20-9/24. Sold out on one carrier in the USA maybe?","","","","" +"378404569027321856","378390671859531779","15122081","2013-09-13 06:27:34 +0000","Twitterrific for iOS","@nerdtalker BIGGEST PIXEL IS BEST PIXEL http://t.co/DB03SGi878","","","","http://www.youtube.com/watch?v=i_APoSfCYwU" +"378304734563545089","378294392504610818","33493","2013-09-12 23:50:51 +0000","Twitterrific for Mac","@peterc *face palm* … did they even ask a single dev? Or just search for 2 seconds and then make something up based on their ""understanding""","","","","" +"378269104936726530","","","2013-09-12 21:29:17 +0000","Twitterrific for Mac","RT @HackerNewsOnion: Self-proclaimed ""visionary"" seeks technical cofounder.","376763816907767808","1263967268","2013-09-08 17:47:48 +0000","" +"378222167034306561","","","2013-09-12 18:22:46 +0000","Twitterrific for Mac","RT @maira: ""This painting is not available in your country."" // new artwork for the @EFF office. http://t.co/ewGjnqOHil","377234645471219713","397570506","2013-09-10 00:58:42 +0000","https://twitter.com/maira/status/377234645471219713/photo/1,https://twitter.com/maira/status/377234645471219713/photo/1" +"378221871784681472","378202642733744128","22196723","2013-09-12 18:21:35 +0000","Twitterrific for Mac","@markkolich ""I don't understand why you lesbians have to be so super lame about this.""","","","","" +"378213476176388096","378184895702786048","806757","2013-09-12 17:48:14 +0000","Twitterrific for Mac","@dshaw Textastic might be a good fit for that. Nice syntax highlighting and all that. I've even written some code with it.","","","","" +"378191110884958208","","","2013-09-12 16:19:21 +0000","Twitterrific for iOS","Siri works much better on my 4S with the iOS 7 GM. Animation is much smoother too. Overall pretty happy with it.","","","","" +"378177894591111168","","","2013-09-12 15:26:50 +0000","Twitterrific for iOS","So nice to be back in Reeder! Bylines at the top. UI that isn't garish or awkward to use. (Sorry Slow Feeds and Mr Reader.)","","","","" +"378175571810734082","378162584471744512","20904050","2013-09-12 15:17:37 +0000","Twitterrific for iOS","@viticci Arguably not small, but the fact that when one app launches another it visually appears from the correct side (left).","","","","" +"378045374180519936","","","2013-09-12 06:40:15 +0000","Twitterrific for iOS","RT @Horse_iOS: As we were designing iPhone 5c, we were also designing the case. We designed them together to ensure “hon” shows through one…","377936748183310336","1518266449","2013-09-11 23:28:37 +0000","" +"377879676477509632","377855039995670528","9513832","2013-09-11 19:41:50 +0000","Twitterrific for iOS","@rstacruz Dropbox and GitHub.","","","","" +"377877767813365760","377877601588895744","209916925","2013-09-11 19:34:15 +0000","Twitterrific for iOS","@rocksaucestudio Oh! Please remove me from the list. Thanks.","","","","" +"377877264379420672","377873380591931392","209916925","2013-09-11 19:32:15 +0000","Twitterrific for iOS","@rocksaucestudio ?","","","","" +"377831115836628993","377814440978423808","16472748","2013-09-11 16:28:52 +0000","Twitterrific for iOS","@caseyjohnston WTF?! When I handed out resumes at 14 my parents didn't accompany me. Don't see why they would now.","","","","" +"377644781016715264","377643718880530432","74837444","2013-09-11 04:08:26 +0000","Twitterrific for iOS","@Badger32d Heh no worries. ""Oh no, I forgot to add -ffast-math to CFLAGS! Better recompile from stage 1...""","","","","" -"377643279518826496","377634010928648193","74837444","2013-09-11 04:02:28 +0000","Twitterrific","@Badger32d zomg what did I win?!","","","","" -"377634857272487937","","","2013-09-11 03:29:00 +0000","Twitterrific","RT @counternotions: One iPhone 5S. Two iPhone 5Ses. +"377643279518826496","377634010928648193","74837444","2013-09-11 04:02:28 +0000","Twitterrific for iOS","@Badger32d zomg what did I win?!","","","","" +"377634857272487937","","","2013-09-11 03:29:00 +0000","Twitterrific for iOS","RT @counternotions: One iPhone 5S. Two iPhone 5Ses. Be civilized.","377615481035051008","19225408","2013-09-11 02:12:01 +0000","" -"377551756085174272","377550153848078336","74837444","2013-09-10 21:58:47 +0000","Twitterrific for Mac","@Badger32d The real problem is that there aren't enough new things to kick the tires on.","","","","" -"377549839250112513","377549285035737088","74837444","2013-09-10 21:51:10 +0000","Twitterrific for Mac","@Badger32d Whatever excuse you can find to use beefier hardware. http://t.co/Kzjhw4UI4z","","","","http://img.ly/wsfJ" -"377549086758825985","377546890947985408","74837444","2013-09-10 21:48:11 +0000","Twitterrific for Mac","@Badger32d Don't do it! Arch is the hotness now anyway.","","","","" -"377504463725948928","377504366762024960","33493","2013-09-10 18:50:52 +0000","Twitterrific for Mac","@peterc Yup, before all sales taxes. http://t.co/OOMAuNOBS7","","","","http://store.apple.com/ca/buy-iphone/iphone5s" -"377504382603890688","377503261533945856","652193","2013-09-10 18:50:33 +0000","Twitterrific for Mac","@parislemon The authentication flow is identical for all iTunes purchases. It would be strange if it didn't work for all of them.","","","","" +"377551756085174272","377550153848078336","74837444","2013-09-10 21:58:47 +0000","Twitterrific for Mac","@Badger32d The real problem is that there aren't enough new things to kick the tires on.","","","","" +"377549839250112513","377549285035737088","74837444","2013-09-10 21:51:10 +0000","Twitterrific for Mac","@Badger32d Whatever excuse you can find to use beefier hardware. http://t.co/Kzjhw4UI4z","","","","http://img.ly/wsfJ" +"377549086758825985","377546890947985408","74837444","2013-09-10 21:48:11 +0000","Twitterrific for Mac","@Badger32d Don't do it! Arch is the hotness now anyway.","","","","" +"377504463725948928","377504366762024960","33493","2013-09-10 18:50:52 +0000","Twitterrific for Mac","@peterc Yup, before all sales taxes. http://t.co/OOMAuNOBS7","","","","http://store.apple.com/ca/buy-iphone/iphone5s" +"377504382603890688","377503261533945856","652193","2013-09-10 18:50:33 +0000","Twitterrific for Mac","@parislemon The authentication flow is identical for all iTunes purchases. It would be strange if it didn't work for all of them.","","","","" "377502716576403456","","","2013-09-10 18:43:55 +0000","OS X","Not this bullshit again. New iPhone prices are 10% higher in Canada than the USA. I thought that was over.","","","","" -"377487552220917760","","","2013-09-10 17:43:40 +0000","Twitterrific for Mac","RT @nerdtalker: 64-bit A7 http://t.co/JSwQrNHwrp","377486129181638656","15122081","2013-09-10 17:38:01 +0000","http://cl.ly/RIx5/image.jpg,http://cl.ly/RIx5/image.jpg" -"377487343348768768","","","2013-09-10 17:42:50 +0000","Twitterrific for Mac","RT @parislemon: Yellow iPhone 5C with a red case results in a hot dog stand theme.","377484599703527424","652193","2013-09-10 17:31:56 +0000","" -"377482346082992128","","","2013-09-10 17:22:59 +0000","Twitterrific for Mac","RT @tapbot_paul: I want a refund!","377481822147313664","18247541","2013-09-10 17:20:54 +0000","" -"376396778154647553","","","2013-09-07 17:29:19 +0000","Twitterrific","Apple won't lose the iPhone 5 if it leaves a gap at $100. The new line up will probably be 5C, 5, and 5S. @marcoarment @caseyliss @siracusa","","","","" -"376214341483102208","","","2013-09-07 05:24:23 +0000","Twitterrific","RT @dsandler: “Dad, how does Santa know if you’ve been bad or good, all the time?” +"377487552220917760","","","2013-09-10 17:43:40 +0000","Twitterrific for Mac","RT @nerdtalker: 64-bit A7 http://t.co/JSwQrNHwrp","377486129181638656","15122081","2013-09-10 17:38:01 +0000","http://cl.ly/RIx5/image.jpg,http://cl.ly/RIx5/image.jpg" +"377487343348768768","","","2013-09-10 17:42:50 +0000","Twitterrific for Mac","RT @parislemon: Yellow iPhone 5C with a red case results in a hot dog stand theme.","377484599703527424","652193","2013-09-10 17:31:56 +0000","" +"377482346082992128","","","2013-09-10 17:22:59 +0000","Twitterrific for Mac","RT @tapbot_paul: I want a refund!","377481822147313664","18247541","2013-09-10 17:20:54 +0000","" +"376396778154647553","","","2013-09-07 17:29:19 +0000","Twitterrific for iOS","Apple won't lose the iPhone 5 if it leaves a gap at $100. The new line up will probably be 5C, 5, and 5S. @marcoarment @caseyliss @siracusa","","","","" +"376214341483102208","","","2013-09-07 05:24:23 +0000","Twitterrific for iOS","RT @dsandler: “Dad, how does Santa know if you’ve been bad or good, all the time?” “Backdoored crypto protocols, son.”","376201587154092032","656863","2013-09-07 04:33:42 +0000","" -"376188046032388096","","","2013-09-07 03:39:54 +0000","Twitterrific","RT @lorenb: Got a generic recruitment spam email from @scopely. Amused.","376055312949972992","9943672","2013-09-06 18:52:28 +0000","" -"375730797061210112","375710368300937216","15122081","2013-09-05 21:22:57 +0000","Twitterrific for Mac","@nerdtalker Curse Super Hexagon. I seem to top out at 58 seconds & change.","","","","" -"375460159192985601","","","2013-09-05 03:27:32 +0000","Twitterrific","RT @BenedictEvans: So did Samsung announce a wablet, a wone or a phatch?","375373804278915072","1236101","2013-09-04 21:44:23 +0000","" -"375305779172999168","375304178987307008","15122081","2013-09-04 17:14:05 +0000","Twitterrific for Mac","@nerdtalker dat latency","","","","" -"375301874234040320","375287761437077504","30968081","2013-09-04 16:58:34 +0000","Twitterrific for Mac","@domenic @indutny I'm going to comment all of my JS that way from now on. +"376188046032388096","","","2013-09-07 03:39:54 +0000","Twitterrific for iOS","RT @lorenb: Got a generic recruitment spam email from @scopely. Amused.","376055312949972992","9943672","2013-09-06 18:52:28 +0000","" +"375730797061210112","375710368300937216","15122081","2013-09-05 21:22:57 +0000","Twitterrific for Mac","@nerdtalker Curse Super Hexagon. I seem to top out at 58 seconds & change.","","","","" +"375460159192985601","","","2013-09-05 03:27:32 +0000","Twitterrific for iOS","RT @BenedictEvans: So did Samsung announce a wablet, a wone or a phatch?","375373804278915072","1236101","2013-09-04 21:44:23 +0000","" +"375305779172999168","375304178987307008","15122081","2013-09-04 17:14:05 +0000","Twitterrific for Mac","@nerdtalker dat latency","","","","" +"375301874234040320","375287761437077504","30968081","2013-09-04 16:58:34 +0000","Twitterrific for Mac","@domenic @indutny I'm going to comment all of my JS that way from now on. thing.map(fun) <!-- zomg it's a mrap!","","","","" -"375280736867065856","375263688787111936","16686076","2013-09-04 15:34:34 +0000","Twitterrific","@getify Amazing! Lives up to the promise.","","","","" -"375280363066494976","375259102357618688","40273","2013-09-04 15:33:05 +0000","Twitterrific","@monkbent I can easily and cheaply buy fizzy water. Without AeroPress I'd need an expensive machine to make a similar beverage at home.","","","","" -"375103365039939585","","","2013-09-04 03:49:45 +0000","Twitterrific","RT @siracusa: @Jury I'm selecting the pint of gelato in the freezer for update. Deal with it.","375068856269950976","636923","2013-09-04 01:32:38 +0000","" -"375103355992817665","","","2013-09-04 03:49:43 +0000","Twitterrific","RT @Jury: Pet peeve: People who deadlock shared resources in real life.","375067339806359552","10754282","2013-09-04 01:26:36 +0000","" -"375026335501938688","","1517226020","2013-09-03 22:43:40 +0000","Twitterrific for Mac","@InstapaperHelp Specifically, it should save the body of the currently viewed article instead of the entire page itself. That'd be sweet! :)","","","","" -"375026113593872385","","1517226020","2013-09-03 22:42:47 +0000","Twitterrific for Mac","@InstapaperHelp Do you take feature requests here? I'd like the bookmarklet to work w/ @feedbin as it used to work w/ Google Reader.","","","","" -"374940728796798976","","","2013-09-03 17:03:30 +0000","Twitterrific for Mac","RT @pengwynn: Love this little git-conflicts script from @rtomayko https://t.co/ZQAeMSjclQ","374927892657881090","14100886","2013-09-03 16:12:30 +0000","https://github.com/pengwynn/dotfiles/blob/master/bin/git-conflicts,https://github.com/pengwynn/dotfiles/blob/master/bin/git-conflicts" -"374940601566781441","374927892657881090","14100886","2013-09-03 17:03:00 +0000","Twitterrific for Mac","@pengwynn @rtomayko Yoink!","","","","" -"374927083471794176","374920924698390528","18247541","2013-09-03 16:09:17 +0000","Twitterrific","@tapbot_paul I'll speak with Tim about it.","","","","" -"374926653836648448","374919884531982337","46023","2013-09-03 16:07:34 +0000","Twitterrific","@ejacqui Yes, on one of my machines. For months now.","","","","" -"374925170395213824","374903682422149120","16686076","2013-09-03 16:01:41 +0000","Twitterrific","@getify With such poor naming and improper formatting, who cares about the syntax?","","","","" -"374716408652787713","374660443287351296","14231571","2013-09-03 02:12:08 +0000","Twitterrific","@marcoarment Sounds like a useful thing to share.","","","","" -"374591129775140864","374547029197746178","18247541","2013-09-02 17:54:19 +0000","Twitterrific","@tapbot_paul Invites tomorrow with final beta / RC, event on the 10th with GM, pre-orders Friday, in stores and shipping the next Friday.","","","","" -"374202068421967872","374195430742962176","894911","2013-09-01 16:08:20 +0000","Twitterrific","@JimRoepcke All the best! It will be great.","","","","" -"373960877747089408","","","2013-09-01 00:09:55 +0000","Twitterrific","RT @reederapp: Submitted. Finally.","373917751100067840","79033767","2013-08-31 21:18:33 +0000","" -"373661651909627904","373651956805271552","29255412","2013-08-31 04:20:54 +0000","Twitterrific","@tjholowaychuk Looks nice! You accidentally a word in Metadata :)","","","","" -"373660347443318784","","","2013-08-31 04:15:43 +0000","Twitterrific","RT @danielpunkass: The secret to Twitter is always take the high road and avoid inflammatory comments. +"375280736867065856","375263688787111936","16686076","2013-09-04 15:34:34 +0000","Twitterrific for iOS","@getify Amazing! Lives up to the promise.","","","","" +"375280363066494976","375259102357618688","40273","2013-09-04 15:33:05 +0000","Twitterrific for iOS","@monkbent I can easily and cheaply buy fizzy water. Without AeroPress I'd need an expensive machine to make a similar beverage at home.","","","","" +"375103365039939585","","","2013-09-04 03:49:45 +0000","Twitterrific for iOS","RT @siracusa: @Jury I'm selecting the pint of gelato in the freezer for update. Deal with it.","375068856269950976","636923","2013-09-04 01:32:38 +0000","" +"375103355992817665","","","2013-09-04 03:49:43 +0000","Twitterrific for iOS","RT @Jury: Pet peeve: People who deadlock shared resources in real life.","375067339806359552","10754282","2013-09-04 01:26:36 +0000","" +"375026335501938688","","1517226020","2013-09-03 22:43:40 +0000","Twitterrific for Mac","@InstapaperHelp Specifically, it should save the body of the currently viewed article instead of the entire page itself. That'd be sweet! :)","","","","" +"375026113593872385","","1517226020","2013-09-03 22:42:47 +0000","Twitterrific for Mac","@InstapaperHelp Do you take feature requests here? I'd like the bookmarklet to work w/ @feedbin as it used to work w/ Google Reader.","","","","" +"374940728796798976","","","2013-09-03 17:03:30 +0000","Twitterrific for Mac","RT @pengwynn: Love this little git-conflicts script from @rtomayko https://t.co/ZQAeMSjclQ","374927892657881090","14100886","2013-09-03 16:12:30 +0000","https://github.com/pengwynn/dotfiles/blob/master/bin/git-conflicts,https://github.com/pengwynn/dotfiles/blob/master/bin/git-conflicts" +"374940601566781441","374927892657881090","14100886","2013-09-03 17:03:00 +0000","Twitterrific for Mac","@pengwynn @rtomayko Yoink!","","","","" +"374927083471794176","374920924698390528","18247541","2013-09-03 16:09:17 +0000","Twitterrific for iOS","@tapbot_paul I'll speak with Tim about it.","","","","" +"374926653836648448","374919884531982337","46023","2013-09-03 16:07:34 +0000","Twitterrific for iOS","@ejacqui Yes, on one of my machines. For months now.","","","","" +"374925170395213824","374903682422149120","16686076","2013-09-03 16:01:41 +0000","Twitterrific for iOS","@getify With such poor naming and improper formatting, who cares about the syntax?","","","","" +"374716408652787713","374660443287351296","14231571","2013-09-03 02:12:08 +0000","Twitterrific for iOS","@marcoarment Sounds like a useful thing to share.","","","","" +"374591129775140864","374547029197746178","18247541","2013-09-02 17:54:19 +0000","Twitterrific for iOS","@tapbot_paul Invites tomorrow with final beta / RC, event on the 10th with GM, pre-orders Friday, in stores and shipping the next Friday.","","","","" +"374202068421967872","374195430742962176","894911","2013-09-01 16:08:20 +0000","Twitterrific for iOS","@JimRoepcke All the best! It will be great.","","","","" +"373960877747089408","","","2013-09-01 00:09:55 +0000","Twitterrific for iOS","RT @reederapp: Submitted. Finally.","373917751100067840","79033767","2013-08-31 21:18:33 +0000","" +"373661651909627904","373651956805271552","29255412","2013-08-31 04:20:54 +0000","Twitterrific for iOS","@tjholowaychuk Looks nice! You accidentally a word in Metadata :)","","","","" +"373660347443318784","","","2013-08-31 04:15:43 +0000","Twitterrific for iOS","RT @danielpunkass: The secret to Twitter is always take the high road and avoid inflammatory comments. After you’ve had your say.","373643237350993920","666043","2013-08-31 03:07:44 +0000","" "373638412642689024","","","2013-08-31 02:48:34 +0000","Instapaper","Advances in JavaScript Performance in IE10 (via Instapaper) http://t.co/SWy8OFucKj","","","","http://blogs.msdn.com/b/ie/archive/2012/06/13/advances-in-javascript-performance-in-ie10-and-windows-8.aspx" -"373633234476601344","","","2013-08-31 02:27:59 +0000","Twitterrific","RT @Horse_iOS: git reset head --hard -f origin master --head --reallyhard --just fucking undo the stupid shit i did","373610296046141440","1518266449","2013-08-31 00:56:50 +0000","" -"373559868528934912","","","2013-08-30 21:36:27 +0000","Twitterrific for Mac","RT @sdw: Church releases bald eagle indoors, which slams into a window as crowd yells 'USA! USA!'. +"373633234476601344","","","2013-08-31 02:27:59 +0000","Twitterrific for iOS","RT @Horse_iOS: git reset head --hard -f origin master --head --reallyhard --just fucking undo the stupid shit i did","373610296046141440","1518266449","2013-08-31 00:56:50 +0000","" +"373559868528934912","","","2013-08-30 21:36:27 +0000","Twitterrific for Mac","RT @sdw: Church releases bald eagle indoors, which slams into a window as crowd yells 'USA! USA!'. Can't make this shit up. http://t.co/aD…","373504285436166144","6503412","2013-08-30 17:55:35 +0000","http://www.youtube.com/watch?v=bhITpTtG888" -"373193221603467265","","","2013-08-29 21:19:32 +0000","Twitterrific","RT @nerdtalker: .@owenthomas @panzer water is wet. iOS betas expire. A panda fabricating and leaking the iPhone 6 would be a phenomenon.","373181523010150400","15122081","2013-08-29 20:33:03 +0000","" -"373176105257025536","373161897895284736","15122081","2013-08-29 20:11:31 +0000","Twitterrific for Mac","@nerdtalker @reneritchie @PenLlawen @flargh I sometimes pack a keyboard for sysadmin emergencies when I don't feel like lugging my 15"" MBP.","","","","" -"372910514608668672","372885368762150912","15122081","2013-08-29 02:36:09 +0000","Twitterrific","@nerdtalker I received a few of those. Until you look closely they are indeed convincing.","","","","" +"373193221603467265","","","2013-08-29 21:19:32 +0000","Twitterrific for iOS","RT @nerdtalker: .@owenthomas @panzer water is wet. iOS betas expire. A panda fabricating and leaking the iPhone 6 would be a phenomenon.","373181523010150400","15122081","2013-08-29 20:33:03 +0000","" +"373176105257025536","373161897895284736","15122081","2013-08-29 20:11:31 +0000","Twitterrific for Mac","@nerdtalker @reneritchie @PenLlawen @flargh I sometimes pack a keyboard for sysadmin emergencies when I don't feel like lugging my 15"" MBP.","","","","" +"372910514608668672","372885368762150912","15122081","2013-08-29 02:36:09 +0000","Twitterrific for iOS","@nerdtalker I received a few of those. Until you look closely they are indeed convincing.","","","","" "372428077520805888","","","2013-08-27 18:39:07 +0000","OS X","I love that @feedbin is open source now. Makes me feel like I picked a good service to support!","","","","" -"372212307738116097","","","2013-08-27 04:21:44 +0000","Twitterrific","South Park S12E02 ""Britney's New Look"" is relevant. +"372212307738116097","","","2013-08-27 04:21:44 +0000","Twitterrific for iOS","South Park S12E02 ""Britney's New Look"" is relevant. https://t.co/SblyCaQTrP","","","","https://itunes.apple.com/ca/tv-season/britneys-new-look/id274098327?i=276810437" -"372066602688069632","","","2013-08-26 18:42:45 +0000","Twitterrific for Mac","RT @wwwtxt: I hope Madonna had fun. She had her breasts groped three times by male dancers, plus she had them running hands up under her dr…","372063452388683776","207756340","2013-08-26 18:30:14 +0000","" -"372066311615967232","","","2013-08-26 18:41:36 +0000","Twitterrific for Mac","RT @wwwtxt: Was it just me or did the VMAs last night suck? ☯92SEP","372062674085236736","207756340","2013-08-26 18:27:08 +0000","" -"372038433792733184","372036371671568385","13567","2013-08-26 16:50:49 +0000","Twitterrific for Mac","@codepo8 @getify Funnily enough, even in Chrome… http://t.co/Pfwz9oAOHx","","","","http://img.ly/whCc" -"371731847136292864","","","2013-08-25 20:32:33 +0000","Twitterrific","RT @ejacqui: Drivers who continually pass you on the highway just to get in front and then slow down over and over.","371728426190635008","46023","2013-08-25 20:18:57 +0000","" -"371731798738206720","","","2013-08-25 20:32:21 +0000","Twitterrific","RT @ejacqui: Cyclists who run reds to pass everyone else, but ride so slowly that everyone has to pass them over and over between every lig…","371656566589509633","46023","2013-08-25 15:33:25 +0000","" -"371664722740797441","371659440153309186","5905672","2013-08-25 16:05:49 +0000","Twitterrific","@danbenjamin Fair enough!","","","","" -"371658305120112640","371639107258048512","5905672","2013-08-25 15:40:19 +0000","Twitterrific","@danbenjamin Did you find a good RSS reader? Press is nice but it's no Reeder. I use Tweetings and it's ok. It's no Twitteriffic or Tweetbot","","","","" -"371484466243309568","","","2013-08-25 04:09:33 +0000","Twitterrific","RT @mrgan: My best #blackbar tip: if you get seriously stuck, loudly and angrily declare that this is freakin' IMPOSSIBLE. You'll immediate…","371478284736790529","35293","2013-08-25 03:44:59 +0000","" -"371017081338073088","371014885901365248","14315117","2013-08-23 21:12:20 +0000","Twitterrific for Mac","@dainerose Typical. He knows where your attention is. https://t.co/GnFeR970V9 https://t.co/824rtkOGyW","","","","https://picasaweb.google.com/113145150458563580631/LittleBeej#5661542922058205618,https://picasaweb.google.com/113145150458563580631/LittleBeej#5665758381384847650" -"371013067082973184","371011953524621312","4777951","2013-08-23 20:56:22 +0000","Twitterrific for Mac","@zugzugglug @markkolich @cmsimike Damn, never mind! I was mistaken about how zsh does it. It's not up to date in all shells like I thought.","","","","" -"371012187654873088","371011953524621312","4777951","2013-08-23 20:52:53 +0000","Twitterrific for Mac","@zugzugglug @markkolich @cmsimike Combined with Dropbox my shell history is always everywhere, like synced browser history in Chrome/Fx.","","","","" -"371011953524621312","370783906540179456","14802451","2013-08-23 20:51:57 +0000","Twitterrific for Mac","@zugzugglug @markkolich @cmsimike Fuck it, I'll be ""that guy"" and smugly say that zsh does this better. https://t.co/y7ufeiXZwS","","","","https://github.com/samsonjs/config/blob/master/zsh/zshrc#L108-L120" -"370998059364122624","370990829076111360","13696102","2013-08-23 19:56:44 +0000","Twitterrific for Mac","@indexzero Do any solutions entirely prevent mixing presentation & style? If so, are they any good?","","","","" -"370960975588900865","370960243057885186","14272162","2013-08-23 17:29:23 +0000","Twitterrific for Mac","@jdalton Heh, I was waiting for that! I haven't made the lo-dash jump yet but have had my eye on it. Point is that ES5 can still use help.","","","","" -"370949610316918785","370935405035532288","14165170","2013-08-23 16:44:13 +0000","Twitterrific for Mac","@binarybits @DrPizza Article states it: ""touting mobile and tablet computing ideas for years"". MS failed to execute and succeed there.","","","","" -"370947912705900545","","","2013-08-23 16:37:28 +0000","Twitterrific for Mac","RT @wwwtxt: I reckon the best person to play Batman is Tom Selleck. He's tall, muscular, and can play the part of a playboy very well. ☯89M…","370941278458236928","207756340","2013-08-23 16:11:07 +0000","" -"370947796532084736","","","2013-08-23 16:37:01 +0000","Twitterrific for Mac","RT @wwwtxt: Michael Keaton. A guy with no chin and the voice of Mickey Mouse says “I'm Batman” and the bad guy is supposed to be scared? ☯8…","370940257422032896","207756340","2013-08-23 16:07:03 +0000","" -"370947601014603776","370937990769430528","14272162","2013-08-23 16:36:14 +0000","Twitterrific for Mac","@jdalton When someone asks me how to iterate over an object in node I say ""underscore"" without thinking about it.","","","","" -"370694935390875648","","","2013-08-22 23:52:14 +0000","Twitterrific for Mac","@MikeGriffin_ @theloop @jdalrymple Wait, after antenna gate you still trust Consumer Reports? Hmm… I trust @anandshimpi way more than CR.","","","","" -"370573071473577985","370566310012276736","22196723","2013-08-22 15:47:59 +0000","Twitterrific","@markkolich Ah, that would be good. You could filter it periodically. zsh can only ignore consecutive dupes.","","","","" -"370565164375883777","370089793842978817","14802451","2013-08-22 15:16:34 +0000","Twitterrific","@zugzugglug @markkolich @cmsimike I keep 2 million lines of shell history (just 5-6 MB in 7 years). I still have svn commands in there.","","","","" -"370336247928983552","","","2013-08-22 00:06:56 +0000","Twitterrific","RT @brycebot: @TooTallNate cause infinite recursion until you blow the stack","370332008724963328","28501846","2013-08-21 23:50:05 +0000","" -"370336240333099008","","","2013-08-22 00:06:54 +0000","Twitterrific","RT @TooTallNate: How to forcibly throw an ""uncaught exception"" in JavaScript?","370323410707947520","277724842","2013-08-21 23:15:56 +0000","" -"370046593312894976","370022391230889985","29255412","2013-08-21 04:55:57 +0000","Twitterrific","@tjholowaychuk @izs Secret sauce: https://t.co/XEOeWXLRcr","","","","https://npmjs.org/package/abbrev" -"369957573740355585","369956701812051969","14864447","2013-08-20 23:02:13 +0000","Twitterrific for Mac","@bryan_kyle Heh, I just mean if they handle it at all it should do something instead of nothing. Handle and do something or ignore entirely.","","","","" -"369956509582495745","369949106443390976","14864447","2013-08-20 22:58:00 +0000","Twitterrific for Mac","@bryan_kyle I expected it to open the link in my default browser. I feel like they should do something even if it's a nonsensical request.","","","","" -"369927327225876480","369926973339885568","35293","2013-08-20 21:02:02 +0000","Twitterrific for Mac","@mrgan What?! Please don't tell me that's a thing now...","","","","" -"369917248061722624","369916135451279360","14864447","2013-08-20 20:21:59 +0000","Twitterrific for Mac","@bryan_kyle It opens the 1Password 4 beta on my Mac too, but nothing happens.","","","","" -"369917183687524354","369916135451279360","14864447","2013-08-20 20:21:43 +0000","Twitterrific for Mac","@bryan_kyle I created it in Safari on my Mac and it was promptly synced to my phone. It works!","","","","" -"369914870554050560","","","2013-08-20 20:12:32 +0000","Twitterrific for Mac","RT @bryan_kyle: How to Quickly Open a Site in 1Password on iOS - 1Password for iOS by Agilebits is a great app that you can... http://t.co/…","369890119891042304","14864447","2013-08-20 18:34:11 +0000","http://tmblr.co/ZjHKRysn2wqn" -"369914840652865536","369890119891042304","14864447","2013-08-20 20:12:25 +0000","Twitterrific for Mac","@bryan_kyle Nice write-up! I didn't know about their custom URL schemes.","","","","" -"369845379014987776","369726561798205440","894911","2013-08-20 15:36:24 +0000","Twitterrific","@JimRoepcke Heh it's a bug. Possibly in the iOS beta. It leaks to my opponents devices too.","","","","" -"368805388130328576","","","2013-08-17 18:43:51 +0000","Twitterrific","New Letterpress feature: doubles. @atebits http://t.co/aHgPaY9GHP","","","","https://twitter.com/_sjs/status/368805388130328576/photo/1" -"368780233572225027","","","2013-08-17 17:03:53 +0000","Twitterrific","The 80s are cool again, right? +"372066602688069632","","","2013-08-26 18:42:45 +0000","Twitterrific for Mac","RT @wwwtxt: I hope Madonna had fun. She had her breasts groped three times by male dancers, plus she had them running hands up under her dr…","372063452388683776","207756340","2013-08-26 18:30:14 +0000","" +"372066311615967232","","","2013-08-26 18:41:36 +0000","Twitterrific for Mac","RT @wwwtxt: Was it just me or did the VMAs last night suck? ☯92SEP","372062674085236736","207756340","2013-08-26 18:27:08 +0000","" +"372038433792733184","372036371671568385","13567","2013-08-26 16:50:49 +0000","Twitterrific for Mac","@codepo8 @getify Funnily enough, even in Chrome… http://t.co/Pfwz9oAOHx","","","","http://img.ly/whCc" +"371731847136292864","","","2013-08-25 20:32:33 +0000","Twitterrific for iOS","RT @ejacqui: Drivers who continually pass you on the highway just to get in front and then slow down over and over.","371728426190635008","46023","2013-08-25 20:18:57 +0000","" +"371731798738206720","","","2013-08-25 20:32:21 +0000","Twitterrific for iOS","RT @ejacqui: Cyclists who run reds to pass everyone else, but ride so slowly that everyone has to pass them over and over between every lig…","371656566589509633","46023","2013-08-25 15:33:25 +0000","" +"371664722740797441","371659440153309186","5905672","2013-08-25 16:05:49 +0000","Twitterrific for iOS","@danbenjamin Fair enough!","","","","" +"371658305120112640","371639107258048512","5905672","2013-08-25 15:40:19 +0000","Twitterrific for iOS","@danbenjamin Did you find a good RSS reader? Press is nice but it's no Reeder. I use Tweetings and it's ok. It's no Twitteriffic or Tweetbot","","","","" +"371484466243309568","","","2013-08-25 04:09:33 +0000","Twitterrific for iOS","RT @mrgan: My best #blackbar tip: if you get seriously stuck, loudly and angrily declare that this is freakin' IMPOSSIBLE. You'll immediate…","371478284736790529","35293","2013-08-25 03:44:59 +0000","" +"371017081338073088","371014885901365248","14315117","2013-08-23 21:12:20 +0000","Twitterrific for Mac","@dainerose Typical. He knows where your attention is. https://t.co/GnFeR970V9 https://t.co/824rtkOGyW","","","","https://picasaweb.google.com/113145150458563580631/LittleBeej#5661542922058205618,https://picasaweb.google.com/113145150458563580631/LittleBeej#5665758381384847650" +"371013067082973184","371011953524621312","4777951","2013-08-23 20:56:22 +0000","Twitterrific for Mac","@zugzugglug @markkolich @cmsimike Damn, never mind! I was mistaken about how zsh does it. It's not up to date in all shells like I thought.","","","","" +"371012187654873088","371011953524621312","4777951","2013-08-23 20:52:53 +0000","Twitterrific for Mac","@zugzugglug @markkolich @cmsimike Combined with Dropbox my shell history is always everywhere, like synced browser history in Chrome/Fx.","","","","" +"371011953524621312","370783906540179456","14802451","2013-08-23 20:51:57 +0000","Twitterrific for Mac","@zugzugglug @markkolich @cmsimike Fuck it, I'll be ""that guy"" and smugly say that zsh does this better. https://t.co/y7ufeiXZwS","","","","https://github.com/samsonjs/config/blob/master/zsh/zshrc#L108-L120" +"370998059364122624","370990829076111360","13696102","2013-08-23 19:56:44 +0000","Twitterrific for Mac","@indexzero Do any solutions entirely prevent mixing presentation & style? If so, are they any good?","","","","" +"370960975588900865","370960243057885186","14272162","2013-08-23 17:29:23 +0000","Twitterrific for Mac","@jdalton Heh, I was waiting for that! I haven't made the lo-dash jump yet but have had my eye on it. Point is that ES5 can still use help.","","","","" +"370949610316918785","370935405035532288","14165170","2013-08-23 16:44:13 +0000","Twitterrific for Mac","@binarybits @DrPizza Article states it: ""touting mobile and tablet computing ideas for years"". MS failed to execute and succeed there.","","","","" +"370947912705900545","","","2013-08-23 16:37:28 +0000","Twitterrific for Mac","RT @wwwtxt: I reckon the best person to play Batman is Tom Selleck. He's tall, muscular, and can play the part of a playboy very well. ☯89M…","370941278458236928","207756340","2013-08-23 16:11:07 +0000","" +"370947796532084736","","","2013-08-23 16:37:01 +0000","Twitterrific for Mac","RT @wwwtxt: Michael Keaton. A guy with no chin and the voice of Mickey Mouse says “I'm Batman” and the bad guy is supposed to be scared? ☯8…","370940257422032896","207756340","2013-08-23 16:07:03 +0000","" +"370947601014603776","370937990769430528","14272162","2013-08-23 16:36:14 +0000","Twitterrific for Mac","@jdalton When someone asks me how to iterate over an object in node I say ""underscore"" without thinking about it.","","","","" +"370694935390875648","","","2013-08-22 23:52:14 +0000","Twitterrific for Mac","@MikeGriffin_ @theloop @jdalrymple Wait, after antenna gate you still trust Consumer Reports? Hmm… I trust @anandshimpi way more than CR.","","","","" +"370573071473577985","370566310012276736","22196723","2013-08-22 15:47:59 +0000","Twitterrific for iOS","@markkolich Ah, that would be good. You could filter it periodically. zsh can only ignore consecutive dupes.","","","","" +"370565164375883777","370089793842978817","14802451","2013-08-22 15:16:34 +0000","Twitterrific for iOS","@zugzugglug @markkolich @cmsimike I keep 2 million lines of shell history (just 5-6 MB in 7 years). I still have svn commands in there.","","","","" +"370336247928983552","","","2013-08-22 00:06:56 +0000","Twitterrific for iOS","RT @brycebot: @TooTallNate cause infinite recursion until you blow the stack","370332008724963328","28501846","2013-08-21 23:50:05 +0000","" +"370336240333099008","","","2013-08-22 00:06:54 +0000","Twitterrific for iOS","RT @TooTallNate: How to forcibly throw an ""uncaught exception"" in JavaScript?","370323410707947520","277724842","2013-08-21 23:15:56 +0000","" +"370046593312894976","370022391230889985","29255412","2013-08-21 04:55:57 +0000","Twitterrific for iOS","@tjholowaychuk @izs Secret sauce: https://t.co/XEOeWXLRcr","","","","https://npmjs.org/package/abbrev" +"369957573740355585","369956701812051969","14864447","2013-08-20 23:02:13 +0000","Twitterrific for Mac","@bryan_kyle Heh, I just mean if they handle it at all it should do something instead of nothing. Handle and do something or ignore entirely.","","","","" +"369956509582495745","369949106443390976","14864447","2013-08-20 22:58:00 +0000","Twitterrific for Mac","@bryan_kyle I expected it to open the link in my default browser. I feel like they should do something even if it's a nonsensical request.","","","","" +"369927327225876480","369926973339885568","35293","2013-08-20 21:02:02 +0000","Twitterrific for Mac","@mrgan What?! Please don't tell me that's a thing now...","","","","" +"369917248061722624","369916135451279360","14864447","2013-08-20 20:21:59 +0000","Twitterrific for Mac","@bryan_kyle It opens the 1Password 4 beta on my Mac too, but nothing happens.","","","","" +"369917183687524354","369916135451279360","14864447","2013-08-20 20:21:43 +0000","Twitterrific for Mac","@bryan_kyle I created it in Safari on my Mac and it was promptly synced to my phone. It works!","","","","" +"369914870554050560","","","2013-08-20 20:12:32 +0000","Twitterrific for Mac","RT @bryan_kyle: How to Quickly Open a Site in 1Password on iOS - 1Password for iOS by Agilebits is a great app that you can... http://t.co/…","369890119891042304","14864447","2013-08-20 18:34:11 +0000","http://tmblr.co/ZjHKRysn2wqn" +"369914840652865536","369890119891042304","14864447","2013-08-20 20:12:25 +0000","Twitterrific for Mac","@bryan_kyle Nice write-up! I didn't know about their custom URL schemes.","","","","" +"369845379014987776","369726561798205440","894911","2013-08-20 15:36:24 +0000","Twitterrific for iOS","@JimRoepcke Heh it's a bug. Possibly in the iOS beta. It leaks to my opponents devices too.","","","","" +"368805388130328576","","","2013-08-17 18:43:51 +0000","Twitterrific for iOS","New Letterpress feature: doubles. @atebits http://t.co/aHgPaY9GHP","","","","https://twitter.com/_sjs/status/368805388130328576/photo/1" +"368780233572225027","","","2013-08-17 17:03:53 +0000","Twitterrific for iOS","The 80s are cool again, right? https://t.co/WHcjlZ0bIt http://t.co/CPEqpQuqRv","","","","https://itunes.apple.com/ca/album/somebodys-watching-me-single/id363292267?i=363292280,http://html5.grooveshark.com/#!/search/Rockwell%20somebody's%20watching%20me" -"368584133041061888","","","2013-08-17 04:04:39 +0000","Twitterrific","RT @mraleph: looking at another microbenchmark http://t.co/zc8jL73XXs","368535700972392448","53010195","2013-08-17 00:52:12 +0000","http://mrale.ph/blog/2013/08/14/hidden-classes-vs-jsperf.html,http://mrale.ph/blog/2013/08/14/hidden-classes-vs-jsperf.html" -"368108705796984832","368091514808713216","28265820","2013-08-15 20:35:29 +0000","Twitterrific for Mac","@isoiphone @TELUS @ShawInfo Here in BC Telus has fibre but doesn't compete with Shaw on bandwidth, so Shaw has no motivation to improve.","","","","" -"367314086393946113","367257911325503488","33493","2013-08-13 15:57:57 +0000","Twitterrific","@peterc @Stammy Android is a good OS but I still can't find apps for Twitter, http://t.co/Zlj3iXPJLz, and RSS that don't annoy me.","","","","http://app.net" +"368584133041061888","","","2013-08-17 04:04:39 +0000","Twitterrific for iOS","RT @mraleph: looking at another microbenchmark http://t.co/zc8jL73XXs","368535700972392448","53010195","2013-08-17 00:52:12 +0000","http://mrale.ph/blog/2013/08/14/hidden-classes-vs-jsperf.html,http://mrale.ph/blog/2013/08/14/hidden-classes-vs-jsperf.html" +"368108705796984832","368091514808713216","28265820","2013-08-15 20:35:29 +0000","Twitterrific for Mac","@isoiphone @TELUS @ShawInfo Here in BC Telus has fibre but doesn't compete with Shaw on bandwidth, so Shaw has no motivation to improve.","","","","" +"367314086393946113","367257911325503488","33493","2013-08-13 15:57:57 +0000","Twitterrific for iOS","@peterc @Stammy Android is a good OS but I still can't find apps for Twitter, http://t.co/Zlj3iXPJLz, and RSS that don't annoy me.","","","","http://app.net" "367136731218198528","","","2013-08-13 04:13:12 +0000","Instapaper","Straight-up interpolation – James Padolsey http://t.co/FZ7Dz7vZ4B (via Instapaper)","","","","http://james.padolsey.com/javascript/straight-up-interpolation/" -"367124603061010433","367124205331939330","4777951","2013-08-13 03:25:00 +0000","Twitterrific","@panic Oops, I should have read your mentions first. Looks like a known issue.","","","","" -"367124205331939330","","6687652","2013-08-13 03:23:26 +0000","Twitterrific","@panic The control key on my Logitech UltraThin keyboard doesn't work in Prompt on [REDACTED]. Known issue?","","","","" -"366278104265654274","","","2013-08-10 19:21:19 +0000","Twitterrific","RT @mraleph: jokes about JITs as a high tech currency +"367124603061010433","367124205331939330","4777951","2013-08-13 03:25:00 +0000","Twitterrific for iOS","@panic Oops, I should have read your mentions first. Looks like a known issue.","","","","" +"367124205331939330","","6687652","2013-08-13 03:23:26 +0000","Twitterrific for iOS","@panic The control key on my Logitech UltraThin keyboard doesn't work in Prompt on [REDACTED]. Known issue?","","","","" +"366278104265654274","","","2013-08-10 19:21:19 +0000","Twitterrific for iOS","RT @mraleph: jokes about JITs as a high tech currency provides more security than bitcoin","366272302633070592","53010195","2013-08-10 18:58:16 +0000","" -"366245765133246465","366241516538175489","20079975","2013-08-10 17:12:49 +0000","Twitterrific","@polotek I use Daisy Disk or Space Gremlin to find large folders and then ship old data to AWS Glacier with Arq. Still can't fit in 128 GB.","","","","" -"365533342029975552","365533188262604800","8549992","2013-08-08 18:01:54 +0000","Twitterrific for Mac","@pdenya Wow, you have users on 4.3? Can you share a rough % estimate?","","","","" -"365532784606973952","365516401542307841","8549992","2013-08-08 17:59:41 +0000","Twitterrific for Mac","@pdenya I think everyone is abandoning 4.3 at this point. Why bother?","","","","" -"365257822306451457","365241543256317952","2262091","2013-08-07 23:47:05 +0000","Twitterrific for Mac","@ajordens @techvibes The fact that The Big Three came together here confirms my suspicion that they regularly collude and fix prices.","","","","" -"365172841106247682","365140341235527682","13818902","2013-08-07 18:09:24 +0000","Twitterrific","@aaronheckmann Agreed, it is a weird idea.","","","","" -"365135195797594113","365116796816199681","13818902","2013-08-07 15:39:49 +0000","Twitterrific","@aaronheckmann I think it's a clever way to soften the blow of the change. Distract and then change for good. Old logo is already forgotten.","","","","" -"363474815866257408","363335984676483072","894911","2013-08-03 01:42:03 +0000","Twitterrific","@JimRoepcke Looks Lisp or Rubyish. I like it.","","","","" -"363065224829472768","","16240267","2013-08-01 22:34:29 +0000","Twitterrific for Mac","@instapaper Did something change with emailing links? I now get the plain text link itself instead of Instapaper fetching the link.","","","","" -"362983658107318274","","","2013-08-01 17:10:22 +0000","Twitterrific for Mac","RT @raganwald: I've almost completely reversed my programming style: ""Leaky Greenspunned Abstractions"" http://t.co/9QB00lshwn","362968393827094529","18137723","2013-08-01 16:09:43 +0000","http://raganwald.com/2013/08/01/leaky-greenspunned-abstractions.html,http://raganwald.com/2013/08/01/leaky-greenspunned-abstractions.html" -"362442468064624642","","636923","2013-07-31 05:19:52 +0000","Tweetings for Android Holo","@siracusa @danbenjamin Look right into the eyes of your sweetie. +"366245765133246465","366241516538175489","20079975","2013-08-10 17:12:49 +0000","Twitterrific for iOS","@polotek I use Daisy Disk or Space Gremlin to find large folders and then ship old data to AWS Glacier with Arq. Still can't fit in 128 GB.","","","","" +"365533342029975552","365533188262604800","8549992","2013-08-08 18:01:54 +0000","Twitterrific for Mac","@pdenya Wow, you have users on 4.3? Can you share a rough % estimate?","","","","" +"365532784606973952","365516401542307841","8549992","2013-08-08 17:59:41 +0000","Twitterrific for Mac","@pdenya I think everyone is abandoning 4.3 at this point. Why bother?","","","","" +"365257822306451457","365241543256317952","2262091","2013-08-07 23:47:05 +0000","Twitterrific for Mac","@ajordens @techvibes The fact that The Big Three came together here confirms my suspicion that they regularly collude and fix prices.","","","","" +"365172841106247682","365140341235527682","13818902","2013-08-07 18:09:24 +0000","Twitterrific for iOS","@aaronheckmann Agreed, it is a weird idea.","","","","" +"365135195797594113","365116796816199681","13818902","2013-08-07 15:39:49 +0000","Twitterrific for iOS","@aaronheckmann I think it's a clever way to soften the blow of the change. Distract and then change for good. Old logo is already forgotten.","","","","" +"363474815866257408","363335984676483072","894911","2013-08-03 01:42:03 +0000","Twitterrific for iOS","@JimRoepcke Looks Lisp or Rubyish. I like it.","","","","" +"363065224829472768","","16240267","2013-08-01 22:34:29 +0000","Twitterrific for Mac","@instapaper Did something change with emailing links? I now get the plain text link itself instead of Instapaper fetching the link.","","","","" +"362983658107318274","","","2013-08-01 17:10:22 +0000","Twitterrific for Mac","RT @raganwald: I've almost completely reversed my programming style: ""Leaky Greenspunned Abstractions"" http://t.co/9QB00lshwn","362968393827094529","18137723","2013-08-01 16:09:43 +0000","http://raganwald.com/2013/08/01/leaky-greenspunned-abstractions.html,http://raganwald.com/2013/08/01/leaky-greenspunned-abstractions.html" +"362442468064624642","","636923","2013-07-31 05:19:52 +0000","Tweetings for Windows","@siracusa @danbenjamin Look right into the eyes of your sweetie. http://t.co/V0r2So7EIq","","","","http://www.theverge.com/2013/7/31/4528398/eteleporter-ipad-video-chat-eye-contact-facetime" -"362290029952897026","362248484352565248","8654722","2013-07-30 19:14:08 +0000","Twitterrific","@voxdolo @github Is that the first of @raganwald's tweets you've read? Pretty clearly tongue-in-cheek.","","","","" -"361181101542223874","","","2013-07-27 17:47:39 +0000","Twitterrific","RT @mraleph: OH ""I blame Erlang's syntax for the popularity of node.js""","361088151005052928","53010195","2013-07-27 11:38:18 +0000","" -"360999856233394177","","","2013-07-27 05:47:27 +0000","Twitterrific","OH: “Get three beers in me and I’ll eat perogies. Sure.”","","","","" -"360952000969576450","","33423","2013-07-27 02:37:17 +0000","Twitterrific","@gruber 💩","","","","" -"360951951028006912","","","2013-07-27 02:37:05 +0000","Twitterrific","💩","","","","" -"360951904827736064","","","2013-07-27 02:36:54 +0000","Twitterrific","""Come on, you guys, let’s get PILE OF POO into the top 25, where it belongs."" Real-Time Emoji Use on Twitter http://t.co/tVC79cKYNe","","","","http://www.emojitracker.com/" -"360943150463852544","","","2013-07-27 02:02:07 +0000","Twitterrific","RT @CcSteff: Shout out to the Asian grandmas rubbing my belly in the showers at the Y.","360911874931433472","14336349","2013-07-26 23:57:51 +0000","" -"360126091555385344","","","2013-07-24 19:55:25 +0000","Twitterrific for Mac","Hey @TwitterAds, how about an apology not only to the 3 users you faked tweets from, but to the rest of us? You broke a lot of trust today.","","","","" +"362290029952897026","362248484352565248","8654722","2013-07-30 19:14:08 +0000","Twitterrific for iOS","@voxdolo @github Is that the first of @raganwald's tweets you've read? Pretty clearly tongue-in-cheek.","","","","" +"361181101542223874","","","2013-07-27 17:47:39 +0000","Twitterrific for iOS","RT @mraleph: OH ""I blame Erlang's syntax for the popularity of node.js""","361088151005052928","53010195","2013-07-27 11:38:18 +0000","" +"360999856233394177","","","2013-07-27 05:47:27 +0000","Twitterrific for iOS","OH: “Get three beers in me and I’ll eat perogies. Sure.”","","","","" +"360952000969576450","","33423","2013-07-27 02:37:17 +0000","Twitterrific for iOS","@gruber 💩","","","","" +"360951951028006912","","","2013-07-27 02:37:05 +0000","Twitterrific for iOS","💩","","","","" +"360951904827736064","","","2013-07-27 02:36:54 +0000","Twitterrific for iOS","""Come on, you guys, let’s get PILE OF POO into the top 25, where it belongs."" Real-Time Emoji Use on Twitter http://t.co/tVC79cKYNe","","","","http://www.emojitracker.com/" +"360943150463852544","","","2013-07-27 02:02:07 +0000","Twitterrific for iOS","RT @CcSteff: Shout out to the Asian grandmas rubbing my belly in the showers at the Y.","360911874931433472","14336349","2013-07-26 23:57:51 +0000","" +"360126091555385344","","","2013-07-24 19:55:25 +0000","Twitterrific for Mac","Hey @TwitterAds, how about an apology not only to the 3 users you faked tweets from, but to the rest of us? You broke a lot of trust today.","","","","" "360085424028389378","","","2013-07-24 17:13:49 +0000","OS X","""catch(o_O)"" https://t.co/YDfNg4X7yl","","","","https://github.com/WebReflection/ie8/blob/master/src/ie8.js#L267" -"359811262512771075","","","2013-07-23 23:04:24 +0000","Twitterrific for Mac","RT @rauchg: Relevant: http://t.co/9eIiLQhk4h +"359811262512771075","","","2013-07-23 23:04:24 +0000","Twitterrific for Mac","RT @rauchg: Relevant: http://t.co/9eIiLQhk4h (by @ariyahidayat)","359795513211621376","15540222","2013-07-23 22:01:49 +0000","http://ariya.ofilabs.com/2011/08/hall-of-api-shame-boolean-trap.html,http://ariya.ofilabs.com/2011/08/hall-of-api-shame-boolean-trap.html" -"359811251884396544","","","2013-07-23 23:04:22 +0000","Twitterrific for Mac","RT @rauchg: An API jumps the shark the moment you add a single boolean argument to one of its methods.","359795417648603136","15540222","2013-07-23 22:01:26 +0000","" +"359811251884396544","","","2013-07-23 23:04:22 +0000","Twitterrific for Mac","RT @rauchg: An API jumps the shark the moment you add a single boolean argument to one of its methods.","359795417648603136","15540222","2013-07-23 22:01:26 +0000","" "359807701095686147","","","2013-07-23 22:50:15 +0000","OS X","new Date('2013/07/23') == new Date('2013-07-23') // => false new Date(2013, 7, 23) == new Date('2013-07-23') // => false Fuck JavaScript.","","","","" -"358693775654137856","","","2013-07-20 21:03:54 +0000","Twitterrific","RT @rauchg: Detroit's motto, coined after the 1805 fire: +"358693775654137856","","","2013-07-20 21:03:54 +0000","Twitterrific for iOS","RT @rauchg: Detroit's motto, coined after the 1805 fire: ""We Hope For Better Things; It Shall Rise From the Ashes""","358646156798083072","15540222","2013-07-20 17:54:41 +0000","" -"358429225256108032","","","2013-07-20 03:32:41 +0000","Twitterrific","RT @raganwald: Yes, JavaScript is a Lisp http://t.co/eCAhfoxFEh via @raganwald","358417128644296704","18137723","2013-07-20 02:44:37 +0000","http://raganwald.com/2013/07/19/javascript-is-a-lisp.html,http://raganwald.com/2013/07/19/javascript-is-a-lisp.html" -"358360947582181376","358318218152120320","177824598","2013-07-19 23:01:22 +0000","Twitterrific for Mac","@Joe_query Me too! Simple, and extensible enough. Couldn't believe some alternatives that had 2-3 MB downloads. Yikes.","","","","" -"358309097650655232","","","2013-07-19 19:35:20 +0000","Twitterrific for Mac","RT @chockenberry: I just sent an email to Phil Schiller about the Dev Centers. If you're affected by the downtime, let him know: +"358429225256108032","","","2013-07-20 03:32:41 +0000","Twitterrific for iOS","RT @raganwald: Yes, JavaScript is a Lisp http://t.co/eCAhfoxFEh via @raganwald","358417128644296704","18137723","2013-07-20 02:44:37 +0000","http://raganwald.com/2013/07/19/javascript-is-a-lisp.html,http://raganwald.com/2013/07/19/javascript-is-a-lisp.html" +"358360947582181376","358318218152120320","177824598","2013-07-19 23:01:22 +0000","Twitterrific for Mac","@Joe_query Me too! Simple, and extensible enough. Couldn't believe some alternatives that had 2-3 MB downloads. Yikes.","","","","" +"358309097650655232","","","2013-07-19 19:35:20 +0000","Twitterrific for Mac","RT @chockenberry: I just sent an email to Phil Schiller about the Dev Centers. If you're affected by the downtime, let him know: https://t…","358302840659263488","36183","2013-07-19 19:10:28 +0000","https://gist.github.com/chockenberry/6041565" "358308698424221696","","","2013-07-19 19:33:45 +0000","OS X","Thing I like right now: Stupid-table-plugin for jQuery. http://t.co/xTdvqlW6uN","","","","http://joequery.github.io/Stupid-Table-Plugin/" -"358293524799688704","358279948198346752","91333167","2013-07-19 18:33:27 +0000","Twitterrific","@climagic Or catenate: http://t.co/Z3dkxstBwy","","","","http://www.thefreedictionary.com/catenate" -"358238046925238272","358229773559926784","18137723","2013-07-19 14:53:00 +0000","Twitterrific","@fogus @raganwald I think that's bound to ⌘-w by default.","","","","" -"358218571161145344","358089905915691009","22196723","2013-07-19 13:35:37 +0000","Twitterrific","@olegshaldybin @markkolich I don't think that was a good idea (I leave TODOs in my code), but those TODOs should be tickets somewhere.","","","","" -"357939589367214080","","","2013-07-18 19:07:02 +0000","Twitterrific","RT @JosephMartel: A minor Coronal Mass Ejection is hitting the earth today. Be prepared. Also, check for Northern Lights after dark for the…","357899868125151233","217540637","2013-07-18 16:29:12 +0000","" -"357340319211204608","","","2013-07-17 03:25:45 +0000","Twitterrific","RT @mobile17: Whoa...Ringtone Maker Pro for iOS just hit #1 in 16 countries! +"358293524799688704","358279948198346752","91333167","2013-07-19 18:33:27 +0000","Twitterrific for iOS","@climagic Or catenate: http://t.co/Z3dkxstBwy","","","","http://www.thefreedictionary.com/catenate" +"358238046925238272","358229773559926784","18137723","2013-07-19 14:53:00 +0000","Twitterrific for iOS","@fogus @raganwald I think that's bound to ⌘-w by default.","","","","" +"358218571161145344","358089905915691009","22196723","2013-07-19 13:35:37 +0000","Twitterrific for iOS","@olegshaldybin @markkolich I don't think that was a good idea (I leave TODOs in my code), but those TODOs should be tickets somewhere.","","","","" +"357939589367214080","","","2013-07-18 19:07:02 +0000","Twitterrific for iOS","RT @JosephMartel: A minor Coronal Mass Ejection is hitting the earth today. Be prepared. Also, check for Northern Lights after dark for the…","357899868125151233","217540637","2013-07-18 16:29:12 +0000","" +"357340319211204608","","","2013-07-17 03:25:45 +0000","Twitterrific for iOS","RT @mobile17: Whoa...Ringtone Maker Pro for iOS just hit #1 in 16 countries! To celebrate, we're keeping the app FREE until Friday!","357337993138286592","22219015","2013-07-17 03:16:31 +0000","" -"357336101633011712","","","2013-07-17 03:09:00 +0000","Twitterrific","Manifesto: Let my upload bandwidth flow! http://t.co/4EAEuRgDIU (via @instapaper)","","","","http://arstechnica.com/staff/2013/07/manifesto-let-my-upload-bandwidth-flow/" -"357178572567351298","","","2013-07-16 16:43:02 +0000","Twitterrific for Mac","@ColtonPhillips You got that right.","","","","" -"357174740655419394","","","2013-07-16 16:27:48 +0000","Twitterrific for Mac","@ColtonPhillips Damn! I thought it was there a day or two ago but it might have been longer.","","","","" -"357173667664363521","","","2013-07-16 16:23:32 +0000","Twitterrific for Mac","@ColtonPhillips There's one on the corner of Belleville & Gov't at the harbour, and one at centennial square by Starbucks (Gov't & Fisgard).","","","","" -"355532330250682368","355354026575011843","894911","2013-07-12 03:41:27 +0000","Twitterrific","@JimRoepcke @DrawQuest Congrats on the release!","","","","" -"355532276869763075","","","2013-07-12 03:41:14 +0000","Twitterrific","RT @JimRoepcke: YES! @DrawQuest 2.0 has launched! This is a huge update, go get it! https://t.co/VQ2XQvHX91","355354026575011843","894911","2013-07-11 15:52:56 +0000","https://itunes.apple.com/us/app/drawquest-free-daily-drawing/id576917425?ls=1&mt=8,https://itunes.apple.com/us/app/drawquest-free-daily-drawing/id576917425?ls=1&mt=8" -"354642645785653249","","","2013-07-09 16:46:10 +0000","Twitterrific for Mac","RT @hij1nx: yes, browsers should have setImmediate -- http://t.co/xC63LMxzAg","354631845415104514","95938827","2013-07-09 16:03:15 +0000","http://www.nczonline.net/blog/2013/07/09/the-case-for-setimmediate/,http://www.nczonline.net/blog/2013/07/09/the-case-for-setimmediate/" +"357336101633011712","","","2013-07-17 03:09:00 +0000","Twitterrific for iOS","Manifesto: Let my upload bandwidth flow! http://t.co/4EAEuRgDIU (via @instapaper)","","","","http://arstechnica.com/staff/2013/07/manifesto-let-my-upload-bandwidth-flow/" +"357178572567351298","","","2013-07-16 16:43:02 +0000","Twitterrific for Mac","@ColtonPhillips You got that right.","","","","" +"357174740655419394","","","2013-07-16 16:27:48 +0000","Twitterrific for Mac","@ColtonPhillips Damn! I thought it was there a day or two ago but it might have been longer.","","","","" +"357173667664363521","","","2013-07-16 16:23:32 +0000","Twitterrific for Mac","@ColtonPhillips There's one on the corner of Belleville & Gov't at the harbour, and one at centennial square by Starbucks (Gov't & Fisgard).","","","","" +"355532330250682368","355354026575011843","894911","2013-07-12 03:41:27 +0000","Twitterrific for iOS","@JimRoepcke @DrawQuest Congrats on the release!","","","","" +"355532276869763075","","","2013-07-12 03:41:14 +0000","Twitterrific for iOS","RT @JimRoepcke: YES! @DrawQuest 2.0 has launched! This is a huge update, go get it! https://t.co/VQ2XQvHX91","355354026575011843","894911","2013-07-11 15:52:56 +0000","https://itunes.apple.com/us/app/drawquest-free-daily-drawing/id576917425?ls=1&mt=8,https://itunes.apple.com/us/app/drawquest-free-daily-drawing/id576917425?ls=1&mt=8" +"354642645785653249","","","2013-07-09 16:46:10 +0000","Twitterrific for Mac","RT @hij1nx: yes, browsers should have setImmediate -- http://t.co/xC63LMxzAg","354631845415104514","95938827","2013-07-09 16:03:15 +0000","http://www.nczonline.net/blog/2013/07/09/the-case-for-setimmediate/,http://www.nczonline.net/blog/2013/07/09/the-case-for-setimmediate/" "354350067659976704","","558516258","2013-07-08 21:23:34 +0000","Twitter Web Client","@OpenUDID iOS 7 beta 3 released today breaks OpenUDID's use of the pasteboard. Named pasteboards are unique to individual app vendors now.","","","","" -"354262755773120513","354052830224580608","38003","2013-07-08 15:36:37 +0000","Twitterrific","@gedeon @manolosavi @Twitterrific This happens with Glassboard on iOS 6.1.3 for me too. Perhaps it's a server issue on Apple's end.","","","","" +"354262755773120513","354052830224580608","38003","2013-07-08 15:36:37 +0000","Twitterrific for iOS","@gedeon @manolosavi @Twitterrific This happens with Glassboard on iOS 6.1.3 for me too. Perhaps it's a server issue on Apple's end.","","","","" "352834936132206593","","","2013-07-04 17:02:58 +0000","OS X","Well I'm never doing that again. Lesson learned. http://t.co/0GZ9xeQjTd","","","","http://photos.app.net/7363786/1" -"350769446299774976","350760778023960576","1170518132","2013-06-29 00:15:27 +0000","Twitterrific for Mac","@feedbinapp Seems to work, and is much faster! Yay! \o/","","","","" -"349364246322216963","","","2013-06-25 03:11:41 +0000","Twitterrific","RT @PlayOnDirector: My finals predictions: Hawks in 6. Great coach + Boston depth of team character was demonstrated in loss to Sens in fi…","345749874563751936","226701299","2013-06-15 03:49:28 +0000","" +"350769446299774976","350760778023960576","1170518132","2013-06-29 00:15:27 +0000","Twitterrific for Mac","@feedbinapp Seems to work, and is much faster! Yay! \o/","","","","" +"349364246322216963","","","2013-06-25 03:11:41 +0000","Twitterrific for iOS","RT @PlayOnDirector: My finals predictions: Hawks in 6. Great coach + Boston depth of team character was demonstrated in loss to Sens in fi…","345749874563751936","226701299","2013-06-15 03:49:28 +0000","" "348617029344956416","348600997821677568","217540637","2013-06-23 01:42:31 +0000","Tweetbot for iOS","@JosephMartel Nooooo! That’s too bad man.","","","","" "348528199417856000","","","2013-06-22 19:49:32 +0000","iOS","Hidden mini-game in Letterpress: hit the hamburger button twice quickly and two menus pop up.","","","","" -"348223974574018562","","","2013-06-21 23:40:39 +0000","Twitterrific for Mac","Uh oh, Scout is drunk. RT @ScoutApp You'llyktjhjhkkytjykrjgjtjhyjjtjtgjftk","","","","" +"348223974574018562","","","2013-06-21 23:40:39 +0000","Twitterrific for Mac","Uh oh, Scout is drunk. RT @ScoutApp You'llyktjhjhkkytjykrjgjtjhyjjtjtgjftk","","","","" "348197339271409664","","","2013-06-21 21:54:49 +0000","Twitter Web Client","RT @RyanGerhardt: So proud of the @tapfortap team!! Congrats on the award for best online strategy of the year award! @viatec #tectoria","347925960177373185","50147119","2013-06-21 03:56:27 +0000","" -"348197239144996864","","135727142","2013-06-21 21:54:25 +0000","Twitterrific for Mac","@todddunlop RT @mikedemers This is what I think whenever I hear the term “Extreme Programming” http://t.co/XhizylDrHA","","","","https://twitter.com/mikedemers/status/348194634914230272/photo/1" +"348197239144996864","","135727142","2013-06-21 21:54:25 +0000","Twitterrific for Mac","@todddunlop RT @mikedemers This is what I think whenever I hear the term “Extreme Programming” http://t.co/XhizylDrHA","","","","https://twitter.com/mikedemers/status/348194634914230272/photo/1" "348098436425465856","348089194582798336","217540637","2013-06-21 15:21:49 +0000","Tweetbot for iOS","@JosephMartel woohoo!","","","","" "347962871411515392","347961807018799104","17088322","2013-06-21 06:23:08 +0000","Tweetbot for iOS","@HipwoodDigital @JimRoepcke Thanks guys! Good times.","","","","" "347938040242663424","","","2013-06-21 04:44:27 +0000","Tweetbot for iOS","And Ima let you finish, but… “@caseybolts: Red Brick was robbed #Tectoria #viatec”","","","","" "347912268341735425","347911798747443200","851272722","2013-06-21 03:02:03 +0000","Tweetbot for iOS","@redbrickm @tapfortap @go2mobi TWITTER SLAP FIGHT #Tectoria","","","","" "347897730158452737","347897197406326784","236229968","2013-06-21 02:04:17 +0000","Tweetbot for iOS","@MatthewD_Shaw Carrot something. #Tectoria","","","","" -"347768834528256000","347768357912719361","217540637","2013-06-20 17:32:06 +0000","Twitterrific for Mac","@JosephMartel Wow, you can't write 750 words while hiking to work w/ 50 lbs on your back? What a noob.","","","","" -"347767489821814784","347738656745869312","217540637","2013-06-20 17:26:45 +0000","Twitterrific for Mac","@JosephMartel http://t.co/EHH8h2Fy5H","","","","http://750words.com/" +"347768834528256000","347768357912719361","217540637","2013-06-20 17:32:06 +0000","Twitterrific for Mac","@JosephMartel Wow, you can't write 750 words while hiking to work w/ 50 lbs on your back? What a noob.","","","","" +"347767489821814784","347738656745869312","217540637","2013-06-20 17:26:45 +0000","Twitterrific for Mac","@JosephMartel http://t.co/EHH8h2Fy5H","","","","http://750words.com/" "345790488898572288","","","2013-06-15 06:30:51 +0000","Tweetbot for iOS","OH: No oxygen. It’s all drug now.","","","","" -"345681871260250112","345681257369321472","26191233","2013-06-14 23:19:15 +0000","Twitterrific for Mac","@Rackspace Not yet, but I should! Because we are moving from Debian to CentOS it seems more like a feature than a bug.","","","","" +"345681871260250112","345681257369321472","26191233","2013-06-14 23:19:15 +0000","Twitterrific for Mac","@Rackspace Not yet, but I should! Because we are moving from Debian to CentOS it seems more like a feature than a bug.","","","","" "345680844846923776","","","2013-06-14 23:15:10 +0000","OS X","On Rackspace Cloud our Ruby app loads in 1/2 the time on a CentOS 6 VM compared to Debian 6 VM. What on earth could cause such a difference?","","","","" "344673721295986688","","","2013-06-12 04:33:13 +0000","iOS","The arch Linux installer boots into zsh. I think I’m going to like this.","","","","" -"344609358203715584","344564696927584256","70596949","2013-06-12 00:17:28 +0000","Twitterrific for Mac","@creationix @TooTallNate Suspend looks nifty, I like that it doesn't require wrapping functions w/ something like https://t.co/zDeCAlMUe0","","","","https://gist.github.com/samsonjs/5736409" -"344508068832370689","344505190763864065","8549992","2013-06-11 17:34:58 +0000","Twitterrific for Mac","@pdenya At first I thought it looked bad but after changing wallpaper and getting used to it I like it a lot. It feels nicer.","","","","" -"344507958136283137","344505107968311296","8549992","2013-06-11 17:34:32 +0000","Twitterrific for Mac","@pdenya I couldn't wait! Digging it so far. Aside from visual glitches & occasional crashes it's not bad for the first beta.","","","","" -"344243706586611712","344243317418102786","8549992","2013-06-11 00:04:30 +0000","Twitterrific for Mac","@pdenya Thanks, that's exactly what I'm looking for. I will resist for a day or two and see how bad it is. I can usually deal w/ crashes.","","","","" -"344241849143263232","344241652933750785","894911","2013-06-10 23:57:07 +0000","Twitterrific for Mac","@JimRoepcke It is shipping now on http://t.co/YqHnvRbgQA but I'm unsure if retail channels all have it yet.","","","","http://apple.com" -"344241564488462336","344241341389209600","894911","2013-06-10 23:55:59 +0000","Twitterrific for Mac","@JimRoepcke At least there's a $230 model now. Better than $300. Timely release of that model.","","","","" -"344240958176632832","344240601996333056","894911","2013-06-10 23:53:34 +0000","Twitterrific for Mac","@JimRoepcke Drat! I really want to check it out and it doesn't run on my 4th gen iPod touch.","","","","" -"344240542680489986","","","2013-06-10 23:51:55 +0000","Twitterrific for Mac","What's the word on the iOS [redacted] beta? Stable enough to install on a carry phone?","","","","" -"344218502296637441","344205652375261185","22406953","2013-06-10 22:24:20 +0000","Twitterrific for Mac","@mahyarm Do you actually want a $5k dual socket Xeon w/ ECC memory anyway? Way better off w/ a Hackintosh no matter what was announced.","","","","" -"344191736358248448","344191452336775168","217540637","2013-06-10 20:37:59 +0000","Twitterrific for Mac","@JosephMartel So greedy. Give other people a chance to see the ""connection timed out"" error page.","","","","" -"344189656209973249","","","2013-06-10 20:29:43 +0000","Twitterrific for Mac","Hmmm… http://t.co/o0aWe9wBxl is unavailable. Maybe I should mash reload for the next few hours.","","","","http://developer.apple.com" +"344609358203715584","344564696927584256","70596949","2013-06-12 00:17:28 +0000","Twitterrific for Mac","@creationix @TooTallNate Suspend looks nifty, I like that it doesn't require wrapping functions w/ something like https://t.co/zDeCAlMUe0","","","","https://gist.github.com/samsonjs/5736409" +"344508068832370689","344505190763864065","8549992","2013-06-11 17:34:58 +0000","Twitterrific for Mac","@pdenya At first I thought it looked bad but after changing wallpaper and getting used to it I like it a lot. It feels nicer.","","","","" +"344507958136283137","344505107968311296","8549992","2013-06-11 17:34:32 +0000","Twitterrific for Mac","@pdenya I couldn't wait! Digging it so far. Aside from visual glitches & occasional crashes it's not bad for the first beta.","","","","" +"344243706586611712","344243317418102786","8549992","2013-06-11 00:04:30 +0000","Twitterrific for Mac","@pdenya Thanks, that's exactly what I'm looking for. I will resist for a day or two and see how bad it is. I can usually deal w/ crashes.","","","","" +"344241849143263232","344241652933750785","894911","2013-06-10 23:57:07 +0000","Twitterrific for Mac","@JimRoepcke It is shipping now on http://t.co/YqHnvRbgQA but I'm unsure if retail channels all have it yet.","","","","http://apple.com" +"344241564488462336","344241341389209600","894911","2013-06-10 23:55:59 +0000","Twitterrific for Mac","@JimRoepcke At least there's a $230 model now. Better than $300. Timely release of that model.","","","","" +"344240958176632832","344240601996333056","894911","2013-06-10 23:53:34 +0000","Twitterrific for Mac","@JimRoepcke Drat! I really want to check it out and it doesn't run on my 4th gen iPod touch.","","","","" +"344240542680489986","","","2013-06-10 23:51:55 +0000","Twitterrific for Mac","What's the word on the iOS [redacted] beta? Stable enough to install on a carry phone?","","","","" +"344218502296637441","344205652375261185","22406953","2013-06-10 22:24:20 +0000","Twitterrific for Mac","@mahyarm Do you actually want a $5k dual socket Xeon w/ ECC memory anyway? Way better off w/ a Hackintosh no matter what was announced.","","","","" +"344191736358248448","344191452336775168","217540637","2013-06-10 20:37:59 +0000","Twitterrific for Mac","@JosephMartel So greedy. Give other people a chance to see the ""connection timed out"" error page.","","","","" +"344189656209973249","","","2013-06-10 20:29:43 +0000","Twitterrific for Mac","Hmmm… http://t.co/o0aWe9wBxl is unavailable. Maybe I should mash reload for the next few hours.","","","","http://developer.apple.com" "343460313145946113","343449081013747713","29255412","2013-06-08 20:11:34 +0000","Tweetbot for iOS","@tjholowaychuk Just last night I wrote this for a project that uses the async module. https://t.co/zDeCAlMUe0","","","","https://gist.github.com/samsonjs/5736409" -"342700857814552576","342651355606953985","376565222","2013-06-06 17:53:46 +0000","Twitterrific for Mac","@krisandbrake Exciting week!","","","","" +"342700857814552576","342651355606953985","376565222","2013-06-06 17:53:46 +0000","Twitterrific for Mac","@krisandbrake Exciting week!","","","","" "342672384471494656","","","2013-06-06 16:00:37 +0000","Tweetbot for iOS","I’m worried about my next dentist “appointment”. http://t.co/hjdmQMpvJp","","","","https://twitter.com/_sjs/status/342672384471494656/photo/1" "340605567208914944","","","2013-05-31 23:07:50 +0000","OS X","Doing a little bit of pair programming at @tapfortap today. Sorry @ToddDunlop!","","","","" "340494949231493121","","","2013-05-31 15:48:16 +0000","Tweetbot for iOS","RT @jamieforrest: If you like oscillating between feeling like the stupidest person on earth and a fucking genius, you’ll love coding.","334279984321544192","14069034","2013-05-14 12:12:13 +0000","" -"340244372824137729","","","2013-05-30 23:12:34 +0000","Twitterrific for Mac","RT @isoiphone: ""Click Here"" is lazy. Come up with links that make sense!","340233157129412608","28265820","2013-05-30 22:28:00 +0000","" -"340198366375985152","340197266348462080","14618863","2013-05-30 20:09:45 +0000","Twitterrific for Mac","@anandshimpi Can I just pinky swear not to blab?","","","","" +"340244372824137729","","","2013-05-30 23:12:34 +0000","Twitterrific for Mac","RT @isoiphone: ""Click Here"" is lazy. Come up with links that make sense!","340233157129412608","28265820","2013-05-30 22:28:00 +0000","" +"340198366375985152","340197266348462080","14618863","2013-05-30 20:09:45 +0000","Twitterrific for Mac","@anandshimpi Can I just pinky swear not to blab?","","","","" "339792606957559809","","","2013-05-29 17:17:25 +0000","OS X","When I learned Unix and Ctrl-t to transpose chars I wondered why there's a shortcut for such a rarely used command. Now I use it constantly.","","","","" -"339526226144272384","339449357529141251","11973362","2013-05-28 23:38:55 +0000","Twitterrific for Mac","@typeoneerror I want that room so badly. Man that video brings up a lot of memories!","","","","" +"339526226144272384","339449357529141251","11973362","2013-05-28 23:38:55 +0000","Twitterrific for Mac","@typeoneerror I want that room so badly. Man that video brings up a lot of memories!","","","","" "338066559937437696","338038228462477312","11973362","2013-05-24 22:58:43 +0000","Tweetbot for iOS","@typeoneerror Phew! For a minute I was worried.","","","","" -"338063185103962112","","","2013-05-24 22:45:18 +0000","Twitterrific for Mac","RT @JeremiahLee: Front-end developers: please please please check that your sign in and credit card forms work with @1Password.","338051878686441472","14538587","2013-05-24 22:00:23 +0000","" -"338027769399234560","338025167643082752","11973362","2013-05-24 20:24:35 +0000","Twitterrific for Mac","@typeoneerror Alcohol is expensive in BC, but you really should be drinking $10 growlers of some local brews instead! @PhillipsBeer","","","","" -"337981815644094465","","","2013-05-24 17:21:58 +0000","Twitterrific for Mac","RT @DalaiLamaInBed: It is expressions of affection rather than money and power that attract real friends in bed.","337875743994421248","197495418","2013-05-24 10:20:29 +0000","" -"337665132136108032","","","2013-05-23 20:23:35 +0000","Twitterrific for Mac","RT @JosephMartel: It has to be ""jiff"", ""jife"", ""giff"", or ""gife"", but ""gif"" is not reconcilable in English orthography and morphophonology.","337660471563939840","217540637","2013-05-23 20:05:04 +0000","" +"338063185103962112","","","2013-05-24 22:45:18 +0000","Twitterrific for Mac","RT @JeremiahLee: Front-end developers: please please please check that your sign in and credit card forms work with @1Password.","338051878686441472","14538587","2013-05-24 22:00:23 +0000","" +"338027769399234560","338025167643082752","11973362","2013-05-24 20:24:35 +0000","Twitterrific for Mac","@typeoneerror Alcohol is expensive in BC, but you really should be drinking $10 growlers of some local brews instead! @PhillipsBeer","","","","" +"337981815644094465","","","2013-05-24 17:21:58 +0000","Twitterrific for Mac","RT @DalaiLamaInBed: It is expressions of affection rather than money and power that attract real friends in bed.","337875743994421248","197495418","2013-05-24 10:20:29 +0000","" +"337665132136108032","","","2013-05-23 20:23:35 +0000","Twitterrific for Mac","RT @JosephMartel: It has to be ""jiff"", ""jife"", ""giff"", or ""gife"", but ""gif"" is not reconcilable in English orthography and morphophonology.","337660471563939840","217540637","2013-05-23 20:05:04 +0000","" "337334710290235395","","","2013-05-22 22:30:36 +0000","OS X","OH: ""Voodoo Doughnuts is like the hipster doughnut Mecca.""","","","","" -"337333627169939457","","","2013-05-22 22:26:18 +0000","Twitterrific for Mac","RT @climagic: exec -a vim nethack # Now if your boss runs ps aux on your system, they will think you're working, not playing a game.","337233313301405696","91333167","2013-05-22 15:47:42 +0000","" -"335504866631876608","","","2013-05-17 21:19:28 +0000","Twitterrific for Mac","RT @mikeal: I think @polotek is the Ralph Nadar of node.js. Mad at everyone but hasn’t published anything in years :) Also happens to be ri…","335478552868835328","668423","2013-05-17 19:34:54 +0000","" +"337333627169939457","","","2013-05-22 22:26:18 +0000","Twitterrific for Mac","RT @climagic: exec -a vim nethack # Now if your boss runs ps aux on your system, they will think you're working, not playing a game.","337233313301405696","91333167","2013-05-22 15:47:42 +0000","" +"335504866631876608","","","2013-05-17 21:19:28 +0000","Twitterrific for Mac","RT @mikeal: I think @polotek is the Ralph Nadar of node.js. Mad at everyone but hasn’t published anything in years :) Also happens to be ri…","335478552868835328","668423","2013-05-17 19:34:54 +0000","" "334812023869304832","","","2013-05-15 23:26:21 +0000","OS X","Most ordinal functions you find around the web fail miserably on numbers such as 111.","","","","" -"334779963448369152","334779783663718400","74837444","2013-05-15 21:18:57 +0000","Twitterrific for Mac","@Badger32d @decktonic It is funny. I love saying that I am going to email someone money.","","","","" -"334779629401419776","","","2013-05-15 21:17:38 +0000","Twitterrific for Mac","@decktonic @Badger32d Here in Canada we email money all the time. http://t.co/yNrT20mxov","","","","http://www.interac.ca/en/interac-etransfer/etransfer-detail" -"334719416950456320","","","2013-05-15 17:18:22 +0000","Twitterrific for Mac","RT @siracusa: Apple's new Objective-C-to-JavaScript bridge in WebKit: http://t.co/BtWyYfreyI (via @apike)","334702548348989440","636923","2013-05-15 16:11:20 +0000","http://www.steamclock.com/blog/2013/05/apple-objective-c-javascript-bridge/,http://www.steamclock.com/blog/2013/05/apple-objective-c-javascript-bridge/" +"334779963448369152","334779783663718400","74837444","2013-05-15 21:18:57 +0000","Twitterrific for Mac","@Badger32d @decktonic It is funny. I love saying that I am going to email someone money.","","","","" +"334779629401419776","","","2013-05-15 21:17:38 +0000","Twitterrific for Mac","@decktonic @Badger32d Here in Canada we email money all the time. http://t.co/yNrT20mxov","","","","http://www.interac.ca/en/interac-etransfer/etransfer-detail" +"334719416950456320","","","2013-05-15 17:18:22 +0000","Twitterrific for Mac","RT @siracusa: Apple's new Objective-C-to-JavaScript bridge in WebKit: http://t.co/BtWyYfreyI (via @apike)","334702548348989440","636923","2013-05-15 16:11:20 +0000","http://www.steamclock.com/blog/2013/05/apple-objective-c-javascript-bridge/,http://www.steamclock.com/blog/2013/05/apple-objective-c-javascript-bridge/" "334439276760690688","","","2013-05-14 22:45:11 +0000","OS X","I was wary of pt-online-schema-change (for MySQL) but I should not have been. It works very well. No more 8 hour ALTER TABLEs for me.","","","","" -"334091126678114305","334090837287903233","894911","2013-05-13 23:41:46 +0000","Twitterrific for Mac","@JimRoepcke Ah, gotcha. That makes sense.","","","","" -"334090530680086529","334087101316476929","894911","2013-05-13 23:39:24 +0000","Twitterrific for Mac","@JimRoepcke It should show up if you touch the edge of the screen with the pointer while dragging.","","","","" +"334091126678114305","334090837287903233","894911","2013-05-13 23:41:46 +0000","Twitterrific for Mac","@JimRoepcke Ah, gotcha. That makes sense.","","","","" +"334090530680086529","334087101316476929","894911","2013-05-13 23:39:24 +0000","Twitterrific for Mac","@JimRoepcke It should show up if you touch the edge of the screen with the pointer while dragging.","","","","" "333127413007536128","","","2013-05-11 07:52:19 +0000","Tweetbot for iOS","Lead developer of @mobile17 right here. Bad ass! http://t.co/RJ9P4OFHeN","","","","https://twitter.com/_sjs/status/333127413007536128/photo/1" "332935795201675264","332932794164588544","894911","2013-05-10 19:10:53 +0000","Tweetbot for iOS","@JimRoepcke One of my favourites!","","","","" "332932537485758465","332927043740241920","894911","2013-05-10 18:57:57 +0000","Tweetbot for iOS","@JimRoepcke /r/nottheonion","","","","" -"332636121924247553","","29255412","2013-05-09 23:20:06 +0000","Twitterrific for Mac","@tjholowaychuk Cable has better latency than LTE too, which is pretty noticeable.","","","","" -"332635894974644225","","29255412","2013-05-09 23:19:12 +0000","Twitterrific for Mac","@tjholowaychuk Oh man have I thought about doing that. Upstream speeds are so good on LTE but data caps are too low for me even at 6 GB.","","","","" -"332616192135135233","332520191747579904","17177251","2013-05-09 22:00:54 +0000","Twitterrific for Mac","@brianloveswords @jdalton Everyone should use that format for every audience. Dates & times should go biggest to smallest. Always.","","","","" -"331910360711958528","331910286116274177","18006104","2013-05-07 23:16:11 +0000","Twitterrific for Mac","@EricAlanDyck rawr","","","","" -"331903571161411584","331899154580258816","18006104","2013-05-07 22:49:12 +0000","Twitterrific for Mac","@EricAlanDyck Ok but it will cost you $42 and I only accept payment by cheque. Last one!","","","","" +"332636121924247553","","29255412","2013-05-09 23:20:06 +0000","Twitterrific for Mac","@tjholowaychuk Cable has better latency than LTE too, which is pretty noticeable.","","","","" +"332635894974644225","","29255412","2013-05-09 23:19:12 +0000","Twitterrific for Mac","@tjholowaychuk Oh man have I thought about doing that. Upstream speeds are so good on LTE but data caps are too low for me even at 6 GB.","","","","" +"332616192135135233","332520191747579904","17177251","2013-05-09 22:00:54 +0000","Twitterrific for Mac","@brianloveswords @jdalton Everyone should use that format for every audience. Dates & times should go biggest to smallest. Always.","","","","" +"331910360711958528","331910286116274177","18006104","2013-05-07 23:16:11 +0000","Twitterrific for Mac","@EricAlanDyck rawr","","","","" +"331903571161411584","331899154580258816","18006104","2013-05-07 22:49:12 +0000","Twitterrific for Mac","@EricAlanDyck Ok but it will cost you $42 and I only accept payment by cheque. Last one!","","","","" "331433755740880896","","","2013-05-06 15:42:19 +0000","Tweetbot for iOS","RT @raganwald: How can you tell someone's a Schemer? He spells it ""lis?"" instead of ""lisp""","331431633876049920","18137723","2013-05-06 15:33:53 +0000","" "330679336669687809","","","2013-05-04 13:44:32 +0000","Tweetbot for iOS","RT @raganwald: The Illustrated Guide to JavaScript http://t.co/3MAKcLpZ1s","330654802344280064","18137723","2013-05-04 12:07:02 +0000","http://i.imgur.com/1u43kum.png,http://i.imgur.com/1u43kum.png" -"330431245865594881","330429938383593474","20826421","2013-05-03 21:18:42 +0000","Twitterrific for Mac","@wavded Oh that's good to know. If you want Parallels check out this bundle: http://t.co/FeJlQkPGmS","","","","http://www.macsuperbundle.com/?rs4=NO_BN_MACSB_DF_MAY2013&utm_source=daringfireball&utm_medium=text&utm_campaign=MSB" -"330429587328745473","330426248503373824","20826421","2013-05-03 21:12:07 +0000","Twitterrific for Mac","@wavded I get co-workers who use Windows to try things. Is ievms still a thing? Used to use VMs for that.","","","","" +"330431245865594881","330429938383593474","20826421","2013-05-03 21:18:42 +0000","Twitterrific for Mac","@wavded Oh that's good to know. If you want Parallels check out this bundle: http://t.co/FeJlQkPGmS","","","","http://www.macsuperbundle.com/?rs4=NO_BN_MACSB_DF_MAY2013&utm_source=daringfireball&utm_medium=text&utm_campaign=MSB" +"330429587328745473","330426248503373824","20826421","2013-05-03 21:12:07 +0000","Twitterrific for Mac","@wavded I get co-workers who use Windows to try things. Is ievms still a thing? Used to use VMs for that.","","","","" "329125550671159296","329055696068935680","1260231","2013-04-30 06:50:20 +0000","Tweetbot for iOS","@joehewitt @typeoneerror It can be if it’s already a good idea. You can go too far with physics as well. Everything is a balance.","","","","" -"327578050000728064","327577236377055233","15540222","2013-04-26 00:21:07 +0000","Twitterrific for Mac","@rauchg I wonder why they don't just defer to the native platform as a rule.","","","","" -"327577935060008960","327577236377055233","15540222","2013-04-26 00:20:40 +0000","Twitterrific for Mac","@rauchg Probably to be cross platform or something. Some co-workers recently complained about them fucking up menus on Windows too.","","","","" -"327572376516698112","","","2013-04-25 23:58:35 +0000","Twitterrific for Mac","RT @TheNodeLebowski: No, you're not wrong, Mikeal, you're just an asshole.","321637732541661184","1339240128","2013-04-09 14:56:25 +0000","" -"327523354833715201","","","2013-04-25 20:43:47 +0000","Twitterrific for Mac","RT @igrigorik: PageSpeed for Nginx is now available in Beta: http://t.co/H1xesxp3Wv - 40+ optimization filters, open-source and free to use!","327515234728308736","9980812","2013-04-25 20:11:31 +0000","http://bit.ly/11nVcDr,http://bit.ly/11nVcDr" -"327506990530170882","327495871136686080","894911","2013-04-25 19:38:45 +0000","Twitterrific for Mac","@JimRoepcke Yeah I'm glad they are aggressively posting the videos earlier. It's good for everyone.","","","","" -"327493212820357120","327483586510991361","894911","2013-04-25 18:44:01 +0000","Twitterrific for Mac","@JimRoepcke I don't think they're live streamed. The website says they will be available ""during the conference"".","","","","" +"327578050000728064","327577236377055233","15540222","2013-04-26 00:21:07 +0000","Twitterrific for Mac","@rauchg I wonder why they don't just defer to the native platform as a rule.","","","","" +"327577935060008960","327577236377055233","15540222","2013-04-26 00:20:40 +0000","Twitterrific for Mac","@rauchg Probably to be cross platform or something. Some co-workers recently complained about them fucking up menus on Windows too.","","","","" +"327572376516698112","","","2013-04-25 23:58:35 +0000","Twitterrific for Mac","RT @TheNodeLebowski: No, you're not wrong, Mikeal, you're just an asshole.","321637732541661184","1339240128","2013-04-09 14:56:25 +0000","" +"327523354833715201","","","2013-04-25 20:43:47 +0000","Twitterrific for Mac","RT @igrigorik: PageSpeed for Nginx is now available in Beta: http://t.co/H1xesxp3Wv - 40+ optimization filters, open-source and free to use!","327515234728308736","9980812","2013-04-25 20:11:31 +0000","http://bit.ly/11nVcDr,http://bit.ly/11nVcDr" +"327506990530170882","327495871136686080","894911","2013-04-25 19:38:45 +0000","Twitterrific for Mac","@JimRoepcke Yeah I'm glad they are aggressively posting the videos earlier. It's good for everyone.","","","","" +"327493212820357120","327483586510991361","894911","2013-04-25 18:44:01 +0000","Twitterrific for Mac","@JimRoepcke I don't think they're live streamed. The website says they will be available ""during the conference"".","","","","" "327478100969541634","","","2013-04-25 17:43:58 +0000","Twitter for Mac","Yay, they didn't ruin it. I'm still sticking with Twitterrific though.","","","","" -"327475830391459840","","","2013-04-25 17:34:56 +0000","Twitterrific for Mac","Twitter updated their Mac app? Woah. I am pretty surprised, and hope that they didn't ruin it.","","","","" +"327475830391459840","","","2013-04-25 17:34:56 +0000","Twitterrific for Mac","Twitter updated their Mac app? Woah. I am pretty surprised, and hope that they didn't ruin it.","","","","" "326405371616964608","","","2013-04-22 18:41:19 +0000","Tweetbot for iOS","@ColtonPhillips Good question. Eric knows what is going on with our SDK and Corona and such. Might be worth mailing him about it.","","","","" "325444041565159425","","","2013-04-20 03:01:20 +0000","iOS","OH: “I’m going to give up saturated fats for a weekend so I can try ecstasy.”","","","","" "325339946678382592","325330849732128769","5719692","2013-04-19 20:07:42 +0000","Tweetbot for iOS","@FGRibreau @redisfeed @bringr We don’t push it very hard, but for our small company it seems like a lot :)","","","","" "325040763664732160","","","2013-04-19 00:18:51 +0000","Twitter Web Client","RT @hipsterhacker: I can't believe your Caps Lock key hasn't been remapped yet.","305524143640674304","261546340","2013-02-24 03:46:46 +0000","" "325028481442406400","","","2013-04-18 23:30:03 +0000","OS X","One of our redis servers has processed over 100 billion commands in 128 days. Another has done 44 billion in the same time.","","","","" -"325017373298003968","","","2013-04-18 22:45:54 +0000","Twitterrific for Mac","RT @oscargodson: ""Rebasing doesn’t result in cleaner history. It just results in incorrect history that looks simpler."" +"325017373298003968","","","2013-04-18 22:45:54 +0000","Twitterrific for Mac","RT @oscargodson: ""Rebasing doesn’t result in cleaner history. It just results in incorrect history that looks simpler."" - Creator of Git","324993266120536064","10138412","2013-04-18 21:10:07 +0000","" "324623027335741440","","","2013-04-17 20:38:55 +0000","OS X","It might be worth moving to Celluloid anyway though. It looks so great.","","","","" "324622807206092801","","","2013-04-17 20:38:03 +0000","OS X","Celluloid for Ruby looks awesome. Using EM-Synchrony seems to be the easiest way to add concurrency to an existing Sinatra app though.","","","","" -"324273461700730880","","","2013-04-16 21:29:52 +0000","Twitterrific for Mac","RT @secoif: been waiting for this day my whole life: just got complimented by a random person in a bagel shop on my vim t-shirt","324198722412093440","17609423","2013-04-16 16:32:53 +0000","" +"324273461700730880","","","2013-04-16 21:29:52 +0000","Twitterrific for Mac","RT @secoif: been waiting for this day my whole life: just got complimented by a random person in a bagel shop on my vim t-shirt","324198722412093440","17609423","2013-04-16 16:32:53 +0000","" "323519771549261825","","","2013-04-14 19:34:58 +0000","Tweetbot for iOS","RT @DalaiLamaInBed: It’s unrealistic to think that the future of humanity can be achieved only on the basis of prayer, what we need is t ...","323469700178780160","197495418","2013-04-14 16:16:00 +0000","" "323135282201366528","323134454807814144","236252268","2013-04-13 18:07:09 +0000","Tweetbot for iOS","@_Beyamor @ColtonPhillips Yup. Arguments. Or refer to a dict that will be filled in later.","","","","" -"322850729612165120","","","2013-04-12 23:16:26 +0000","Twitterrific for Mac","@ColtonPhillips They call that the ""make Colton look crazy"" feature. It's new.","","","","" -"322824648192585729","","","2013-04-12 21:32:48 +0000","Twitterrific for Mac","RT @igrigorik: It's not a web app. It's an app you install from the web: http://t.co/a9X2XSpoAL - good advice.","322819444021805058","9980812","2013-04-12 21:12:07 +0000","http://bit.ly/10ZKH7T,http://bit.ly/10ZKH7T" +"322850729612165120","","","2013-04-12 23:16:26 +0000","Twitterrific for Mac","@ColtonPhillips They call that the ""make Colton look crazy"" feature. It's new.","","","","" +"322824648192585729","","","2013-04-12 21:32:48 +0000","Twitterrific for Mac","RT @igrigorik: It's not a web app. It's an app you install from the web: http://t.co/a9X2XSpoAL - good advice.","322819444021805058","9980812","2013-04-12 21:12:07 +0000","http://bit.ly/10ZKH7T,http://bit.ly/10ZKH7T" "322555611302744064","322554741915779072","22196723","2013-04-12 03:43:45 +0000","Tweetbot for iOS","@markkolich With a bottle of whisky.","","","","" -"322503908725510146","322496128648089601","22196723","2013-04-12 00:18:18 +0000","Twitterrific for Mac","@markkolich Shit, having read the article I see they won't actually be using it. Nevermind then. I'll sheepishly slink off now.","","","","" -"322503059982909440","322496128648089601","22196723","2013-04-12 00:14:55 +0000","Twitterrific for Mac","@markkolich I lived in Dubai for a few years and people have fast cars and drive them fast. Hell, I got my dad's Volvo S80 up to 255 km/h.","","","","" -"322502928105611265","322496128648089601","22196723","2013-04-12 00:14:24 +0000","Twitterrific for Mac","@markkolich You see those in Germany too. If you want to catch people in fast vehicles then you need a faster vehicle.","","","","" +"322503908725510146","322496128648089601","22196723","2013-04-12 00:18:18 +0000","Twitterrific for Mac","@markkolich Shit, having read the article I see they won't actually be using it. Nevermind then. I'll sheepishly slink off now.","","","","" +"322503059982909440","322496128648089601","22196723","2013-04-12 00:14:55 +0000","Twitterrific for Mac","@markkolich I lived in Dubai for a few years and people have fast cars and drive them fast. Hell, I got my dad's Volvo S80 up to 255 km/h.","","","","" +"322502928105611265","322496128648089601","22196723","2013-04-12 00:14:24 +0000","Twitterrific for Mac","@markkolich You see those in Germany too. If you want to catch people in fast vehicles then you need a faster vehicle.","","","","" "322486851745222658","","","2013-04-11 23:10:31 +0000","OS X","EventMachine, fibers, em-synchrony, em-http-request, em-synchrony/em-http, sinatra/synchrony. WTF? This is madness.","","","","" "322486273916948481","","","2013-04-11 23:08:13 +0000","OS X","If you think async with node.js is difficult try doing something simple like parallel HTTP & TCP requests in Sinatra. My brain hurts.","","","","" -"322441230774579201","322435762551390210","14231571","2013-04-11 20:09:14 +0000","Twitterrific for Mac","@marcoarment At least you're not on Rackspace.","","","","" -"322404031668555776","","","2013-04-11 17:41:25 +0000","Twitterrific for Mac","RT @jeremyckahn: Protip: Nobody is really ""qualified"" to give tech talks. We're all exploring and figuring it out. Just share what you ...","322390046491688960","24949617","2013-04-11 16:45:51 +0000","" -"322403232615895040","","","2013-04-11 17:38:15 +0000","Twitterrific for Mac","@ColtonPhillips @_knutaf The same social habits that are good for other humans I guess.","","","","" -"322127024913276929","","","2013-04-10 23:20:42 +0000","Twitterrific for Mac","RT @Cabel: Status Board Tidbit #3: Unsure that Apple would approve it, we built a quick prototype and submitted that. In 2011. http://t. ...","322087418419351552","1919231","2013-04-10 20:43:19 +0000","http://cl.ly/OCd7" -"322109525643636736","","","2013-04-10 22:11:10 +0000","Twitterrific for Mac","RT @mathpunk: i'm holding my bitcoin snark comments until i have a cogent explanation of what a ""dollar"" is","322062896148410368","7621482","2013-04-10 19:05:52 +0000","" -"322075508009476096","","","2013-04-10 19:55:59 +0000","Twitterrific for Mac","RT @siracusa: Related developer shame: http://t.co/DRpnrtvvAz","322004749853552640","636923","2013-04-10 15:14:49 +0000","http://weblog.rogueamoeba.com/2009/02/07/usability-nightmare-web-forms/,http://weblog.rogueamoeba.com/2009/02/07/usability-nightmare-web-forms/" -"321775723591368705","321775144647417856","14315117","2013-04-10 00:04:45 +0000","Twitterrific for Mac","@dainerose Ha, that's hilarious! Gotta start carrying a backpack or purse everywhere. Apparently people love their Notes though. Have fun!","","","","" -"321775570071478272","","","2013-04-10 00:04:08 +0000","Twitterrific for Mac","RT ""@dainerose: @_sjs it doesnt fit in my pocket!""","","","","" -"321771737719140354","","","2013-04-09 23:48:55 +0000","Twitterrific for Mac","Well what'd ya know. Someone I know in real life has a Galaxy Note 2. And it's probably about half her height. (Sorry @dainerose, I had to)","","","","" -"321722672922898432","321701795959296000","14864447","2013-04-09 20:33:57 +0000","Twitterrific for Mac","@bryan_kyle Is Steve Ballmer in Victoria?","","","","" -"321699628145836032","321633990165540864","14864447","2013-04-09 19:02:22 +0000","Twitterrific for Mac","@bryan_kyle Man, that's a good tip. I'll file that away for later.","","","","" -"321091368036491264","","","2013-04-08 02:45:22 +0000","Twitterrific for Mac","@ColtonPhillips Ha, I'm not sure. I don't think it would be a problem. Worth a shot.","","","","" +"322441230774579201","322435762551390210","14231571","2013-04-11 20:09:14 +0000","Twitterrific for Mac","@marcoarment At least you're not on Rackspace.","","","","" +"322404031668555776","","","2013-04-11 17:41:25 +0000","Twitterrific for Mac","RT @jeremyckahn: Protip: Nobody is really ""qualified"" to give tech talks. We're all exploring and figuring it out. Just share what you ...","322390046491688960","24949617","2013-04-11 16:45:51 +0000","" +"322403232615895040","","","2013-04-11 17:38:15 +0000","Twitterrific for Mac","@ColtonPhillips @_knutaf The same social habits that are good for other humans I guess.","","","","" +"322127024913276929","","","2013-04-10 23:20:42 +0000","Twitterrific for Mac","RT @Cabel: Status Board Tidbit #3: Unsure that Apple would approve it, we built a quick prototype and submitted that. In 2011. http://t. ...","322087418419351552","1919231","2013-04-10 20:43:19 +0000","http://cl.ly/OCd7" +"322109525643636736","","","2013-04-10 22:11:10 +0000","Twitterrific for Mac","RT @mathpunk: i'm holding my bitcoin snark comments until i have a cogent explanation of what a ""dollar"" is","322062896148410368","7621482","2013-04-10 19:05:52 +0000","" +"322075508009476096","","","2013-04-10 19:55:59 +0000","Twitterrific for Mac","RT @siracusa: Related developer shame: http://t.co/DRpnrtvvAz","322004749853552640","636923","2013-04-10 15:14:49 +0000","http://weblog.rogueamoeba.com/2009/02/07/usability-nightmare-web-forms/,http://weblog.rogueamoeba.com/2009/02/07/usability-nightmare-web-forms/" +"321775723591368705","321775144647417856","14315117","2013-04-10 00:04:45 +0000","Twitterrific for Mac","@dainerose Ha, that's hilarious! Gotta start carrying a backpack or purse everywhere. Apparently people love their Notes though. Have fun!","","","","" +"321775570071478272","","","2013-04-10 00:04:08 +0000","Twitterrific for Mac","RT ""@dainerose: @_sjs it doesnt fit in my pocket!""","","","","" +"321771737719140354","","","2013-04-09 23:48:55 +0000","Twitterrific for Mac","Well what'd ya know. Someone I know in real life has a Galaxy Note 2. And it's probably about half her height. (Sorry @dainerose, I had to)","","","","" +"321722672922898432","321701795959296000","14864447","2013-04-09 20:33:57 +0000","Twitterrific for Mac","@bryan_kyle Is Steve Ballmer in Victoria?","","","","" +"321699628145836032","321633990165540864","14864447","2013-04-09 19:02:22 +0000","Twitterrific for Mac","@bryan_kyle Man, that's a good tip. I'll file that away for later.","","","","" +"321091368036491264","","","2013-04-08 02:45:22 +0000","Twitterrific for Mac","@ColtonPhillips Ha, I'm not sure. I don't think it would be a problem. Worth a shot.","","","","" "320989259039404032","","","2013-04-07 19:59:37 +0000","Tweetbot for iOS","RT @felixge: Looking for an iOS dev to pair with me on some fun open source stuff! https://t.co/GMT2CRmW6o - plz RT.","320962915924598784","9599342","2013-04-07 18:14:57 +0000","https://gist.github.com/felixge/1b123c6340c026857610,https://gist.github.com/felixge/1b123c6340c026857610" "320919614068506624","","","2013-04-07 15:22:53 +0000","Tweetbot for iOS","@ColtonPhillips There is the tc10k on the 28th. Are you going to go for it?","","","","" "320421654767489026","","","2013-04-06 06:24:10 +0000","iOS","It’s plague time.","","","","" -"320341800181178368","320341372911620096","22196723","2013-04-06 01:06:51 +0000","Twitterrific for Mac","@markkolich Agreed, but it's easy to unfollow anyone who acts like a jack ass so it seems there's little motivation to annoy people with it.","","","","" -"320234774151196672","320234242980323328","18137723","2013-04-05 18:01:34 +0000","Twitterrific for Mac","@raganwald So we're all safe until a farm or slaughterhouse hires you for some contract work?","","","","" -"320234092195102720","320213916032577537","22196723","2013-04-05 17:58:51 +0000","Twitterrific for Mac","@markkolich Newlines have been rendered properly by most clients for ages, just not the twitter website. +"320341800181178368","320341372911620096","22196723","2013-04-06 01:06:51 +0000","Twitterrific for Mac","@markkolich Agreed, but it's easy to unfollow anyone who acts like a jack ass so it seems there's little motivation to annoy people with it.","","","","" +"320234774151196672","320234242980323328","18137723","2013-04-05 18:01:34 +0000","Twitterrific for Mac","@raganwald So we're all safe until a farm or slaughterhouse hires you for some contract work?","","","","" +"320234092195102720","320213916032577537","22196723","2013-04-05 17:58:51 +0000","Twitterrific for Mac","@markkolich Newlines have been rendered properly by most clients for ages, just not the twitter website. yeah.","","","","" -"320231971638890499","320201272991039488","18137723","2013-04-05 17:50:26 +0000","Twitterrific for Mac","@raganwald Please don't start tweeting about animal rights as well ;-)","","","","" +"320231971638890499","320201272991039488","18137723","2013-04-05 17:50:26 +0000","Twitterrific for Mac","@raganwald Please don't start tweeting about animal rights as well ;-)","","","","" "320206773816545280","","","2013-04-05 16:10:18 +0000","iOS","Facebook Home looks awesome. I don’t even use Facebook and I think it’s awesome. This is going to be a big deal.","","","","" "320192572955959297","","","2013-04-05 15:13:52 +0000","OS X","I haven't learned a new programming language in 3 years. With @joeerl's 2nd ed of Programming Erlang on the horizon maybe that should be it.","","","","" -"320189774637985793","","","2013-04-05 15:02:45 +0000","Twitterrific for Mac","RT @wwwtxt: I can type faster than I can use a stupid mouse. Maybe I'm just uncoordinated. ☯93NOV","320130475224080384","207756340","2013-04-05 11:07:07 +0000","" -"320189494231969792","","","2013-04-05 15:01:38 +0000","Twitterrific for Mac","Check out this fantastic article on @AppDotNet by @mattgemmell: http://t.co/FowukvCm7N … and then get yourself an invitation and join us!","","","","http://mattgemmell.com/2013/04/05/app-net-for-conversations/" -"319894263775244288","","","2013-04-04 19:28:30 +0000","Twitterrific for Mac","RT @jdalton: My current feed is: One Google employee RTs another Google employee's tweet of another Google employee's post praising thei ...","319880183714811905","14272162","2013-04-04 18:32:33 +0000","" -"319857278134140928","319856582190067715","14100886","2013-04-04 17:01:32 +0000","Twitterrific for Mac","@pengwynn Bad example, not convinced :) ""The Minnesota Wild have won"" or ""Orlando Magic have defeated …"" +"320189774637985793","","","2013-04-05 15:02:45 +0000","Twitterrific for Mac","RT @wwwtxt: I can type faster than I can use a stupid mouse. Maybe I'm just uncoordinated. ☯93NOV","320130475224080384","207756340","2013-04-05 11:07:07 +0000","" +"320189494231969792","","","2013-04-05 15:01:38 +0000","Twitterrific for Mac","Check out this fantastic article on @AppDotNet by @mattgemmell: http://t.co/FowukvCm7N … and then get yourself an invitation and join us!","","","","http://mattgemmell.com/2013/04/05/app-net-for-conversations/" +"319894263775244288","","","2013-04-04 19:28:30 +0000","Twitterrific for Mac","RT @jdalton: My current feed is: One Google employee RTs another Google employee's tweet of another Google employee's post praising thei ...","319880183714811905","14272162","2013-04-04 18:32:33 +0000","" +"319857278134140928","319856582190067715","14100886","2013-04-04 17:01:32 +0000","Twitterrific for Mac","@pengwynn Bad example, not convinced :) ""The Minnesota Wild have won"" or ""Orlando Magic have defeated …"" We're inconsistent w/ companies.","","","","" -"319856080249303041","319849858167091202","14100886","2013-04-04 16:56:46 +0000","Twitterrific for Mac","@pengwynn Canadian English is crazy. Half British, half American. Don't you guys also say ""the Cowboys have traded …"" or ""they've done it""?","","","","" +"319856080249303041","319849858167091202","14100886","2013-04-04 16:56:46 +0000","Twitterrific for Mac","@pengwynn Canadian English is crazy. Half British, half American. Don't you guys also say ""the Cowboys have traded …"" or ""they've done it""?","","","","" "319837965947924480","319821303337082882","14100886","2013-04-04 15:44:48 +0000","Tweetbot for iOS","@pengwynn Is that strictly British? In Canada we talk about sports teams in plurality, but not companies.","","","","" "319837338199023616","","","2013-04-04 15:42:18 +0000","Tweetbot for iOS","RT @LodsysLLC: Thinking of suing @siracusa to make him start doing Hypercritical again. Our lawyers say it’s as legit as every other law ...","319820534428872704","1326945668","2013-04-04 14:35:32 +0000","" "319837081734098945","319817115328708609","636923","2013-04-04 15:41:17 +0000","Tweetbot for iOS","@siracusa If you close the close button how will you close the actual dialog?","","","","" -"319230412259991552","319228777894928384","636923","2013-04-02 23:30:35 +0000","Twitterrific for Mac","@siracusa I wonder why the RSS feeds linked on http://t.co/SUuHWhP7sm are for the desktop site and not the mobile version. That'd help.","","","","http://m.xkcd.com" -"319212997383946240","319212823009968128","14864447","2013-04-02 22:21:23 +0000","Twitterrific for Mac","@bryan_kyle @JimRoepcke Thank science.","","","","" -"319207634244861954","319207225782583296","894911","2013-04-02 22:00:05 +0000","Twitterrific for Mac","@JimRoepcke @bryan_kyle Wait, that wasn't a joke?! :o","","","","" -"319204384208736257","319204161050800128","894911","2013-04-02 21:47:10 +0000","Twitterrific for Mac","@JimRoepcke I just read the rest of the conversation, derp. That's too bad. Too bad @bryan_kyle didn't share the code when he wrote it ;-)","","","","" -"319203811996602368","319184797979258880","20079975","2013-04-02 21:44:53 +0000","Twitterrific for Mac","@polotek I'll click on them if I don't like the advertiser so it costs them money.","","","","" +"319230412259991552","319228777894928384","636923","2013-04-02 23:30:35 +0000","Twitterrific for Mac","@siracusa I wonder why the RSS feeds linked on http://t.co/SUuHWhP7sm are for the desktop site and not the mobile version. That'd help.","","","","http://m.xkcd.com" +"319212997383946240","319212823009968128","14864447","2013-04-02 22:21:23 +0000","Twitterrific for Mac","@bryan_kyle @JimRoepcke Thank science.","","","","" +"319207634244861954","319207225782583296","894911","2013-04-02 22:00:05 +0000","Twitterrific for Mac","@JimRoepcke @bryan_kyle Wait, that wasn't a joke?! :o","","","","" +"319204384208736257","319204161050800128","894911","2013-04-02 21:47:10 +0000","Twitterrific for Mac","@JimRoepcke I just read the rest of the conversation, derp. That's too bad. Too bad @bryan_kyle didn't share the code when he wrote it ;-)","","","","" +"319203811996602368","319184797979258880","20079975","2013-04-02 21:44:53 +0000","Twitterrific for Mac","@polotek I'll click on them if I don't like the advertiser so it costs them money.","","","","" "319113764827979776","","","2013-04-02 15:47:05 +0000","Tweetbot for iOS","RT @joeerl: Red and Green Callbacks http://t.co/K9mREQdkLz","319050136405823488","51546468","2013-04-02 11:34:14 +0000","http://joearms.github.com/2013/04/02/Red-and-Green-Callbacks.html,http://joearms.github.com/2013/04/02/Red-and-Green-Callbacks.html" "318876481872859136","318840464319053824","20079975","2013-04-02 00:04:12 +0000","Tweetbot for iOS","@polotek Here in Canada we just email money to each other with a security question. Supported by major banks & credit unions. Costs $1.","","","","" "318875615749091328","318806850554429440","14273142","2013-04-02 00:00:45 +0000","Tweetbot for iOS","@lunafiko @jetbrains April Fool’s joke?","","","","" "318868337318846464","318725956116295680","636923","2013-04-01 23:31:50 +0000","Tweetbot for iOS","@siracusa Those poor C developers who use csh. Nasty prank: alias unlink=rm","","","","" "317421277793120256","","","2013-03-28 23:41:44 +0000","OS X","""But, having a bad day on the Internet is nothing new.""","","","","" -"317360590270115841","","","2013-03-28 19:40:35 +0000","Twitterrific for Mac","RT @creationix: I mean, *nothing* else has the reach of the web platform. It runs on everything from cell-phones to TV's...","317357404465549312","70596949","2013-03-28 19:27:56 +0000","" -"317360337361960960","317270857678471169","14100886","2013-03-28 19:39:35 +0000","Twitterrific for Mac","@pengwynn Thanks so much for sharing that URL quoting magic. I'll never have to opt-left opt-left ' ctrl-e ' again.","","","","" -"317343282030080000","","","2013-03-28 18:31:49 +0000","Twitterrific for Mac","RT @pengwynn: zsh URL quote magic is magical: http://t.co/NMEHHenRNa Put this in your .zshrc: http://t.co/lBEBu7lyvE","317270857678471169","14100886","2013-03-28 13:44:01 +0000","http://ascii.io/a/2621,http://git.io/aUACYw,http://ascii.io/a/2621,http://git.io/aUACYw" -"317052048858312704","","","2013-03-27 23:14:33 +0000","Twitterrific for Mac","RT @raganwald: Solving the wrong problem http://t.co/CaOYEYp2tn","317048711798747137","18137723","2013-03-27 23:01:18 +0000","http://joearms.github.com/2013/03/28/solving-the-wrong-problem.html,http://joearms.github.com/2013/03/28/solving-the-wrong-problem.html" -"317005962496073730","317004543135211520","894911","2013-03-27 20:11:25 +0000","Twitterrific for Mac","@JimRoepcke (I don't own one, just tried a friend's. His wife takes notes on her iPad and swears by it.)","","","","" -"317005859739824128","317004543135211520","894911","2013-03-27 20:11:01 +0000","Twitterrific for Mac","@JimRoepcke Oh neat, yeah similar tip on that stylus. I didn't even want to touch my iPad with it at first but after scribbling I was sold.","","","","" -"317003376728612864","316989871451414528","894911","2013-03-27 20:01:09 +0000","Twitterrific for Mac","@JimRoepcke http://t.co/wtR2wwFaJG","","","","http://www.theverge.com/2012/4/10/2925937/best-stylus-ipad-review" -"317003187804577792","316989871451414528","894911","2013-03-27 20:00:24 +0000","Twitterrific for Mac","@JimRoepcke I haven't used it for drawing, but the Adonit Jot Pro is a really interesting stylus that works well. Looks crazy but feels good","","","","" +"317360590270115841","","","2013-03-28 19:40:35 +0000","Twitterrific for Mac","RT @creationix: I mean, *nothing* else has the reach of the web platform. It runs on everything from cell-phones to TV's...","317357404465549312","70596949","2013-03-28 19:27:56 +0000","" +"317360337361960960","317270857678471169","14100886","2013-03-28 19:39:35 +0000","Twitterrific for Mac","@pengwynn Thanks so much for sharing that URL quoting magic. I'll never have to opt-left opt-left ' ctrl-e ' again.","","","","" +"317343282030080000","","","2013-03-28 18:31:49 +0000","Twitterrific for Mac","RT @pengwynn: zsh URL quote magic is magical: http://t.co/NMEHHenRNa Put this in your .zshrc: http://t.co/lBEBu7lyvE","317270857678471169","14100886","2013-03-28 13:44:01 +0000","http://ascii.io/a/2621,http://git.io/aUACYw,http://ascii.io/a/2621,http://git.io/aUACYw" +"317052048858312704","","","2013-03-27 23:14:33 +0000","Twitterrific for Mac","RT @raganwald: Solving the wrong problem http://t.co/CaOYEYp2tn","317048711798747137","18137723","2013-03-27 23:01:18 +0000","http://joearms.github.com/2013/03/28/solving-the-wrong-problem.html,http://joearms.github.com/2013/03/28/solving-the-wrong-problem.html" +"317005962496073730","317004543135211520","894911","2013-03-27 20:11:25 +0000","Twitterrific for Mac","@JimRoepcke (I don't own one, just tried a friend's. His wife takes notes on her iPad and swears by it.)","","","","" +"317005859739824128","317004543135211520","894911","2013-03-27 20:11:01 +0000","Twitterrific for Mac","@JimRoepcke Oh neat, yeah similar tip on that stylus. I didn't even want to touch my iPad with it at first but after scribbling I was sold.","","","","" +"317003376728612864","316989871451414528","894911","2013-03-27 20:01:09 +0000","Twitterrific for Mac","@JimRoepcke http://t.co/wtR2wwFaJG","","","","http://www.theverge.com/2012/4/10/2925937/best-stylus-ipad-review" +"317003187804577792","316989871451414528","894911","2013-03-27 20:00:24 +0000","Twitterrific for Mac","@JimRoepcke I haven't used it for drawing, but the Adonit Jot Pro is a really interesting stylus that works well. Looks crazy but feels good","","","","" "316992926418874368","316981566838550528","18006104","2013-03-27 19:19:37 +0000","Tweetbot for iOS","@EricAlanDyck WHAT THE FUCK IS THAT MAN","","","","" "316332917288734720","","","2013-03-25 23:36:59 +0000","OS X","Simplebird is cool: http://t.co/fI2AJkCycH Get it here -> https://t.co/ywMe9Pal9s","","","","http://samhuri.net/tweets/,https://github.com/josephschmitt/simplebird" -"316326788307505153","316319704782356480","20079975","2013-03-25 23:12:38 +0000","Twitterrific for Mac","@polotek @instapaper I do that once or twice a year. It's healthy. If you're not going to read it then there is no loss by clearing it out.","","","","" +"316326788307505153","316319704782356480","20079975","2013-03-25 23:12:38 +0000","Twitterrific for Mac","@polotek @instapaper I do that once or twice a year. It's healthy. If you're not going to read it then there is no loss by clearing it out.","","","","" "315233099401293826","","","2013-03-22 22:46:42 +0000","Tweetbot for iOS","RT @mraleph: I don't look people in the eyes because I am afraid to suck their brains out through my gaze. All my social troubles stem f ...","315226063917690881","53010195","2013-03-22 22:18:44 +0000","" -"314801324782931969","","","2013-03-21 18:10:59 +0000","Twitterrific for Mac","RT @shanselman: The Internet needs a timeout to go its +"314801324782931969","","","2013-03-21 18:10:59 +0000","Twitterrific for Mac","RT @shanselman: The Internet needs a timeout to go its room to think about what it's done.","314790769338769408","5676102","2013-03-21 17:29:02 +0000","" "314787203706400770","","","2013-03-21 17:14:52 +0000","Tweetbot for iOS","RT @tomdale: Good morning everyone! *opens HN and Twitter* @@ -5149,55 +5245,55 @@ NOPE "314613348840906752","314592076945838080","74837444","2013-03-21 05:44:02 +0000","Tweetbot for iOS","@Badger32d Some people are just uptight. Of course I’m a white male so I can’t have opinions. Or something like that. I don’t really get it.","","","","" "314612625474461699","314592076945838080","74837444","2013-03-21 05:41:09 +0000","Tweetbot for iOS","@Badger32d I’m wary of involving myself at all, but from the tiny context I have it seems like gender doesn’t even enter into this brouhaha.","","","","" "314574365301821440","","","2013-03-21 03:09:07 +0000","Tweetbot for iOS","RT @nerdtalker: Ran sunspider on the Tesla Model S, I'm done here http://t.co/6XmuuemO6X","314547501602574336","15122081","2013-03-21 01:22:23 +0000","https://twitter.com/nerdtalker/status/314547501602574336/photo/1,https://twitter.com/nerdtalker/status/314547501602574336/photo/1" -"314508422613700610","","","2013-03-20 22:47:05 +0000","Twitterrific for Mac","RT @antirez: Finally I'm seeing Redis Cluster working in all of its main parts: creation, resharding, automatic failover. Very very happ ...","314454025460400128","5813712","2013-03-20 19:10:56 +0000","" -"314413898772135939","","","2013-03-20 16:31:29 +0000","Twitterrific for Mac","RT @wwwtxt: I want my old news reader back, please, can I have my news reader back? ☯93OCT","314388544087019520","207756340","2013-03-20 14:50:44 +0000","" +"314508422613700610","","","2013-03-20 22:47:05 +0000","Twitterrific for Mac","RT @antirez: Finally I'm seeing Redis Cluster working in all of its main parts: creation, resharding, automatic failover. Very very happ ...","314454025460400128","5813712","2013-03-20 19:10:56 +0000","" +"314413898772135939","","","2013-03-20 16:31:29 +0000","Twitterrific for Mac","RT @wwwtxt: I want my old news reader back, please, can I have my news reader back? ☯93OCT","314388544087019520","207756340","2013-03-20 14:50:44 +0000","" "314135372017840128","","","2013-03-19 22:04:43 +0000","OS X","OH: ""I had to wait 'til I was finished so I could get up and clean my pants.""","","","","" "314051704821784578","","","2013-03-19 16:32:15 +0000","Tweetbot for iOS","I just saw a real life Patty the daytime hooker (from My Name Is Earl). Resisted snapping her photo.","","","","" "314032250616442882","313877167278800897","232701963","2013-03-19 15:14:57 +0000","Tweetbot for iOS","@fyrite that was pretty hot","","","","" "313844752317566978","","","2013-03-19 02:49:54 +0000","Instapaper","Great article by @antirez: Tcl the Misunderstood http://t.co/0VpHnOX9qu (via Instapaper)","","","","http://antirez.com/articoli/tclmisunderstood.html" -"313777549916397569","313764108652642304","1007655271","2013-03-18 22:22:52 +0000","Twitterrific for Mac","@nicolous123 you've got the wrong person","","","","" +"313777549916397569","313764108652642304","1007655271","2013-03-18 22:22:52 +0000","Twitterrific for Mac","@nicolous123 you've got the wrong person","","","","" "313143210685894656","313141773461495809","894911","2013-03-17 04:22:14 +0000","Tweetbot for iOS","@JimRoepcke Doing a podcast is a lot of work for two guys in their spare time, especially if you want to get sponsors and such.","","","","" "313143058654973952","313141773461495809","894911","2013-03-17 04:21:37 +0000","Tweetbot for iOS","@JimRoepcke I have no idea what I might talk about in a regular podcast. I might be down to record a conversation and see if it’s any good.","","","","" "313141428509368320","","","2013-03-17 04:15:09 +0000","Tweetbot for iOS","Wow, @gruber now charges $8,500/week to advertise on DF. That plus ad and podcast revenue should be a nice monthly pay cheque. Good for him!","","","","" -"313121241923997696","","","2013-03-17 02:54:56 +0000","Twitterrific for Mac","@ColtonPhillips mIRC last I checked … but last I checked was before 2004.","","","","" +"313121241923997696","","","2013-03-17 02:54:56 +0000","Twitterrific for Mac","@ColtonPhillips mIRC last I checked … but last I checked was before 2004.","","","","" "313026879084982274","","","2013-03-16 20:39:58 +0000","OS X","A simple inheritance system for JavaScript (ES5+): https://t.co/BRAwQCUlbI","","","","https://github.com/samsonjs/base" "312712303877443584","","","2013-03-15 23:49:57 +0000","iOS","Should I click □□ or □□□□□□? http://t.co/6fOCdP9onX","","","","http://moby.to/bxnb7h" -"312310507224850432","","","2013-03-14 21:13:22 +0000","Twitterrific for Mac","RT @yannickc: Every single developer today http://t.co/Mi3lVtGxwN","312129199420882944","12590142","2013-03-14 09:12:54 +0000","https://twitter.com/yannickc/status/312129199420882944/photo/1,https://twitter.com/yannickc/status/312129199420882944/photo/1" -"312289090143936514","","","2013-03-14 19:48:15 +0000","Twitterrific for Mac","RT @marcoarment: I’m calling on @reederapp and @blackpixel to make a simple change to their RSS readers: http://t.co/jh2cFAR0tb","312287562117029888","14231571","2013-03-14 19:42:11 +0000","http://www.marco.org/2013/03/14/baby-steps-replacing-google-reader,http://www.marco.org/2013/03/14/baby-steps-replacing-google-reader" -"312251037576736769","312237371972280320","232701963","2013-03-14 17:17:03 +0000","Twitterrific for Mac","@fyrite Good luck slugger.","","","","" -"312086526622302208","","","2013-03-14 06:23:20 +0000","Twitterrific for Mac","Woah, just saw @github's snazzy new live update on a pull request I'm working on. Brilliant. Instant.","","","","" +"312310507224850432","","","2013-03-14 21:13:22 +0000","Twitterrific for Mac","RT @yannickc: Every single developer today http://t.co/Mi3lVtGxwN","312129199420882944","12590142","2013-03-14 09:12:54 +0000","https://twitter.com/yannickc/status/312129199420882944/photo/1,https://twitter.com/yannickc/status/312129199420882944/photo/1" +"312289090143936514","","","2013-03-14 19:48:15 +0000","Twitterrific for Mac","RT @marcoarment: I’m calling on @reederapp and @blackpixel to make a simple change to their RSS readers: http://t.co/jh2cFAR0tb","312287562117029888","14231571","2013-03-14 19:42:11 +0000","http://www.marco.org/2013/03/14/baby-steps-replacing-google-reader,http://www.marco.org/2013/03/14/baby-steps-replacing-google-reader" +"312251037576736769","312237371972280320","232701963","2013-03-14 17:17:03 +0000","Twitterrific for Mac","@fyrite Good luck slugger.","","","","" +"312086526622302208","","","2013-03-14 06:23:20 +0000","Twitterrific for Mac","Woah, just saw @github's snazzy new live update on a pull request I'm working on. Brilliant. Instant.","","","","" "312031802384609280","","","2013-03-14 02:45:53 +0000","Tweetbot for iOS","RT @_DavidSmith: This is probably a good time to say that the secret project I’ve been building is an RSS aggregation service to replace ...","312001884753887233","46800814","2013-03-14 00:47:00 +0000","" "312031481864265729","","","2013-03-14 02:44:37 +0000","Tweetbot for iOS","RT @Pinboard: ""We need to focus. Keep the self-driving cars, magic glasses, laptop, handheld OS, and Brazilian social network. Ditch the ...","311993204557877249","55525953","2013-03-14 00:12:31 +0000","" "312031377480630272","311988561513689088","22196723","2013-03-14 02:44:12 +0000","Tweetbot for iOS","@markkolich Are there better ways to keep up with hundreds of websites? I haven’t heard of any.","","","","" "312031069148946432","","","2013-03-14 02:42:58 +0000","Tweetbot for iOS","RT @siracusa: 1. Drive competing services out of business with a free service (subsidized by a profitable product). 2. Cancel free servi ...","311984542770659328","636923","2013-03-13 23:38:06 +0000","" -"311937267042246657","","","2013-03-13 20:30:14 +0000","Twitterrific for Mac","RT @benjaminfox: Where and when did the ""+"" and ""-"" symbols originate? https://t.co/B9mFmof0sW","311898642065813506","14417477","2013-03-13 17:56:45 +0000","https://blogs.stsci.edu/livio/2013/03/12/where-and-when-did-the-symbols-%E2%80%9C%E2%80%9D-and-%E2%80%9C%E2%80%93%E2%80%9D-originate/,https://blogs.stsci.edu/livio/2013/03/12/where-and-when-did-the-symbols-%E2%80%9C%E2%80%9D-and-%E2%80%9C%E2%80%93%E2%80%9D-originate/" -"311584406718517249","311580970501410816","636923","2013-03-12 21:08:06 +0000","Twitterrific for Mac","@siracusa http://t.co/xJLHEckGqQ","","","","http://i.imgur.com/oj1LPAO.jpg" +"311937267042246657","","","2013-03-13 20:30:14 +0000","Twitterrific for Mac","RT @benjaminfox: Where and when did the ""+"" and ""-"" symbols originate? https://t.co/B9mFmof0sW","311898642065813506","14417477","2013-03-13 17:56:45 +0000","https://blogs.stsci.edu/livio/2013/03/12/where-and-when-did-the-symbols-%E2%80%9C%E2%80%9D-and-%E2%80%9C%E2%80%93%E2%80%9D-originate/,https://blogs.stsci.edu/livio/2013/03/12/where-and-when-did-the-symbols-%E2%80%9C%E2%80%9D-and-%E2%80%9C%E2%80%93%E2%80%9D-originate/" +"311584406718517249","311580970501410816","636923","2013-03-12 21:08:06 +0000","Twitterrific for Mac","@siracusa http://t.co/xJLHEckGqQ","","","","http://i.imgur.com/oj1LPAO.jpg" "311366777537982465","","","2013-03-12 06:43:19 +0000","Tweetbot for iOS","""You call my brother-in-law Billy Bob. He got the fastest boat in the whole damn river."" - J. W. Pepper","","","","" "311353302099042304","","","2013-03-12 05:49:46 +0000","iOS","It’s a lot like a sweeter favourite of mine in high school: Jack Daniel’s, Southern Comfort, lemon, and 7-Up. Candy in a glass.","","","","" "311350268124078080","","","2013-03-12 05:37:43 +0000","Tweetbot for iOS","RT @danbenjamin: I’m glad that I got to do shows with @marcoarment and @siracusa and proud if anything I’ve done has helped them make so ...","311334268016148480","5905672","2013-03-12 04:34:08 +0000","" "311350129619763201","","","2013-03-12 05:37:10 +0000","iOS","Whiskey or bourbon, Cointreau, and the juice of half a lime. Shake with ice. Add soda if you want. Substitute lemon if you must.","","","","" "311326086061518848","311317460055887873","232701963","2013-03-12 04:01:37 +0000","Tweetbot for iOS","@fyrite Nooooooo!","","","","" -"311276966592540673","311252415171137536","894911","2013-03-12 00:46:26 +0000","Twitterrific for Mac","@JimRoepcke iMacs are sweet though. I bet you're going to love having a desktop again :)","","","","" -"311276811914973184","311252964885028865","894911","2013-03-12 00:45:49 +0000","Twitterrific for Mac","@JimRoepcke (and yes I did the upgrades myself, but everything I did was available BTO)","","","","" -"311276747318501376","311252964885028865","894911","2013-03-12 00:45:34 +0000","Twitterrific for Mac","@JimRoepcke I maxed out my MBP in 2010 and it's still great, I don't need an upgrade for another year or 2, easy. I think rMBPs are similar.","","","","" -"311249658582278144","","","2013-03-11 22:57:56 +0000","Twitterrific for Mac","RT @steveklabnik: I highly recommend this 'hack' http://t.co/PKhgNFPp0R","311186820950020099","22386062","2013-03-11 18:48:14 +0000","http://felixge.de/2013/03/11/the-pull-request-hack.html,http://felixge.de/2013/03/11/the-pull-request-hack.html" +"311276966592540673","311252415171137536","894911","2013-03-12 00:46:26 +0000","Twitterrific for Mac","@JimRoepcke iMacs are sweet though. I bet you're going to love having a desktop again :)","","","","" +"311276811914973184","311252964885028865","894911","2013-03-12 00:45:49 +0000","Twitterrific for Mac","@JimRoepcke (and yes I did the upgrades myself, but everything I did was available BTO)","","","","" +"311276747318501376","311252964885028865","894911","2013-03-12 00:45:34 +0000","Twitterrific for Mac","@JimRoepcke I maxed out my MBP in 2010 and it's still great, I don't need an upgrade for another year or 2, easy. I think rMBPs are similar.","","","","" +"311249658582278144","","","2013-03-11 22:57:56 +0000","Twitterrific for Mac","RT @steveklabnik: I highly recommend this 'hack' http://t.co/PKhgNFPp0R","311186820950020099","22386062","2013-03-11 18:48:14 +0000","http://felixge.de/2013/03/11/the-pull-request-hack.html,http://felixge.de/2013/03/11/the-pull-request-hack.html" "310884786778537984","310881755999649793","232701963","2013-03-10 22:48:03 +0000","Tweetbot for iOS","@fyrite Laugh it up.","","","","" "310868382847205377","","","2013-03-10 21:42:52 +0000","OS X","Oh my science, just saw a cock shot on Vinepeek. Fuck Vine, fuck Vine right in the ear.","","","","" "310842066143936512","","14231571","2013-03-10 19:58:18 +0000","Tweetbot for iOS","@marcoarment What happened to the Accidental Tech Podcast? I was saving episode 3 for this weekend but http://t.co/UtC0VU9byM is 404 now.","","","","http://neutral.fm/atp" "310827847210127360","310826797023518721","232701963","2013-03-10 19:01:48 +0000","Tweetbot for iOS","@fyrite For some values of glory. I guess I needed it.","","","","" "310815319046373376","","","2013-03-10 18:12:01 +0000","iOS","“How dare you send me this fucking piece of shit. You must be out of your fucking mind. You want to know how I fee — https://t.co/pueBCqhK0t","","","","https://posts.app.net/3709392" "310781788538667008","310629601615417345","232701963","2013-03-10 15:58:47 +0000","Tweetbot for iOS","@fyrite Holy shit. I didn’t get dressed or leave the house and I slept about 18 hours. At least.","","","","" -"310162833537126400","310129734224859138","894911","2013-03-08 22:59:16 +0000","Twitterrific for Mac","@JimRoepcke YOLO!","","","","" -"310129725597175808","","","2013-03-08 20:47:43 +0000","Twitterrific for Mac","RT @pdenya: Vine should drop the sound and turn the videos into gifs: +"310162833537126400","310129734224859138","894911","2013-03-08 22:59:16 +0000","Twitterrific for Mac","@JimRoepcke YOLO!","","","","" +"310129725597175808","","","2013-03-08 20:47:43 +0000","Twitterrific for Mac","RT @pdenya: Vine should drop the sound and turn the videos into gifs: - I could see them from tweetbot - I wouldn’t have to listen to you","310096775967039489","8549992","2013-03-08 18:36:47 +0000","" "310058775509889026","309508193669767168","2155041","2013-03-08 16:05:47 +0000","Tweetbot for iOS","@fawad Second last.","","","","" -"309922900847259648","309755626861506562","18137723","2013-03-08 07:05:52 +0000","Twitterrific for Mac","@raganwald The difference between currying and partial application is a lost cause. Like ""begs the question"".","","","","" +"309922900847259648","309755626861506562","18137723","2013-03-08 07:05:52 +0000","Twitterrific for Mac","@raganwald The difference between currying and partial application is a lost cause. Like ""begs the question"".","","","","" "309918731956547584","","","2013-03-08 06:49:18 +0000","OS X","Also released format 0.2.0 today, works in browsers out of the box now. (printf and sprintf for JavaScript) https://t.co/hLsmFHbnen","","","","https://github.com/samsonjs/format" "309866932293742592","","","2013-03-08 03:23:28 +0000","OS X","strftime 0.5.1 released today, bug fixes for formats in timezones east of GMT. https://t.co/uZDDEx5XFf (JS, node + browsers)","","","","https://github.com/samsonjs/strftime" -"309685767662338048","309646833351790592","16414747","2013-03-07 15:23:35 +0000","Twitterrific for Mac","@emachnic That looks interesting. Cheers, but also, curse you for making the decision more involved ;)","","","","" -"309685271732043776","309647274751979521","16058184","2013-03-07 15:21:37 +0000","Twitterrific for Mac","@erichmenge Oh god. I thought I just had to ditch C extensions. Good to know.","","","","" +"309685767662338048","309646833351790592","16414747","2013-03-07 15:23:35 +0000","Twitterrific for Mac","@emachnic That looks interesting. Cheers, but also, curse you for making the decision more involved ;)","","","","" +"309685271732043776","309647274751979521","16058184","2013-03-07 15:21:37 +0000","Twitterrific for Mac","@erichmenge Oh god. I thought I just had to ditch C extensions. Good to know.","","","","" "309559167499259904","309551078049972224","156740629","2013-03-07 07:00:31 +0000","Tweetbot for iOS","@jamuc (and by JVM I mean the platform, not the JVM itself obviously)","","","","" "309558668972683264","309557537311694848","8439592","2013-03-07 06:58:32 +0000","Tweetbot for iOS","@shtirlic Will do. Thanks.","","","","" "309558474373754880","309551078049972224","156740629","2013-03-07 06:57:46 +0000","Tweetbot for iOS","@jamuc @headius Well I have 2/3 of them with Ruby 1.9 and unicorn right now, but performance is lacking a bit. Too much to ask of the JVM?","","","","" @@ -5210,26 +5306,26 @@ NOPE "309516106660466690","","","2013-03-07 04:09:25 +0000","Tweetbot for iOS","Currently using MRI 1.9.3 and unicorn. I normally just do what @github does but want to try out JRuby. No experience deploying with the JVM.","","","","" "309515771577524224","","","2013-03-07 04:08:05 +0000","Tweetbot for iOS","Who’s using JRuby? Any opinions on Trinidad and TorqueBox? I just want good performance, zero downtime restarts, and easy admin. +@headius","","","","" "309512200857481216","","","2013-03-07 03:53:53 +0000","Tweetbot for iOS","RT @siracusa: Life was such a wheel that no technology could stand upon it for long… http://t.co/5mAK1fYEp6 http://t.co/I1u4f0PH6C","309329046607642624","636923","2013-03-06 15:46:06 +0000","http://bjk5.com/post/44698559168/breaking-down-amazons-mega-dropdown,http://arstechnica.com/apple/1999/12/macos-x-dp2/5/,http://bjk5.com/post/44698559168/breaking-down-amazons-mega-dropdown,http://arstechnica.com/apple/1999/12/macos-x-dp2/5/" -"309506596814327808","","","2013-03-07 03:31:37 +0000","Twitterrific for Mac","Interested in some Zelda tones for your iOS device? Here you go: http://t.co/GGShvunwHF","","","","http://samhuri.net/blog/2013.03.06-zelda-tones-for-ios" +"309506596814327808","","","2013-03-07 03:31:37 +0000","Twitterrific for Mac","Interested in some Zelda tones for your iOS device? Here you go: http://t.co/GGShvunwHF","","","","http://samhuri.net/blog/2013.03.06-zelda-tones-for-ios" "308603623393329154","308596564048347136","14231571","2013-03-04 15:43:32 +0000","Tweetbot for iOS","@marcoarment Should reflect your audience. Geeks know 1) how to jailbreak, and 2) that they can easily restore iOS if it goes pear shaped.","","","","" -"308458652191305728","","","2013-03-04 06:07:28 +0000","Twitterrific for Mac","Phew! I put 596 movies into @Letterboxd. I liked 48 of them, and rated 533. It was a chore but it's cool to have that all down somewhere.","","","","" +"308458652191305728","","","2013-03-04 06:07:28 +0000","Twitterrific for Mac","Phew! I put 596 movies into @Letterboxd. I liked 48 of them, and rated 533. It was a chore but it's cool to have that all down somewhere.","","","","" "308139319237955584","308044829122772995","46852648","2013-03-03 08:58:33 +0000","Tweetbot for iOS","@postmodern_mod3 @Badger32d looks like it would match well with ruby-build too. Thanks for the tip.","","","","" "307691919385968640","307683554589032450","74837444","2013-03-02 03:20:44 +0000","Tweetbot for iOS","@Badger32d Gotta be a contractor thing. I mainly work on one project, but do test on new versions. I don’t use alt. implementations either.","","","","" "307683324640497664","307683095346307072","74837444","2013-03-02 02:46:35 +0000","Tweetbot for iOS","@Badger32d As someone who really likes the language, the environment & ecosystem can be a bitch. rbenv and bundled help, most of the time.","","","","" "307682935283277824","307679986251358208","74837444","2013-03-02 02:45:02 +0000","Tweetbot for iOS","@Badger32d Oh you solved it! Good stuff. I’ve found rbenv simpler. rvm might be better for complex needs, but those I ain’t got.","","","","" "307682657721004032","307676370673217536","74837444","2013-03-02 02:43:56 +0000","Tweetbot for iOS","@Badger32d Ugh. Maybe stick with rvm since it’s working. So much for my dig at rvm :)","","","","" "307676208676610049","307675407191269376","74837444","2013-03-02 02:18:19 +0000","Tweetbot for iOS","@Badger32d That doesn’t sound good. rbenv works otherwise? I’ve never loaded both in one shell.","","","","" -"307626074517430272","","","2013-03-01 22:59:06 +0000","Twitterrific for Mac","""At that point you may as well just put a shebang line up top and chmod +x it."" +"307626074517430272","","","2013-03-01 22:59:06 +0000","Twitterrific for Mac","""At that point you may as well just put a shebang line up top and chmod +x it."" ""You guys are speaking another language."" Paul can't Unix.","","","","" -"307624931049480192","","","2013-03-01 22:54:33 +0000","Twitterrific for Mac","RT @pdenya: Unstoppable: http://t.co/vjzFJ3xHv5","307619870760108032","8549992","2013-03-01 22:34:27 +0000","http://i.imgur.com/jpD1Shi.jpg,http://i.imgur.com/jpD1Shi.jpg" -"307599365428625408","307596254395899905","539153822","2013-03-01 21:12:58 +0000","Twitterrific for Mac","@GitHubAPI *shakes fist* +"307624931049480192","","","2013-03-01 22:54:33 +0000","Twitterrific for Mac","RT @pdenya: Unstoppable: http://t.co/vjzFJ3xHv5","307619870760108032","8549992","2013-03-01 22:34:27 +0000","http://i.imgur.com/jpD1Shi.jpg,http://i.imgur.com/jpD1Shi.jpg" +"307599365428625408","307596254395899905","539153822","2013-03-01 21:12:58 +0000","Twitterrific for Mac","@GitHubAPI *shakes fist* Thanks for the heads up on twitter.","","","","" -"307581511341850624","307580805687934976","14315117","2013-03-01 20:02:01 +0000","Twitterrific for Mac","@dainerose Ha, like @joshuatopolsky here: http://t.co/zfEvWRiFUX … I think it looks ok for what it is though. http://t.co/XradLOXwpa","","","","http://assets.sbnation.com/assets/2215633/glass-300-use.jpg,http://www.wearcam.org/steve5.jpg" -"307574435483901952","307574157892280320","74837444","2013-03-01 19:33:54 +0000","Twitterrific for Mac","@Badger32d That's good! Lots of people use rvm so I'm sure it's good, but I had trouble with it too. I just wanted to give you a hard time.","","","","" -"307573717196738563","307533539451232256","74837444","2013-03-01 19:31:03 +0000","Twitterrific for Mac","@Badger32d *cough* rbenv + ruby-build *cough* … and seriously dude, homebrew. MacPorts? It's not 2004 :) http://t.co/XTSv7tEQLY","","","","http://img.ly/t4a5" +"307581511341850624","307580805687934976","14315117","2013-03-01 20:02:01 +0000","Twitterrific for Mac","@dainerose Ha, like @joshuatopolsky here: http://t.co/zfEvWRiFUX … I think it looks ok for what it is though. http://t.co/XradLOXwpa","","","","http://assets.sbnation.com/assets/2215633/glass-300-use.jpg,http://www.wearcam.org/steve5.jpg" +"307574435483901952","307574157892280320","74837444","2013-03-01 19:33:54 +0000","Twitterrific for Mac","@Badger32d That's good! Lots of people use rvm so I'm sure it's good, but I had trouble with it too. I just wanted to give you a hard time.","","","","" +"307573717196738563","307533539451232256","74837444","2013-03-01 19:31:03 +0000","Twitterrific for Mac","@Badger32d *cough* rbenv + ruby-build *cough* … and seriously dude, homebrew. MacPorts? It's not 2004 :) http://t.co/XTSv7tEQLY","","","","http://img.ly/t4a5" "307529525175140353","","","2013-03-01 16:35:27 +0000","iOS","Don’t get me wrong, Glass is interesting. It just isn’t some kind of “cure” for a smartphone “disease”.","","","","" "307526591087525889","","","2013-03-01 16:23:47 +0000","iOS","And if it is a problem for some people then strapping a damn computer to their face is certainly not a solution.","","","","" "307526399521083392","","","2013-03-01 16:23:01 +0000","iOS","Bullshit. This isn’t new and it isn’t a problem. @@ -5237,7 +5333,7 @@ Thanks for the heads up on twitter.","","","","" “Human beings have developed a new problem since the advent of t — https://t.co/hMkG6VoycX","","","","https://posts.app.net/3375784" "307518957311647744","","","2013-03-01 15:53:27 +0000","Tweetbot for iOS","I almost feel bad for Wu. A literary smackdown. @gruber just sticks to facts. “@daringfireball: ★ Open and Shut: http://t.co/Nl5Zuom4SY”","","","","http://df4.us/l0p" "307511644316123136","307455928452653058","33493","2013-03-01 15:24:23 +0000","Tweetbot for iOS","@peterc Jammy git.","","","","" -"307209727719387136","307203699086868481","165975834","2013-02-28 19:24:41 +0000","Twitterrific for Mac","@PiCNiC_Coffee What's your phone number over at Picnic Too? Can't find it on the tumblr site.","","","","" +"307209727719387136","307203699086868481","165975834","2013-02-28 19:24:41 +0000","Twitterrific for Mac","@PiCNiC_Coffee What's your phone number over at Picnic Too? Can't find it on the tumblr site.","","","","" "306966781816340480","306872322818715648","96383","2013-02-28 03:19:18 +0000","Tweetbot for iOS","@zachleat @paul_irish @kangax Should dragging your finger on the trackpad–to move the cursor–generate touch events? Seems crazy to me.","","","","" "306791540020363265","306774100397936642","636923","2013-02-27 15:42:57 +0000","Tweetbot for iOS","@siracusa You’re going to make me click every single link to find it, aren’t you?","","","","" "306790831262670848","306632666508324865","7751612","2013-02-27 15:40:08 +0000","Tweetbot for iOS","@mixdup @marcoarment We don’t know how it would work. It might be its own SKU, like iPads. MacBook Air with WiFi, and WiFi + Cellular.","","","","" @@ -5245,34 +5341,34 @@ Thanks for the heads up on twitter.","","","","" "306595701465423872","","","2013-02-27 02:44:46 +0000","Tweetbot for iOS","RT @whatifnumbers: 1.61: Storage capacity, in petabytes, of a gallon jug of MicroSD cards","298532109646168064","1120626926","2013-02-04 20:42:56 +0000","" "306595355255005184","306518943810596865","18006104","2013-02-27 02:43:23 +0000","Tweetbot for iOS","@EricAlanDyck NEVER","","","","" "306594714843496448","","","2013-02-27 02:40:50 +0000","Tweetbot for iOS","RT @wwwtxt: How much of a 3D printer might be printed by a 3D printer? Could it print a robot to assemble the new 3D printer and another ...","306503189941858305","207756340","2013-02-26 20:37:09 +0000","" -"306491661012312065","306444259962286080","1011454958","2013-02-26 19:51:20 +0000","Twitterrific for Mac","@iApologist @marcoarment Ha! Doesn't everyone have that trash can though?","","","","" -"306490884223012864","306465949291278336","20079975","2013-02-26 19:48:15 +0000","Twitterrific for Mac","@polotek Super Hexagon is awesome, but not a session game for me. The Last Rocket is worth a look.","","","","" -"306490606274883584","","","2013-02-26 19:47:09 +0000","Twitterrific for Mac","RT @yukihiro_matz: 20 years has passed since I started developing Ruby. I really appreciate your support from the great Ruby community. ...","305334327938519040","20104013","2013-02-23 15:12:31 +0000","" -"306488857665339392","306314214853726208","22196723","2013-02-26 19:40:12 +0000","Twitterrific for Mac","@markkolich Ah, the old Twitter switcheroo.","","","","" +"306491661012312065","306444259962286080","1011454958","2013-02-26 19:51:20 +0000","Twitterrific for Mac","@iApologist @marcoarment Ha! Doesn't everyone have that trash can though?","","","","" +"306490884223012864","306465949291278336","20079975","2013-02-26 19:48:15 +0000","Twitterrific for Mac","@polotek Super Hexagon is awesome, but not a session game for me. The Last Rocket is worth a look.","","","","" +"306490606274883584","","","2013-02-26 19:47:09 +0000","Twitterrific for Mac","RT @yukihiro_matz: 20 years has passed since I started developing Ruby. I really appreciate your support from the great Ruby community. ...","305334327938519040","20104013","2013-02-23 15:12:31 +0000","" +"306488857665339392","306314214853726208","22196723","2013-02-26 19:40:12 +0000","Twitterrific for Mac","@markkolich Ah, the old Twitter switcheroo.","","","","" "304514118289854464","","","2013-02-21 08:53:18 +0000","Tweetbot for iOS","RT @PiCNiC_Coffee: Photo: Once again it’s on —- PiCNiC Too. http://t.co/yMn6Th90se","304507230449958912","165975834","2013-02-21 08:25:55 +0000","http://tmblr.co/ZfbP1yeepwgv,http://tmblr.co/ZfbP1yeepwgv" -"304436043132841985","","","2013-02-21 03:43:03 +0000","Twitterrific for Mac","RT @JimRoepcke: I’m currently available for iOS development projects and mentoring. Please RT, thanks!","304323209019392000","894911","2013-02-20 20:14:41 +0000","" -"303595073529073664","303586996645949442","14231571","2013-02-18 20:01:20 +0000","Twitterrific for Mac","@marcoarment I did prepaid T-Mobile on iPhone & iPad at Christmas but the coverage was bad around Kissimmee. Next time I might try AT&T.","","","","" -"303568400939106304","","","2013-02-18 18:15:21 +0000","Twitterrific for Mac","RT @GitHubAPI: @_sjs The API Changes blog: http://t.co/Ytf5NkiA","303568037867556865","539153822","2013-02-18 18:13:54 +0000","http://developer.github.com/changes/,http://developer.github.com/changes/" -"303568387945160706","303568037867556865","539153822","2013-02-18 18:15:18 +0000","Twitterrific for Mac","@GitHubAPI Cannot believe I didn't know about this blog. Thanks for the quick response!","","","","" -"303563927709704192","","","2013-02-18 17:57:34 +0000","Twitterrific for Mac","Is there any way to get notified when @github adds new post-receive hook servers? This last week has been really annoying.","","","","" +"304436043132841985","","","2013-02-21 03:43:03 +0000","Twitterrific for Mac","RT @JimRoepcke: I’m currently available for iOS development projects and mentoring. Please RT, thanks!","304323209019392000","894911","2013-02-20 20:14:41 +0000","" +"303595073529073664","303586996645949442","14231571","2013-02-18 20:01:20 +0000","Twitterrific for Mac","@marcoarment I did prepaid T-Mobile on iPhone & iPad at Christmas but the coverage was bad around Kissimmee. Next time I might try AT&T.","","","","" +"303568400939106304","","","2013-02-18 18:15:21 +0000","Twitterrific for Mac","RT @GitHubAPI: @_sjs The API Changes blog: http://t.co/Ytf5NkiA","303568037867556865","539153822","2013-02-18 18:13:54 +0000","http://developer.github.com/changes/,http://developer.github.com/changes/" +"303568387945160706","303568037867556865","539153822","2013-02-18 18:15:18 +0000","Twitterrific for Mac","@GitHubAPI Cannot believe I didn't know about this blog. Thanks for the quick response!","","","","" +"303563927709704192","","","2013-02-18 17:57:34 +0000","Twitterrific for Mac","Is there any way to get notified when @github adds new post-receive hook servers? This last week has been really annoying.","","","","" "303384119235203072","303349850353852417","636923","2013-02-18 06:03:05 +0000","Tweetbot for iOS","@siracusa I hear that Netflix on PS3 automatically plays the next episode, and when it does it skips the intro. I wish Apple TV did that.","","","","" "302467154094211072","302458059664531456","166272705","2013-02-15 17:19:23 +0000","Tweetbot for iOS","@2percentjazz @phillipsbeer 98% funky stuff baby! We are the 98%. #occupyjazz","","","","" -"302205040729391105","302196202580082689","14112263","2013-02-14 23:57:51 +0000","Twitterrific for Mac","@juddv Be sure to read this as well: http://t.co/3QBb9F65 … the jury is still out for me on this one.","","","","http://www.theatlanticwire.com/technology/2013/02/elon-musks-data-doesnt-back-his-claims-new-york-times-fakery/62149/" +"302205040729391105","302196202580082689","14112263","2013-02-14 23:57:51 +0000","Twitterrific for Mac","@juddv Be sure to read this as well: http://t.co/3QBb9F65 … the jury is still out for me on this one.","","","","http://www.theatlanticwire.com/technology/2013/02/elon-musks-data-doesnt-back-his-claims-new-york-times-fakery/62149/" "302103053073518595","","","2013-02-14 17:12:35 +0000","iOS","It sounds like Rap Genius outgrew VMs. An 8-core server can do hundreds or thousands of req/sec for $800/month. An — https://t.co/ZRkAyCvm","","","","https://posts.app.net/2962969" "302099579137040384","302094330032693249","198093","2013-02-14 16:58:47 +0000","Tweetbot for iOS","@vinniefranco @typeoneerror Who pays 20k / month for hosting instead of hiring a sysadmin? That’s crazy.","","","","" "302099218959585280","302093587435372544","166272705","2013-02-14 16:57:21 +0000","Tweetbot for iOS","@2percentjazz @phillipsbeer Ethiopia, the motherland!","","","","" "302098825521283074","","","2013-02-14 16:55:47 +0000","Tweetbot for iOS","RT @raganwald: Crookery: Getting people to do things against their better judgment. Consulting: Getting people to do things against thei ...","302094235627290625","18137723","2013-02-14 16:37:33 +0000","" -"301840555472744449","301792897760628736","166272705","2013-02-13 23:49:31 +0000","Twitterrific for Mac","@2percentjazz @phillipsbeer Right now I'm really into Dr. Funk, and the classic Americano is my favourite! Booya!","","","","" -"301766449511424001","","","2013-02-13 18:55:02 +0000","Twitterrific for Mac","RT @tolmasky: I wonder if those KHTML guys imagined they'd power most the web someday. Something to think about when you're working on y ...","301617237880606720","14581738","2013-02-13 09:02:07 +0000","" +"301840555472744449","301792897760628736","166272705","2013-02-13 23:49:31 +0000","Twitterrific for Mac","@2percentjazz @phillipsbeer Right now I'm really into Dr. Funk, and the classic Americano is my favourite! Booya!","","","","" +"301766449511424001","","","2013-02-13 18:55:02 +0000","Twitterrific for Mac","RT @tolmasky: I wonder if those KHTML guys imagined they'd power most the web someday. Something to think about when you're working on y ...","301617237880606720","14581738","2013-02-13 09:02:07 +0000","" "301523847490965505","301464968103084032","143882311","2013-02-13 02:51:01 +0000","Tweetbot for iOS","@bulletproofexec @marcoarment Oh no! Now all of his readers–who weren’t going to try it anyway–won’t try your coffee.","","","","" "301521957646655488","301517903847628800","20960306","2013-02-13 02:43:31 +0000","Tweetbot for iOS","@Justyn @soung3 I think you have already won.","","","","" -"301467906384994304","301464510772953089","14100886","2013-02-12 23:08:44 +0000","Twitterrific for Mac","@pengwynn http://t.co/cJmdfevB","","","","http://code.google.com/p/iterm2/issues/detail?id=2223" -"301464195868815363","301462165553041408","14100886","2013-02-12 22:53:59 +0000","Twitterrific for Mac","@pengwynn @MacHomebrew Emoji is text. Deal with it 😎","","","","" +"301467906384994304","301464510772953089","14100886","2013-02-12 23:08:44 +0000","Twitterrific for Mac","@pengwynn http://t.co/cJmdfevB","","","","http://code.google.com/p/iterm2/issues/detail?id=2223" +"301464195868815363","301462165553041408","14100886","2013-02-12 22:53:59 +0000","Twitterrific for Mac","@pengwynn @MacHomebrew Emoji is text. Deal with it 😎","","","","" "301015441093058560","300862399286738945","18006104","2013-02-11 17:10:48 +0000","Tweetbot for iOS","@EricAlanDyck Have you seen http://t.co/fc0hIS0N yet? Right up your alley.","","","","http://letterboxd.com" "300112384725487616","","","2013-02-09 05:22:23 +0000","Tweetbot for iOS","Highly recommended for martinis. Why choose only olive or lemon garnish? Have it all. http://t.co/6mO1IdEB","","","","https://twitter.com/_sjs/status/300112384725487616/photo/1" -"300025966086991872","300024362508103681","232701963","2013-02-08 23:38:59 +0000","Twitterrific for Mac","@fyrite It's by far my favourite sitcom on the air right now.","","","","" -"300025111224930304","300023942830256129","636923","2013-02-08 23:35:35 +0000","Twitterrific for Mac","@siracusa I got a kick out of it too. And it sparked a conversation about Back to the Future at the office, so that was a bonus.","","","","" -"300010461460561921","","","2013-02-08 22:37:22 +0000","Twitterrific for Mac","RT @izs: Step 0 to Being Nice: +"300025966086991872","300024362508103681","232701963","2013-02-08 23:38:59 +0000","Twitterrific for Mac","@fyrite It's by far my favourite sitcom on the air right now.","","","","" +"300025111224930304","300023942830256129","636923","2013-02-08 23:35:35 +0000","Twitterrific for Mac","@siracusa I got a kick out of it too. And it sparked a conversation about Back to the Future at the office, so that was a bonus.","","","","" +"300010461460561921","","","2013-02-08 22:37:22 +0000","Twitterrific for Mac","RT @izs: Step 0 to Being Nice: Deeply accept that you are *not* surrounded by dumb stupid idiots. In fact, odds are you're mediocre your ...","294501215033761793","8038312","2013-01-24 17:45:35 +0000","" "299972000057810945","","","2013-02-08 20:04:32 +0000","iOS","OH: “I dug a lot of balls. It was good.”","","","","" "299926388796956672","299797421217701888","232701963","2013-02-08 17:03:18 +0000","Tweetbot for iOS","@fyrite http://t.co/bfuvRQe4","","","","http://s42.ca/degen2.m4v" @@ -5281,26 +5377,26 @@ Deeply accept that you are *not* surrounded by dumb stupid idiots. In fact, odds "299918918502473728","","","2013-02-08 16:33:37 +0000","iOS","One of the best Letterpress boards ever. http://t.co/YrfVw5As","","","","http://moby.to/uvsh9e" "299915427503546368","","","2013-02-08 16:19:44 +0000","iOS","Laymen shouldn’t have to know that, but someone who writes about tech professionally absolutely should.","","","","" "299914719911882752","","","2013-02-08 16:16:56 +0000","iOS","Dear everyone: when your phones receives a push notification a server has to initiate the push. If mail is pushed — https://t.co/K0fkuCxa","","","","https://posts.app.net/2868482" -"299681043366170624","","","2013-02-08 00:48:23 +0000","Twitterrific for Mac","def apocalypse +"299681043366170624","","","2013-02-08 00:48:23 +0000","Twitterrific for Mac","def apocalypse Date.new(2013, 2, 7) end","","","","" -"299664683277881345","299661411636899840","14231571","2013-02-07 23:43:22 +0000","Twitterrific for Mac","@marcoarment Flee.","","","","" -"299657835590070272","299656208904753152","894911","2013-02-07 23:16:10 +0000","Twitterrific for Mac","@JimRoepcke Impressive. I fired up Mail on an iPad at London Drugs the other day and just showed the ""add an account"" screen, but it's LD...","","","","" -"299655539737128960","299654544785301505","894911","2013-02-07 23:07:02 +0000","Twitterrific for Mac","@JimRoepcke I played with a Surface at Futureshop a while back and wasn't impressed at all either. I'm curious about the Z10 too though.","","","","" -"299653727860707328","299649407664672768","793926","2013-02-07 22:59:50 +0000","Twitterrific for Mac","@1Password Excellent, thanks for the answer!","","","","" -"299629534616104962","299629114648850433","18137723","2013-02-07 21:23:42 +0000","Twitterrific for Mac","@raganwald Sorry, I should not have replied to that tweet. My question was directed at @1Password. I love it and $25 is probably < upgrade $","","","","" -"299628950043365376","299624130792267776","18137723","2013-02-07 21:21:23 +0000","Twitterrific for Mac","@raganwald @1Password @AppStore Is it worth buying this now in anticipation of v4? I already have v3 but would like an App Store version...","","","","" -"299618355525062657","299607326892126208","8549992","2013-02-07 20:39:17 +0000","Twitterrific for Mac","@pdenya Isn't it both?I think HISTSIZE is how many stay in memory and HISTFILESIZE is how many are saved to disk.","","","","" -"299316982816309248","","","2013-02-07 00:41:44 +0000","Twitterrific for Mac","Is there a way to make Sublime Text 2 *not* add an extension to a new file if I don't add it explicitly? I can name files myself, thanks.","","","","" -"299268046361604097","","","2013-02-06 21:27:17 +0000","Twitterrific for Mac","RT @cmsimike: @markkolich alias yolo='git commit -am ""DEAL WITH IT"" && git push -f origin master'","299243496806678528","14519526","2013-02-06 19:49:43 +0000","" -"299207944661241856","299190354022895618","232701963","2013-02-06 17:28:27 +0000","Twitterrific for Mac","@fyrite Nice one!","","","","" +"299664683277881345","299661411636899840","14231571","2013-02-07 23:43:22 +0000","Twitterrific for Mac","@marcoarment Flee.","","","","" +"299657835590070272","299656208904753152","894911","2013-02-07 23:16:10 +0000","Twitterrific for Mac","@JimRoepcke Impressive. I fired up Mail on an iPad at London Drugs the other day and just showed the ""add an account"" screen, but it's LD...","","","","" +"299655539737128960","299654544785301505","894911","2013-02-07 23:07:02 +0000","Twitterrific for Mac","@JimRoepcke I played with a Surface at Futureshop a while back and wasn't impressed at all either. I'm curious about the Z10 too though.","","","","" +"299653727860707328","299649407664672768","793926","2013-02-07 22:59:50 +0000","Twitterrific for Mac","@1Password Excellent, thanks for the answer!","","","","" +"299629534616104962","299629114648850433","18137723","2013-02-07 21:23:42 +0000","Twitterrific for Mac","@raganwald Sorry, I should not have replied to that tweet. My question was directed at @1Password. I love it and $25 is probably < upgrade $","","","","" +"299628950043365376","299624130792267776","18137723","2013-02-07 21:21:23 +0000","Twitterrific for Mac","@raganwald @1Password @AppStore Is it worth buying this now in anticipation of v4? I already have v3 but would like an App Store version...","","","","" +"299618355525062657","299607326892126208","8549992","2013-02-07 20:39:17 +0000","Twitterrific for Mac","@pdenya Isn't it both?I think HISTSIZE is how many stay in memory and HISTFILESIZE is how many are saved to disk.","","","","" +"299316982816309248","","","2013-02-07 00:41:44 +0000","Twitterrific for Mac","Is there a way to make Sublime Text 2 *not* add an extension to a new file if I don't add it explicitly? I can name files myself, thanks.","","","","" +"299268046361604097","","","2013-02-06 21:27:17 +0000","Twitterrific for Mac","RT @cmsimike: @markkolich alias yolo='git commit -am ""DEAL WITH IT"" && git push -f origin master'","299243496806678528","14519526","2013-02-06 19:49:43 +0000","" +"299207944661241856","299190354022895618","232701963","2013-02-06 17:28:27 +0000","Twitterrific for Mac","@fyrite Nice one!","","","","" "299175926753796098","299175637736894465","894911","2013-02-06 15:21:14 +0000","Tweetbot for iOS","@JimRoepcke Heh, yeah I had the same reaction. “Oh this is cool. … GPL? Really? Blech.” At least it’s v2 I guess.","","","","" "299174240299655169","299153005725503488","894911","2013-02-06 15:14:31 +0000","Tweetbot for iOS","@JimRoepcke Discourse?","","","","" -"298968684586729473","","","2013-02-06 01:37:43 +0000","Twitterrific for Mac","RT @pdenya: The Developer Cycle: +"298968684586729473","","","2013-02-06 01:37:43 +0000","Twitterrific for Mac","RT @pdenya: The Developer Cycle: 1) “Whoever built this is an asshole” 2) “Dammit! I’m the asshole!”","298966811318308864","8549992","2013-02-06 01:30:17 +0000","" -"298921618560917504","298913370646642689","5637652","2013-02-05 22:30:42 +0000","Twitterrific for Mac","@codinghorror @siracusa So sometimes it's nice to just get it over with right away, and then continue on editing as usual after that.","","","","" -"298921487702827008","298913370646642689","5637652","2013-02-05 22:30:11 +0000","Twitterrific for Mac","@codinghorror @siracusa It's annoying if your editor is set to do so automatically, and you change a line and then BOOM giant commit.","","","","" +"298921618560917504","298913370646642689","5637652","2013-02-05 22:30:42 +0000","Twitterrific for Mac","@codinghorror @siracusa So sometimes it's nice to just get it over with right away, and then continue on editing as usual after that.","","","","" +"298921487702827008","298913370646642689","5637652","2013-02-05 22:30:11 +0000","Twitterrific for Mac","@codinghorror @siracusa It's annoying if your editor is set to do so automatically, and you change a line and then BOOM giant commit.","","","","" "298834275971760129","298826693999742976","9599342","2013-02-05 16:43:38 +0000","Tweetbot for iOS","@felixge Personally I’d be ok with it if it was documented, but you’ll find lots who dislike that so best make it an opt-in feature.","","","","" "298705422364332032","298704388313210880","17609423","2013-02-05 08:11:37 +0000","Tweetbot for iOS","@secoif @HBO Interesting. I see their angle as I know advertisers pay more than I will for an episode, but it still makes me feel 2nd class.","","","","" "298703103241367552","298699812671479808","17609423","2013-02-05 08:02:24 +0000","Tweetbot for iOS","@secoif @HBO This is a real First World Problem but I just don’t want to buy a BluRay player and some discs for GoT alone.","","","","" @@ -5312,15 +5408,15 @@ end","","","","" "298681421139152897","","","2013-02-05 06:36:14 +0000","iOS","Acquiring Game of Thrones season 2 is a hassle. Sorry @HBO but torrents are the lesser hassle. I’ll buy it on iTunes later.","","","","" "298653001374117889","","","2013-02-05 04:43:18 +0000","iOS","Game of Thrones is like Rome. It’s horrible and uncomfortable, and I love every second of it.","","","","" "298635983342166016","","","2013-02-05 03:35:41 +0000","iOS","If you miss You Look Nice Today be sure to hear the latest episode of @thetalkshow. #ylnt","","","","" -"298539970250039296","298518811026522112","14356633","2013-02-04 21:14:10 +0000","Twitterrific for Mac","@kentf Heh, well sometimes I say interesting things. I just don't write on my website these days.","","","","" -"297949042355355648","","","2013-02-03 06:06:01 +0000","Twitterrific for Mac","Bold, complacent. The line is rather fuzzy when you're on top.","","","","" -"297948682807046145","","","2013-02-03 06:04:36 +0000","Twitterrific for Mac","Bold advertising by Apple. ""You know you want it, and why. Here it is."" http://t.co/1cSjVjmb @siracusa","","","","http://img.ly/skK4" +"298539970250039296","298518811026522112","14356633","2013-02-04 21:14:10 +0000","Twitterrific for Mac","@kentf Heh, well sometimes I say interesting things. I just don't write on my website these days.","","","","" +"297949042355355648","","","2013-02-03 06:06:01 +0000","Twitterrific for Mac","Bold, complacent. The line is rather fuzzy when you're on top.","","","","" +"297948682807046145","","","2013-02-03 06:04:36 +0000","Twitterrific for Mac","Bold advertising by Apple. ""You know you want it, and why. Here it is."" http://t.co/1cSjVjmb @siracusa","","","","http://img.ly/skK4" "297857375140990977","297851358617407488","10583402","2013-02-03 00:01:46 +0000","Tweetbot for iOS","@nk Make a cucumber and yoghurt salad (yoghurt, cucumber, garlic, salt, season as you like) and then throw some sriracha in it. Yum.","","","","" -"297505962087030784","297502802891120640","18006104","2013-02-02 00:45:23 +0000","Twitterrific for Mac","@EricAlanDyck Rollin' down the street, smokin' indo, sippin' on gin & freezies. Laaiiid back.","","","","" -"297483849305296896","297471325608501248","22196723","2013-02-01 23:17:31 +0000","Twitterrific for Mac","@markkolich Anything can blow your mind, this *blasted* it!","","","","" -"297459411725733888","297435376761573377","22196723","2013-02-01 21:40:24 +0000","Twitterrific for Mac","@markkolich http://t.co/tZ6Wm7SA","","","","http://www.youtube.com/watch?v=vtKdNT7o858" -"297459330406551552","297429705508929538","494341960","2013-02-01 21:40:05 +0000","Twitterrific for Mac","@tapfortap As long as the freezies are soaked in gin I'm all for it.","","","","" -"297415701306695681","297407477929086976","8549992","2013-02-01 18:46:43 +0000","Twitterrific for Mac","@pdenya Depending on what you want from a terminal you may like Cathode: http://t.co/iYOqU6bN … it's a fun novelty. I'm a happy iTerm2 user.","","","","http://www.secretgeometry.com/apps/cathode/" +"297505962087030784","297502802891120640","18006104","2013-02-02 00:45:23 +0000","Twitterrific for Mac","@EricAlanDyck Rollin' down the street, smokin' indo, sippin' on gin & freezies. Laaiiid back.","","","","" +"297483849305296896","297471325608501248","22196723","2013-02-01 23:17:31 +0000","Twitterrific for Mac","@markkolich Anything can blow your mind, this *blasted* it!","","","","" +"297459411725733888","297435376761573377","22196723","2013-02-01 21:40:24 +0000","Twitterrific for Mac","@markkolich http://t.co/tZ6Wm7SA","","","","http://www.youtube.com/watch?v=vtKdNT7o858" +"297459330406551552","297429705508929538","494341960","2013-02-01 21:40:05 +0000","Twitterrific for Mac","@tapfortap As long as the freezies are soaked in gin I'm all for it.","","","","" +"297415701306695681","297407477929086976","8549992","2013-02-01 18:46:43 +0000","Twitterrific for Mac","@pdenya Depending on what you want from a terminal you may like Cathode: http://t.co/iYOqU6bN … it's a fun novelty. I'm a happy iTerm2 user.","","","","http://www.secretgeometry.com/apps/cathode/" "297389801169113088","297342088721342465","14356633","2013-02-01 17:03:48 +0000","Tweetbot for iOS","@kentf The minuscule amount that I do write, I type. I’m not a writer.","","","","" "297239510494896128","","","2013-02-01 07:06:36 +0000","Tweetbot for iOS","Okay sometimes I pipe to or from tar as well. And once every decade the “p” option comes in handy. Still no harder than other unix commands.","","","","" "297239124438564864","","","2013-02-01 07:05:04 +0000","Tweetbot for iOS","Should I feel good or bad that tar doesn’t give me any trouble? I only use it in 3 ways: tar c[jz]f, tar x[jz]f, or tar x[jz]f file -C dir","","","","" @@ -5329,18 +5425,18 @@ end","","","","" "297221631296802816","297174532786106368","14356633","2013-02-01 05:55:33 +0000","Tweetbot for iOS","@kentf @raganwald Might be worth trying dictation instead of typing. @siracusa @gruber","","","","" "297174715770994688","","","2013-02-01 02:49:08 +0000","OS X","Thank goodness there’s booze stocked for us here at @tapfortap. Some days it’s just necessary.","","","","" "297173655958458368","","","2013-02-01 02:44:55 +0000","OS X","Oh, the test was failing because of a boneheaded mistake. Business as usual then.","","","","" -"297171942304256000","","","2013-02-01 02:38:06 +0000","Twitterrific for Mac","RT @Badger32d: I think @terrycavanagh needs to make super hexagon harder. I win waaay to easy. The goal is to crash into the walls right?","297169159794614272","74837444","2013-02-01 02:27:03 +0000","" +"297171942304256000","","","2013-02-01 02:38:06 +0000","Twitterrific for Mac","RT @Badger32d: I think @terrycavanagh needs to make super hexagon harder. I win waaay to easy. The goal is to crash into the walls right?","297169159794614272","74837444","2013-02-01 02:27:03 +0000","" "297136838869655552","297136009437650945","22406953","2013-02-01 00:18:37 +0000","Twitter Web Client","@mahyarm That's true. I like the tools for creating views on iOS more than Android though.","","","","" "297134590680764416","297134346270294017","22406953","2013-02-01 00:09:41 +0000","Twitter Web Client","@mahyarm Fair enough, I did not claim it's perfect. You have a lot more experience w/ it than I do though so I defer to you on that!","","","","" -"297133740054958080","297126959148838912","22406953","2013-02-01 00:06:18 +0000","Twitterrific for Mac","@mahyarm Not the crufty old file API or anything, but the view system and such. Who thought reloading Activity on rotation was a good idea?","","","","" -"297133023936258048","297126959148838912","22406953","2013-02-01 00:03:28 +0000","Twitterrific for Mac","@mahyarm In some ways Java is easier than Objective-C. Most of the Android API is pretty good too, but I feel Cocoa is better thought out.","","","","" +"297133740054958080","297126959148838912","22406953","2013-02-01 00:06:18 +0000","Twitterrific for Mac","@mahyarm Not the crufty old file API or anything, but the view system and such. Who thought reloading Activity on rotation was a good idea?","","","","" +"297133023936258048","297126959148838912","22406953","2013-02-01 00:03:28 +0000","Twitterrific for Mac","@mahyarm In some ways Java is easier than Objective-C. Most of the Android API is pretty good too, but I feel Cocoa is better thought out.","","","","" "296852739726655488","296821089521262593","11374142","2013-01-31 05:29:43 +0000","Tweetbot for iOS","@bphogan @raganwald I’m laughing at this much more than I should be. Nice one.","","","","" "296852456229441537","296808993903476736","232701963","2013-01-31 05:28:35 +0000","Tweetbot for iOS","@fyrite Knife blocks take up so much more room than it appears they should. Though I feel like I’d cut myself on knives on my wall, somehow.","","","","" "296815808263380992","","","2013-01-31 03:02:57 +0000","OS X","Okay well that was fun, now back to work… http://t.co/vc3LuzFK (Yeah, I know I’m a whopping day late to this game)","","","","http://samhuri.net/f/note.html" "296803580441157632","","","2013-01-31 02:14:22 +0000","OS X","Curse you, bundles that clobber native TextMate shortcuts! I’m looking at you Ruby & Rails bundles… Ctrl-P and Ctrl-L are *mine*.","","","","" "296464312099282944","","14618863","2013-01-30 03:46:14 +0000","Tweetbot for iOS","@anandshimpi Loved your sign off on the last podcast. Now I’ll be scrutinizing every turn of phrase in your reviews.","","","","" -"296128197576245248","","","2013-01-29 05:30:38 +0000","Twitterrific for Mac","So there’s a webOS port for the Nexus 7. That’s intriguing. Current desktop: http://t.co/NHGnevMb","","","","http://img.ly/sc5S" -"296067475613831168","","","2013-01-29 01:29:21 +0000","Twitterrific for Mac","RT @aaronheckmann: 'strict mode'; what happens in eval() stays in eval()","296060546048999424","13818902","2013-01-29 01:01:49 +0000","" +"296128197576245248","","","2013-01-29 05:30:38 +0000","Twitterrific for Mac","So there’s a webOS port for the Nexus 7. That’s intriguing. Current desktop: http://t.co/NHGnevMb","","","","http://img.ly/sc5S" +"296067475613831168","","","2013-01-29 01:29:21 +0000","Twitterrific for Mac","RT @aaronheckmann: 'strict mode'; what happens in eval() stays in eval()","296060546048999424","13818902","2013-01-29 01:01:49 +0000","" "295771494942908416","295722600750006272","18006104","2013-01-28 05:53:14 +0000","Tweetbot for iOS","@EricAlanDyck Right in front of you. Open your eyes, sheeple!","","","","" "295771218181763072","","","2013-01-28 05:52:08 +0000","Tweetbot for iOS","RT @AngelineGragzin: To all my real-world friends who invite me places and whose invites I politely decline: I am sorry. I am a hermit. ...","295661724101668864","58809542","2013-01-27 22:37:02 +0000","" "295770304289071106","","","2013-01-28 05:48:30 +0000","Tweetbot for iOS","RT @horse_js: so as any JavaScript programmer would do I decided to rewrite the entire thing","295662989040812033","497617437","2013-01-27 22:42:04 +0000","" @@ -5375,34 +5471,34 @@ end","","","","" "293952704873644032","293944310611718145","33423","2013-01-23 05:26:00 +0000","Tweetbot for iOS","@gruber I only looked at the 2 most recent. Still seeing Markdown here: http://t.co/kIcUcljn","","","","http://daringfireball.net/2013/01/the_trend_against_skeuomorphism" "293943279987343360","","33423","2013-01-23 04:48:33 +0000","Tweetbot for iOS","@gruber Your articles are rendering as raw Markdown on @daringfireball. Linked items are fine.","","","","" "293912082619965441","","","2013-01-23 02:44:35 +0000","iOS","Why do animated GIFs suck so badly on iOS? They load and play slowly. No problem at all on my Nexus 7.","","","","" -"293822371809341440","293813146668392448","894911","2013-01-22 20:48:07 +0000","Twitterrific for Mac","@JimRoepcke What is that? It looks amazing. French toast w/ pulled pork and bacon?","","","","" -"293514906953723904","293506705311023104","11973362","2013-01-22 00:26:21 +0000","Twitterrific for Mac","@typeoneerror Oh, yeah it sounds like it will. That's no good if you're mid-sync. Lame :/","","","","" -"293505252764835840","293504594242330624","11973362","2013-01-21 23:47:59 +0000","Twitterrific for Mac","@typeoneerror Yup, you got it. I need my configs first!","","","","" -"293500821423939584","293496553094656000","11973362","2013-01-21 23:30:23 +0000","Twitterrific for Mac","@typeoneerror You can use the selective sync settings to sync only that directory, and then add in others after it is done. Hacky, effective","","","","" -"293493181633413120","","","2013-01-21 23:00:02 +0000","Twitterrific for Mac","RT @littlecalculist: ""So we're gonna have to iterate… oh, God."" — anyone ever writing async, monadic, CPS, etc. code.","293474371270475777","104245499","2013-01-21 21:45:17 +0000","" +"293822371809341440","293813146668392448","894911","2013-01-22 20:48:07 +0000","Twitterrific for Mac","@JimRoepcke What is that? It looks amazing. French toast w/ pulled pork and bacon?","","","","" +"293514906953723904","293506705311023104","11973362","2013-01-22 00:26:21 +0000","Twitterrific for Mac","@typeoneerror Oh, yeah it sounds like it will. That's no good if you're mid-sync. Lame :/","","","","" +"293505252764835840","293504594242330624","11973362","2013-01-21 23:47:59 +0000","Twitterrific for Mac","@typeoneerror Yup, you got it. I need my configs first!","","","","" +"293500821423939584","293496553094656000","11973362","2013-01-21 23:30:23 +0000","Twitterrific for Mac","@typeoneerror You can use the selective sync settings to sync only that directory, and then add in others after it is done. Hacky, effective","","","","" +"293493181633413120","","","2013-01-21 23:00:02 +0000","Twitterrific for Mac","RT @littlecalculist: ""So we're gonna have to iterate… oh, God."" — anyone ever writing async, monadic, CPS, etc. code.","293474371270475777","104245499","2013-01-21 21:45:17 +0000","" "293300526819471360","","","2013-01-21 10:14:29 +0000","Twitter Web Client","Well it has been 10 months and I still haven't wrecked my case-less phone. Sometimes I case it when I'm hiking, etc. https://t.co/9F54oPS0","","","","https://twitter.com/_sjs/statuses/181540971752853504" "293041571723620352","293036557265412097","74837444","2013-01-20 17:05:30 +0000","Tweetbot for iOS","@Badger32d @terrycavanagh I’m pretty proud of this. I don’t know if I can ever do it again. http://t.co/dZ8wli3I","","","","https://twitter.com/_sjs/status/293041571723620352/photo/1" "292612304938364928","","","2013-01-19 12:39:44 +0000","Twitter Web Client","Changes since 2010: Instapaper now has a read API, and Google has domain blacklist in search results.","","","","" "292600218422226944","","","2013-01-19 11:51:42 +0000","OS X","Note to self: stopping mysql & copying data files directly is much, *much* faster than mysqldump + import. Time for another shot...","","","","" "292569566796709888","","","2013-01-19 09:49:55 +0000","OS X","Perfect mood for some popular tunes on Grooveshark. Pretty awful, but also fun. Skipping Gotye. http://t.co/Qi4EsKcf","","","","http://grooveshark.com/#!/popular" "292568027319398401","","","2013-01-19 09:43:48 +0000","OS X","Tequila wins by default, nothing else here to drink. It’s ok though I’m just doing some sys admin work. What could go wrong?","","","","" -"292453948110024705","292452452534480896","125027291","2013-01-19 02:10:29 +0000","Twitterrific for Mac","@substack @izs It's just so nice, clear, and consistent to write dates and times in large -> small order.","","","","" -"292444621777285120","292420443128885248","8549992","2013-01-19 01:33:25 +0000","Twitterrific for Mac","@pdenya Really? I can hit Software Update, but still not Finder. I'm on 10.8.","","","","" -"292378384779063296","292375689020182528","14058316","2013-01-18 21:10:13 +0000","Twitterrific for Mac","@tewha @JimRoepcke That's true, we are similar in many ways. Some of the differences are doozies though, and it varies greatly by prov/state","","","","" -"292377257199161344","","894911","2013-01-18 21:05:44 +0000","Twitterrific for Mac","@JimRoepcke @tewha My point is only that it's trite to compare the 2 nations like that. We could swap laws today and see the same problems.","","","","" -"292375523143868418","292375287558205440","894911","2013-01-18 20:58:51 +0000","Twitterrific for Mac","@JimRoepcke @tewha Good point. I feel pretty much right at home in Seattle, never visited Portland. And I feel foreign in parts of AB, so...","","","","" -"292375135015538688","","","2013-01-18 20:57:18 +0000","Twitterrific for Mac","RT @awbjs: May be a ""Post-PC"" computer isn't just a phone or tablet: ""A Cloud on Your Ceiling?"" http://t.co/PQkIp8Nk","292348083889635328","159946057","2013-01-18 19:09:49 +0000","http://bit.ly/13JBwgp,http://bit.ly/13JBwgp" -"292374540045131777","292359062010617856","14058316","2013-01-18 20:54:57 +0000","Twitterrific for Mac","@tewha @JimRoepcke There are a lot of other cultural differences too though. The USA feels distinctly foreign to me whenever I visit.","","","","" +"292453948110024705","292452452534480896","125027291","2013-01-19 02:10:29 +0000","Twitterrific for Mac","@substack @izs It's just so nice, clear, and consistent to write dates and times in large -> small order.","","","","" +"292444621777285120","292420443128885248","8549992","2013-01-19 01:33:25 +0000","Twitterrific for Mac","@pdenya Really? I can hit Software Update, but still not Finder. I'm on 10.8.","","","","" +"292378384779063296","292375689020182528","14058316","2013-01-18 21:10:13 +0000","Twitterrific for Mac","@tewha @JimRoepcke That's true, we are similar in many ways. Some of the differences are doozies though, and it varies greatly by prov/state","","","","" +"292377257199161344","","894911","2013-01-18 21:05:44 +0000","Twitterrific for Mac","@JimRoepcke @tewha My point is only that it's trite to compare the 2 nations like that. We could swap laws today and see the same problems.","","","","" +"292375523143868418","292375287558205440","894911","2013-01-18 20:58:51 +0000","Twitterrific for Mac","@JimRoepcke @tewha Good point. I feel pretty much right at home in Seattle, never visited Portland. And I feel foreign in parts of AB, so...","","","","" +"292375135015538688","","","2013-01-18 20:57:18 +0000","Twitterrific for Mac","RT @awbjs: May be a ""Post-PC"" computer isn't just a phone or tablet: ""A Cloud on Your Ceiling?"" http://t.co/PQkIp8Nk","292348083889635328","159946057","2013-01-18 19:09:49 +0000","http://bit.ly/13JBwgp,http://bit.ly/13JBwgp" +"292374540045131777","292359062010617856","14058316","2013-01-18 20:54:57 +0000","Twitterrific for Mac","@tewha @JimRoepcke There are a lot of other cultural differences too though. The USA feels distinctly foreign to me whenever I visit.","","","","" "292121858952790017","","","2013-01-18 04:10:53 +0000","OS X","Looks like @jacobrothstein doesn't fuck around. One day https://t.co/d0cV9qvE... https://t.co/qiLTnlpc","","","","https://twitter.com/_sjs/statuses/17223783303?tw_i=1722378,https://alpha.app.net/sjs/post/2508417" -"291707958864277504","","","2013-01-17 00:46:11 +0000","Twitterrific for Mac","RT @timbray: MAC addresses and liberty; essential stuff: http://t.co/EdlVn3tW","291612631511494658","1235521","2013-01-16 18:27:23 +0000","http://goo.gl/O6M6L,http://goo.gl/O6M6L" -"291340678984781824","291334101544345600","14231571","2013-01-16 00:26:45 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","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","Twitterrific for Mac","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","Twitterrific for Mac","@EricAlanDyck In case you don't have it, take this: https://t.co/8BXy3KBA","","","","https://www.dropbox.com/s/1f78j4j4c8wtuc2/Be%20Here%20Now.pdf" +"291707958864277504","","","2013-01-17 00:46:11 +0000","Twitterrific for Mac","RT @timbray: MAC addresses and liberty; essential stuff: http://t.co/EdlVn3tW","291612631511494658","1235521","2013-01-16 18:27:23 +0000","http://goo.gl/O6M6L,http://goo.gl/O6M6L" +"291340678984781824","291334101544345600","14231571","2013-01-16 00:26:45 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","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","Twitterrific for Mac","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","Twitterrific for Mac","@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","Tweetbot for iOS","@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","Tweetbot for iOS","@JimRoepcke I think so. They should anyway; it’s not very old.","","","","" -"289374954829524992","289228619195224064","20079975","2013-01-10 14:15:40 +0000","Tweetings for Android Holo","@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.","","","","" +"289374954829524992","289228619195224064","20079975","2013-01-10 14:15:40 +0000","Tweetings for Windows","@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","Tweetbot for iOS","@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","Twitter Web Client","@Badger32d @markkolich Augh! Don't look yet!","","","","" "289061210085793792","","","2013-01-09 17:28:57 +0000","iOS","My GitHub open source contributions are pretty sad. Need to do something about that. https://t.co/6ev3ZmVU","","","","https://github.com/samsonjs" @@ -5429,7 +5525,7 @@ end","","","","" "287739875690688512","","","2013-01-06 01:58:26 +0000","iOS","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","iOS","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","Tweetbot for iOS","@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","Tweetbot for iOS","@mattlanger @marcoarment Buy one of those silicone roller things. Or mash it like everyone else said. Both work well enough.","","","","" +"287715561004216321","","","2013-01-06 00:21:49 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@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","Tweetbot for iOS","@bryan_kyle @atebits A grievous omission!","","","","" "287631624596774914","287608437062369282","18247541","2013-01-05 18:48:17 +0000","Tweetbot for iOS","@tapbot_paul @marcoarment Also, please clean my room and make me lunch. No crusts.","","","","" @@ -5480,7 +5576,7 @@ Location: in thy sky","","","","" http://t.co/STKprVDV","","","","http://moby.to/coih1b" "280750875792777217","","","2012-12-17 19:06:39 +0000","Twitter Web Client","@ColtonPhillips With some fava beans, a nice chianti.","","","","" -"280749518008483840","","","2012-12-17 19:01:15 +0000","Twitterrific for Mac","@ColtonPhillips You're a superstar now. Next you'll have paparazzi after you.","","","","" +"280749518008483840","","","2012-12-17 19:01:15 +0000","Twitterrific for Mac","@ColtonPhillips You're a superstar now. Next you'll have paparazzi after you.","","","","" "280549887521742848","","","2012-12-17 05:48:00 +0000","iOS","Lost hard, but I think I put up an okay fight. http://t.co/ByYW4BmO","","","","http://moby.to/aaebux" "272566608583589889","272532034361106432","534912521","2012-11-25 05:05:18 +0000","Twitter for Android","@UVicGameDev alias u='cd ..'; alias uu='cd ../..'; alias uuu= etc.","","","","" "272002368395161600","271992408424722433","636923","2012-11-23 15:43:12 +0000","twicca","@siracusa @CrashPlan I bought it and it automatically extended my exisiting, expired account.","","","","" @@ -5489,11 +5585,11 @@ http://t.co/STKprVDV","","","","http://moby.to/coih1b" "265489666193629184","","11178592","2012-11-05 16:24:03 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@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","Tweetbot for iOS","@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","Twitterrific for Mac","OH:"" I didn't say a sausage shower.""","","","","" -"264506144280690688","264460190550749184","894911","2012-11-02 23:15:53 +0000","Twitterrific for Mac","@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.","","","","" +"264506229592846336","","","2012-11-02 23:16:14 +0000","Twitterrific for Mac","OH:"" I didn't say a sausage shower.""","","","","" +"264506144280690688","264460190550749184","894911","2012-11-02 23:15:53 +0000","Twitterrific for Mac","@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.","","","","" "263836191126872064","","","2012-11-01 02:53:44 +0000","Tweetbot for iOS","RT @AlTobey: Chaos Monkey is for sissies. We run Ruby in production.","263771862125928448","146248951","2012-10-31 22:38:07 +0000","" -"261166204155211777","","","2012-10-24 18:04:09 +0000","Twitterrific for Mac","So long http://t.co/bDZ41Dv0! It was fun while it lasted.","","","","http://ajax.googleapis.com" -"259031402446721024","","","2012-10-18 20:41:13 +0000","Twitterrific for Mac","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.","","","","" +"261166204155211777","","","2012-10-24 18:04:09 +0000","Twitterrific for Mac","So long http://t.co/bDZ41Dv0! It was fun while it lasted.","","","","http://ajax.googleapis.com" +"259031402446721024","","","2012-10-18 20:41:13 +0000","Twitterrific for Mac","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","Tweetbot for iOS","@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","","","2012-10-17 23:23:17 +0000","Twitter Web Client","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 ...","258702456060538880","894911","2012-10-17 22:54:06 +0000","https://itunes.apple.com/us/app/lightt/id545803363" "258648276277002240","","","2012-10-17 19:18:49 +0000","Tweetbot for iOS","OH: “If you want a traditional salad you won’t get that. You’ll get three leaves and an apple or something.”","","","","" @@ -5506,16 +5602,16 @@ http://t.co/STKprVDV","","","","http://moby.to/coih1b" "254241884136935424","254214287063666688","309194717","2012-10-05 15:29:23 +0000","Tweetbot for iOS","@JFlavin @siracusa Works on my iPad.","","","","" "253891282924077056","253887339720495104","9533042","2012-10-04 16:16:13 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@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","","","2012-10-01 22:12:18 +0000","Twitterrific for Mac","RT @siracusa: That's it, I'm moving all my status updates to UUCP.","252862916099964928","636923","2012-10-01 20:09:51 +0000","" +"252893730447699969","","","2012-10-01 22:12:18 +0000","Twitterrific for Mac","RT @siracusa: That's it, I'm moving all my status updates to UUCP.","252862916099964928","636923","2012-10-01 20:09:51 +0000","" "252072853661417472","251940398338019328","22406953","2012-09-29 15:50:26 +0000","Tweetbot for iOS","@mahyarm (process for the sake of it, that is)","","","","" "252072738867511296","251940398338019328","22406953","2012-09-29 15:49:58 +0000","Tweetbot for iOS","@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","Twitterrific for Mac","@JimRoepcke Isn't that in Rework by 37signals?","","","","" +"251834608629473280","251812894495350785","894911","2012-09-29 00:03:44 +0000","Twitterrific for Mac","@JimRoepcke Isn't that in Rework by 37signals?","","","","" "251786804401950720","251779721438851072","894911","2012-09-28 20:53:46 +0000","Twitter Web Client","@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","Twitterrific for Mac","Rogers has a ""bill explainer"" now. Someone somewhere thought that was a better idea than simplifying the bill. Canadian telcos have issues.","","","","" +"251780215783710720","","","2012-09-28 20:27:35 +0000","Twitterrific for Mac","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","Twitter Web Client","@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","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","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" +"251775388051714048","251763329624838146","894911","2012-09-28 20:08:24 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","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","Tweetbot for iOS","@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","Tweetbot for iOS","@antirez You should. 2.6 will be better than Christmas.","","","","" "249396918663401473","249395055436124161","14864447","2012-09-22 06:37:13 +0000","Tweetbot for iOS","@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.","","","","" @@ -5527,7 +5623,7 @@ http://t.co/STKprVDV","","","","http://moby.to/coih1b" 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","Tweetbot for iOS","@JimRoepcke @RogersHelps @TELUS The upside of the oligopoly and price fixing is that the carriers are interchangeable.","","","","" -"249291902875226112","","","2012-09-21 23:39:55 +0000","Twitterrific for Mac","@ColtonPhillips @tapfortap Naive? Ambitious? FUCK IT WE'LL DO IT LIVE! :)","","","","" +"249291902875226112","","","2012-09-21 23:39:55 +0000","Twitterrific for Mac","@ColtonPhillips @tapfortap Naive? Ambitious? FUCK IT WE'LL DO IT LIVE! :)","","","","" "249174334755700738","249173890486652928","356943684","2012-09-21 15:52:45 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","(Numbers mostly pulled directly from thin air)","","","","" "248979221458845697","","","2012-09-21 02:57:26 +0000","Tweetbot for iOS","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.","","","","" @@ -5540,59 +5636,58 @@ I wanted to switch carriers but nobody had a better deal than 6GB for $60 plus m "245906286468808704","","","2012-09-12 15:26:42 +0000","Tweetbot for iOS","And linen. Of course the background is linen.","","","","" "245906155535224833","","","2012-09-12 15:26:11 +0000","Tweetbot for iOS","The end of an era. No more yellow sticky note, but now the message rotates through many languages. http://t.co/r2YbEHHg","","","","https://twitter.com/_sjs/status/245906155535224833/photo/1" "244895665837199361","244861410964799488","14864447","2012-09-09 20:30:51 +0000","Tweetbot for iOS","@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","Twitterrific for Mac","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","Twitterrific for Mac","Received an email from a ""Talent Sourcer"". Yes, capitalized in the middle of a sentence. How do these people expect to be taken seriously?","","","","" +"244521936783282177","","","2012-09-08 19:45:47 +0000","Twitterrific for Mac","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","Twitterrific for Mac","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","","","2012-09-08 04:10:37 +0000","Tweetbot for iOS","RT @jjustice: Objective C always reminds me of nursery rhymes. -(id)doYouKnowTheMuffinMan:(TheMuffinMan *)theMuffinMan;","244038956449140736","14325629","2012-09-07 11:46:35 +0000","" "243538985924829185","","","2012-09-06 02:39:54 +0000","Tweetbot for iOS","I cannot tell if it’s a parade or a protest. Everyone looks happy. http://t.co/1YKFB7Ow","","","","https://twitter.com/_sjs/status/243538985924829185/photo/1" "243370611978690560","243358129327316992","14818939","2012-09-05 15:30:50 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@kylegreenlaw @tapfortap Glad to hear it!","","","","" "243043278105227264","243042877930868736","494341960","2012-09-04 17:50:07 +0000","Tweetbot for iOS","@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","Twitter Web Client","@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","Twitterrific for Mac","@tapfortap I don't think so. That doesn't look like something caused by our code.","","","","" -"241337083975827456","241330184828096512","31442511","2012-08-31 00:50:19 +0000","Twitterrific for Mac","@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 :/","","","","" +"242841675070844928","242783247698894849","494341960","2012-09-04 04:29:01 +0000","Twitterrific for Mac","@tapfortap I don't think so. That doesn't look like something caused by our code.","","","","" +"241337083975827456","241330184828096512","31442511","2012-08-31 00:50:19 +0000","Twitterrific for Mac","@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","Tweetbot for iOS","@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","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","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","Twitterrific for Mac","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","Twitterrific for Mac","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","Twitterrific for Mac","@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.","","","","" +"241302138322575361","241299057908252673","31442511","2012-08-30 22:31:27 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","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","Twitterrific for Mac","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","Twitterrific for Mac","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","Twitterrific for Mac","@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","Tweetbot for iOS","@JimRoepcke It was PHP this time. Don’t worry, it wasn’t my bug.","","","","" "239132972060655617","","","2012-08-24 22:51:58 +0000","Tweetbot for iOS","Yet another bug solved by renaming something to “banana”. The magic cure-all. @JimRoepcke","","","","" -"238057651219623936","238052249606189056","22196723","2012-08-21 23:39:01 +0000","Twitterrific for Mac","@markkolich The name says it all.","","","","" +"238057651219623936","238052249606189056","22196723","2012-08-21 23:39:01 +0000","Twitterrific for Mac","@markkolich The name says it all.","","","","" "237929302027546624","237923321692438528","636923","2012-08-21 15:09:00 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","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","Tweetbot for Mac","First time I’ve seen my 100mbps connection push close to that. Slightly reassuring. http://t.co/MgQeKRiC","","","","https://twitter.com/_sjs/status/235921732240805890/photo/1" +"235921732240805890","","","2012-08-16 02:11:39 +0000","Tweetbot for Mac","First time I’ve seen my 100mbps connection push close to that. Slightly reassuring. http://t.co/MgQeKRiC","","","","https://twitter.com/_sjs/status/235921732240805890/photo/1" "235546156032200704","235475629657714688","9533042","2012-08-15 01:19:14 +0000","Tweetbot for iOS","@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","Twitterrific for Mac","@amanderpp You're welcome! It's friiiiday!","","","","" -"231155055548567554","231133112556474368","22219015","2012-08-02 22:30:34 +0000","Twitterrific for Mac","@mobile17 YOLO!!!!","","","","" +"234005167475924992","233895767381782528","39448955","2012-08-10 19:15:54 +0000","Twitterrific for Mac","@amanderpp You're welcome! It's friiiiday!","","","","" +"231155055548567554","231133112556474368","22219015","2012-08-02 22:30:34 +0000","Twitterrific for Mac","@mobile17 YOLO!!!!","","","","" "231090743584911360","","","2012-08-02 18:15:01 +0000","Tweetbot for iOS","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/ ...","230953862952013824","5813712","2012-08-02 09:11:06 +0000","http://bit.ly/NVwZPG" -"230452793373241345","230366010551709696","494341960","2012-08-01 00:00:02 +0000","Twitterrific for Mac","@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","","","2012-07-31 23:56:55 +0000","Twitterrific for Mac","RT @lunafiko: Just launched Tell Your Boss Anything, anonymous way for employees to provide feedback to their managers https://t.co/YsFeC6yD","230403390306385920","14273142","2012-07-31 20:43:43 +0000","https://tellyourbossanything.com/,https://tellyourbossanything.com/" +"230452793373241345","230366010551709696","494341960","2012-08-01 00:00:02 +0000","Twitterrific for Mac","@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","","","2012-07-31 23:56:55 +0000","Twitterrific for Mac","RT @lunafiko: Just launched Tell Your Boss Anything, anonymous way for employees to provide feedback to their managers https://t.co/YsFeC6yD","230403390306385920","14273142","2012-07-31 20:43:43 +0000","https://tellyourbossanything.com/,https://tellyourbossanything.com/" "229312810641924097","","","2012-07-28 20:30:09 +0000","Tweetbot for iOS","@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","Tweetbot for Mac","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","","","2012-07-26 02:05:07 +0000","Tweetbot for Mac","RT @siracusa: Nerds… http://t.co/aP38wtln","228186629876105216","636923","2012-07-25 17:55:06 +0000","http://patdryburgh.com/blog/preparing-for-john-siracusas-review-of-mountain-lion/,http://patdryburgh.com/blog/preparing-for-john-siracusas-review-of-mountain-lion/" +"228319667960295424","","","2012-07-26 02:43:45 +0000","Tweetbot for Mac","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","","","2012-07-26 02:05:07 +0000","Tweetbot for Mac","RT @siracusa: Nerds… http://t.co/aP38wtln","228186629876105216","636923","2012-07-25 17:55:06 +0000","http://patdryburgh.com/blog/preparing-for-john-siracusas-review-of-mountain-lion/,http://patdryburgh.com/blog/preparing-for-john-siracusas-review-of-mountain-lion/" "228150232339316737","","","2012-07-25 15:30:32 +0000","Tweetbot for iOS","And so it begins. http://t.co/ZvurHzji","","","","https://twitter.com/_sjs/status/228150232339316737/photo/1" -"227590328264302594","","","2012-07-24 02:25:37 +0000","Tweetbot for Mac","about.me for geeks: `curl http://t.co/FBPAPQP5` /tip o’ the hat to @pengwynn","","","","http://cui-about.me/sjs" +"227590328264302594","","","2012-07-24 02:25:37 +0000","Tweetbot for Mac","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","Tweetbot for iOS","I just saw an American tourist with a Galaxy Note and did a double take.","","","","" -"226739166346633216","","","2012-07-21 18:03:24 +0000","Tweetbot for Mac","RT @antirez: p.s. The appointment of monday July 23th with the first public release of Redis Sentinel is confirmed!","226739107378896896","5813712","2012-07-21 18:03:10 +0000","" +"226739166346633216","","","2012-07-21 18:03:24 +0000","Tweetbot for Mac","RT @antirez: p.s. The appointment of monday July 23th with the first public release of Redis Sentinel is confirmed!","226739107378896896","5813712","2012-07-21 18:03:10 +0000","" "226520883584450561","226511843215151106","29255412","2012-07-21 03:36:01 +0000","Tweetbot for iOS","@tjholowaychuk Nice one! Love the second photo. Where did you spot that heron?","","","","" "224966774452527105","","","2012-07-16 20:40:33 +0000","Instagram","Current status: redneck http://t.co/WAXAHJej","","","","http://instagr.am/p/NJ84vSreu7/" "224947674925891584","224886642056503296","14231571","2012-07-16 19:24:39 +0000","Tweetbot for iOS","@marcoarment @siracusa’s worst nightmare.","","","","" "224947464963227648","","","2012-07-16 19:23:49 +0000","Tweetbot for iOS","RT @noVNC: JavaScript is now faster than Java at math: http://t.co/AAuhXWMi","224875738241835009","169309199","2012-07-16 14:38:48 +0000","http://www.redcode.nl/blog/2012/07/java-speed-of-math/,http://www.redcode.nl/blog/2012/07/java-speed-of-math/" "224595246779088897","","","2012-07-15 20:04:14 +0000","Tweetbot for iOS","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!)","224588916043423744","33493","2012-07-15 19:39:04 +0000","http://peetm.com/blog/?p=55,http://peetm.com/blog/?p=55" -"224163617682096128","","","2012-07-14 15:29:05 +0000","Tweetbot for iOS","RT @ChrisBeckmann: The 1989 Game Boy has 0.23% the display resolution of an iPhone 4S. It sold 117.69 million units.","223996324792635394","55486012","2012-07-14 04:24:20 +0000","" "223132039967293440","","","2012-07-11 19:09:58 +0000","Tweetbot for iOS","RT @polotek: This is pretty amazing. ""Paid, PAID Vacation"". Pay employees to take a real vacation and NOT work. http://t.co/RhC4ZSpL via ...","223127533837762561","20079975","2012-07-11 18:52:04 +0000","http://www.fullcontact.com/2012/07/10/paid-paid-vacation/,http://www.fullcontact.com/2012/07/10/paid-paid-vacation/" "223076848144355331","","","2012-07-11 15:30:39 +0000","Tweetbot for iOS","RT @RealRonHoward: Arrested Development for Netflix. IT'S ALIVE. This is what the writer's room looks like http://t.co/yhSRZET4","222829875109699584","125481462","2012-07-10 23:09:17 +0000","https://twitter.com/RealRonHoward/status/222829875109699584/photo/1,https://twitter.com/RealRonHoward/status/222829875109699584/photo/1" "223076789461843969","","","2012-07-11 15:30:25 +0000","Tweetbot for iOS","RT @mitchellh: Next up, let's get Vagrant booting up VMWare Fusion instances, shall we? Final touches on this boxes branch, then a merge ...","222936727516491777","12819682","2012-07-11 06:13:52 +0000","" "222924618497916928","","","2012-07-11 05:25:45 +0000","Tweetbot for iOS","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 ...","222779724567547904","7076492","2012-07-10 19:50:00 +0000","" -"220529221741715459","","","2012-07-04 14:47:18 +0000","Twitterrific for Mac","Episode 15, The Bridges of Siracusa County, is the original ""this will be a short show"" that ends up being long. @danbenjamin @siracusa","","","","" +"220529221741715459","","","2012-07-04 14:47:18 +0000","Twitterrific for Mac","Episode 15, The Bridges of Siracusa County, is the original ""this will be a short show"" that ends up being long. @danbenjamin @siracusa","","","","" "220160115322527744","","","2012-07-03 14:20:36 +0000","Tweetbot for iOS","RT @antirez: some more sentinel in action (agreement using two sentinels to mark a master objectively down): http://t.co/2PqpJtYc","220135260799778816","5813712","2012-07-03 12:41:50 +0000","http://bit.ly/N8f1K4,http://bit.ly/N8f1K4" "220019224402341888","220018943572721664","894911","2012-07-03 05:00:45 +0000","Tweetbot for iOS","@JimRoepcke Ha ha. Fair enough.","","","","" "220018831144390656","220018281027870721","894911","2012-07-03 04:59:11 +0000","Tweetbot for iOS","@JimRoepcke Just grab your ankles like a good Canadian.","","","","" -"220017909517398017","219999497911152640","894911","2012-07-03 04:55:32 +0000","Twitterrific for Mac","@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" +"220017909517398017","219999497911152640","894911","2012-07-03 04:55:32 +0000","Twitterrific for Mac","@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","Tweetbot for iOS","@JimRoepcke Dropbox keeps versions around for 30 days so if it goes awry you can restore from the web UI. Should be fine though.","","","","" "219059371156574209","219039303458762753","5813712","2012-06-30 13:26:38 +0000","Tweetbot for iOS","@antirez Many more of us love your work. Thanks for doing it!","","","","" "218889087803858944","","","2012-06-30 02:09:59 +0000","Tweetbot for iOS","RT @awbjs: This afternoon I took the first steps of incorporating proper tail calls into the ECMAScript 6 draft specification.","218813504008892416","159946057","2012-06-29 21:09:39 +0000","" @@ -5603,12 +5698,12 @@ I wanted to switch carriers but nobody had a better deal than 6GB for $60 plus m "216404237129760768","216384676456173569","894911","2012-06-23 05:36:05 +0000","Tweetbot for iOS","@JimRoepcke Arousing.","","","","" "216196324561920001","","","2012-06-22 15:49:55 +0000","Tweetbot for iOS","RT @antirez: It's not much but I want to share the first interaction I'm having with Sentinel: http://t.co/8npH2l9B","216181560808968192","5813712","2012-06-22 14:51:15 +0000","http://bit.ly/O03gqy,http://bit.ly/O03gqy" "215970658172153856","","","2012-06-22 00:53:12 +0000","Tweetbot for iOS","RT @angustweets: Object.create might have enjoyed more success if the second arg was a simple key-value hash instead of all that defineP ...","215827498716495872","140108433","2012-06-21 15:24:20 +0000","" -"215546200491954176","215511255417503745","894911","2012-06-20 20:46:33 +0000","Twitterrific for Mac","@JimRoepcke The new MBP can theoretically run 5 external displays using USB adapters. Someone please try this :) @macsales @marcoarment","","","","" +"215546200491954176","215511255417503745","894911","2012-06-20 20:46:33 +0000","Twitterrific for Mac","@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","Tweetbot for iOS","@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","","","2012-06-19 23:58:23 +0000","Twitterrific for Mac","RT @siracusa: WWDC session videos are up! https://t.co/HTcPB6bS (via @Jury, of course)","215231024190337025","636923","2012-06-19 23:54:09 +0000","https://developer.apple.com/videos/wwdc/2012/,https://developer.apple.com/videos/wwdc/2012/" -"215224632826015745","215190182356467712","165975834","2012-06-19 23:28:45 +0000","Twitterrific for Mac","@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.","","","","" +"215232090927673345","","","2012-06-19 23:58:23 +0000","Twitterrific for Mac","RT @siracusa: WWDC session videos are up! https://t.co/HTcPB6bS (via @Jury, of course)","215231024190337025","636923","2012-06-19 23:54:09 +0000","https://developer.apple.com/videos/wwdc/2012/,https://developer.apple.com/videos/wwdc/2012/" +"215224632826015745","215190182356467712","165975834","2012-06-19 23:28:45 +0000","Twitterrific for Mac","@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","Tweetbot for iOS","@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","Twitterrific for Mac","@JimRoepcke That doesn't sound good. Hope you feel better after a rest.","","","","" +"214827465456107520","214802580700803078","894911","2012-06-18 21:10:33 +0000","Twitterrific for Mac","@JimRoepcke That doesn't sound good. Hope you feel better after a rest.","","","","" "214752126965002240","214729748763516928","36823","2012-06-18 16:11:11 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@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","Tweetbot for iOS","@raganwald Anecdotally, I have only purchased one desktop (rather than building it myself) and I will take the thinner notebook every time.","","","","" @@ -5633,7 +5728,7 @@ I wanted to switch carriers but nobody had a better deal than 6GB for $60 plus m "212355482239778817","212262167209193473","894911","2012-06-12 01:27:46 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@JimRoepcke Really nice on iPad too!","","","","" "212266835444379648","212236313611612160","7198302","2012-06-11 19:35:31 +0000","Tweetbot for iOS","@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","Twitterrific for Mac","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" +"212034179322482688","","","2012-06-11 04:11:02 +0000","Twitterrific for Mac","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","Tweetbot for iOS","@JimRoepcke Not until the human centipad is released.","","","","" "211945271423275011","211929223156342784","894911","2012-06-10 22:17:45 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@polotek (low end Oakley’s. I have sat on them, etc. Lenses and arms pop off and pop right back in)","","","","" @@ -5657,18 +5752,18 @@ But also sad because Xcode 4 is 2 years old…","","","","" "210775053288214529","","","2012-06-07 16:47:43 +0000","Tweetbot for iOS","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","","","2012-06-07 15:40:39 +0000","Tweetbot for iOS","RT @marcoarment: The Morning Of Weird Emails continues. http://t.co/0rbiBqPU","210753107053920256","14231571","2012-06-07 15:20:30 +0000","http://twitpic.com/9ts7m0,http://twitpic.com/9ts7m0" "210547570857082882","210532933390442496","894911","2012-06-07 01:43:47 +0000","Tweetbot for iOS","@JimRoepcke Hooray! Glad to hear that :)","","","","" -"210529963626078208","","","2012-06-07 00:33:49 +0000","Twitterrific for Mac","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","Twitterrific for Mac","@jonathanstark Only 9 for myself.","","","","" -"210166838385057794","","","2012-06-06 00:30:53 +0000","Twitterrific for Mac","RT @SteveStreza: @marcoarment THERE WERE NO INSTAPAPER COUPONS AT PHILZ COFFEE PLEASE ADVISE","210159439234342913","658643","2012-06-06 00:01:29 +0000","" -"210142123687813121","","","2012-06-05 22:52:41 +0000","Twitterrific for Mac","""What is Xcode? What is the app delicate?"" +"210529963626078208","","","2012-06-07 00:33:49 +0000","Twitterrific for Mac","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","Twitterrific for Mac","@jonathanstark Only 9 for myself.","","","","" +"210166838385057794","","","2012-06-06 00:30:53 +0000","Twitterrific for Mac","RT @SteveStreza: @marcoarment THERE WERE NO INSTAPAPER COUPONS AT PHILZ COFFEE PLEASE ADVISE","210159439234342913","658643","2012-06-06 00:01:29 +0000","" +"210142123687813121","","","2012-06-05 22:52:41 +0000","Twitterrific for Mac","""What is Xcode? What is the app delicate?"" Some people are beyond help.","","","","" "209518717216890880","209505353640058880","14231571","2012-06-04 05:35:29 +0000","Tweetbot for iOS","@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","","","2012-06-02 05:34:38 +0000","Tweetbot for iOS","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.","208786403197333504","14231571","2012-06-02 05:05:32 +0000","" -"208725184037924865","","","2012-06-02 01:02:16 +0000","Twitterrific for Mac","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","","","2012-06-02 00:52:15 +0000","Twitterrific for Mac","RT @JimRoepcke: 📲 I'm currently available for iOS app development contracts and positions. I'm also available for 1-on-1 iOS mentoring v ...","208709983024590848","894911","2012-06-02 00:01:52 +0000","" +"208725184037924865","","","2012-06-02 01:02:16 +0000","Twitterrific for Mac","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","","","2012-06-02 00:52:15 +0000","Twitterrific for Mac","RT @JimRoepcke: 📲 I'm currently available for iOS app development contracts and positions. I'm also available for 1-on-1 iOS mentoring v ...","208709983024590848","894911","2012-06-02 00:01:52 +0000","" "208616432852942848","","","2012-06-01 17:50:08 +0000","Tweetbot for iOS","RT @bmf: In commodity trading news, futures on brilliant ideas continue to be depressed, as prices on talk remain at all time lows.","208543475770204161","8710132","2012-06-01 13:00:13 +0000","" "208549171106562049","","","2012-06-01 13:22:51 +0000","Tweetbot for iOS","RT @DavidBruant: ""Completeness is an anti-goal for syntax."" @littlecalculist https://t.co/W2zYRNgw","207950038226317314","217829531","2012-05-30 21:42:07 +0000","https://mail.mozilla.org/pipermail/es-discuss/2012-May/023045.html,https://mail.mozilla.org/pipermail/es-discuss/2012-May/023045.html" "208394719355604992","208388364418809858","894911","2012-06-01 03:09:07 +0000","Tweetbot for iOS","@JimRoepcke They made the mistake of making it for the “enterprise” instead of for people.","","","","" @@ -5682,21 +5777,21 @@ I waited far too long to ask for a sysadmin.","208786403197333504","14231571","2 "206971072883605504","206921806995660800","894911","2012-05-28 04:52:03 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@devongovett It’s a setting. If you don’t acknowledge a message it notifies again after some interval. I turn it off.","","","","" "206271572317716482","","","2012-05-26 06:32:29 +0000","Tweetbot for iOS","RT @tapfortap: We are pushing over 500k impressions / day on the @tapfortap network. Great week, thanks to all of you new devs!","206270404988375040","494341960","2012-05-26 06:27:51 +0000","" -"206197555288223744","","8248862","2012-05-26 01:38:22 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","@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.","","","","" +"206197555288223744","","8248862","2012-05-26 01:38:22 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","@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","","","2012-05-26 00:03:20 +0000","Tweetbot for iOS","RT @brianloveswords: Guys, I just found out I can do `git checkout -` to switch back to my last used branch. This is fantastic.","206109094338232320","17177251","2012-05-25 19:46:52 +0000","" -"205889494782722048","","","2012-05-25 05:14:15 +0000","Twitterrific for Mac","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","Twitterrific for Mac","@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","Twitterrific for Mac","@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.","","","","" +"205889494782722048","","","2012-05-25 05:14:15 +0000","Twitterrific for Mac","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","Twitterrific for Mac","@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","Twitterrific for Mac","@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","","","2012-05-24 16:45:55 +0000","Tweetbot for iOS","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 ...","205697019266875392","494341960","2012-05-24 16:29:25 +0000","" "205493857482317824","","","2012-05-24 03:02:08 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@tomdale Most likely.","","","","" "205115245885259779","","","2012-05-23 01:57:40 +0000","Tweetbot for iOS","RT @conradirwin: Introducing `&X`, a library we use at @rapportive to write more readable ruby: http://t.co/CGCtiftl","204620791193681921","162814758","2012-05-21 17:12:52 +0000","http://cirw.in/blog/ampex,http://cirw.in/blog/ampex" "204966535675121665","","","2012-05-22 16:06:44 +0000","Tweetbot for iOS","RT @awbjs: ECMAScript 5.1 Specification, now offically available in HTML: http://t.co/aSLjrnDc","204962525287157760","159946057","2012-05-22 15:50:48 +0000","http://ecma-international.org/ecma-262/5.1,http://ecma-international.org/ecma-262/5.1" "204711763520917505","204701916696031232","14231571","2012-05-21 23:14:22 +0000","Tweetbot for iOS","@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","Twitterrific for Mac","@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","Twitterrific for Mac","@kuvos Angry Birds Space","","","","" -"203779117978624000","203777093870432256","16518060","2012-05-19 09:28:22 +0000","Twitterrific for Mac","@vesech Yup.","","","","" +"204658202133020675","","5905672","2012-05-21 19:41:32 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","@kuvos Angry Birds Space","","","","" +"203779117978624000","203777093870432256","16518060","2012-05-19 09:28:22 +0000","Twitterrific for Mac","@vesech Yup.","","","","" "203763978369900544","203698906931015682","33423","2012-05-19 08:28:12 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@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","Tweetbot for iOS","@gruber @blankbaby You might be missing out on a delicious dirty martini, but worse things have happened.","","","","" @@ -5705,46 +5800,46 @@ I waited far too long to ask for a sysadmin.","208786403197333504","14231571","2 "203653799393505280","203651801076080641","20079975","2012-05-19 01:10:24 +0000","Tweetbot for iOS","@polotek There are at least a few Mac apps for that. I tried SSH Tunnel, it wasn't bad. Others may be better.","","","","" "203649125420498945","","","2012-05-19 00:51:49 +0000","Tweetbot for iOS","RT @siracusa: This is why I still pay attention to ""old man of the web"" @zeldman: boldness with purpose. http://t.co/x2w38heA","203628565927964672","636923","2012-05-18 23:30:08 +0000","http://www.zeldman.com/2012/05/18/web-design-manifesto-2012/,http://www.zeldman.com/2012/05/18/web-design-manifesto-2012/" "203648294340132864","203583359375523840","894911","2012-05-19 00:48:31 +0000","Tweetbot for iOS","@JimRoepcke He better be or we'll all know you're slacking off.","","","","" -"203574884197089280","203563002857930752","894911","2012-05-18 19:56:49 +0000","Twitterrific for Mac","@JimRoepcke That's bad ass. High five.","","","","" -"203554855984439296","203552122640404482","894911","2012-05-18 18:37:14 +0000","Twitterrific for Mac","@JimRoepcke What have you done?!","","","","" +"203574884197089280","203563002857930752","894911","2012-05-18 19:56:49 +0000","Twitterrific for Mac","@JimRoepcke That's bad ass. High five.","","","","" +"203554855984439296","203552122640404482","894911","2012-05-18 18:37:14 +0000","Twitterrific for Mac","@JimRoepcke What have you done?!","","","","" "203302152884588545","","","2012-05-18 01:53:05 +0000","Tweetbot for iOS","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.","202573686589497344","16592401","2012-05-16 01:38:25 +0000","" "203290519550431233","","","2012-05-18 01:06:51 +0000","Tweetbot for iOS","RT @devongovett: Oh shit... RT @hackernewsbot: Ruby 1.9 lands NaCl support, can run in Chrome... http://t.co/VZ0xubtM","203273374867267584","15687937","2012-05-17 23:58:43 +0000","http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?revision=35672&view=revision,http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?revision=35672&view=revision" -"203218312493154304","","","2012-05-17 20:19:55 +0000","Twitterrific for Mac","That's no moon. http://t.co/1EzJt06r","","","","http://img.ly/imL0" -"203188613461180416","","","2012-05-17 18:21:55 +0000","Twitterrific for Mac","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","","","","" +"203218312493154304","","","2012-05-17 20:19:55 +0000","Twitterrific for Mac","That's no moon. http://t.co/1EzJt06r","","","","http://img.ly/imL0" +"203188613461180416","","","2012-05-17 18:21:55 +0000","Twitterrific for Mac","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","Tweetbot for iOS","@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","Tweetbot for iOS","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","Twitterrific for Mac","@JimRoepcke Ignore. The download probably affects their ranking more than the 1 star review (I hope anyway, for legit apps).","","","","" +"202848158877892608","202841375539068928","894911","2012-05-16 19:49:04 +0000","Twitterrific for Mac","@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","Tweetbot for iOS","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","Tweetbot for iOS","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","Tweetbot for iOS","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","Twitterrific for Mac","@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","Twitterrific for Mac","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","Twitterrific for Mac","@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.","","","","" +"202173788308246530","202172280908955648","894911","2012-05-14 23:09:21 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","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","Twitterrific for Mac","@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","Tweetbot for iOS","@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","Tweetbot for iOS","@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","Tweetbot for iOS","@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","Twitterrific for Mac","@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","Twitterrific for Mac","My happiness when discussing things on Reddit is inversely proportional to the depth of each conversation.","","","","" -"201730873006112769","","","2012-05-13 17:49:22 +0000","Twitterrific for Mac","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" +"201869940255506433","201856965272543232","389153","2012-05-14 03:01:58 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","My happiness when discussing things on Reddit is inversely proportional to the depth of each conversation.","","","","" +"201730873006112769","","","2012-05-13 17:49:22 +0000","Twitterrific for Mac","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","Tweetbot for iOS","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","Tweetbot for iOS","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","Tweetbot for iOS","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","Tweetbot for iOS","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","Tweetbot for iOS","@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","Twitterrific for Mac","Have I misunderstood NSConditionLock completely or should -[NSConditionLock lockWhenCondition:] really be called lockUntilCondition:?","","","","" -"201013939226677248","201003548530589696","29255412","2012-05-11 18:20:32 +0000","Twitterrific for Mac","@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","Tweetbot for iOS","@say_eye @2percentjazz Great video, and the place looks amazing! I'll have to stop by soon.","","","","" +"201017048531341312","","","2012-05-11 18:32:53 +0000","Twitterrific for Mac","Have I misunderstood NSConditionLock completely or should -[NSConditionLock lockWhenCondition:] really be called lockUntilCondition:?","","","","" +"201013939226677248","201003548530589696","29255412","2012-05-11 18:20:32 +0000","Twitterrific for Mac","@tjholowaychuk An unfortunate right of passage I think. git clean is a motherfucking foot gun, especially -x.","","","","" +"200620249916248065","","","2012-05-10 16:16:09 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@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","Tweetbot for iOS","@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","Tweetbot for iOS","@JimRoepcke lol!","","","","" "200438553291927552","200412073648340993","33423","2012-05-10 04:14:09 +0000","Tweetbot for iOS","@gruber Read that as ""slave"" and was pretty confused for a few seconds.","","","","" "200387258136801280","200367048952512514","45993","2012-05-10 00:50:20 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@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","Twitterrific for Mac","@JimRoepcke Now that's an ambitious goal.","","","","" +"200353143941378048","200295208070561792","894911","2012-05-09 22:34:46 +0000","Twitterrific for Mac","@JimRoepcke Now that's an ambitious goal.","","","","" "200243765707935745","","","2012-05-09 15:20:08 +0000","Tweetbot for iOS","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","Tweetbot for iOS","@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","","","2012-05-09 02:58:50 +0000","Tweetbot for iOS","RT @jsfixed: Deadlines for new issues is 6:00 PST Friday. Issues submitted after that will not be considered. https://t.co/KFdQDFP2","200037605633564672","571442131","2012-05-09 01:40:56 +0000","https://github.com/JSFixed/JSFixed/issues,https://github.com/JSFixed/JSFixed/issues" -"199902302742646784","","","2012-05-08 16:43:17 +0000","Twitterrific for Mac","unfuckbootstrap thanks to @mikeash … http://t.co/qSQk9kHf","","","","http://www.mikeash.com/pyblog/solving-simulator-bootstrap-errors.html" +"199902302742646784","","","2012-05-08 16:43:17 +0000","Twitterrific for Mac","unfuckbootstrap thanks to @mikeash … http://t.co/qSQk9kHf","","","","http://www.mikeash.com/pyblog/solving-simulator-bootstrap-errors.html" "199736326529097729","","","2012-05-08 05:43:45 +0000","Tweetbot for iOS","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.","199620997459087360","197263266","2012-05-07 22:05:29 +0000","" "199722671469105152","199618509192441859","33493","2012-05-08 04:49:30 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","@OHMYDAIMY_ @__SJS Hey, leave me out of this! :p Ik ben niet de sjs u zoekt.","","","","" @@ -5758,19 +5853,19 @@ I waited far too long to ask for a sysadmin.","208786403197333504","14231571","2 "198815493392568320","","","2012-05-05 16:44:42 +0000","Tweetbot for iOS","RT @MattBloomFilms: Sharks are much less scary when they have human teeth... http://t.co/c89GalNg","198730402322583552","32591490","2012-05-05 11:06:35 +0000","https://twitter.com/MattBloomFilms/status/198730402322583552/photo/1,https://twitter.com/MattBloomFilms/status/198730402322583552/photo/1" "198641328492527616","","","2012-05-05 05:12:37 +0000","Tweetbot for iOS","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","","","2012-05-05 01:50:06 +0000","Tweetbot for iOS","RT @toshok: color diff viewers should flip red/green. red should be for lines added. green should be for lines removed.","198507161687572480","14877600","2012-05-04 20:19:30 +0000","" -"198480590398431234","198479416957997056","22196723","2012-05-04 18:33:55 +0000","Twitterrific for Mac","@markkolich Fair enough. I'm no fan of Scala but I understand that perspective.","","","","" -"198478607125979139","198472368824385537","22196723","2012-05-04 18:26:02 +0000","Twitterrific for Mac","@markkolich Objective-C is a non-starter but Scala is cool? I want some of what you're smoking! ;-)","","","","" +"198480590398431234","198479416957997056","22196723","2012-05-04 18:33:55 +0000","Twitterrific for Mac","@markkolich Fair enough. I'm no fan of Scala but I understand that perspective.","","","","" +"198478607125979139","198472368824385537","22196723","2012-05-04 18:26:02 +0000","Twitterrific for Mac","@markkolich Objective-C is a non-starter but Scala is cool? I want some of what you're smoking! ;-)","","","","" "198456924642095106","","","2012-05-04 16:59:52 +0000","Tweetbot for iOS","RT @rupie: @tapfortap lead developer --> @_sjs crossing the TC 10k...coffee in hand! http://t.co/iJehtGGP","198456762851000322","15824992","2012-05-04 16:59:14 +0000","https://twitter.com/rupie/status/198456762851000322/photo/1,https://twitter.com/rupie/status/198456762851000322/photo/1" "198445128870924288","","","2012-05-04 16:13:00 +0000","Tweetbot for iOS","RT @siracusa: That last tweet probably means I am now officially my mother on the Internet.","198394824368463873","636923","2012-05-04 12:53:06 +0000","" "198445105512849408","","","2012-05-04 16:12:54 +0000","Tweetbot for iOS","RT @siracusa: Never give up: http://t.co/ICeQgDGW","198394742642458624","636923","2012-05-04 12:52:47 +0000","http://www.youtube.com/watch?v=qX9FSZJu448,http://www.youtube.com/watch?v=qX9FSZJu448" "198443824199110661","","","2012-05-04 16:07:49 +0000","Tweetbot for iOS","RT @newsycombinator: Learn to read a sentence of Chinese in 3 minutes http://t.co/ciVBp2Di","198382736564699136","14335498","2012-05-04 12:05:04 +0000","http://j.mp/vVybnI,http://j.mp/vVybnI" -"198269191277645826","","","2012-05-04 04:33:53 +0000","Twitterrific for Mac","Ok, take 2: `shasum ""#{filename.gsub(/([$!\(\)\[\]])/, '\\\\\\1')}""` … down to 6 backslashes from 13.","","","","" -"198264297829302274","","","2012-05-04 04:14:26 +0000","Twitterrific for Mac","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","Twitterrific for Mac","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","Twitterrific for Mac","What am I doing wrong? Shell out from Ruby, quoting nightmare: `zsh -c ""noglob shasum \\\""#{filename.gsub(/([$!])/, '\\\\\\\\\\\\\1')}\\\""""`","","","","" -"198170313316499459","","","2012-05-03 22:00:59 +0000","Twitterrific for Mac","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 ...","198168312440557568","2262091","2012-05-03 21:53:02 +0000","" +"198269191277645826","","","2012-05-04 04:33:53 +0000","Twitterrific for Mac","Ok, take 2: `shasum ""#{filename.gsub(/([$!\(\)\[\]])/, '\\\\\\1')}""` … down to 6 backslashes from 13.","","","","" +"198264297829302274","","","2012-05-04 04:14:26 +0000","Twitterrific for Mac","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","Twitterrific for Mac","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","Twitterrific for Mac","What am I doing wrong? Shell out from Ruby, quoting nightmare: `zsh -c ""noglob shasum \\\""#{filename.gsub(/([$!])/, '\\\\\\\\\\\\\1')}\\\""""`","","","","" +"198170313316499459","","","2012-05-03 22:00:59 +0000","Twitterrific for Mac","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 ...","198168312440557568","2262091","2012-05-03 21:53:02 +0000","" "197883018109661184","","","2012-05-03 02:59:22 +0000","Tweetbot for iOS","RT @joshsmith: Whoa! `npm install ____ --save` is freaking amazing. How did I not know about this before?","197824148431572992","10647712","2012-05-02 23:05:27 +0000","" -"197781451670953987","197771391016251393","16468446","2012-05-02 20:15:47 +0000","Twitterrific for Mac","@ryanflorence @devongovett For every person arguing there are 1000 just using JS, with and without semis and comma-first style.","","","","" +"197781451670953987","197771391016251393","16468446","2012-05-02 20:15:47 +0000","Twitterrific for Mac","@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","Tweetbot for iOS","xkcd has itself an apple touch icon now. Much better! http://t.co/VKgFL2M1","","","","https://twitter.com/_sjs/status/197556304443736065/photo/1" "197555626950406145","","","2012-05-02 05:18:26 +0000","Tweetbot for iOS","RT @siracusa: .txt, .tif, .tmp…just wait until the .xt, .if, and .mp compression algorithms are introduced.","197552913952935936","636923","2012-05-02 05:07:39 +0000","" "197555614937923585","","","2012-05-02 05:18:23 +0000","Tweetbot for iOS","RT @siracusa: Looking at an app distributed as a .tbz2 file, I find myself marveling at how tar has assumed ownership of all extensions ...","197550113382608897","636923","2012-05-02 04:56:31 +0000","" @@ -5784,80 +5879,80 @@ I waited far too long to ask for a sysadmin.","208786403197333504","14231571","2 "196649655734517761","196649418936692736","894911","2012-04-29 17:18:26 +0000","Tweetbot for iOS","@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","Tweetbot for iOS","“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","","","2012-04-28 23:20:17 +0000","Tweetbot for iOS","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 ...","196376372619386880","14231571","2012-04-28 23:12:30 +0000","" -"195984455347875840","195973950323433473","259415682","2012-04-27 21:15:10 +0000","Twitterrific for Mac","@yohan_teixeira @tapfortap No problem! Let us know how it goes.","","","","" -"195929947838234627","195875615478521857","259415682","2012-04-27 17:38:34 +0000","Twitterrific for Mac","@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" +"195984455347875840","195973950323433473","259415682","2012-04-27 21:15:10 +0000","Twitterrific for Mac","@yohan_teixeira @tapfortap No problem! Let us know how it goes.","","","","" +"195929947838234627","195875615478521857","259415682","2012-04-27 17:38:34 +0000","Twitterrific for Mac","@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","","","2012-04-27 14:26:30 +0000","Tweetbot for iOS","RT @siracusa: Go Right. http://t.co/GFS0kDya (via @jchutchins)","195876138252369921","636923","2012-04-27 14:04:45 +0000","http://www.youtube.com/watch?v=kiePaAHK3jE,http://www.youtube.com/watch?v=kiePaAHK3jE" "195880686710816768","195865749846360064","2262091","2012-04-27 14:22:49 +0000","Tweetbot for iOS","@ajordens Nice! I think mine is as well, 18.25 GB. Thanks Google.","","","","" -"195696791310704640","195691889880600577","2262091","2012-04-27 02:12:05 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","@ajordens Ugh. Had my CPC on auto and it was very high ($0.73). Thanks for the link, learned something about Adwords today.","","","","" +"195696791310704640","195691889880600577","2262091","2012-04-27 02:12:05 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Tweetbot for iOS","@ajordens That's quite good. Clearly I suck at Adwords!","","","","" "195681967335944192","195316498456256512","2262091","2012-04-27 01:13:11 +0000","Twitter Web Client","@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","Tweetbot for iOS","@niels_bom Yes, it is! I would love to take credit but I must tip my hat to @SteveStreza (iirc)","","","","" +"195179308334067712","","","2012-04-25 15:55:48 +0000","Tweetbot for iOS","@niels_bom Yes, it is! I would love to take credit but I must tip my hat to @SteveStreza (iirc)","","","","" "195163023684534273","","","2012-04-25 14:51:05 +0000","Tweetbot for iOS","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 ...","194509470561349632","637533","2012-04-23 19:34:06 +0000","" "195162828959789058","195124900992786432","11573212","2012-04-25 14:50:19 +0000","Tweetbot for iOS","@jcrossley3 Sounds like you needed them both then :)","","","","" -"195003168944431104","194992514019758080","2262091","2012-04-25 04:15:53 +0000","Twitterrific for Mac","@ajordens Good publicity for their new Dropbox competitor.","","","","" -"195003060030935040","","","2012-04-25 04:15:27 +0000","Twitterrific for Mac","RT @ajordens: @_sjs funny. I was going to do the exact same things with the $100 I just got.","194992514019758080","2262091","2012-04-25 03:33:32 +0000","" -"194991988339253248","","","2012-04-25 03:31:27 +0000","Twitterrific for Mac","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","Twitterrific for Mac","@maccman Do you disagree with the spirit of the post or the details? I disagree about the with statement but like the spirit. +@thomasfuchs","","","","" +"195003168944431104","194992514019758080","2262091","2012-04-25 04:15:53 +0000","Twitterrific for Mac","@ajordens Good publicity for their new Dropbox competitor.","","","","" +"195003060030935040","","","2012-04-25 04:15:27 +0000","Twitterrific for Mac","RT @ajordens: @_sjs funny. I was going to do the exact same things with the $100 I just got.","194992514019758080","2262091","2012-04-25 03:33:32 +0000","" +"194991988339253248","","","2012-04-25 03:31:27 +0000","Twitterrific for Mac","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","Twitterrific for Mac","@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","","","2012-04-24 05:34:03 +0000","Tweetbot for iOS","RT @samvermette: What if adding pull to refresh was easy as doing: [tableView addPullToRefreshWithActionHandler:block]; It now is: htt ...","194657307735506944","39306627","2012-04-24 05:21:33 +0000","https://github.com/samvermette/SVPullToRefresh" -"193534869094137859","","","2012-04-21 03:01:23 +0000","Twitterrific for Mac","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","193529715015954432","12819682","2012-04-21 02:40:54 +0000","http://instagr.am/p/JqkmufCfgT/,http://instagr.am/p/JqkmufCfgT/" -"193523944555413504","","33423","2012-04-21 02:17:58 +0000","Twitterrific for Mac","@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","","","2012-04-20 22:39:59 +0000","Twitterrific for Mac","RT @aaronbazinet: I can no longer hear “turns out” in a normal conversation without immediately hearing @hotdogsladies repeat it in my h ...","193412514107764736","15212851","2012-04-20 18:55:11 +0000","" +"193534869094137859","","","2012-04-21 03:01:23 +0000","Twitterrific for Mac","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","193529715015954432","12819682","2012-04-21 02:40:54 +0000","http://instagr.am/p/JqkmufCfgT/,http://instagr.am/p/JqkmufCfgT/" +"193523944555413504","","33423","2012-04-21 02:17:58 +0000","Twitterrific for Mac","@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","","","2012-04-20 22:39:59 +0000","Twitterrific for Mac","RT @aaronbazinet: I can no longer hear “turns out” in a normal conversation without immediately hearing @hotdogsladies repeat it in my h ...","193412514107764736","15212851","2012-04-20 18:55:11 +0000","" "192323653210357760","","","2012-04-17 18:48:26 +0000","Tweetbot for iOS","RT @Teh_kLeV: LOL: http://t.co/jQ2lk2OY /via @tinkertim","192051395250241537","68813509","2012-04-17 00:46:35 +0000","http://i.stack.imgur.com/jMHoE.jpg,http://i.stack.imgur.com/jMHoE.jpg" "192131203829211136","192129668974002177","14864447","2012-04-17 06:03:43 +0000","Tweetbot for iOS","@bryan_kyle I hear you. *glares at the Finder*","","","","" -"192102294492418048","","","2012-04-17 04:08:50 +0000","Twitterrific for Mac","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","Twitterrific for Mac","@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.","","","","" +"192102294492418048","","","2012-04-17 04:08:50 +0000","Twitterrific for Mac","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","Twitterrific for Mac","@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","Tweetbot for iOS","@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","","","2012-04-14 01:19:17 +0000","Twitter Web Client","RT @carllerche: MongoDB is the Rebecca Black of databases.","190970056878981122","3763061","2012-04-14 01:09:44 +0000","" "190972338160930817","","","2012-04-14 01:18:48 +0000","Twitter Web Client","RT @codinghorror: PHP is the Nickelback of programming languages.","190943243511406592","5637652","2012-04-13 23:23:11 +0000","" "190972083621216256","","","2012-04-14 01:17:47 +0000","Tweetbot for iOS","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 ...","190971177609609216","33493","2012-04-14 01:14:11 +0000","" "190969289627545600","190943243511406592","5637652","2012-04-14 01:06:41 +0000","Tweetbot for iOS","@codinghorror Brilliant. Everyone claims to hate it. Yet it is, somehow, still amazingly popular.","","","","" -"189885628727566336","","","2012-04-11 01:20:36 +0000","Twitterrific","RT @samsoffes: Seriously impressed! Really, really amazing stuff. Watch the video: http://t.co/1xhJ6Oxs","189751363700396032","6154602","2012-04-10 16:27:05 +0000","http://dcovery.com/,http://dcovery.com/" -"189420770034860032","","","2012-04-09 18:33:25 +0000","Twitterrific for Mac","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","Twitterrific","@codinghorror Doppelpïxler, natürlich.","","","","" -"188129651686785025","","","2012-04-06 05:02:58 +0000","Twitterrific","""The IQ of a crowd is the IQ of its most stupid member divided by the number of people in it."" -Terry Pratchett","","","","" -"187405654888157185","","","2012-04-04 05:06:04 +0000","Twitterrific for Mac","RT @TechWraith: Hey #jsconf'ers. The @yammer crew built a cool little mobile web app: http://t.co/4BicMbc7 - check into foursquare and f ...","187362989714841600","14063139","2012-04-04 02:16:32 +0000","http://geeksaround.me,http://geeksaround.me" -"187404347007709185","","","2012-04-04 05:00:52 +0000","Twitterrific for Mac","zhistory in Dropbox is a mixed blessing, but 90% good so far! It's *slightly* similar to having browser history synced across machines.","","","","" -"186689573760417793","","","2012-04-02 05:40:37 +0000","Twitterrific","RT @petervandijck: WebOS, truly the Amiga of the 2010's. http://t.co/p8hbuthE","172307505697918976","823036","2012-02-22 13:11:25 +0000","http://ignorethecode.net/blog/2012/02/21/steal_webos_features/,http://ignorethecode.net/blog/2012/02/21/steal_webos_features/" -"186578746382356482","186569826016301056","31151313","2012-04-01 22:20:14 +0000","Twitterrific","@kuvos Bonus points if it sorts numerically when both values satisfy !isNaN(+a[prop]), or something to that effect.","","","","" -"186576954936410112","","","2012-04-01 22:13:07 +0000","Twitterrific","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]) .., ...","186569826016301056","31151313","2012-04-01 21:44:47 +0000","" -"185896885335244800","185889614995783680","14315117","2012-03-31 01:10:45 +0000","Twitterrific for Mac","@dainerose I got that today as well. Forgot about it so it was like a surprise $5!","","","","" -"185792302176944129","","","2012-03-30 18:15:11 +0000","Twitterrific for Mac","RT @twbootstrap: 25,000. http://t.co/QKQqrY8C","185768722705821696","372475592","2012-03-30 16:41:29 +0000","http://blog.getbootstrap.com/2012/03/25000/,http://blog.getbootstrap.com/2012/03/25000/" -"185765608200224769","","","2012-03-30 16:29:07 +0000","Twitterrific for Mac","RT @wycats: Want to thank @drbrain for his very commonsense thoughts on the kickstarter controversy: http://t.co/8xnHjWAF","185763559064612867","8526432","2012-03-30 16:20:58 +0000","http://blog.segment7.net/2012/03/29/on-community-funding-of-open-source,http://blog.segment7.net/2012/03/29/on-community-funding-of-open-source" -"185451285540126720","","","2012-03-29 19:40:06 +0000","Twitterrific for Mac","RT @fromedome: ""Hulu Plus launches on seven Android tablets"". Very exciting day for those seven people.","185441522391584769","8479062","2012-03-29 19:01:18 +0000","" -"185434146330517504","185427770300579840","14272162","2012-03-29 18:32:00 +0000","Twitterrific for Mac","@jdalton jsmin can't parse valid JS, so it's broken. The solution is to use a proper minifier.","","","","" -"185378679579353090","","","2012-03-29 14:51:36 +0000","Twitterrific","RT @BrendanEich: Yes, arrow functions (=> only, no ->; lexical |this|, standard body block rules for break/continue/return) have c ...","185253393466523649","9533042","2012-03-29 06:33:45 +0000","" -"185378663863300096","","","2012-03-29 14:51:32 +0000","Twitterrific","RT @BrendanEich: http://t.co/O08PzEBP - TC39 consensus achieved via stand-up comedy whiteboard operation by me + goodwill & acceptable c ...","185252794939351041","9533042","2012-03-29 06:31:22 +0000","http://wiki.ecmascript.org/doku.php?id=strawman:arrow_function_syntax,http://wiki.ecmascript.org/doku.php?id=strawman:arrow_function_syntax" -"185040886030274560","","","2012-03-28 16:29:19 +0000","Twitterrific for Mac","RT @SeanToohey: Finally they admit it: A Twitter spokesperson acknowledges that the service has an unfollow bug. http://t.co/Dfc2gmE6 via","185040455359143937","28198173","2012-03-28 16:27:37 +0000","http://tinyurl.com/7pa9nq6,http://tinyurl.com/7pa9nq6" -"185040729754714112","185038748109643778","166272705","2012-03-28 16:28:42 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","@oscargodson Might want to look at iTerm2, I think iTerm was abandoned. I have no problems with vim in iTerm2.","","","","" -"184325779654578176","","","2012-03-26 17:07:45 +0000","Twitterrific for Mac","RT @ndw: Six stages of debugging: http://t.co/xu0OqAhD","184283640140800003","6578032","2012-03-26 14:20:18 +0000","http://plasmasturm.org/log/6debug/,http://plasmasturm.org/log/6debug/" +"189885628727566336","","","2012-04-11 01:20:36 +0000","Twitterrific for iOS","RT @samsoffes: Seriously impressed! Really, really amazing stuff. Watch the video: http://t.co/1xhJ6Oxs","189751363700396032","6154602","2012-04-10 16:27:05 +0000","http://dcovery.com/,http://dcovery.com/" +"189420770034860032","","","2012-04-09 18:33:25 +0000","Twitterrific for Mac","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","Twitterrific for iOS","@codinghorror Doppelpïxler, natürlich.","","","","" +"188129651686785025","","","2012-04-06 05:02:58 +0000","Twitterrific for iOS","""The IQ of a crowd is the IQ of its most stupid member divided by the number of people in it."" -Terry Pratchett","","","","" +"187405654888157185","","","2012-04-04 05:06:04 +0000","Twitterrific for Mac","RT @TechWraith: Hey #jsconf'ers. The @yammer crew built a cool little mobile web app: http://t.co/4BicMbc7 - check into foursquare and f ...","187362989714841600","14063139","2012-04-04 02:16:32 +0000","http://geeksaround.me,http://geeksaround.me" +"187404347007709185","","","2012-04-04 05:00:52 +0000","Twitterrific for Mac","zhistory in Dropbox is a mixed blessing, but 90% good so far! It's *slightly* similar to having browser history synced across machines.","","","","" +"186689573760417793","","","2012-04-02 05:40:37 +0000","Twitterrific for iOS","RT @petervandijck: WebOS, truly the Amiga of the 2010's. http://t.co/p8hbuthE","172307505697918976","823036","2012-02-22 13:11:25 +0000","http://ignorethecode.net/blog/2012/02/21/steal_webos_features/,http://ignorethecode.net/blog/2012/02/21/steal_webos_features/" +"186578746382356482","186569826016301056","31151313","2012-04-01 22:20:14 +0000","Twitterrific for iOS","@kuvos Bonus points if it sorts numerically when both values satisfy !isNaN(+a[prop]), or something to that effect.","","","","" +"186576954936410112","","","2012-04-01 22:13:07 +0000","Twitterrific for iOS","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]) .., ...","186569826016301056","31151313","2012-04-01 21:44:47 +0000","" +"185896885335244800","185889614995783680","14315117","2012-03-31 01:10:45 +0000","Twitterrific for Mac","@dainerose I got that today as well. Forgot about it so it was like a surprise $5!","","","","" +"185792302176944129","","","2012-03-30 18:15:11 +0000","Twitterrific for Mac","RT @twbootstrap: 25,000. http://t.co/QKQqrY8C","185768722705821696","372475592","2012-03-30 16:41:29 +0000","http://blog.getbootstrap.com/2012/03/25000/,http://blog.getbootstrap.com/2012/03/25000/" +"185765608200224769","","","2012-03-30 16:29:07 +0000","Twitterrific for Mac","RT @wycats: Want to thank @drbrain for his very commonsense thoughts on the kickstarter controversy: http://t.co/8xnHjWAF","185763559064612867","8526432","2012-03-30 16:20:58 +0000","http://blog.segment7.net/2012/03/29/on-community-funding-of-open-source,http://blog.segment7.net/2012/03/29/on-community-funding-of-open-source" +"185451285540126720","","","2012-03-29 19:40:06 +0000","Twitterrific for Mac","RT @fromedome: ""Hulu Plus launches on seven Android tablets"". Very exciting day for those seven people.","185441522391584769","8479062","2012-03-29 19:01:18 +0000","" +"185434146330517504","185427770300579840","14272162","2012-03-29 18:32:00 +0000","Twitterrific for Mac","@jdalton jsmin can't parse valid JS, so it's broken. The solution is to use a proper minifier.","","","","" +"185378679579353090","","","2012-03-29 14:51:36 +0000","Twitterrific for iOS","RT @BrendanEich: Yes, arrow functions (=> only, no ->; lexical |this|, standard body block rules for break/continue/return) have c ...","185253393466523649","9533042","2012-03-29 06:33:45 +0000","" +"185378663863300096","","","2012-03-29 14:51:32 +0000","Twitterrific for iOS","RT @BrendanEich: http://t.co/O08PzEBP - TC39 consensus achieved via stand-up comedy whiteboard operation by me + goodwill & acceptable c ...","185252794939351041","9533042","2012-03-29 06:31:22 +0000","http://wiki.ecmascript.org/doku.php?id=strawman:arrow_function_syntax,http://wiki.ecmascript.org/doku.php?id=strawman:arrow_function_syntax" +"185040886030274560","","","2012-03-28 16:29:19 +0000","Twitterrific for Mac","RT @SeanToohey: Finally they admit it: A Twitter spokesperson acknowledges that the service has an unfollow bug. http://t.co/Dfc2gmE6 via","185040455359143937","28198173","2012-03-28 16:27:37 +0000","http://tinyurl.com/7pa9nq6,http://tinyurl.com/7pa9nq6" +"185040729754714112","185038748109643778","166272705","2012-03-28 16:28:42 +0000","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","@oscargodson Might want to look at iTerm2, I think iTerm was abandoned. I have no problems with vim in iTerm2.","","","","" +"184325779654578176","","","2012-03-26 17:07:45 +0000","Twitterrific for Mac","RT @ndw: Six stages of debugging: http://t.co/xu0OqAhD","184283640140800003","6578032","2012-03-26 14:20:18 +0000","http://plasmasturm.org/log/6debug/,http://plasmasturm.org/log/6debug/" "184063839774576640","","","2012-03-25 23:46:54 +0000","Camera on iOS","Looks like Brinks has some serious competition. http://t.co/Qdt5PsD4","","","","https://twitter.com/_sjs/status/184063839774576640/photo/1" -"183763997315702784","","","2012-03-25 03:55:25 +0000","Twitterrific","RT @andy_casey: Borat's national anthem song accidentally played for Khazakhstan's shooting team instead of their national anthem. http ...","183685451138338817","31377368","2012-03-24 22:43:18 +0000","http://www.abc.net.au/news/2012-03-24/kasakh-medalist-played-borat-anthem/3910116" +"183763997315702784","","","2012-03-25 03:55:25 +0000","Twitterrific for iOS","RT @andy_casey: Borat's national anthem song accidentally played for Khazakhstan's shooting team instead of their national anthem. http ...","183685451138338817","31377368","2012-03-24 22:43:18 +0000","http://www.abc.net.au/news/2012-03-24/kasakh-medalist-played-borat-anthem/3910116" "183750218720882689","","","2012-03-25 03:00:41 +0000","Camera on iOS","Makeshift stand-up workstation. It's coming together nicely enough. http://t.co/sK8KLpQO","","","","https://twitter.com/_sjs/status/183750218720882689/photo/1" -"183618691852804097","","","2012-03-24 18:18:02 +0000","Twitterrific for Mac","RT @hotdogsladies: I say: ""No, sorry. I'm not on Facebook at all."" +"183618691852804097","","","2012-03-24 18:18:02 +0000","Twitterrific for Mac","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 ...","183598848277614592","749863","2012-03-24 16:59:11 +0000","" -"183364517659541504","183343990660284416","668863","2012-03-24 01:28:02 +0000","Twitterrific","@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","Twitterrific","@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","Twitterrific for Mac","@typeoneerror localmind has a Google Play button on their website: http://t.co/gEpJIz0C","","","","http://www.localmind.com/" -"183297962993139713","","","2012-03-23 21:03:34 +0000","Twitterrific for Mac","RT @grigs: Apple submitted a patch to webkit containing an initial implementation of -webkit-image-set http://t.co/AJ6jqNMi /via @dontca ...","183226816037793793","5774462","2012-03-23 16:20:51 +0000","http://bit.ly/GL47tr,http://bit.ly/GL47tr" -"182878027083022336","182876359993982976","14864447","2012-03-22 17:14:54 +0000","Twitterrific for Mac","@bryan_kyle I saw that and may have to pilfer it. /etc/fstab seems to be ignored now.","","","","" -"182876514424078337","","","2012-03-22 17:08:53 +0000","Twitterrific for Mac","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! ...","182829496716627969","15687937","2012-03-22 14:02:03 +0000","" -"182875976299061248","182822020826935296","14864447","2012-03-22 17:06:45 +0000","Twitterrific for Mac","@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","","","2012-03-21 22:19:36 +0000","Twitterrific for Mac","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","182541492265553920","894911","2012-03-21 18:57:37 +0000","http://bit.ly/CoolToBeClever,http://bit.ly/CoolToBeClever" -"181928551409385472","","","2012-03-20 02:22:01 +0000","Twitterrific for Mac","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","Twitterrific for Mac","@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","Twitterrific for Mac","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","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","Here's a glimpse. http://t.co/WYqKkzgc","","","","http://img.ly/foce" -"181147070730747904","","","2012-03-17 22:36:41 +0000","Twitterrific for Mac","Journals in iCloud seems to use a new proprietary JS framework. Complete, of course, with its own class system: Core.Object = function(){}","","","","" +"183364517659541504","183343990660284416","668863","2012-03-24 01:28:02 +0000","Twitterrific for iOS","@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","Twitterrific for iOS","@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","Twitterrific for Mac","@typeoneerror localmind has a Google Play button on their website: http://t.co/gEpJIz0C","","","","http://www.localmind.com/" +"183297962993139713","","","2012-03-23 21:03:34 +0000","Twitterrific for Mac","RT @grigs: Apple submitted a patch to webkit containing an initial implementation of -webkit-image-set http://t.co/AJ6jqNMi /via @dontca ...","183226816037793793","5774462","2012-03-23 16:20:51 +0000","http://bit.ly/GL47tr,http://bit.ly/GL47tr" +"182878027083022336","182876359993982976","14864447","2012-03-22 17:14:54 +0000","Twitterrific for Mac","@bryan_kyle I saw that and may have to pilfer it. /etc/fstab seems to be ignored now.","","","","" +"182876514424078337","","","2012-03-22 17:08:53 +0000","Twitterrific for Mac","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! ...","182829496716627969","15687937","2012-03-22 14:02:03 +0000","" +"182875976299061248","182822020826935296","14864447","2012-03-22 17:06:45 +0000","Twitterrific for Mac","@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","","","2012-03-21 22:19:36 +0000","Twitterrific for Mac","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","182541492265553920","894911","2012-03-21 18:57:37 +0000","http://bit.ly/CoolToBeClever,http://bit.ly/CoolToBeClever" +"181928551409385472","","","2012-03-20 02:22:01 +0000","Twitterrific for Mac","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","Twitterrific for Mac","@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","Twitterrific for Mac","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","Twitterrific for Mac","@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","Twitterrific for Mac","@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","Twitterrific for Mac","Here's a glimpse. http://t.co/WYqKkzgc","","","","http://img.ly/foce" +"181147070730747904","","","2012-03-17 22:36:41 +0000","Twitterrific for Mac","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","Hibari","@bryan_kyle @tapfortap A true gentleman.","","","","" "180713501944320003","180713275166699520","14864447","2012-03-16 17:53:51 +0000","Hibari","@bryan_kyle @tapfortap Only if it’s a New Coke ;-) … wait, don’t hold me to that.","","","","" "180711844632207361","","","2012-03-16 17:47:15 +0000","Hibari","RT @tapfortap: @_sjs first ""new iPad"" in the office award goes to you. #jealousrage","180711566012981248","494341960","2012-03-16 17:46:09 +0000","" @@ -6014,7 +6109,6 @@ Mac users: Open Terminal. say -v cellos droid (via ...","155807969991335936","1 "152975449104990208","","","2011-12-31 04:52:43 +0000","Twitter for iPhone","yyc -> yyj, last leg of yxu -> yyj trip home! ✈","","","","" "152288923958251520","152286855675641857","39448955","2011-12-29 07:24:43 +0000","Twitter for Mac","@A_to_the_J_ i'm so sorry! don't breath.","","","","" "152106527031955456","","","2011-12-28 19:19:56 +0000","Twitter for Mac","OH: ""I'm just being logic.""","","","","" -"151782151803772928","","","2011-12-27 21:50:59 +0000","Twitter for iPhone","RT @abackstrom: How to Pronounce Hors d'oeuvres http://t.co/KeqlGTPz","151504628784185344","3621751","2011-12-27 03:28:12 +0000","http://www.youtube.com/watch?v=o1-ndsRPxbM&feature=share,http://www.youtube.com/watch?v=o1-ndsRPxbM&feature=share" "151448040052502528","","","2011-12-26 23:43:21 +0000","Twitter for iPhone","RT @devongovett: Node.js modules you should know about: JSONStream http://t.co/KIOUXZGQ","151381620740472832","15687937","2011-12-26 19:19:25 +0000","http://j.mp/vpNcKZ,http://j.mp/vpNcKZ" "151362743239323648","","","2011-12-26 18:04:24 +0000","Twitter for iPhone","RT @rands: Anytime… anytime… I'm sitting there waiting for my computer or phone to do something, I silently seethe with compounding inne ...","151356590769963008","30923","2011-12-26 17:39:57 +0000","" "151128504677842944","151109218387234816","894911","2011-12-26 02:33:38 +0000","Twitter for iPhone","@JimRoepcke I'll have to check that out. Just saw the movie and it was really good.","","","","" @@ -6597,13 +6691,13 @@ Also, JSHint and some stuff.","98193044821647360","14405464","2011-08-02 00:47:0 "90963412930138112","90962088142442496","33493","2011-07-13 01:59:02 +0000","Twitter for Mac","@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","Twitter for Mac","@peterc You're not joking! That looks really fun, and scary. I'm not apprehensive about many roller coasters.","","","","" "90911065357041664","","","2011-07-12 22:31:01 +0000","Twitter for Mac","RT @toyns: I can't believe Netflix is going to charge me slightly more to watch whatever I want whenever I want to!","90899045190602752","51193121","2011-07-12 21:43:15 +0000","" -"90901714579898368","90894311801094144","3260971","2011-07-12 21:53:52 +0000","Twitter for Mac","@niels_bom Agreed, as long as they keep working on it I'm happy.","","","","" -"90893839451164672","90892236669190144","3260971","2011-07-12 21:22:34 +0000","Twitter for Mac","@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","Twitter for Mac","@niels_bom Google would be wise to make sure the iOS app stands on its own with enough instruction to get started.","","","","" +"90901714579898368","","","2011-07-12 21:53:52 +0000","Twitter for Mac","@niels_bom Agreed, as long as they keep working on it I'm happy.","","","","" +"90893839451164672","","","2011-07-12 21:22:34 +0000","Twitter for Mac","@niels_bom Heh, Google seems committed so I hope it's not that bad. But I'm not holding my breath either.","","","","" +"90890873600086016","","","2011-07-12 21:10:47 +0000","Twitter for Mac","@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","Twitter for Mac","@_sjs @niels_bom then the mobile app will be even more confusing.","","","","" -"90890184094265344","90889148398977024","3260971","2011-07-12 21:08:03 +0000","Twitter for Mac","@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","Twitter for Mac","@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","Twitter for Mac","@niels_bom A great start, might be confusing for some though. Streams for individual Circles are hidden behind 3 taps. #googleplus #android","","","","" +"90890184094265344","","","2011-07-12 21:08:03 +0000","Twitter for Mac","@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","","","2011-07-12 20:51:53 +0000","Twitter for Mac","@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","","","2011-07-12 20:50:36 +0000","Twitter for Mac","@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","Twitter for Mac","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","Twitter for Mac","@tjholowaychuk That's good, sounds like the right idea. Balance practical use with ideals.","","","","" "90619291380092928","90619072085102593","81680030","2011-07-12 03:11:37 +0000","Twitter for Mac","@jedisct1 @ohmyzsh Way to go and ruin my excuse for not moving yet. I got nothing on 15 years :(","","","","" @@ -6622,7 +6716,7 @@ Also, JSHint and some stuff.","98193044821647360","14405464","2011-08-02 00:47:0 "90140408729960448","","5905672","2011-07-10 19:28:42 +0000","Twitter for Mac","@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","Twitter for Mac","@_honza lol, I won't worry about it then","","","","" "90132187915091969","","","2011-07-10 18:56:02 +0000","Twitter for Mac","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","Twitter for Mac","@mentalguy Sent. After being invited I checked back the next morning and got in, ymmv.","","","","" +"90130568754364416","","","2011-07-10 18:49:36 +0000","Twitter for Mac","@mentalguy Sent. After being invited I checked back the next morning and got in, ymmv.","","","","" "90130130097274880","","","2011-07-10 18:47:52 +0000","Twitter for Mac","Twilight Zone material http://t.co/HCZMU7c","","","","http://yfrog.com/kict0p" "90085196342362112","89921669258420224","894911","2011-07-10 15:49:19 +0000","Twitter for Mac","@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","Twitter for Mac","@goodbyebuddy Site has been telling me to try again later for a couple of days :(","","","","" @@ -6644,6 +6738,7 @@ http://t.co/5dmlRqs","","","","http://bit.ly/pmQcCA,http://bit.ly/rmJ1Pd" "89543103349932032","","","2011-07-09 03:55:14 +0000","Twitter for Mac","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","Twitter for Mac","@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","Twitter for Mac","If you have Google+ drag more than one person to a circle right now.","","","","" +"89497363021971457","","","2011-07-09 00:53:28 +0000","Twitter for Mac","RT @b6n: For me, it's either false dichotomies or nothing at all.","89497134390460416","16031975","2011-07-09 00:52:34 +0000","" "89367275693555713","","","2011-07-08 16:16:33 +0000","Twitter for Mac","RT @mitchellh: In the time it takes for the light from your monitor to reach your eyes, your computer can process about 6 instructions. ...","89367184001859584","12819682","2011-07-08 16:16:11 +0000","" "89365888758841344","","","2011-07-08 16:11:02 +0000","Twitter for Mac","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","Twitter for Mac","@JimRoepcke XD http://t.co/FRjFko7","","","","http://yfrog.com/kgx81p" @@ -6839,6 +6934,7 @@ I sure have. Damn good find.","86854928760455169","14231571","2011-07-01 17:53:2 "73187164745240576","73175789276893184","102550526","2011-05-25 00:42:34 +0000","Seesmic","@gnachman TextMate's command line tool for editing files. The problem seems to lie with TM re-activating iTerm when done.","","","","" "73142291325386752","","","2011-05-24 21:44:15 +0000","Kiwi","RT @bryan_kyle: @_sjs ""Never mock synergy"" - Jack Donaghy","73114982933471232","14864447","2011-05-24 19:55:45 +0000","" "73114280907636736","73111982236110848","14864447","2011-05-24 19:52:57 +0000","Kiwi","@bryan_kyle People won't even be able to comprehend the synergy.","","","","" +"73107434562007041","","","2011-05-24 19:25:45 +0000","Seesmic","RT @b6n: Early customers are as important as early hires. Recruit both carefully!","73107211563433984","16031975","2011-05-24 19:24:52 +0000","" "73096317299208193","","","2011-05-24 18:41:34 +0000","Kiwi","""Transform your SEO int a ROI-Driven Marketing Channel"", or ""herp de derp, tee tum tee teedly derp de dum""","","","","" "73093352496709632","","","2011-05-24 18:29:47 +0000","Kiwi","@kitgoncharov That is, it's Infuriating and confusing that they are presented as folders but they don't *behave* like folders.","","","","" "73093038456569856","","","2011-05-24 18:28:33 +0000","Kiwi","@kitgoncharov It's so infuriating and confusing to present them as folders. How they have survived for 10 years is beyond me.","","","","" @@ -6868,7 +6964,6 @@ I sure have. Damn good find.","86854928760455169","14231571","2011-07-01 17:53:2 "72064156165079040","","","2011-05-21 22:20:08 +0000","Kiwi","Just added a config command to @NodeKohai https://github.com/samsonjs/kohai/commit/5309c5c5e45e8a4c07ca72b377919a83db6c22be","","","","" "72038629966495744","","","2011-05-21 20:38:42 +0000","Kiwi","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","Kiwi","Whether I'm hacking on a browser extension, server, webpage, or irc bot it's all JavaScript these days.","","","","" -"72034991713943552","","","2011-05-21 20:24:15 +0000","Kiwi","RT @defunkt: for those who enjoy js golfing: https://github.com/jed/140bytes/wiki/Byte-saving-techniques","72033452106579970","713263","2011-05-21 20:18:07 +0000","" "72019756919689216","","","2011-05-21 19:23:42 +0000","Kiwi","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","Kiwi","@izs Is it the syntax, semantics, or both? Some of the behaviour seems desirable to me.","","","","" "71800551238672384","","","2011-05-21 04:52:40 +0000","Kiwi","Getting the hang of this Aeropress thing. Digging it.","","","","" @@ -7472,11 +7567,11 @@ A. So they can brag about the size of their package.","","","","" "20646017758138368","","","2010-12-31 01:02:48 +0000","Tweetie for Mac","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","Tweetie for Mac","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","Tweetie for Mac","@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","Tweetie for Mac","@mentalguy Definitely, HN poll is just the lazy way to get a rough idea.","","","","" -"20295292309995521","20294187253506048","14358152","2010-12-30 01:49:09 +0000","Tweetie for Mac","@mentalguy Interesting, that does make sense in a way. Maybe we should do a hacker news poll to get an idea.","","","","" +"20301276986216448","","","2010-12-30 02:12:56 +0000","Tweetie for Mac","@mentalguy Definitely, HN poll is just the lazy way to get a rough idea.","","","","" +"20295292309995521","","","2010-12-30 01:49:09 +0000","Tweetie for Mac","@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","Tweetie for Mac","@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","Tweetie for Mac","@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","Tweetie for Mac","@mentalguy Heh, so a majority of developers then.","","","","" +"20282096224309249","","","2010-12-30 00:56:43 +0000","Tweetie for Mac","@mentalguy Heh, so a majority of developers then.","","","","" "20275314152177667","","","2010-12-30 00:29:46 +0000","Tweetie for Mac","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","Tweetie for Mac","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","","","2010-12-29 13:28:03 +0000","Twitter Web Client","RT @ppk: New blog post: The Unbearable Inevitability of Talking Nonsense when you Don’t Know Shit about the Mobile Market @@ -7525,7 +7620,6 @@ http://bit.ly/ ...","20105073468112896","887251","2010-12-29 13:13:17 +0000","" "15059781643411456","","145216969","2010-12-15 15:05:06 +0000","Twitter Web Client","@KlikkiScott You've followed and unfollowed me 3 times now. Stop it. Next time you get reported for spam.","","","","" "15059245879795713","","","2010-12-15 15:02:58 +0000","Twitter Web Client","RT @stephenfry: Just for a moment I thought the 4th letter of that sentence was an 'e' ... http://twitpic.com/3g5srd","15057286439370752","15439395","2010-12-15 14:55:11 +0000","" "14854886231384066","14848029391593473","29255412","2010-12-15 01:30:55 +0000","Tweetie for Mac","@tjholowaychuk Hurray! Have waited for this for quite a while.","","","","" -"14842738600054784","","","2010-12-15 00:42:39 +0000","Twitter for iPhone","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 ...","14838086244499456","1183041","2010-12-15 00:24:10 +0000","" "14787644269535232","14761375171608576","138082149","2010-12-14 21:03:43 +0000","Tweetie for Mac","@jordymoughtin ♪ Walkin' in a soggy wonderland ♫","","","","" "14750860466716672","14743881165836288","4777951","2010-12-14 18:37:33 +0000","Tweetie for Mac","@_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","Kiwi","@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?","","","","" @@ -7550,7 +7644,6 @@ http://bit.ly/ ...","20105073468112896","887251","2010-12-29 13:13:17 +0000","" "12931017417433088","12929441361563648","887251","2010-12-09 18:06:09 +0000","Tweetie for Mac","@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","Tweetie for Mac","@ppk Opera?","","","","" "12912967515381760","12910943386210304","14433431","2010-12-09 16:54:26 +0000","Tweetie for Mac","@kriszyp I hope not.","","","","" -"12898562476081153","","","2010-12-09 15:57:11 +0000","Twitter for iPhone","RT @bradfordw: Pardon my Kanye: ""Yo node.js, Imma let you finish, but Erlang/OTP is one of the greatest network service languages/platfo ...","12896897178009601","14640131","2010-12-09 15:50:34 +0000","" "12752193241223168","12749102336974849","676363","2010-12-09 06:15:34 +0000","Tweetie for Mac","@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","Twitter for iPad","@brianleroux millis?","","","","" "12687176252792833","","","2010-12-09 01:57:13 +0000","Tweetie for Mac","Only 3 languages? I say learn C, JavaScript, and one that you *want* to learn because it sounds interesting. http://is.gd/ipWwc","","","","" @@ -7761,6 +7854,7 @@ https://github.com/holman/boom","7512086204645376","11322372","2010-11-24 19:13: "3251880822050816","","","2010-11-13 01:04:43 +0000","Twitter Web Client","RT @tobie: #textmate update. Not a 2.0, but still.","3251026052251648","3167301","2010-11-13 01:01:19 +0000","" "3244719245099008","3217356864098304","12725872","2010-11-13 00:36:16 +0000","Twitter for iPhone","@karlgoldfield you just did. ;-) my email is sami.samhuri+twt@gmail.com","","","","" "2868702638776320","","","2010-11-11 23:42:06 +0000","Tweetie for Mac","printf/sprintf and strftime in JavaScript: http://github.com/samsonjs/format and http://github.com/samsonjs/strftime (both are on npm)","","","","" +"2862699633446913","","","2010-11-11 23:18:15 +0000","Twitter Web Client","RT @tlrobinson: You should never see multiple ""alert()""s from the same JavaScript context on the screen at once, right? http://bit.ly/di ...","2862092545695745","14206068","2010-11-11 23:15:50 +0000","" "2862387883417600","2861144641376256","894911","2010-11-11 23:17:01 +0000","Twitter Web Client","@JimRoepcke omfg #facedesk","","","","" "2860710354751490","2855378404507649","894911","2010-11-11 23:10:21 +0000","Tweetie for Mac",".@JimRoepcke Firefox 4 introduces a major annoyance: basic auth credentials aren't saved. Hitting our staging server w/ Fx4 is infuriating.","","","","" "2785079105421312","","","2010-11-11 18:09:49 +0000","Twitter Web Client","RT @SubtleGradient: NEW appify 2.0! @@ -7834,11 +7928,11 @@ I've been successfully implementing wallet zero for years.","29670293252","14405 "29510496581","29503115600","14206068","2010-11-02 00:00:00 +0000","Tweetie for Mac","@tlrobinson Divvy, SizeUp, Issues, Colloquy, GitX, Chrome, VLC","","","","" "29517895804","","","2010-11-02 00:00:00 +0000","Twitter for iPhone","No luck w/ @grooveshark for iPhone the last few days. Every song pops up an alert saying it can't be played. #sadpanda","","","","" "29328445426","29322081414","14273142","2010-11-01 00:00:00 +0000","Twitter for iPhone","@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.","","","","" -"29374815208","29358745907","3260971","2010-11-01 00:00:00 +0000","Twitter for iPad","@niels_bom interesting, who knew people edited files > 1GB with a normal editor. That's massive.","","","","" +"29374815208","","","2010-11-01 00:00:00 +0000","Twitter for iPad","@niels_bom interesting, who knew people edited files > 1GB with a normal editor. That's massive.","","","","" "29375030439","29329351171","14273142","2010-11-01 00:00:00 +0000","Twitter for iPad","@lunafiko careful with it though, it can become a habit fast! I do my CSS the same way now :)","","","","" "29375266306","","","2010-11-01 00:00:00 +0000","Twitter for iPad","RT @js_fiddle: Please help with a little survey - http://survey.jsfiddle.net/ takes 15sec, no personal data collected - repeat as many t ...","29371945221","86026492","2010-11-01 13:29:43 +0000","" "29375363397","","","2010-11-01 00:00:00 +0000","Twitter for iPad","RT @acangiano: WOW, a lyrics site that doesn't suck: http://instalyrics.com","29373811618","14582359","2010-11-01 13:52:16 +0000","" -"29377939391","29375735737","3260971","2010-11-01 00:00:00 +0000","Tweetie for Mac","@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.","","","","" +"29377939391","","","2010-11-01 00:00:00 +0000","Tweetie for Mac","@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.","","","","" "29382783017","","","2010-11-01 00:00:00 +0000","Twitter Web Client","Quite possibly the best Everclear song: AM Radio. On @Grooveshark: http://tinysong.com/1XlM #musicmonday #nowplaying #rainymonday","","","","" "29385115672","","","2010-11-01 00:00:00 +0000","Twitter Web Client","Why doesn't #newtwitter display conversations like the iPad app? It's basically impossible to trace a reply back to the root. #fail","","","","" "29387515974","","","2010-11-01 00:00:00 +0000","Tweetie for Mac","Node needs a standard library with deep promises/futures/deferred support. If all values may be deferred you write fewer nested callbacks.","","","","" @@ -7857,8 +7951,8 @@ I've been successfully implementing wallet zero for years.","29670293252","14405 "29163859673","","","2010-10-30 00:00:00 +0000","Twitter Web Client","RT @miksago: Guh!? http://codebutler.github.com/firesheep/tc12/ #security #firesheep (via @klepas)","29163351684","14063149","2010-10-30 07:23:23 +0000","" "29164043947","","14063149","2010-10-30 00:00:00 +0000","Tweetie for Mac","@miksago Thanks :)","","","","" "29209759235","","","2010-10-30 00:00:00 +0000","Tweetie for Mac","Anyone else having trouble w/ Grooveshark mobile today? #downforeveryoneorjustme","","","","" -"29213269215","29167875050","3260971","2010-10-30 00:00:00 +0000","Tweetie for Mac","@niels_bom Might be syntax hightlighting the whole file at once instead of the visible viewport, difficulty in incremental parsing.","","","","" -"29213319101","29167875050","3260971","2010-10-30 00:00:00 +0000","Tweetie for Mac","@niels_bom I'd have test things like turning syntax highlighting off before making an educated guess. Not really sure.","","","","" +"29213269215","","","2010-10-30 00:00:00 +0000","Tweetie for Mac","@niels_bom Might be syntax hightlighting the whole file at once instead of the visible viewport, difficulty in incremental parsing.","","","","" +"29213319101","","","2010-10-30 00:00:00 +0000","Tweetie for Mac","@niels_bom I'd have test things like turning syntax highlighting off before making an educated guess. Not really sure.","","","","" "29222006056","","","2010-10-30 00:00:00 +0000","Twitter Web Client","RT @rauchg: Replacing submodules in favor of straight checked out code. People were having too much trouble with it.","29215872435","15540222","2010-10-30 20:39:14 +0000","" "29222385497","","","2010-10-30 00:00:00 +0000","Twitter Web Client","RT @rentzsch: @rauchg what about fake submodules? http://j.mp/cr0Lkt","29221983256","663463","2010-10-30 22:20:10 +0000","" "29132023240","","","2010-10-29 00:00:00 +0000","Twitter for iPhone","Of course this would happen at the end of a Friday. Thanks Murph!","","","","" @@ -7962,6 +8056,7 @@ I've been successfully implementing wallet zero for years.","29670293252","14405 "26558759424","","","2010-10-06 00:00:00 +0000","Tweetie for Mac","""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","","","","" "26562539734","26559352831","894911","2010-10-06 00:00:00 +0000","Tweetie for Mac","@JimRoepcke Yeah, good read!","","","","" "26582217878","","","2010-10-06 00:00:00 +0000","Tweetie for Mac","Rebooted last night and Instachrome stopped working, perhaps because Chrome updated itself. Reinstalled the extension -> fixed. #instapaper","","","","" +"26588923267","","","2010-10-06 00:00:00 +0000","Twitter Web Client","RT @tlrobinson: Writing recursive asynchronous code makes my head hurt.","26584875031","14206068","2010-10-06 21:04:53 +0000","" "26363821712","","","2010-10-04 00:00:00 +0000","Twitter for iPhone","Current status http://yfrog.com/n1rrsej","","","","" "26388119295","","","2010-10-04 00:00:00 +0000","Twitter for iPhone","RT @promotejs: Are We First Yet is handcrafted awesomeness made with an infusion of the @jsconfeu post party vom Oktoberfest.","26381111586","195403247","2010-10-04 17:15:34 +0000","" "26388754982","26387819301","138082149","2010-10-04 00:00:00 +0000","Twitter for iPhone","@jordymoughtin me too! Some guy keeps getting me to print stuff for him. What a jerk. ;-)","","","","" @@ -8057,7 +8152,7 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", "24450772101","24434010147","894911","2010-09-14 00:00:00 +0000","Tweetie for Mac","@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.","","","","" "24450929315","","","2010-09-14 00:00:00 +0000","Tweetie for Mac","Backup time. One last boot for my Hackintosh till it gains a 5770 and becomes a Windows gaming / HTPC rig again. (sorry @JimRoepcke ;-)","","","","" "24234474616","24225929254","3167301","2010-09-11 00:00:00 +0000","Twitter Web Client","@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 00:00:00 +0000","Tumblr","Periodic Table of the Elements - Josh Duck http://tumblr.com/xzohrggx2","","","","" +"23123779127","","","2010-09-06 00:00:00 +0000","Tumblr","Periodic Table of the Elements - Josh Duck http://tumblr.com/xzohrggx2","","","","" "22933353307","","","2010-09-04 00:00:00 +0000","Twitter for iPhone","Current status: http://yfrog.com/mga06kj","","","","" "22845345587","","","2010-09-03 00:00:00 +0000","Twitter for iPhone","iPad + MyWi make an hour long commute pretty nice. Mywi 4.0 is much easier on my battery too.","","","","" "22673150711","","","2010-09-01 00:00:00 +0000","Tweetie for Mac","Workaround for stuck MBP trackpad: disable Dragging in trackpad prefs, then re-enable. That unstuck it for me just now. Hooray, no reboot.","","","","" @@ -8170,8 +8265,8 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", "17193202984","17192255856","894911","2010-06-27 00:00:00 +0000","Tweetie for Mac","@JimRoepcke Ah, must be new since 0.8 then. It is nice.","","","","" "17068335384","","","2010-06-26 00:00:00 +0000","Tweetie for Mac",":) http://i.imgur.com/3dQWy.jpg","","","","" "17118553616","16781467689","54403950","2010-06-26 00:00:00 +0000","Twitter Web Client","@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)","","","","" -"17122744008","","","2010-06-26 00:00:00 +0000","Tumblr","Video: Ignite Rails - Chris Wanstrath’s How to Bootstrap a Business (via igniterails) http://tumblr.com/xzoc8ev1p","","","","" -"16912476511","","","2010-06-24 00:00:00 +0000","Tumblr","Your App’s Website Sucks - learn try buy communicate enhance http://tumblr.com/xzoc2zj4u","","","","" +"17122744008","","","2010-06-26 00:00:00 +0000","Tumblr","Video: Ignite Rails - Chris Wanstrath’s How to Bootstrap a Business (via igniterails) http://tumblr.com/xzoc8ev1p","","","","" +"16912476511","","","2010-06-24 00:00:00 +0000","Tumblr","Your App’s Website Sucks - learn try buy communicate enhance http://tumblr.com/xzoc2zj4u","","","","" "16944935679","","","2010-06-24 00:00:00 +0000","Tweetie for Mac","Just used Time Machine to restore something for the first time. Something I'd lost with git rebase. Time Machine ftw today.","","","","" "16746934457","","","2010-06-22 00:00:00 +0000","Twitter Web Client","Only hibernate when your battery is low: http://www.apple.com/downloads/macosx/system_disk_utilities/smartsleep.html (ping @JimRoepcke)","","","","" "16747242957","","","2010-06-22 00:00:00 +0000","Twitter Web Client","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","","","","" @@ -8262,7 +8357,7 @@ I thought we were ""fri ...","24797344318","749863","2010-09-17 22:35:06 +0000", "14451956498","","","2010-05-21 00:00:00 +0000","Twitter Web Client","Well, I can see github again. That was short-lived.","","","","" "14203180461","","","2010-05-18 00:00:00 +0000","Twitter Web Client","RT @tirsen: emacs day #2: an abundance of yaks needing shaves.","14202822307","645143","2010-05-18 03:07:59 +0000","" "14232450331","","","2010-05-18 00:00:00 +0000","Twitter Web Client","RT @pharkmillups: thorough, great post from the the mozilla metrics team about choosing a nosql data store http://bit.ly/cgFx7j #cassand ...","14227650848","29777587","2010-05-18 13:30:58 +0000","" -"14232765831","14217793600","14358152","2010-05-18 00:00:00 +0000","Twitter Web Client","@mentalguy I remember that feeling. Here are 9 more to blow your mind: http://en.wikipedia.org/wiki/Ontario_(disambiguation)","","","","" +"14232765831","","","2010-05-18 00:00:00 +0000","Twitter Web Client","@mentalguy I remember that feeling. Here are 9 more to blow your mind: http://en.wikipedia.org/wiki/Ontario_(disambiguation)","","","","" "14200790046","","14174890","2010-05-18 00:00:00 +0000","Twitter Web Client","@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!","","","","" "14077389539","","","2010-05-16 00:00:00 +0000","Twitter Web Client","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.","","","","" "14121195105","14101734821","22406953","2010-05-16 00:00:00 +0000","Twitter Web Client","@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.","","","","" @@ -8285,6 +8380,7 @@ Victoria! http://twitpic.com/1m7g4b","","","","" "13634872590","","","2010-05-08 00:00:00 +0000","Echofon","I keep forgetting how much downtown sucks in the summer. Have to stick to nature!","","","","" "13556062187","","","2010-05-07 00:00:00 +0000","Echofon","RT @simonw: So apparently Ajax means ""uses JavaScript"" and HTML5 now means ""doesn't use Flash""","13544675482","12497","2010-05-07 12:03:46 +0000","" "13371443876","13369743525","14273142","2010-05-04 00:00:00 +0000","Echofon","@lunafiko good timing it's starting to get nice! Have a good trip.","","","","" +"13217100047","","","2010-05-02 00:00:00 +0000","Echofon","RT @tlrobinson: ""Passing callbacks is the *price* of asynchronous API's, not the benefit.""","13216605013","14206068","2010-05-02 00:33:43 +0000","" "13157669261","","","2010-04-30 00:00:00 +0000","Twitter Web Client","RT @Grooveshark: Now accepting Lala refugees.","","","","" "12614255760","","","2010-04-22 00:00:00 +0000","Twitter Web Client","Got an iPad for the evening. Back on my MacBook now, I want to rotate the display to surf the web.","","","","" "12620508667","12615500462","14273142","2010-04-22 00:00:00 +0000","Twitter Web Client","@lunafiko I think I just found it on twitpic, cool!","","","","" @@ -8297,6 +8393,7 @@ Victoria! http://twitpic.com/1m7g4b","","","","" "12497941010","12495440281","14273142","2010-04-20 00:00:00 +0000","Twitter Web Client","@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","","","","" "12498062927","","","2010-04-20 00:00:00 +0000","Twitter Web Client","html5 makes the browser the best cross-platform toolkit. ironically throwing out native look'n'feel altogether wins. http://is.gd/bA948","","","","" "12499117475","12498442444","14273142","2010-04-20 00:00:00 +0000","Twitter Web Client","@lunafiko heh, sounds like a good time :)","","","","" +"12421964589","","","2010-04-18 00:00:00 +0000","Twitter Web Client","RT @tlrobinson: .@brendaneich at #jsconf talking about awesome new features slated for next edition of JS. Detail on the ECMA wiki: http ...","12419872636","14206068","2010-04-18 21:54:38 +0000","" "12322999305","","","2010-04-17 00:00:00 +0000","Twitter Web Client","""but be warned: it's definitely not for the casual jailbreaker."" http://tinyurl.com/y2vsbnv sounds like a challenge! ;-)","","","","" "12341974008","","","2010-04-17 00:00:00 +0000","Gowalla","Meeting my sister in Van for the day. — at Swartz Bay Foot Passenger Terminal http://gowal.la/s/ecZ","","","","" "12342410195","","","2010-04-17 00:00:00 +0000","Gowalla","Photo: God BC is beautiful! — at The Spirit of British Columbia http://gowal.la/c/BSKC","","","","" @@ -8359,10 +8456,10 @@ Victoria! http://twitpic.com/1m7g4b","","","","" "11122252439","11122116123","6509982","2010-03-27 00:00:00 +0000","Twitter Web Client","@argv0 lyrics to ""oops i did it again""","","","","" "11122405818","11119924765","14962753","2010-03-27 00:00:00 +0000","Twitter Web Client","@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.","","","","" "11158272640","11141921864","3374231","2010-03-27 00:00:00 +0000","Echofon","@mxcl I've been listening to a bit of Jamiroquai. Pretty good stuff! Nice idea btw. :)","","","","" +"11062374796","","","2010-03-26 00:00:00 +0000","Twitter Web Client","Idiot users still intentionally opening, clicking on spam http://tinyurl.com/yl2tnzt (great, there is no hope then)","","","","" "11113188838","","","2010-03-26 00:00:00 +0000","Twitter Web Client","For posterity: http://yfrog.com/4ziu0p ... made a few of us here lol on a long Friday afternoon.","","","","" "11115884211","","","2010-03-26 00:00:00 +0000","Twitter Web Client","""The curse of the gifted programmer is apparently the need to deal with occasional direct emails from Eric Raymond."" http://is.gd/b16tf","","","","" "11061811920","","","2010-03-26 00:00:00 +0000","Echofon","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.","11058872352","14561327","2010-03-25 23:19:14 +0000","" -"11062374796","","","2010-03-26 00:00:00 +0000","Twitter Web Client","Idiot users still intentionally opening, clicking on spam http://tinyurl.com/yl2tnzt (great, there is no hope then)","","","","" "11013057232","11008243181","14962753","2010-03-25 00:00:00 +0000","Echofon","@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.","","","","" "11013651388","","","2010-03-25 00:00:00 +0000","Echofon","Come on #rogers you can do better. 2616ms latency! http://twitpic.com/1aqkff","","","","" "11040209720","11022166757","14130443","2010-03-25 00:00:00 +0000","Echofon","@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.","","","","" @@ -8411,8 +8508,8 @@ Victoria! http://twitpic.com/1m7g4b","","","","" "10289609392","10289433993","22406953","2010-03-10 00:00:00 +0000","Twitter Web Client","@mahyarm Ah, that makes sense. I wonder how long after the refresh before they were available. Have to wait and see I guess. :)","","","","" "10290426247","","","2010-03-10 00:00:00 +0000","Twitter Web Client","alias chrome='/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --allow-file-access-from-files >/dev/null 2>&1 &!' ... *sigh*","","","","" "10290462351","","","2010-03-10 00:00:00 +0000","Twitter Web Client","Too bad you can't add command line args to Info.plist in an app bundle on OS X ... or can you?","","","","" -"10206297917","","","2010-03-09 00:00:00 +0000","Twitter Web Client","Thinking I might rewrite scrobbleshark completely. Need a good project to learn Erlang, and it fits the bill perfectly.","","","","" "10206646283","","","2010-03-09 00:00:00 +0000","Twitter Web Client","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 00:00:00 +0000","Twitter Web Client","Thinking I might rewrite scrobbleshark completely. Need a good project to learn Erlang, and it fits the bill perfectly.","","","","" "10176886617","","","2010-03-08 00:00:00 +0000","Twitter Web Client","@Joachim_Joe nope, once you set it up you can pretty much forget about it. :)","","","","" "10179320920","","","2010-03-08 00:00:00 +0000","Twitter Web Client","@Joachim_Joe Grooveshark only updates their feeds every 10 mins, and right now I think it updates every 20-30 mins.","","","","" "10179342997","","","2010-03-08 00:00:00 +0000","Twitter Web Client","@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.","","","","" @@ -8462,11 +8559,11 @@ Soon, soon...","","","","" "9164440350","","","2010-02-16 00:00:00 +0000","Twitter Web Client","[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.","","","","" "9164471810","","","2010-02-16 00:00:00 +0000","Twitter Web Client","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.","","","","" "9192595443","","","2010-02-16 00:00:00 +0000","Twitter Web Client","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-].","","","","" +"9131085794","","","2010-02-15 00:00:00 +0000","Twitter Web Client","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.","","","","" "9124726962","","","2010-02-15 00:00:00 +0000","Twitter Web Client","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.","","","","" "9127937602","","","2010-02-15 00:00:00 +0000","Twitter Web Client","twitter |ˈtwitər| verb [ intrans. ] • talk rapidly and at length in an idle or trivial way : he twittered on about buying a new workshop.","","","","" -"9131085794","","","2010-02-15 00:00:00 +0000","Twitter Web Client","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.","","","","" "9039423188","","","2010-02-13 00:00:00 +0000","Twitter Web Client","Ok what is with the dancers in white?! They're awful. Gordon Campbell seems to be having fun though.","","","","" "8951583106","","","2010-02-12 00:00:00 +0000","Twitter Web Client","images, maps, gmail, buzz, picasa, wave, youtube, books, news, translate, blogger, reader, calendar, chrome os never has to leave google.tld","","","","" "8951626212","","","2010-02-12 00:00:00 +0000","Twitter Web Client","(possibly on google's tubes, using google dns servers)","","","","" @@ -8482,6 +8579,7 @@ verb [ intrans. ] "8813740420","","","2010-02-08 00:00:00 +0000","Twitter Web Client","Just saw a guy with a discman. How retro, very 1999. :p","","","","" "8776771280","8120731163","815869","2010-02-07 00:00:00 +0000","Twitter Web Client","@nocas Thank you! :)","","","","" "8781575552","","","2010-02-07 00:00:00 +0000","Twitter Web Client","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","","","","" +"8705804068","","","2010-02-06 00:00:00 +0000","Twitter Web Client","RT @tlrobinson: I'm not advocating this, but if you wanted to discourage people from using AdBlock you could put goatse, etc behind your ...","8705344653","14206068","2010-02-06 02:38:42 +0000","" "8618301416","8595697827","89704018","2010-02-04 00:00:00 +0000","Twitter Web Client","@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.","","","","" "8642412207","","","2010-02-04 00:00:00 +0000","Twitter Web Client","Today I love Cocoa, especially NSOperationQueue.","","","","" "8574284179","","","2010-02-03 00:00:00 +0000","Twitter Web Client","I often start txting the wrong person due to years of typing the msg *then* choosing the recipient. iPhone's Messages app thinks different.","","","","" @@ -8507,6 +8605,7 @@ verb [ intrans. ] "8328636491","8328395828","14273142","2010-01-28 00:00:00 +0000","Twitter Web Client","@lunafiko Most people getting Apple devices know the limitations. It's kind of a loophole imo. But my next device will run Android anyhow...","","","","" "8337948189","8337127429","14273142","2010-01-28 00:00:00 +0000","Twitter Web Client","@lunafiko Scrobbling rocks! It's always fun to check out listening trends on last.fm and last graph.","","","","" "8340003990","8338672114","14273142","2010-01-28 00:00:00 +0000","Twitter Web Client","@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.","","","","" +"8282793034","","","2010-01-27 00:00:00 +0000","Twitter Web Client","RT @TUAW: The Onion: Frantic Steve Jobs Stays Up All Night... http://www.theonion.com/%63ontent/news_briefs/frantic_steve_jobs_stays_up","8282485260","678953","2010-01-27 15:16:56 +0000","" "8282849475","","","2010-01-27 00:00:00 +0000","Twitter Web Client","<3 the new @grooveshark so far! previous tracks can be restored. column browser for artist/album. and i thought i was in love before! ;-)","","","","" "8285026676","8284365682","89704018","2010-01-27 00:00:00 +0000","Twitter Web Client","@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!","","","","" "8285089180","8284227910","14273142","2010-01-27 00:00:00 +0000","Twitter Web Client","@lunafiko I didn't realize how awesome it was for a little while but I'm completely hooked now. I barely use iTunes anymore.","","","","" @@ -8517,7 +8616,6 @@ verb [ intrans. ] "8269697142","","","2010-01-27 00:00:00 +0000","Twitter Web Client","#scrobbleshark doesn't look like ass on my iphone anymore. yay!","","","","" "8269764295","","","2010-01-27 00:00:00 +0000","Twitter Web Client","#grooveshark's maintenance message: http://twitpic.com/zyrx4 (somehow that never gets old for me)","","","","" "8282119469","","","2010-01-27 00:00:00 +0000","Twitter Web Client","Too dark to get up. wtf am I doing.","","","","" -"8282793034","","","2010-01-27 00:00:00 +0000","Twitter Web Client","RT @TUAW: The Onion: Frantic Steve Jobs Stays Up All Night... http://www.theonion.com/%63ontent/news_briefs/frantic_steve_jobs_stays_up","8282485260","678953","2010-01-27 15:16:56 +0000","" "8238630886","","","2010-01-26 00:00:00 +0000","Twitter Web Client","Oldie but a goodie ... ""Success"" http://xkcd.com/349/","","","","" "8243648667","","","2010-01-26 00:00:00 +0000","Twitter Web Client","Hard not to smile when you see this on your iPod. http://yfrog.com/4ek1zp","","","","" "8252376329","","","2010-01-26 00:00:00 +0000","Twitter Web Client","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 ...","8252066782","678953","2010-01-26 21:52:50 +0000","" @@ -8559,13 +8657,13 @@ verb [ intrans. ] "7994232609","","","2010-01-20 00:00:00 +0000","Twitter Web Client","Oh how I've wished for this! RT @raganwald: Hammertime is an interactive error console for Ruby: http://bit.ly/4suW1d","","","","" "7995339328","","","2010-01-20 00:00:00 +0000","Twitter Web Client","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","","","","" "8002830057","","","2010-01-20 00:00:00 +0000","Twitter Web Client","RT @avibryant: Beatles fans have to listen to this, right now: http://waxy.org/2009/10/audio_analysis_of_the_beatles_multitrack_masters/","8002023400","13192","2010-01-20 22:16:13 +0000","" +"7893631081","","","2010-01-18 00:00:00 +0000","Twitter Web Client","RT @igrigorik: ha! nothing like a RESTful API for your local liquor store (LCBO): http://bit.ly/6ye3nn (for canucks, at least..) :-)","","","","" "7893652393","","","2010-01-18 00:00:00 +0000","Twitter Web Client","For once I'm actually a bit sad I'm not still in Ontario.","","","","" "7893719461","","","2010-01-18 00:00:00 +0000","Twitter Web Client","Done reading and writing about Mach-O for today. I'm starting to go cross-eyed.","","","","" "7907986046","","","2010-01-18 00:00:00 +0000","Twitter Web Client","RT @TUAW: It appears that iTunes Connect (dev's door into App Store) is currently down. We'll update when it's back up.","7907842547","678953","2010-01-18 15:42:23 +0000","" "7915270793","7914960717","1341781","2010-01-18 00:00:00 +0000","Twitter Web Client","@gilesgoatboy +1 for pixelmator, never tried acorn though","","","","" "7884830671","","","2010-01-18 00:00:00 +0000","Twitter Web Client","Aha! Learning about some useful bits in Mach-O load commands. I need read about reloff and nreloc in the ABI docs. Thanks nasm!","","","","" "7885033611","","","2010-01-18 00:00:00 +0000","Twitter Web Client","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.","","","","" -"7893631081","","","2010-01-18 00:00:00 +0000","Twitter Web Client","RT @igrigorik: ha! nothing like a RESTful API for your local liquor store (LCBO): http://bit.ly/6ye3nn (for canucks, at least..) :-)","","","","" "7844208958","","","2010-01-17 00:00:00 +0000","Twitter Web Client","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.","","","","" "7872667977","","","2010-01-17 00:00:00 +0000","Twitter Web Client","Breakfast of champions. Protein. That is all. http://twitpic.com/yj4mq","","","","" "7879453024","","33858688","2010-01-17 00:00:00 +0000","Twitter Web Client","@ehoppe walking by #shawcable. Should I throw something at them for you? ;-)","","","","" @@ -8613,12 +8711,12 @@ verb [ intrans. ] "7317979853","","","2010-01-03 00:00:00 +0000","Twitter Web Client","RT @tlrobinson: Huxley vs. Orwell: http://i.imgur.com/XmNt6.jpg Who was [more] right?","","","","" "7318084854","","","2010-01-03 00:00:00 +0000","Twitter Web Client","Absolute capitalism doesn't work. RT @gilesgoatboy: http://www.good.is/post/cost-of-health-care-by-country-as-compared-to-life-expectancy","","","","" "7323770241","7319403764","1341781","2010-01-03 00:00:00 +0000","Twitter Web Client","@gilesgoatboy Bad choice of words on my part. I simply meant that the US is predominantly a capitalist society.","","","","" +"7274724238","","","2010-01-01 00:00:00 +0000","Twitter Web Client","Bring in '10 w/music! RT @TheBeatlesVideo VIDEO: The Beatles - ""Revolution"" (Version 2) http://bit.ly/5DoyhL Plz ReTweet & #followfriday us!","","","","" "7255136818","","","2010-01-01 00:00:00 +0000","Twitter Web Client","""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","","","","" "7255400937","","","2010-01-01 00:00:00 +0000","Twitter Web Client","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","","","","" "7256201910","","","2010-01-01 00:00:00 +0000","Twitter Web Client","http://club1994.com The 90s are the new 80s. That's weird.","","","","" "7268086370","7265755765","14273142","2010-01-01 00:00:00 +0000","Twitter Web Client","@lunafiko not just you! It's always hyped. Happy new year anyway! Hope next year is better than the last.","","","","" "7268202797","","","2010-01-01 00:00:00 +0000","Twitter Web Client","Time to pack it in. Happy new year everyone! Hope it was loads of fun (and safe).","","","","" -"7274724238","","","2010-01-01 00:00:00 +0000","Twitter Web Client","Bring in '10 w/music! RT @TheBeatlesVideo VIDEO: The Beatles - ""Revolution"" (Version 2) http://bit.ly/5DoyhL Plz ReTweet & #followfriday us!","","","","" "7215542569","","","2009-12-31 00:00:00 +0000","Twitter Web Client","Looking into building Hpricot from scratch to try and debug Hpricot.scan without goto (it's calling downcase on nil somewhere).","","","","" "7216613261","","","2009-12-31 00:00:00 +0000","Twitter Web Client","This looks fun ... #code2009 for me: Objective-C, JavaScript, x86 assembly, and as always Ruby and C.","","","","" "7216820686","","","2009-12-31 00:00:00 +0000","Twitter Web Client","Does this http://is.gd/5Hfd6 mean Yegge was right http://is.gd/5Hfd7 or that JS and Rb devs twitter too much? #code2009","","","","" From 98895f9d673038da43ecc42fd53007e9d593bf6e Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Wed, 17 Oct 2018 10:11:43 -0700 Subject: [PATCH 17/33] update dependencies --- package-lock.json | 7856 +++++++++++++++++++++++++-------------------- package.json | 2 +- 2 files changed, 4432 insertions(+), 3426 deletions(-) diff --git a/package-lock.json b/package-lock.json index bff5db9..4b48b02 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,41 +4,53 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@types/babel-types": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/@types/babel-types/-/babel-types-7.0.4.tgz", + "integrity": "sha512-WiZhq3SVJHFRgRYLXvpf65XnV6ipVHhnNaNvE8yCimejrGglkg38kEj0JcizqwSHxmPSjcTlig/6JouxLGEhGw==" + }, + "@types/babylon": { + "version": "6.16.3", + "resolved": "https://registry.npmjs.org/@types/babylon/-/babylon-6.16.3.tgz", + "integrity": "sha512-lyJ8sW1PbY3uwuvpOBZ9zMYKshMnQpXmeDHh8dj9j2nJm/xrW0FgB5gLSYOArj5X0IfaXnmhFoJnhS4KbqIMug==", + "requires": { + "@types/babel-types": "*" + } + }, + "JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "requires": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + } + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, "accepts": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.2.13.tgz", "integrity": "sha1-5fHzkoxtlf2WVYw27D2dDeSm7Oo=", "requires": { - "mime-types": "2.1.17", + "mime-types": "~2.1.6", "negotiator": "0.5.3" - }, - "dependencies": { - "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" - }, - "mime-types": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", - "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", - "requires": { - "mime-db": "1.30.0" - } - } } }, "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.0.2.tgz", + "integrity": "sha512-GXmKIvbrN3TV7aVqAzVFaMW8F8wzVX7voEBRO3bDA64+EX37YSayggRJP5Xig6HYHBkWKpFg9W5gg6orklubhg==" }, "acorn-globals": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz", "integrity": "sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8=", "requires": { - "acorn": "4.0.13" + "acorn": "^4.0.4" }, "dependencies": { "acorn": { @@ -48,20 +60,45 @@ } } }, + "acorn-node": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.6.0.tgz", + "integrity": "sha512-ZsysjEh+Y3i14f7YXCAKJy99RXbd56wHKYBzN4FlFtICIZyFpYwK6OwNJhcz8A/FMtxoUZkJofH1v9KIfNgWmw==", + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1", + "xtend": "^4.0.1" + } + }, + "acorn-walk": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.1.0.tgz", + "integrity": "sha512-ugTb7Lq7u4GfWSqqpwE0bGyoBZNMTok/zDBXxfEG0QM50jNlGhIWjRC1pPN7bvV1anhF+bs+/gNcRw+o55Evbg==" + }, "adm-zip": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz", - "integrity": "sha1-hgbCy/HEJs6MjsABdER/1Jtur8E=" + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.11.tgz", + "integrity": "sha512-L8vcjDTCOIJk7wFvmlEUN7AsSb8T+2JrdP7KINBjzr24TJ5Mwj590sLu3BC7zNZowvJWa/JtPmD8eJCzdtDWjA==" }, "ajv": { "version": "5.5.2", "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", "requires": { - "co": "4.6.0", - "fast-deep-equal": "1.0.0", - "fast-json-stable-stringify": "2.0.0", - "json-schema-traverse": "0.3.1" + "co": "^4.6.0", + "fast-deep-equal": "^1.0.0", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.3.0" + } + }, + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "requires": { + "kind-of": "^3.0.2", + "longest": "^1.0.1", + "repeat-string": "^1.5.2" } }, "amdefine": { @@ -69,102 +106,292 @@ "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", + "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", + "requires": { + "micromatch": "^2.1.5", + "normalize-path": "^2.0.0" + } + }, "aproba": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" }, "are-we-there-yet": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz", - "integrity": "sha1-u13KOCu5TwXhUZQ3PRb9O6HKEQ0=", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", + "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", "requires": { - "delegates": "1.0.0", - "readable-stream": "2.3.3" - }, - "dependencies": { - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" - }, - "readable-stream": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", - "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "requires": { - "safe-buffer": "5.1.1" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - } + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" } }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "requires": { + "arr-flatten": "^1.0.1" + } + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + }, + "array-filter": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz", + "integrity": "sha1-fajPLiZijtcygDWB/SH2fKzS7uw=" + }, "array-find-index": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" }, + "array-map": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz", + "integrity": "sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI=" + }, + "array-reduce": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz", + "integrity": "sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys=" + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "assert": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", + "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", + "requires": { + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + }, "async": { "version": "0.2.9", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.9.tgz", + "resolved": "http://registry.npmjs.org/async/-/async-0.2.9.tgz", "integrity": "sha1-32MGD789Myhqdqr21Vophtn/hhk=" }, + "async-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", + "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" + }, "async-foreach": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=" }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + }, "autoprefixer": { "version": "7.1.6", "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.1.6.tgz", "integrity": "sha512-C9yv/UF3X+eJTi/zvfxuyfxmLibYrntpF3qoJYrMeQwgUJOZrZvpJiMG2FMQ3qnhWtF/be4pYONBBw95ZGe3vA==", "requires": { - "browserslist": "2.11.3", - "caniuse-lite": "1.0.30000792", - "normalize-range": "0.1.2", - "num2fraction": "1.2.2", - "postcss": "6.0.14", - "postcss-value-parser": "3.3.0" + "browserslist": "^2.5.1", + "caniuse-lite": "^1.0.30000748", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^6.0.13", + "postcss-value-parser": "^3.2.3" } }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", + "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", + "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" + }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + } + } + }, + "base64-js": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", + "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==" + }, "base64-url": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/base64-url/-/base64-url-1.2.1.tgz", @@ -172,7 +399,7 @@ }, "basic-auth": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-1.0.4.tgz", + "resolved": "http://registry.npmjs.org/basic-auth/-/basic-auth-1.0.4.tgz", "integrity": "sha1-Awk1sB3nyblKgksp8/zLdQ06UpA=" }, "basic-auth-connect": { @@ -185,99 +412,313 @@ "resolved": "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz", "integrity": "sha1-PzQU84AyF0O/wQQvmoP/HVgk1GQ=" }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "binary-extensions": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz", + "integrity": "sha512-DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg==" + }, "block-stream": { "version": "0.0.9", "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } + "inherits": "~2.0.0" } }, + "bn.js": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", + "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==" + }, "body-parser": { "version": "1.13.3", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.13.3.tgz", "integrity": "sha1-wIzzMMM1jhUQFqBXRvE/ApyX+pc=", "requires": { "bytes": "2.1.0", - "content-type": "1.0.4", - "debug": "2.2.0", - "depd": "1.0.1", - "http-errors": "1.3.1", + "content-type": "~1.0.1", + "debug": "~2.2.0", + "depd": "~1.0.1", + "http-errors": "~1.3.1", "iconv-lite": "0.4.11", - "on-finished": "2.3.0", + "on-finished": "~2.3.0", "qs": "4.0.0", - "raw-body": "2.1.7", - "type-is": "1.6.15" - }, - "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "requires": { - "ms": "0.7.1" - } - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" - } + "raw-body": "~2.1.2", + "type-is": "~1.6.6" } }, "brace-expansion": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", - "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "requires": { - "balanced-match": "1.0.0", + "balanced-match": "^1.0.0", "concat-map": "0.0.1" + } + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "requires": { + "expand-range": "^1.8.1", + "preserve": "^0.2.0", + "repeat-element": "^1.1.2" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + }, + "browser-pack": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz", + "integrity": "sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA==", + "requires": { + "JSONStream": "^1.0.3", + "combine-source-map": "~0.8.0", + "defined": "^1.0.0", + "safe-buffer": "^5.1.1", + "through2": "^2.0.0", + "umd": "^3.0.0" + } + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "requires": { + "resolve": "1.1.7" }, "dependencies": { - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=" } } }, + "browserify": { + "version": "16.2.3", + "resolved": "https://registry.npmjs.org/browserify/-/browserify-16.2.3.tgz", + "integrity": "sha512-zQt/Gd1+W+IY+h/xX2NYMW4orQWhqSwyV+xsblycTtpOuB27h1fZhhNQuipJ4t79ohw4P4mMem0jp/ZkISQtjQ==", + "requires": { + "JSONStream": "^1.0.3", + "assert": "^1.4.0", + "browser-pack": "^6.0.1", + "browser-resolve": "^1.11.0", + "browserify-zlib": "~0.2.0", + "buffer": "^5.0.2", + "cached-path-relative": "^1.0.0", + "concat-stream": "^1.6.0", + "console-browserify": "^1.1.0", + "constants-browserify": "~1.0.0", + "crypto-browserify": "^3.0.0", + "defined": "^1.0.0", + "deps-sort": "^2.0.0", + "domain-browser": "^1.2.0", + "duplexer2": "~0.1.2", + "events": "^2.0.0", + "glob": "^7.1.0", + "has": "^1.0.0", + "htmlescape": "^1.1.0", + "https-browserify": "^1.0.0", + "inherits": "~2.0.1", + "insert-module-globals": "^7.0.0", + "labeled-stream-splicer": "^2.0.0", + "mkdirp": "^0.5.0", + "module-deps": "^6.0.0", + "os-browserify": "~0.3.0", + "parents": "^1.0.1", + "path-browserify": "~0.0.0", + "process": "~0.11.0", + "punycode": "^1.3.2", + "querystring-es3": "~0.2.0", + "read-only-stream": "^2.0.0", + "readable-stream": "^2.0.2", + "resolve": "^1.1.4", + "shasum": "^1.0.0", + "shell-quote": "^1.6.1", + "stream-browserify": "^2.0.0", + "stream-http": "^2.0.0", + "string_decoder": "^1.1.1", + "subarg": "^1.0.0", + "syntax-error": "^1.1.1", + "through2": "^2.0.0", + "timers-browserify": "^1.0.1", + "tty-browserify": "0.0.1", + "url": "~0.11.0", + "util": "~0.10.1", + "vm-browserify": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "http://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "http://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "requires": { + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", + "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "requires": { + "bn.js": "^4.1.1", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.2", + "elliptic": "^6.0.0", + "inherits": "^2.0.1", + "parse-asn1": "^5.0.0" + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "requires": { + "pako": "~1.0.5" + } + }, "browserslist": { "version": "2.11.3", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz", "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==", "requires": { - "caniuse-lite": "1.0.30000792", - "electron-to-chromium": "1.3.31" + "caniuse-lite": "^1.0.30000792", + "electron-to-chromium": "^1.3.30" } }, + "buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz", + "integrity": "sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4" + } + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + }, + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + }, "bytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.1.0.tgz", "integrity": "sha1-rJPEEOL/ycx89LRks4KJBn9eR7Q=" }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + } + }, + "cached-path-relative": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.1.tgz", + "integrity": "sha1-0JxLUoAKpMB44t2BqGmqyQ0uVOc=" + }, "camel-case": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-1.2.2.tgz", "integrity": "sha1-Gsp8TRlTWaLOmVV5NDPG5VQlEfI=", "requires": { - "sentence-case": "1.1.3", - "upper-case": "1.1.3" + "sentence-case": "^1.1.1", + "upper-case": "^1.1.1" } }, + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" + }, "camelcase-keys": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "resolved": "http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", "requires": { - "camelcase": "2.1.1", - "map-obj": "1.0.1" + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" }, "dependencies": { "camelcase": { @@ -288,31 +729,65 @@ } }, "caniuse-lite": { - "version": "1.0.30000792", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000792.tgz", - "integrity": "sha1-0M6pgfgRjzlhRxr7tDyaHlu/AzI=" + "version": "1.0.30000892", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000892.tgz", + "integrity": "sha512-X9rxMaWZNbJB5qjkDqPtNv/yfViTeUL6ILk0QJNxLV3OhKC5Acn5vxsuUvllR6B48mog8lmS+whwHq/QIYSL9w==" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "requires": { + "align-text": "^0.1.3", + "lazy-cache": "^1.0.3" + } + }, + "chalk": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } }, "change-case": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/change-case/-/change-case-2.3.1.tgz", "integrity": "sha1-LE/ePwY7tB0AzWjg1aCdthy+iU8=", "requires": { - "camel-case": "1.2.2", - "constant-case": "1.1.2", - "dot-case": "1.1.2", - "is-lower-case": "1.1.3", - "is-upper-case": "1.1.2", - "lower-case": "1.1.4", - "lower-case-first": "1.0.2", - "param-case": "1.1.2", - "pascal-case": "1.1.2", - "path-case": "1.1.2", - "sentence-case": "1.1.3", - "snake-case": "1.1.2", - "swap-case": "1.1.2", - "title-case": "1.1.2", - "upper-case": "1.1.3", - "upper-case-first": "1.1.2" + "camel-case": "^1.1.1", + "constant-case": "^1.1.0", + "dot-case": "^1.1.0", + "is-lower-case": "^1.1.0", + "is-upper-case": "^1.1.0", + "lower-case": "^1.1.1", + "lower-case-first": "^1.0.0", + "param-case": "^1.1.0", + "pascal-case": "^1.1.0", + "path-case": "^1.1.0", + "sentence-case": "^1.1.1", + "snake-case": "^1.1.0", + "swap-case": "^1.1.0", + "title-case": "^1.1.0", + "upper-case": "^1.1.1", + "upper-case-first": "^1.1.0" } }, "character-parser": { @@ -320,13 +795,64 @@ "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-1.2.2.tgz", "integrity": "sha1-ktPdSL/cmtXpE+yVPZD21XGkZ9M=" }, + "chokidar": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", + "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", + "requires": { + "anymatch": "^1.3.0", + "async-each": "^1.0.0", + "fsevents": "^1.0.0", + "glob-parent": "^2.0.0", + "inherits": "^2.0.1", + "is-binary-path": "^1.0.0", + "is-glob": "^2.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.0.0" + } + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + } + }, "classifier": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/classifier/-/classifier-0.1.0.tgz", "integrity": "sha1-4rGFu6Y7v5J893cO6h63Cus/lZY=", "requires": { - "redis": "2.8.0", - "underscore": "1.8.3" + "redis": ">=0.7.0", + "underscore": ">=1.1.0" } }, "clean-css": { @@ -334,29 +860,24 @@ "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz", "integrity": "sha1-vxlF6C/ICPVWlebd6uwBQA79A/8=", "requires": { - "commander": "2.8.1", - "source-map": "0.4.4" + "commander": "2.8.x", + "source-map": "0.4.x" }, "dependencies": { "commander": { "version": "2.8.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", + "resolved": "http://registry.npmjs.org/commander/-/commander-2.8.1.tgz", "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", "requires": { - "graceful-readlink": "1.0.1" + "graceful-readlink": ">= 1.0.0" } }, - "graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" - }, "source-map": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", "requires": { - "amdefine": "1.0.1" + "amdefine": ">=0.0.4" } } } @@ -367,23 +888,52 @@ "integrity": "sha1-ewzT3pkORSklZnwNuv/cn38qmhU=", "requires": { "exit": "0.1.2", - "glob": "7.1.2" + "glob": "^7.0.5" } }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "requires": { + "center-align": "^0.1.1", + "right-align": "^0.1.1", + "wordwrap": "0.0.2" + } + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" + }, "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + }, "coffee-script": { "version": "1.12.7", "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==" }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, "color-convert": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz", - "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "requires": { "color-name": "1.1.3" } @@ -393,24 +943,41 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, + "combine-source-map": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz", + "integrity": "sha1-pY0N8ELBhvz4IqjoAV9UUNLXmos=", + "requires": { + "convert-source-map": "~1.1.0", + "inline-source-map": "~0.6.0", + "lodash.memoize": "~3.0.3", + "source-map": "~0.5.3" + } + }, + "combined-stream": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz", + "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, "commander": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.0.0.tgz", + "resolved": "http://registry.npmjs.org/commander/-/commander-2.0.0.tgz", "integrity": "sha1-0bhvkB+LZL2UG96tr5JFMDk76Sg=" }, + "component-emitter": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" + }, "compressible": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.12.tgz", - "integrity": "sha1-xZpcmdt2dn6YdlAOJx72OzSTvWY=", + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.15.tgz", + "integrity": "sha512-4aE67DL33dSW9gw4CI2H/yTxqHLNcxp0yS6jB+4h+wr3e43+1z7vm0HU9qXOH8j+qjKuL8+UtkOxYQSMq60Ylw==", "requires": { - "mime-db": "1.32.0" - }, - "dependencies": { - "mime-db": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.32.0.tgz", - "integrity": "sha512-+ZWo/xZN40Tt6S+HyakUxnSOgff+JEdaneLWIm0Z6LmpCn5DMcZntLyUY5c/rTDog28LhXLKOUZKoTxTCAdBVw==" - } + "mime-db": ">= 1.36.0 < 2" } }, "compression": { @@ -418,77 +985,28 @@ "resolved": "https://registry.npmjs.org/compression/-/compression-1.5.2.tgz", "integrity": "sha1-sDuNhub4rSloPLqN+R3cb/x3s5U=", "requires": { - "accepts": "1.2.13", + "accepts": "~1.2.12", "bytes": "2.1.0", - "compressible": "2.0.12", - "debug": "2.2.0", - "on-headers": "1.0.1", - "vary": "1.0.1" - }, - "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "requires": { - "ms": "0.7.1" - } - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" - } + "compressible": "~2.0.5", + "debug": "~2.2.0", + "on-headers": "~1.0.0", + "vary": "~1.0.1" } }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, "concat-stream": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", - "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "requires": { - "inherits": "2.0.3", - "readable-stream": "2.0.6", - "typedarray": "0.0.6" - }, - "dependencies": { - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" - }, - "readable-stream": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", - "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "0.10.31", - "util-deprecate": "1.0.2" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - } + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" } }, "connect": { @@ -497,51 +1015,36 @@ "integrity": "sha1-jam8vooFTT0xjXTf7JA7XDmhtgk=", "requires": { "basic-auth-connect": "1.0.0", - "body-parser": "1.13.3", + "body-parser": "~1.13.3", "bytes": "2.1.0", - "compression": "1.5.2", - "connect-timeout": "1.6.2", - "content-type": "1.0.4", + "compression": "~1.5.2", + "connect-timeout": "~1.6.2", + "content-type": "~1.0.1", "cookie": "0.1.3", - "cookie-parser": "1.3.5", + "cookie-parser": "~1.3.5", "cookie-signature": "1.0.6", - "csurf": "1.8.3", - "debug": "2.2.0", - "depd": "1.0.1", - "errorhandler": "1.4.3", - "express-session": "1.11.3", + "csurf": "~1.8.3", + "debug": "~2.2.0", + "depd": "~1.0.1", + "errorhandler": "~1.4.2", + "express-session": "~1.11.3", "finalhandler": "0.4.0", "fresh": "0.3.0", - "http-errors": "1.3.1", - "method-override": "2.3.10", - "morgan": "1.6.1", + "http-errors": "~1.3.1", + "method-override": "~2.3.5", + "morgan": "~1.6.1", "multiparty": "3.3.2", - "on-headers": "1.0.1", - "parseurl": "1.3.0", + "on-headers": "~1.0.0", + "parseurl": "~1.3.0", "pause": "0.1.0", "qs": "4.0.0", - "response-time": "2.3.2", - "serve-favicon": "2.3.2", - "serve-index": "1.7.3", - "serve-static": "1.10.3", - "type-is": "1.6.15", + "response-time": "~2.3.1", + "serve-favicon": "~2.3.0", + "serve-index": "~1.7.2", + "serve-static": "~1.10.0", + "type-is": "~1.6.6", "utils-merge": "1.0.0", - "vhost": "3.0.2" - }, - "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "requires": { - "ms": "0.7.1" - } - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" - } + "vhost": "~3.0.1" } }, "connect-timeout": { @@ -549,25 +1052,18 @@ "resolved": "https://registry.npmjs.org/connect-timeout/-/connect-timeout-1.6.2.tgz", "integrity": "sha1-3ppexh4zoStu2qt7XwYumMWZuI4=", "requires": { - "debug": "2.2.0", - "http-errors": "1.3.1", + "debug": "~2.2.0", + "http-errors": "~1.3.1", "ms": "0.7.1", - "on-headers": "1.0.1" - }, - "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "requires": { - "ms": "0.7.1" - } - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" - } + "on-headers": "~1.0.0" + } + }, + "console-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", + "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", + "requires": { + "date-now": "^0.1.4" } }, "console-control-strings": { @@ -580,24 +1076,36 @@ "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-1.1.2.tgz", "integrity": "sha1-jsLKW6ND4Aqjjb9OIA/VrJB+/WM=", "requires": { - "snake-case": "1.1.2", - "upper-case": "1.1.3" + "snake-case": "^1.1.0", + "upper-case": "^1.1.1" } }, "constantinople": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-3.1.0.tgz", - "integrity": "sha1-dWnKqKo/jVk11i4fqW+fcCzYHHk=", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-3.1.2.tgz", + "integrity": "sha512-yePcBqEFhLOqSBtwYOGGS1exHo/s1xjekXiinh4itpNQGCu4KA1euPh1fg07N2wMITZXQkBz75Ntdt1ctGZouw==", "requires": { - "acorn": "3.3.0", - "is-expression": "2.1.0" + "@types/babel-types": "^7.0.0", + "@types/babylon": "^6.16.2", + "babel-types": "^6.26.0", + "babylon": "^6.18.0" } }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + }, "content-type": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" }, + "convert-source-map": { + "version": "1.1.3", + "resolved": "http://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz", + "integrity": "sha1-SCnId+n+SbMWHzvzZziI4gRpmGA=" + }, "cookie": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.1.3.tgz", @@ -617,18 +1125,85 @@ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + }, + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, "crc": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/crc/-/crc-3.3.0.tgz", "integrity": "sha1-+mIuG8OIvyVzCQgta2UgDOZwkLo=" }, + "create-ecdh": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", + "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.0.0" + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "http://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "http://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, "cross-spawn": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", "requires": { - "lru-cache": "4.1.1", - "which": "1.3.0" + "lru-cache": "^4.0.1", + "which": "^1.2.9" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" } }, "csrf": { @@ -653,8 +1228,8 @@ "requires": { "cookie": "0.1.3", "cookie-signature": "1.0.6", - "csrf": "3.0.6", - "http-errors": "1.3.1" + "csrf": "~3.0.0", + "http-errors": "~1.3.1" } }, "currently-unhandled": { @@ -662,32 +1237,120 @@ "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", "requires": { - "array-find-index": "1.0.2" + "array-find-index": "^1.0.1" } }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "date-now": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", + "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=" + }, "debug": { - "version": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "version": "2.2.0", + "resolved": "http://registry.npmjs.org/debug/-/debug-2.2.0.tgz", "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", "requires": { - "ms": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" + "ms": "0.7.1" } }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + }, "decompress": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/decompress/-/decompress-0.2.5.tgz", "integrity": "sha1-0hMjPv4GbM2A2RTXk/GzDNmEuEc=", "requires": { - "adm-zip": "0.4.7", - "ext-name": "1.0.1", - "get-stdin": "0.1.0", - "mkdirp": "0.3.5", - "nopt": "2.2.1", - "rimraf": "2.6.2", - "stream-combiner": "0.0.4", - "tar": "0.1.20", - "tempfile": "0.1.3" + "adm-zip": "^0.4.3", + "ext-name": "^1.0.0", + "get-stdin": "^0.1.0", + "mkdirp": "^0.3.5", + "nopt": "^2.2.0", + "rimraf": "^2.2.2", + "stream-combiner": "^0.0.4", + "tar": "^0.1.18", + "tempfile": "^0.1.2" + }, + "dependencies": { + "mkdirp": { + "version": "0.3.5", + "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz", + "integrity": "sha1-3j5fiWHIjHh+4TaN+EmsRBPsqNc=" + } } }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + } + } + }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, "delegates": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", @@ -698,17 +1361,62 @@ "resolved": "https://registry.npmjs.org/depd/-/depd-1.0.1.tgz", "integrity": "sha1-gK7GTJ1tl+ZcwqnKqTwKpqv3Oqo=" }, + "deps-sort": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.0.tgz", + "integrity": "sha1-CRckkC6EZYJg65EHSMzNGvbiH7U=", + "requires": { + "JSONStream": "^1.0.3", + "shasum": "^1.0.0", + "subarg": "^1.0.0", + "through2": "^2.0.0" + } + }, + "des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, "destroy": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" }, + "detective": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.1.0.tgz", + "integrity": "sha512-TFHMqfOvxlgrfVzTEkNBSh9SvSNX/HfF4OFI2QFGCyPm02EsyILqnUeb5P6q7JZ3SFNTBL5t2sePRgrN4epUWQ==", + "requires": { + "acorn-node": "^1.3.0", + "defined": "^1.0.0", + "minimist": "^1.1.1" + } + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "http://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + }, "dot-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-1.1.2.tgz", "integrity": "sha1-HnOCaQDeKNbeVIC8HeMdCEKwa+w=", "requires": { - "sentence-case": "1.1.3" + "sentence-case": "^1.1.2" } }, "double-ended-queue": { @@ -721,341 +1429,57 @@ "resolved": "https://registry.npmjs.org/download/-/download-0.1.19.tgz", "integrity": "sha1-GtPlpBd+RrQawI5BqEyH48Q0haA=", "requires": { - "decompress": "0.2.5", - "each-async": "0.1.3", - "get-stdin": "0.1.0", - "get-urls": "0.1.2", - "mkdirp": "0.3.5", - "nopt": "2.2.1", - "request": "2.83.0", - "through2": "0.4.2" + "decompress": "^0.2.5", + "each-async": "^0.1.1", + "get-stdin": "^0.1.0", + "get-urls": "^0.1.1", + "mkdirp": "^0.3.5", + "nopt": "^2.2.0", + "request": "^2.34.0", + "through2": "^0.4.0" }, "dependencies": { - "asn1": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", - "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + "mkdirp": { + "version": "0.3.5", + "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz", + "integrity": "sha1-3j5fiWHIjHh+4TaN+EmsRBPsqNc=" }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" - }, - "aws4": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", - "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" - }, - "bcrypt-pbkdf": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", - "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", - "optional": true, + "readable-stream": { + "version": "1.0.34", + "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", "requires": { - "tweetnacl": "0.14.5" + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" } }, - "boom": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", - "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, + "through2": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz", + "integrity": "sha1-2/WGYDEVHsg1K7bE22SiKSqEC5s=", "requires": { - "hoek": "4.2.0" + "readable-stream": "~1.0.17", + "xtend": "~2.1.1" } }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "combined-stream": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", - "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "xtend": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", + "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", "requires": { - "delayed-stream": "1.0.0" - } - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "cryptiles": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", - "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", - "requires": { - "boom": "5.2.0" - }, - "dependencies": { - "boom": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", - "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", - "requires": { - "hoek": "4.2.0" - } - } - } - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "1.0.0" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "ecc-jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", - "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", - "optional": true, - "requires": { - "jsbn": "0.1.1" - } - }, - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "form-data": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz", - "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=", - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.5", - "mime-types": "2.1.17" - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "1.0.0" - } - }, - "har-validator": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", - "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", - "requires": { - "ajv": "5.5.2", - "har-schema": "2.0.0" - } - }, - "hawk": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", - "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", - "requires": { - "boom": "4.3.1", - "cryptiles": "3.1.2", - "hoek": "4.2.0", - "sntp": "2.1.0" - } - }, - "hoek": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz", - "integrity": "sha512-v0XCLxICi9nPfYrS9RL8HbYnXi9obYAeLbSP00BmnZwCK9+Ih9WOjoZ8YoHCoav2csqn4FOz4Orldsy2dmDwmQ==" - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "requires": { - "assert-plus": "1.0.0", - "jsprim": "1.4.1", - "sshpk": "1.13.1" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "optional": true - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" - }, - "mime-types": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", - "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", - "requires": { - "mime-db": "1.30.0" - } - }, - "oauth-sign": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" - }, - "request": { - "version": "2.83.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz", - "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==", - "requires": { - "aws-sign2": "0.7.0", - "aws4": "1.6.0", - "caseless": "0.12.0", - "combined-stream": "1.0.5", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.3.1", - "har-validator": "5.0.3", - "hawk": "6.0.2", - "http-signature": "1.2.0", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.17", - "oauth-sign": "0.8.2", - "performance-now": "2.1.0", - "qs": "6.5.1", - "safe-buffer": "5.1.1", - "stringstream": "0.0.5", - "tough-cookie": "2.3.3", - "tunnel-agent": "0.6.0", - "uuid": "3.2.1" - } - }, - "sntp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", - "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", - "requires": { - "hoek": "4.2.0" - } - }, - "sshpk": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", - "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", - "requires": { - "asn1": "0.2.3", - "assert-plus": "1.0.0", - "bcrypt-pbkdf": "1.0.1", - "dashdash": "1.14.1", - "ecc-jsbn": "0.1.1", - "getpass": "0.1.7", - "jsbn": "0.1.1", - "tweetnacl": "0.14.5" - } - }, - "stringstream": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", - "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=" - }, - "tough-cookie": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", - "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", - "requires": { - "punycode": "1.4.1" - } - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "requires": { - "safe-buffer": "5.1.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "optional": true - }, - "uuid": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", - "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==" - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "requires": { - "assert-plus": "1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "1.3.0" + "object-keys": "~0.4.0" } } } @@ -1065,19 +1489,36 @@ "resolved": "https://registry.npmjs.org/download-github-repo/-/download-github-repo-0.1.3.tgz", "integrity": "sha1-1hI0pisIjPuZy5LvR0mBkNRrJN4=", "requires": { - "download": "0.1.19" + "download": "^0.1.11" } }, "duplexer": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "resolved": "http://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=" }, + "duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", + "requires": { + "readable-stream": "^2.0.2" + } + }, "each-async": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/each-async/-/each-async-0.1.3.tgz", "integrity": "sha1-tDYCWwjaL4ZggCVRnjCWdj3t/KM=" }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -1089,9 +1530,23 @@ "integrity": "sha1-zIcsFoiArjxxiXYv1f/ACJbJUYo=" }, "electron-to-chromium": { - "version": "1.3.31", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.31.tgz", - "integrity": "sha512-XE4CLbswkZgZFn34cKFy1xaX+F5LHxeDLjY1+rsK9asDzknhbrd9g/n/01/acbU25KTsUSiLKwvlLyA+6XLUOA==" + "version": "1.3.79", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.79.tgz", + "integrity": "sha512-LQdY3j4PxuUl6xfxiFruTSlCniTrTrzAd8/HfsLEMi0PUpaQ0Iy+Pr4N4VllDYjs0Hyu2lkTbvzqlG+PX9NsNw==" + }, + "elliptic": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz", + "integrity": "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==", + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + } }, "envy-json": { "version": "0.2.1", @@ -1099,12 +1554,20 @@ "integrity": "sha1-Oo4+nWzWH9P6OUCPGt4CDTnBsXg=" }, "errno": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.6.tgz", - "integrity": "sha512-IsORQDpaaSwcDP4ZZnHxgE85werpo34VYn1Ud3mq+eUsF593faR8oCZNXrROVkpFu2TsbrNhHin0aUrTsQ9vNw==", + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", "optional": true, "requires": { - "prr": "1.0.1" + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "requires": { + "is-arrayish": "^0.2.1" } }, "errorhandler": { @@ -1112,32 +1575,19 @@ "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.4.3.tgz", "integrity": "sha1-t7cO2PNZ6duICS8tIMD4MUIK2D8=", "requires": { - "accepts": "1.3.4", - "escape-html": "1.0.3" + "accepts": "~1.3.0", + "escape-html": "~1.0.3" }, "dependencies": { "accepts": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz", - "integrity": "sha1-hiRnWMfdbSGmR0/whKR0DsBesh8=", + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", + "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", "requires": { - "mime-types": "2.1.17", + "mime-types": "~2.1.18", "negotiator": "0.6.1" } }, - "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" - }, - "mime-types": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", - "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", - "requires": { - "mime-db": "1.30.0" - } - }, "negotiator": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", @@ -1150,45 +1600,77 @@ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" + }, "etag": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz", "integrity": "sha1-A9MLX2fdbmMtKUXTDWZScxo01dg=" }, + "events": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/events/-/events-2.1.0.tgz", + "integrity": "sha512-3Zmiobend8P9DjmKAty0Era4jV8oJ0yGYe2nJJAxgymF9+N8F2m0hhZiMoWtcfepExzNKZumFU3ksdQbInGWCg==" + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, "exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "requires": { + "is-posix-bracket": "^0.1.0" + } + }, + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "requires": { + "fill-range": "^2.1.0" + } + }, "express-session": { "version": "1.11.3", - "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.11.3.tgz", + "resolved": "http://registry.npmjs.org/express-session/-/express-session-1.11.3.tgz", "integrity": "sha1-XMmPP1/4Ttg1+Ry/CqvQxxB0AK8=", "requires": { "cookie": "0.1.3", "cookie-signature": "1.0.6", "crc": "3.3.0", - "debug": "2.2.0", - "depd": "1.0.1", - "on-headers": "1.0.1", - "parseurl": "1.3.0", - "uid-safe": "2.0.0", + "debug": "~2.2.0", + "depd": "~1.0.1", + "on-headers": "~1.0.0", + "parseurl": "~1.3.0", + "uid-safe": "~2.0.0", "utils-merge": "1.0.0" }, "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "requires": { - "ms": "0.7.1" - } - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" - }, "uid-safe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.0.0.tgz", @@ -1204,7 +1686,7 @@ "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-0.2.0.tgz", "integrity": "sha1-NhTV8pn0pZKolinn3oJfF3TRmr0=", "requires": { - "got": "0.2.0" + "got": "^0.2.0" } }, "ext-name": { @@ -1212,64 +1694,157 @@ "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-1.0.1.tgz", "integrity": "sha1-GCgzVtxAo5NFXFRGDwWZzpfTDgw=", "requires": { - "ext-list": "0.2.0", - "underscore.string": "2.3.3" + "ext-list": "^0.2.0", + "underscore.string": "~2.3.3" } }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "requires": { + "is-extglob": "^1.0.0" + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, "fast-deep-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz", - "integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", + "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" }, "fast-json-stable-stringify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=" + }, + "fill-range": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", + "requires": { + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" + } + }, "finalhandler": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz", + "resolved": "http://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz", "integrity": "sha1-llpS2ejQXSuFdUhUH7ibU6JJfZs=", "requires": { - "debug": "2.2.0", + "debug": "~2.2.0", "escape-html": "1.0.2", - "on-finished": "2.3.0", - "unpipe": "1.0.0" + "on-finished": "~2.3.0", + "unpipe": "~1.0.0" }, "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "requires": { - "ms": "0.7.1" - } - }, "escape-html": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.2.tgz", "integrity": "sha1-130y+pjjjC9BroXpJ44ODmuhAiw=" - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" } } }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + }, + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "requires": { + "for-in": "^1.0.1" + } + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "requires": { + "map-cache": "^0.2.2" + } + }, "fresh": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz", "integrity": "sha1-ZR+DjiJCTnVm3hYdg1jKoZn4PU8=" }, "fs-extra": { - "version": "0.18.2", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.18.2.tgz", - "integrity": "sha1-rwXKcCsLbfp96AOh96tHnsXCFSU=", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz", + "integrity": "sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA=", "requires": { - "graceful-fs": "3.0.11", - "jsonfile": "2.4.0", - "rimraf": "2.6.2" + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0", + "klaw": "^1.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + } } }, "fs.realpath": { @@ -1277,37 +1852,484 @@ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, + "fsevents": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", + "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", + "optional": true, + "requires": { + "nan": "^2.9.2", + "node-pre-gyp": "^0.10.0" + }, + "dependencies": { + "abbrev": { + "version": "1.1.1", + "bundled": true, + "optional": true + }, + "ansi-regex": { + "version": "2.1.1", + "bundled": true + }, + "aproba": { + "version": "1.2.0", + "bundled": true, + "optional": true + }, + "are-we-there-yet": { + "version": "1.1.4", + "bundled": true, + "optional": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "balanced-match": { + "version": "1.0.0", + "bundled": true + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "chownr": { + "version": "1.0.1", + "bundled": true, + "optional": true + }, + "code-point-at": { + "version": "1.1.0", + "bundled": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "optional": true + }, + "debug": { + "version": "2.6.9", + "bundled": true, + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "deep-extend": { + "version": "0.5.1", + "bundled": true, + "optional": true + }, + "delegates": { + "version": "1.0.0", + "bundled": true, + "optional": true + }, + "detect-libc": { + "version": "1.0.3", + "bundled": true, + "optional": true + }, + "fs-minipass": { + "version": "1.2.5", + "bundled": true, + "optional": true, + "requires": { + "minipass": "^2.2.1" + } + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true, + "optional": true + }, + "gauge": { + "version": "2.7.4", + "bundled": true, + "optional": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + } + }, + "glob": { + "version": "7.1.2", + "bundled": true, + "optional": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "has-unicode": { + "version": "2.0.1", + "bundled": true, + "optional": true + }, + "iconv-lite": { + "version": "0.4.21", + "bundled": true, + "optional": true, + "requires": { + "safer-buffer": "^2.1.0" + } + }, + "ignore-walk": { + "version": "3.0.1", + "bundled": true, + "optional": true, + "requires": { + "minimatch": "^3.0.4" + } + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "optional": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.3", + "bundled": true + }, + "ini": { + "version": "1.3.5", + "bundled": true, + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "optional": true + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "0.0.8", + "bundled": true + }, + "minipass": { + "version": "2.2.4", + "bundled": true, + "requires": { + "safe-buffer": "^5.1.1", + "yallist": "^3.0.0" + } + }, + "minizlib": { + "version": "1.1.0", + "bundled": true, + "optional": true, + "requires": { + "minipass": "^2.2.1" + } + }, + "mkdirp": { + "version": "0.5.1", + "bundled": true, + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "bundled": true, + "optional": true + }, + "needle": { + "version": "2.2.0", + "bundled": true, + "optional": true, + "requires": { + "debug": "^2.1.2", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + } + }, + "node-pre-gyp": { + "version": "0.10.0", + "bundled": true, + "optional": true, + "requires": { + "detect-libc": "^1.0.2", + "mkdirp": "^0.5.1", + "needle": "^2.2.0", + "nopt": "^4.0.1", + "npm-packlist": "^1.1.6", + "npmlog": "^4.0.2", + "rc": "^1.1.7", + "rimraf": "^2.6.1", + "semver": "^5.3.0", + "tar": "^4" + } + }, + "nopt": { + "version": "4.0.1", + "bundled": true, + "optional": true, + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + }, + "npm-bundled": { + "version": "1.0.3", + "bundled": true, + "optional": true + }, + "npm-packlist": { + "version": "1.1.10", + "bundled": true, + "optional": true, + "requires": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1" + } + }, + "npmlog": { + "version": "4.1.2", + "bundled": true, + "optional": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "bundled": true + }, + "object-assign": { + "version": "4.1.1", + "bundled": true, + "optional": true + }, + "once": { + "version": "1.4.0", + "bundled": true, + "requires": { + "wrappy": "1" + } + }, + "os-homedir": { + "version": "1.0.2", + "bundled": true, + "optional": true + }, + "os-tmpdir": { + "version": "1.0.2", + "bundled": true, + "optional": true + }, + "osenv": { + "version": "0.1.5", + "bundled": true, + "optional": true, + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true, + "optional": true + }, + "process-nextick-args": { + "version": "2.0.0", + "bundled": true, + "optional": true + }, + "rc": { + "version": "1.2.7", + "bundled": true, + "optional": true, + "requires": { + "deep-extend": "^0.5.1", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "bundled": true, + "optional": true + } + } + }, + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "rimraf": { + "version": "2.6.2", + "bundled": true, + "optional": true, + "requires": { + "glob": "^7.0.5" + } + }, + "safe-buffer": { + "version": "5.1.1", + "bundled": true + }, + "safer-buffer": { + "version": "2.1.2", + "bundled": true, + "optional": true + }, + "sax": { + "version": "1.2.4", + "bundled": true, + "optional": true + }, + "semver": { + "version": "5.5.0", + "bundled": true, + "optional": true + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true, + "optional": true + }, + "signal-exit": { + "version": "3.0.2", + "bundled": true, + "optional": true + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "bundled": true, + "optional": true + }, + "tar": { + "version": "4.4.1", + "bundled": true, + "optional": true, + "requires": { + "chownr": "^1.0.1", + "fs-minipass": "^1.2.5", + "minipass": "^2.2.4", + "minizlib": "^1.1.0", + "mkdirp": "^0.5.0", + "safe-buffer": "^5.1.1", + "yallist": "^3.0.2" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "optional": true + }, + "wide-align": { + "version": "1.1.2", + "bundled": true, + "optional": true, + "requires": { + "string-width": "^1.0.2" + } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true + }, + "yallist": { + "version": "3.0.2", + "bundled": true + } + } + }, "fstream": { "version": "0.1.31", "resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz", "integrity": "sha1-czfwWPu7vvqMn1YaKMqwhJICyYg=", "requires": { - "graceful-fs": "3.0.11", - "inherits": "2.0.3", - "mkdirp": "0.5.1", - "rimraf": "2.6.2" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" - } - } + "graceful-fs": "~3.0.2", + "inherits": "~2.0.0", + "mkdirp": "0.5", + "rimraf": "2" } }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, "gather-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/gather-stream/-/gather-stream-1.0.0.tgz", @@ -1318,72 +2340,41 @@ "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", "requires": { - "aproba": "1.2.0", - "console-control-strings": "1.1.0", - "has-unicode": "2.0.1", - "object-assign": "4.1.1", - "signal-exit": "3.0.2", - "string-width": "1.0.2", - "strip-ansi": "3.0.1", - "wide-align": "1.1.2" + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" }, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { - "number-is-nan": "1.0.1" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" - }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "2.1.1" - } } } }, "gaze": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.2.tgz", - "integrity": "sha1-hHIkZ3rbiHDWeSV+0ziP22HkAQU=", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", "requires": { - "globule": "1.2.0" + "globule": "^1.0.0" } }, + "get-assigned-identifiers": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz", + "integrity": "sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==" + }, + "get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" + }, "get-stdin": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-0.1.0.tgz", @@ -1391,50 +2382,68 @@ }, "get-urls": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/get-urls/-/get-urls-0.1.2.tgz", + "resolved": "http://registry.npmjs.org/get-urls/-/get-urls-0.1.2.tgz", "integrity": "sha1-kqPlziua8tJ2T/UZhoHbNzInuEQ=" }, - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - } + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "requires": { + "glob-parent": "^2.0.0", + "is-glob": "^2.0.0" + } + }, + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "requires": { + "is-glob": "^2.0.0" } }, "globule": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.0.tgz", - "integrity": "sha1-HcScaCLdnoovoAuiopUAboZkvQk=", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz", + "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==", "requires": { - "glob": "7.1.2", - "lodash": "4.17.4", - "minimatch": "3.0.4" + "glob": "~7.1.1", + "lodash": "~4.17.10", + "minimatch": "~3.0.2" } }, "got": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/got/-/got-0.2.0.tgz", + "resolved": "http://registry.npmjs.org/got/-/got-0.2.0.tgz", "integrity": "sha1-0Awkiyn9zK6pQN+coJlev/MbUaU=", "requires": { - "object-assign": "0.3.1" + "object-assign": "^0.3.0" } }, "graceful-fs": { @@ -1442,31 +2451,47 @@ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", "requires": { - "natives": "1.1.1" + "natives": "^1.1.0" } }, + "graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" + }, "har-schema": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" }, + "har-validator": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.0.tgz", + "integrity": "sha512-+qnmNjI4OfH2ipQ9VQOw23bBd/ibtfbVdK2fYbY4acTDqKTW/YDp9McimZdDbG8iV9fZizUqQMD5xvriB146TA==", + "requires": { + "ajv": "^5.3.0", + "har-schema": "^2.0.0" + } + }, "harp": { - "version": "0.25.0", - "resolved": "https://registry.npmjs.org/harp/-/harp-0.25.0.tgz", - "integrity": "sha512-vNpVTpbmZP1ZF9Rd5hdjEuOa1tSPaUaUWRaFI406KorMOVzrJFWPU+BAr2X99dlTzQUXPwXapkWGhV8jJMK6eA==", + "version": "0.29.0", + "resolved": "https://registry.npmjs.org/harp/-/harp-0.29.0.tgz", + "integrity": "sha512-+1Zm71gkkZNFmOoGnFcgH8GNGm9Rd83tzVLeXss0HDESJhaCfQOddU9jqlU/g6aNlf4QyLsU6PftC53hkmKRJw==", "requires": { "async": "0.2.9", + "browserify": "^16.2.2", "commander": "2.0.0", "connect": "2.30.2", "download-github-repo": "0.1.3", "envy-json": "0.2.1", "escape-html": "1.0.3", - "fs-extra": "0.18.2", + "fs-extra": "1.x", "mime": "1.3.6", "parseurl": "1.3.0", "pause": "0.1.0", "send": "0.13.0", - "terraform": "1.5.0" + "terraform": "1.7.0", + "watchify": "^3.11.0" } }, "harp-minify": { @@ -1485,97 +2510,236 @@ "dependencies": { "commander": { "version": "2.9.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", + "resolved": "http://registry.npmjs.org/commander/-/commander-2.9.0.tgz", "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", "requires": { - "graceful-readlink": "1.0.1" + "graceful-readlink": ">= 1.0.0" } }, - "graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, "uglify-js": { "version": "2.6.1", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.6.1.tgz", + "resolved": "http://registry.npmjs.org/uglify-js/-/uglify-js-2.6.1.tgz", "integrity": "sha1-7bvhiIujUl3tOnv4NrMLNAXTFhs=", "requires": { - "async": "0.2.9", - "source-map": "0.5.7", - "uglify-to-browserify": "1.0.2", - "yargs": "3.10.0" + "async": "~0.2.6", + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" } } } }, - "has-flag": { + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", - "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" }, "has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-base": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", + "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "hash.js": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz", + "integrity": "sha512-eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "hosted-git-info": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", + "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==" + }, "html-minifier": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-1.1.1.tgz", "integrity": "sha1-aFD5n5JEplQa1X0jJ6IEyVZ7aY8=", "requires": { - "change-case": "2.3.1", - "clean-css": "3.4.28", - "cli": "0.11.3", - "concat-stream": "1.5.2", - "relateurl": "0.2.7", - "uglify-js": "2.6.4" + "change-case": "2.3.x", + "clean-css": "3.4.x", + "cli": "0.11.x", + "concat-stream": "1.5.x", + "relateurl": "0.2.x", + "uglify-js": "2.6.x" }, "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "concat-stream": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", + "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" + } + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "readable-stream": { + "version": "2.0.6", + "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" }, "uglify-js": { "version": "2.6.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.6.4.tgz", + "resolved": "http://registry.npmjs.org/uglify-js/-/uglify-js-2.6.4.tgz", "integrity": "sha1-ZeovswWck5RpLxX+2HwrNsFrmt8=", "requires": { - "async": "0.2.9", - "source-map": "0.5.7", - "uglify-to-browserify": "1.0.2", - "yargs": "3.10.0" + "async": "~0.2.6", + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" } } } }, + "htmlescape": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz", + "integrity": "sha1-OgPtwiFLyjtmQko+eVk0lQnLA1E=" + }, "http-errors": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz", + "resolved": "http://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz", "integrity": "sha1-GX4izevUGYWF6GlO9nhhl7ke2UI=", "requires": { - "inherits": "2.0.3", - "statuses": "1.4.0" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } + "inherits": "~2.0.1", + "statuses": "1" } }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + }, "iconv-lite": { "version": "0.4.11", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.11.tgz", + "resolved": "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.11.tgz", "integrity": "sha1-LstC/SlHRJIiCaLnxATayHk9it4=" }, + "ieee754": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", + "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==" + }, "image-size": { "version": "0.5.5", "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", @@ -1592,30 +2756,7 @@ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", "requires": { - "repeating": "2.0.1" - }, - "dependencies": { - "is-finite": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "requires": { - "number-is-nan": "1.0.1" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" - }, - "repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "requires": { - "is-finite": "1.0.2" - } - } + "repeating": "^2.0.0" } }, "inflight": { @@ -1623,31 +2764,149 @@ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "inline-source-map": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz", + "integrity": "sha1-+Tk0ccGKedFyT4Y/o4tYY3Ct4qU=", + "requires": { + "source-map": "~0.5.3" + } + }, + "insert-module-globals": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.0.tgz", + "integrity": "sha512-VE6NlW+WGn2/AeOMd496AHFYmE7eLKkUY6Ty31k4og5vmA3Fjuwe9v6ifH6Xx/Hz27QvdoMoviw1/pqWRB09Sw==", + "requires": { + "JSONStream": "^1.0.3", + "acorn-node": "^1.5.2", + "combine-source-map": "^0.8.0", + "concat-stream": "^1.6.1", + "is-buffer": "^1.1.0", + "path-is-absolute": "^1.0.1", + "process": "~0.11.0", + "through2": "^2.0.0", + "undeclared-identifiers": "^1.1.2", + "xtend": "^4.0.0" + } + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "requires": { + "builtin-modules": "^1.0.0" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" }, "dependencies": { - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" } } }, - "is-expression": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-2.1.0.tgz", - "integrity": "sha1-kb6dR968/vB3l36XIr5tz7RGXvA=", + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=" + }, + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", "requires": { - "acorn": "3.3.0", - "object-assign": "4.1.1" - }, - "dependencies": { - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - } + "is-primitive": "^2.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + }, + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "requires": { + "is-extglob": "^1.0.0" } }, "is-lower-case": { @@ -1655,91 +2914,153 @@ "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz", "integrity": "sha1-fhR75HaNxGbbO/shzGCzHmrWk5M=", "requires": { - "lower-case": "1.1.4" + "lower-case": "^1.1.0" } }, + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + } + }, + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=" + }, + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=" + }, + "is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, "is-upper-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz", "integrity": "sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8=", "requires": { - "upper-case": "1.1.3" + "upper-case": "^1.1.0" } }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + }, "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "requires": { + "isarray": "1.0.0" + } + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, "jjade": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/jjade/-/jjade-1.11.1.tgz", "integrity": "sha512-8q0o7Cyn7JZhu13DdB/j0inC7mMlW0kiVV+q/2jKZD/RDeM7T5nyciwRv021abzvyNRrhTDu8FW8xUfYKxzBHg==", "requires": { "character-parser": "1.2.2", - "clean-css": "3.4.28", - "commander": "2.9.0", - "constantinople": "3.1.0", + "clean-css": "^3.4.21", + "commander": "~2.9.0", + "constantinople": "~3.1.0", "jstransformer": "1.0.0", - "jstransformer-markdown": "1.2.1", - "mkdirp": "0.5.1", - "uglify-js": "2.8.29", - "void-elements": "2.0.1", - "with": "5.1.1" + "jstransformer-markdown": "^1.1.1", + "mkdirp": "~0.5.0", + "uglify-js": "^2.7.5", + "void-elements": "~2.0.1", + "with": "~5.1.1" }, "dependencies": { "commander": { "version": "2.9.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", + "resolved": "http://registry.npmjs.org/commander/-/commander-2.9.0.tgz", "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", "requires": { - "graceful-readlink": "1.0.1" + "graceful-readlink": ">= 1.0.0" } }, - "graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, "uglify-js": { "version": "2.8.29", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", "requires": { - "source-map": "0.5.7", - "uglify-to-browserify": "1.0.2", - "yargs": "3.10.0" + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" } } } }, "js-base64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.1.tgz", - "integrity": "sha512-2h586r2I/CqU7z1aa1kBgWaVAXWAZK+zHnceGi/jFgn7+7VSluxYer/i3xOZVearCxxXvyDkLtTBo+OeJCA3kA==" + "version": "2.4.9", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.9.tgz", + "integrity": "sha512-xcinL3AuDJk7VSzsHgb9DvvIXayBbadtMZ4HFPx8rUszbW1MuNMlwYVC4zzCZ6e1sqZpnNS5ZFYOhXqA39T7LQ==" + }, + "js-yaml": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz", + "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" }, "json-schema-traverse": { "version": "0.3.1", @@ -1747,20 +3068,24 @@ "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" }, "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", - "optional": true, + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz", + "integrity": "sha1-YRwj6BTbN1Un34URk9tZ3Sryf0U=", "requires": { - "jsonify": "0.0.0" + "jsonify": "~0.0.0" } }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, "jsonfile": { "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", + "resolved": "http://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", "requires": { - "graceful-fs": "4.1.11" + "graceful-fs": "^4.1.6" }, "dependencies": { "graceful-fs": { @@ -1774,36 +3099,31 @@ "jsonify": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", - "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", - "optional": true + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" + }, + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } }, "jstransformer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz", "integrity": "sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=", "requires": { - "is-promise": "2.1.0", - "promise": "7.3.1" - }, - "dependencies": { - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" - }, - "is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" - }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "requires": { - "asap": "2.0.6" - } - } + "is-promise": "^2.0.0", + "promise": "^7.0.1" } }, "jstransformer-markdown": { @@ -1811,7 +3131,48 @@ "resolved": "https://registry.npmjs.org/jstransformer-markdown/-/jstransformer-markdown-1.2.1.tgz", "integrity": "sha512-rNLxNC3LIGAc26Qcro73eWoosKymqyNVDn909KIq2QHVHGWZ+d+JzOCrHsmUt3DNAKF+hkJQJ1JufAhFEdZ5gw==", "requires": { - "markdown": "0.5.0" + "markdown": "^0.5.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + }, + "klaw": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", + "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=", + "requires": { + "graceful-fs": "^4.1.9" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "optional": true + } + } + }, + "labeled-stream-splicer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.1.tgz", + "integrity": "sha512-MC94mHZRvJ3LfykJlTUipBqenZz1pacOZEMhhQ8dMGcDHs0SBE5GbsavUXV7YtP3icBW17W0Zy1I0lfASmo9Pg==", + "requires": { + "inherits": "^2.0.1", + "isarray": "^2.0.4", + "stream-splicer": "^2.0.0" + }, + "dependencies": { + "isarray": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.4.tgz", + "integrity": "sha512-GMxXOiUirWg1xTKRipM0Ek07rX+ubx4nNVElTJdNLYmNO/2YrDkgJGw9CljXn+r4EWiDQg/8lsRdHyg2PJuUaA==" + } } }, "language-classifier": { @@ -1819,491 +3180,114 @@ "resolved": "https://registry.npmjs.org/language-classifier/-/language-classifier-0.0.1.tgz", "integrity": "sha1-sMRMqzMZSOaKh5zWPVwdpok2d0s=", "requires": { - "classifier": "0.1.0" + "classifier": "~0.1.0" + } + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "requires": { + "invert-kv": "^1.0.0" } }, "less": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/less/-/less-2.7.3.tgz", - "integrity": "sha512-KPdIJKWcEAb02TuJtaLrhue0krtRLoRoo7x6BNJIBelO00t/CCdJQUnHW5V34OnHMWzIktSalJxRO+FvytQlCQ==", + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/less/-/less-3.8.1.tgz", + "integrity": "sha512-8HFGuWmL3FhQR0aH89escFNBQH/nEiYPP2ltDFdQw2chE28Yx2E3lhAIq9Y2saYwLSwa699s4dBVEfCY8Drf7Q==", "requires": { - "errno": "0.1.6", - "graceful-fs": "4.1.11", - "image-size": "0.5.5", - "mime": "1.3.6", - "mkdirp": "0.5.1", - "promise": "7.3.1", - "request": "2.81.0", - "source-map": "0.5.7" + "clone": "^2.1.2", + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "mime": "^1.4.1", + "mkdirp": "^0.5.0", + "promise": "^7.1.1", + "request": "^2.83.0", + "source-map": "~0.6.0" }, "dependencies": { - "ajv": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", - "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", - "optional": true, - "requires": { - "co": "4.6.0", - "json-stable-stringify": "1.0.1" - } - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", - "optional": true - }, - "asn1": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", - "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", - "optional": true - }, - "assert-plus": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", - "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", - "optional": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", - "optional": true - }, - "aws-sign2": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", - "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", - "optional": true - }, - "aws4": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", - "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=", - "optional": true - }, - "bcrypt-pbkdf": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", - "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", - "optional": true, - "requires": { - "tweetnacl": "0.14.5" - } - }, - "boom": { - "version": "2.10.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", - "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", - "requires": { - "hoek": "2.16.3" - } - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", - "optional": true - }, - "combined-stream": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", - "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", - "requires": { - "delayed-stream": "1.0.0" - } - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "optional": true - }, - "cryptiles": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", - "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", - "optional": true, - "requires": { - "boom": "2.10.1" - } - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "optional": true, - "requires": { - "assert-plus": "1.0.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "optional": true - } - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "ecc-jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", - "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", - "optional": true, - "requires": { - "jsbn": "0.1.1" - } - }, - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", - "optional": true - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "optional": true - }, - "form-data": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", - "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", - "optional": true, - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.5", - "mime-types": "2.1.17" - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "optional": true, - "requires": { - "assert-plus": "1.0.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "optional": true - } - } - }, "graceful-fs": { "version": "4.1.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", "optional": true }, - "har-schema": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz", - "integrity": "sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4=", + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "optional": true }, - "har-validator": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz", - "integrity": "sha1-M0gdDxu/9gDdID11gSpqX7oALio=", - "optional": true, - "requires": { - "ajv": "4.11.8", - "har-schema": "1.0.5" - } - }, - "hawk": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", - "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", - "optional": true, - "requires": { - "boom": "2.10.1", - "cryptiles": "2.0.5", - "hoek": "2.16.3", - "sntp": "1.0.9" - } - }, - "hoek": { - "version": "2.16.3", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", - "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=" - }, - "http-signature": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", - "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", - "optional": true, - "requires": { - "assert-plus": "0.2.0", - "jsprim": "1.4.1", - "sshpk": "1.13.1" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "optional": true - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", - "optional": true - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "optional": true - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", - "optional": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "optional": true - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "optional": true - } - } - }, - "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" - }, - "mime-types": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", - "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", - "requires": { - "mime-db": "1.30.0" - } - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "optional": true - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "optional": true, - "requires": { - "minimist": "0.0.8" - } - }, - "oauth-sign": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", - "optional": true - }, - "performance-now": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz", - "integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=", - "optional": true - }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "optional": true, - "requires": { - "asap": "2.0.6" - } - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "optional": true - }, - "qs": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", - "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=", - "optional": true - }, - "request": { - "version": "2.81.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.81.0.tgz", - "integrity": "sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA=", - "optional": true, - "requires": { - "aws-sign2": "0.6.0", - "aws4": "1.6.0", - "caseless": "0.12.0", - "combined-stream": "1.0.5", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.1.4", - "har-validator": "4.2.1", - "hawk": "3.1.3", - "http-signature": "1.1.1", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.17", - "oauth-sign": "0.8.2", - "performance-now": "0.2.0", - "qs": "6.4.0", - "safe-buffer": "5.1.1", - "stringstream": "0.0.5", - "tough-cookie": "2.3.3", - "tunnel-agent": "0.6.0", - "uuid": "3.2.1" - } - }, - "sntp": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", - "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", - "optional": true, - "requires": { - "hoek": "2.16.3" - } - }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "optional": true - }, - "sshpk": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", - "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", - "optional": true, - "requires": { - "asn1": "0.2.3", - "assert-plus": "1.0.0", - "bcrypt-pbkdf": "1.0.1", - "dashdash": "1.14.1", - "ecc-jsbn": "0.1.1", - "getpass": "0.1.7", - "jsbn": "0.1.1", - "tweetnacl": "0.14.5" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "optional": true - } - } - }, - "stringstream": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", - "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", - "optional": true - }, - "tough-cookie": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", - "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", - "optional": true, - "requires": { - "punycode": "1.4.1" - } - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "optional": true, - "requires": { - "safe-buffer": "5.1.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "optional": true - }, - "uuid": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", - "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==", - "optional": true - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "1.3.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "optional": true - } - } + } + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" } } }, "lodash": { - "version": "4.17.4", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=" + "version": "4.17.11", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", + "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" + }, + "lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" + }, + "lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" + }, + "lodash.memoize": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz", + "integrity": "sha1-LcvSwofLwKVcxCMovQxzYVDVPj8=" + }, + "lodash.mergewith": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz", + "integrity": "sha512-eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ==" + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" }, "loud-rejection": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", "requires": { - "currently-unhandled": "0.4.1", - "signal-exit": "3.0.2" + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" } }, "lower-case": { @@ -2316,7 +3300,7 @@ "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz", "integrity": "sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E=", "requires": { - "lower-case": "1.1.4" + "lower-case": "^1.1.2" } }, "lru-cache": { @@ -2324,54 +3308,65 @@ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", "requires": { - "pseudomap": "1.0.2", - "yallist": "2.1.2" - }, - "dependencies": { - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" - } + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" } }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + }, "map-obj": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=" }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "requires": { + "object-visit": "^1.0.0" + } + }, "markdown": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/markdown/-/markdown-0.5.0.tgz", "integrity": "sha1-KCBbVlqK51kt4gdGPWY33BgnIrI=", "requires": { - "nopt": "2.1.2" + "nopt": "~2.1.1" }, "dependencies": { - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" - }, "nopt": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/nopt/-/nopt-2.1.2.tgz", "integrity": "sha1-bMzZd7gBMqB3MdbozljCyDA8+a8=", "requires": { - "abbrev": "1.1.1" + "abbrev": "1" } } } }, "marked": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/marked/-/marked-0.3.6.tgz", - "integrity": "sha1-ssbGGPzOzk74bE/Gy4p8v1rtqNc=" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/marked/-/marked-0.4.0.tgz", + "integrity": "sha512-tMsdNBgOsrUophCAFQl0XPe6Zqk/uy9gnue+jIIKhykO51hxyu6uNx7zBPy0+y/WKYVZZMspV9YeXLNdKk+iYw==" + }, + "math-random": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz", + "integrity": "sha1-izqsWIuKZuSXXjzepn97sylgH6w=" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } }, "media-typer": { "version": "0.3.0", @@ -2383,208 +3378,22 @@ "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", "requires": { - "camelcase-keys": "2.1.0", - "decamelize": "1.2.0", - "loud-rejection": "1.6.0", - "map-obj": "1.0.1", - "minimist": "1.2.0", - "normalize-package-data": "2.4.0", - "object-assign": "4.1.1", - "read-pkg-up": "1.0.1", - "redent": "1.0.0", - "trim-newlines": "1.0.0" + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" }, "dependencies": { - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - }, - "error-ex": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", - "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", - "requires": { - "is-arrayish": "0.2.1" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "requires": { - "path-exists": "2.1.0", - "pinkie-promise": "2.0.1" - } - }, - "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - }, - "hosted-git-info": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", - "integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==" - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", - "requires": { - "builtin-modules": "1.1.1" - } - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "requires": { - "graceful-fs": "4.1.11", - "parse-json": "2.2.0", - "pify": "2.3.0", - "pinkie-promise": "2.0.1", - "strip-bom": "2.0.0" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - }, - "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", - "requires": { - "hosted-git-info": "2.5.0", - "is-builtin-module": "1.0.0", - "semver": "5.5.0", - "validate-npm-package-license": "3.0.1" - } - }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "requires": { - "error-ex": "1.3.1" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "requires": { - "pinkie-promise": "2.0.1" - } - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "requires": { - "graceful-fs": "4.1.11", - "pify": "2.3.0", - "pinkie-promise": "2.0.1" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "requires": { - "pinkie": "2.0.4" - } - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "requires": { - "load-json-file": "1.1.0", - "normalize-package-data": "2.4.0", - "path-type": "1.1.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "requires": { - "find-up": "1.1.2", - "read-pkg": "1.1.0" - } - }, - "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" - }, - "spdx-correct": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", - "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", - "requires": { - "spdx-license-ids": "1.2.2" - } - }, - "spdx-expression-parse": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", - "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=" - }, - "spdx-license-ids": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", - "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=" - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "requires": { - "is-utf8": "0.2.1" - } - }, - "validate-npm-package-license": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", - "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", - "requires": { - "spdx-correct": "1.0.2", - "spdx-expression-parse": "1.0.4" - } } } }, @@ -2594,9 +3403,9 @@ "integrity": "sha1-49r41d7hDdLc59SuiNYrvud0drQ=", "requires": { "debug": "2.6.9", - "methods": "1.1.2", - "parseurl": "1.3.2", - "vary": "1.1.2" + "methods": "~1.1.2", + "parseurl": "~1.3.2", + "vary": "~1.1.2" }, "dependencies": { "debug": { @@ -2629,53 +3438,147 @@ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "requires": { + "arr-diff": "^2.0.0", + "array-unique": "^0.2.1", + "braces": "^1.8.2", + "expand-brackets": "^0.1.4", + "extglob": "^0.3.1", + "filename-regex": "^2.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.1", + "kind-of": "^3.0.2", + "normalize-path": "^2.0.1", + "object.omit": "^2.0.0", + "parse-glob": "^3.0.4", + "regex-cache": "^0.4.2" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + } + }, "mime": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz", "integrity": "sha1-WR2E02U6awtKO5343lqoEI5y5eA=" }, + "mime-db": { + "version": "1.36.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.36.0.tgz", + "integrity": "sha512-L+xvyD9MkoYMXb1jAmzI/lWYAxAMCPvIBSWur0PZ5nOf5euahRLVqH//FKW9mWp2lkqUgYiXPgkzfMUFi4zVDw==" + }, + "mime-types": { + "version": "2.1.20", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.20.tgz", + "integrity": "sha512-HrkrPaP9vGuWbLK1B1FfgAkbqNjIuy4eHlIYnFi7kamZyLLrGlo2mpcx0bBmNpKqBtYtAfGbodDddIgddSJC2A==", + "requires": { + "mime-db": "~1.36.0" + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "requires": { - "brace-expansion": "1.1.8" + "brace-expansion": "^1.1.7" } }, - "mkdirp": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz", - "integrity": "sha1-3j5fiWHIjHh+4TaN+EmsRBPsqNc=" + "minimist": { + "version": "1.2.0", + "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" }, - "morgan": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.6.1.tgz", - "integrity": "sha1-X9gYOYxoGcuiinzWZk8pL+HAu/I=", + "mixin-deep": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", + "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", "requires": { - "basic-auth": "1.0.4", - "debug": "2.2.0", - "depd": "1.0.1", - "on-finished": "2.3.0", - "on-headers": "1.0.1" + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" }, "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "requires": { - "ms": "0.7.1" + "is-plain-object": "^2.0.4" } - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" } } }, + "mkdirp": { + "version": "0.5.1", + "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + } + } + }, + "module-deps": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/module-deps/-/module-deps-6.1.0.tgz", + "integrity": "sha512-NPs5N511VD1rrVJihSso/LiBShRbJALYBKzDW91uZYy7BpjnO4bGnZL3HjZ9yKcFdZUWwaYjDz9zxbuP7vKMuQ==", + "requires": { + "JSONStream": "^1.0.3", + "browser-resolve": "^1.7.0", + "cached-path-relative": "^1.0.0", + "concat-stream": "~1.6.0", + "defined": "^1.0.0", + "detective": "^5.0.2", + "duplexer2": "^0.1.2", + "inherits": "^2.0.1", + "parents": "^1.0.0", + "readable-stream": "^2.0.2", + "resolve": "^1.4.0", + "stream-combiner2": "^1.1.1", + "subarg": "^1.0.0", + "through2": "^2.0.0", + "xtend": "^4.0.0" + } + }, + "morgan": { + "version": "1.6.1", + "resolved": "http://registry.npmjs.org/morgan/-/morgan-1.6.1.tgz", + "integrity": "sha1-X9gYOYxoGcuiinzWZk8pL+HAu/I=", + "requires": { + "basic-auth": "~1.0.3", + "debug": "~2.2.0", + "depd": "~1.0.1", + "on-finished": "~2.3.0", + "on-headers": "~1.0.0" + } + }, "ms": { - "version": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", + "version": "0.7.1", + "resolved": "http://registry.npmjs.org/ms/-/ms-0.7.1.tgz", "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" }, "multiparty": { @@ -2683,19 +3586,77 @@ "resolved": "https://registry.npmjs.org/multiparty/-/multiparty-3.3.2.tgz", "integrity": "sha1-Nd5oBNwZZD5SSfPT473GyM4wHT8=", "requires": { - "readable-stream": "1.1.14", - "stream-counter": "0.2.0" + "readable-stream": "~1.1.9", + "stream-counter": "~0.2.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } } }, "nan": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz", - "integrity": "sha1-7XFfP+neArV6XmJS2QqWZ14fCFo=" + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.11.1.tgz", + "integrity": "sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA==" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + } + } }, "natives": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.1.tgz", - "integrity": "sha512-8eRaxn8u/4wN8tGkhlc2cgwwvOLMLUMUn4IYTexMgWd+LyUDfeXVkk2ygQR0hvIHbJQXgHujia3ieUUDwNGkEA==" + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.6.tgz", + "integrity": "sha512-6+TDFewD4yxY14ptjKaS63GVdtKiES1pTPyxn9Jb0rBqPMZ7VcCiooEhPNsr+mqHtMGxa/5c/HhcC4uPEUw/nA==" }, "negotiator": { "version": "0.5.3", @@ -2703,167 +3664,33 @@ "integrity": "sha1-Jp1cR2gQ7JLtvntsLygxY4T5p+g=" }, "node-gyp": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz", - "integrity": "sha1-m/vlRWIoYoSDjnUOrAUpWFP6HGA=", + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", + "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", "requires": { - "fstream": "1.0.11", - "glob": "7.1.2", - "graceful-fs": "4.1.11", - "minimatch": "3.0.4", - "mkdirp": "0.5.1", - "nopt": "2.2.1", - "npmlog": "4.1.2", - "osenv": "0.1.4", - "request": "2.83.0", - "rimraf": "2.6.2", - "semver": "5.3.0", - "tar": "2.2.1", - "which": "1.3.0" + "fstream": "^1.0.0", + "glob": "^7.0.3", + "graceful-fs": "^4.1.2", + "mkdirp": "^0.5.0", + "nopt": "2 || 3", + "npmlog": "0 || 1 || 2 || 3 || 4", + "osenv": "0", + "request": "^2.87.0", + "rimraf": "2", + "semver": "~5.3.0", + "tar": "^2.0.0", + "which": "1" }, "dependencies": { - "asn1": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", - "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" - }, - "aws4": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", - "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" - }, - "bcrypt-pbkdf": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", - "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", - "optional": true, - "requires": { - "tweetnacl": "0.14.5" - } - }, - "boom": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", - "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", - "requires": { - "hoek": "4.2.0" - } - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "combined-stream": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", - "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", - "requires": { - "delayed-stream": "1.0.0" - } - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "cryptiles": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", - "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", - "requires": { - "boom": "5.2.0" - }, - "dependencies": { - "boom": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", - "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", - "requires": { - "hoek": "4.2.0" - } - } - } - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "1.0.0" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "ecc-jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", - "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", - "optional": true, - "requires": { - "jsbn": "0.1.1" - } - }, - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "form-data": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz", - "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=", - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.5", - "mime-types": "2.1.17" - } - }, "fstream": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz", "integrity": "sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=", "requires": { - "graceful-fs": "4.1.11", - "inherits": "2.0.3", - "mkdirp": "0.5.1", - "rimraf": "2.6.2" - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "1.0.0" + "graceful-fs": "^4.1.2", + "inherits": "~2.0.0", + "mkdirp": ">=0.5 0", + "rimraf": "2" } }, "graceful-fs": { @@ -2871,445 +3698,64 @@ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" }, - "har-validator": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", - "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", - "requires": { - "ajv": "5.5.2", - "har-schema": "2.0.0" - } - }, - "hawk": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", - "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", - "requires": { - "boom": "4.3.1", - "cryptiles": "3.1.2", - "hoek": "4.2.0", - "sntp": "2.1.0" - } - }, - "hoek": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz", - "integrity": "sha512-v0XCLxICi9nPfYrS9RL8HbYnXi9obYAeLbSP00BmnZwCK9+Ih9WOjoZ8YoHCoav2csqn4FOz4Orldsy2dmDwmQ==" - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "requires": { - "assert-plus": "1.0.0", - "jsprim": "1.4.1", - "sshpk": "1.13.1" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "optional": true - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" - }, - "mime-types": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", - "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", - "requires": { - "mime-db": "1.30.0" - } - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" - } - }, - "oauth-sign": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" - }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" - }, - "osenv": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz", - "integrity": "sha1-Qv5tWVPfBsgGS+bxdsPQWqqjRkQ=", - "requires": { - "os-homedir": "1.0.2", - "os-tmpdir": "1.0.2" - } - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" - }, - "request": { - "version": "2.83.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz", - "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==", - "requires": { - "aws-sign2": "0.7.0", - "aws4": "1.6.0", - "caseless": "0.12.0", - "combined-stream": "1.0.5", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.3.1", - "har-validator": "5.0.3", - "hawk": "6.0.2", - "http-signature": "1.2.0", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.17", - "oauth-sign": "0.8.2", - "performance-now": "2.1.0", - "qs": "6.5.1", - "safe-buffer": "5.1.1", - "stringstream": "0.0.5", - "tough-cookie": "2.3.3", - "tunnel-agent": "0.6.0", - "uuid": "3.2.1" - } - }, "semver": { "version": "5.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", + "resolved": "http://registry.npmjs.org/semver/-/semver-5.3.0.tgz", "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=" }, - "sntp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", - "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", - "requires": { - "hoek": "4.2.0" - } - }, - "sshpk": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", - "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", - "requires": { - "asn1": "0.2.3", - "assert-plus": "1.0.0", - "bcrypt-pbkdf": "1.0.1", - "dashdash": "1.14.1", - "ecc-jsbn": "0.1.1", - "getpass": "0.1.7", - "jsbn": "0.1.1", - "tweetnacl": "0.14.5" - } - }, - "stringstream": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", - "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=" - }, "tar": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz", "integrity": "sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE=", "requires": { - "block-stream": "0.0.9", - "fstream": "1.0.11", - "inherits": "2.0.3" - } - }, - "tough-cookie": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", - "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", - "requires": { - "punycode": "1.4.1" - } - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "requires": { - "safe-buffer": "5.1.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "optional": true - }, - "uuid": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", - "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==" - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "requires": { - "assert-plus": "1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "1.3.0" + "block-stream": "*", + "fstream": "^1.0.2", + "inherits": "2" } } } }, "node-sass": { - "version": "4.7.2", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.7.2.tgz", - "integrity": "sha512-CaV+wLqZ7//Jdom5aUFCpGNoECd7BbNhjuwdsX/LkXBrHl8eb1Wjw4HvWqcFvhr5KuNgAk8i/myf/MQ1YYeroA==", + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.9.3.tgz", + "integrity": "sha512-XzXyGjO+84wxyH7fV6IwBOTrEBe2f0a6SBze9QWWYR/cL74AcQUks2AsqcCZenl/Fp/JVbuEaLpgrLtocwBUww==", "requires": { - "async-foreach": "0.1.3", - "chalk": "1.1.3", - "cross-spawn": "3.0.1", - "gaze": "1.1.2", - "get-stdin": "4.0.1", - "glob": "7.1.2", - "in-publish": "2.0.0", - "lodash.assign": "4.2.0", - "lodash.clonedeep": "4.5.0", - "lodash.mergewith": "4.6.0", - "meow": "3.7.0", - "mkdirp": "0.5.1", - "nan": "2.8.0", - "node-gyp": "3.6.2", - "npmlog": "4.1.2", - "request": "2.79.0", - "sass-graph": "2.2.4", - "stdout-stream": "1.4.0", - "true-case-path": "1.0.2" + "async-foreach": "^0.1.3", + "chalk": "^1.1.1", + "cross-spawn": "^3.0.0", + "gaze": "^1.0.0", + "get-stdin": "^4.0.1", + "glob": "^7.0.3", + "in-publish": "^2.0.0", + "lodash.assign": "^4.2.0", + "lodash.clonedeep": "^4.3.2", + "lodash.mergewith": "^4.6.0", + "meow": "^3.7.0", + "mkdirp": "^0.5.1", + "nan": "^2.10.0", + "node-gyp": "^3.8.0", + "npmlog": "^4.0.0", + "request": "2.87.0", + "sass-graph": "^2.2.4", + "stdout-stream": "^1.4.0", + "true-case-path": "^1.0.2" }, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, "ansi-styles": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, - "asn1": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", - "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" - }, - "assert-plus": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", - "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "aws-sign2": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", - "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=" - }, - "aws4": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", - "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" - }, - "bcrypt-pbkdf": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", - "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", - "optional": true, - "requires": { - "tweetnacl": "0.14.5" - } - }, - "boom": { - "version": "2.10.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", - "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", - "requires": { - "hoek": "2.16.3" - } - }, - "caseless": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=" - }, "chalk": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" - } - }, - "combined-stream": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", - "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", - "requires": { - "delayed-stream": "1.0.0" - } - }, - "commander": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", - "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "cryptiles": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", - "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", - "requires": { - "boom": "2.10.1" - } - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "1.0.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "ecc-jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", - "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", - "optional": true, - "requires": { - "jsbn": "0.1.1" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "form-data": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", - "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.5", - "mime-types": "2.1.17" - } - }, - "generate-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", - "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=" - }, - "generate-object-property": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", - "requires": { - "is-property": "1.0.2" + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" } }, "get-stdin": { @@ -3317,170 +3763,13 @@ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=" }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "1.0.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - } - }, "har-validator": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", - "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", + "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", "requires": { - "chalk": "1.1.3", - "commander": "2.13.0", - "is-my-json-valid": "2.17.1", - "pinkie-promise": "2.0.1" - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "requires": { - "ansi-regex": "2.1.1" - } - }, - "hawk": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", - "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", - "requires": { - "boom": "2.10.1", - "cryptiles": "2.0.5", - "hoek": "2.16.3", - "sntp": "1.0.9" - } - }, - "hoek": { - "version": "2.16.3", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", - "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=" - }, - "http-signature": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", - "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", - "requires": { - "assert-plus": "0.2.0", - "jsprim": "1.4.1", - "sshpk": "1.13.1" - } - }, - "is-my-json-valid": { - "version": "2.17.1", - "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz", - "integrity": "sha512-Q2khNw+oBlWuaYvEEHtKSw/pCxD2L5Rc1C+UQme9X6JdRDh7m5D7HkozA0qa3DUkQ6VzCnEm8mVIQPyIRkI5sQ==", - "requires": { - "generate-function": "2.0.0", - "generate-object-property": "1.2.0", - "jsonpointer": "4.0.1", - "xtend": "4.0.1" - } - }, - "is-property": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", - "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=" - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "optional": true - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "jsonpointer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", - "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=" - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - } - }, - "lodash.assign": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" - }, - "lodash.clonedeep": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" - }, - "lodash.mergewith": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz", - "integrity": "sha1-FQzwoWeR9ZA7iJHqsVRgknS96lU=" - }, - "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" - }, - "mime-types": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", - "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", - "requires": { - "mime-db": "1.30.0" - } - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" + "ajv": "^5.1.0", + "har-schema": "^2.0.0" } }, "oauth-sign": { @@ -3488,97 +3777,36 @@ "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "requires": { - "pinkie": "2.0.4" - } - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, "qs": { - "version": "6.3.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz", - "integrity": "sha1-51vV9uJoEioqDgvaYwslUMFmUCw=" + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" }, "request": { - "version": "2.79.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", - "integrity": "sha1-Tf5b9r6LjNw3/Pk+BLZVd3InEN4=", + "version": "2.87.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.87.0.tgz", + "integrity": "sha512-fcogkm7Az5bsS6Sl0sibkbhcKsnyon/jV1kF3ajGmF0c8HrttdKTPRT9hieOaQHA5HEq6r8OyWOo/o781C1tNw==", "requires": { - "aws-sign2": "0.6.0", - "aws4": "1.6.0", - "caseless": "0.11.0", - "combined-stream": "1.0.5", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.1.4", - "har-validator": "2.0.6", - "hawk": "3.1.3", - "http-signature": "1.1.1", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.17", - "oauth-sign": "0.8.2", - "qs": "6.3.2", - "stringstream": "0.0.5", - "tough-cookie": "2.3.3", - "tunnel-agent": "0.4.3", - "uuid": "3.2.1" - } - }, - "sntp": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", - "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", - "requires": { - "hoek": "2.16.3" - } - }, - "sshpk": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", - "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", - "requires": { - "asn1": "0.2.3", - "assert-plus": "1.0.0", - "bcrypt-pbkdf": "1.0.1", - "dashdash": "1.14.1", - "ecc-jsbn": "0.1.1", - "getpass": "0.1.7", - "jsbn": "0.1.1", - "tweetnacl": "0.14.5" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - } - }, - "stringstream": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", - "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=" - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "2.1.1" + "aws-sign2": "~0.7.0", + "aws4": "^1.6.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.5", + "extend": "~3.0.1", + "forever-agent": "~0.6.1", + "form-data": "~2.3.1", + "har-validator": "~5.0.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.17", + "oauth-sign": "~0.8.2", + "performance-now": "^2.1.0", + "qs": "~6.5.1", + "safe-buffer": "^5.1.1", + "tough-cookie": "~2.3.3", + "tunnel-agent": "^0.6.0", + "uuid": "^3.1.0" } }, "supports-color": { @@ -3587,50 +3815,17 @@ "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" }, "tough-cookie": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", - "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", + "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", "requires": { - "punycode": "1.4.1" + "punycode": "^1.4.1" } }, - "tunnel-agent": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", - "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=" - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "optional": true - }, "uuid": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", - "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==" - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "requires": { - "assert-plus": "1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "1.3.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - } - }, - "xtend": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", + "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" } } }, @@ -3639,14 +3834,26 @@ "resolved": "https://registry.npmjs.org/nopt/-/nopt-2.2.1.tgz", "integrity": "sha1-KqCbfRdoSHs7ianFqlIzW/8Lrqc=", "requires": { - "abbrev": "1.1.1" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" - } + "abbrev": "1" + } + }, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", + "requires": { + "hosted-git-info": "^2.1.4", + "is-builtin-module": "^1.0.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "^1.0.1" } }, "normalize-range": { @@ -3659,17 +3866,10 @@ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", "requires": { - "are-we-there-yet": "1.1.4", - "console-control-strings": "1.1.0", - "gauge": "2.7.4", - "set-blocking": "2.0.0" - }, - "dependencies": { - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - } + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" } }, "num2fraction": { @@ -3677,16 +3877,85 @@ "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, "object-assign": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-0.3.1.tgz", "integrity": "sha1-Bg4qKifXwNd+x3t48Rqkf9iACNI=" }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, "object-keys": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=" }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + } + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "requires": { + "for-own": "^0.1.4", + "is-extendable": "^0.1.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + } + }, "on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", @@ -3705,22 +3974,99 @@ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "requires": { - "wrappy": "1.0.2" - }, - "dependencies": { - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - } + "wrappy": "1" } }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" + }, + "os-locale": { + "version": "1.4.0", + "resolved": "http://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "requires": { + "lcid": "^1.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + }, + "osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "outpipe": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/outpipe/-/outpipe-1.1.1.tgz", + "integrity": "sha1-UM+GFjZeh+Ax4ppeyTOaPaRyX6I=", + "requires": { + "shell-quote": "^1.4.2" + } + }, + "pako": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz", + "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==" + }, "param-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/param-case/-/param-case-1.1.2.tgz", "integrity": "sha1-3LCRpDwlm5Io8cNB57akTqC/l0M=", "requires": { - "sentence-case": "1.1.3" + "sentence-case": "^1.1.2" + } + }, + "parents": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz", + "integrity": "sha1-/t1NK/GTp3dF/nHjcdc8MwfZx1E=", + "requires": { + "path-platform": "~0.11.15" + } + }, + "parse-asn1": { + "version": "5.1.1", + "resolved": "http://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz", + "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==", + "requires": { + "asn1.js": "^4.0.0", + "browserify-aes": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3" + } + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "requires": { + "glob-base": "^0.3.0", + "is-dotfile": "^1.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.0" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "requires": { + "error-ex": "^1.2.0" } }, "parseurl": { @@ -3733,16 +4079,66 @@ "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-1.1.2.tgz", "integrity": "sha1-Pl1kogBDgwp8STRMLXS0G+DJyZs=", "requires": { - "camel-case": "1.2.2", - "upper-case-first": "1.1.2" + "camel-case": "^1.1.1", + "upper-case-first": "^1.1.0" } }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, "path-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/path-case/-/path-case-1.1.2.tgz", "integrity": "sha1-UM5roNO+090LXCqcRVNpdDRAlRQ=", "requires": { - "sentence-case": "1.1.3" + "sentence-case": "^1.1.2" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" + }, + "path-platform": { + "version": "0.11.15", + "resolved": "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz", + "integrity": "sha1-6GQhf3TDaFDwhSt43Hv31KVyG/I=" + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + } } }, "pause": { @@ -3750,63 +4146,90 @@ "resolved": "https://registry.npmjs.org/pause/-/pause-0.1.0.tgz", "integrity": "sha1-68ikqGGf8LioGsFRPDQ0/0af23Q=" }, + "pbkdf2": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", + "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "^2.0.0" + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + }, "postcss": { "version": "6.0.14", "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz", "integrity": "sha512-NJ1z0f+1offCgadPhz+DvGm5Mkci+mmV5BqD13S992o0Xk9eElxUfPPF+t2ksH5R/17gz4xVK8KWocUQ5o3Rog==", "requires": { - "chalk": "2.3.0", - "source-map": "0.6.1", - "supports-color": "4.5.0" + "chalk": "^2.3.0", + "source-map": "^0.6.1", + "supports-color": "^4.4.0" }, "dependencies": { - "ansi-styles": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", - "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", - "requires": { - "color-convert": "1.9.1" - } - }, - "chalk": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", - "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", - "requires": { - "ansi-styles": "3.2.0", - "escape-string-regexp": "1.0.5", - "supports-color": "4.5.0" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", - "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", - "requires": { - "has-flag": "2.0.0" - } } } }, "postcss-value-parser": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", - "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=" + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=" + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "requires": { + "asap": "~2.0.3" + } }, "prr": { "version": "1.0.1", @@ -3814,16 +4237,93 @@ "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", "optional": true }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" + }, + "psl": { + "version": "1.1.29", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz", + "integrity": "sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==" + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, "qs": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz", "integrity": "sha1-wx2bdOwn33XlQ6hseHKO2NRiNgc=" }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + }, "random-bytes": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", "integrity": "sha1-T2ih3Arli9P7lYSMMDJNt11kNgs=" }, + "randomatic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.0.tgz", + "integrity": "sha512-KnGPVE0lo2WoXxIZ7cPR8YBpiol4gsSuOwDSg410oHh80ZMp5EiypNqL2K4Z77vJn6lB5rap7IkAmcUlalcnBQ==", + "requires": { + "is-number": "^4.0.0", + "kind-of": "^6.0.0", + "math-random": "^1.0.1" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + } + } + }, + "randombytes": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz", + "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, "range-parser": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.0.3.tgz", @@ -3846,7 +4346,7 @@ }, "iconv-lite": { "version": "0.4.13", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz", + "resolved": "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz", "integrity": "sha1-H4irpKsLFQjoMSrMOTRfNumS4vI=" } } @@ -3856,29 +4356,325 @@ "resolved": "https://registry.npmjs.org/read-file-stdin/-/read-file-stdin-0.2.0.tgz", "integrity": "sha1-U2vsbxfgBZyje8W8fjnpcQmoQWY=", "requires": { - "gather-stream": "1.0.0" + "gather-stream": "^1.0.0" + } + }, + "read-only-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz", + "integrity": "sha1-JyT9aoET1zdkrCiNQ4YnDB2/F/A=", + "requires": { + "readable-stream": "^2.0.2" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" } }, "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "version": "2.3.6", + "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "0.0.1", - "string_decoder": "0.10.31" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" }, "dependencies": { - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -3887,8 +4683,8 @@ "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", "requires": { - "indent-string": "2.1.0", - "strip-indent": "1.0.1" + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" } }, "redis": { @@ -3896,33 +4692,140 @@ "resolved": "https://registry.npmjs.org/redis/-/redis-2.8.0.tgz", "integrity": "sha512-M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A==", "requires": { - "double-ended-queue": "2.1.0-0", - "redis-commands": "1.3.1", - "redis-parser": "2.6.0" + "double-ended-queue": "^2.1.0-0", + "redis-commands": "^1.2.0", + "redis-parser": "^2.6.0" } }, "redis-commands": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/redis-commands/-/redis-commands-1.3.1.tgz", - "integrity": "sha1-gdgm9F+pyLIBH0zXoP5ZfSQdRCs=" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/redis-commands/-/redis-commands-1.4.0.tgz", + "integrity": "sha512-cu8EF+MtkwI4DLIT0x9P8qNTLFhQD4jLfxLR0cCNkeGzs87FN6879JOJwNQR/1zD7aSYNbU0hgsV9zGY71Itvw==" }, "redis-parser": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz", "integrity": "sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs=" }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + }, + "regex-cache": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", + "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", + "requires": { + "is-equal-shallow": "^0.1.3" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, "relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "requires": { + "is-finite": "^1.0.0" + } + }, + "request": { + "version": "2.88.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", + "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.0", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.4.3", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + }, + "uuid": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", + "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" + } + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + }, + "resolve": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz", + "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==", + "requires": { + "path-parse": "^1.0.5" + } + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + }, "response-time": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/response-time/-/response-time-2.3.2.tgz", "integrity": "sha1-/6cbq5UtYvfB1Jt0NDVfvGjf/Fo=", "requires": { - "depd": "1.1.2", - "on-headers": "1.0.1" + "depd": "~1.1.0", + "on-headers": "~1.0.1" }, "dependencies": { "depd": { @@ -3932,12 +4835,34 @@ } } }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "requires": { + "align-text": "^0.1.1" + } + }, "rimraf": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", "requires": { - "glob": "7.1.2" + "glob": "^7.0.5" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" } }, "rndm": { @@ -3946,31 +4871,34 @@ "integrity": "sha1-8z/pz7Urv9UgqhgyO8ZdsRCht2w=" }, "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sass-graph": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", "integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=", "requires": { - "glob": "7.1.2", - "lodash": "4.17.4", - "scss-tokenizer": "0.2.3", - "yargs": "7.1.0" + "glob": "^7.0.0", + "lodash": "^4.0.0", + "scss-tokenizer": "^0.2.3", + "yargs": "^7.0.0" }, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" - }, "camelcase": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", @@ -3981,308 +4909,36 @@ "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", "requires": { - "string-width": "1.0.2", - "strip-ansi": "3.0.1", - "wrap-ansi": "2.1.0" + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" } }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - }, - "error-ex": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", - "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", - "requires": { - "is-arrayish": "0.2.1" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "requires": { - "path-exists": "2.1.0", - "pinkie-promise": "2.0.1" - } - }, - "get-caller-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", - "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=" - }, - "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - }, - "hosted-git-info": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", - "integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==" - }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", - "requires": { - "builtin-modules": "1.1.1" - } - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { - "number-is-nan": "1.0.1" - } - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" - }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", - "requires": { - "invert-kv": "1.0.0" - } - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "requires": { - "graceful-fs": "4.1.11", - "parse-json": "2.2.0", - "pify": "2.3.0", - "pinkie-promise": "2.0.1", - "strip-bom": "2.0.0" - } - }, - "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", - "requires": { - "hosted-git-info": "2.5.0", - "is-builtin-module": "1.0.0", - "semver": "5.5.0", - "validate-npm-package-license": "3.0.1" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" - }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "requires": { - "lcid": "1.0.0" - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "requires": { - "error-ex": "1.3.1" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "requires": { - "pinkie-promise": "2.0.1" - } - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "requires": { - "graceful-fs": "4.1.11", - "pify": "2.3.0", - "pinkie-promise": "2.0.1" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "requires": { - "pinkie": "2.0.4" - } - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "requires": { - "load-json-file": "1.1.0", - "normalize-package-data": "2.4.0", - "path-type": "1.1.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "requires": { - "find-up": "1.1.2", - "read-pkg": "1.1.0" - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" - }, - "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - }, - "spdx-correct": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", - "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", - "requires": { - "spdx-license-ids": "1.2.2" - } - }, - "spdx-expression-parse": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", - "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=" - }, - "spdx-license-ids": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", - "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=" - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "2.1.1" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "requires": { - "is-utf8": "0.2.1" - } - }, - "validate-npm-package-license": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", - "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", - "requires": { - "spdx-correct": "1.0.2", - "spdx-expression-parse": "1.0.4" - } - }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", - "requires": { - "string-width": "1.0.2", - "strip-ansi": "3.0.1" - } - }, - "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" - }, "yargs": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", "requires": { - "camelcase": "3.0.0", - "cliui": "3.2.0", - "decamelize": "1.2.0", - "get-caller-file": "1.0.2", - "os-locale": "1.4.0", - "read-pkg-up": "1.0.1", - "require-directory": "2.1.1", - "require-main-filename": "1.0.1", - "set-blocking": "2.0.0", - "string-width": "1.0.2", - "which-module": "1.0.0", - "y18n": "3.2.1", - "yargs-parser": "5.0.0" + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.0" } } } }, "sax": { "version": "0.5.8", - "resolved": "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz", + "resolved": "http://registry.npmjs.org/sax/-/sax-0.5.8.tgz", "integrity": "sha1-1HLbIo6zMcJQaw6MFVJK25OdEsE=" }, "scss-tokenizer": { @@ -4290,8 +4946,8 @@ "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", "requires": { - "js-base64": "2.4.1", - "source-map": "0.4.4" + "js-base64": "^2.1.8", + "source-map": "^0.4.2" }, "dependencies": { "source-map": { @@ -4299,38 +4955,35 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", "requires": { - "amdefine": "1.0.1" + "amdefine": ">=0.0.4" } } } }, + "semver": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", + "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==" + }, "send": { "version": "0.13.0", "resolved": "https://registry.npmjs.org/send/-/send-0.13.0.tgz", "integrity": "sha1-UY+SGusFYK7H3KspkLFM9vPM5d4=", "requires": { - "debug": "2.2.0", - "depd": "1.0.1", + "debug": "~2.2.0", + "depd": "~1.0.1", "destroy": "1.0.3", "escape-html": "1.0.2", - "etag": "1.7.0", + "etag": "~1.7.0", "fresh": "0.3.0", - "http-errors": "1.3.1", + "http-errors": "~1.3.1", "mime": "1.3.4", "ms": "0.7.1", - "on-finished": "2.3.0", - "range-parser": "1.0.3", - "statuses": "1.2.1" + "on-finished": "~2.3.0", + "range-parser": "~1.0.2", + "statuses": "~1.2.1" }, "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "requires": { - "ms": "0.7.1" - } - }, "destroy": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.3.tgz", @@ -4346,11 +4999,6 @@ "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz", "integrity": "sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM=" }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" - }, "statuses": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.2.1.tgz", @@ -4363,7 +5011,7 @@ "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-1.1.3.tgz", "integrity": "sha1-gDSq/CFFdy06vhUJqkLJ4QQtwTk=", "requires": { - "lower-case": "1.1.4" + "lower-case": "^1.1.1" } }, "serve-favicon": { @@ -4371,15 +5019,15 @@ "resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.3.2.tgz", "integrity": "sha1-3UGeJo3gEqtysxnTN/IQUBP5OB8=", "requires": { - "etag": "1.7.0", + "etag": "~1.7.0", "fresh": "0.3.0", "ms": "0.7.2", - "parseurl": "1.3.2" + "parseurl": "~1.3.1" }, "dependencies": { "ms": { "version": "0.7.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz", + "resolved": "http://registry.npmjs.org/ms/-/ms-0.7.2.tgz", "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=" }, "parseurl": { @@ -4394,41 +5042,15 @@ "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.7.3.tgz", "integrity": "sha1-egV/xu4o3GP2RWbl+lexEahq7NI=", "requires": { - "accepts": "1.2.13", + "accepts": "~1.2.13", "batch": "0.5.3", - "debug": "2.2.0", - "escape-html": "1.0.3", - "http-errors": "1.3.1", - "mime-types": "2.1.17", - "parseurl": "1.3.2" + "debug": "~2.2.0", + "escape-html": "~1.0.3", + "http-errors": "~1.3.1", + "mime-types": "~2.1.9", + "parseurl": "~1.3.1" }, "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "requires": { - "ms": "0.7.1" - } - }, - "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" - }, - "mime-types": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", - "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", - "requires": { - "mime-db": "1.30.0" - } - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" - }, "parseurl": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", @@ -4441,19 +5063,11 @@ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.10.3.tgz", "integrity": "sha1-zlpuzTEB/tXsCYJ9rCKpwpv7BTU=", "requires": { - "escape-html": "1.0.3", - "parseurl": "1.3.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.1", "send": "0.13.2" }, "dependencies": { - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "requires": { - "ms": "0.7.1" - } - }, "depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", @@ -4464,11 +5078,6 @@ "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz", "integrity": "sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM=" }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" - }, "parseurl": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", @@ -4479,18 +5088,18 @@ "resolved": "https://registry.npmjs.org/send/-/send-0.13.2.tgz", "integrity": "sha1-dl52B8gFVFK7pvCwUllTUJhgNt4=", "requires": { - "debug": "2.2.0", - "depd": "1.1.2", - "destroy": "1.0.4", - "escape-html": "1.0.3", - "etag": "1.7.0", + "debug": "~2.2.0", + "depd": "~1.1.0", + "destroy": "~1.0.4", + "escape-html": "~1.0.3", + "etag": "~1.7.0", "fresh": "0.3.0", - "http-errors": "1.3.1", + "http-errors": "~1.3.1", "mime": "1.3.4", "ms": "0.7.1", - "on-finished": "2.3.0", - "range-parser": "1.0.3", - "statuses": "1.2.1" + "on-finished": "~2.3.0", + "range-parser": "~1.0.3", + "statuses": "~1.2.1" } }, "statuses": { @@ -4500,92 +5109,316 @@ } } }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "set-value": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", + "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "sha.js": { + "version": "2.4.11", + "resolved": "http://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shasum": { + "version": "1.0.2", + "resolved": "http://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz", + "integrity": "sha1-5wEjENj0F/TetXEhUOVni4euVl8=", + "requires": { + "json-stable-stringify": "~0.0.0", + "sha.js": "~2.4.4" + } + }, + "shell-quote": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz", + "integrity": "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=", + "requires": { + "array-filter": "~0.0.0", + "array-map": "~0.0.0", + "array-reduce": "~0.0.0", + "jsonify": "~0.0.0" + } + }, "signal-exit": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" }, + "simple-concat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz", + "integrity": "sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY=" + }, "snake-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-1.1.2.tgz", "integrity": "sha1-DC8l4wUVjZoY09l3BmGH/vilpmo=", "requires": { - "sentence-case": "1.1.3" + "sentence-case": "^1.1.2" } }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "requires": { + "kind-of": "^3.2.0" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, + "source-map-resolve": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", + "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", + "requires": { + "atob": "^2.1.1", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" + }, + "spdx-correct": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.2.tgz", + "integrity": "sha512-q9hedtzyXHr5S0A1vEPoK/7l8NpfkFYTq6iCY+Pno2ZbdZR6WexZFtqeVGkGxW3TEJMN914Z55EnAGMmenlIQQ==", + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", + "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==" + }, + "spdx-expression-parse": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", + "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz", + "integrity": "sha512-TfOfPcYGBB5sDuPn3deByxPhmfegAhpDYKSOXZQN81Oyrrif8ZCodOLzK3AesELnCx03kikhyDwh0pfvvQvF8w==" + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, "sqwish": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/sqwish/-/sqwish-0.2.2.tgz", "integrity": "sha1-AP4maBBPEii1u37nOe9gEhu8sFc=" }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" - }, - "stdout-stream": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.0.tgz", - "integrity": "sha1-osfIWH5U2UJ+qe2zrD8s1SLfN4s=", + "sshpk": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.15.1.tgz", + "integrity": "sha512-mSdgNUaidk+dRU5MhYtN9zebdzF2iG0cNPWy8HG+W8y+fT1JnSkh0fzzpjOa0L7P8i1Rscz38t0h4gPcKz43xA==", "requires": { - "readable-stream": "2.3.3" + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" }, "dependencies": { - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" - }, - "readable-stream": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", - "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" + "is-descriptor": "^0.1.0" } - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "requires": { - "safe-buffer": "5.1.1" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" } } }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "stdout-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", + "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", + "requires": { + "readable-stream": "^2.0.1" + } + }, + "stream-browserify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", + "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, "stream-combiner": { "version": "0.0.4", - "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", + "resolved": "http://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", "requires": { - "duplexer": "0.1.1" + "duplexer": "~0.1.1" + } + }, + "stream-combiner2": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", + "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=", + "requires": { + "duplexer2": "~0.1.0", + "readable-stream": "^2.0.2" } }, "stream-counter": { @@ -4593,20 +5426,93 @@ "resolved": "https://registry.npmjs.org/stream-counter/-/stream-counter-0.2.0.tgz", "integrity": "sha1-3tJmVWMZyLDiIoErnPOyb6fZR94=", "requires": { - "readable-stream": "1.1.14" + "readable-stream": "~1.1.8" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "stream-splicer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.0.tgz", + "integrity": "sha1-G2O+Q4oTPktnHMGTUZdgAXWRDYM=", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.2" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" } }, "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "^0.2.0" + } }, "strip-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", "requires": { - "get-stdin": "4.0.1" + "get-stdin": "^4.0.1" }, "dependencies": { "get-stdin": { @@ -4621,12 +5527,12 @@ "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.54.5.tgz", "integrity": "sha1-QrlWCTHKcJDOhRWnmLqeaqPW3Hk=", "requires": { - "css-parse": "1.7.0", - "debug": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "glob": "7.0.6", - "mkdirp": "0.5.1", - "sax": "0.5.8", - "source-map": "0.1.43" + "css-parse": "1.7.x", + "debug": "*", + "glob": "7.0.x", + "mkdirp": "0.5.x", + "sax": "0.5.x", + "source-map": "0.1.x" }, "dependencies": { "glob": { @@ -4634,54 +5540,62 @@ "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, "source-map": { "version": "0.1.43", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", "requires": { - "amdefine": "1.0.1" + "amdefine": ">=0.0.4" } } } }, + "subarg": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz", + "integrity": "sha1-9izxdYHplrSPyWVpn1TAauJouNI=", + "requires": { + "minimist": "^1.1.0" + } + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "^2.0.0" + }, + "dependencies": { + "has-flag": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", + "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" + } + } + }, "swap-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz", "integrity": "sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM=", "requires": { - "lower-case": "1.1.4", - "upper-case": "1.1.3" + "lower-case": "^1.1.1", + "upper-case": "^1.1.1" + } + }, + "syntax-error": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz", + "integrity": "sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==", + "requires": { + "acorn-node": "^1.2.0" } }, "tar": { @@ -4689,16 +5603,9 @@ "resolved": "https://registry.npmjs.org/tar/-/tar-0.1.20.tgz", "integrity": "sha1-QpQLrltfIsdEg2mRJvnz8nRJyxM=", "requires": { - "block-stream": "0.0.9", - "fstream": "0.1.31", - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } + "block-stream": "*", + "fstream": "~0.1.28", + "inherits": "2" } }, "tempfile": { @@ -4706,34 +5613,28 @@ "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-0.1.3.tgz", "integrity": "sha1-fWtxAEcznTn4RzJ6BW2t8YMQMBA=", "requires": { - "uuid": "1.4.2" + "uuid": "~1.4.0" } }, "terraform": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/terraform/-/terraform-1.5.0.tgz", - "integrity": "sha1-JzfvDlxeQ/eAfbcdXhJkaRTqAjk=", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/terraform/-/terraform-1.7.0.tgz", + "integrity": "sha512-IqhwbOmSyvvnmkKXWbBpAhy3XZQ0adYWTjY0EMdd4YKYgxB3cmeF+LMJGS52+boZrTQUPWKBX7Ej25T75j50dQ==", "requires": { "autoprefixer": "7.1.6", "coffee-script": "1.12.7", "ejs": "2.5.7", "harp-minify": "0.4.0", "jjade": "1.11.1", - "less": "2.7.3", - "lodash": "4.17.4", + "js-yaml": "3.12.0", + "less": "3.8.1", + "lodash": "^4.17.11", "lru-cache": "4.1.1", - "marked": "0.3.6", - "node-sass": "4.7.2", + "marked": "0.4.0", + "node-sass": "4.9.3", "postcss": "6.0.14", "stylus": "0.54.5", "through": "2.3.8" - }, - "dependencies": { - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" - } } }, "thepusher": { @@ -4741,8 +5642,8 @@ "resolved": "https://registry.npmjs.org/thepusher/-/thepusher-0.1.4.tgz", "integrity": "sha1-KXmTnhJbVdIzz2AGWRaXdbI5i7o=", "requires": { - "batteries": "0.4.2", - "optimist": "0.2.8" + "batteries": "0.4.x", + "optimist": "0.2.x" }, "dependencies": { "batteries": { @@ -4750,7 +5651,7 @@ "resolved": "https://registry.npmjs.org/batteries/-/batteries-0.4.2.tgz", "integrity": "sha1-aVE65PHXQVYKzG+AEyxkexNK0T0=", "requires": { - "strftime": "0.4.7" + "strftime": "0.4.x" }, "dependencies": { "strftime": { @@ -4765,7 +5666,7 @@ "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.2.8.tgz", "integrity": "sha1-6YGrfiaLRXlIWTtVZ0wJmoFcrDE=", "requires": { - "wordwrap": "0.0.3" + "wordwrap": ">=0.0.1 <0.1.0" }, "dependencies": { "wordwrap": { @@ -4777,44 +5678,26 @@ } } }, + "through": { + "version": "2.3.8", + "resolved": "http://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, "through2": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz", - "integrity": "sha1-2/WGYDEVHsg1K7bE22SiKSqEC5s=", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", "requires": { - "readable-stream": "1.0.34", - "xtend": "2.1.2" - }, - "dependencies": { - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "0.0.1", - "string_decoder": "0.10.31" - } - }, - "xtend": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", - "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", - "requires": { - "object-keys": "0.4.0" - } - } + "readable-stream": "^2.1.5", + "xtend": "~4.0.1" + } + }, + "timers-browserify": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz", + "integrity": "sha1-ycWLV1voQHN1y14kYtrO50NZ9B0=", + "requires": { + "process": "~0.11.0" } }, "title-case": { @@ -4822,8 +5705,65 @@ "resolved": "https://registry.npmjs.org/title-case/-/title-case-1.1.2.tgz", "integrity": "sha1-+uSmrlRr+iLQg6DuqRCkDRLtT1o=", "requires": { - "sentence-case": "1.1.3", - "upper-case": "1.1.3" + "sentence-case": "^1.1.1", + "upper-case": "^1.0.3" + } + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", + "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "requires": { + "kind-of": "^3.0.2" + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + } + } + } + }, + "tough-cookie": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", + "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", + "requires": { + "psl": "^1.1.24", + "punycode": "^1.4.1" } }, "trim-newlines": { @@ -4832,35 +5772,11 @@ "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=" }, "true-case-path": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.2.tgz", - "integrity": "sha1-fskRMJJHZsf1c74wIMNPj9/QDWI=", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", + "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", "requires": { - "glob": "6.0.4" - }, - "dependencies": { - "glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=", - "requires": { - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - } + "glob": "^7.1.2" } }, "tsscmp": { @@ -4868,28 +5784,31 @@ "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz", "integrity": "sha1-fcSjOvcVgatDN9qR2FylQn69mpc=" }, + "tty-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz", + "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==" + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, "type-is": { - "version": "1.6.15", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", - "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=", + "version": "1.6.16", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", + "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", "requires": { "media-typer": "0.3.0", - "mime-types": "2.1.17" - }, - "dependencies": { - "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" - }, - "mime-types": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", - "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", - "requires": { - "mime-db": "1.30.0" - } - } + "mime-types": "~2.1.18" } }, "typedarray": { @@ -4902,8 +5821,8 @@ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.7.tgz", "integrity": "sha512-esJIpNQIC44EFSrbeFPhiXHy2HJ+dTcnn0Zdkn+5meuLsvoV0mFJffKlyezNIIHNfhF0NpgbifygCfEyAogIhQ==", "requires": { - "commander": "2.13.0", - "source-map": "0.6.1" + "commander": "~2.13.0", + "source-map": "~0.6.1" }, "dependencies": { "commander": { @@ -4928,24 +5847,113 @@ "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.4.tgz", "integrity": "sha1-Otbzg2jG1MjHXsF2I/t5qh0HHYE=", "requires": { - "random-bytes": "1.0.0" + "random-bytes": "~1.0.0" + } + }, + "umd": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz", + "integrity": "sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow==" + }, + "undeclared-identifiers": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.2.tgz", + "integrity": "sha512-13EaeocO4edF/3JKime9rD7oB6QI8llAGhgn5fKOPyfkJbRb6NFv9pYV6dFEmpa4uRjKeBqLZP8GpuzqHlKDMQ==", + "requires": { + "acorn-node": "^1.3.0", + "get-assigned-identifiers": "^1.2.0", + "simple-concat": "^1.0.0", + "xtend": "^4.0.1" } }, "underscore": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz", - "integrity": "sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI=" + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz", + "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==" }, "underscore.string": { "version": "2.3.3", - "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz", + "resolved": "http://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz", "integrity": "sha1-ccCL9rQosRM/N+ePo6Icgvcymw0=" }, + "union-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", + "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^0.4.3" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "set-value": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", + "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.1", + "to-object-path": "^0.3.0" + } + } + } + }, "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + } + }, "upper-case": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", @@ -4956,9 +5964,48 @@ "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.2.tgz", "integrity": "sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU=", "requires": { - "upper-case": "1.1.3" + "upper-case": "^1.1.1" } }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + } + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + }, + "util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "requires": { + "inherits": "2.0.3" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, "utils-merge": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz", @@ -4966,81 +6013,81 @@ }, "uuid": { "version": "1.4.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-1.4.2.tgz", + "resolved": "http://registry.npmjs.org/uuid/-/uuid-1.4.2.tgz", "integrity": "sha1-RTAZ9oaWam34PNxSROfJkOzDMvw=" }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, "vary": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/vary/-/vary-1.0.1.tgz", "integrity": "sha1-meSYFWaihhGN+yuBc1ffeZM3bRA=" }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, "vhost": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/vhost/-/vhost-3.0.2.tgz", "integrity": "sha1-L7HezUxGaqiLD5NBrzPcGv8keNU=" }, + "vm-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz", + "integrity": "sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==" + }, "void-elements": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=" }, - "which": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz", - "integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==", + "watchify": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/watchify/-/watchify-3.11.0.tgz", + "integrity": "sha512-7jWG0c3cKKm2hKScnSAMUEUjRJKXUShwMPk0ASVhICycQhwND3IMAdhJYmc1mxxKzBUJTSF5HZizfrKrS6BzkA==", "requires": { - "isexe": "2.0.0" + "anymatch": "^1.3.0", + "browserify": "^16.1.0", + "chokidar": "^1.0.0", + "defined": "^1.0.0", + "outpipe": "^1.1.0", + "through2": "^2.0.0", + "xtend": "^4.0.0" } }, - "wide-align": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz", - "integrity": "sha512-ijDLlyQ7s6x1JgCLur53osjm/UXUYD9+0PbYKrBsYisYXzCxN+HC3mYDNy/dWdmf3AwqwU3CXwDCvsNgGK1S0w==", + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "requires": { - "string-width": "1.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { - "number-is-nan": "1.0.1" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "2.1.1" - } - } + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" + }, + "wide-align": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "requires": { + "string-width": "^1.0.2 || 2" } }, "window-size": { @@ -5053,106 +6100,65 @@ "resolved": "https://registry.npmjs.org/with/-/with-5.1.1.tgz", "integrity": "sha1-+k2qktrzLE6pTtRTyB8EaGtXXf4=", "requires": { - "acorn": "3.3.0", - "acorn-globals": "3.1.0" + "acorn": "^3.1.0", + "acorn-globals": "^3.0.0" + }, + "dependencies": { + "acorn": { + "version": "3.3.0", + "resolved": "http://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" + } } }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, "write-file-stdout": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/write-file-stdout/-/write-file-stdout-0.0.2.tgz", "integrity": "sha1-wlLXx8WxtAKJdjDjRTx7/mkNnKE=" }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + }, + "y18n": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", + "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" + }, "yargs": { "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "resolved": "http://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", "requires": { - "camelcase": "1.2.1", - "cliui": "2.1.0", - "decamelize": "1.2.0", + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", "window-size": "0.1.0" - }, - "dependencies": { - "align-text": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", - "requires": { - "kind-of": "3.2.2", - "longest": "1.0.1", - "repeat-string": "1.6.1" - } - }, - "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" - }, - "center-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", - "requires": { - "align-text": "0.1.4", - "lazy-cache": "1.0.4" - } - }, - "cliui": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", - "requires": { - "center-align": "0.1.3", - "right-align": "0.1.3", - "wordwrap": "0.0.2" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "1.1.6" - } - }, - "lazy-cache": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" - }, - "longest": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - }, - "right-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", - "requires": { - "align-text": "0.1.4" - } - }, - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" - } } }, "yargs-parser": { @@ -5160,7 +6166,7 @@ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", "requires": { - "camelcase": "3.0.0" + "camelcase": "^3.0.0" }, "dependencies": { "camelcase": { diff --git a/package.json b/package.json index 2022a64..4a4ca24 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "samhuri.net", "version": "0.1.0", "dependencies": { - "harp": "^0.25.0", + "harp": "^0.29.0", "thepusher": "^0.1.4", "uglify-js": "^3.3.7" }, From a105b1b7e80a4f1565ce7c76120507792365d8ae Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 3 Dec 2018 11:37:59 -0800 Subject: [PATCH 18/33] fix CSP --- public/.htaccess | 2 +- public/_layout.ejs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/.htaccess b/public/.htaccess index 3364e4d..59717bf 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -36,7 +36,7 @@ Header set X-Content-Type-Options "nosniff" Header set X-Frame-Options "DENY" # Content Security Policy generated by Mozilla's CSP Toolkit -Header set Content-Security-Policy "default-src 'none'; img-src 'self' https://p.typekit.net; script-src 'self' 'unsafe-inline' https://ajax.googleapis.com https://api.github.com https://gist.github.com https://use.typekit.net; style-src 'unsafe-inline' https://assets-cdn.github.com https://netdna.bootstrapcdn.com; base-uri 'none'; frame-ancestors 'none'; form-action 'none'" +Header set Content-Security-Policy "default-src 'none'; img-src 'self' data: https://p.typekit.net; font-src 'self' https://use.typekit.net https://netdna.bootstrapcdn.com; script-src 'self' 'unsafe-inline' https://ajax.googleapis.com https://api.github.com https://gist.github.com https://use.typekit.net; style-src 'unsafe-inline' https://assets-cdn.github.com https://netdna.bootstrapcdn.com; base-uri 'none'; frame-ancestors 'none'; form-action 'none'" # https://infosec.mozilla.org/guidelines/web_security#referrer-policy Header set Referrer-Policy "no-referrer, strict-origin-when-cross-origin" diff --git a/public/_layout.ejs b/public/_layout.ejs index 66b2ef3..0355ddd 100644 --- a/public/_layout.ejs +++ b/public/_layout.ejs @@ -53,7 +53,7 @@ - +