Eugene

Results 13 issues of Eugene

Consider this function: ```javascript const setLayout = (callback: (GridItem[]) => void) => R.pipe( key => localStorage.getItem(key), R.tryCatch(JSON.parse, R.F), R.when(isLayoutValid, callback) ); setLayout(someCallback)('someKey'); ``` flow will throw an error: ``` Cannot...

Using `ramda` in React project with Flow enabled. Have a validator method like this: ```js export const isLayoutValid: ((GridItem[]) => boolean) = R.allPass([ R.is(Array), R.complement(R.isEmpty), R.all( R.allPass([ R.is(Object), R.propIs(String, 'i'),...

I can't seem to grasp the gist of annotating a type when using lodash flow function. Example: ```typescript const pipe = _.flow( _.prop("paths"), _.map((value) => ({ path: value })) );...

I'm trying to make `typescript-is` work in a Lambda runtime. Lambda is deployed with AWS CDK. `cdk.json`: ``` { "app": "npx ts-node --compiler ttypescript --prefer-ts-exts index.ts", } ``` `package.json`: ```...

The app won't get built. Steps to reproduce: 1. `git clone https://github.com/2d-inc/HistoryOfEverything` + default installation steps 2. `cd HistoryOfEverything/app && flutter run` Error 1: ```bash Running pod install... 39.9s Warning:...

What's the preferred pattern to follow in the case of persisting a store with one to many relationship to its dependent domain objects? E.g. example store ``` export class ShopStore...

Would it be possible to use FLAN-T5 with FlexGen? https://huggingface.co/google/flan-t5-xxl

enhancement

FlexGen has just been released - https://github.com/Ying1123/FlexGen FlexGen is a high-throughput generation engine for running large language models with limited GPU memory (e.g., a 16GB T4 or a 24GB RTX3090...

enhancement

Fresh install. I'm getting this when I run `./scripts/gui.sh`: ```bash ./scripts/gui.sh: line 10: 36902 Segmentation fault: 11 python visualizer_drag.py checkpoints/stylegan2_lions_512_pytorch.pkl checkpoints/stylegan2-ffhq-512x512.pkl checkpoints/stylegan2-afhqcat-512x512.pkl checkpoints/stylegan2-car-config-f.pkl checkpoints/stylegan2_dogs_1024_pytorch.pkl checkpoints/stylegan2_horses_256_pytorch.pkl checkpoints/stylegan2-cat-config-f.pkl checkpoints/stylegan2_elephants_512_pytorch.pkl checkpoints/stylegan_human_v2_512.pkl ``` `stylegan_human_v2_512`...

## Failing module - **GitHub**: https://github.com/slackapi/node-slack-sdk - **npm**: https://www.npmjs.com/package/@slack/web-api ```js import { WebClient } from "https://esm.sh/@slack/web-api"; ``` ## Error message After running `deno run` I got this: ``` worker "/home/deno/functions/function"...

deno