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
// SEE: https://github.com/yakovkhalinsky/backblaze-b2/issues/118 | |
import { | |
S3Client, | |
PutObjectCommand, | |
// S3ClientConfig, | |
// DeleteObjectCommand, | |
} from "@aws-sdk/client-s3"; | |
const region = process.env.B2_REGION; |
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
body, .grid-wrapper { | |
height: 100vh; | |
padding: 0; | |
margin: 0; | |
} | |
.grid-wrapper { | |
display: grid; | |
grid-template-columns: minmax(0, 200px) minmax(80vw, 1fr); | |
grid-template-rows: auto 1fr auto; |
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
import { useCallback, useEffect, useMemo, useRef, useState } from "react"; | |
interface ScrollTrackerResult { | |
isScrollable: boolean; | |
isAtTop: boolean; | |
isAtBottom: boolean; | |
} | |
function useScrollTracker(ref: React.RefObject<HTMLElement>): ScrollTrackerResult { | |
const [isScrollable, setIsScrollable] = useState(false); |
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
import React from "react"; | |
import ReactDOM from "react-dom"; | |
import { Tooltip, Popper, TooltipProps } from "@mui/material"; | |
import { styled } from "@mui/material/styles"; | |
const StyledPopper = styled(Popper)({ | |
padding: "1rem", // offset for larger arrow size | |
"& .MuiTooltip-tooltip": { | |
backgroundColor: "white", |
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
export default function detectDeployment( | |
onDeployDetected: () => void, | |
timeoutSec = 60 * 60 // default 1 hour | |
) { | |
const scriptFiles = { cache: "" }; // as object for pointer reference | |
const profit$ = () => | |
handleDetectScriptFileChanges(onDeployDetected, scriptFiles); | |
setInterval(profit$, timeoutSec * 1000); |
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
function chunkedMergeSort(arr, callback) { | |
function merge(left, right, arr, callback) { | |
let i = 0; | |
let j = 0; | |
let k = 0; | |
function mergeStep() { | |
while (i < left.length && j < right.length) { | |
if (left[i] <= right[j]) { | |
arr[k++] = left[i++]; |
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
// Create store accepts reducers map and initial state | |
function* createStore(reducers, initialState = {}) { | |
// Initialize state | |
let state = initialState; | |
// Extract the reducer keys upfront | |
const reducerKeys = Object.keys(reducers); | |
// Combine all reducers into one reducing function | |
const combinedReducer = (state, action) => { | |
return reducerKeys.reduce((newState, key) => { | |
// Pass slice of state into corresponding reducer |
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
export function cacher<T>(thunk: () => Promise<T>, ttlSeconds = 60) { | |
const noCache: unique symbol = Symbol("cache"); | |
let cache: Promise<T> | symbol = noCache; | |
return function execThunk(): Promise<T> { | |
if (typeof cache !== "symbol") { | |
return cache; | |
} | |
cache = thunk(); |
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
import * as Plot from "@observablehq/plot"; | |
import PlotFigureChart from "./PlotFigureChart.tsx" | |
export default function MyPlotFigureChart( | |
{ filteredRequests }: { filteredRequests: Readonly<any[]> } | |
) { | |
return ( | |
<PlotFigureChart | |
options={{ | |
inset: 10, |
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
import React, { | |
createContext, | |
useContext, | |
useEffect, | |
useRef, | |
} from "react" | |
// Create the event bus context | |
const EventBusContext = createContext({}) | |
// Custom hook to access the event bus context |
NewerOlder