SasakiSaki

Results 41 comments of SasakiSaki

@PoiScript 你好, 你可以抽空 review 一下这个 pr 吗, 这个提交主要包含了一些过期 api 的修复, 不会占用太多时间

I have some idea. If we generate all static pages based on the route, we still need a runtime to handle events. Visit each SSG (static-site generation) page, they only...

I need this feature, is there any preliminary design, I can do this binding. By the way, even with `Typed Event`, there is still no auto-completion on my IDE: [Code...

```Mathematica HalfExp[1.44466] ``` - [ ] 原因分析 - [ ] 奇点剔除 --- HalfExp[1.44465], 函数值接近E, 实际调用了 HalfExp[E,1.44465] 实验表明 HalfExp[a,b] 当函数值接近底数 a 时都会出现此异常... **需要进一步分析.**

https://github.com/GalAster/Geis/blob/f0e0a4d2e8b510575fff635e4bb367ceeaf466d7/Packages/__Raw/Tschirnhaus.wl#L210-L219 效果非常糟糕 ```Mathematica HypergeometricSolve[5, 2] /. t -> 2 // N ```

可能有帮助的公式 ```Mathematica RootHypergeometric[n_Integer,m_,t_]:=Sum[ (-(1/((n-1)*k!)))*t^k*E^((2*Pi*I*(k-1)*m)/(n-1))* Pochhammer[(k-1)/(n-1)+1,k-1]*HypergeometricPFQ[Range[n-1]/n+(k-1)/(n-1), Delete[Range[k+1,k+n-1],-k+n-1]/(n-1),n*((n*t)/(n-1))^(n-1)],{k,0,n-2} ]; Root[#1^5-#1+1&,2]//N N@RootHypergeometric[5,1,1]//Chop ``` 但是有根错位的问题

I have the same problem, is there a quick fix patch

It seems that too many temporary variables are generated, the limit is at: https://github.com/bytecodealliance/wasm-tools/blob/b5c3d98e40590512a3b12470ef358d5c7b983b15/crates/wasmparser/src/limits.rs#L29 Maybe this upper limit is fully considered, which too many variables caused by excessive inline.

Big integers can have prim literal `0n` and type `BigInt`. https://github.com/gluon-lang/gluon/blob/7b4a5a9923e8c01ebcbd60645d987f640883d880/base/src/ast.rs#L215-L221 ```rust BigInt(num_bigint::BigInt) ``` https://github.com/gluon-lang/gluon/blob/7b44c202ef17f2974e18d0b5998ac847f684b652/base/src/types/mod.rs#L217-L232 But how to deal with the original `Int(i64)` if it is a built-in type

Any chance for merge this? I want to try it, but I don't know how to configure I have imported the dependence ```js pest = { version = "2.1", git...