Lukasz Czerwinski

Results 44 issues of Lukasz Czerwinski

Here is my environment: ``` export const values: Values = { hello: 'Hi, this is your Ask server', helloD: () => "Hello, this is AskQL server! It's " + new...

enhancement
good first issue
DX/CLI/Playground
first-timers-only

The [Askscript Playground](http://cli.askql.org) has a couple of examples now but it will be great to add there 15-20 more, half of them showing different features of the language and half...

enhancement
help wanted
DX/CLI/Playground
size: 4h (small-medium)

Following [a discussion in another issue](https://github.com/xFAANG/askql/issues/250#issuecomment-650559629), we want to be able to write in AskScript expressions like: ``` 7 = ((7 div 3) * 3) + (7 mod 3) ```...

enhancement
AskScript
size: 4h (small-medium)
type:syntax

After I wrote quite a long program in AskScript in Playground, I accidentally swiped on my touchpad when trying to scroll the code window and left Playground. After I came...

enhancement
DX/CLI/Playground

Currently, there is no simple way to use AskScript from JS in frontend (or at least it's not documented at all). This ticket is about resolving this issue.

enhancement
AskScript
DX/CLI/Playground
discussion

Consider the following program: ``` ask { const factorial: int(int) = fun(n:int):int { if (n < 2) { return n } n * factorial(n - 1) } 200:factorial } ```...

bug
DX/CLI/Playground
discussion

Consider the following two programs: ## AskScript (AskVM) Source code: ``` let a = 0; log(date(), a); while (a < 10000000) { if ((a / 1000):equals(floor(a / 1000))) { log(date(),...

AskVM
discussion
type:performance

In order to provide Developer Support functionalities, such as #360, we need a method which returns a list of available values. For each of values it should return at least:...

enhancement
help wanted
AskVM
DX/CLI/Playground

After iterating 30-60 000 times when running the AskScript program (below) `node` process consumed up to 2GB of RAM. ``` let a = 1 while(a>0) { if ((a/1000):equals(floor(a/1000))) { log(a)...

bug
help wanted
AskVM
type:performance
size: 8h (medium)

In order to provide Developer Support functionalities, such as https://github.com/xFAANG/askql/issues/360, we need a method which returns a list of available resources. For each of resources it should return at least:...

enhancement
help wanted
AskVM
type:resources