{"id":16735466,"url":"https://github.com/thomasthaddeus/dsclub","last_synced_at":"2026-01-27T21:44:45.768Z","repository":{"id":179017190,"uuid":"660224937","full_name":"thomasthaddeus/DSClub","owner":"thomasthaddeus","description":"This is a template for a ds club website","archived":false,"fork":false,"pushed_at":"2024-07-16T23:57:02.000Z","size":84887,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-31T02:12:37.836Z","etag":null,"topics":["chatbots","data-science","ds","jekyll","nlp","python","python3","website"],"latest_commit_sha":null,"homepage":"http://thomasthaddeus.com/DSClub/","language":"Jupyter Notebook","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/thomasthaddeus.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":".github/SECURITY_POLICY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-29T14:20:36.000Z","updated_at":"2024-05-17T08:45:16.000Z","dependencies_parsed_at":"2024-05-14T01:45:32.333Z","dependency_job_id":"4551cef4-d365-4cbc-a61d-5b86f14f4ba5","html_url":"https://github.com/thomasthaddeus/DSClub","commit_stats":{"total_commits":116,"total_committers":4,"mean_commits":29.0,"dds":0.06896551724137934,"last_synced_commit":"8d29164e8c6715977ac55035b4262e0e1a93dbb4"},"previous_names":["thomasthaddeus/ds-club","thomasthaddeus/dsclub"],"tags_count":0,"template":false,"template_full_name":"just-the-docs/just-the-docs-template","purl":"pkg:github/thomasthaddeus/DSClub","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasthaddeus%2FDSClub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasthaddeus%2FDSClub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasthaddeus%2FDSClub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasthaddeus%2FDSClub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thomasthaddeus","download_url":"https://codeload.github.com/thomasthaddeus/DSClub/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomasthaddeus%2FDSClub/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28823705,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T18:44:20.126Z","status":"ssl_error","status_checked_at":"2026-01-27T18:44:09.161Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["chatbots","data-science","ds","jekyll","nlp","python","python3","website"],"created_at":"2024-10-13T00:06:02.145Z","updated_at":"2026-01-27T21:44:45.752Z","avatar_url":"https://github.com/thomasthaddeus.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DS-Club\n\n## Documentation\n\n### What's included\n\n- Ruby 2.6.6\n- Rails 6.0.3\n- SQLite3\n- Node 12.16.1\n- Yarn 1.22.4\n- Bundler 2.1.4\n\n### About Rails\n\nRails is a web-application framework that includes everything needed to create database-backed web applications according to the [Model-View-Controller (MVC)](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller) pattern.\n\nUnderstanding the MVC pattern is key to understanding Rails. MVC divides your application into three layers: Model, View, and Controller, each with a specific responsibility.\n\n- The **Model** layer represents your domain model (such as Account, Product, Person, Post, etc.) and encapsulates the business logic that is specific to your application. In Rails, database-backed model classes are derived from `ActiveRecord::Base`. Active Record allows you to present the data from database rows as objects and embellish these data objects with business logic methods. Although most Rails models are backed by a database, models can also be ordinary Ruby classes, or Ruby classes that implement a set of interfaces as provided by the Active Model module.\n\nThe Codespace is running in a container with a full Ubuntu 20.04 environment. You have access to a full Linux terminal and all the tools you would expect. We've also pre-installed the [GitHub CLI](https://cli.github.com/) for you.\n\n### Getting Started\n\nThe first thing you'll want to do is run `bundle install` to install all of the dependencies for your application. Once that's done you'll need to set up your database with `rails db:create db:migrate`. Finally, you can start up your Rails server with `rails server` and head over to the port 3000 on your codespace's URL to see your new Rails app live in action.\n\nYou can also run the Rails console with `rails console` or run any other Rails command.\n\nYou can get started by creating a new Rails app. Once you've created your app, you can run it using the following commands:\n\n```sh\nrails new myapp\n\ncd myapp\n\n# install the db\nbundle install\nrails db:create db:migrate db:seed\nrails server\n\n# or run the console\nrails console\n```\n\nYou can preview your app at \u003chttps://PORT-3000.YOUR-USERNAME.githubpreview.dev\u003e\n\n## Next Steps\n\n- [x] Update this README to include information about your project\n- [x] Build your app!\n- [x] Push your code to GitHub\n- [ ] Deploy your app to Heroku\n- [ ] Share your app with friends!\n\n## What's next?\n\n- You can start a Rails server using `rails server`.\n- You can preview the running application by clicking the \"Open Ports\" button at the bottom of the Codespace window and selecting port 3000.\n- You can also open a terminal session in VS Code and run commands there.\n\n## Structure\n\n[Sitemap](./sitemap.html)\n\n## Schedule\n\n[Schedule](/docs/10_week_schedule.md)\n\n## Notebooks\n\n[Source](/src/notebooks/)\n\n## Labs\n\n[Workshops](/docs/workshops/)\n\n## Meetings\n\nWeekly on Wednesday's\n\n## Links\n\n- [Ruby on Rails](https://rubyonrails.org/)\n- [Ruby on Rails guides](https://guides.rubyonrails.org/)\n- [PostgreSQL](https://www.postgresql.org/docs/)\n- [Ruby](https://www.ruby-lang.org/en/documentation/)\nYou can learn more about [developing in Codespaces](https://docs.github.com/en/codespaces/developing-in-codespaces) in the docs.\nIf you'd like to learn more about Codespaces, check out the [documentation](https://docs.github.com/en/github/developing-online-with-codespaces/creating-a-codespace).\nIf you're looking for more inspiration for what you can do with Codespaces, check out [the documentation](https://aka.ms/codespaces).\nIf you want to learn more about using Codespaces for Ruby on Rails then check out the [GitHub Docs](https://docs.github.com/en/codespaces/developing-in-codespaces/creating-a-codespace#creating-a-codespace-for-ruby-on-rails). You can also check out the [Ruby on Rails Guides](https://guides.rubyonrails.org/) for more information on using Rails.\n[GitHub CLI](https://cli.github.com/)\n[Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomasthaddeus%2Fdsclub","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthomasthaddeus%2Fdsclub","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomasthaddeus%2Fdsclub/lists"}