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
- Does it make more sense to learn Python myself and do the programming on my project later, or should I hire someone to create the project for me, that I can then take over once I learn it?by /u/jrjocham (Python) on March 26, 2023 at 7:34 pm
For deeper context, check out my profile for my previous post in r/it for further details. The shortened version of it is that I have a repetitive data entry process that I do for my job. It's something I do for myself because the results actively predict where I need to be to effect the best results. My company makes deliveries of a sort to over 1000 diffrent locations across my state. Knowing what our trucks are capable of delivering let's me know the operational condition of the equipment inside. As the companies service tech, I'm searching for broken systems that need repair, so I can get a very clear heads up of the problem areas long before the customers call it in. (Example: If we regularly make a delivery of 600# and the last two deliveries show its dropped down to 50#, there's obviously something wrong there) I have a website database where every delivery is recorded. I've created a Google sheets file that's set up with formulas to crunch all the numbers for me. All I have to do is copy that delivery data from the website to the sheet and it automaticly calculates the rest. The website takes 60 seconds at least to collect the delivery data on one delivery. I compare it to what I have in the sheet and add in the new information. In order to keep up with the deliveries, I usually try to do data entry on about 100 entries each day. This process takes at least an hour every day whether it's a work day, weekend, or vacation. I get to spend at least an hour every day doing data entry work. The goal I'm looking to accomplish is to move my Google sheets file over to some kind of automated program that will collect the data and crunch the numbers automaticly for me. Such a program would literally give me an hour more of free time every day. So it's definitely worth it to do. So the question is, how should I do this? Should I learn how to program and do this project myself, or does it make sense to hire someone to create the program for me, and then when I learn programming, I can take over the program. On the one hand, either way, I plan on learning programming, so I can save money and make the program myself, it's a win for me. On the other hand, having someone else do it for me means I get an experienced hand to do it correctly the first time without the guess work that comes with doing while learning. Additionally, saving that hour every day gives me that much more time I could put towards learning programming myself. If I go that route, what would be a fair charge to expect for such a project, and is there anyone who would want to take on such a project? submitted by /u/jrjocham [link] [comments]
- I was giving courses on Udemy, I want to try the Youtube this time. I uploaded a Python Fundamentals course to the Youtubeby /u/onurbaltaci (Python) on March 26, 2023 at 7:05 pm
Hello, I am an Instructor on Udemy and I wanted to publish a Python Fundamentals course in Youtube. You can access to the first lecture of the course from the following link, thank you! https://www.youtube.com/watch?v=yCASixTyMMY submitted by /u/onurbaltaci [link] [comments]
- I made a complete Data Science Project using Python and uploaded it to the Youtube with the explanations of all the codesby /u/onurbaltaci (Python) on March 26, 2023 at 6:59 pm
Hello, I made a complete Data Science project from scratch (Data analysis, Feature engineering and Machine Learning) and uploaded it to the youtube. I explained the codes and how they work in my video. I'm leaving the link below. Have a nice day, thanks! https://www.youtube.com/watch?v=od_mSGnf18o submitted by /u/onurbaltaci [link] [comments]
- I created Pamet - a FOSS desktop app for organizing thoughts and notesby /u/vko- (Python) on March 26, 2023 at 6:48 pm
Github: https://github.com/v-ko/pamet There's a gazillion note taking apps, I know, but when I started the project - there was none with the GUI I imagined. Currently Miro is pretty close, but it's closed source and it's not possible to keep your data locally, so that's the main reason I continued developing Pamet. Demo A bit of history I couple of years ago I began rewriting the app from C++/Qt to Python/Qt (PySide6). I started out with over-engineering and over-thinking it, drowning in the cross-platform-GUI swamp of technologies and so on. In the end I decided I'll use mainly Python (since I use it for work and also I love the syntax). I would try to be noobishly DRY and the reuse the actions/states with Brython in the browser and then Cordova for mobile (sounds like a great debugging experience right?). So some time passed, I stripped my gui-architecture ambitions to a state manager (Fusion) and finished the initial version of the app. In retrospect - I should've done the standard thing nowadays - make a web frontend (e.g. React) with an Electron desktop app and whatever for mobile. I'll probably transition in that direction in time. But for now - I'm happy with the results. Capabilities and philosophy ("Pamet" means memory in Bulgarian.)The main idea is to have 2D map-like pages (pan, zoom navigation) with notes, that can be made and styled fast. There's hyperlinking between different pages. There's a backup service by default (though restoring backups is manual for now). You can import images (audio, video - not yet implemented). You can have web links as notes, as well as activate scripts (open by double-click). Most of the testing is done on Linux. The Windows build is outdated ATM, so I'd recommend a PyPI install. I have yet to showcase the way I'm using the app, but I beilieve that everyone makes their own pattern in time. The 2d plane + hyperlinking GUI is the UI closest to the way I connect concepts in my mind, and organize clusters of them. Pamet is not supposed to be a do-it-all program, but rather it should serve for organizing ideas, "second-brain" is fitting buzzword right now. But it won't try to be a spreadsheet editor, image editor, specialized kanban, etc. For example right now you can import images, but editing them is done by double-clicking them to open the file, and then using whatever software you have. So the point is to keep references and possibly previews of external resources, but integrate with the existing tools, rather than reinvent the wheel. I'd appreciate feedback The project is still quite immature. I've been using it daily for quite a while now, but I realize that my habits are a niche, so I don't expect it would be applicable for everyone. I'd be thankful for any and all constructive feedback. About the interface, about the code, about what similar software you're using, etc. Still this is not exactly a release I wouldn't dub this post a release, since there's quite some more work to be done. The user documentation is quite minimal. Installation is done only from PyPI or source. It's mostly a showcase. But I've put quite a lot of work in the project, and I really wanted to put it out there and get feedback. submitted by /u/vko- [link] [comments]
- Which area/field for new Python programmer?by /u/redditjorge6 (Python) on March 26, 2023 at 6:18 pm
Hi. What's the easiest area/field to get into if you're a beginner Python programmer? I did 17 years programming in Coldfusion and am now learning Python. I appreciate any advice. Thanks. submitted by /u/redditjorge6 [link] [comments]
- py-template: one-click Python environment v0.2.0 updateby /u/szymonmaszke (Python) on March 26, 2023 at 5:43 pm
Hey again, Original post with more context here. TLDR - what is it? py-template is a GitHub Template repository for Python, which provides: Opinionated linting, autoformatting, etc. (this update changes flake8 to substantially faster ruff CI/CD, test coverage, automated documentation creation pre-commit integration for easy local development similar to pipelines Automated dependency management via poetry, renovatebot This update also includes more extensive documentation describing how to adjust the template to your liking (e.g. consistent Python versioning, shell aliases for one click setup and more), click here to check our docs. We hope you are gonna find it as useful as we do (and if so, star/follow is always appreciated), thank you! submitted by /u/szymonmaszke [link] [comments]
- Simplify Your Programming Journey with These 3 Command-Line Aliases using Pygments & jqby /u/lokiju_jukilo (Python) on March 26, 2023 at 3:38 pm
submitted by /u/lokiju_jukilo [link] [comments]
- FCL (function-centered-language) is a functional language written in Pythonby /u/FUS3N (Python) on March 26, 2023 at 2:31 pm
FizzBuzz implementation in FCL Hello, recently made an interpreted language in python and haven't decided on its use cases or if I wanna be serious about it or not but just wanted to share. The idea is to use function for everything although the language currently doesn't even support creating function which I will add soon. There's probably thousands of languages like this but wanted to find a unique use-case for now the real problem is speed so might rewrite in C++ or rust. Also would like some feedback from pro language creators if my implementation is correct or not? for an average interpreted langauge. Link: FCL (GitHub) submitted by /u/FUS3N [link] [comments]
- I developed a CLI tool for querying CSV, Parquet and JSON filesby /u/yettiontheweb (Python) on March 26, 2023 at 1:44 pm
Filequery is an open source CLI tool I've been working on so I can easily use SQL to query CSV, Parquet and JSON files. I wrote this as a Python package which is essentially a wrapper around DuckDB. This lets you one or more queries against a file or a directory containing files and see the result in the terminal. You can also save the query results as CSV or Parquet files. Open to feedback and suggestions. https://pypi.org/project/filequery/ submitted by /u/yettiontheweb [link] [comments]
- Starlite updates March '22 | 2.0 is comingby /u/provinzkraut (Python) on March 26, 2023 at 1:01 pm
Disclaimer: It says "March '22" in the title but it should say "March '23". The new are from today, not a year ago. Hello fellow Pythoneers, it's time for me to once more talk about Starlite for a bit! Recap What's Starlite? Starlite is a flexible and highly performant ASGI framework, focused on building APIs while delivering great developer experience by offering ready-built solutions for common tasks such as ORM integration, caching, session management, key/value stores, OpenAPI-schema generation and interactive API docs, type safety and much more. You can read more about Starlite's features in our documentation! So what's new? Starlite 2.0 on the horizon It's been over two months since we announced Starlite 2.0, more as a side note than major news, so it's about time to see how things are going! Firstly, as with any proper project, there has been a slight feature creep, and the 2.0 update will be a bit more involved as initially expected. But we have it under control. We can stop at any time. I promise. Jokes aside, the announcement still holds true: Starlite 2.0 retains most of its core functionality, and from a user perspective, not a lot has to change when upgrading your app from 1.x to 2.0; If you don't want to make use of new features, the upgrade path will mostly consist of changing some import paths and slightly adjusting a few configuration values. But let's take a look at what has changed, and what is yet to come. Adieu Pydantic Starting with the release of 2.0.0alpha1, Starlite replaced most of its internal models that relied on Pydantic (mostly with data- or plain classes). In the following releases leading up to 2.0, we will remove the last dependencies on Pydantic, and you can use Starlite completely Pydantic-free. But why? The main motivations behind this were performance improvements and flexibility: Performance Pydantic is a great library, but being fast is not one of its strengths. Its performance will likely increase drastically in version 2.0, with the core validation logic written in Rust, but early tests indicate that it will likely still be slower than other libraries when it comes to (de)serialization. In many cases this might not be an issue, but having the option to switch to an alternative if desired is still a valuable option, and can have significant impact on the overall performance of an application. Flexibility Pydantic is by far not the only library of its kind, with prominent members of the same class being attrs, cattrs or even plain dataclasses for some use cases. Starlite currently only supports modelling data with Pydantic, which means this will necessarily force an integration of Pydantic into the rest of the application's layers, be it by directly using Pydantic models there, or simply the need of an additional "translation layer". By removing Starlite's reliance on Pydantic, we're opening doors to a new, more flexible type of integration, which will ultimately allow to plugin in arbitrary modelling libraries. Does this mean I won't be able to use Starlite with Pydantic anymore? No. Starlite will continue to support Pydantic modelling of any kind, and you'll be able to keep using Pydantic models everywhere you've used them before. Pydantic will be removed as a core dependency eventually, which means Starlite will be able to run without it, but there are no plans to stop supporting it. All new DTOs DTOs will become more integral in Starlite 2.0, taking care of most of the data conversion between various types of models. This feature is yet to be released, but it will allow you to seamlessly use data modelled with for example Pydantic, SQLAlchemy, msgspec or dataclasses in your route handlers, without the need for an intermediary model; The conversion will be handled by the specific DTO "backend" implementation. This new paradigm also makes it trivial to add support for any such modelling library, by simply implementing an appropriate backend. emit("We have an event bus now") Starting with the first alpha release - 2.0.0alpha1 -, Starlite includes a simple event bus that can be used to emit and receive events, supporting both synchronous and asynchronous listeners. Currently only a basic in-memory, per-process backend is included, but future versions will add support for inter-process communication by adding backends for Redis, RabbitMQ and others. This is an exciting new feature, as it allows powerful patterns such as websocket broadcasting, or can, in combination with background tasks, eliminate the need for external task queues such as celery or arq. Data stores Another exciting new feature coming in 2.0 are the all new, fully integrated data stores. They are simple key/value stores, including backends for the file system, memory, or common key/value databases like Redis. These stores are managed centrally by a registry, providing easy configuration, isolation and a hierarchical structure via namespacing, and integration with third parties such as plugins. Via the registry it's possible to easily access stores used by various built-in features such as rate-limiting or request caching, making them available throughout the entire application context. What else is new? To keep this post (relatively) brief I won't mention all the changes going into 2.0, so if you want to know everything that's changed until now, you can take a look at the detailed 2.x changelog, which includes all the currently released changes, features (and bugfixes). What's left to do There are a few more things that have to be done before Starlite 2.0 will be released. Yesterday the second alpha version (2.0.0alpha2) has been released, but it won't be the last development release before 2.0.0. A few major items on the 2.0 todo-list currently are: Finishing new DTO implementation New signature modelling backend using attrs Remove the remaining parts that rely on Pydantic Writing a migration guide for 1.x > 2.0 Writing tutorials / prose documentation for the SQLAlchemy repository and of course lots of minor issue that need taking care of. There is no set release date for 2.0, but as things are currently going, I expect one more alpha release before the first beta version comes out. At this point, no more breaking changes will be introduced, allowing the beta to be tested for a while before it can be considered stable and ready for the final release. And as always, if you want to get involved or in touch, check out Starlite on GitHub or join our Discord! submitted by /u/provinzkraut [link] [comments]
- Python executable makersby /u/M4l4wn (Python) on March 26, 2023 at 12:52 pm
Hi there ! I'm curious what are you using to generate executable files for you Python scripts because I'm getting angry at some popular ones. I got some problems for my program with Pyinstaller as I think it didn't put the dependencies into the executable, the program wasn't working on computers without Python installed. As for cx_Freeze, it got the dependencies into it ( at least I think, as It created some extra files .dlls and other stuff ), but the executable didn't work at all because it got an error at run about input lines that I've put in the code(in main.py, not setup.py) ( the program works in Pycharm ). submitted by /u/M4l4wn [link] [comments]
- How to Ban 1+N in Djangoby /u/hackflow (Python) on March 26, 2023 at 12:27 pm
I always thought of 1+N as a thing that you just keep in your head, catch on code reviews or via performance regressions. But preventing it might be a good idea too. Read more submitted by /u/hackflow [link] [comments]
- What are your thoughts on Codon compiler having a paid licence?by /u/Asleep-Dress-3578 (Python) on March 26, 2023 at 9:17 am
submitted by /u/Asleep-Dress-3578 [link] [comments]
- A Python library that hashes text to a port number in the dynamic range (49152-65535)by /u/brunneis (Python) on March 26, 2023 at 1:56 am
Hashport is a function that generates a port number using a deterministic hashing algorithm. It takes a string input as the name of the project or entity that requires a port number and returns an integer value that falls within the range of ports typically used for dynamic assignments (49152 to 65535). The function uses the SHA-256 algorithm to generate a hash of the input string. The resulting hash is then converted to an integer, and the integer is scaled to the desired range using modular arithmetic. Hashport is useful in scenarios where a fixed and deterministic port assignment is required. By hashing the project name, the same input will always generate the same output, ensuring consistency and predictability in port assignments. Python library: https://github.com/labteral/hashport submitted by /u/brunneis [link] [comments]
- Python-Selenium-Action: Easily Run Selenium with Python via Github Actions using Headless or Non-Headless browsers!by /u/siilkysmooth (Python) on March 26, 2023 at 12:23 am
submitted by /u/siilkysmooth [link] [comments]
- Sunday Daily Thread: What's everyone working on this week?by /u/Im__Joseph (Python) on March 26, 2023 at 12:00 am
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your current project or your pet project; whatever you want to share. submitted by /u/Im__Joseph [link] [comments]
- Machine Learning with Project - Complete Tutorialby /u/thetech_learner (Python) on March 25, 2023 at 7:23 pm
submitted by /u/thetech_learner [link] [comments]
- Warning, Streamlit collects a lot of data!by /u/IntelligentDust6249 (Python) on March 25, 2023 at 3:46 pm
I just found out that Streamlit defaults to sending telemetry data to Streamlit (and so sends it to Snowflake). While they say this is only metadata and not app information, I'm not totally sure I trust that. https://docs.streamlit.io/library/advanced-features/configuration#telemetry submitted by /u/IntelligentDust6249 [link] [comments]
- Zang - A dynamically typed programming language made in pythonby /u/cmnews08 (Python) on March 25, 2023 at 2:56 pm
It even has a text editor with syntax highlighting! what do you guys think? https://github.com/cmspeedrunner/Zang submitted by /u/cmnews08 [link] [comments]
- pywinterminal -- fun project for Windows/Linux adminsby /u/mcscwizzyy (Python) on March 25, 2023 at 1:31 pm
Hey everyone, I figured someone could benefit from this. I mainly use a Mac or Linux. I migrated from Windows earlier last year and haven't looked back. However, in my job as a Cloud Engineer/DevOps Engineer/WhateverTheyTellMeToBeNeer I still have to maintain some Windows servers. I'm a big terminal guy. I like being able to SSH into a server when I need a few quick things and be done. Well, SSH into Windows is possible now. However, most enterprises do not support this and you are working off of older based severs that would not even support this. This means you have to RDP into the server. I HATE RDP!!!! This got me thinking, well, what about if you make a terminal to connect from Mac/Linux to Windows using the WinRM library in Python? I started thinking about it more, what if I used something that does it already and does it well? Ansible!!! What if you used Ansible as the backend, and created a mock terminal you could send commands through??? Winner!!! So pywinterminal is exactly that. It is a fancy forever loop that allows you to send commands to a Windows server through a mock terminal. It maintains history and directory state. So if you send a command "cd c:\windows\temp", then the next command you sent "dir", it would output the the dir of "C:\windows\temp". This is still a work in progress, but it has been an absolute life saver for me. There are limitations. if you set a variable, value is not not maintained. This is something I am looking into. HOWEVER, you can send piped commands and multiple commands like "get-service | where name -like *win*" or "mkdir c:\temp; cd c:\temp; dir". It uses Ansible in the backend to send all this stuff back and forth. I may be able integrate this a bit more and have a custom playbook to keep a sort of "variable state". Until then it has a basic functionality. It an open source project, and it is in an early alpha stage so their will be bugs. I have not extensively tested everything, but for general use it works. Code is a bit rough and by no means final. I do this in my spare time as I have time, which isn't much. Please enjoy! I hope it makes someone's life easier! https://github.com/mcscwizzy/pywinterminal submitted by /u/mcscwizzyy [link] [comments]


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....

If you are looking for an all-in-one solution to help you prepare for the AWS Cloud Practitioner Certification Exam, look no further than this AWS Cloud Practitioner CCP CLFC01 book below.

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 #AWSCLF-C01 #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