Jordan Christiansen

Results 21 issues of Jordan Christiansen

The docs include this warning for the G command: Warning: this may be slow if N is large, or if N is not specified and standard input, rather than a...

I am making a web application that will be presented on a large multitouch TV screen. It is going to be multi-user, so we are planning on having multiple keyboards...

Enhancement
Demo

I maintain a [community package](https://pkgs.alpinelinux.org/package/edge/testing/x86_64/dnsname) for dnsname in Alpine Linux. Alpine prefers to run the testing suite on every package when it gets built, but running as root is not...

I think it would be kind of cool to not only keep track of the total time played per game, but when you played it. I would like to be...

feature request
dcwf

vscode-lua should (optionally) support Lua Language Servers, like this one: https://github.com/Alloyed/lua-lsp

## Description There is a `VELA_BUILD_SENDER` variable available in pipelines. It would be really useful to have a `VELA_BUILD_SENDER_EMAIL` variable as well. ## Value I would use this in the...

feature

The `OperatorOverloadingKoans.testEqualsOperator` test has a mistake. Defining a `.equals` method does not affect the behavior or the `==` operator. Relational operators are overloaded using the `.compareTo` method. See http://groovy-lang.org/operators.html#Operator-Overloading

`assert_error` only accepts a function and a message: https://github.com/silentbicycle/lunatest/blob/32e3ecfdb64d37c7f5e72b33bd32fdc3992b967d/lunatest.lua#L444 It should accept a variable number of arguments, like `pcall`: ```lua pcall (f [, arg1, ···]) ``` Currently, if I want...

Currently if I want to test that a function runs normally and doesn't return an error, I just run the function and don't try to catch the error. ```lua function...

For my own LÖVE game, I'm use the same technique that you do to install love and liblove, but I haven't been able to get the liblove part to build,...