{"id":16929210,"url":"https://github.com/moorepants/eme171","last_synced_at":"2026-03-07T08:03:19.599Z","repository":{"id":66791433,"uuid":"163773642","full_name":"moorepants/eme171","owner":"moorepants","description":"Jason K. Moore's UC Davis System Dynamics Course Website","archived":false,"fork":false,"pushed_at":"2020-08-26T10:52:31.000Z","size":1446,"stargazers_count":6,"open_issues_count":7,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-07T20:52:35.685Z","etag":null,"topics":["control","dynamics","education","engineering","mechatronic","simulation","system-dynamics"],"latest_commit_sha":null,"homepage":"https://moorepants.github.io/eme171","language":"MATLAB","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc-by-4.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/moorepants.png","metadata":{"files":{"readme":"README.rst","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":"2019-01-01T23:23:20.000Z","updated_at":"2025-02-05T13:19:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"4aaac7f3-b5d2-493c-a205-4632d0a5a176","html_url":"https://github.com/moorepants/eme171","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/moorepants/eme171","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moorepants%2Feme171","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moorepants%2Feme171/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moorepants%2Feme171/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moorepants%2Feme171/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moorepants","download_url":"https://codeload.github.com/moorepants/eme171/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moorepants%2Feme171/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30209797,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"last_error":"SSL_read: 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":["control","dynamics","education","engineering","mechatronic","simulation","system-dynamics"],"created_at":"2024-10-13T20:38:46.206Z","updated_at":"2026-03-07T08:03:19.550Z","avatar_url":"https://github.com/moorepants.png","language":"MATLAB","funding_links":[],"categories":[],"sub_categories":[],"readme":"Source files for Jason K. Moore's EME 171 course.\n\nEditing Guide\n=============\n\n- The website is built using Pelican. Review the `Pelican documentation`_ to\n  get familar with how to create pages and articles.\n- The source files are in the git branch called ``master``. This is the default\n  branch of the repository. The HTML files are generated via doctr and pushed\n  to the ``gh-pages`` branch, which is automatically seved to\n  https://moorepants.github.io/eme171. You should not have to ever manually\n  edit files in the ``gh-pages`` branch.\n- All articles, pages, and similar content should be written in\n  reStructuredText. See the `Sphinx reStructuredText primer`_ to learn the syntax.\n- All changes, in general, should be submitted as Github pull requests. Don't\n  commit directly to the ``master`` branch.\n- Binary Assets such as images, videos, etc should be served from an external\n  hosting site. Ask Jason about using his Dreamhost DreamObject bucket. He'll\n  set it up for multi-user access when needed. Do not commit binary assets to\n  this repository.\n- You can edit and add rst files directly in the contents directory using the\n  Github interface. The small pencil on files lets you edit and submit pull\n  requests. Just above the directory view has buttons for adding files. See \n  these instructions: https://help.github.com/en/articles/editing-files-in-your-repository\n\n.. _Pelican documentation: http://docs.getpelican.com/en/stable/\n.. _Sphinx reStructuredText primer: http://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html\n\nBuilding Locally\n================\n\nIt is good practice to build the documentation locally so that you can review\nchange before submitting a pull request.\n\nInstall pelican with conda (or pip if you prefer)::\n\n   $ conda install pelican\n\nClone the theme repository::\n\n   $ git clone --branch mechmotum git@github.com:mechmotum/pelican-alchemy.git\n\nNote the path to the theme, e.g.::\n\n   /home/my_username/pelican-alchemy\n\nClone the pelican-plugins repository::\n\n   $ git clone git@github.com:getpelican/pelican-plugins.git\n\nNote the path to the plugins directory, e.g.::\n\n   /home/my_username/pelican-plugins\n\nClone this repository and change into the new directory::\n\n   $ git clone git@github.com:moorepants/eme171.git\n   $ cd eme171/\n\nCreate a configuration file called ``config.yml`` and add the full path to\nwhere you installed the theme::\n\n   $ echo \"THEME_PATH: /home/my_username/pelican-alchemy\" \u003e local-config.yml\n   $ echo \"PLUGIN_PATHS: /home/my_username/pelican-plugins\" \u003e\u003e local-config.yml\n\nNow you can build and serve the documentation with::\n\n   $ make devserver\n\nIf this succeeds you can open the website in your web browser at\nhttp://localhost:8000.\n\nWhile the server is running you can change the website source files and they\nwill be build automatically. Refresh your web browser to view the changes.\n\nTo stop the web server press \u003cCTRL + C\u003e or type ``make stopserver``.\n\nLICENSE\n=======\n\nThis repository is licensed under the CC-BY 4.0 license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoorepants%2Feme171","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoorepants%2Feme171","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoorepants%2Feme171/lists"}