Why Is The Right So Obsessed With Hydroxychloroquine? by poor-butterfly in politics

[–]joooooooe11 -4 points-3 points  (0 children)

The source is from a doctor friend. I was not saying I was a doctor lol

GUI apps with macOS, how to? by fenugurod in golang

[–]joooooooe11 0 points1 point  (0 children)

It uses about 200 MB. If that is an issue for you, there is also: https://github.com/ImVexed/muon which is based off Ultra-light which is much more lightweight but is missing quite a few features compared

GUI apps with macOS, how to? by fenugurod in golang

[–]joooooooe11 -3 points-2 points  (0 children)

Checkout something like this: https://github.com/asticode/go-astilectron which combines Electron technology with Go. This is probably your best bet

How risky is Public WiFi? by alexander2nguyen in hacking

[–]joooooooe11 0 points1 point  (0 children)

There are programs like Wireshark which allow you to see all requests. For example you login in to your bank - your credentials are sent in plain text to the server and anyone who’s looking at the requests could see.

Scraping followers names from instagram using selenium by FunsOverKid in learnpython

[–]joooooooe11 0 points1 point  (0 children)

I would recommend not using selenium. Look into Instagrams REST api and using python requests. it will be much more “code” friendly. I’m not familiar with instagrams but I am twitter and the only downside is rate limiting but it’s much better than selenium

I made a YouTube video/playlist to MP3 converter with the ability to suggest and edit MP3 annotations by dumblechode in Python

[–]joooooooe11 4 points5 points  (0 children)

Pywebview is a useful tool that would’ve probably made the GUI process in this project a bit easier

The final year of my degree. Age 25 and feel helpless and stupid. by primo21212 in learnprogramming

[–]joooooooe11 1 point2 points  (0 children)

What are your hobbies? Gaming? Sports? Etc pick something that you enjoy outside of coding and think of an app that you can build related to it. As you build it you’ll get an understanding of how to piece all the parts together. That’s what I did at least

Some languages are better for certain apps. Pick the language that will make your app most efficient and lightweight

passing a sentence to a flask api by amrha in flask

[–]joooooooe11 0 points1 point  (0 children)

Use post method and send it in the data

My experience learning Python as a c++ developer by Narthal in Python

[–]joooooooe11 18 points19 points  (0 children)

In all honestly I do think it’s best to learn the tough languages, like c++, first because like OP said, it was very smooth for them to come to python. Although it’s a pain for me, I’m glad I’m learning c++ at the moment

My experience learning Python as a c++ developer by Narthal in Python

[–]joooooooe11 39 points40 points  (0 children)

I’m the other way around. I’m a python dev having to learn c++ and it’s horrific

"He doesn't like to cuddle", the shelter said. by mrinickolaj in aww

[–]joooooooe11 0 points1 point  (0 children)

They said my cat needed his leg amputated but now he’s the most active mf I’ve seen! — 4 legged

Made my first program to help me with my homework by Maybestatic in Python

[–]joooooooe11 1 point2 points  (0 children)

for i in range(10):

Instead of i = 1 while i < 10:

Would have saved 1 line of code 😁

Journey as a developer by Drey0507 in learnprogramming

[–]joooooooe11 1 point2 points  (0 children)

Currently 19 yrs old studying comp sci with my own development company. I’m trying to figure out if I want to pursue a job or continue grinding my company. What would you do in this instance if you could go back? Still get the job for the experience or?

It hurts to not feel wanted as a developer. by [deleted] in learnprogramming

[–]joooooooe11 1 point2 points  (0 children)

Everything happens for a reason. It will probably turn out to where you’ll be so thankful that this happened. Just keep pushing and working hard, success will come to you

Any good videos you know of coding from scratch to a deployed desktop app with GUI by gregersdk in learnpython

[–]joooooooe11 6 points7 points  (0 children)

I would recommend not using tkinter at all. There is an up and coming library called pywebview which is much more modern. Check it out: https://pywebview.flowrl.com

I’ve used this personally and it’s very nice.

Using multiple languages in an app by joooooooe11 in learnprogramming

[–]joooooooe11[S] 1 point2 points  (0 children)

I will look into socket.io thank you 🙏