{"id":17085080,"url":"https://github.com/p1xt/january-2018-fullstack-challenge","last_synced_at":"2026-02-20T19:33:36.693Z","repository":{"id":88167309,"uuid":"118274459","full_name":"P1xt/January-2018-fullstack-challenge","owner":"P1xt","description":"Challenge designed to explore a variety of functionality in a fullstack application.","archived":false,"fork":false,"pushed_at":"2018-01-21T00:29:14.000Z","size":2,"stargazers_count":10,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-27T04:06:10.102Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/P1xt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-20T19:35:15.000Z","updated_at":"2021-01-22T11:33:20.000Z","dependencies_parsed_at":"2023-06-13T01:02:31.910Z","dependency_job_id":null,"html_url":"https://github.com/P1xt/January-2018-fullstack-challenge","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/P1xt/January-2018-fullstack-challenge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/P1xt%2FJanuary-2018-fullstack-challenge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/P1xt%2FJanuary-2018-fullstack-challenge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/P1xt%2FJanuary-2018-fullstack-challenge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/P1xt%2FJanuary-2018-fullstack-challenge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/P1xt","download_url":"https://codeload.github.com/P1xt/January-2018-fullstack-challenge/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/P1xt%2FJanuary-2018-fullstack-challenge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29661613,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T16:33:43.953Z","status":"ssl_error","status_checked_at":"2026-02-20T16:33:43.598Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T13:23:12.075Z","updated_at":"2026-02-20T19:33:36.677Z","avatar_url":"https://github.com/P1xt.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# January 2018 - Fullstack Challenge\n\n## Clone a Twitter / Snapchat Hybrid\n\nTwitter allows for real time messaging \"with the world\", following users, tagging posts, targetting posts @ certain users, etc.\n\nSnapchat has one feature that Twitter lacks - what you post to Snapchat is temporary, it does not persist \"forever\".\n\nThis challenge is to clone Twitter, but using Snapchat's message retention strategy.\n\n## Features to implement\n\nAs a user, I can:\n\n* Login via OAuth\n* Post a message that is X characters long\n* View a stream of the messages that have been posted\n* View trending #TAGS\n* Include a #TAG in my post\n* @MENTION a user in my post\n* Follow other users\n* View a stream of messages from only those I follow\n* View a stream of messages that match a particular tag\n* Be notified when I am mentioned in a post\n* Expect that my messages will disappear after X hours\n\nAs a non-authenticated user, I can:\n* View the landing page\n* View a stream of the messages that have been posted\n* View trending #TAGS\n* View a stream of messages that match a particular tag\n\n_(What to set X to is your decision to make for your application.)_\n\n## Tasks to complete\n\nTotal Points Earned:\n\n* [ ]  (20 Points) Implement pre-login landing page\n* [ ]  (20 Points) Implement login\n* [ ]  (20 Points) Implement frontend with input for entering post\n* [ ]  (20 Points) Implement backend for receiving post\n* [ ]  (30 Points) Implement backend for saving post\n* [ ]  (50 Points) Implement mechanism for backend to send post to all connected clients (suggestion: use web sockets)\n* [ ]  (20 Points) Implement frontend for showing stream of posts\n* [ ]  (50 Points) Implement functionality that deletes messages from the backend after X time\n* [ ]  (50 Points) Implement functionality that instructs clients to fade out deleted messages\n* [ ]  (20 Points) Implement functionality for recognizing #TAGS in posts\n* [ ]  (20 Points) Implement a \"trending\" sidebar which shows which #TAGS are currently being most used\n* [ ]  (20 Points) Implement functionality for recognizing @MENTIONS in posts\n* [ ]  (20 Points) Implement notifications screen where a user can see a log of messages in which they were @MENTIONED\n* [ ]  (20 Points) Implement \"follow\" functionality and a separate post stream where a user can see only the messages of those they follow\n\n### Bonus points earned\n\n* [ ]  \n* [ ]  \n* [ ]  \n\n## Bonus point opportunities\n\n* 5 points per test case written and passing\n* 50 points for following a git workflow (a branch for each feature, a commit for each change)\n* 50 points for using a CSS Preprocessor (Sass/Less/Stylus/etc)\n* 50 points for using a frontend framework/library (Angular/Vue/React/etc)\n* 50 points for configuring linting on the project and automating lint before deploy\n* 50 points for setting up continuous integration which automatically tests, lints, builds, and deploys on git commit\n* 50 points for optimizing the production build (above 95 on google pagespeed insights, both mobile and desktop)\n\n## Rules\n\n* use whatever technologies / languages you want\n* team up if you want, claim an extra 100 points for each team member if you complete the entire project together\n* no deadline, but bragging rights if you finish quick (and to a good standard)\n* 'done' project will have code and live app available online\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fp1xt%2Fjanuary-2018-fullstack-challenge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fp1xt%2Fjanuary-2018-fullstack-challenge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fp1xt%2Fjanuary-2018-fullstack-challenge/lists"}