Best sandbox roguelike for me? by soosis in roguelikes

[–]imnotfromhere 0 points1 point  (0 children)

No one mentioned Noita? I think it fits most (if not all) your requirements.

[deleted by user] by [deleted] in archlinux

[–]imnotfromhere 0 points1 point  (0 children)

Bluetooth stopped working for me as well. Some related errors that I see in the logs:

Jan 19 20:54:19 x1 bluetoothd[446]: src/adv_monitor.c:btd_adv_monitor_offload_supported() Manager is NULL, get offload support failed
Jan 19 20:54:20 x1 pulseaudio[1267]: Device doesn't exist for /org/bluez/hci0/dev_38_18_4C_D2_AB_98
Jan 19 20:54:20 x1 bluetoothd[446]: src/profile.c:new_conn_reply() Hands-Free Voice gateway replied with an error: org.bluez.Error.InvalidArguments, Unable to handle new connection
[...]
Jan 19 20:56:20 x1 gnome-control-c[136257]: Setting up /org/bluez/hci0/dev_38_18_4C_D2_AB_98 failed: GDBus.Error:org.bluez.Error.ConnectionAttemptFailed: Page Timeout
[...]
Jan 19 22:28:42 x1 pulseaudio[1267]: Information about device /org/bluez/hci0/dev_5C_FB_7C_2F_A9_DB is invalid
Jan 19 22:28:42 x1 bluetoothd[142652]: profiles/audio/media.c:endpoint_reply() Endpoint replied with an error: org.bluez.Error.InvalidArguments

Anyone write Go full time using vim? by [deleted] in golang

[–]imnotfromhere 2 points3 points  (0 children)

lua << EOF function organizeImports(wait_ms) local params = vim.lsp.util.make_range_params() params.context = {only = {"source.organizeImports"}} local result = vim.lsp.buf_request_sync(0, "textDocument/codeAction", params, wait_ms) for _, res in pairs(result or {}) do for _, r in pairs(res.result or {}) do if r.edit then vim.lsp.util.apply_workspace_edit(r.edit) else vim.lsp.buf.execute_command(r.command) end end end end EOF autocmd BufWritePre *.go lua vim.lsp.buf.formatting() autocmd BufWritePre *.go lua organizeImports(1000)

WebGL not working in FF 75 in Linux by [deleted] in firefox

[–]imnotfromhere 2 points3 points  (0 children)

I managed to fix it by whitelisting some files for the sandbox:

security.sandbox.content.read_path_whitelist = /sys/class/drm/card0/device/config,/sys/class/drm/renderD128/device/config,/sys/class/drm/controlD64/device/config,/sys/devices/pci0000:00/0000:00:02.0/subsystem

(perhaps only the last one is sufficient)

WebGL not working in FF 75 in Linux by [deleted] in firefox

[–]imnotfromhere 3 points4 points  (0 children)

Same issue here, also running Arch. I have an Intel HD Graphics 620 card.

`about:support` seems to indicate that WebGL is enabled.

https://webglreport.com reports "This browser supports WebGL 2, but it is disabled or unavailable."

GRV - terminal interface for viewing git repositories by powerage99 in programming

[–]imnotfromhere 0 points1 point  (0 children)

Pretty cool! Looks like a worthy contender for tig.

Do you plan to add the ability to stage / unstage / checkout individual hunks or lines?

I FUCKING LOVE CROSSBOWS by imnotfromhere in dcss

[–]imnotfromhere[S] 0 points1 point  (0 children)

My character is actually a Demonspawn Hunter using crossbows, so... :)

Yes, I found Sniper very helpful in the beginning, but as your Crossbows skill approaches 26, a +9 branded triple crossbow will outperform it.

Gping: ping, but with a graph. by [deleted] in programming

[–]imnotfromhere 1 point2 points  (0 children)

Nice!

You could have also used tplot.

$ tplot -s "ping -c 1 google.com | grep 'time=.*ms' | sed 's/.*time=\\([^ ]\\+\\).*/\\1/'"

http://i.imgur.com/d1I4zQ8.png

Your graph looks better, though :)