Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I wrote some script with tkinter as a GUI and pyinstaller to convert it to an exe.
However gmail doesn’t allow me to share the file
if I share the file with google drive then windows security gets triggered
What’s a good safe and easy way for people who don’t know how to install python to use the code I write in python.
Thank you
You could use Discord. I believe you can upload an exe to Discord.
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 days ago.
Improve this question
I want to backdoor myself for fun, I have learned how to use backdoor-factory tool in Kali Linux. But when I try to backdooring file, tool says "ELF binary not supported". I have no idea why this happening. I even asked that problem from chatGPT. I need human knowledge. I try to write C++ and python code and I made them PE (Portable Executable) but backdoor tool says "ELF binary not supproted". I have latest backdoor-factory tool. Can someone help me?
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 days ago.
Improve this question
I keep trying to install virtualbox 7.0.6, but it always shows the screenshot attached. What do I do to get both of the dependencies?
I tried looking around online but couldn't find anything.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
Im pretty new in Kali and confused with the following issue:
Every time i create a text file, it is saved as a python file
If i want to open it, the python launcher for Windows tries to open the file, but it never happen.
Nevertheless, it is possible to open it with an text editor.
Why does it happen?
Where can i find the settings, so .txt documents are always loaded with gedit?
(I use an oracle vm to launch kali on my windows system)
rename your file with double quote "file.txt"
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
Guys when I installed wxpython by this pip install wxpython when I back to import wx in python file in VS Code there is no options menu for the module oppsite of already installed modules come with python like :
but when I want to show this menu in wxpython i don't have it?? :
Help me
any Help will be in the heart ♥
In VSCode, the prompt function of automatic completion is provided by the Python extension and language service, and the content of the code prompt is different when using different language services. The following is the situation when I use three different Python language services:
"python.languageServer":"Pylance", (in "settings.json" file)
"python.languageServer":"Microsoft",
"python.languageServer":"Jedi",
It is recommended that you try to reload VSCode (F1, Developer: Reload Window) and wait for the python language service to load, then type the code to use the code hint function to get a better use effect.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I have written the following code to open a particular site.
import webbrowser
webbrowser.open('https://stackoverflow.com/')
I want to modify the code to ping the website twice a day without being using an always running code in the background (maybe with an infinite loop).
I'm using a Windows 10 system. I don't have root access.
I have done a little research and was unable to find anything satisfactory.
Thanks in advance.
You could use github actions - there is a guide here
LINUX:
use Crontab or place your script in /etc/rc.local.
WINDOWS:
Use Task scheduler or use AT command similar to crontab in linux.
on Windows you can use Task Scheduler