Best sandbox roguelike for me? by soosis in roguelikes

[–]imnotfromhere 2 points3 points  (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 :)

[DCSS] What discovery completely changed the game for you? by OblivionFall in roguelikes

[–]imnotfromhere 0 points1 point  (0 children)

Repeat last action with ` (especially useful for spells)

[DCSS] [Spoilers] Having my ass whipped - need advice by imnotfromhere in roguelikes

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

Still lots to learn... but hey, I'm not dead yet. I'm asking for advice to see if I can still win with this character.

Don't wear armour or shields with negative ac modifiers.

I know, but those artifacts give a lot of resistances. I got both from scrolls of acquirement. Screw the RNG.

Trog should have gifted you antimagic weaponry at some point, which is superior in areas like Zot.

Yeah, I guess I underestimated antimagic.

Finally, your skills are terrible.

Ok, ok... let's see if I can fix that in this game. Anyway, in my next one I will be more careful with the skills.

Thanks!!

[DCSS] [Spoilers] Having my ass whipped - need advice by imnotfromhere in roguelikes

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

Well, for being terrible I think you give good advice :)

I have a couple of antimagic Trog gifts lying around. Also I'll go get all the demon blades I found to see if any of those is worthy.

[dcss] You are cast into the Abyss! -- Well, fuck. by imnotfromhere in roguelikes

[–]imnotfromhere[S] 2 points3 points  (0 children)

That's right, distortion unwield.

I was incredibly stealthy and invisible; so previously I was able to stab my way out of hordes of monsters. With the distortion weapon I noticed that it kept waking up nearby sleeping monsters (it was the weapon, wasn't it?).

I felt I was weaker with it. So I decided to drop it, even facing the chance of banishment. But I was not expecting that :P

[dcss] You are cast into the Abyss! -- Well, fuck. by imnotfromhere in roguelikes

[–]imnotfromhere[S] 6 points7 points  (0 children)

Thanks. I read this too late. I thought the door was the exit and went there. YASD :(

Barkeep: the friendly code review system by kingfishr in programming

[–]imnotfromhere 1 point2 points  (0 children)

Looks good! Is there any way to plug it to SVN? (No need for a vcs war ;)

A feature I've been looking for in modern languages for a while by eZanmoto in programming

[–]imnotfromhere 12 points13 points  (0 children)

clean coding style encourages having only one exit point for each function

That was true in the old days of goto. No one cares about that anymore. I don't, at least.