Elevate Your Career with AI & Machine Learning For Dummies PRO
Ready to accelerate your career in the fast-growing fields of AI and machine learning? Our app offers user-friendly tutorials and interactive exercises designed to boost your skills and make you stand out to employers. Whether you're aiming for a promotion or searching for a better job, AI & Machine Learning For Dummies PRO is your gateway to success. Start mastering the technologies shaping the future—download now and take the next step in your professional journey!
Download the AI & Machine Learning For Dummies PRO App:
iOS - Android
Our AI and Machine Learning For Dummies PRO App can help you Ace the following AI and Machine Learning certifications:
- AWS Certified AI Practitioner (AIF-C01): Conquer the AWS Certified AI Practitioner exam with our AI and Machine Learning For Dummies test prep. Master fundamental AI concepts, AWS AI services, and ethical considerations.
- Azure AI Fundamentals: Ace the Azure AI Fundamentals exam with our comprehensive test prep. Learn the basics of AI, Azure AI services, and their applications.
- Google Cloud Professional Machine Learning Engineer: Nail the Google Professional Machine Learning Engineer exam with our expert-designed test prep. Deepen your understanding of ML algorithms, models, and deployment strategies.
- AWS Certified Machine Learning Specialty: Dominate the AWS Certified Machine Learning Specialty exam with our targeted test prep. Master advanced ML techniques, AWS ML services, and practical applications.
- AWS Certified Data Engineer Associate (DEA-C01): Set yourself up for promotion, get a better job or Increase your salary by Acing the AWS DEA-C01 Certification.
How do you make a Python loop faster?
Programmers are always looking for ways to make their code more efficient. One way to do this is to use a faster loop. Python is a high-level programming language that is widely used by developers and software engineers. It is known for its readability and ease of use. However, one downside of Python is that its loops can be slow. This can be a problem when you need to process large amounts of data. There are several ways to make Python loops faster. One way is to use a faster looping construct, such as C. Another way is to use an optimized library, such as NumPy. Finally, you can vectorize your code, which means converting it into a format that can be run on a GPU or other parallel computing platform. By using these techniques, you can significantly speed up your Python code.
According to Vladislav Zorov, If not talking about NumPy or something, try to use list comprehension expressions where possible. Those are handled by the C code of the Python interpreter, instead of looping in Python. Basically same idea like the NumPy solution, you just don’t want code running in Python.
Example: (Python 3.0)
Python list traversing tip:
Instead of this: for i in range(len(l)): x = l[i]
Use this for i, x in enumerate(l): …
TO keep track of indices and values inside a loop.
Twice faster, and the code looks better.
Finally, developers can also improve the performance of their code by making use of caching. By caching values that are computed inside a loop, programmers can avoid having to recalculate them each time through the loop. By taking these steps, programmers can make their Python code more efficient and faster.
Very Important: Don’t worry about code efficiency until you find yourself needing to worry about code efficiency.
The place where you think about efficiency is within the logic of your implementations.
This is where “big O” discussions come in to play. If you aren’t familiar, here is a link on the topic
What are the top 10 Wonders of computing and software engineering?
Do you want to learn python we found 5 online coding courses for beginners?
Python Coding Bestsellers on Amazon
https://amzn.to/3s3KXc3
The Best Python Coding and Programming Bootcamps
We’ve also included a scholarship resource with more than 40 unique scholarships to provide additional financial support.
Python Coding Breaking News
- Can anyone explain to me why the answer is A-by /u/AlexaDives (Python) on December 13, 2024 at 11:22 pm
What will the console display when we run the code? Script.py————- average-grade = "B" average-grade = "A-" subject = "Programming" print (average_grade) ———————- Output A- ————— Why is the answer not the below options of programming and B and why is it A-? Programming B А- submitted by /u/AlexaDives [link] [comments]
- I created Musync - a python CLI tool for syncing playlists between music streaming servicesby /u/Physical_Read_3553 (Python) on December 13, 2024 at 4:37 pm
Hi r/Python - a couple of months ago decided to try out Youtube Music as a long time Spotify user. I ended up really liking it, but was hesitant to fully make the switch for fear of losing all of my playlists, followed artists, liked songs etc. So I decided to create Musync. Link to source code What it does Musync allows you sync your own user-created playlists, followed playlists and followed artists from one streaming service to another in a single command e.g. musync unisync --source spotify --destination youtube Target Audience Spotify users interested in trying out Youtube Music (or vice versa). Youtube Music users who want to share playlists with Spotify users (or vice versa). Quickstart Installation Using pip: pip install pymusync Using pipx: pipx install pymusync You can verify the installation worked and see a list of commands by running: musync --help For more details on how to use, see the README. Feedback welcome! submitted by /u/Physical_Read_3553 [link] [comments]
- Cloud-Based Python Libraries: Does This Exist Already?by /u/nilipilo (Python) on December 13, 2024 at 2:36 pm
Hey everyone! I had an idea and wanted to see if something like this exists or get your thoughts. What if Python libraries like pandas or numpy could be accessed directly from the cloud, instead of installing them locally? You’d just fetch and use them dynamically, like: from cloudlib import LibraryClient pandas = LibraryClient.get("pandas", version="2.0.0") df = pandas.read_csv("https://example.com/data.csv") This could solve issues like: Reducing the need for virtual environments. Saving local storage. Making onboarding and CI/CD pipelines faster. The cloud would handle library installation, execution, and versioning, while you just write code. Does something like this already exist? Would you use it? Let me know your thoughts! submitted by /u/nilipilo [link] [comments]
- Essential Python web securityby /u/PhilipLGriffiths88 (Python) on December 13, 2024 at 2:19 pm
Found this resource, thought others may appreciate it - https://opensource.net/essential-python-web-security/ This is the first post in a series: “The absolute minimum every Python web application developer must know about security.” submitted by /u/PhilipLGriffiths88 [link] [comments]
- Free Python IDE for Android 🤩by /u/blaze-code (Python) on December 13, 2024 at 6:27 am
Blaze IDE for Python on Android is now released! Play Store https://play.google.com/store/apps/details?id=com.blaze.code&hl=en_IN Target Audience Many students across the world have an interest for coding but they are not able to fulfill their dreams because they don't own a laptop or a computer. But no need to worry, because Blaze is here to solve the problem! Features of Blaze Runs via web so minimal ram requirements Pypi modules are supported (except gui) Fast code compiler Less than 15 mb app size Download & Support Please support the initiative by giving ⭐⭐⭐⭐⭐ reviews! Hope you will love Blaze! Comparisions Other projects have atleast 300 mb storage while this is Just 15mb Projects for blaze https://github.com/techxsarthak/Blaze-code submitted by /u/blaze-code [link] [comments]
- Is full stack django or full stack fastapi better startup web apps?by /u/WynActTroph (Python) on December 13, 2024 at 4:02 am
Wanting to build mvp for idea I have, Python has been my first language of choice. Need to have ability for rapid development but scale and performance is priority. submitted by /u/WynActTroph [link] [comments]
- Need Python contributors for an open-source top-down survival game with rogue lite/like elements.by /u/BornTailor6583 (Python) on December 13, 2024 at 3:52 am
If anyone is interested, you can contribute or download the source code here Poppadomus/pygameTDS (yes, I know you shouldn't make games in python). submitted by /u/BornTailor6583 [link] [comments]
- Friday Daily Thread: r/Python Meta and Free-Talk Fridaysby /u/AutoModerator (Python) on December 13, 2024 at 12:00 am
Weekly Thread: Meta Discussions and Free Talk Friday 🎙️ Welcome to Free Talk Friday on /r/Python! This is the place to discuss the r/Python community (meta discussions), Python news, projects, or anything else Python-related! How it Works: Open Mic: Share your thoughts, questions, or anything you'd like related to Python or the community. Community Pulse: Discuss what you feel is working well or what could be improved in the /r/python community. News & Updates: Keep up-to-date with the latest in Python and share any news you find interesting. Guidelines: All topics should be related to Python or the /r/python community. Be respectful and follow Reddit's Code of Conduct. Example Topics: New Python Release: What do you think about the new features in Python 3.11? Community Events: Any Python meetups or webinars coming up? Learning Resources: Found a great Python tutorial? Share it here! Job Market: How has Python impacted your career? Hot Takes: Got a controversial Python opinion? Let's hear it! Community Ideas: Something you'd like to see us do? tell us. Let's keep the conversation going. Happy discussing! 🌟 submitted by /u/AutoModerator [link] [comments]
- CommanderAI / LLM-Driven Action Generation on Windows with Langchain (openai)by /u/Outrageous-Pea9611 (Python) on December 12, 2024 at 10:00 pm
Hey everyone, I’m sharing a project I worked on some time ago: a LLM-Driven Action Generation on Windows with Langchain (openai). An automation system powered by a Large Language Model (LLM) to understand and execute instructions. The idea is simple: you give a natural language command (e.g., “Open Notepad and type ‘Hello, world!’”), and the system attempts to translate it into actual actions on your Windows machine. Key Features: LLM-Driven Action Generation: The system interprets requests and dynamically generates Python code to interact with applications. Automated Windows Interaction: Opening and controlling applications using tools like pywinauto and pyautogui. Screen Analysis & OCR: Capture and analyze the screen with Tesseract OCR to verify UI states and adapt accordingly. Speech Recognition & Text-to-Speech: Control the computer with voice commands and receive spoken feedback. Current State of the Project: This is a proof of concept developed a while ago and not maintained recently. There are many bugs, unfinished features, and plenty of optimizations to be done. Overall, it’s more a feasibility demo than a polished product. Why Share It? If you’re curious about integrating an LLM with Windows automation tools, this project might serve as inspiration. You’re welcome to contribute by fixing bugs, adding features, or suggesting improvements. Consider this a starting point rather than a finished solution. Any feedback or assistance is greatly appreciated! How to Contribute: The source code is available on GitHub (link in the comments). Feel free to fork, open PRs, file issues, or simply use it as a reference for your own projects. In Summary: This project showcases the potential of LLM-driven Windows automation. Although it’s incomplete and imperfect, I’m sharing it to encourage discussion, experimentation, and hopefully the emergence of more refined solutions! Thanks in advance to anyone who takes a look. Feel free to share your thoughts or contributions! https://github.com/JacquesGariepy/CommanderAI submitted by /u/Outrageous-Pea9611 [link] [comments]
- Turtle text engine without the write functionby /u/RichRoof7927 (Python) on December 12, 2024 at 9:30 pm
I created a python text engine, but just recently realised it was a huge waste of time due to the write functions existence https://github.com/MunHammer/Turtle-text-engine-without-the-write-function What my project does It can write letters using turtle without the write function Target Audience Just something to play with I guess Comparison no other projects like this have been seen by me submitted by /u/RichRoof7927 [link] [comments]
- News Article Scrapper - Telegram automationby /u/Shmlack (Python) on December 12, 2024 at 3:25 pm
Hey guys, I wanted to share a project I’ve been working on for the past few days. Using Scrapy, I’m scraping news websites to extract English-language articles. I’m storing the articles in an SQLite3 database and posting them on a Telegram channel: GeorgiaNewsDaily. What My Project Does Recent events unfolding in Georgia (the country) made me realize how important it is to share information from trusted sources with a foreign audience. Before starting this project, I was completely unfamiliar with Scrapy or the Telegram Python library. The learning curve wasn’t super steep, but it definitely had its challenges. Each website had its own quirks, which made the scraping logic tricky. One of the biggest issues was avoiding duplicate articles that had already been extracted and posted. To solve this, I used hashing for article URLs. In the database, there’s a field to check whether an article has been posted—POSTED = 0 means “not posted,” and POSTED = 1 means “posted.” When the spider stores the articles in the database, the default value is 0. After the script responsible for posting to Telegram finishes, it updates the field to 1. For deployment, I used PythonAnywhere. It’s fairly easy to use, though I had a hard time figuring out how to properly schedule the spiders. Target Audience Anyone who is interested in the similar project. Comparison I don't know any similar project to compare it to. Anyway, feel free to check out the Telegram channel (GeorgiaNewsDaily) if you’re curious about how it works or just want to see the content. And here’s the GitHub link: https://github.com/nodri09/codespaces-blank submitted by /u/Shmlack [link] [comments]
- python-json-logger has changed handsby /u/nicholashairs (Python) on December 12, 2024 at 2:18 pm
Hi r/python, I wanted to introduce myself as the new maintainer of python-json-logger and hopefully establish a bit of trust. Understandably there has been some anxiety over the PEP 541 Request that I submitted given the importance / popularity of the package - especially in the context of the XZ Utils backdoor earlier in the year. I think it's important to highlight that although this was prompted by the PEP 541 request, it was not done through PEP 541 mechanisms. In other words this was a decision by the original maintainer and not the PyPI Administrators. For those wanting to know more about me (to prove that I'm not some statebased actor subverting the package), I'm a security professional and maintain a few other packages. You might also have seen some of my blog posts on reddit. Finally apologies if the newly released versions broke your things - despite my best efforts at testing and maintaining backwards compatibility it appears some bugs managed to slip through. submitted by /u/nicholashairs [link] [comments]
- My First Python Project: URL to NDEF Converter! 🎉by /u/BST04 (Python) on December 12, 2024 at 11:48 am
Hi everyone, I’m thrilled to share my first Python project, url2ndef, a tool that converts URLs into NDEF (NFC Data Exchange Format) messages. You can use these messages to program NFC tags. GitHub: url2ndef What My Project Does This script takes a URL as input and encodes it into the NDEF format, which is compatible with NFC-enabled devices. It’s a simple and lightweight way to prepare data for NFC tags, whether you’re working on IoT applications, marketing use cases, or just having fun with NFC tech. Target Audience This is primarily a learning project but could also be useful for: Beginners interested in Python or NFC tech. Developers exploring NFC-related applications. Hobbyists looking for a simple tool to work with NFC tags. It’s not production-ready, but I hope it can serve as a foundation or inspiration for others! Comparison There are more advanced tools like NXP TagWriter or NFC Tools, but those are typically GUI-based and cater to broader use cases. url2ndef is purely a Python CLI script designed for simplicity and learning. This was a great learning experience for me, and I’d love to hear your feedback or suggestions for improvement. If you’re interested in NFC, let’s chat! Thanks for checking out my project. 😊 submitted by /u/BST04 [link] [comments]
- Programming languages that compile to Python?by /u/jsonathan (Python) on December 12, 2024 at 10:05 am
All I'm aware of is Coconut, which is a functional programming language that is essentially a superset of Python syntax. Are there any other languages like this? submitted by /u/jsonathan [link] [comments]
- Open-source Python Time-wastersby /u/Careful_Tea3877 (Python) on December 12, 2024 at 8:41 am
Hi r/Python community! I recently made an time waster program with python. You can fork it here: https://github.com/LarryEmerson12/TimeWasters/ It simply just shows some 0s, and then animates it. You can edit the speed at how you want. Target Audience: Use this when you're bored. Comparison: I do not know about other projects. If there are any issues, feel free to comment. submitted by /u/Careful_Tea3877 [link] [comments]
- Python OCR for each element/section reading multiple details of multiple objectsby /u/Tiny_Solid_3325 (Python) on December 12, 2024 at 8:41 am
Hey I have a list of buttons underneath each other (sections). Each button has some details, pretty many different, I need to read some data with OCR, some with is image in that region,... I really struggle to find something reliable, anyone got any tips. And please if you do not dont write, pytesseract is not the way to go here... submitted by /u/Tiny_Solid_3325 [link] [comments]
- Open-source Python Uno shufflerby /u/Careful_Tea3877 (Python) on December 12, 2024 at 2:53 am
Hi r/Python community! I recently made an Uno shuffler program with python. You can fork it here: https://github.com/LarryEmerson12/UnoShuffler/. It simply just generates the whole Uno deck, and then shuffles it. You can shuffle it as many times as you want. Target Audience: You can implement it in your other projects. Comparison: I do not know about other projects. If there are any issues, feel free to comment. submitted by /u/Careful_Tea3877 [link] [comments]
- Thursday Daily Thread: Python Careers, Courses, and Furthering Education!by /u/AutoModerator (Python) on December 12, 2024 at 12:00 am
Weekly Thread: Professional Use, Jobs, and Education 🏢 Welcome to this week's discussion on Python in the professional world! This is your spot to talk about job hunting, career growth, and educational resources in Python. Please note, this thread is not for recruitment. How it Works: Career Talk: Discuss using Python in your job, or the job market for Python roles. Education Q&A: Ask or answer questions about Python courses, certifications, and educational resources. Workplace Chat: Share your experiences, challenges, or success stories about using Python professionally. Guidelines: This thread is not for recruitment. For job postings, please see r/PythonJobs or the recruitment thread in the sidebar. Keep discussions relevant to Python in the professional and educational context. Example Topics: Career Paths: What kinds of roles are out there for Python developers? Certifications: Are Python certifications worth it? Course Recommendations: Any good advanced Python courses to recommend? Workplace Tools: What Python libraries are indispensable in your professional work? Interview Tips: What types of Python questions are commonly asked in interviews? Let's help each other grow in our careers and education. Happy discussing! 🌟 submitted by /u/AutoModerator [link] [comments]
- My first program I coded with Python!by /u/Phil_Carrier (Python) on December 11, 2024 at 4:40 pm
Hi r/python community! I finally completed my first program! You can find it here: https://github.com/Phil-Carrier/lookilooki/ . I know it is unnecessary, but I'm proud I got it to work and I finally have something to waste my time with. What my project does: I drew an image of a head with Paint, then imported it into Python and made its unnaturally big nose always point to the mouse pointer. That's it. Target audience: Anyone who likes very unnecessary programs to waste their time. Comparison: I don't know about other projects. submitted by /u/Phil_Carrier [link] [comments]
- Introducing My New Favicon Extraction Toolby /u/Beneficial_Expert448 (Python) on December 11, 2024 at 1:26 pm
What My Project Does I've created a tool that extracts favicons from any website. It works by parsing HTML pages, checking fallback routes for icons, and even supports inline base64-encoded images. The tool can also verify availability, guess missing icon sizes, and download the favicons for further processing. It aims to streamline favicon retrieval for web scraping, data analysis or just curious exploration. Links Source code: https://github.com/AlexMili/extract_favicon/ Documentation: https://alexmili.github.io/extract_favicon/ Target Audience The project is designed for developers and data enthusiasts who work with web metadata. Whether you’re building a crawler, enhancing a web directory, or simply analyzing website branding. My intention is to maintain and improve it, making it stable and ready for production use cases. Comparison While there are other favicon extraction libraries out there, many of them have become unmaintained or lack features like asynchronous support, thorough availability checks, and automatic size guessing. My project is actively maintained, built with modern Python standards, and provides a more robust, flexible solution than many existing alternatives. submitted by /u/Beneficial_Expert448 [link] [comments]
Active Hydrating Toner, Anti-Aging Replenishing Advanced Face Moisturizer, with Vitamins A, C, E & Natural Botanicals to Promote Skin Balance & Collagen Production, 6.7 Fl Oz
Age Defying 0.3% Retinol Serum, Anti-Aging Dark Spot Remover for Face, Fine Lines & Wrinkle Pore Minimizer, with Vitamin E & Natural Botanicals
Firming Moisturizer, Advanced Hydrating Facial Replenishing Cream, with Hyaluronic Acid, Resveratrol & Natural Botanicals to Restore Skin's Strength, Radiance, and Resilience, 1.75 Oz
Skin Stem Cell Serum
Smartphone 101 - Pick a smartphone for me - android or iOS - Apple iPhone or Samsung Galaxy or Huawei or Xaomi or Google Pixel
Can AI Really Predict Lottery Results? We Asked an Expert.
Djamgatech
Read Photos and PDFs Aloud for me iOS
Read Photos and PDFs Aloud for me android
Read Photos and PDFs Aloud For me Windows 10/11
Read Photos and PDFs Aloud For Amazon
Get 20% off Google Workspace (Google Meet) Business Plan (AMERICAS): M9HNXHX3WC9H7YE (Email us for more)
Get 20% off Google Google Workspace (Google Meet) Standard Plan with the following codes: 96DRHDRA9J7GTN6(Email us for more)
FREE 10000+ Quiz Trivia and and Brain Teasers for All Topics including Cloud Computing, General Knowledge, History, Television, Music, Art, Science, Movies, Films, US History, Soccer Football, World Cup, Data Science, Machine Learning, Geography, etc....
List of Freely available programming books - What is the single most influential book every Programmers should read
- Bjarne Stroustrup - The C++ Programming Language
- Brian W. Kernighan, Rob Pike - The Practice of Programming
- Donald Knuth - The Art of Computer Programming
- Ellen Ullman - Close to the Machine
- Ellis Horowitz - Fundamentals of Computer Algorithms
- Eric Raymond - The Art of Unix Programming
- Gerald M. Weinberg - The Psychology of Computer Programming
- James Gosling - The Java Programming Language
- Joel Spolsky - The Best Software Writing I
- Keith Curtis - After the Software Wars
- Richard M. Stallman - Free Software, Free Society
- Richard P. Gabriel - Patterns of Software
- Richard P. Gabriel - Innovation Happens Elsewhere
- Code Complete (2nd edition) by Steve McConnell
- The Pragmatic Programmer
- Structure and Interpretation of Computer Programs
- The C Programming Language by Kernighan and Ritchie
- Introduction to Algorithms by Cormen, Leiserson, Rivest & Stein
- Design Patterns by the Gang of Four
- Refactoring: Improving the Design of Existing Code
- The Mythical Man Month
- The Art of Computer Programming by Donald Knuth
- Compilers: Principles, Techniques and Tools by Alfred V. Aho, Ravi Sethi and Jeffrey D. Ullman
- Gödel, Escher, Bach by Douglas Hofstadter
- Clean Code: A Handbook of Agile Software Craftsmanship by Robert C. Martin
- Effective C++
- More Effective C++
- CODE by Charles Petzold
- Programming Pearls by Jon Bentley
- Working Effectively with Legacy Code by Michael C. Feathers
- Peopleware by Demarco and Lister
- Coders at Work by Peter Seibel
- Surely You're Joking, Mr. Feynman!
- Effective Java 2nd edition
- Patterns of Enterprise Application Architecture by Martin Fowler
- The Little Schemer
- The Seasoned Schemer
- Why's (Poignant) Guide to Ruby
- The Inmates Are Running The Asylum: Why High Tech Products Drive Us Crazy and How to Restore the Sanity
- The Art of Unix Programming
- Test-Driven Development: By Example by Kent Beck
- Practices of an Agile Developer
- Don't Make Me Think
- Agile Software Development, Principles, Patterns, and Practices by Robert C. Martin
- Domain Driven Designs by Eric Evans
- The Design of Everyday Things by Donald Norman
- Modern C++ Design by Andrei Alexandrescu
- Best Software Writing I by Joel Spolsky
- The Practice of Programming by Kernighan and Pike
- Pragmatic Thinking and Learning: Refactor Your Wetware by Andy Hunt
- Software Estimation: Demystifying the Black Art by Steve McConnel
- The Passionate Programmer (My Job Went To India) by Chad Fowler
- Hackers: Heroes of the Computer Revolution
- Algorithms + Data Structures = Programs
- Writing Solid Code
- JavaScript - The Good Parts
- Getting Real by 37 Signals
- Foundations of Programming by Karl Seguin
- Computer Graphics: Principles and Practice in C (2nd Edition)
- Thinking in Java by Bruce Eckel
- The Elements of Computing Systems
- Refactoring to Patterns by Joshua Kerievsky
- Modern Operating Systems by Andrew S. Tanenbaum
- The Annotated Turing
- Things That Make Us Smart by Donald Norman
- The Timeless Way of Building by Christopher Alexander
- The Deadline: A Novel About Project Management by Tom DeMarco
- The C++ Programming Language (3rd edition) by Stroustrup
- Patterns of Enterprise Application Architecture
- Computer Systems - A Programmer's Perspective
- Agile Principles, Patterns, and Practices in C# by Robert C. Martin
- Growing Object-Oriented Software, Guided by Tests
- Framework Design Guidelines by Brad Abrams
- Object Thinking by Dr. David West
- Advanced Programming in the UNIX Environment by W. Richard Stevens
- Hackers and Painters: Big Ideas from the Computer Age
- The Soul of a New Machine by Tracy Kidder
- CLR via C# by Jeffrey Richter
- The Timeless Way of Building by Christopher Alexander
- Design Patterns in C# by Steve Metsker
- Alice in Wonderland by Lewis Carol
- Zen and the Art of Motorcycle Maintenance by Robert M. Pirsig
- About Face - The Essentials of Interaction Design
- Here Comes Everybody: The Power of Organizing Without Organizations by Clay Shirky
- The Tao of Programming
- Computational Beauty of Nature
- Writing Solid Code by Steve Maguire
- Philip and Alex's Guide to Web Publishing
- Object-Oriented Analysis and Design with Applications by Grady Booch
- Effective Java by Joshua Bloch
- Computability by N. J. Cutland
- Masterminds of Programming
- The Tao Te Ching
- The Productive Programmer
- The Art of Deception by Kevin Mitnick
- The Career Programmer: Guerilla Tactics for an Imperfect World by Christopher Duncan
- Paradigms of Artificial Intelligence Programming: Case studies in Common Lisp
- Masters of Doom
- Pragmatic Unit Testing in C# with NUnit by Andy Hunt and Dave Thomas with Matt Hargett
- How To Solve It by George Polya
- The Alchemist by Paulo Coelho
- Smalltalk-80: The Language and its Implementation
- Writing Secure Code (2nd Edition) by Michael Howard
- Introduction to Functional Programming by Philip Wadler and Richard Bird
- No Bugs! by David Thielen
- Rework by Jason Freid and DHH
- JUnit in Action
#BlackOwned #BlackEntrepreneurs #BlackBuniness #AWSCertified #AWSCloudPractitioner #AWSCertification #AWSCLFC02 #CloudComputing #AWSStudyGuide #AWSTraining #AWSCareer #AWSExamPrep #AWSCommunity #AWSEducation #AWSBasics #AWSCertified #AWSMachineLearning #AWSCertification #AWSSpecialty #MachineLearning #AWSStudyGuide #CloudComputing #DataScience #AWSCertified #AWSSolutionsArchitect #AWSArchitectAssociate #AWSCertification #AWSStudyGuide #CloudComputing #AWSArchitecture #AWSTraining #AWSCareer #AWSExamPrep #AWSCommunity #AWSEducation #AzureFundamentals #AZ900 #MicrosoftAzure #ITCertification #CertificationPrep #StudyMaterials #TechLearning #MicrosoftCertified #AzureCertification #TechBooks
Top 1000 Canada Quiz and trivia: CANADA CITIZENSHIP TEST- HISTORY - GEOGRAPHY - GOVERNMENT- CULTURE - PEOPLE - LANGUAGES - TRAVEL - WILDLIFE - HOCKEY - TOURISM - SCENERIES - ARTS - DATA VISUALIZATION
Top 1000 Africa Quiz and trivia: HISTORY - GEOGRAPHY - WILDLIFE - CULTURE - PEOPLE - LANGUAGES - TRAVEL - TOURISM - SCENERIES - ARTS - DATA VISUALIZATION
Exploring the Pros and Cons of Visiting All Provinces and Territories in Canada.
Exploring the Advantages and Disadvantages of Visiting All 50 States in the USA
Health Health, a science-based community to discuss human health
- Ozempic Link to Rare Vision Loss Risk Confirmed in Studyby /u/Maxii08 on December 13, 2024 at 9:54 pm
submitted by /u/Maxii08 [link] [comments]
- Why farms, not wet markets, are the pandemic threat you should be worrying aboutby /u/Jojuj on December 13, 2024 at 9:15 pm
submitted by /u/Jojuj [link] [comments]
- On vaccines, Trump wants RFK Jr. to explore a question that’s already been answeredby /u/msnbc on December 13, 2024 at 8:07 pm
submitted by /u/msnbc [link] [comments]
- ‘No one should have to be fighting cancer and insurance at the same time’by /u/Positive_Owl_2024 on December 13, 2024 at 7:17 pm
submitted by /u/Positive_Owl_2024 [link] [comments]
- McKinsey & Co. to pay $650 million to settle U.S. opioid consulting probe, ex-partner will plead guilty to obstructionby /u/nbcnews on December 13, 2024 at 3:17 pm
submitted by /u/nbcnews [link] [comments]
Today I Learned (TIL) You learn something new every day; what did you learn today? Submit interesting and specific facts about something that you just found out here.
- TIL in ancient Roman times a pound of lavender flowers was worth the same amount as 50 haircuts from your local barber.by /u/hiltothedance on December 13, 2024 at 9:13 pm
submitted by /u/hiltothedance [link] [comments]
- TIL in 1979, the descendants of the famous feuding Hatfield and McCoy families appeared on a special week-long taping of Family Feud. A pig was kept on stage during the games. The McCoys won 3-2, but the Hatfields won more money totalby /u/MaroonTrucker28 on December 13, 2024 at 8:47 pm
submitted by /u/MaroonTrucker28 [link] [comments]
- TIL: In 2016, a man stole $5 million from his workplace as an accounting department manager over the course of 7 years and spent $1 million of it on a single mobile video game, Game of War. Outside of that, he spent it on cars, furniture, and sports tickets.by /u/Flares117 on December 13, 2024 at 8:22 pm
submitted by /u/Flares117 [link] [comments]
- TIL when Guinness World Records stopped monitoring the record for the longest time to stay awake in 1997, the record holder at the time was Robert McDonald who went 453 hours 40 minutes (18 days 21 hours 40 minutes) without sleeping in 1986.by /u/tyrion2024 on December 13, 2024 at 4:44 pm
submitted by /u/tyrion2024 [link] [comments]
- TIL that in 1927 heavyweight boxing champion Gene Tunney received a check for $1,000,000 for his second fight vs. Jack Dempsey, making him the first athlete in history to be paid $1,000,000 in a single year, or for a single sporting event.by /u/johncoktosin on December 13, 2024 at 4:14 pm
submitted by /u/johncoktosin [link] [comments]
Reddit Science This community is a place to share and discuss new scientific research. Read about the latest advances in astronomy, biology, medicine, physics, social science, and more. Find and submit new publications and popular science coverage of current research.
- A new study from Cedars-Sinai Cancer and the University of Colorado Anschutz Medical Campus reveals a potential way to overcome tumor resistance to a common chemotherapy drug called cisplatin.by /u/CUAnschutzMed on December 13, 2024 at 8:59 pm
submitted by /u/CUAnschutzMed [link] [comments]
- New device produces ammonia from thin air, cutting carbon emissionsby /u/calliope_kekule on December 13, 2024 at 8:29 pm
submitted by /u/calliope_kekule [link] [comments]
- Clinical association of habitual breakfast skipping with cognitive decline and neurodegeneration among older adultsby /u/magicinfernum on December 13, 2024 at 7:29 pm
submitted by /u/magicinfernum [link] [comments]
- Consortium cancer maps provide a 3D view of tumor evolution: « New 3D blueprints that highlight tumor complexity reveal several new discoveries, some of which challenge existing theories of cancer progression. »by /u/fchung on December 13, 2024 at 7:17 pm
submitted by /u/fchung [link] [comments]
- Anti-aging effect of extracellular vesicles from mesenchymal stromal cells on senescence-induced chondrocytes in osteoarthritisby /u/AgingUS on December 13, 2024 at 6:58 pm
submitted by /u/AgingUS [link] [comments]
Reddit Sports Sports News and Highlights from the NFL, NBA, NHL, MLB, MLS, and leagues around the world.
- De'Vondre Campbell won't be part of the 49ers after his refusal to enter a game, Kyle Shanahan saysby /u/Oldtimer_2 on December 13, 2024 at 9:46 pm
submitted by /u/Oldtimer_2 [link] [comments]
- 49ers TE George Kittle on LB De'Vondre Campbell refusing to enter last night's game with the Ramsby /u/Oldtimer_2 on December 13, 2024 at 7:03 pm
submitted by /u/Oldtimer_2 [link] [comments]
- U.S. Olympic & Paralympic Committees put coach on leave after abuse allegationsby /u/Oldtimer_2 on December 13, 2024 at 6:21 pm
submitted by /u/Oldtimer_2 [link] [comments]
- 49ers' Shanahan: De'Vondre Campbell refused to play 2nd half vs. Ramsby /u/Oldtimer_2 on December 13, 2024 at 5:43 pm
submitted by /u/Oldtimer_2 [link] [comments]
- Report: Yankees acquiring All-Star closer Devin Williams from Brewersby /u/Oldtimer_2 on December 13, 2024 at 5:41 pm
submitted by /u/Oldtimer_2 [link] [comments]