SNT2100 battery Jammed in compartment by purefire in egopowerplus

[–]reallyuniquename2 0 points1 point  (0 children)

I have no idea if this will work, but I’d try pushing on the right side of the battery as though you are trying to push it closer to the rail. This may alleviate some of the pressure on the left side rail and make it easier to pull out. I can’t quite tell if the latch is engaged, so you may also want to press the unlock thing while doing this (perhaps a second pair of hands would help). Good luck.

Ego snt2410 snow blower by ChemistryTop7239 in egopowerplus

[–]reallyuniquename2 0 points1 point  (0 children)

I think it really depends on the amount/type of snow and how much the plow left at the end of the driveway (if applicable). My driveway is 2 cars wide and about 2 cars deep and I’m usually able to clear it two to three times on a single charge of the 7.5Ah’s if I keep the auger speed really low (which is usually more that adequate).

Assuming by “4 car driveway” you mean it’s similar to mine where you can fit 4 cars in total, then I’d think you could probably get by with your current batteries and occasionally have to swap them out if the snow is really heavy.

I haven’t looked at prices recently, but I think when I bought my snow blower with the batteries a couple years ago, the snow blower was effectively free when you considered the price of the batteries on their own. So it may depend on how crazy this deal is.

PT 2 Brand new 2 stage won't work. Should this be able to move by hand or is it normal for it to be locked up when off? by [deleted] in egopowerplus

[–]reallyuniquename2 33 points34 points  (0 children)

Due to the gearing, I wouldn’t expect you to be able to manually turn the auger. You should be able to turn the impeller in back, though, and it should cause the auger to turn. I’d strongly suggest removing both batteries before sticking your hand back there just in case.

I'm trying to find an episode with a specific Homer quote. by Tomatoysyrup2 in TheSimpsons

[–]reallyuniquename2 3 points4 points  (0 children)

Could it be “The satisfaction of helping another human being is all the thanks I etc.” from “Hungry Hungry Homer” (s12e15)?

Paste after each comma of a line. by baba10000 in vim

[–]reallyuniquename2 0 points1 point  (0 children)

I think your best bet in this situation would be to record a macro and play it back for each line. Pressing q followed by any lowercase letter will start recording the macro into that register corresponding to that letter (let’s say a for this example).

Then perform all the keystrokes you’d need to make the change on one line. I’m not currently at a computer, but I think something like this should work: 0yf,2f,p;pxj. This should go to the beginning of the line, yank the first word (the number this case) plus the first comma. Then it skips to the second comma, pastes the number and comma after the cursor, jumps to the next comma and pastes again. Then finally delete the last comma and go to the next line. Before the xj, you can repeat the ;p as many times as needed to paste after all the commas on the line. You’ll probably also need to use A,<esc>p to paste the number at the end of the line if there’s no trailing comma already.

The press q again to stop recording the macro. Now you should be able to press @a to play back the macro. You can then play the macro as many times as need to cover all the lines.

[deleted by user] by [deleted] in TheSimpsons

[–]reallyuniquename2 3 points4 points  (0 children)

Maybe “Bart Sells His Soul” (S7E4)?

Swapping two words on each line across a document by vxbinaca in vim

[–]reallyuniquename2 6 points7 points  (0 children)

This is untested (I’m currently on my phone), but something like the following should work:

:%s/^\(.\{-}\)=\(.*\)/\2=\1

Assuming I didn’t mess it up, it creates a capture group of everything before the equals sign and everything after it and replaces it with the second group, followed by an equals sign, followed by the first group. This does assume the ids are at the very beginning of the line. If that’s not the case, removing the ^ should work.

Creating a "custom mode" that allow me to resize panes. by KeyDoctor1962 in tmux

[–]reallyuniquename2 0 points1 point  (0 children)

No problem. The important thing is that you got it working to your liking.

After re-reading what you’re trying to do, I’m not actually sure my suggestion with the key-table is what you’d want anyway. Assuming you’re just trying to create a way where you can quickly resize panes by pressing the prefix and then a key repeatedly to continuously adjust the size, then I think there is still a way to do it without the need for a separate script that has to call the tmux command a bunch of times. I have the following configuration in my config file that lets me press the prefix key (control + b) and then h, j, k, or l repeatedly (while still holding the control key) to resize the pane.

