#Install-Module
Explore tagged Tumblr posts
jofiah · 23 days ago
Text
robot girl with LEDs in her dick that light up when there's an impact like those shoes with the light-up soles
233 notes · View notes
fannedandflawless · 1 month ago
Text
If Severus Snape were an app
interface: unfriendly by design
default mode: unimpressed
responds to nonsense with silent crash
updates? unnecessary. it was perfect from v1.0
compatible with intellect, not ego
41 notes · View notes
simsmedievally · 9 months ago
Text
Tumblr media Tumblr media Tumblr media
At the recreation center, Elyas bumped into a childhood friend, Stacius Harris. They were inseparable as children, but as teenagers, having to transition into the harsh world of adulthood, they had lost contact. Elyas had met Sarah, and knowing he had to do what was expected of him he married her. But he felt he needed to tell her that he... didn't experience romantic feelings for her that way.
There was only one person he'd ever felt that way for. And seeing him again, all those childhood feelings came rushing back to him. Sarah said she would be for him no matter what, even when he told her that he preferred men, so he knew she wouldn't fault him for this.
But he couldn't help but feel the guilt weighing on him. Not only was he betraying Sarah, who he loved like a best friend, but he was taught these feelings were wrong. A moral failing. He could suffer serious consequences were he to act on them, even if Sarah accepted him despite it.
To put it simply, he was in a bind.
19 notes · View notes
megid0nt · 4 months ago
Text
biting and killing etc
2 notes · View notes
mentatss · 1 year ago
Text
Tumblr media Tumblr media Tumblr media
partners in crime
10 notes · View notes
kivaember · 1 year ago
Note
Will Raven get a voice box in the future?
In apv he will be mute forever, i'm afraid.
There're a few reasons why: first and foremost, getting 621 to willingly subject himself to any sort of surgery is slim to none. The surgery as well would be incredibly complicated, since the majority of his windpipe is actually an artificial reconstruction and a lot of the muscles in his throat are quite weak.
(It's why he needs soft foods and liquids to eat. The inside of his throat is scarred where it's still flesh, and where its artificial there're very weak muscles which can't really push down solids. He can force himself to eat solids, but it's extremely painful and uncomfortable and always carries a choking risk).
Of course, he can always have a device that talks for him by connecting with his implants, but this requires him to be physically connected to it in some way. Having something perpetually plugged into his synchro-port is a recipe for a port-infection and is deeply uncomfortable for him, so that's not really a long term option either.
BUT! If none of those were an issue, if the surgery was easy and convenient, etc, 621 would still choose not to have it, because as frustrated as he gets with how he struggles to communicate, he likes the buffer that text-to-speech gives him.
He can take his time thinking on what to say, time to change and adjust as he's typing too. He isn't forced to impulsive say things. He can pause, think, and the other person is forced to wait for him. He likes that little bit of control.
7 notes · View notes
braillecortex · 7 months ago
Text
I have spent the last ten hours repeatedly reinstalling Windows to track down a single registry change that was causing an embroidery program to not launch. AtlasOS is great but it really is annoying that there's not really a way to revert its changes easily
3 notes · View notes
amethystsnow · 1 year ago
Text
why the hell is python basically "the beginner language" its so fucking annoying i wanted to try to do something relatively simple (click when the pixel under my cursor changes color) but i had to spend like 45 minutes getting it to be able to control my mouse and do things such as click because i found the module i need for it and tried to install that only for pip to just not work because apparently you need to either be in regular command prompt and type "py -m" before it or you need this longass command in order to do it through the python console and it took way too long to find someone who mentioned that information necessary to install modules but then it wasnt working in pycharm because apparently the installations are specific to the venv rather than just python and so i had to figure out hwo to open up the console in pycharm and use the longass command to install it there BUT THEN that dindt work because the venv didnt allow installing other software or whatever so i had to go to the cfg file for it and FINALLY was able to install it and use it in pycharm. and then i learned that i have to install another module in order to use the sleep command. sleep. why does this beginner language not have a sleep command by default thats such a basic common mechanic why to i need to install and import time anyway if you actually read through all of my rambling and complaining thank you for that and FUCK python. i am however going to continue using it for this little project (building off of the original purpose) because once the modules are installed it is a very simple language
3 notes · View notes
watermelinoe · 11 months ago
Text
this is a longshot but does anyone here know how to set up python with external modules like google api python client
2 notes · View notes
warfared · 2 years ago
Text
henry 🤝 jacket 🤝 draven being mute
2 notes · View notes
spectrology · 2 years ago
Text
wow i would really fucking love to get some work done!!!
2 notes · View notes
lubi0863 · 2 years ago
Text
Top 10 Solar Module Manufacturers in India
2 notes · View notes
digitalwheel123 · 3 days ago
Text
Why Surface Mount Boxes Like 2 Modular Are in Demand
Today, many electricians and homeowners prefer surface-mounted options for quick and clean electrical setups. The 2 modular surface box is highly in demand due to its easy installation, compact size, and ability to fit modern modular switches without wall breakage. It offers a strong, safe solution for exposed wiring, especially in commercial shops, homes, and temporary setups. With rising interest in DIY installations and flexible wiring needs, the demand for surface mount boxes like the 2 modular surface box continues to grow across India.
Tumblr media
0 notes
asteamtechnosolutions · 4 months ago
Text
Install the Local Expansion Module
Tumblr media
CompactLogix L16 Controller, 24 VDC Only, Up to 6 Modules Expansion, POINT Bus Backplane, 16 DI (Sink), 16 DO (Source), 2 Ethernet Port (DLR), Up to 4 Ethernet/IP nodes, 384KB User Memory, 1GB SD Card Inbox
1 note · View note
aesthetic-uni · 5 months ago
Text
What if instead of coding I destroy my computer
1 note · View note
linneasmith · 5 months ago
Text
How to Install PyTorch
PyTorch is a framework for the Python programming language, designed for machine learning. It includes a set of tools for working with models, commonly used in natural language processing, computer vision, and other similar fields. You can install it on your server manually using this guide.
PyTorch Installation on Linux¶
This instruction is suitable for the following operating systems: Ubuntu 22.04, and verified for Python versions: Python 3.10.
Install Python:sudo apt install python3.10 In Ubuntu 22.04, this version is installed by default, so we do not recommend installing a newer version.
Create a virtual environment for Python:python3 -m venv venv
Activate the virtual environment:source venv/bin/activate After successful activation, the prompt will include the name of the virtual environment in parentheses:(venv) user@49069:~$ NoteYou can create as many virtual environments as you like and install different libraries (including simultaneously, but sometimes this may cause conflicts).
Install PyTorch libraries in the virtual environment:pip3 install torch torchvision torchaudio
Verify PyTorch installation:To do this, run a Python console command python and then run the following program:import torch x = torch.rand(5, 3) print(x) If the installation is successful, you will receive the following output:(venv) user@49069:~$ python Python 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import torch >>> x = torch.rand(5, 3) >>> print(x) tensor([[0.80, 0.04, 0.6], [0.32, 0.59, 0.7], [0.8, 0.70, 0.25], [0.40, 0.9, 0.9], [0.8, 0.15, 0.5]])
Verify if PyTorch libraries use CUDA:To do this, run the following program in a Python console:import torch torch.cuda.is_available() If PyTorch can work in GPU mode, the output will be: >>> import torch >>> torch.cuda.is_available() True
1 note · View note