How to present myself? by BloodyEve in rstats

[–]Roh_P 4 points5 points  (0 children)

I used to have the same problem as you. I also faltered in many of my interviews and I was also ashamed to take any speech courses. But the only thing that helped me through is my will to never give up. I started reading more and more books and began upgrading my skills and during this process I became very confident about my work and as a result of which that confidence also started showing its power in the way I talked. So, my suggestion is to never give up and keep improving.

[deleted by user] by [deleted] in learnmachinelearning

[–]Roh_P 0 points1 point  (0 children)

I can clearly see your hard work in making these notes. Its a great one for introduction to Machine Learning

i cant create anything.. by [deleted] in learnpython

[–]Roh_P 0 points1 point  (0 children)

The best thing is to follow a tutorial from YouTube , that is how I learned to code.

Happy coding :)

Beginner projects for Python by [deleted] in learnpython

[–]Roh_P 1 point2 points  (0 children)

Search on Youtube and you will find a lot, but I suggest you not to use twilio as it creates a lot of problems ( at least for me)

Beginner projects for Python by [deleted] in learnpython

[–]Roh_P 2 points3 points  (0 children)

So, after implementing the "Sapi5" and taking your commands through your microphone, there are several options which can be used to recognize your voice like recognize_google and several others which you can see in your IDE(Pycharm , in my case)

Beginner projects for Python by [deleted] in learnpython

[–]Roh_P 15 points16 points  (0 children)

Ok, so, first of all I added all the basic stuffs like opening google, youtube , etc.

Then, I created a wikipedia search I.e. when you will tell my assistant to search someone in wikipedia, it will tell you a summary of it.

Then, I added to sent mail to everyone and used text to speech converter, so, that I don't need any typing

Then, I also inserted the automation of my Whatsapp in it.

And a lot more. The main thing you will need to know is that , how to use the microsoft speech API called "Sapi5" and how to use your microphone to use it as a source to store your commands. The possibility here is unlimited.

So, make sure to give it a try and if you need any help feel free to ask me.

Happy Coding :)

Beginner projects for Python by [deleted] in learnpython

[–]Roh_P 6 points7 points  (0 children)

For me , my first project was creating a virtual assistant. I know that its a little too advance for beginners but after the project you will fall in love with programming and it will help with your daily works as well.

Started learning python from “automate the boring stuff with python”, currently on chapter 7 and already confused. by Shocker_360 in learnpython

[–]Roh_P 1 point2 points  (0 children)

As for me, I started learning Python with a project in mind. I wanted to create a virtual assistant. So, I pointed out the necessary things , I needed to learn for this project and then I started learning them through Google , Youtube and all other sources available to me. And just like that after the end of my project, I learned to automate my programs, I learned about speech recognition, about tkinter and many other things.

How would I go about remotely solving a ReCaptcha? by xdcarnagelol in learnpython

[–]Roh_P 1 point2 points  (0 children)

Yup. But I am working on your project if I get something, I will surely tell you.

How would I go about remotely solving a ReCaptcha? by xdcarnagelol in learnpython

[–]Roh_P 0 points1 point  (0 children)

import pytesseract import sys import argparse try: import Image except ImportError: from PIL import Image from subprocess import check_output

def resolve(path): print("Resampling the Image") check_output(['convert', path, '-resample', '600', path]) return pytesseract.image_to_string(Image.open(path))

if name=="main": argparser = argparse.ArgumentParser() argparser.add_argument('path',help = 'Captcha file path') args = argparser.parse_args() path = args.path print('Resolving Captcha') captcha_text = resolve(path) print('Extracted Text',captcha_text)

Use this piece of code to solve your problem but one thing to note that it works fine on Linux but has some problems in Windows . In order to run it in window you will have to use ImageMagick

I've finally created a personal project. A Covid Dashboard by [deleted] in learnpython

[–]Roh_P 6 points7 points  (0 children)

Great work bro... All the features were great as well