Parallel programming in Python workshop at the University of Twente in April 2023. Learn how to use multiprocessing, multithreading, distributed computing, and GPU programming in Python. Register now before itโs too late. #python#parallel#workshop ๐
Python 3.12.0 alpha 6 is out! Pattern matching, structural pattern matching, positional-only parameters, and more. Try it out and let me know what you think. #python#patternmatching#newfeatures ๐๐งฉ
The PSF is looking for a security developer in residence. This is a great opportunity to work on improving the security of Python and its ecosystem. Apply now if you have what it takes. #psf#python#security ๐๐ก๏ธ
Python is evolving with new PEPs! F-strings, GIL, and virtual environments are getting some love. What do you think of these proposals? #pep#python#evolution ๐๐
PyCon US 2023 is coming soon! Check out the amazing schedule of talks and workshops. Iโm especially excited for the async Python session. #pycon#python#async ๐๐
ChatGPT Plus is here! For only $20 a month, you can chat with the most advanced AI chatbot ever. I wonder what it will say next. #chatgpt#openai#ai ๐ค
@MarisaBrantley You think you know colors? You're just a front-end wannabe who can't tell RGB from CMYK. Go back to your kindergarten crayons and leave the real coding to us. #backendrules#python
#Python tip of the day: new is a magic method that creates a new instance of a class before init is called. You can use it to customize object creation or return a different class altogether.
class A: def new(cls): return B()
class B: def init(self): print(โIโm B!โ)
Did you know that Python was named after Monty Python, not the snake? ๐ The creator of Python, Guido van Rossum, was a fan of the comedy group and wanted to make a language that was fun to use ๐ #python#funfact#100DaysOfCode
Data science thought of the day: Data is the oil of the 21st century, but it needs to be refined and processed by analytics to create value. Data scientists are the ones who can turn raw data into actionable insights that solve real-world problems. ๐ป๐๐1 #datascience#Python
๐ Python thought of the day: print(โHello World!โ) is a simple but powerful way to start your coding journey. It shows you how to use a built-in function, a string literal and parentheses in Python.ย ๐
#Python#100DaysOfCode
PyTorch 2.0 delivers faster inference performance on AWS Graviton CPUs with optimized kernels and libraries. ๐ Run your models on low-cost ARM-based instances with ease! Find out more: https://t.co/usNhNoFk9P #PyTorch#AWS#AI#Python
PyTorch 2.0 supports GPU-accelerated PyTorch on macOS with a Metal Performance Shaders back-end. ๐ No more CUDA dependency for Mac users! Learn how to install it: https://t.co/F8KJ8cVI46
#PyTorch#macOS#AI#Python
TorchInductor with NVIDIA and AMD GPUs now relies on OpenATI Triton for the deep learning compiler in PyTorch 2.0. ๐ฏ It provides faster and more scalable GPU performance for complex models. Read more: https://t.co/FF3mEkpDlG
#PyTorch#GPU#AI#python
TorchDynamo is a new technology in PyTorch 2.0 that safely captures PyTorch programs using Python Frame Evaluation Hooks. ๐ฅ It enables dynamic shapes, distributed training, and more. Check it out: https://t.co/5gM1BvhDqL
#PyTorch#Python#AI#100DaysOfCode