On mac:
- Download the latest release.
- Extract the binary and place it in
/usr/local/bin.
On mac:
/usr/local/bin.| import React, { Component } from 'react'; | |
| import TextField from 'components/base/TextField'; | |
| const WAIT_INTERVAL = 1000; | |
| const ENTER_KEY = 13; | |
| export default class TextSearch extends Component { | |
| constructor(props) { | |
| super(); |
Note: this assumes you are using ZSH shell.
Install asdf:
$ git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.4.0
$ echo -e '\n. $HOME/.asdf/asdf.sh' >> ~/.zshrc
$ echo -e '\n. $HOME/.asdf/completions/asdf.bash' >> ~/.zshrc
Here we create the master key. We want only Certify capability: we use the master key only to create the subkeys, Sign - Encrypt - Authenticate capabilities will be assigned to the subkeys.
Run the following command to start the master key generation process. Select the set your own capabilities creation process (type 8)
▶ gpg --full-generate-key --expert
gpg (GnuPG) 2.2.9; Copyright (C) 2018 Free Software Foundation, Inc.
| 'use strict'; | |
| // @license http://opensource.org/licenses/MIT | |
| // copyright Paul Irish 2015 | |
| // Added code by Aaron Levine from: https://gist.github.com/Aldlevine/3f716f447322edbb3671 | |
| // Some modifications by Joan Alba Maldonado. | |
| // as Safari 6 doesn't have support for NavigationTiming, we use a Date.now() timestamp for relative values | |
| // if you want values similar to what you'd get with real perf.now, place this towards the head of the page | |
| // but in reality, you're just getting the delta between now() calls, so it's not terribly important where it's placed | |
| // Gist: https://gist.github.com/jalbam/cc805ac3cfe14004ecdf323159ecf40e |
| import * as React from "react"; | |
| import { useMousePosition } from "~/hooks/useMousePosition"; | |
| /** Component to cover the area between the mouse cursor and the sub-menu, to allow moving cursor to lower parts of sub-menu without the sub-menu disappearing. */ | |
| export function MouseSafeArea(props: { parentRef: React.RefObject<HTMLDivElement> }) { | |
| const { x = 0, y = 0, height: h = 0, width: w = 0 } = props.parentRef.current?.getBoundingClientRect() || {}; | |
| const [mouseX, mouseY] = useMousePosition(); | |
| const positions = { x, y, h, w, mouseX, mouseY }; | |
| return ( | |
| <div |
| /** | |
| * These hooks re-implement the now removed useBlocker and usePrompt hooks in 'react-router-dom'. | |
| * Thanks for the idea @piecyk https://github.com/remix-run/react-router/issues/8139#issuecomment-953816315 | |
| * Source: https://github.com/remix-run/react-router/commit/256cad70d3fd4500b1abcfea66f3ee622fb90874#diff-b60f1a2d4276b2a605c05e19816634111de2e8a4186fe9dd7de8e344b65ed4d3L344-L381 | |
| */ | |
| import { useContext, useEffect, useCallback } from 'react'; | |
| import { UNSAFE_NavigationContext as NavigationContext } from 'react-router-dom'; | |
| /** | |
| * Blocks all navigation attempts. This is useful for preventing the page from | |
| * changing until some condition is met, like saving form data. |
| import { config } from "@/app/config"; | |
| import { createLogger } from "@/app/observability"; | |
| import { useEffect } from "react"; | |
| const { appEnv } = config; | |
| const logger = createLogger("developer/storybook"); | |
| export const useToggleStorybook = () => { | |
| const [isStorybookEnabled, setIsStorybookEnabled] = useState(false) |
| import { readFileSync } from "node:fs" | |
| import * as babel from "@babel/core" | |
| import BabelPluginReactCompiler from "babel-plugin-react-compiler" | |
| import type { Plugin } from "esbuild" | |
| import QuickLRU from "quick-lru" | |
| export function ReactCompilerEsbuildPlugin({ | |
| filter, | |
| sourceMaps, | |
| runtimeModulePath, |
| import { | |
| Canvas, | |
| DataSourceParam, | |
| dist, | |
| ImageShader, | |
| rect, | |
| RoundedRect, | |
| rrect, | |
| Shader, | |
| Skia, |