{"id":20467835,"url":"https://github.com/simonguozirui/cooxle","last_synced_at":"2026-04-10T01:46:55.313Z","repository":{"id":67158445,"uuid":"89392046","full_name":"simonguozirui/cooxle","owner":"simonguozirui","description":"A twitter-like social media platform with easy-to-use posting and account systems. ","archived":false,"fork":false,"pushed_at":"2017-05-19T12:52:26.000Z","size":3312,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-16T01:36:32.265Z","etag":null,"topics":["amazon-web-services","apache","aws-ec2","css3","dynamic-webpages","html5","ics4u-course","javascript","localhost","mamp","mysql","php","phpmyadmin-database","route53","social-media","sql","twitter"],"latest_commit_sha":null,"homepage":"http://cooxle.life/","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simonguozirui.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":"2017-04-25T18:11:17.000Z","updated_at":"2018-11-06T16:09:35.000Z","dependencies_parsed_at":"2023-06-10T02:00:44.332Z","dependency_job_id":null,"html_url":"https://github.com/simonguozirui/cooxle","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonguozirui%2Fcooxle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonguozirui%2Fcooxle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonguozirui%2Fcooxle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonguozirui%2Fcooxle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simonguozirui","download_url":"https://codeload.github.com/simonguozirui/cooxle/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242031303,"owners_count":20060579,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["amazon-web-services","apache","aws-ec2","css3","dynamic-webpages","html5","ics4u-course","javascript","localhost","mamp","mysql","php","phpmyadmin-database","route53","social-media","sql","twitter"],"created_at":"2024-11-15T13:30:26.975Z","updated_at":"2025-12-31T00:55:00.271Z","avatar_url":"https://github.com/simonguozirui.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cooxle\nCooxle is a twitter-like social media platform with easy-to-use posting and account systems.\n\nYou can access the live website on [http://cooxle.life](http://cooxle.life). (Server is stopped Currently)\n\nLicensed under the MIT license. Created by Simon Zi Rui Guo and Nicholas O'Brien for their Grade 10 Computer Science class (ICS4U). Use setup.sql to create the database structure we use or copy the code below and run it on a local mysql and apache server.\n\n```sql\nSET SQL_MODE = \"NO_AUTO_VALUE_ON_ZERO\";\nSET time_zone = \"+00:00\";\n\n--\n-- Database: `cooxledb`\n--\n\n-- --------------------------------------------------------\n\n--\n-- Table structure for table `comments`\n--\n\nCREATE TABLE `comments` (\n  `userid` int(11) NOT NULL,\n  `postid` int(11) NOT NULL,\n  `content` text NOT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8;\n\n-- --------------------------------------------------------\n\n--\n-- Table structure for table `follow`\n--\n\nCREATE TABLE `follow` (\n  `followerid` int(11) NOT NULL,\n  `followingid` int(11) NOT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8;\n\n-- --------------------------------------------------------\n\n--\n-- Table structure for table `likes`\n--\n\nCREATE TABLE `likes` (\n  `userid` int(11) NOT NULL,\n  `postid` int(11) NOT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8;\n\n-- --------------------------------------------------------\n\n--\n-- Table structure for table `posts`\n--\n\nCREATE TABLE `posts` (\n  `id` int(11) NOT NULL,\n  `tag` varchar(255) NOT NULL DEFAULT '',\n  `content` varchar(255) NOT NULL DEFAULT '',\n  `username` varchar(255) NOT NULL,\n  `time` varchar(255) NOT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;\n\n-- --------------------------------------------------------\n\n--\n-- Table structure for table `users`\n--\n\nCREATE TABLE `users` (\n  `id` int(11) NOT NULL,\n  `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,\n  `password` char(64) COLLATE utf8_unicode_ci NOT NULL,\n  `salt` char(16) COLLATE utf8_unicode_ci NOT NULL,\n  `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,\n  `pic` text COLLATE utf8_unicode_ci NOT NULL,\n  `bio` text COLLATE utf8_unicode_ci NOT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n\n--\n-- Indexes for dumped tables\n--\n\n--\n-- Indexes for table `posts`\n--\nALTER TABLE `posts`\n  ADD PRIMARY KEY (`id`);\n\n--\n-- Indexes for table `users`\n--\nALTER TABLE `users`\n  ADD PRIMARY KEY (`id`),\n  ADD UNIQUE KEY `username` (`username`),\n  ADD UNIQUE KEY `email` (`email`);\n\n--\n-- AUTO_INCREMENT for dumped tables\n--\n\n--\n-- AUTO_INCREMENT for table `posts`\n--\nALTER TABLE `posts`\n  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=0;\n--\n-- AUTO_INCREMENT for table `users`\n--\nALTER TABLE `users`\n  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=0;\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimonguozirui%2Fcooxle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimonguozirui%2Fcooxle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimonguozirui%2Fcooxle/lists"}