Sahand Akbarzadeh

Results 8 comments of Sahand Akbarzadeh
trafficstars

hi @mals14, it's better to ask this kind of questions in stackoverflow. but you can use this method i wrote for copying cards https://github.com/SahandAkbarzadeh/trello-chicbot/blob/master/lib_trello/trello_extensions.py

something like this? : ```dart V useTween( V value, { @required T Function(V begin, V end) builder, Duration duration, double progress, }) { assert(builder != null); assert(progress != null &&...

@rrousselGit sorry I wasn't clear It is a suggestion to add documents about recommended ways to use hooks for newcomers to avoid the problems above

I've prepared a minimal reproducible example: ```javascript new Promise(async r => { let i = 0; while (r < 100) { await Deno.core.opAsync('random_number'); i += 1; } r(); }); ```...

@hanrea I didn't get how your problem relates to mine. can you elaborate? if you want to implement something like `Deno.cwd()`, you can get the cwd using [`getcwd`](https://man7.org/linux/man-pages/man3/getcwd.3.html) and to...

Hi @ekweible! It would be awesome. I've delayed this project but I will be back on it very soon. last thing I was working on was implementing the interpreter based...

Thanks @seanaguinaga, for you suggestion. You are right dart type system is not powerful like typescript. But you can actually make something that works without any code generation but the...

i think you should initialize the platform using `JsRuntime::init_platform` on the parent thread first, then create the runtime in the spawned threads: ```rust JsRuntime::init_platform(...); // Or drop(deno_core::JsRuntime::new( deno_core::RuntimeOptions::default(), // internally...