├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ ├── aws-s3-upload.yml │ ├── nodejs.yml │ ├── release-s3.yml │ └── release.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docker ├── Dockerfile └── example_launch_linux.sh ├── docs ├── .gitignore ├── HedgehogScript │ ├── array.md │ ├── class.md │ ├── control-flow.md │ ├── function.md │ ├── hedgehog-script.md │ ├── hello-world.md │ ├── string.md │ └── variables.md ├── LICENSE ├── README.md ├── SUMMARY.md ├── book.json ├── contribute.md ├── overview.md └── tutorials │ ├── README.md │ ├── basic-syntax.md │ ├── data-preparation.md │ ├── data-visualization.md │ ├── gpu-acceleration.md │ ├── markdown.md │ ├── matrix-operations.md │ ├── module-management.md │ ├── share-code-via-url.md │ ├── symbolic-computation.md │ └── tex.md ├── hedgehog-docs ├── Hedgehog-Lab │ ├── Advanced Topics │ │ ├── Data Visualization.mdx │ │ ├── GPU acceleration.mdx │ │ ├── Markdown.mdx │ │ ├── Symbolic Computation.mdx │ │ ├── Table.mdx │ │ └── TeX.mdx │ ├── Browser Requirements.mdx │ ├── Execution Results.mdx │ ├── Features.mdx │ ├── Programming Language.mdx │ ├── Registering.mdx │ ├── Resources.mdx │ ├── The Environment.mdx │ ├── intro-hedgehog-lab.md │ └── package-management.mdx ├── Hedgehog-Script │ ├── 1. intro-hedgehog-script.md │ ├── 2. Expressions & Operators │ │ ├── Expressions & Operators.md │ │ ├── Null.mdx │ │ ├── Regular Expression.mdx │ │ ├── Variables.mdx │ │ └── this.mdx │ ├── 3. Statements and Declarations │ │ ├── Conditional Statements.mdx │ │ ├── Declarations.mdx │ │ ├── Exception Handling.mdx │ │ └── Loop Statements.mdx │ ├── 4. Built-In Objects │ │ ├── Array.mdx │ │ ├── Basic Types.mdx │ │ ├── Data Structures │ │ │ ├── Data Structures.draft │ │ │ └── Extra Useful Data Structures.draft │ │ ├── JSON.mdx │ │ ├── Maps.mdx │ │ ├── Mat.mdx │ │ ├── NaN.mdx │ │ ├── Object.mdx │ │ ├── Output.mdx │ │ ├── Promises.draft │ │ ├── Set.mdx │ │ └── String.mdx │ ├── 5. Matrix and Tensor │ │ ├── Mat Object.mdx___ │ │ ├── Matrix.mdx │ │ ├── Symbol.mdx_ │ │ └── Tensor.mdx │ ├── 6. Functions │ │ ├── Arguments Object.mdx │ │ ├── Arrow Functions.mdx │ │ ├── Functions.mdx │ │ ├── HTTP requests and responses.draft │ │ ├── Method definitions.mdx │ │ └── Parameters.mdx │ ├── 7. Classes │ │ ├── Classes.mdx │ │ ├── Constructors.mdx │ │ ├── Private Class Features.md │ │ ├── Public Class Fields.md │ │ └── Static.draft │ ├── 8. Errors │ │ └── Errors.draft │ └── 9. Reference │ │ ├── Built-in Objects.draft │ │ ├── OpsAndExpressions.draft │ │ ├── Reference.draft │ │ ├── SetExamples.draft │ │ └── StringExamples.draft ├── Modules │ └── Modules.md ├── Quickbook │ └── intro-quickbook.md ├── README.md ├── babel.config.js ├── blog │ ├── 2019-05-28-first-blog-post.md │ ├── 2019-05-29-long-blog-post.md │ ├── 2021-08-01-mdx-blog-post.mdx │ ├── 2021-08-26-welcome │ │ ├── docusaurus-plushie-banner.jpeg │ │ └── index.md │ └── authors.yml ├── contribution │ ├── hedgehog-website.md │ └── intro-contribution.md ├── developer │ ├── hedgehog-canvas-components.md │ ├── hedgehog-core-components.md │ └── hedgehog-lab-components.md ├── docs │ ├── intro.md │ ├── tutorial-basics │ │ ├── _category_.json │ │ ├── congratulations.md │ │ ├── create-a-blog-post.md │ │ ├── create-a-document.md │ │ ├── create-a-page.md │ │ ├── deploy-your-site.md │ │ └── markdown-features.mdx │ └── tutorial-extras │ │ ├── _category_.json │ │ ├── img │ │ ├── docsVersionDropdown.png │ │ └── localeDropdown.png │ │ ├── manage-docs-versions.md │ │ └── translate-your-site.md ├── docusaurus.config.js ├── math │ ├── Basic Operations │ │ ├── Dot Divide.draft │ │ ├── Dot Multiply.draft │ │ ├── bounds.mdx │ │ ├── ceil.draft │ │ ├── check_input.draft │ │ ├── factorial.mdx │ │ ├── floor.mdx │ │ ├── gcd.mdx │ │ └── sum.mdx │ ├── Data │ │ ├── any_missing.mdx │ │ ├── fill_missing.mdx │ │ ├── is_local_max.mdx │ │ ├── is_local_min.mdx │ │ ├── is_missing.mdx │ │ ├── missing.mdx │ │ ├── normalize.mdx │ │ ├── rm_missing.mdx │ │ └── smooth.mdx │ ├── Decompositions │ │ ├── QR.mdx │ │ ├── cholesky.mdx │ │ └── lup.mdx │ ├── Linear Equation Systems │ │ ├── lsolve.mdx │ │ ├── lusolve.mdx │ │ └── usolve.mdx │ ├── Misc │ │ ├── all.mdx │ │ ├── deep_copy.mdx │ │ └── test.mdx │ ├── Probability and Statistics │ │ ├── Quantiles.mdx │ │ ├── correcoef.mdx │ │ ├── cov.mdx │ │ ├── iqr.mdx │ │ ├── max.mdx │ │ ├── mean.mdx │ │ ├── median.mdx │ │ ├── min.mdx │ │ ├── mink.mdx │ │ ├── multinomial.mdx │ │ ├── percentile.mdx │ │ └── rms.mdx │ ├── Properties │ │ ├── det.mdx │ │ ├── is_diag.mdx │ │ ├── is_number.mdx │ │ ├── is_symmetric.mdx │ │ ├── is_tril.mdx │ │ ├── is_triu.mdx │ │ ├── ndim.mdx │ │ ├── shape.mdx │ │ └── trace.mdx │ ├── Transformations and creations │ │ ├── flatten.mdx │ │ ├── hankel.mdx │ │ ├── identity.mdx │ │ ├── inv.mdx │ │ ├── magic.mdx │ │ ├── pascal.mdx │ │ ├── reshape.mdx │ │ ├── resize.mdx │ │ ├── toeplitz.draft │ │ ├── transpose.mdx │ │ └── vander.mdx │ └── intro-math.md ├── package-lock.json ├── package.json ├── sidebars.js ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ ├── index.module.css │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ └── img │ │ ├── browser_requirements_webgl.jpg │ │ ├── community.png │ │ ├── docusaurus.png │ │ ├── environment.png │ │ ├── execresults.png │ │ ├── execresults2.png │ │ ├── favicon.ico │ │ ├── features.png │ │ ├── githubIcon.png │ │ ├── githubIcon_32x32.png │ │ ├── googleIcon.png │ │ ├── googleIcon_32x32.png │ │ ├── hedgehog_1f994 copy.png │ │ ├── hedgehog_1f994.ico │ │ ├── hedgehog_1f994.png │ │ ├── linkedinIcon.png │ │ ├── linkedinIcon_16x16.png │ │ ├── linkedinIcon_32x32.png │ │ ├── logo.svg │ │ ├── profilearea.png │ │ ├── promises.png │ │ ├── register3.png │ │ ├── registerHHL.png │ │ ├── resources.png │ │ ├── timeline2.png │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ ├── undraw_docusaurus_tree.svg │ │ ├── yourscript3.png │ │ ├── yourscripts.png │ │ └── yourscripts2.png └── yarn.lock ├── hedgehog-libs ├── README.md └── math │ ├── LICENSE │ ├── QR.hhs │ ├── QR_test.hhs │ ├── README.md │ ├── all.hhs │ ├── any_missing.hhs │ ├── any_missing_test.hhs │ ├── bounds.hhs │ ├── bounds_test.hhs │ ├── ceil.hhs │ ├── ceil_test.hhs │ ├── check_input.hhs │ ├── check_input_test.hhs │ ├── cholesky.hhs │ ├── cholesky_test.hhs │ ├── correcoef.hhs │ ├── correcoef_test.hhs │ ├── cov.hhs │ ├── cov_test.hhs │ ├── cubic_equation.hhs │ ├── cubic_equation_test │ ├── deep_copy.hhs │ ├── det.hhs │ ├── det_test.hhs │ ├── dot_divide.hhs │ ├── dot_divide_test.hhs │ ├── dot_multiply.hhs │ ├── dot_multiply_test.hhs │ ├── factorial.hhs │ ├── factorial_test.hhs │ ├── fillmissing.hhs │ ├── fillmissing_test.hhs │ ├── flatten.hhs │ ├── floor.hhs │ ├── floor_test.hhs │ ├── gcd.hhs │ ├── gcd_test.hhs │ ├── hankel.hhs │ ├── hankel_test.hhs │ ├── hedgehog-package.json │ ├── identity.hhs │ ├── identity_test.hhs │ ├── inv.hhs │ ├── iqr.hhs │ ├── iqr_test.hhs │ ├── is_diag.hhs │ ├── is_diag_test.hhs │ ├── is_local_max.hhs │ ├── is_local_max_test.hhs │ ├── is_local_min.hhs │ ├── is_local_min_test.hhs │ ├── is_missing.hhs │ ├── is_missing_test.hhs │ ├── is_number.hhs │ ├── is_symmetric.hhs │ ├── is_symmetric_test.hhs │ ├── is_tril.hhs │ ├── is_tril_test.hhs │ ├── is_triu.hhs │ ├── is_triu_test.hhs │ ├── lsolve.hhs │ ├── lsolve_test.hhs │ ├── lu.hhs │ ├── lu_test.hhs │ ├── lusolve.hhs │ ├── lusolve_test.hhs │ ├── magic.hhs │ ├── magic_test.hhs │ ├── max.hhs │ ├── mean.hhs │ ├── mean_test.hhs │ ├── median.hhs │ ├── median_test.hhs │ ├── min.hhs │ ├── mink.hhs │ ├── mink_test.hhs │ ├── missing.hhs │ ├── missing_test.hhs │ ├── multinomial.hhs │ ├── multinomial_test.hhs │ ├── ndim.hhs │ ├── ndim_test.hhs │ ├── normalize.hhs │ ├── normalize_test.hhs │ ├── package-lock.json │ ├── pascal.hhs │ ├── pascal_test.hhs │ ├── percentile.hhs │ ├── percentile_test.hhs │ ├── quadratic_equation.hhs │ ├── quadratic_equation_test.hhs │ ├── quantile.hhs │ ├── quantile_test.hhs │ ├── quartic_equation.hhs │ ├── quartic_equation_test.hhs │ ├── reshape.hhs │ ├── reshape_test.hhs │ ├── resize.hhs │ ├── resize_test.hhs │ ├── rmmissing.hhs │ ├── rmmissing_test.hhs │ ├── rms.hhs │ ├── rms_test.hhs │ ├── shape.hhs │ ├── smooth.hhs │ ├── smooth_test.hhs │ ├── standard_missing.hhs │ ├── standard_missing_test.hhs │ ├── sum.hhs │ ├── test.hhs │ ├── toeplitz.hhs │ ├── trace.hhs │ ├── trace_test.hhs │ ├── transpose.hhs │ ├── transpose_test.hhs │ ├── usolve.hhs │ ├── usolve_test.hhs │ ├── vander.hhs │ └── vander_test.hhs ├── hedgehog-package-manager ├── LICENSE ├── README.md └── hedgehog-packages.json ├── lerna.json ├── package.json ├── packages ├── hedgehog-canvas │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── Output │ │ │ ├── Output.tsx │ │ │ └── index.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ └── tsconfig.json ├── hedgehog-core │ ├── .eslintrc │ ├── package-lock.json │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── mathlib.ts │ │ │ ├── matrix.ts │ │ │ ├── symbolic.ts │ │ │ ├── table.ts │ │ │ └── tensor.ts │ │ ├── output │ │ │ └── output-item.ts │ │ ├── runtime │ │ │ ├── globalConfigVars.ts │ │ │ ├── index.ts │ │ │ ├── prelude.ts │ │ │ └── vars.ts │ │ ├── transpiler │ │ │ ├── CodeSnippetObject.ts │ │ │ ├── FetchURL │ │ │ │ ├── fetchApi.ts │ │ │ │ └── fetchURL.ts │ │ │ ├── GithubDependency │ │ │ │ └── githubDependency.ts │ │ │ ├── operator-overload.ts │ │ │ ├── preprocessor.ts │ │ │ ├── splitSourceCodeIntoJSandHHSSnippetList.ts │ │ │ └── transpiler-core.ts │ │ └── utilites │ │ │ ├── fetch-library.ts │ │ │ └── process-raw-inputs.ts │ ├── test │ │ ├── basicTest │ │ │ └── test.ts │ │ ├── js-embedded-test │ │ │ ├── complexTest.ts │ │ │ └── simpleTest.ts │ │ ├── matrixTest │ │ │ └── matrixOperatorTest.ts │ │ └── test.ts │ ├── tsconfig.json │ └── webpack.config.js ├── hedgehog-lab │ ├── .eslintrc │ ├── .gitignore │ ├── config-overrides.js │ ├── package.json │ ├── public │ │ ├── cat.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── readme.md │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── HedgehogLab.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ └── react-app-env.d.ts │ └── tsconfig.json └── hedgehog-website │ ├── .eslintrc │ ├── .gitignore │ ├── config-overrides.js │ ├── package.json │ ├── public │ ├── cat.png │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.css │ ├── App.tsx │ ├── compiler.ts │ ├── compiler.worker.ts │ ├── components │ │ ├── Auth │ │ │ ├── Account │ │ │ │ └── AccountMenu.tsx │ │ │ ├── Action │ │ │ │ └── AuthAction.tsx │ │ │ └── Dialog │ │ │ │ └── AuthDialog.tsx │ │ ├── Base │ │ │ ├── Editor │ │ │ │ ├── Editor.tsx │ │ │ │ └── Loading.tsx │ │ │ ├── Input │ │ │ │ ├── BaseOutlinedInput │ │ │ │ │ └── BaseOutlinedInput.tsx │ │ │ │ ├── Copy │ │ │ │ │ └── CopyInput.tsx │ │ │ │ ├── Description │ │ │ │ │ └── UserDescriptionInput.tsx │ │ │ │ ├── Email │ │ │ │ │ └── EmailInput.tsx │ │ │ │ ├── Password │ │ │ │ │ └── PasswordInput.tsx │ │ │ │ ├── Snippet │ │ │ │ │ ├── Description │ │ │ │ │ │ └── SnippetDescriptionInput.tsx │ │ │ │ │ └── Name │ │ │ │ │ │ └── SnippetNameInput.tsx │ │ │ │ └── UserName │ │ │ │ │ └── UserNameInput.tsx │ │ │ ├── Popup │ │ │ │ ├── BasePopupButton.tsx │ │ │ │ └── BasePopupText.tsx │ │ │ └── Theme │ │ │ │ └── SwitchThemeButton.tsx │ │ ├── Layout │ │ │ ├── ContainerLayout.tsx │ │ │ ├── Layout.tsx │ │ │ ├── ResizableColumn │ │ │ │ └── ResizableColumn.tsx │ │ │ ├── SideBar │ │ │ │ ├── SideBar.tsx │ │ │ │ ├── _sideList.tsx │ │ │ │ └── _sideListItem.tsx │ │ │ ├── SnippetsLayout │ │ │ │ └── SnippetsLayout.tsx │ │ │ └── TopBar │ │ │ │ ├── DevModeAlert.tsx │ │ │ │ ├── RightButton.tsx │ │ │ │ ├── TopBar.tsx │ │ │ │ ├── _communityButtons.tsx │ │ │ │ ├── _compilerButton.tsx │ │ │ │ ├── _fullScreenButton.tsx │ │ │ │ └── _gitHubButton.tsx │ │ ├── Meta │ │ │ ├── Meta.tsx │ │ │ └── types.ts │ │ ├── Results │ │ │ ├── OutputItemCompoments │ │ │ │ └── TableComponent.tsx │ │ │ └── Results.tsx │ │ ├── Share │ │ │ ├── ShareDialog.tsx │ │ │ └── SharePopup.tsx │ │ ├── Snippet │ │ │ ├── CreateSnippetDialog.tsx │ │ │ ├── Delete │ │ │ │ ├── DeleteAlert.tsx │ │ │ │ └── DeletePopup.tsx │ │ │ ├── List │ │ │ │ └── SnippetList.tsx │ │ │ ├── Rename │ │ │ │ └── RenameDialog.tsx │ │ │ ├── Save │ │ │ │ ├── SaveDialog.tsx │ │ │ │ └── SaveState.tsx │ │ │ ├── Search │ │ │ │ └── SearchSnippet.tsx │ │ │ ├── Snippet.tsx │ │ │ └── UpdatedSnippet.tsx │ │ ├── YourCode │ │ │ ├── Config │ │ │ │ └── SideBar.ts │ │ │ ├── Header │ │ │ │ └── YourCodeHeader.tsx │ │ │ └── YourCode.tsx │ │ └── styled.ts │ ├── config.tsx │ ├── hooks │ │ ├── useApp.tsx │ │ ├── useAuth.tsx │ │ ├── useCompilier.ts │ │ ├── useCurrentRoute.ts │ │ ├── useEditor.ts │ │ ├── useEditorMeta.ts │ │ ├── useSnippet.ts │ │ └── useSystemTheme.ts │ ├── index.css │ ├── index.tsx │ ├── interfaces │ │ ├── IFormInput.ts │ │ └── ISnippetName.ts │ ├── logo.svg │ ├── models │ │ ├── account │ │ │ └── accountModal.ts │ │ ├── forget │ │ │ └── forgetModal.ts │ │ ├── login │ │ │ └── loginModal.ts │ │ ├── sign │ │ │ └── signModel.ts │ │ └── snippet │ │ │ └── renameModal.ts │ ├── network │ │ ├── fetcher.ts │ │ └── http.ts │ ├── output.worker.ts │ ├── pages │ │ ├── Auth │ │ │ ├── Auth.tsx │ │ │ ├── Forget.tsx │ │ │ ├── Login.tsx │ │ │ └── Sign.tsx │ │ ├── Draft │ │ │ └── Draft.tsx │ │ ├── Email │ │ │ └── EmailVerification.tsx │ │ ├── Example │ │ │ └── Example.tsx │ │ ├── Explore │ │ │ └── Explore.tsx │ │ ├── Home │ │ │ ├── Home.tsx │ │ │ ├── _community.tsx │ │ │ ├── _draft.tsx │ │ │ ├── _gettingStarted.tsx │ │ │ ├── _gridItem.tsx │ │ │ └── _title.tsx │ │ ├── Settings │ │ │ └── Account.tsx │ │ ├── Snippets │ │ │ ├── Editor.tsx │ │ │ └── Snippets.tsx │ │ └── Timeline │ │ │ └── Timeline.tsx │ ├── react-app-env.d.ts │ ├── route │ │ └── route.tsx │ ├── service-worker.ts │ ├── serviceWorkerRegistration.ts │ ├── states │ │ ├── RCompilerStates.ts │ │ ├── RLayoutStates.ts │ │ ├── RSnippetStates.ts │ │ ├── RUserStates.ts │ │ └── RYourCodeStates.ts │ ├── themes │ │ ├── RThemeStates.ts │ │ ├── labTheme.ts │ │ ├── monacoTheme.ts │ │ └── theme.tsx │ ├── tutorials.ts │ └── utils │ │ ├── deepmerge.ts │ │ ├── ga4.js │ │ ├── kFormatter.ts │ │ └── toCapitalize.ts │ └── tsconfig.json ├── patches └── gpu.js+2.11.4.patch ├── scripts └── publish-to-github.sh ├── tsconfig.json ├── vercel.json └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/aws-s3-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/.github/workflows/aws-s3-upload.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/release-s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/.github/workflows/release-s3.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/example_launch_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docker/example_launch_linux.sh -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/HedgehogScript/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/HedgehogScript/array.md -------------------------------------------------------------------------------- /docs/HedgehogScript/class.md: -------------------------------------------------------------------------------- 1 | # Class -------------------------------------------------------------------------------- /docs/HedgehogScript/control-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/HedgehogScript/control-flow.md -------------------------------------------------------------------------------- /docs/HedgehogScript/function.md: -------------------------------------------------------------------------------- 1 | # Function -------------------------------------------------------------------------------- /docs/HedgehogScript/hedgehog-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/HedgehogScript/hedgehog-script.md -------------------------------------------------------------------------------- /docs/HedgehogScript/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/HedgehogScript/hello-world.md -------------------------------------------------------------------------------- /docs/HedgehogScript/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/HedgehogScript/string.md -------------------------------------------------------------------------------- /docs/HedgehogScript/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/HedgehogScript/variables.md -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/book.json -------------------------------------------------------------------------------- /docs/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/contribute.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/tutorials/README.md: -------------------------------------------------------------------------------- 1 | # Tutorials 2 | 3 | -------------------------------------------------------------------------------- /docs/tutorials/basic-syntax.md: -------------------------------------------------------------------------------- 1 | # Basic Syntax 2 | 3 | -------------------------------------------------------------------------------- /docs/tutorials/data-preparation.md: -------------------------------------------------------------------------------- 1 | # Data preparation 2 | 3 | -------------------------------------------------------------------------------- /docs/tutorials/data-visualization.md: -------------------------------------------------------------------------------- 1 | # Data Visualization 2 | 3 | -------------------------------------------------------------------------------- /docs/tutorials/gpu-acceleration.md: -------------------------------------------------------------------------------- 1 | # GPU Acceleration 2 | 3 | -------------------------------------------------------------------------------- /docs/tutorials/markdown.md: -------------------------------------------------------------------------------- 1 | # Markdown 2 | 3 | -------------------------------------------------------------------------------- /docs/tutorials/matrix-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/docs/tutorials/matrix-operations.md -------------------------------------------------------------------------------- /docs/tutorials/module-management.md: -------------------------------------------------------------------------------- 1 | # Module Management 2 | 3 | -------------------------------------------------------------------------------- /docs/tutorials/share-code-via-url.md: -------------------------------------------------------------------------------- 1 | # Share code via URL 2 | 3 | -------------------------------------------------------------------------------- /docs/tutorials/symbolic-computation.md: -------------------------------------------------------------------------------- 1 | # Symbolic Computation 2 | 3 | -------------------------------------------------------------------------------- /docs/tutorials/tex.md: -------------------------------------------------------------------------------- 1 | # TeX 2 | 3 | -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Advanced Topics/Data Visualization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Advanced Topics/Data Visualization.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Advanced Topics/GPU acceleration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Advanced Topics/GPU acceleration.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Advanced Topics/Markdown.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Advanced Topics/Markdown.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Advanced Topics/Symbolic Computation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Advanced Topics/Symbolic Computation.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Advanced Topics/Table.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Advanced Topics/Table.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Advanced Topics/TeX.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Advanced Topics/TeX.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Browser Requirements.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Browser Requirements.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Execution Results.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Execution Results.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Features.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Features.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Programming Language.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Programming Language.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Registering.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Registering.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/Resources.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/Resources.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/The Environment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/The Environment.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/intro-hedgehog-lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/intro-hedgehog-lab.md -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Lab/package-management.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Lab/package-management.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/1. intro-hedgehog-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/1. intro-hedgehog-script.md -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/2. Expressions & Operators/Expressions & Operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/2. Expressions & Operators/Expressions & Operators.md -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/2. Expressions & Operators/Null.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/2. Expressions & Operators/Null.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/2. Expressions & Operators/Regular Expression.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/2. Expressions & Operators/Regular Expression.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/2. Expressions & Operators/Variables.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/2. Expressions & Operators/Variables.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/2. Expressions & Operators/this.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/2. Expressions & Operators/this.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/3. Statements and Declarations/Conditional Statements.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/3. Statements and Declarations/Conditional Statements.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/3. Statements and Declarations/Declarations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/3. Statements and Declarations/Declarations.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/3. Statements and Declarations/Exception Handling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/3. Statements and Declarations/Exception Handling.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/3. Statements and Declarations/Loop Statements.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/3. Statements and Declarations/Loop Statements.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Array.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Array.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Basic Types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Basic Types.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Data Structures/Data Structures.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Data Structures/Data Structures.draft -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Data Structures/Extra Useful Data Structures.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Data Structures/Extra Useful Data Structures.draft -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/JSON.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/JSON.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Maps.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Maps.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Mat.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Mat.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/NaN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/NaN.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Object.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Object.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Output.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Output.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Promises.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Promises.draft -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Set.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/Set.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/4. Built-In Objects/String.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/4. Built-In Objects/String.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/5. Matrix and Tensor/Mat Object.mdx___: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 3 3 | --- -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/5. Matrix and Tensor/Matrix.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/5. Matrix and Tensor/Matrix.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/5. Matrix and Tensor/Symbol.mdx_: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 3 3 | --- 4 | 5 | # Symbol -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/5. Matrix and Tensor/Tensor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/5. Matrix and Tensor/Tensor.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/6. Functions/Arguments Object.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/6. Functions/Arguments Object.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/6. Functions/Arrow Functions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/6. Functions/Arrow Functions.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/6. Functions/Functions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/6. Functions/Functions.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/6. Functions/HTTP requests and responses.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/6. Functions/HTTP requests and responses.draft -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/6. Functions/Method definitions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/6. Functions/Method definitions.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/6. Functions/Parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/6. Functions/Parameters.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/7. Classes/Classes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/7. Classes/Classes.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/7. Classes/Constructors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/7. Classes/Constructors.mdx -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/7. Classes/Private Class Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/7. Classes/Private Class Features.md -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/7. Classes/Public Class Fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/7. Classes/Public Class Fields.md -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/7. Classes/Static.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/7. Classes/Static.draft -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/8. Errors/Errors.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/8. Errors/Errors.draft -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/9. Reference/Built-in Objects.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/9. Reference/Built-in Objects.draft -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/9. Reference/OpsAndExpressions.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/9. Reference/OpsAndExpressions.draft -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/9. Reference/Reference.draft: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | Under construction -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/9. Reference/SetExamples.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Hedgehog-Script/9. Reference/SetExamples.draft -------------------------------------------------------------------------------- /hedgehog-docs/Hedgehog-Script/9. Reference/StringExamples.draft: -------------------------------------------------------------------------------- 1 | string example methods with subchapters -------------------------------------------------------------------------------- /hedgehog-docs/Modules/Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Modules/Modules.md -------------------------------------------------------------------------------- /hedgehog-docs/Quickbook/intro-quickbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/Quickbook/intro-quickbook.md -------------------------------------------------------------------------------- /hedgehog-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/README.md -------------------------------------------------------------------------------- /hedgehog-docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/babel.config.js -------------------------------------------------------------------------------- /hedgehog-docs/blog/2019-05-28-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/blog/2019-05-28-first-blog-post.md -------------------------------------------------------------------------------- /hedgehog-docs/blog/2019-05-29-long-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/blog/2019-05-29-long-blog-post.md -------------------------------------------------------------------------------- /hedgehog-docs/blog/2021-08-01-mdx-blog-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/blog/2021-08-01-mdx-blog-post.mdx -------------------------------------------------------------------------------- /hedgehog-docs/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg -------------------------------------------------------------------------------- /hedgehog-docs/blog/2021-08-26-welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/blog/2021-08-26-welcome/index.md -------------------------------------------------------------------------------- /hedgehog-docs/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/blog/authors.yml -------------------------------------------------------------------------------- /hedgehog-docs/contribution/hedgehog-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/contribution/hedgehog-website.md -------------------------------------------------------------------------------- /hedgehog-docs/contribution/intro-contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/contribution/intro-contribution.md -------------------------------------------------------------------------------- /hedgehog-docs/developer/hedgehog-canvas-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/developer/hedgehog-canvas-components.md -------------------------------------------------------------------------------- /hedgehog-docs/developer/hedgehog-core-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/developer/hedgehog-core-components.md -------------------------------------------------------------------------------- /hedgehog-docs/developer/hedgehog-lab-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/developer/hedgehog-lab-components.md -------------------------------------------------------------------------------- /hedgehog-docs/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/intro.md -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-basics/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-basics/_category_.json -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-basics/congratulations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-basics/congratulations.md -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-basics/create-a-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-basics/create-a-blog-post.md -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-basics/create-a-document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-basics/create-a-document.md -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-basics/create-a-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-basics/create-a-page.md -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-basics/deploy-your-site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-basics/deploy-your-site.md -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-basics/markdown-features.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-basics/markdown-features.mdx -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-extras/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-extras/_category_.json -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-extras/img/docsVersionDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-extras/img/docsVersionDropdown.png -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-extras/img/localeDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-extras/img/localeDropdown.png -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-extras/manage-docs-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-extras/manage-docs-versions.md -------------------------------------------------------------------------------- /hedgehog-docs/docs/tutorial-extras/translate-your-site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docs/tutorial-extras/translate-your-site.md -------------------------------------------------------------------------------- /hedgehog-docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/docusaurus.config.js -------------------------------------------------------------------------------- /hedgehog-docs/math/Basic Operations/Dot Divide.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Basic Operations/Dot Divide.draft -------------------------------------------------------------------------------- /hedgehog-docs/math/Basic Operations/Dot Multiply.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Basic Operations/Dot Multiply.draft -------------------------------------------------------------------------------- /hedgehog-docs/math/Basic Operations/bounds.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Basic Operations/bounds.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Basic Operations/ceil.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Basic Operations/ceil.draft -------------------------------------------------------------------------------- /hedgehog-docs/math/Basic Operations/check_input.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Basic Operations/check_input.draft -------------------------------------------------------------------------------- /hedgehog-docs/math/Basic Operations/factorial.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Basic Operations/factorial.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Basic Operations/floor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Basic Operations/floor.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Basic Operations/gcd.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Basic Operations/gcd.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Basic Operations/sum.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Basic Operations/sum.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Data/any_missing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Data/any_missing.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Data/fill_missing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Data/fill_missing.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Data/is_local_max.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Data/is_local_max.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Data/is_local_min.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Data/is_local_min.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Data/is_missing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Data/is_missing.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Data/missing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Data/missing.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Data/normalize.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Data/normalize.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Data/rm_missing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Data/rm_missing.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Data/smooth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Data/smooth.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Decompositions/QR.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Decompositions/QR.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Decompositions/cholesky.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Decompositions/cholesky.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Decompositions/lup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Decompositions/lup.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Linear Equation Systems/lsolve.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Linear Equation Systems/lsolve.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Linear Equation Systems/lusolve.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Linear Equation Systems/lusolve.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Linear Equation Systems/usolve.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Linear Equation Systems/usolve.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Misc/all.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Misc/all.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Misc/deep_copy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Misc/deep_copy.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Misc/test.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Misc/test.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/Quantiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/Quantiles.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/correcoef.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/correcoef.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/cov.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/cov.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/iqr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/iqr.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/max.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/max.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/mean.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/mean.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/median.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/median.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/min.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/min.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/mink.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/mink.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/multinomial.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/multinomial.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/percentile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/percentile.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Probability and Statistics/rms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Probability and Statistics/rms.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Properties/det.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Properties/det.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Properties/is_diag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Properties/is_diag.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Properties/is_number.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Properties/is_number.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Properties/is_symmetric.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Properties/is_symmetric.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Properties/is_tril.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Properties/is_tril.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Properties/is_triu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Properties/is_triu.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Properties/ndim.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Properties/ndim.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Properties/shape.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Properties/shape.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Properties/trace.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Properties/trace.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Transformations and creations/flatten.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Transformations and creations/flatten.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Transformations and creations/hankel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Transformations and creations/hankel.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Transformations and creations/identity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Transformations and creations/identity.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Transformations and creations/inv.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Transformations and creations/inv.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Transformations and creations/magic.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Transformations and creations/magic.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Transformations and creations/pascal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Transformations and creations/pascal.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Transformations and creations/reshape.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Transformations and creations/reshape.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Transformations and creations/resize.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Transformations and creations/resize.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Transformations and creations/toeplitz.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Transformations and creations/toeplitz.draft -------------------------------------------------------------------------------- /hedgehog-docs/math/Transformations and creations/transpose.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Transformations and creations/transpose.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/Transformations and creations/vander.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/Transformations and creations/vander.mdx -------------------------------------------------------------------------------- /hedgehog-docs/math/intro-math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/math/intro-math.md -------------------------------------------------------------------------------- /hedgehog-docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/package-lock.json -------------------------------------------------------------------------------- /hedgehog-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/package.json -------------------------------------------------------------------------------- /hedgehog-docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/sidebars.js -------------------------------------------------------------------------------- /hedgehog-docs/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /hedgehog-docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /hedgehog-docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/src/css/custom.css -------------------------------------------------------------------------------- /hedgehog-docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/src/pages/index.js -------------------------------------------------------------------------------- /hedgehog-docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/src/pages/index.module.css -------------------------------------------------------------------------------- /hedgehog-docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /hedgehog-docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hedgehog-docs/static/img/browser_requirements_webgl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/browser_requirements_webgl.jpg -------------------------------------------------------------------------------- /hedgehog-docs/static/img/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/community.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/environment.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/execresults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/execresults.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/execresults2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/execresults2.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/favicon.ico -------------------------------------------------------------------------------- /hedgehog-docs/static/img/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/features.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/githubIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/githubIcon.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/githubIcon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/githubIcon_32x32.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/googleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/googleIcon.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/googleIcon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/googleIcon_32x32.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/hedgehog_1f994 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/hedgehog_1f994 copy.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/hedgehog_1f994.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/hedgehog_1f994.ico -------------------------------------------------------------------------------- /hedgehog-docs/static/img/hedgehog_1f994.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/hedgehog_1f994.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/linkedinIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/linkedinIcon.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/linkedinIcon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/linkedinIcon_16x16.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/linkedinIcon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/linkedinIcon_32x32.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/logo.svg -------------------------------------------------------------------------------- /hedgehog-docs/static/img/profilearea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/profilearea.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/promises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/promises.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/register3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/register3.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/registerHHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/registerHHL.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/resources.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/timeline2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/timeline2.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /hedgehog-docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /hedgehog-docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /hedgehog-docs/static/img/yourscript3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/yourscript3.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/yourscripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/yourscripts.png -------------------------------------------------------------------------------- /hedgehog-docs/static/img/yourscripts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/static/img/yourscripts2.png -------------------------------------------------------------------------------- /hedgehog-docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-docs/yarn.lock -------------------------------------------------------------------------------- /hedgehog-libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/README.md -------------------------------------------------------------------------------- /hedgehog-libs/math/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/LICENSE -------------------------------------------------------------------------------- /hedgehog-libs/math/QR.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/QR.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/QR_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/QR_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/README.md -------------------------------------------------------------------------------- /hedgehog-libs/math/all.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/all.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/any_missing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/any_missing.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/any_missing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/any_missing_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/bounds.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/bounds.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/bounds_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/bounds_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/ceil.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/ceil.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/ceil_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/ceil_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/check_input.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/check_input.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/check_input_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/check_input_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/cholesky.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/cholesky.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/cholesky_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/cholesky_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/correcoef.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/correcoef.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/correcoef_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/correcoef_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/cov.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/cov.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/cov_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/cov_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/cubic_equation.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/cubic_equation.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/cubic_equation_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/cubic_equation_test -------------------------------------------------------------------------------- /hedgehog-libs/math/deep_copy.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/deep_copy.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/det.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/det.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/det_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/det_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/dot_divide.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/dot_divide.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/dot_divide_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/dot_divide_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/dot_multiply.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/dot_multiply.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/dot_multiply_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/dot_multiply_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/factorial.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/factorial.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/factorial_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/factorial_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/fillmissing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/fillmissing.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/fillmissing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/fillmissing_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/flatten.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/flatten.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/floor.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/floor.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/floor_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/floor_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/gcd.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/gcd.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/gcd_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/gcd_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/hankel.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/hankel.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/hankel_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/hankel_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/hedgehog-package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"math" 3 | } 4 | -------------------------------------------------------------------------------- /hedgehog-libs/math/identity.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/identity.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/identity_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/identity_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/inv.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/inv.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/iqr.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/iqr.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/iqr_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/iqr_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_diag.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_diag.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_diag_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_diag_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_local_max.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_local_max.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_local_max_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_local_max_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_local_min.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_local_min.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_local_min_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_local_min_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_missing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_missing.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_missing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_missing_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_number.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_number.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_symmetric.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_symmetric.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_symmetric_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_symmetric_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_tril.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_tril.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_tril_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_tril_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_triu.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_triu.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/is_triu_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/is_triu_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/lsolve.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/lsolve.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/lsolve_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/lsolve_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/lu.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/lu.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/lu_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/lu_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/lusolve.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/lusolve.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/lusolve_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/lusolve_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/magic.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/magic.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/magic_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/magic_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/max.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/max.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/mean.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/mean.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/mean_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/mean_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/median.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/median.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/median_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/median_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/min.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/min.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/mink.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/mink.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/mink_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/mink_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/missing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/missing.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/missing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/missing_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/multinomial.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/multinomial.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/multinomial_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/multinomial_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/ndim.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/ndim.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/ndim_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/ndim_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/normalize.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/normalize.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/normalize_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/normalize_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/package-lock.json -------------------------------------------------------------------------------- /hedgehog-libs/math/pascal.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/pascal.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/pascal_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/pascal_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/percentile.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/percentile.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/percentile_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/percentile_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/quadratic_equation.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/quadratic_equation.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/quadratic_equation_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/quadratic_equation_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/quantile.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/quantile.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/quantile_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/quantile_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/quartic_equation.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/quartic_equation.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/quartic_equation_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/quartic_equation_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/reshape.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/reshape.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/reshape_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/reshape_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/resize.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/resize.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/resize_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/resize_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/rmmissing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/rmmissing.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/rmmissing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/rmmissing_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/rms.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/rms.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/rms_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/rms_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/shape.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/shape.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/smooth.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/smooth.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/smooth_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/smooth_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/standard_missing.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/standard_missing.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/standard_missing_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/standard_missing_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/sum.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/sum.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/toeplitz.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/toeplitz.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/trace.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/trace.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/trace_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/trace_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/transpose.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/transpose.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/transpose_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/transpose_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/usolve.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/usolve.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/usolve_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/usolve_test.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/vander.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/vander.hhs -------------------------------------------------------------------------------- /hedgehog-libs/math/vander_test.hhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-libs/math/vander_test.hhs -------------------------------------------------------------------------------- /hedgehog-package-manager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-package-manager/LICENSE -------------------------------------------------------------------------------- /hedgehog-package-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-package-manager/README.md -------------------------------------------------------------------------------- /hedgehog-package-manager/hedgehog-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/hedgehog-package-manager/hedgehog-packages.json -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/package.json -------------------------------------------------------------------------------- /packages/hedgehog-canvas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/.gitignore -------------------------------------------------------------------------------- /packages/hedgehog-canvas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/README.md -------------------------------------------------------------------------------- /packages/hedgehog-canvas/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/package.json -------------------------------------------------------------------------------- /packages/hedgehog-canvas/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/public/favicon.ico -------------------------------------------------------------------------------- /packages/hedgehog-canvas/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/public/index.html -------------------------------------------------------------------------------- /packages/hedgehog-canvas/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/public/logo192.png -------------------------------------------------------------------------------- /packages/hedgehog-canvas/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/public/logo512.png -------------------------------------------------------------------------------- /packages/hedgehog-canvas/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/public/manifest.json -------------------------------------------------------------------------------- /packages/hedgehog-canvas/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/public/robots.txt -------------------------------------------------------------------------------- /packages/hedgehog-canvas/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/src/App.css -------------------------------------------------------------------------------- /packages/hedgehog-canvas/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/src/App.test.tsx -------------------------------------------------------------------------------- /packages/hedgehog-canvas/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/src/App.tsx -------------------------------------------------------------------------------- /packages/hedgehog-canvas/src/Output/Output.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/src/Output/Output.tsx -------------------------------------------------------------------------------- /packages/hedgehog-canvas/src/Output/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/src/Output/index.ts -------------------------------------------------------------------------------- /packages/hedgehog-canvas/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/src/index.css -------------------------------------------------------------------------------- /packages/hedgehog-canvas/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/src/index.tsx -------------------------------------------------------------------------------- /packages/hedgehog-canvas/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/src/logo.svg -------------------------------------------------------------------------------- /packages/hedgehog-canvas/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/hedgehog-canvas/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/src/reportWebVitals.ts -------------------------------------------------------------------------------- /packages/hedgehog-canvas/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/src/setupTests.ts -------------------------------------------------------------------------------- /packages/hedgehog-canvas/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-canvas/tsconfig.json -------------------------------------------------------------------------------- /packages/hedgehog-core/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/.eslintrc -------------------------------------------------------------------------------- /packages/hedgehog-core/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/package-lock.json -------------------------------------------------------------------------------- /packages/hedgehog-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/package.json -------------------------------------------------------------------------------- /packages/hedgehog-core/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/readme.md -------------------------------------------------------------------------------- /packages/hedgehog-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/index.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/lib/mathlib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/lib/mathlib.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/lib/matrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/lib/matrix.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/lib/symbolic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/lib/symbolic.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/lib/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/lib/table.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/lib/tensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/lib/tensor.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/output/output-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/output/output-item.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/runtime/globalConfigVars.ts: -------------------------------------------------------------------------------- 1 | // @ts-ignore 2 | export const DEFAULT_DIGITS = 5; 3 | -------------------------------------------------------------------------------- /packages/hedgehog-core/src/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/runtime/index.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/runtime/prelude.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/runtime/prelude.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/runtime/vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/runtime/vars.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/transpiler/CodeSnippetObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/transpiler/CodeSnippetObject.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/transpiler/FetchURL/fetchApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/transpiler/FetchURL/fetchApi.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/transpiler/FetchURL/fetchURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/transpiler/FetchURL/fetchURL.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/transpiler/GithubDependency/githubDependency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/transpiler/GithubDependency/githubDependency.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/transpiler/operator-overload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/transpiler/operator-overload.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/transpiler/preprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/transpiler/preprocessor.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/transpiler/splitSourceCodeIntoJSandHHSSnippetList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/transpiler/splitSourceCodeIntoJSandHHSSnippetList.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/transpiler/transpiler-core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/transpiler/transpiler-core.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/utilites/fetch-library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/utilites/fetch-library.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/src/utilites/process-raw-inputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/src/utilites/process-raw-inputs.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/test/basicTest/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/test/basicTest/test.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/test/js-embedded-test/complexTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/test/js-embedded-test/complexTest.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/test/js-embedded-test/simpleTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/test/js-embedded-test/simpleTest.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/test/matrixTest/matrixOperatorTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/test/matrixTest/matrixOperatorTest.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/test/test.ts -------------------------------------------------------------------------------- /packages/hedgehog-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/tsconfig.json -------------------------------------------------------------------------------- /packages/hedgehog-core/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-core/webpack.config.js -------------------------------------------------------------------------------- /packages/hedgehog-lab/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/.eslintrc -------------------------------------------------------------------------------- /packages/hedgehog-lab/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/.gitignore -------------------------------------------------------------------------------- /packages/hedgehog-lab/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/config-overrides.js -------------------------------------------------------------------------------- /packages/hedgehog-lab/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/package.json -------------------------------------------------------------------------------- /packages/hedgehog-lab/public/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/public/cat.png -------------------------------------------------------------------------------- /packages/hedgehog-lab/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/public/favicon.ico -------------------------------------------------------------------------------- /packages/hedgehog-lab/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/public/index.html -------------------------------------------------------------------------------- /packages/hedgehog-lab/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/public/logo192.png -------------------------------------------------------------------------------- /packages/hedgehog-lab/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/public/logo512.png -------------------------------------------------------------------------------- /packages/hedgehog-lab/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/public/manifest.json -------------------------------------------------------------------------------- /packages/hedgehog-lab/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/public/robots.txt -------------------------------------------------------------------------------- /packages/hedgehog-lab/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/readme.md -------------------------------------------------------------------------------- /packages/hedgehog-lab/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/src/App.css -------------------------------------------------------------------------------- /packages/hedgehog-lab/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/src/App.tsx -------------------------------------------------------------------------------- /packages/hedgehog-lab/src/HedgehogLab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/src/HedgehogLab.tsx -------------------------------------------------------------------------------- /packages/hedgehog-lab/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/src/index.css -------------------------------------------------------------------------------- /packages/hedgehog-lab/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/src/index.tsx -------------------------------------------------------------------------------- /packages/hedgehog-lab/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/src/react-app-env.d.ts -------------------------------------------------------------------------------- /packages/hedgehog-lab/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-lab/tsconfig.json -------------------------------------------------------------------------------- /packages/hedgehog-website/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/.eslintrc -------------------------------------------------------------------------------- /packages/hedgehog-website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/.gitignore -------------------------------------------------------------------------------- /packages/hedgehog-website/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/config-overrides.js -------------------------------------------------------------------------------- /packages/hedgehog-website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/package.json -------------------------------------------------------------------------------- /packages/hedgehog-website/public/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/public/cat.png -------------------------------------------------------------------------------- /packages/hedgehog-website/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/public/favicon.ico -------------------------------------------------------------------------------- /packages/hedgehog-website/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/public/index.html -------------------------------------------------------------------------------- /packages/hedgehog-website/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/public/logo192.png -------------------------------------------------------------------------------- /packages/hedgehog-website/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/public/logo512.png -------------------------------------------------------------------------------- /packages/hedgehog-website/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/public/manifest.json -------------------------------------------------------------------------------- /packages/hedgehog-website/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/public/robots.txt -------------------------------------------------------------------------------- /packages/hedgehog-website/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/App.css -------------------------------------------------------------------------------- /packages/hedgehog-website/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/App.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/compiler.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/compiler.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/compiler.worker.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Auth/Account/AccountMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Auth/Account/AccountMenu.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Auth/Action/AuthAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Auth/Action/AuthAction.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Auth/Dialog/AuthDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Auth/Dialog/AuthDialog.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Editor/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Editor/Editor.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Editor/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Editor/Loading.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Input/BaseOutlinedInput/BaseOutlinedInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Input/BaseOutlinedInput/BaseOutlinedInput.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Input/Copy/CopyInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Input/Copy/CopyInput.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Input/Description/UserDescriptionInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Input/Description/UserDescriptionInput.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Input/Email/EmailInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Input/Email/EmailInput.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Input/Password/PasswordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Input/Password/PasswordInput.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Input/Snippet/Description/SnippetDescriptionInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Input/Snippet/Description/SnippetDescriptionInput.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Input/Snippet/Name/SnippetNameInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Input/Snippet/Name/SnippetNameInput.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Input/UserName/UserNameInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Input/UserName/UserNameInput.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Popup/BasePopupButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Popup/BasePopupButton.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Popup/BasePopupText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Popup/BasePopupText.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Base/Theme/SwitchThemeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Base/Theme/SwitchThemeButton.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/ContainerLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/ContainerLayout.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/Layout.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/ResizableColumn/ResizableColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/ResizableColumn/ResizableColumn.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/SideBar/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/SideBar/SideBar.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/SideBar/_sideList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/SideBar/_sideList.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/SideBar/_sideListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/SideBar/_sideListItem.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/SnippetsLayout/SnippetsLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/SnippetsLayout/SnippetsLayout.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/TopBar/DevModeAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/TopBar/DevModeAlert.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/TopBar/RightButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/TopBar/RightButton.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/TopBar/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/TopBar/TopBar.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/TopBar/_communityButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/TopBar/_communityButtons.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/TopBar/_compilerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/TopBar/_compilerButton.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/TopBar/_fullScreenButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/TopBar/_fullScreenButton.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Layout/TopBar/_gitHubButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Layout/TopBar/_gitHubButton.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Meta/Meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Meta/Meta.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Meta/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Meta/types.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Results/OutputItemCompoments/TableComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Results/OutputItemCompoments/TableComponent.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Results/Results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Results/Results.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Share/ShareDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Share/ShareDialog.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Share/SharePopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Share/SharePopup.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Snippet/CreateSnippetDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Snippet/CreateSnippetDialog.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Snippet/Delete/DeleteAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Snippet/Delete/DeleteAlert.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Snippet/Delete/DeletePopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Snippet/Delete/DeletePopup.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Snippet/List/SnippetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Snippet/List/SnippetList.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Snippet/Rename/RenameDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Snippet/Rename/RenameDialog.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Snippet/Save/SaveDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Snippet/Save/SaveDialog.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Snippet/Save/SaveState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Snippet/Save/SaveState.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Snippet/Search/SearchSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Snippet/Search/SearchSnippet.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Snippet/Snippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Snippet/Snippet.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/Snippet/UpdatedSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/Snippet/UpdatedSnippet.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/YourCode/Config/SideBar.ts: -------------------------------------------------------------------------------- 1 | export const sideBarWidth = 120; 2 | -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/YourCode/Header/YourCodeHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/YourCode/Header/YourCodeHeader.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/YourCode/YourCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/YourCode/YourCode.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/components/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/components/styled.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/config.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/hooks/useApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/hooks/useApp.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/hooks/useAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/hooks/useAuth.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/hooks/useCompilier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/hooks/useCompilier.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/hooks/useCurrentRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/hooks/useCurrentRoute.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/hooks/useEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/hooks/useEditor.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/hooks/useEditorMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/hooks/useEditorMeta.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/hooks/useSnippet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/hooks/useSnippet.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/hooks/useSystemTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/hooks/useSystemTheme.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/index.css -------------------------------------------------------------------------------- /packages/hedgehog-website/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/index.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/interfaces/IFormInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/interfaces/IFormInput.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/interfaces/ISnippetName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/interfaces/ISnippetName.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/logo.svg -------------------------------------------------------------------------------- /packages/hedgehog-website/src/models/account/accountModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/models/account/accountModal.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/models/forget/forgetModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/models/forget/forgetModal.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/models/login/loginModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/models/login/loginModal.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/models/sign/signModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/models/sign/signModel.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/models/snippet/renameModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/models/snippet/renameModal.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/network/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/network/fetcher.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/network/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/network/http.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/output.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/output.worker.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Auth/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Auth/Auth.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Auth/Forget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Auth/Forget.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Auth/Login.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Auth/Sign.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Auth/Sign.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Draft/Draft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Draft/Draft.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Email/EmailVerification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Email/EmailVerification.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Example/Example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Example/Example.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Explore/Explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Explore/Explore.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Home/Home.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Home/_community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Home/_community.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Home/_draft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Home/_draft.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Home/_gettingStarted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Home/_gettingStarted.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Home/_gridItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Home/_gridItem.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Home/_title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Home/_title.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Settings/Account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Settings/Account.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Snippets/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Snippets/Editor.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Snippets/Snippets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Snippets/Snippets.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/pages/Timeline/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/pages/Timeline/Timeline.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/react-app-env.d.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/route/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/route/route.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/service-worker.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/serviceWorkerRegistration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/serviceWorkerRegistration.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/states/RCompilerStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/states/RCompilerStates.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/states/RLayoutStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/states/RLayoutStates.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/states/RSnippetStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/states/RSnippetStates.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/states/RUserStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/states/RUserStates.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/states/RYourCodeStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/states/RYourCodeStates.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/themes/RThemeStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/themes/RThemeStates.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/themes/labTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/themes/labTheme.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/themes/monacoTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/themes/monacoTheme.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/themes/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/themes/theme.tsx -------------------------------------------------------------------------------- /packages/hedgehog-website/src/tutorials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/tutorials.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/utils/deepmerge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/utils/deepmerge.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/utils/ga4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/utils/ga4.js -------------------------------------------------------------------------------- /packages/hedgehog-website/src/utils/kFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/utils/kFormatter.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/src/utils/toCapitalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/src/utils/toCapitalize.ts -------------------------------------------------------------------------------- /packages/hedgehog-website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/packages/hedgehog-website/tsconfig.json -------------------------------------------------------------------------------- /patches/gpu.js+2.11.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/patches/gpu.js+2.11.4.patch -------------------------------------------------------------------------------- /scripts/publish-to-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/scripts/publish-to-github.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hedgehog-Computing/hedgehog-lab/HEAD/yarn.lock --------------------------------------------------------------------------------