What is the single most influential book every Programmers should read
There are a lot of books that can be influential to programmers. But, what is the one book that every programmer should read? This is a question that has been asked by many, and it is still up for debate. However, there are some great contenders for this title. In this blog post, we will discuss three possible books that could be called the most influential book for programmers. So, what are you waiting for? Keep reading to find out more!
- 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
Source: Wikipedia

What are the concepts every Java C# C++ Python Rust programmer must know?
Ok…I think this is one of the most important questions to answer. According to the my personal experience as a Programmer, I would say you must learn following 5 universal core concepts of programming to become a successful Java programmer.
(1) Mastering the fundamentals of Java programming Language – This is the most important skill that you must learn to become successful java programmer. You must master the fundamentals of the language, specially the areas like OOP, Collections, Generics, Concurrency, I/O, Stings, Exception handling, Inner Classes and JVM architecture.
Recommended readings are OCA Java SE 8 Programmer by by Kathy Sierra and Bert Bates (First read Head First Java if you are a new comer ) and Effective Java by Joshua Bloch.
(2) Data Structures and Algorithms – Programming languages are basically just a tool to solve problems. Problems generally has data to process on to make some decisions and we have to build a procedure to solve that specific problem domain. In any real life complexity of the problem domain and the data we have to handle would be very large. That’s why it is essential to knowing basic data structures like Arrays, Linked Lists, Stacks, Queues, Trees, Heap, Dictionaries ,Hash Tables and Graphs and also basic algorithms like Searching, Sorting, Hashing, Graph algorithms, Greedy algorithms and Dynamic Programming.
Recommended readings are Data Structures & Algorithms in Java by Robert Lafore (Beginner) , Algorithms Robert Sedgewick (intermediate) and Introduction to Algorithms-MIT press by CLRS (Advanced).
(3) Design Patterns – Design patterns are general reusable solution to a commonly occurring problem within a given context in software design and they are absolutely crucial as hard core Java Programmer. If you don’t use design patterns you will write much more code, it will be buggy and hard to understand and refactor, not to mention untestable and they are really great way for communicating your intent very quickly with other programmers.
Recommended readings are Head First Design Patterns Elisabeth Freeman and Kathy Sierra and Design Patterns: Elements of Reusable by Gang of four.
(4) Programming Best Practices – Programming is not only about learning and writing code. Code readability is a universal subject in the world of computer programming. It helps standardize products and help reduce future maintenance cost. Best practices helps you, as a programmer to think differently and improves problem solving attitude within you. A simple program can be written in many ways if given to multiple developers. Thus the need to best practices come into picture and every programmer must aware about these things.
Recommended readings are Clean Code by Robert Cecil Martin and Code Complete by Steve McConnell.
(5) Testing and Debugging (T&D) – As you know about the writing the code for specific problem domain, you have to learn how to test that code snippet and debug it when it is needed. Some programmers skip their unit testing or other testing methodology part and leave it to QA guys. That will lead to delivering 80% bugs hiding in your code to the QA team and reduce the productivity and risking and pushing your project boundaries to failure. When a miss behavior or bug occurred within your code when the testing phase. It is essential to know about the debugging techniques to identify that bug and its root cause.
Recommended readings are Debugging by David Agans and A Friendly Introduction to Software Testing by Bill Laboon.
I hope these instructions will help you to become a successful Java Programmer. Here i am explain only the universal core concepts that you must learn as successful programmer. I am not mentioning any technologies that Java programmer must know such as Spring, Hibernate, Micro-Servicers and Build tools, because that can be change according to the problem domain or environment that you are currently working on…..Happy Coding!
Summary: There’s no doubt that books have had a profound influence on society and the advancement of human knowledge. But which book is the most influential for programmers? Some might say it’s The Art of Computer Programming, or The Pragmatic Programmer. But I would argue that the most influential book for programmers is CODE: The Hidden Language of Computer Hardware and Software. In CODE, author Charles Petzold takes you on a journey from the basics of computer hardware to the intricate workings of software. Along the way, you learn how to write code in Assembly language, and gain an understanding of how computers work at a fundamental level. If you’re serious about becoming a programmer, then CODE should be at the top of your reading list!
Programming Breaking News
- Deep dive into CheerpJ 3.0: A WebAssembly Java Virtual Machine for the browserby /u/alexp_lt (programming) on November 30, 2023 at 12:35 pm
submitted by /u/alexp_lt [link] [comments]
- Open source tool to auto-generate secure IAM policiesby /u/almeidabbm (programming) on November 30, 2023 at 12:22 pm
submitted by /u/almeidabbm [link] [comments]
- Tyto cash loan CUSTOMER Care Number()91)7090175805//7090175805//All RELATED ENQUIRY TOLL FREE…by Tyto cash loan CUSTOMER Care Number()91)7090175805 (Programming on Medium) on November 30, 2023 at 11:49 am
Continue reading on Medium »
- StockTwits’ Social Sentiment and Financial Analyst Recommendationsby Roman Paolucci (Programming on Medium) on November 30, 2023 at 11:44 am
Financial Modeling Prep’s Analyst Recs and Social SentimentContinue reading on Quant Guild »
- A Beginner’s Guide to a Career in Programming - Broken Downby Coach Attah (Programming on Medium) on November 30, 2023 at 11:44 am
Many people come to us at Digital Skill School and say they want to learn programming, some say they want to learn software engineering…Continue reading on Medium »
- Understanding the Decorator Pattern in .NET with C#by Salman Karim (Programming on Medium) on November 30, 2023 at 11:43 am
The Decorator Pattern is a structural design pattern that allows for dynamically adding behavior to individual objects without affecting…Continue reading on Medium »
- Building a RESTful API with Django Rest Frameworkby Emmanuel Olakunle (Programming on Medium) on November 30, 2023 at 11:41 am
Congratulations on choosing Django Rest Framework (DRF) for building your RESTful API! Django Rest Framework is a powerful and flexible…Continue reading on Python in Plain English »
- ⚖
$0.0⁹1595 ▲ $AIDOGE ️
1H(⇡0.9%)24H(⇡6.11%)by Jiaranai Pradaplay (Programming on Medium) on November 30, 2023 at 11:38 am
Continue reading on Medium »
- Tyto cash loan CUSTOMER Care Number()91)7090175805//7090175805//All RELATED ENQUIRY TOLL FREE…by Tyto cash loan CUSTOMER Care Number()91)7090175805 (Programming on Medium) on November 30, 2023 at 11:37 am
Continue reading on Medium »
- Websocket server and client in Bun(js)by Dávid Csejtei (Programming on Medium) on November 30, 2023 at 11:35 am
Bun has a new websocket implementation. This is orders of magnitude faster than any socket solution available in Node. See an example.Continue reading on Medium »
- Metodologia da "Primeira Venda em 24 Horas": Transformando a Casa em um Espaço de Lucro.by Sineiaoliveira (Programming on Medium) on November 30, 2023 at 11:17 am
Continue reading on Medium »
- 🚀 Gato GraphQL v1.2 (adding Persisted Queries to translate posts, import from CSV and RSS)by /u/leoleoloso (programming) on November 30, 2023 at 10:47 am
submitted by /u/leoleoloso [link] [comments]
- Amazon exec says it’s time for RTO: ‘I don’t have data to back it up, but I know it’s better’by /u/TheCactusBlue (programming) on November 30, 2023 at 10:29 am
submitted by /u/TheCactusBlue [link] [comments]
- Reactive Programming in Flutter: Understanding the Power of Observables and Computed Values with Signals, Riverpod and RxDartby /u/emanresu_2017 (programming) on November 30, 2023 at 10:24 am
submitted by /u/emanresu_2017 [link] [comments]
- Feedback from calling Rust from Pythonby /u/bitter-cognac (programming) on November 30, 2023 at 9:54 am
submitted by /u/bitter-cognac [link] [comments]
- JSX without Reactby /u/fagnerbrack (programming) on November 30, 2023 at 9:06 am
submitted by /u/fagnerbrack [link] [comments]
- LiTScript - Literate Programming with TypeScriptby /u/tjohtela (programming) on November 30, 2023 at 7:39 am
submitted by /u/tjohtela [link] [comments]
- GDlog: A GPU-Accelerated Deductive Engine [pdf]by /u/ketralnis (programming) on November 30, 2023 at 5:32 am
submitted by /u/ketralnis [link] [comments]
- Nonblocking cycle detection and iterator invalidationby /u/ketralnis (programming) on November 30, 2023 at 5:29 am
submitted by /u/ketralnis [link] [comments]
- Compiler Error Messages Considered Unhelpful: Text-Based Programming Error Message Research [pdf]by /u/ketralnis (programming) on November 30, 2023 at 5:24 am
submitted by /u/ketralnis [link] [comments]
- The Unix-Haters Handbook (1994) [pdf]by /u/ketralnis (programming) on November 30, 2023 at 5:23 am
submitted by /u/ketralnis [link] [comments]
- Visualizing Pokémon Red and Blue Connectionsby /u/ketralnis (programming) on November 30, 2023 at 5:17 am
submitted by /u/ketralnis [link] [comments]
- Herbie: Find and fix floating-point accuracy problemsby /u/ketralnis (programming) on November 30, 2023 at 5:16 am
submitted by /u/ketralnis [link] [comments]
- Choosing the Best Books for Mastering Python Algorithmsby Tutort Academy (Python on Medium) on November 30, 2023 at 4:47 am
Python, a versatile and powerful programming language, is widely recognized for its simplicity and readability. It’s no surprise that…Continue reading on Medium »
- Mastering Data Manipulation: A Comprehensive Guide on How to Effectively Work with Pandas…by viraj sameera (Python on Medium) on November 30, 2023 at 4:41 am
Setting Up Your Pandas DataFrame EnvironmentContinue reading on Medium »
- How to use the Mediumby Miinseo (Python on Medium) on November 30, 2023 at 4:40 am
1. ButtonContinue reading on Medium »
- How to use the Mediumby Miinseo (Coding on Medium) on November 30, 2023 at 4:40 am
### 1. ButtonContinue reading on Medium »
- natHACKS 2023: A Hackathon Like No Otherby NeurAlbertaTech (Coding on Medium) on November 30, 2023 at 4:38 am
EDMONTON, ALBERTA, CANADA– NeurAlbertaTech successfully organized Canada’s largest neurotechnology hackathon from the 16th to 19th…Continue reading on Medium »
- Cracking the Code: How Your Choice of Language Impacts Algorithm Masteryby Tutort Academy (Python on Medium) on November 30, 2023 at 4:34 am
When embarking on the journey to study data structures and algorithms, one of the first decisions you’ll face is which programming…Continue reading on Medium »
- Build on Aleo!by floating_monkey (Python on Medium) on November 30, 2023 at 4:33 am
Why to build on Aleo instead of Web2 and How to do it?Continue reading on Medium »
- Know this Difference or Risk Coding Pitfalls: Essential Insight for Coders!by Think Data (Coding on Medium) on November 30, 2023 at 4:26 am
Functional Programming (FP) and Object-Oriented Programming (OOP) are two distinct paradigms used in software development, each with its…Continue reading on Medium »
- Claim to know OOP? You better know thisby Think Data (Python on Medium) on November 30, 2023 at 4:17 am
Welcome to our exploration of Design Patterns in Python! Design patterns are proven solutions to recurring design problems in software…Continue reading on Medium »
- Top 4 Python Books You Should Haveby Yanick Andrade (Python on Medium) on November 30, 2023 at 4:16 am
My personal list for you, whether you’re a beginner or an advanced PythonistaContinue reading on Python in Plain English »
- What Should I Code?by diegolikescode (Coding on Medium) on November 30, 2023 at 4:11 am
Wtf should I do? Seriously, what?! Data science? Web development? Low-level programming? Embedded systems? DevOps? Maybe become a hacker…Continue reading on Medium »
- Best 3 Tools WireFramingby Fauzan Gunawan (Coding on Medium) on November 30, 2023 at 4:10 am
Dalam pengembangan produk digital, langkah awal yang kritis adalah wireframing. Wireframing adalah proses skematik dan struktural dari…Continue reading on Medium »
- Exploring AI and ML in Computer Visionby mrcloudexplorer (Python on Medium) on November 30, 2023 at 4:02 am
A Journey into Pose EstimationContinue reading on Medium »
- 75/90: Learn Core Python in 90 Days: A Beginner’s Guideby criesin.90days (Python on Medium) on November 30, 2023 at 3:31 am
Day 75: Word Embeddings with Word2VecContinue reading on Medium »
- Pygame: Python’s Hidden Gemby Sajiv Chandrasekaran (Python on Medium) on November 30, 2023 at 3:28 am
Python is used globally nowadays, mainly due to its versatility in web development, data science, and automation, but there’s also an…Continue reading on Medium »
- The Pioneers of the Coding Universeby LPC (Coding on Medium) on November 30, 2023 at 3:20 am
In the dynamic world of computer science, certain individuals stand out as true pioneers, shaping the very fabric of our digital existence…Continue reading on Medium »
- Generics in Typescript — A very easy way to learn themby Nidhisharma (Coding on Medium) on November 30, 2023 at 2:34 am
Certainly! In TypeScript, generics allow you to write reusable and flexible code by creating functions, classes, or interfaces that work…Continue reading on Towards Dev »
- 7 useful JavaScript tricksby Skinner (Coding on Medium) on November 30, 2023 at 2:29 am
Photo by Collab Media on UnsplashContinue reading on Medium »
- Top 10 Tips for Effective SEO Writing: Boost Your Content’s Visibility.by Uttkarshukla (Coding on Medium) on November 30, 2023 at 2:13 am
In the digital landscape, mastering SEO writing is paramount for enhancing your content's visibility. Here are ten expert tips to elevate…Continue reading on Medium »
- Microsoft opens ThreadX under MIT licenseby /u/stronghup (programming) on November 29, 2023 at 6:55 pm
submitted by /u/stronghup [link] [comments]
- Rest in Peace, Optaneby /u/ketralnis (programming) on November 29, 2023 at 5:04 pm
submitted by /u/ketralnis [link] [comments]
- Donkey codeby /u/ketralnis (programming) on November 29, 2023 at 5:02 pm
submitted by /u/ketralnis [link] [comments]
- Error return traces for Go, inspired by Zigby /u/ketralnis (programming) on November 29, 2023 at 5:00 pm
submitted by /u/ketralnis [link] [comments]
- BBC Basic returns on multiple platforms, open sourcedby /u/ketralnis (programming) on November 29, 2023 at 5:00 pm
submitted by /u/ketralnis [link] [comments]
- Rust std::fs slower than Python!? No, it's the hardware!by /u/KingStannis2020 (programming) on November 29, 2023 at 4:11 pm
submitted by /u/KingStannis2020 [link] [comments]
- Why Type Safety is Importantby /u/blastecksfour (programming) on November 29, 2023 at 3:30 pm
submitted by /u/blastecksfour [link] [comments]
- Modeled Instagram’s authorization logic using the domain specific language that we built purely with Golang (Source Code Available)by /u/ege-aytin (programming) on November 29, 2023 at 3:22 pm
submitted by /u/ege-aytin [link] [comments]
- Notepad++ v8.6: 20th-Year Anniversaryby /u/zoobegso (programming) on November 29, 2023 at 12:07 pm
submitted by /u/zoobegso [link] [comments]
- Parsing 8-bit integers quicklyby /u/ketralnis (programming) on November 29, 2023 at 1:55 am
submitted by /u/ketralnis [link] [comments]
- The Shopify Ruby on Rails distributed monolith runs 19 million queries per second on MySQLby /u/vladmihalceacom (programming) on November 28, 2023 at 5:29 pm
submitted by /u/vladmihalceacom [link] [comments]
- [META] The future of r/programmingby /u/ketralnis (programming) on October 9, 2023 at 4:03 pm
Hello fellow programs! tl;dr what should r/programming's rules be? And also a call for additional mods. We'll leave this stickied for a few days to gather feedback. Here are the broad categories of content that we see, along with whether they are currently allowed. ✅ means that it's currently allowed, 🚫 means that it's not currently allowed, ⚠️ means that we leave it up if it is already popular but if we catch it young in its life we do try to remove it early. ✅ Actual programming content. They probably have actual code in them. Language or library writeups, papers, technology descriptions. How an allocator works. How my new fancy allocator I just wrote works. How our startup built our Frobnicator, rocket ship emoji. For many years this was the only category of allowed content. ✅ Programming news. ChatGPT can write code. A big new CVE just dropped. Curl 8.01 released now with Coffee over IP support. ✅ Programmer career content. How to become a Staff engineer in 30 days. Habits of the best engineering managers. How to deal with your annoying coworkers, Jeff. ✅ Articles/news interesting to programmers but not about programming. Work from home is bullshit. Return to office is bullshit. There's a Steam sale on programming games. Terry Davis has died. How to SCRUMM. App Store commissions are going up. How to hire a more diverse development team. Interviewing programmers is broken. ⚠️ General technology news. Google buys its last competitor. A self driving car hit a pedestrian. Twitter is collapsing. Oculus accidentally showed your grandmother a penis. Github sued when Copilot produces the complete works of Harry Potter in a code comment. Meta cancels work from home. Gnome dropped a feature I like. How to run Stable Diffusion to generate pictures of, uh, cats, yeah it's definitely just for cats. A bitcoin VR metaversed my AI and now my app store is mobile social local. 🚫 Politics. The Pirate Party is winning in Sweden. Please vote for net neutrality. Big Tech is being sued in Europe for gestures broadly. 🚫 Gossip. Richard Stallman switches to Windows. Elon Musk farted. Linus Torvalds was a poopy-head on a mailing list. Grace Hopper Conference is now 60% male. The People's Rust Foundation is arguing with the Rust Foundation For The People. Terraform has been forked into Terra and Form. Stack Overflow sucks now. Stack Overflow is good actually. ✅ Demos with code. I wrote a game, here it is on GitHub 🚫 Demos without code. I wrote a game, come buy it! Please give me feedback on my startup (totally not an ad nosirree). I stayed up all night writing a commercial text editor, here's the pricing page. I made a DALL-E image generator. I made the fifteenth animation of A* this week, here's a GIF. 🚫 AskReddit type forum questions. What's your favourite programming language? Tabs or spaces? Does anyone else hate it when. 🚫 Support questions. How do I write a web crawler? How do I get into programming? Where's my missing semicolon? Please do this obvious homework problem for me. Personally I feel very strongly about not allowing these because they'd quickly drown out all of the actual content I come to see, and there are already much more effective places to get them answered anyway. In real life the quality of the ones that we see is also universally very low. 🚫 Surveys and 🚫 Job postings and anything else that is looking to extract value from a place a lot of programmers hang out without contributing anything itself. 🚫 Meta posts. DAE think r/programming sucks? Why did you remove my post? Why did you ban this user that is totes not me I swear I'm just asking questions. Except this meta post. This one is okay because I'm a tyrant that the rules don't apply to (I assume you are saying about me to yourself right now). 🚫 Images, memes, anything low-effort or low-content. Thankfully we very rarely see any of this so there's not much to remove but like support questions once you have a few of these they tend to totally take over because it's easier to make a meme than to write a paper and also easier to vote on a meme than to read a paper. ⚠️ Posts that we'd normally allow but that are obviously, unquestioningly super low quality like blogspam copy-pasted onto a site with a bazillion ads. It has to be pretty bad before we remove it and even then sometimes these are the first post to get traction about a news event so we leave them up if they're the best discussion going on about the news event. There's a lot of grey area here with CVE announcements in particular: there are a lot of spammy security "blogs" that syndicate stories like this. ⚠️ Posts that are duplicates of other posts or the same news event. We leave up either the first one or the healthiest discussion. ⚠️ Posts where the title editorialises too heavily or especially is a lie or conspiracy theory. Comments are only very loosely moderated and it's mostly 🚫 Bots of any kind (Beep boop you misspelled misspelled!) and 🚫 Incivility (You idiot, everybody knows that my favourite toy is better than your favourite toy.) However the number of obvious GPT comment bots is rising and will quickly become untenable for the number of active moderators we have. There are some topics such as Code of Conduct arguments within projects that I don't know where to place where we've been doing a civility check on the comments thread and using that to make the decision. Similarly some straddle the line (a link to a StackOverflow post asking for help and the reddit OP is the StackOverflow OP, but there's a lot of technical content and the reddit discussion is healthy). And even most 🚫s above are left up if there's a healthy discussion going already by the time we see it. So what now? We need to decide what r/programming should be about and we need to write those rules down so that mods can consistently apply them. The rules as written are pretty vague and the way we're moderating in practise is only loosely connected to them. We're looking for feedback on what kind of place r/programming should be so tell us below. We need additional mods. If you're interested in helping moderate please post below, saying why you'd be a good mod and what you'd would change about the space if you were. You don't need to be a moderator elsewhere but please do mention it if you are and what we could learn on r/programming that you already know. Currently I think I'm the only one going down the new page every morning and removing the rule-breaking posts. (Today these are mostly "how do I program computer" or "can somebody help me fix my printer", and obvious spam.) This results in a lot of threads complaining about the moderation quality and, well, it's not wrong. I'm not rigorously watching the mod queue and I'm not trawling comments threads looking for bad actors unless I'm in that thread anyway and I don't use reddit every single day. So if we want it to be better we'll need more human power. FAQ: Why do we need moderation at all? Can't the votes just do it? We know there is demand for unmoderated spaces in the world, but r/programming isn't that space. This is our theory on why keeping the subreddit on topic is important: Forums have the interesting property that whatever is on the front page today is what will be on the front page tomorrow. When a user comes to the site and sees a set of content, they believe that that's what this website is about. If they like it they'll stay and contribute that kind of content and if they don't like it they won't stay, leaving only the people that liked the content they saw yesterday. So the seed content is important and keeping things on topic is important. If you like r/programming then you need moderation to keep it the way that you like it (or make it be the place you wish it were) because otherwise entropic drift will make it be a different place. And once you have moderation it's going to have a subjective component, that's just the nature of it. Because of the way reddit works, on a light news day r/programming doesn't get enough daily content for articles to meaningfully compete with each other. Towards the end of the day if I post something to r/programming it will immediately go to the front page of all r/programming subscribers. So while it's true that sub-par and rule-breaking posts already do most of their damage before the mods even see them, the whole theory of posts competing via votes alone doesn't really work in a lower-volume subreddit. Because of the mechanics of moderation it's not really possible to allow the subreddit to be say 5% support questions. Even if we wanted to allow it to be a small amount of the conten, the individuals whose content was removed would experience and perceive this as a punitive action against them. That means that any category we allow could theoretically completely take over r/programming (like the career posts from last week) so we should only allow types of content that we'd be okay with taking it over. Personally my dream is for r/programming to be the place with the highest quality programming content, where I can go to read something interesting and learn something new every day. That dream is at odds with allowing every piece of blogspam and "10 ways to convince your boss to give you a raise, #2 will get you fired!" submitted by /u/ketralnis [link] [comments]