Archived research paper repository
Find a file
2024-06-29 02:50:46 -07:00
.github fix(ci): dependabot commit message 2024-03-05 09:59:38 -08:00
badges docs: update badges and add note about being written by a human, not AI 2024-02-19 11:04:29 -08:00
public feat: add pendulum lab paper (#55) 2024-03-08 17:11:29 -08:00
scripts chore: add deepcode ignore comment for IndirectCommandInjection in execSync call 2024-03-03 18:49:28 -08:00
src/app clean things up 2024-06-29 02:50:46 -07:00
.codeclimate.yml fix(security): potential arbitary code execution vulnerability (#36) 2024-03-01 12:56:51 -08:00
.eslintrc.json chore: fix all the errors 2024-02-17 14:54:14 -08:00
.gitattributes Add Git LFS 2024-02-16 16:36:54 +00:00
.gitignore Initial commit from Create Next App 2024-02-09 19:00:26 -08:00
.mdlrc ci: add markdown linting rules to configuration 2024-03-02 11:56:08 -08:00
.prettierignore Don't trust Codeium 2024-02-14 16:52:16 -08:00
.prettierrc chore: auto organize imports in client codebase 2024-02-19 11:07:48 -08:00
.stylelintrc.js fix(ci): configure stylelint 2024-02-29 19:13:57 -08:00
LICENSE finished styling for static portion 2024-02-10 00:43:22 -08:00
next.config.mjs chore: fix all the errors 2024-02-17 14:54:14 -08:00
package-lock.json ci(dependabot):(deps-dev): bump eslint from 8.56.0 to 8.57.0 2024-03-05 18:36:18 +00:00
package.json ci(dependabot):(deps): bump @tanstack/react-query from 5.20.2 to 5.25.0 2024-03-05 18:33:19 +00:00
pnpm-lock.yaml clean things up 2024-06-29 02:50:46 -07:00
postcss.config.js feat: add format script 2024-02-11 10:48:11 -08:00
README.md docs: add maintainability badge to readme 2024-02-29 19:13:57 -08:00
SECURITY.md docs(security): create security policy 2024-03-02 11:56:08 -08:00
tailwind.config.ts fix styling stuff 2024-02-09 23:44:00 -08:00
tsconfig.json Initial commit from Create Next App 2024-02-09 19:00:26 -08:00

eeXiv

arXiv just got better

GitButler Maintainability

Tor Vivaldi

Written by human, not AI


eeXiv can be accessed from its main site at https://eexiv.org or its mirror, which provides faster download speeds from local CDNs, at https://eexiv.vercel.app.

eeXiv (pronounced "EECS-iv"1) is Team 1280's locally-hosted curated research-sharing platform. It is maintained by the Team 1280 EECS ("Electrical Engineering and Computer Science") team, which is also the greatest contributor of its research papers. However, this repository is open for anyone—in Team 1280, in another FRC team, or as independent hobbyists—to contribute. eeXiv borrows from a pioneer in digital open access, arXiv.org, and hosts the most FRC-specific scholarly articles in numerous subject areas, curated by our strong community of volunteer moderators.


GitHub CopilotOpen AIGitHub CopilotOpen AI

AI generated code is strictly prohibited on this repository.


For Maintainers

The dummies guide to maintaining a Next.js project:

  • This is not HTML
    • Do not treat it as HTML, although it shares many common elements. Consult the documentation at least once before attempting anything for the first time, including common tasks.
  • General semantics
    • Use <Link> components when linking to a local path (like /status) and use a normal <a> component when linking to an external site (like github.com).
    • Try not to use global CSS classes when possible
      • You can see a globals.css file in the app directory. Add classes to this file sparingly, only when you actually have a common class that will be shared across many components (however, also consider using a Tailwind CSS extension class for this).
      • Try to use CSS modules for your components. You can access them from your modules by importing them (import styles from './path-to-css-module' and using them in your components with className={styles.class_name}). This will allow you to use the same class names in different parts of the website without any conflicts, as Post CSS will generate unique classes from the CSS modules.
  • Important: THIS IS NOT JAVASCRIPT! You CANNOT use global variables, window variables, etc, or even stateful variables that are meant to persist beyond a single refresh cycle (which can happen many times per second). Use the STATE for this (see the module we are using for state management).
  • Try to define modules for your components instead of putting everything in one file to avoid JANK.
  • You should put all static assets like images, icons, sound bytes, etc, in the public folder. These assets will be made available at the root directory /. For example, if eecs-wordmark.png is in public, then I can access it from an image element like so: <img src="/eecs-wordmark.png" />.
  • VERY IMPORTANT for performance and UI jank purposes:
    • As you may have noticed, we store all of our data in a super large TypeScript file at db/data.ts. This module contains exports for all of our 5 main "databases."
    • In order to access these databases from your components, there are two critical conventions to follow:
      • If your component is server side, then simply import the components like normal (e.g. import { documents } from '@/app/db/data') and use them in your code.
      • If your component is client side, then you should import the data using the utilities available in db/loaders.ts. The loaders library contains functions which return a Promise that resolve to the requested data. The function will load the very large objects in a separate thread via a Web Worker, which avoids blocking the main UI thread and freezing everything. You can then use the useSuspenseQuery hook from @tanstack/react-query to load this data in the background while triggering a React Suspense (if you don't set one up yourself, the default site wide loading bar will be used). This helps vastly reduce UI jank when trying to load the entire mega data object directly into memory.
    • Not sure whether you're in a client or server side component? If your component has the 'use client' directive at the top of its file, then it's a client side component. Otherwise, by default, it should be a server side component.
    • Footnote: why don't I have to use the utilities in db/loaders.ts to asynchronously load the data in server side components?
      • Next.js will automatically pre-render all server side components into static HTML, which means there will be no performance impact (and in fact performance gain at build time) to loading the entire objects into memory.

  1. Whichever idiot decided "arXiv" should be pronounced like "archive" can cope; eeXiv is not changing its name or pronunciation. ↩︎