shelvacu

Results 18 issues of shelvacu

So I've been working on #50 and it sort of feels like things are sprawling out more and more, and I wanted to both contribute what I'd done so far...

I installed go with apt on ubuntu 20.04 ```text $ go version go version go1.13.8 linux/amd64 ``` When building, I get the error ```text ... go: finding golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e go:...

Numerous times now I've gotten to 2048 and simply kept playing, and if I happen to be unfortunate enough to swipe on the right side of the screen, the game...

```rust #[macro_use] extern crate stdweb; fn bla(){ println!("blarg"); } fn main() { js!{ document.addEventListener("click", @{bla} ); } } ``` Click anywhere on page with console open, see bug.

I noticed there's a lot of repeated code for javascript FFI. This macro means that instead of writing ```rust /// Docs docs docs fn focus( &self ) { js! {...

```moonscript foo( "abc", --we 123 so that the abc can foo the bar 123 ) ``` This gives a parse error, where I believe it should parse without error. This...

For easy reproduction, just run this and wait a bit: ```crystal require "sqlite3" puts "PID is #{Process.pid}" DB.open("sqlite3://./test-db-feel-free-to-delete-me.sqlite") do |db| db.exec("CREATE TABLE IF NOT EXISTS foo (bar)") loop do db.transaction...

Run a command like: ```bash echo '1 2 3' ``` and ash will only record `echo '1` This happens because `read` only reads the first line, see https://github.com/barabo/advanced-shell-history/blob/e43e312d29aa31347dd1f88cbc959c60e06aeffa/shell/bash#L136 https://github.com/barabo/advanced-shell-history/blob/e43e312d29aa31347dd1f88cbc959c60e06aeffa/shell/common#L111 https://github.com/barabo/advanced-shell-history/blob/e43e312d29aa31347dd1f88cbc959c60e06aeffa/shell/zsh#L67...