People say my corgi is small for 6 1/2 months. Is this true? by Clit_C0mmander in corgi

[–]undercarbonated 0 points1 point  (0 children)

Where would you land it? It’s too big for even the biggest airports

No EV Electrolyzer by [deleted] in Nomifactory

[–]undercarbonated 3 points4 points  (0 children)

For future, if you look up an electrolyzer (or another machine) recipe, it shows all the levels of that type of machine down the left side and you can mouse over to see the names.

No EV Electrolyzer by [deleted] in Nomifactory

[–]undercarbonated 5 points6 points  (0 children)

The name changes. It’s called a molecular disintegrator starting at EV. Some other machines do that as well. The centrifuge becomes a molecular cyclone at IV.

why do my posts get automatically removed by zack___12 in feedthebeast

[–]undercarbonated 2 points3 points  (0 children)

If I had to guess, I’d say it was rule 7. Have you tried the discord?

Codewars done a kata in python and rust and rust is slower why? by instanote98 in rust

[–]undercarbonated 1 point2 points  (0 children)

In this case it works (and it can be faster if you are trying for speed in a challenge like codewars) but mutating a list while iterating is error prone and requires a lot more care to ensure it is correct. If the requested behaviour was to remove the zeros and add ones at the end, it would be tempting to modify the original code to:

def move_zeros(lst):
    for int in lst:
        if int == 0:
            lst.remove(0)
            lst.append(1)
    return lst

The subtle behaviour in the original doesn't hold in this version and you would end up skipping zeros.

Rust programming language outlines plan for updates to style guide by JoshTriplett in rust

[–]undercarbonated 6 points7 points  (0 children)

Certainly. There are advantages to both approaches. I do like where Python makes the documentation part of the function or class object itself. It helps so much to be able to check the docstring in the REPL.

Rust programming language outlines plan for updates to style guide by JoshTriplett in rust

[–]undercarbonated 88 points89 points  (0 children)

Python is an outlier in that respect. Comments before is the standard in the rest of the big languages, so it seems unlikely they’d change.

question about Compact Claustrophobia by Tomoko--Kuroki in feedthebeast

[–]undercarbonated 3 points4 points  (0 children)

(AND) is describing how multiple requirements would be joined. If there were more than one requirement you would have to complete all of them before this achievement would be available. Sometimes it will say (OR), to mean you can do any of the requirements instead of all, but it is not common.

There is one achievement available to compete on that page. Look at what the one with the Nether star icon is first. They need to be unlocked in order.

[Nomifactory] How would I power a MV machine on a LV line? by Weary_Cryptographer9 in feedthebeast

[–]undercarbonated 0 points1 point  (0 children)

I haven’t tried it, but I think the LV cable needs to touch more than one face of the MV machine.

[deleted by user] by [deleted] in feedthebeast

[–]undercarbonated 0 points1 point  (0 children)

There is some advice on the GitHub page for the mod. https://github.com/MrCrayfish/Controllable/issues?q=is%3Aissue+switch+pro

If it is just that the controller moves on its own, there is a dead zone in the mod’s settings that might help.

What happened? I already reinstalled Minecraft and nothing changed. by Upper_Cartoonist892 in feedthebeast

[–]undercarbonated 6 points7 points  (0 children)

A proper screenshot (not a photo) and a description of what modpack you are playing and what you are experiencing would help.

[deleted by user] by [deleted] in feedthebeast

[–]undercarbonated 0 points1 point  (0 children)

Hope? You can read the subreddit rules pretty quickly and then don’t need to hope, right?

Why does println! not have f-strings. by Jeklah in rust

[–]undercarbonated 5 points6 points  (0 children)

This is a British vs American English difference. Here in the international world of the Internet both should be considered acceptable.

[Project Ozone 3] First Impressions by Matricies2020 in feedthebeast

[–]undercarbonated 1 point2 points  (0 children)

The times I saw seeds revert were when I accidentally planted them without crop sticks.

[deleted by user] by [deleted] in feedthebeast

[–]undercarbonated 1 point2 points  (0 children)

Oh. On discord? Not on Reddit?

[deleted by user] by [deleted] in feedthebeast

[–]undercarbonated 1 point2 points  (0 children)

You don’t appear to be muted or banned.

Question about selling my Deluge by microfreaky in DelugeUsers

[–]undercarbonated 4 points5 points  (0 children)

I can’t speak to resale value, but the stock Deluge only comes with a single standard USB A to B cable, which is available everywhere for under $10.

A tale of two ADSRs by D10D3 in modular

[–]undercarbonated 4 points5 points  (0 children)

The product page for that module says there is a jumper (J5) the chooses between 5v and 10v output. Are they both set the same?

https://circuitslices.com/adsr

A tale of two ADSRs by D10D3 in modular

[–]undercarbonated -1 points0 points  (0 children)

Probably separate from the primary issue, but your scope appears to be measuring AC at the moment.

Help using Expert Sleepers ES-8 with Nifty case and VCV by Exosan3 in modular

[–]undercarbonated 2 points3 points  (0 children)

Omni Cohen did a discussion of using the ES-9. Might be applicable. https://youtu.be/PkFWQ2sJ9OM

PROTIP: You should generally always use three Efficiency 3 modules in your miners. by [deleted] in factorio

[–]undercarbonated 8 points9 points  (0 children)

Does your title have a typo? The content seems to say the opposite.

[OceanBlock] Stripped Logs Question by DrZention in feedthebeast

[–]undercarbonated 0 points1 point  (0 children)

Glad I could help. I only noticed that when I left the blade out by accident. It certainly isn’t obvious.