├── .gitignore ├── CHANGELOG.txt ├── Resources ├── node_modules │ └── github │ │ ├── support │ │ ├── async │ │ │ ├── demo │ │ │ │ ├── assets │ │ │ │ │ ├── 1.txt │ │ │ │ │ ├── 2.txt │ │ │ │ │ └── 3.txt │ │ │ │ ├── find.js │ │ │ │ ├── fs.js │ │ │ │ ├── grep.js │ │ │ │ ├── du.js │ │ │ │ ├── filewalker.js │ │ │ │ ├── ls.js │ │ │ │ └── chaining.js │ │ │ ├── test │ │ │ │ ├── assets │ │ │ │ │ ├── 1.txt │ │ │ │ │ ├── 2.txt │ │ │ │ │ ├── 3.txt │ │ │ │ │ ├── 11.txt │ │ │ │ │ ├── dir1 │ │ │ │ │ │ └── 1.txt │ │ │ │ │ ├── dir2 │ │ │ │ │ │ └── 2.txt │ │ │ │ │ ├── walk │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ ├── dir1 │ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ │ └── dir2 │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ └── dir22 │ │ │ │ │ │ │ └── 22.txt │ │ │ │ │ ├── dir11 │ │ │ │ │ │ └── 11.txt │ │ │ │ │ └── nonemptydir │ │ │ │ │ │ └── 4.txt │ │ │ │ └── all.js │ │ │ ├── .gitignore │ │ │ ├── lib │ │ │ │ └── asyncjs │ │ │ │ │ ├── index.js │ │ │ │ │ └── plugins │ │ │ │ │ ├── shortcuts.js │ │ │ │ │ └── utils.js │ │ │ └── package.json │ │ ├── oauth │ │ │ ├── debian │ │ │ │ ├── compat │ │ │ │ ├── dirs │ │ │ │ ├── source │ │ │ │ │ └── format │ │ │ │ ├── install │ │ │ │ ├── rules │ │ │ │ ├── copyright │ │ │ │ ├── control │ │ │ │ └── changelog │ │ │ ├── Makefile │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── tests │ │ │ │ ├── sha1.js │ │ │ │ └── oauth2.js │ │ │ ├── examples │ │ │ │ ├── term.ie.oauth-HMAC-SHA1.js │ │ │ │ └── term.ie.oauth-PLAINTEXT.js │ │ │ └── Readme.md │ │ └── paths.js │ │ ├── .gitignore │ │ ├── node_modules │ │ ├── oauth │ │ │ ├── debian │ │ │ │ ├── compat │ │ │ │ ├── dirs │ │ │ │ ├── source │ │ │ │ │ └── format │ │ │ │ ├── install │ │ │ │ ├── rules │ │ │ │ ├── copyright │ │ │ │ ├── control │ │ │ │ └── changelog │ │ │ ├── Makefile │ │ │ ├── examples │ │ │ │ ├── express-gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── layout.ejs │ │ │ │ │ │ ├── google_contacts.ejs │ │ │ │ │ │ └── google_calendars.ejs │ │ │ │ ├── twitter-test.js │ │ │ │ ├── term.ie.oauth-HMAC-SHA1.js │ │ │ │ └── term.ie.oauth-PLAINTEXT.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── tests │ │ │ │ ├── sha1.js │ │ │ │ └── oauth2.js │ │ │ ├── test.js │ │ │ ├── numero-test.js │ │ │ ├── testb.js │ │ │ └── google-test.js │ │ └── asyncjs │ │ │ ├── demo │ │ │ ├── assets │ │ │ │ ├── 1.txt │ │ │ │ ├── 2.txt │ │ │ │ └── 3.txt │ │ │ ├── find.js │ │ │ ├── fs.js │ │ │ ├── grep.js │ │ │ ├── du.js │ │ │ ├── filewalker.js │ │ │ ├── ls.js │ │ │ └── chaining.js │ │ │ ├── test │ │ │ ├── assets │ │ │ │ ├── 1.txt │ │ │ │ ├── 11.txt │ │ │ │ ├── 2.txt │ │ │ │ ├── 3.txt │ │ │ │ ├── dir1 │ │ │ │ │ └── 1.txt │ │ │ │ ├── dir11 │ │ │ │ │ └── 11.txt │ │ │ │ ├── dir2 │ │ │ │ │ └── 2.txt │ │ │ │ ├── walk │ │ │ │ │ ├── 1.txt │ │ │ │ │ ├── dir1 │ │ │ │ │ │ └── 1.txt │ │ │ │ │ └── dir2 │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ └── dir22 │ │ │ │ │ │ └── 22.txt │ │ │ │ └── nonemptydir │ │ │ │ │ └── 4.txt │ │ │ └── all.js │ │ │ ├── .gitignore │ │ │ ├── index.js │ │ │ ├── lib │ │ │ └── plugins │ │ │ │ ├── shortcuts.js │ │ │ │ └── utils.js │ │ │ └── package.json │ │ ├── vendor │ │ ├── node-oauth │ │ │ ├── debian │ │ │ │ ├── compat │ │ │ │ ├── dirs │ │ │ │ ├── source │ │ │ │ │ └── format │ │ │ │ ├── install │ │ │ │ ├── rules │ │ │ │ ├── copyright │ │ │ │ ├── control │ │ │ │ └── changelog │ │ │ ├── Makefile │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── tests │ │ │ │ ├── sha1.js │ │ │ │ └── oauth2.js │ │ │ ├── examples │ │ │ │ ├── term.ie.oauth-HMAC-SHA1.js │ │ │ │ └── term.ie.oauth-PLAINTEXT.js │ │ │ └── Readme.md │ │ └── node-async-testing │ │ │ ├── todo.txt │ │ │ ├── node-async-test │ │ │ └── examples │ │ │ ├── test-readme.js │ │ │ └── test-suites.js │ │ ├── seed.yml │ │ ├── .gitmodules │ │ ├── NOTICE.txt │ │ ├── lib │ │ ├── github_all_tests.js │ │ ├── github │ │ │ ├── AbstractApi.js │ │ │ ├── PullApiTest.js │ │ │ ├── RequestTest.js │ │ │ ├── PullApi.js │ │ │ ├── CommitApiTest.js │ │ │ ├── CommitApi.js │ │ │ ├── ObjectApiTest.js │ │ │ ├── AuthenticationTest.js │ │ │ └── ObjectApi.js │ │ └── github_test.js │ │ ├── package.json │ │ └── LICENSE ├── default_app_logo.png ├── images │ └── appcelerator.png ├── nodejs │ ├── builds │ │ ├── linux │ │ │ └── node │ │ │ │ ├── lib │ │ │ │ ├── node │ │ │ │ │ └── wafadmin │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── Tools │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── gob2.py │ │ │ │ │ │ ├── icpc.py │ │ │ │ │ │ ├── icc.py │ │ │ │ │ │ ├── compiler_d.py │ │ │ │ │ │ ├── ar.py │ │ │ │ │ │ ├── gas.py │ │ │ │ │ │ ├── gdc.py │ │ │ │ │ │ ├── winres.py │ │ │ │ │ │ ├── nasm.py │ │ │ │ │ │ ├── dmd.py │ │ │ │ │ │ ├── suncxx.py │ │ │ │ │ │ ├── compiler_cxx.py │ │ │ │ │ │ ├── suncc.py │ │ │ │ │ │ ├── xlc.py │ │ │ │ │ │ ├── compiler_cc.py │ │ │ │ │ │ ├── xlcxx.py │ │ │ │ │ │ ├── node_addon.py │ │ │ │ │ │ └── cc.py │ │ │ │ │ │ └── Constants.py │ │ │ │ └── pkgconfig │ │ │ │ │ └── nodejs.pc │ │ │ │ ├── bin │ │ │ │ ├── node │ │ │ │ └── node-waf │ │ │ │ └── include │ │ │ │ └── node │ │ │ │ ├── config.h │ │ │ │ ├── node_config.h │ │ │ │ ├── node_events.h │ │ │ │ ├── v8stdint.h │ │ │ │ └── node_version.h │ │ └── osx │ │ │ └── node │ │ │ ├── lib │ │ │ ├── node │ │ │ │ └── wafadmin │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── Tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── gob2.py │ │ │ │ │ ├── icpc.py │ │ │ │ │ ├── icc.py │ │ │ │ │ ├── compiler_d.py │ │ │ │ │ ├── ar.py │ │ │ │ │ ├── gas.py │ │ │ │ │ ├── gdc.py │ │ │ │ │ ├── winres.py │ │ │ │ │ ├── nasm.py │ │ │ │ │ ├── dmd.py │ │ │ │ │ ├── suncxx.py │ │ │ │ │ ├── compiler_cxx.py │ │ │ │ │ ├── suncc.py │ │ │ │ │ ├── xlc.py │ │ │ │ │ ├── compiler_cc.py │ │ │ │ │ ├── xlcxx.py │ │ │ │ │ └── node_addon.py │ │ │ │ │ └── Constants.py │ │ │ └── pkgconfig │ │ │ │ └── nodejs.pc │ │ │ ├── bin │ │ │ ├── node │ │ │ └── node-waf │ │ │ └── include │ │ │ └── node │ │ │ ├── config.h │ │ │ ├── node_config.h │ │ │ ├── node_events.h │ │ │ ├── v8stdint.h │ │ │ └── node_version.h │ ├── nodejs.py │ └── LICENSE ├── templates │ ├── userlist.ejs │ ├── repos.ejs │ └── profile.ejs ├── css │ └── style.css ├── ejs │ └── license.txt ├── index.html ├── index.js └── appserver.js ├── .pydevproject ├── manifest ├── LICENSE.txt ├── .project ├── timanifest ├── tiapp.xml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | tmp 3 | -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Version 1.0 (06/30/2011): 2 | * Initial release -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/demo/assets/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/demo/assets/2.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/demo/assets/3.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/2.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/3.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/oauth/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Resources/node_modules/github/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 0.0.1.seed -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/oauth/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/11.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/dir1/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/dir2/2.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/walk/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Resources/node_modules/github/vendor/node-oauth/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/demo/assets/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/demo/assets/2.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/demo/assets/3.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/11.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/2.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/3.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/dir11/11.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/walk/dir1/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/walk/dir2/2.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/dir1/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/dir11/11.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/dir2/2.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/walk/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/nonemptydir/4.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/nonemptydir/4.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/walk/dir1/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/walk/dir2/2.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/assets/walk/dir2/dir22/22.txt: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /Resources/node_modules/github/support/oauth/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/lib/nodejs/oauth 2 | -------------------------------------------------------------------------------- /Resources/node_modules/github/support/oauth/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/test/assets/walk/dir2/dir22/22.txt: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/oauth/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/lib/nodejs/oauth 2 | -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/oauth/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /Resources/node_modules/github/vendor/node-oauth/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/lib/nodejs/oauth 2 | -------------------------------------------------------------------------------- /Resources/node_modules/github/vendor/node-oauth/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | .settings.xml -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/asyncjs/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | .settings.xml -------------------------------------------------------------------------------- /Resources/node_modules/github/support/oauth/debian/install: -------------------------------------------------------------------------------- 1 | index.js usr/lib/nodejs/oauth 2 | lib usr/lib/nodejs/oauth 3 | -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/oauth/debian/install: -------------------------------------------------------------------------------- 1 | index.js usr/lib/nodejs/oauth 2 | lib usr/lib/nodejs/oauth 3 | -------------------------------------------------------------------------------- /Resources/node_modules/github/vendor/node-oauth/debian/install: -------------------------------------------------------------------------------- 1 | index.js usr/lib/nodejs/oauth 2 | lib usr/lib/nodejs/oauth 3 | -------------------------------------------------------------------------------- /Resources/node_modules/github/support/oauth/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | include /usr/share/cdbs/1/rules/debhelper.mk 4 | -------------------------------------------------------------------------------- /Resources/default_app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-archive/poc-nodejs-desktop/HEAD/Resources/default_app_logo.png -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/oauth/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | include /usr/share/cdbs/1/rules/debhelper.mk 4 | -------------------------------------------------------------------------------- /Resources/node_modules/github/vendor/node-oauth/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | include /usr/share/cdbs/1/rules/debhelper.mk 4 | -------------------------------------------------------------------------------- /Resources/images/appcelerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-archive/poc-nodejs-desktop/HEAD/Resources/images/appcelerator.png -------------------------------------------------------------------------------- /Resources/nodejs/builds/linux/node/lib/node/wafadmin/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # encoding: utf-8 3 | # Thomas Nagy, 2005 (ita) 4 | -------------------------------------------------------------------------------- /Resources/nodejs/builds/osx/node/lib/node/wafadmin/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # encoding: utf-8 3 | # Thomas Nagy, 2005 (ita) 4 | -------------------------------------------------------------------------------- /Resources/node_modules/github/support/oauth/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Run all tests 3 | # 4 | test: 5 | @@vows tests/* --spec 6 | 7 | .PHONY: test install -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/oauth/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Run all tests 3 | # 4 | test: 5 | @@vows tests/* --spec 6 | 7 | .PHONY: test install -------------------------------------------------------------------------------- /Resources/node_modules/github/support/oauth/index.js: -------------------------------------------------------------------------------- 1 | exports.OAuth = require("./lib/oauth").OAuth; 2 | exports.OAuth2 = require("./lib/oauth2").OAuth2; -------------------------------------------------------------------------------- /Resources/node_modules/github/vendor/node-oauth/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Run all tests 3 | # 4 | test: 5 | @@vows tests/* --spec 6 | 7 | .PHONY: test install -------------------------------------------------------------------------------- /Resources/nodejs/builds/linux/node/lib/node/wafadmin/Tools/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # encoding: utf-8 3 | # Thomas Nagy, 2006 (ita) 4 | 5 | -------------------------------------------------------------------------------- /Resources/nodejs/builds/osx/node/lib/node/wafadmin/Tools/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # encoding: utf-8 3 | # Thomas Nagy, 2006 (ita) 4 | 5 | -------------------------------------------------------------------------------- /Resources/node_modules/github/vendor/node-oauth/index.js: -------------------------------------------------------------------------------- 1 | exports.OAuth = require("./lib/oauth").OAuth; 2 | exports.OAuth2 = require("./lib/oauth2").OAuth2; -------------------------------------------------------------------------------- /Resources/nodejs/builds/osx/node/bin/node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-archive/poc-nodejs-desktop/HEAD/Resources/nodejs/builds/osx/node/bin/node -------------------------------------------------------------------------------- /Resources/nodejs/builds/linux/node/bin/node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-archive/poc-nodejs-desktop/HEAD/Resources/nodejs/builds/linux/node/bin/node -------------------------------------------------------------------------------- /Resources/node_modules/github/seed.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: node-github 3 | description: node wrapper for the GitHub API 4 | tags: git github web 5 | version: 0.0.1 6 | -------------------------------------------------------------------------------- /Resources/node_modules/github/node_modules/oauth/examples/express-gdata/views/layout.ejs: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | <%- body %> 7 | 8 | 9 | -------------------------------------------------------------------------------- /Resources/node_modules/github/support/async/test/all.js: -------------------------------------------------------------------------------- 1 | var async = require("../lib/async") 2 | 3 | async.concat( 4 | require("./async.test"), 5 | require("./fs.test") 6 | ).exec() 7 | -------------------------------------------------------------------------------- /Resources/templates/userlist.ejs: -------------------------------------------------------------------------------- 1 || Name | 4 |Desc | 5 |Forks | 6 |Watchers | 7 |
|---|---|---|---|
| <%= repos[i].name %> | 13 |<%= repos[i].description %> | 14 |<%= repos[i].forks %> | 15 |<%= repos[i].watchers %> | 16 |
canEdit: <%= calendar["canEdit"] %>
14 |accessLevel: <%= calendar["accessLevel"] %>
15 |timeZone: <%= calendar["timeZone"] %>
16 |kind: <%= calendar["kind"] %>
17 |updated: <%= calendar["updated"] %>
18 |created: <%= calendar["created"] %>
19 | 20 || Username | 5 |<%= login %> | 6 |
| Name | 9 |<%= name %> | 10 |
| Location | 13 |<%= location %> | 14 |
| Company | 17 |<%= company %> | 18 |
| Blog | 21 |<%= blog %> | 22 |
| Public Repo Count | 25 |<%= public_repo_count %> | 26 |
| Follower Count | 29 |<%= followers_count %> | 30 |
| Following Count | 33 |<%= following_count %> | 34 |