├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── analyze.js ├── analyze_coffee.coffee ├── export.js └── export_coffee.coffee ├── config.coffee ├── lib ├── calculate_member_activity.coffee ├── fetch_groups.coffee ├── fetch_members.coffee ├── fetch_posts.coffee ├── list_fetched_groups.coffee └── write_posts_stdout.coffee └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/README.md -------------------------------------------------------------------------------- /bin/analyze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/bin/analyze.js -------------------------------------------------------------------------------- /bin/analyze_coffee.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/bin/analyze_coffee.coffee -------------------------------------------------------------------------------- /bin/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/bin/export.js -------------------------------------------------------------------------------- /bin/export_coffee.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/bin/export_coffee.coffee -------------------------------------------------------------------------------- /config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/config.coffee -------------------------------------------------------------------------------- /lib/calculate_member_activity.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/lib/calculate_member_activity.coffee -------------------------------------------------------------------------------- /lib/fetch_groups.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/lib/fetch_groups.coffee -------------------------------------------------------------------------------- /lib/fetch_members.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/lib/fetch_members.coffee -------------------------------------------------------------------------------- /lib/fetch_posts.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/lib/fetch_posts.coffee -------------------------------------------------------------------------------- /lib/list_fetched_groups.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/lib/list_fetched_groups.coffee -------------------------------------------------------------------------------- /lib/write_posts_stdout.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/lib/write_posts_stdout.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleAMathews/facebook-export/HEAD/package.json --------------------------------------------------------------------------------