Ilya Sher

Results 123 issues of Ilya Sher

https://nim-lang.org/ https://www.scala-lang.org https://www.nushell.sh https://elv.sh https://www.oilshell.org https://clojure.org TODO: open separate issues for NGS site improvement

https://github.com/ngs-lang/ngs/blob/0f24e49ccb4e9784edf81c539d199427a2f73490/release.md?plain=1#L22 There is no `-alpha` or anything similar in `snap/snapcraft.yam` Is this part of the documentation simply outdated?

## Background Existence of #557 - [Question] How do you make a script that takes command line arguments? ## TODO Make sure relevant documentation exists and can be easily found.

aspect/documentation

Roughly like https://github.com/actions/setup-node

enhancement

Both: * https://ngs-lang.org/doc/latest/generated/TmpFile.html * ngs -pi TmpFile (also for TmpDir)

aspect/documentation
OpenHack2022

`ll_` prefixed methods are low level methods that should only be used in the standard library. Consider moving them into their own namespace. This will make order and allow documenting...

Reported by @zglozman , moved here from Wiki page Direct `netcat` interface: Ability to work with sockets at a lower level for CTF tasks; Example: say we would like to...

low-level
feature-request

Related: #78 Now: ``` F on_event(chc:ChannelHandlerContext, ev:ChannelEvent) { guard ev == ChannelEvent::active log("active") } ``` Should be: ``` F on_event(chc:ChannelHandlerContext, ev:ChannelEvent::active) { log("active") } ``` Note that `ChannelEvent::active` is an...

low-level
OpenHack2022