Jack Tang

Results 36 comments of Jack Tang

@kikuznetsov Thanks! I'll it later. Another question is `libopenmpi2` is missed in ubuntu 22, which means I have to install it by source code?

Hi @tamargrey, the problem scenario is wind turbine power generation analysis. For each wind turbine, I have `df_wind_speed`, `df_power_generated` and `df_weather_forecast` dataframes, all of them contain `datetime` column, but the...

@tamargrey Thanks for the suggestions! I will try it next week.

we face the same problem...

It works if I mapping each restful routing to action individually like below. ``` route("/posts/{post_id}/comments").to(CommentsController.class).get(); route("/posts/{post_id}/comments").to(CommentsController.class).post().action("create"); route("/posts/{post_id}/comments/{id}").to(CommentsController.class).get().action("show"); route("/posts/{post_id}/comments/{id}").to(CommentsController.class).put().action("update"); route("/posts/{post_id}/comments/{id}").to(CommentsController.class).delete().action("destroy"); ``` How about to provide easy config like below to build...

I didn't implement the `restful()` method yet. If the feature is ok to activeweb, I would like to implement it and send the PR :)

@ipolevoy yes, I'd like to send the PR if the issue is *NOT* urgent one. I am on the holiday now :) The proposal is going to add `restful` method...

@federico-califano so what's the problem of your code?

I've tried edit the build config in `vite.config.ts` ``` build: { outDir: r('extension/dist'), emptyOutDir: false, sourcemap: isDev ? 'inline' : false, // https://developer.chrome.com/docs/webstore/program_policies/#:~:text=Code%20Readability%20Requirements terserOptions: { mangle: false, }, rollupOptions: {...

@tmkx yep, I also tried `vite.config.content.ts` ``` rollupOptions: { output: { entryFileNames: 'index.global.js', extend: true, }, input: { 'parser': r('src/contentScripts/parser/*.ts'), }, }, ``` But it didn't copy the ts files...