From be700b7103bf1746501c1a388f7780a4c5a07f32 Mon Sep 17 00:00:00 2001 From: Quentin Bolsee <quentinbolsee@hotmail.com> Date: Tue, 23 Apr 2024 00:29:22 -0400 Subject: [PATCH] init site --- .gitignore | 133 ++++++++++++++++++++++++++++++++++++++ .gitlab-ci.yml | 10 +++ Gemfile | 7 ++ LICENSE | 21 ++++++ README.md | 94 +-------------------------- _config.yml | 16 +++++ bin/duplitopics.py | 34 ++++++++++ bin/setup | 3 + bin/start | 3 + bin/topics | 6 ++ css/main.css | 11 ++++ favicon.ico | Bin 0 -> 4286 bytes index.md | 7 ++ topics/1_cameras/.gitkeep | 0 topics/1_cameras/index.md | 21 ++++++ topics/2_passive/.gitkeep | 0 topics/2_passive/index.md | 17 +++++ topics/3_active/.gitkeep | 0 topics/3_active/index.md | 17 +++++ 19 files changed, 308 insertions(+), 92 deletions(-) create mode 100644 .gitignore create mode 100644 .gitlab-ci.yml create mode 100644 Gemfile create mode 100644 LICENSE create mode 100644 _config.yml create mode 100644 bin/duplitopics.py create mode 100644 bin/setup create mode 100644 bin/start create mode 100644 bin/topics create mode 100644 css/main.css create mode 100644 favicon.ico create mode 100644 index.md create mode 100644 topics/1_cameras/.gitkeep create mode 100644 topics/1_cameras/index.md create mode 100644 topics/2_passive/.gitkeep create mode 100644 topics/2_passive/index.md create mode 100644 topics/3_active/.gitkeep create mode 100644 topics/3_active/index.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..db8de35 --- /dev/null +++ b/.gitignore @@ -0,0 +1,133 @@ +# Created by https://www.toptal.com/developers/gitignore/api/vim,altium,freecad,kicad +# Edit at https://www.toptal.com/developers/gitignore?templates=vim,altium,freecad,kicad + +### Altium ### +# Previews Folders +**/__Previews/ + +# History Folders +**/History/* + +# Project Logs +Project\ Logs*/ + +# Project Outputs +Project\ Outputs*/ + +# Auto-conversion notices +*.PcbDoc.htm + +# Access lock file for dbLib sources +**/*.ldb + + +### FreeCad ### +*.pyc +*.fcstd1 +*.FCStd1 +*.fcstd2 +*.FCStd2 + +### KiCad ### +# For PCBs designed using KiCad: https://www.kicad.org/ +# Format documentation: https://kicad.org/help/file-formats/ + +# Temporary files +*.000 +*.bak +*.bck +*.kicad_pcb-bak +*.kicad_sch-bak +*-backups +*.kicad_prl +*.sch-bak +*~ +_autosave-* +*.tmp +*-save.pro +*-save.kicad_pcb +fp-info-cache + +# Netlist files (exported from Eeschema) +*.net + +# Autorouter files (exported from Pcbnew) +*.dsn +*.ses + +# Exported BOM files +*.xml +*.csv + +### KiCad Patch ### +rescue-backup/ + +*.tsv +bom/ + +# Gerber export output +out/ + +### Vim ### +# Swap +[._]*.s[a-v][a-z] +!*.svg # comment out if you don't need vector files +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim +Sessionx.vim + +# Temporary +.netrwhist +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + +# End of https://www.toptal.com/developers/gitignore/api/vim,altium,freecad,kicad + +### SolidWorks ### +# used chatgpt for help here + +# SolidWorks Temporary files +~$* +*.swp +*.swo +*.swm +*.sl~d* +*.tmp +*.bak +*.bkw +*.tts + +# SolidWorks AutoRecover files +*.swar + +# SolidWorks Backup files +*backup*.sldprt +*backup*.sldasm +*backup*.slddrw + +### Jekyll/Ruby ### +# originally from Moonwalk theme + +*.gem +.bundle +.jekyll-cache +.sass-cache +_site +/vendor + +### user defined + +**/local/ +*.Identifier +**/secret/ +**/export/ # avoid accidentally committing raw exports; have a separate folder for deliberate files for sharing + +public/ +Gemfile.lock diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..2274f07 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +pages: + stage: deploy + script: + - bundle exec jekyll build -d public # Use `bundle exec` to ensure the command runs within Bundler's context + - echo "The site will be deployed to $CI_PAGES_URL" + artifacts: + paths: + - public + rules: + - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..3aec09b --- /dev/null +++ b/Gemfile @@ -0,0 +1,7 @@ +source 'https://rubygems.org' + +gem "jekyll", "~> 4.3.3" # installed by `gem jekyll` +# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2 + +gem "just-the-docs", "0.7.0" # pinned to the current release +# gem "just-the-docs" # always download the latest release diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7d510d0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 just-the-docs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 5213e70..cc719bf 100644 --- a/README.md +++ b/README.md @@ -1,93 +1,3 @@ -# MA865.24_computer-vision +# Computer vision lecture 865.24 - - -## Getting started - -To make it easy for you to get started with GitLab, here's a list of recommended next steps. - -Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! - -## Add your files - -- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files -- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: - -``` -cd existing_repo -git remote add origin https://gitlab.cba.mit.edu/quentinbolsee/ma865.24_computer-vision.git -git branch -M main -git push -uf origin main -``` - -## Integrate with your tools - -- [ ] [Set up project integrations](https://gitlab.cba.mit.edu/quentinbolsee/ma865.24_computer-vision/-/settings/integrations) - -## Collaborate with your team - -- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) -- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) -- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) -- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) -- [ ] [Set auto-merge](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html) - -## Test and Deploy - -Use the built-in continuous integration in GitLab. - -- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html) -- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) -- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) -- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) -- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) - -*** - -# Editing this README - -When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template. - -## Suggestions for a good README - -Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. - -## Name -Choose a self-explaining name for your project. - -## Description -Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. - -## Badges -On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. - -## Visuals -Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. - -## Installation -Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. - -## Usage -Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. - -## Support -Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. - -## Roadmap -If you have ideas for releases in the future, it is a good idea to list them in the README. - -## Contributing -State if you are open to contributions and what your requirements are for accepting them. - -For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. - -You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. - -## Authors and acknowledgment -Show your appreciation to those who have contributed to the project. - -## License -For open source projects, say how it is licensed. - -## Project status -If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. +This repository contains the jekyll source for the computer vision lecture. diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..2df97a3 --- /dev/null +++ b/_config.yml @@ -0,0 +1,16 @@ +title: Just the Docs Template +description: A starter template for a Jeykll site using the Just the Docs theme! +theme: just-the-docs +color_scheme: light +markdown: kramdown + +aux_links: + Template Repository: https://github.com/just-the-docs/just-the-docs-template + +callouts: + warning: + title: Warning + color: red + note: + title: Note + color: purple diff --git a/bin/duplitopics.py b/bin/duplitopics.py new file mode 100644 index 0000000..52f4248 --- /dev/null +++ b/bin/duplitopics.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python3 +import argparse +import os +import shutil + +def copy_and_rename_directory(topics_file, source_directory, destination_directory): + # Read topics from the file + with open(topics_file, 'r') as file: + topics = file.read().splitlines() + + # Ensure the destination directory exists + os.makedirs(destination_directory, exist_ok=True) + + for topic in topics: + # Generate the new directory path based on the topic and destination directory + new_directory = os.path.join(destination_directory, topic) + + # Copy the directory + shutil.copytree(source_directory, new_directory) + print(f"Copied and renamed {source_directory} to {new_directory}") + +if __name__ == "__main__": + # Setup argument parser + parser = argparse.ArgumentParser(description="Copy a directory for each topic listed in a file, placing them in a specified destination directory and renaming accordingly.") + parser.add_argument("topics_file", type=str, help="Path to the file containing the list of topics.") + parser.add_argument("source_directory", type=str, help="Path to the source directory to be copied.") + parser.add_argument("destination_directory", type=str, help="Path to the destination directory where the copies will be placed.") + + # Parse arguments + args = parser.parse_args() + + # Execute the main function + copy_and_rename_directory(args.topics_file, args.source_directory, args.destination_directory) + diff --git a/bin/setup b/bin/setup new file mode 100644 index 0000000..7d35d75 --- /dev/null +++ b/bin/setup @@ -0,0 +1,3 @@ +#!/bin/sh + +bundle install diff --git a/bin/start b/bin/start new file mode 100644 index 0000000..d8c3e15 --- /dev/null +++ b/bin/start @@ -0,0 +1,3 @@ +#!/bin/sh + +bundle exec jekyll serve diff --git a/bin/topics b/bin/topics new file mode 100644 index 0000000..aac3ec7 --- /dev/null +++ b/bin/topics @@ -0,0 +1,6 @@ +drivers +passives +regulators +thermals +transformers +transistors diff --git a/css/main.css b/css/main.css new file mode 100644 index 0000000..c453498 --- /dev/null +++ b/css/main.css @@ -0,0 +1,11 @@ +img { + width: 60%; + display: block; + margin-left: auto; + margin-right: auto; +} + +.legend { + color: #A0A0A0; + font-size: 0.7em; +} diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..5ad756d9ed5743940aa6a35e44c30b2584b62330 GIT binary patch literal 4286 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 M{lEX9F@S-@0MHKERsaA1 literal 0 HcmV?d00001 diff --git a/index.md b/index.md new file mode 100644 index 0000000..b660168 --- /dev/null +++ b/index.md @@ -0,0 +1,7 @@ +--- +title: Home +layout: home +nav_order: 1 +--- + +# Computer vision diff --git a/topics/1_cameras/.gitkeep b/topics/1_cameras/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/topics/1_cameras/index.md b/topics/1_cameras/index.md new file mode 100644 index 0000000..4d68e5c --- /dev/null +++ b/topics/1_cameras/index.md @@ -0,0 +1,21 @@ +--- +layout: default +title: Camera sensors +nav_order: 2 +mathjax: true +--- + +# Camera sensors +{: .no_toc} + +## Table of contents +{: .no_toc .text-delta } + +1. TOC +{:toc} + +# CCD + +# CMOS + +# optics diff --git a/topics/2_passive/.gitkeep b/topics/2_passive/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/topics/2_passive/index.md b/topics/2_passive/index.md new file mode 100644 index 0000000..48d25fd --- /dev/null +++ b/topics/2_passive/index.md @@ -0,0 +1,17 @@ +--- +layout: default +title: Passive scanning +nav_order: 3 +mathjax: true +--- + +# Passive scanning +{: .no_toc} + +## Table of contents +{: .no_toc .text-delta } + +1. TOC +{:toc} + +# Multiview diff --git a/topics/3_active/.gitkeep b/topics/3_active/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/topics/3_active/index.md b/topics/3_active/index.md new file mode 100644 index 0000000..371c8ea --- /dev/null +++ b/topics/3_active/index.md @@ -0,0 +1,17 @@ +--- +layout: default +title: Active scanning +nav_order: 4 +mathjax: true +--- + +# Active scanning +{: .no_toc} + +## Table of contents +{: .no_toc .text-delta } + +1. TOC +{:toc} + +# Time-of-Flight -- GitLab