Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)OS
Posts
3
Comments
35
Joined
2 yr. ago
3D Printing @lemmy.ml
Osnapitsjoey @lemmy.one

Does anyone have a voron stealth burner for sale?

cross-posted from: https://lemmy.one/post/27366079

So I'm building a box turtle ams for my modded to all hell ender 3. My main idea was to create a filament cutter for the microswiss ng, but I cannot figure out a good way to do it with such a low filament travel path...which really sucks, as this is a very good hot end. Since I'm already doing this ams project, and have a wedding (very excited to marry my future wife) coming up, I really don't have the time for a second project. At this point I believe it will be easier to 3d print a voron hotend adapter to work with my ender 3, then to try and retrofit a filament cutter onto my ender 3 microswiss.

If you guys and gals know of anyone selling a completed one. Or have any ideas, please let me know!

  • So the filament cutter was remixed from this:

    https//wwwprintables.com/model/755931-microswiss-direct-drive-mmu-filament-cutter

    The link to it is here: 

    https//thangs.com/designer/technik.gegg/3d-model/Filament-Cutter-Base-Module%20V4-942113

    The first link I sent you is someone who has combined another microswiss ng hotend with the filament cutter base, and since microswiss gave me the step file for the ender 3 version, I was wondering if this was an absolute undertaking, or if it's not as complicated as I think

    If you'd like to take a look at the microswiss step file DM me and I'll send it

  • Lol that's the part that really sucks. I just bought an armored turtle box turtle kit which comes with everything to make the filametrix, but I would hate to just get rid of the microswiss if there's another way to do this, since this machine is primarily for you and the box turtle is for switching to PLA for supports.

  • So the filament cutter was remixed from this:

    https//wwwprintables.com/model/755931-microswiss-direct-drive-mmu-filament-cutter

    The link to it is here: 

    https//thangs.com/designer/technik.gegg/3d-model/Filament-Cutter-Base-Module%20V4-942113

    The first link I sent you is someone who has combined another microswiss ng hotend with the filament cutter base, and since microswiss gave me the step file for the ender 3 version, I was wondering if this was an absolute undertaking, or if it's not as complicated as I think

    If you'd like to take a look at the microswiss step file DM me and I'll send it

  • 3DPrinting @lemmy.world
    Osnapitsjoey @lemmy.one

    I have a question in regards to 3d modeling for a filament slicer addon to my hotend

    So I was able to get the cad files from the good folks at micro swiss for their microswiss ng ender 3 edition. I also found a step file for a generic filament slicer. How easy would it be for me to somehow combine the two? I am okay at cad. But this seems like an undertaking, unless there's an easy way to do it. Has anyone done something like this before? The closest I've found was someone made one for the microswiss ng ender 5 edition, but I haven't been able to get a hold of the creator.

  • The bankruptcy claim comes up a lot. I hate Trump as much as anyone who can form opinions that don't come from a radio talk show, but I'd be willing to he's the bankruptcies were by design. He probably did what the toys r us CEO and 50 cent did, where they funnel money out of a company, and the company goes under.

    That being said. He's still a fucking piece of shit who's making the founding fathers roll in their graves

  • I like how the url could also have the picture changed if someone wanted to lol. You don't even own the picture that the url points to, you just have a receipt that says "this url is my url, no I don't own the url, because someone can change what's on that. No I also don't own whatever is hosted on that url either"

  • Yeah I've actually been using chatgpt as well as a few other resources! My biggest gripe is that chatgpt can't really teach without showing. I want to understand where my logic was flawed, and be guided towards the correct answer, instead chatgpt will do a good job at explaining what I did wrong, and then showing me the correct code.

    So c is a good starter language? Cuz I'm at the point now that I can just stackoverflow my way into making a smaller project, but I really want to learn how this all works and learn the fundamentals so I'm fluent

  • Yeah I figured that one out from the documentation. I with I saved more of my trial and errors so I could show you guys what I needed help with better. I tried the list.insert(x) and then I would do a list.pop(i+1) as well 😂

    I guess what I need help with is I keep messing up where I would put "for x in y: z= y [in position z

    I had a few tries with it written

    For letter in range(len(chosen_word)) : If letter == guess: Display[I] = letter

    But this would grab all the letters and change all blanks to the guess letter

  • Programming @programming.dev
    Osnapitsjoey @lemmy.one

    need help with some fundamentals of for loops. it looks like im so close to fully grasping grabbing an item out of a list, but not quite. examples below

    so ill post a few of my failed examples below along with what I came up with as a fix, and then the actual correct code. I feel like im so close to grasping this, but missing some logic. this is for a hangman game.

    one of the failed attempts:

     undefined
            import random
        word_list = ["aardvark", "baboon", "camel"]
        chosen_word = random.choice(word_list)
        
        #Testing code
        print(f'Pssst, the solution is {chosen_word}.')
        
        #Create an empty List called display.
        #For each letter in the chosen_word, add a "_" to 'display'.
        #So if the chosen_word was "apple", display should be ["_", "_", "_", "_", "_"] with 5 "_" representing each letter to guess.
        
    
        display = ["_"] * len(chosen_word)
        
        
        guess = input("Guess a letter: ").lower()
        
        #If the letter at that position matches 'guess' then reveal that letter in the display at that position.
        #e.g. If the user guessed "p" and the chosen word was "apple", then display should be ["_", "p", "p", "_", "_"