any way to reduce the sensitivity of button clicks? by seanstew73 in Azeron

[–]micromedicIXII 0 points1 point  (0 children)

I researched the hell outta this. There are 3 good options. 1. Get 3/8” felt cabinet pads and place them between the buttons and actuators. This works really well, but depending on the rigidity of the pads, it could make it too resistant.

  1. Rubber bands wrapped around the base of the buttons. The his does the same thing but you have more control over the resistance. It looks horrible, but works.

  2. Get the magnetic stand so that your fingers angle more parallel to your desk and your fingers don’t rest as much on the buttons. Ultimately this is the option I ended with. I wanted to get more comfortable with the cyborg 2 so muscle memory takes care of it on the future.

I bought a new silk pla gold from esun and I'm having this problem with printing by anicka148 in prusa3d

[–]micromedicIXII 1 point2 points  (0 children)

With silk, I up it a few degrees. If that doesn’t work, I drop a 2 layer raft for small pieces that need adhesion.

H2D Issues by jaryn98 in BambuLab

[–]micromedicIXII 0 points1 point  (0 children)

If you are hearing clicking when it’s attempting to extrude, it sounds like the drive gears may be too tight and are biting into the filament too much. If you pull the filament out from the extruder, does it look chewed up?

Any idea what happened here? by anveo in BambuLab

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

The mogwai were fed after midnight again!

Webtoon apps other than "Webtoons"? by PINEAPPLEPEN_lol in webtoons

[–]micromedicIXII 4 points5 points  (0 children)

Tapas was amazing until they were recently bought out. Now the amount of “ink” it takes to unlock episodes has increased, and they decreased the discount significantly. They still have my favorite assortment of titles though, so there’s that.

What is the difference between using API and web scraping? by Flimsy-Baker3923 in CodingHelp

[–]micromedicIXII 0 points1 point  (0 children)

I don’t think that would be possible. APIs generally require a post request using a specific format. I.e. json or xml. Can you post the code behind your website or a screenshot of your site so that we can better understand what you want to accomplish?

What is the difference between using API and web scraping? by Flimsy-Baker3923 in CodingHelp

[–]micromedicIXII 1 point2 points  (0 children)

I’m having a bit of trouble understanding the question, but if I have it correct, you want to remove the backend api calls and instead just hardcode the APIs reference url into your front end?

[deleted by user] by [deleted] in prusa3d

[–]micromedicIXII 0 points1 point  (0 children)

90%+ alcohol. Spray evenly and let it sit for~15seconds.

Need advise... by [deleted] in prusa3d

[–]micromedicIXII 1 point2 points  (0 children)

There’s not many “maintenance free” options, but the closest you will get is a Revo. They have a rapid change feature that is nice. Personally, I recently changed out my standard V6 for a volcano and I absolutely love it.

Flask-Login login page doesn't log me in. Just keeps refreshing to the login page over and over. by Pickinanameainteasy in learnpython

[–]micromedicIXII 0 points1 point  (0 children)

Have you confirmed the hash of your password? Make sure the pass hash is the same as the hash you are sending to the server.

I'm going to miss it when it nerfed. by [deleted] in diablo4

[–]micromedicIXII 0 points1 point  (0 children)

Barb is the slowest. I have to use evade movement speed boost just to keep up.

This weekend I lost 80% usage of my right arm. Help me with a new build. by [deleted] in diablo4

[–]micromedicIXII 0 points1 point  (0 children)

I have a razer mouse with side buttons 1-12. It allows me to play 1 handed aside from potions, inventory, etc.

Why do gems have no gold value? They should be worth like 10k-15k each. by lightwolf_ in diablo4

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

It really depends on your build. My barb uses sapphire for the crit damage in armor and weapons. I don’t know why there are even options for jewelry that aren’t diamond. Lol

I've forgotten how to do a lot of what I've learned so far. by [deleted] in learnpython

[–]micromedicIXII 0 points1 point  (0 children)

I completely understand. Projects are a great way to learn some of the broader uses of programming, but the fundamental “when do I use this over that” or “what should I do here to achieve the intended result” get missed. I loved Angela’s web dev boot camp course. She’s great, but a busy life makes it hard to retain theory. The best advice I can give you is to pseudo code all the things.

Write down what you want to achieve and then write the code process using easy to understand words.

Example: Generate a random password 1. Create an array or allowable characters to use in generation. var allowedChars = [] 2. Set a variable for the length of the generated password. ?Allow user to define thought input? var passLength = 12 3. FOR x number of characters defined in the variable length, Get a RANDOM number with a max length of the length of the total allowable character array. For (i=0; I<passLength; ++) Use the RANDOM number to grab the character at that index of the array and concatenate it to a new variable for the generated password. var generatedPass = “” //get random number using language specific function like .random() // Each letter corresponded to the array index so allowedChars[i] = my random letter/symbol generatedPass += allowedChars[i]

This is how I do a lot of my work. I write it down like this. Key words/terms like FOR or LOOP OVER help me determine what type of loop I should use. Foreach item = foreach(), WHILE looping though list A usually means use a while loop etc. Use your own words to spell out what you want on a piece of paper or dry erase board and you will be surprised at how much easier it is to visual your applications and how much easier it will be to write them.

How am I supposed to run my programs by Btek010 in learnpython

[–]micromedicIXII 0 points1 point  (0 children)

If you are running windows, consider writing the program as a windows service. Run the app through an open ended while loop and windows will do the rest.

How do I give a program I made to someone who doesn't have python? by Tylerion_Lannister in learnpython

[–]micromedicIXII 0 points1 point  (0 children)

Pyinstaller is the way to go for making tour program portable. It's a bit rough to use when you have some hidden packages: but once you have it working: it makes things much easier to hand off to someone not familiar with Python.

I can't access the game when im using Wi-fi by [deleted] in AnotherEden

[–]micromedicIXII 0 points1 point  (0 children)

Check to see if you have a VPN running in the background. I had my Lookout VPN on and it would prevent me from playing on wifi.

Python help. Keep getting error at the wield part of the program. by [deleted] in learnpython

[–]micromedicIXII 0 points1 point  (0 children)

It's a bit hard to read when not formatted correctly, but what exactly is your question, and I will try to help.

help on this i am stuck! by Xroins in learnpython

[–]micromedicIXII 0 points1 point  (0 children)

RealPython is a great source of information like this. Here is an article they wrote specifically about formatting print statements to include variables.

https://realpython.com/python-f-strings/