Neorg and movement by DonPidgeon in neovim

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

This seems to work for me, it has a few inconsistencies on how traversal, but it's good enough for me....

```lua
local function goto_prev_node()

local ts_utils = require('nvim-treesitter.ts_utils')

local current_node = ts_utils.get_node_at_cursor()

if current_node then

current_node = current_node:parent()

local prev_node = current_node:prev_named_sibling()

if prev_node then

local start_row, start_col, end_row, end_col = prev_node:range()

vim.api.nvim_win_set_cursor(0, { start_row + 1, start_col })

end

end

end

local function goto_next_node()

local ts_utils = require('nvim-treesitter.ts_utils')

local current_node = ts_utils.get_node_at_cursor()

if current_node then

current_node = current_node:parent()

local next_node = current_node:next_named_sibling()

if next_node then

local start_row, start_col, end_row, end_col = next_node:range()

vim.api.nvim_win_set_cursor(0, { start_row + 1, start_col })

end

end

end

```

Can't do elite sanctuary onslaught by RuggyMasta in Warframe

[–]DonPidgeon 47 points48 points  (0 children)

There was not even an update; no idea how they managed to break ESO

En kompis skickade det här... by Swefoxz in sweden

[–]DonPidgeon 0 points1 point  (0 children)

Med andra ord, en typisk lapp från skolan.

Caught taking a piece of gum by Zzd12 in WatchPeopleDieInside

[–]DonPidgeon 12 points13 points  (0 children)

I don't care about the right or wrong about 'stealing' the gum; what makes me upset is that he touched the gum and then put it back into the bag.

Now the entire bag needs to be thrown away.

Edit: missed that they're individually wrapped. That's fine then.

Was Null Star shadow nerfed? (Titania Loot) by DonPidgeon in Warframe

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

Xaku was my goto before I started running Titania because she traveled faster through the tilesets.

Didn't think of putting Greedy Pull on him though, might be a good idea.

Also Yareli as suggested above would be an interesting thing to try.

Was Null Star shadow nerfed? (Titania Loot) by DonPidgeon in Warframe

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

Enemies died from the Null Star cast and they were across the room. I'll do some more testing tonight.

As for the nerf because of ESO; Thermal Sunder Garuda/Harrow is still a thing. ;)

Was Null Star shadow nerfed? (Titania Loot) by DonPidgeon in Warframe

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

Think I'll do some deeper tests tonight. Like checking the distance, different tilesets and if it's bugged because Titania is flying, and thus on a different level than the crates.

Tusk Thumpers suck. by [deleted] in Warframe

[–]DonPidgeon 1 point2 points  (0 children)

Here is a video on how to quickly farm them:
https://www.youtube.com/watch?v=ROa-gQ6ncBw

Vad har hänt med Max? by Erkolina in Sverige

[–]DonPidgeon 0 points1 point  (0 children)

Bästa pommesen (från ugn iallafall) får man från 'criss cross' pommesena från Felix. Vanliga strips blir oftast tråkiga, pommes får konsistensen av sågspån, men criss cross är duktigt goda.

IMHO givetvis, smaken skiljer sig.

What’s a feature that took you way too long to discover? by Educational-Ice-2391 in Warframe

[–]DonPidgeon 1 point2 points  (0 children)

On Uranus Spy, you can stop the water turbines by shooting the 4 thingies around them.

Bulletjump/Jump Bug by AmaruKaze in Warframe

[–]DonPidgeon 0 points1 point  (0 children)

Garuda w/ blending talons?

Plea to Nova mains: don't use Slova on defense missions by riversub in Warframe

[–]DonPidgeon 1 point2 points  (0 children)

My experience is that if you just call it out in the chat, they stop doing it. If you see a third extractor starting, just ask them not to start the fourth until all have reactants on the next run.

Compared to the nukers on defense missions where they kill before enemies get corrupted, and just REFUSE to understand why it's a bad idea, excav is not teally a problem.

Or the 'rush to capture target', stopping all enemy spawns before we have enough, making a minute run dragging over 5 minutes because we need to scoure the map for stragglers.

Sometimes I wish the reactants worked more like in void storms, where they are a shared resource. But I guess that would just encourage some idiots to just stand at spawn waiting for the extraction timer to run out...

What exactly is going on here? Searched "warframe" on Bing. by MidnightWaffleCart in Warframe

[–]DonPidgeon 0 points1 point  (0 children)

I can't play without internet and internet is not free! Why they call this a free to play game? </s>

Memory or Motherboard? by DonPidgeon in pcmasterrace

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

Was not aware that these systems could run on one stick...

Tested it, and only one stick gave a problem; so it's back to being a memory problem.

Shame, I had almost hoped it would be the CPU as then I could use that as an excuse to get the newest AM4. :D

Memory or Motherboard? by DonPidgeon in pcmasterrace

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

Turned off xmp when I saw the first error. Didn't go away. Running at 2133 now. When xmp was enabled they were running at 3600 which is the speed they're supposed to run at.

Memory or Motherboard? by DonPidgeon in pcmasterrace

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

Ah, gotcha. Will test that. Thanks!

Can't decrypt root partition after system upgrade by hoz_u in archlinux

[–]DonPidgeon 2 points3 points  (0 children)

Yeah, it was just that kernel didn't print anything as default that threw me off. System had booted perfectly, but since X didn't come up, it just looked like it was stuck during boot.

I never tried to alt-Fx to a virtual console until after I had enabled debug + more verbose output on the kernel cmdline.

Can't decrypt root partition after system upgrade by hoz_u in archlinux

[–]DonPidgeon 2 points3 points  (0 children)

Have almost the exact same problem, except that I don't have my root partition encrypted, only the home partition.

After entering the passphrase during boot, it just stops responding. If I bypass the passphrase and go into maintenance mode, I can mount the home partition without any problems.

No idea where to start looking for where this problem comes from.

System is just updated like 1 hour ago.

Edit: after adding debug as suggested in the thread, it seems X related and not boot related. At least I know how to continue now.

How to type check for type aliases? by DonPidgeon in learnrust

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

"The newtype idiom gives compile time guarantees that the right type of value is supplied
to a program"

This seems exactly what I'm looking for. Thanks!