Jefferson Quesado

Results 27 comments of Jefferson Quesado

I had this need in my local machine and though that it would be useful for someone else. Also, there are 2 others PRs about dockerizing this app and a...

I have done it. Dockerfile: ```dockerfile FROM ruby:2.7-alpine WORKDIR /myapp COPY Gemfile /myapp/Gemfile COPY Gemfile.lock /myapp/Gemfile.lock COPY config.ru /myapp/config.ru COPY server.rb /myapp/server.rb COPY style.css /myapp/style.css RUN apk add make RUN...

> I guess I left it that way to annoy me into a better solution in the future Well, I think that I called the future Fábio now 🤭

Maybe instead of an empty native a simple check if it is in a Java env should work as intended.

To avoid the [TotalCross/totalcross#583](https://gitlab.com/totalcross/TotalCross/-/issues/583) issue, the `Convert.toString(long)` code could be replaced with a a call to `Long.toString(long)`, as the `Conert.toString(int)` code is a call to `Integer.toStirng(int)`

Indeed, it violates OSI item 1, and GNU freedoms 1 and 3. Violates freedom 1 in the sense it does not support "change it so it does your computing as...

For some time, during the transition from Litebase to SQLite in TotalCross, I've made a Litebase compatible work-around that actually sent the SQL commands to both SQLite and Litebase. If...

So, the usage of `ListContainer` as I could seen is to add items with `addContainer`, not plain `add` (check [this](https://github.com/TotalCross/totalcross/blob/master/TotalCrossSDK/src/main/java/totalcross/ui/ListContainer.java#L24-L27) and [this](https://github.com/TotalCross/totalcross/blob/master/TotalCrossSDK/src/main/java/totalcross/ui/ListContainer.java#L55)). Internally, adding stuff to a `ListContainer` via it's...

Hello, @ItaloYeltsin . What I was asking was not for Travis CI for building TotalCross via github, but to have a smoke test for a TotalCross powered solution.

Danke shön, @acmlira I have a full article written for gitlab-ci build, the example is there for anyone who wishes to use it (lang ptBR, https://medium.com/@jeffque/trabalhando-com-totalcross-e-gitlab-ci-4e2f7e376c18).