来啊!
This file contains hidden or 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
no user package environment file found at /Users/chen/repo/memkits/copycat | |
Downloading the latest package lists from: | |
- hackage.haskell.org | |
- etlas.typelead.com | |
Searching for curl in path. | |
Found curl at /usr/bin/curl | |
Searching for powershell in path. | |
Cannot find powershell on the path | |
Searching for wget in path. | |
Found wget at /usr/local/bin/wget |
This file contains hidden or 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
=>> yarn watch | |
yarn run v1.3.2 | |
$ shadow-cljs watch browser | |
shadow-cljs - config: /Users/chen/repo/mvc-works/calcit-workflow/shadow-cljs.edn version: 2.1.6 | |
shadow-cljs - starting ... | |
Can't load log handler "java.util.logging.FileHandler" | |
java.nio.file.NoSuchFileException: /Users/chen/repo/mvc-works/coworkflow/target/shadow-cljs/shadow-cljs.log.0.lck | |
java.nio.file.NoSuchFileException: /Users/chen/repo/mvc-works/coworkflow/target/shadow-cljs/shadow-cljs.log.0.lck | |
at sun.nio.fs.UnixException.translateToIOException(UnixException.java:86) | |
at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102) |
This file contains hidden or 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
axie = k1 * (x*i + y*j + z*k) | |
point = a*i + b*j + c*k | |
distance = (k1*x - a)*i + (k1*y - b)*j + (k1*z - c)*k | |
0 = axie * distance = k1 * (x*i + y*j + z*k) * ((k1*x - a)*i + (k1*y - b)*i + (k1*z - c)k) | |
0 = (x*i + y*j + z*k) * ((k1*x - a)*i + (k1*y - b)*i + (k1*z - c)k) | |
= (x*i) * ((k1*x - a)*i + (k1*y - b)*j + (k1*z - c)k) |
This file contains hidden or 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
[:browser] Compiling ... | |
[:browser] Build completed. (138 files, 1 compiled, 0 warnings, 0.20s) | |
[:browser] Compiling ... | |
[:browser] Build completed. (138 files, 1 compiled, 0 warnings, 0.22s) | |
[:browser] Compiling ... | |
[:browser] Build completed. (138 files, 1 compiled, 0 warnings, 0.24s) | |
[:browser] Compiling ... | |
[:browser] Build completed. (138 files, 1 compiled, 0 warnings, 0.20s) | |
[:browser] Compiling ... | |
[:browser] Build failure: |
This file contains hidden or 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
let pageRules = [ | |
{ | |
name: "a", | |
path: "reports/:reportId/edit", | |
router: [], | |
}, | |
{ | |
name: "b", | |
path: "reports/:reportId", | |
router: [], |
This file contains hidden or 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
// Place your key bindings in this file to overwrite the defaults | |
[{ | |
"key": "ctrl+tab", | |
"command": "workbench.action.nextEditor" | |
}, | |
{ | |
"key": "ctrl+shift+tab", | |
"command": "workbench.action.previousEditor" | |
}, | |
{ |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>respo</groupId> | |
<artifactId>inflow-popup</artifactId> | |
<version>0.2.3</version> | |
<name>inflow-popup</name> | |
<dependencies> | |
<dependency> | |
<groupId>org.clojure</groupId> |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>respo</groupId> | |
<artifactId>inflow-popup</artifactId> | |
<version>0.2.5</version> | |
<name>inflow-popup</name> | |
<scm> | |
<connection>scm:git:[email protected]:Respo/inflow-popup.git</connection> |
This file contains hidden or 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 produce from "immer"; | |
// get type of partial of an object with type T | |
export type IPartialObject<T> = { [K in keyof T]?: T[K] }; | |
export interface ImmerStateFunc<S> { | |
(f: IPartialObject<S> | ((s: S) => void), callback?: () => void): void; | |
} |