Ilya Sher

Results 123 issues of Ilya Sher

Some links are broken. For example on https://ngs-lang.org/doc/latest/generated/AWS2.html the link to `Hash` is broken.

bug
OpenHack2022

Reproduce: `ngs -p 'a=[]; a.push(a)'` ``` +-------------------------+ | Max stack depth reached | +-------------------------+ ```

bug
OpenHack2022

Context: to allow `my_arr.my_field = Repeat("blah")`

completeness

bug
low-level
aspect/syntax
OpenHack2022

Currently: ``` $ ngs -p 'break' null $ ngs -p 'continue' null ``` Should be an error.

bug
low-level
OpenHack2022

https://ruby-doc.org/stdlib-2.2.1/libdoc/shell/rdoc/Shell.html

aspect/documentation
OpenHack2022

Hello `tsort` ! > If the graph contains a cycle (and therefore cannot be properly sorted), one of the arcs in the cycle is ignored and the sort continues. Cycles...

OpenHack2022

https://github.com/nushell/nushell

aspect/documentation
OpenHack2022

Location: https://github.com/donnemartin/system-design-primer/blob/master/solutions/object_oriented_design/parking_lot/parking_lot.ipynb From "Constraints and assumptions" > Bus can park if we have 5 consecutive "large" spots` But then (`class Bus...`): ``` def can_fit_in_spot(self, spot): return True if spot.size ==...

needs-review

Example: `return True if (spot.size == LARGE or spot.size == COMPACT) else False` Location: https://github.com/donnemartin/system-design-primer/blob/master/solutions/object_oriented_design/parking_lot/parking_lot.ipynb It would definitely be negative points if I was interviewing and instead of `BOOL_EXPR` there...

needs-review