jarble

Results 72 issues of jarble

I attempted to install EnglishScript using `git clone --recursive [email protected]:pannous/english-script.git`, but it produced the following error message on Windows: ``` Cloning into 'english-script'... Warning: Permanently added the RSA host key...

Today, I found a programming language called π that has implemented many of the features of EnglishScript. π has an extensible syntax, so it should be very easy to convert...

One of the long-term goals of EnglishScript is to make the language available on multiple platforms. I have written a program called [transpiler-generator](https://github.com/jarble/transpiler-generator) that is intended to translate EnglishScript into...

In this sample code, I noticed that function parameters were not clearly distinguished from other parts of functions, causing some confusion: ``` To check if person is online on Skype:...

Is there an option to generate a series of prompts from a regular expression? I'd want to use a regex like `/(painting|photo) of a (cowboy|astronaut) riding a (horse|donkey)/` as the...

enhancement

It seems that Stable Diffusion UI doesn't save the list of currently running prompts when I close and then reopen the browser window. Could the prompts and images be automatically...

enhancement

I want to reconstruct a 3D model from a video instead of a picture set, but I'm not sure if Regard3D can do this. Is Regard3D able to convert videos...

Is Pynverse able to find the inverses of functions using Sympy? (For example: the inverse of `2**x - 3` is `math.log2(x+3)`, so you would write `solve(2**x - 3 - y,...

I tried to translate a Java interface with a default method to Rust: ``` public interface Example { default int example(int a1) { return a1; } } ``` But the...

Is py2cpp able to compile Python without type hints? It seems that it would be possible to take a function like this: ``` def subtract(a,b) return a - b ```...