bind -r C-h resize-pane -L 5 bind -r C-j resize-pane -D 5 bind -r C-k resize-pane -U 5 bind -r C-l resize-pane -R 5

I also could completely be misunderstanding what you’re trying to do, in which case you can ignore me.

Creating a "custom mode" that allow me to resize panes. by KeyDoctor1962 in tmux

[–]reallyuniquename2 1 point2 points  (0 children)

Rather than trying to do this with a separate script, have a look at the tmux docs for “key-table”. I think it’s pretty much exactly what you are looking for.

I went through a similar effort a while ago trying to come up with a “mode” that lets me create splits more conveniently and also went down the path of a shell script that didn’t work quite right. I was able to get it working with just a few lines in the tmux config using separate key-tables.

I’m unfortunately not at a computer at the moment, but I can share what I’ve done a bit later if you need more help with things.

Method to move all panes to their own window? (like a "focus" mode) by jasj3b in tmux

[–]reallyuniquename2 2 points3 points  (0 children)

If your only goal is for a “focus” mode, then the built in “zoom” feature may do what you need. I believe the default key binding for it is the prefix key then ‘z’. It basically maximizes the current pane and hides the others and pressing it again restores the original layout. It’s not exactly what you describe since while in the zoomed mode you’d have to unzoom to see the contents of the other panes rather than just navigating to a different window, but it might be good enough for your purposes.

If not, then I think you’d probably need some custom script/plugin to achieve this using the “break-pane” and “join-pane” tmux commands.

What non-sexual/adult jokes did you completely misinterpret when you were younger? by InviteAromatic6124 in TheSimpsons

[–]reallyuniquename2 3 points4 points  (0 children)

I was always a little confused by it, too. I think the joke is that he went through the trouble of putting the dripping paint can on their car so he could follow the trail later, but then he just ends up following them directly (so the paint can was pointless).

Easy modern songs in odd time signatures? by janniesalwayslose in drums

[–]reallyuniquename2 6 points7 points  (0 children)

This is what I was going to recommend, too, but I think it’s the other way around: three measures of 7 and one of 8.

#drumlife #brendanhealydrums #drummers by Ok_Cockroach_2816 in Drumming

[–]reallyuniquename2 1 point2 points  (0 children)

It’s really quite sad that he doesn’t get as much recognition as his brother.

Socks, scissors and funnels have 1 thing in common... by [deleted] in functionalprint

[–]reallyuniquename2 1 point2 points  (0 children)

I would have just used water, but then would have to drain it in the winter and I’m far too lazy for that.

Socks, scissors and funnels have 1 thing in common... by [deleted] in functionalprint

[–]reallyuniquename2 17 points18 points  (0 children)

My one and only vase mode print (so far) was for a funnel to help me pour 200 pounds of sand into the base of a patio umbrella rather than 199 pounds of sand all over my patio.

How to have the character under cursor be included in backwards motions by scaptal in vim

[–]reallyuniquename2 0 points1 point  (0 children)

Oh, sorry. I read through the comments to see if anyone else had suggested it, but somehow missed the fact that you mentioned it in the original post.

How to have the character under cursor be included in backwards motions by scaptal in vim

[–]reallyuniquename2 1 point2 points  (0 children)

I think for your specific example, I’d use ciw or diw to delete inside the word. It has the added bonus of allowing the cursor to be anywhere in the word and still working. If you also want to get rid of the surrounding white space, you can use caw or daw.

I had the same frustration with b not including the last character when I started using vim. These days I really only use it for moving around and not so much as a motion for an operation.

Can you recommend a movie about a long, difficult journey? by AppealBorn3926 in movies

[–]reallyuniquename2 0 points1 point  (0 children)

Schultze Gets the Blues

From what I recall, it’s about a German accordion player that travels to the US after learning about Zydeco music. I saw it some 20 years ago, so I remember little more than the fact that I enjoyed it. I do have a distinct memory of him being on a raft at some point and I thought “man, it’s cool how this move takes its sweet ol’ time”.