(internal description)
- Top level page OR Dropdown
- Inner Page (if dropdown)
- Headings on Inner Page
- Inner Page (if dropdown)
name: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: |
enum Duration { | |
Ms(usize), | |
Sec(usize), | |
Min(usize), | |
Hour(usize), | |
Day(usize), | |
Week(usize), | |
Month(usize), | |
Year(usize), | |
} |
Most of Effect
's functions center around the first argument being the Effect
or 'data' to be worked on. However, this can lead to readability issues when calling multiple functions in a row.
Take these 3 simple functions:
const increment = (x: number) => x + 1
const double = (x: number) => x * 2
const subtractTen = (x: number) => x - 10
import type { | |
DecoratorBase, | |
DefinitionBase, | |
Handler, | |
InputSchema, | |
LocalHook, | |
MergeSchema, | |
RouteBase, | |
RouteSchema, | |
UnwrapRoute, |
export const ctx = new Elysia({ | |
name: "@app/ctx", | |
}) | |
.use(plugin()) | |
.decorate("db", db) | |
.decorate("config", config) |
whatplan@GAMER:~/code/tests/beth-mvc-test$ bun dev | |
$ concurrently "bun run --hot src/main.ts" "bun run uno:dev" "bun run liveReload" | |
[1] $ bunx --bun unocss --watch | |
[2] $ bunx beth-stack | |
[0] [0.01ms] ".env" | |
[2] [0.03ms] ".env" | |
[1] [0.01ms] ".env" | |
[2] 🦊 Livereload running localhost:3001 | |
[1] unocss v0.55.7 | |
[1] ◐ UnoCSS in watch mode... |
[0] [905710] pas panic: deallocation did fail at 0x600000002: Large heap did not find object | |
[0] Illegal instruction | |
[0] bun run --hot src/main.ts exited with code 132 |
Mix.install([ | |
{:explorer, "~> 0.8.0"} | |
]) | |
# Update to the filepath. | |
filepath = "./data/weather_stations.csv" | |
defmodule Challenge do | |
import Explorer.Series |