-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* notes and remove file extensions Co-authored-by: Leopardfoot <Leopardfoot@users.noreply.github.com> Co-authored-by: plocket <plocket@users.noreply.github.com> Co-authored-by: Camden Blatchly <camdenblatchly@users.noreply.github.com> Co-authored-by: Jake McCambley <McCambley@users.noreply.github.com> * Load pyodide Co-authored-by: Camden Blatchly <camdenblatchly@users.noreply.github.com> Co-authored-by: Charlie Kelly <charliekelly31415@gmail.com> Co-authored-by: Steve Breit <stevebreit@users.noreply.github.com> * gitignore built rules engine, file upload using epic stack video and https://github.com/epicweb-dev/web-forms/blob/b69e441f5577b91e7df116eba415d4714daacb9d/exercises/05.complex-structures/01.solution.nested/app/routes/users%2B/%24username_%2B/notes.%24noteId_.edit.tsx Co-authored-by: plocket <plocket@users.noreply.github.com> Co-authored-by: Leopardfoot <Leopardfoot@users.noreply.github.com> Co-authored-by: Charlie Kelly <charliekelly31415@gmail.com> * python CSV parsing in remix server Co-authored-by: plocket <plocket@users.noreply.github.com> Co-authored-by: Charlie Kelly <charliekelly31415@gmail.com> * Use dates from CSV passed to Rules Engine to fetch range of dates of weather Co-authored-by: plocket <plocket@users.noreply.github.com> Co-authored-by: Charlie Kelly <charliekelly31415@gmail.com> Co-authored-by: tragicPanda10 <tragicPanda10@users.noreply.github.com> * Weather date format conversion. New server-side design_temperature schema & pass . designTemperature=12. Co-authored-by: Charlie Kelly <charliekelly31415@gmail.com> Co-authored-by: Devin Altobello <daltobello@users.noreply.github.com> Co-authored-by: plocket <plocket@users.noreply.github.com> * Established we'll need 3 different pyodide sections. Added untested executeRoundtripAnalyticsFromFormJs to end. Co-authored-by: Leopardfoot <Leopardfoot@users.noreply.github.com> Co-authored-by: plocket <plocket@users.noreply.github.com> Co-authored-by: Agustin V <vijoditz-agustin@users.noreply.github.com> * fix syntax and indents * fixed all three steps in pyodide! * try to modify billingrecords * notes * implement helpers.get_design_temp that looks up users county and state design temp, tabs->spaces Co-authored-by: Devin Altobello <daltobello@users.noreply.github.com> Co-authored-by: plocket <plocket@users.noreply.github.com> Co-authored-by: Charlie Kelly <charliekelly31415@gmail.com> Co-authored-by: Debajyoti Debnath <debajyotid2@users.noreply.github.com> Co-authored-by: thatoldplatitude <thatoldplatitude@users.noreply.github.com> * fix types --------- Co-authored-by: Leopardfoot <Leopardfoot@users.noreply.github.com> Co-authored-by: plocket <plocket@users.noreply.github.com> Co-authored-by: Camden Blatchly <camdenblatchly@users.noreply.github.com> Co-authored-by: Jake McCambley <McCambley@users.noreply.github.com> Co-authored-by: plocket <52798256+plocket@users.noreply.github.com> Co-authored-by: Charlie Kelly <charliekelly31415@gmail.com> Co-authored-by: Steve Breit <stevebreit@users.noreply.github.com> Co-authored-by: tragicPanda10 <tragicPanda10@users.noreply.github.com> Co-authored-by: Devin Altobello <daltobello@users.noreply.github.com> Co-authored-by: Agustin V <vijoditz-agustin@users.noreply.github.com> Co-authored-by: Debajyoti Debnath <debajyotid2@users.noreply.github.com> Co-authored-by: thatoldplatitude <thatoldplatitude@users.noreply.github.com>
- Loading branch information
1 parent
607e152
commit fd02144
Showing
13 changed files
with
793 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
heat-stack/app/components/ui/heat/CaseSummaryComponents/AnalysisHeader.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
heat-stack/app/components/ui/heat/CaseSummaryComponents/pyodide.client.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import * as pyodideModule from 'pyodide' | ||
import GeocodeUtil from "#app/utils/GeocodeUtil"; | ||
import WeatherUtil from "#app/utils/WeatherUtil"; | ||
|
||
export default function Foo() { | ||
const getPyodide = async () => { | ||
// public folder needed in path because it is in NodeJS instead of the browser: | ||
let thing = await pyodideModule.loadPyodide({ | ||
indexURL: `/pyodide-env/`, | ||
}) | ||
console.log(thing) | ||
return thing; | ||
} | ||
getPyodide(); | ||
return <div>Hello</div> | ||
} | ||
|
||
// const Thing = lazy(() => import("./pyodide.client.tsx")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.