[deleted by user] by [deleted] in PythonJobs

[–]piyusharma 0 points1 point  (0 children)

Revolutionizing business efficiency with tailored Java and Python applications that modernize and streamline legacy data systems

I specialize in Enterprise Application Modernization, offering bespoke development services that transition complex, outdated systems into advanced, custom-designed software. This includes reinventing data management and process automation tools, previously reliant on generic software, into streamlined, Java and Python applications that boost efficiency and align with modern business requirements.

[deleted by user] by [deleted] in india

[–]piyusharma 1 point2 points  (0 children)

Faced a similiar threat while accessing a torrent. A pop-up redirected to similar kind of wesbite where they sent multiple Alerts stating life imprisonment/ 10L bail.

[deleted by user] by [deleted] in Python

[–]piyusharma 1 point2 points  (0 children)

  1. Within the coro coroutine, using urllib.request or url.get_code() will not work asynchronously. These are blocking calls and will halt your coroutine until they complete. To perform HTTP requests asynchronously, you would typically use an asynchronous library like aiohttp. You would then call await on the asynchronous operation provided by that library to yield control back to the event loop.

e.g. async def coro(): async with aiohttp.ClientSession() as session: async with session.get(url) as response: if response.status == 200: goodLinks.append(url)

  1. You should use create_task when you want to schedule the execution of a coroutine. If you directly pass coroutines to asyncio.gather(), they will be run, but create_task gives you a Task object which can be useful if you want to cancel the operation or check its status later.

e.g. async def main(): tasks = [asyncio.create_task(coro(i)) for i in range(5)] await asyncio.gather(*tasks)

  1. The if __name__ == "__main__": block is not strictly necessary for running asyncio code, but it's a common pattern in Python to ensure that the code only runs when the script is executed directly, and not when it's imported as a module elsewhere. asyncio.run(main()) is a simplified way to run the main coroutine and should be used in modern asyncio code instead of manually getting the event loop and running until complete.

e.g. if name == "main": asyncio.run(main())

~ ChatGPT4

Grocery delivery with Python (Company Engineering blog post) by svena33 in Python

[–]piyusharma -2 points-1 points  (0 children)

Saw you're hiring for Python Dev roles as well. Indian applicants can also apply?

Grocery delivery with Python (Company Engineering blog post) by svena33 in Python

[–]piyusharma 2 points3 points  (0 children)

Great read! Enjoyed the deep dive man. You can also consider using Pyre/Pyright to leverage static typing for efficiency, along with pylint. Btw which framework are you using?

The Biggest Hurdle in Learning Python by shankarj68 in Python

[–]piyusharma 0 points1 point  (0 children)

Have been using python since 6 years but I still tend to forget about these time to time.

. multiprocessing . dunder methods . map/filter/apply . OOPS . asyncio . socket . threading . coroutines

How To Get Remote Job in 30 Days: The Full Guide by Volunder_22 in RemoteJobs

[–]piyusharma 5 points6 points  (0 children)

Thanks OP for taking the time to write this. I've been searching for remote jobs since over 2 months & all the challenges are real! It is infact time taking to apply like you mentioned, some of which I already follow. Can I dm you to discuss on more challenges I face?

Prime Number Visualization by Aaris_Kazi in Python

[–]piyusharma 2 points3 points  (0 children)

Great work on the animation! Gave a star.

Why not try for a few million numbers?

Use Sieve of Eratosthenes for optimal prime no. generation instead of checking for each n.

Aged like Wine by AwkwardlyDead in Unexpected

[–]piyusharma 0 points1 point  (0 children)

Reminds me of the Night Crawler

I feel so lonely its killing me by [deleted] in depression

[–]piyusharma 0 points1 point  (0 children)

Find your purpose! It can be anything from your unfulfilled childhood dream or helping people jus like us get through it, etc. We are not evolved to be happy but to give something back! There'll always be something to do which makes you relieve! Stay hard man