├── README.md ├── _.config.yml ├── _config.yml └── quotes.md /README.md: -------------------------------------------------------------------------------- 1 | # Programming-Quotes 2 | Repository containing various programming quotes 3 | 4 | [Quotes](https://omkar-ajnadkar.github.io/Programming-Quotes/quotes.html) 5 | 6 | Let's create a list of programming related quotes in this Hacktoberfest... 7 | 8 | ## Rules: 9 | 10 | 1. Add quotes to file `quotes.md` 11 | 2. Don't forget to mention name of author of quote in bold 12 | 3. Quote should start with `>` in markdown. 13 | 14 | ``` 15 | 1. > You might not think that programmers are artists, but programming is an extremely creative profession. It's logic-based creativity. __John Romero__ 16 | ``` 17 | 18 | Here is an example: 19 | 1. > You might not think that programmers are artists, but programming is an extremely creative profession. It's logic-based creativity. __John Romero__ 20 | 21 | ## How to Contribute to this repository 22 | 23 | - Star this repository using 'Star' button on the top. 24 | - Click on Fork Repository using the 'Fork' button on the top. 25 | - Clone the forked repository on your PC. Using this command on your Git bash or any terminal with git support : 26 | ```sh 27 | git clone https://github.com/YOUR_USERNAME/Programming-Quotes.git 28 | ``` 29 | 30 | - Now create a new branch with this command: 31 | ```sh 32 | git branch branchname 33 | ``` 34 | and then use that branch by this command: 35 | ```sh 36 | git checkout branchname 37 | ``` 38 | 39 | - Go ahead and make changes 40 | - After making changes use this command to add the changes: 41 | ```sh 42 | git add -A 43 | git commit -m "message here" 44 | ``` 45 | - After that use this command: 46 | ```sh 47 | git push origin branchname 48 | ``` 49 | - Create a pull request, and wait for Pull Request to get merged. 50 | 51 | ## Contributors 52 | [![](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/images/0)](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/links/0)[![](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/images/1)](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/links/1)[![](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/images/2)](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/links/2)[![](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/images/3)](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/links/3)[![](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/images/4)](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/links/4)[![](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/images/5)](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/links/5)[![](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/images/6)](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/links/6)[![](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/images/7)](https://sourcerer.io/fame/Omkar-Ajnadkar/Omkar-Ajnadkar/Programming-Quotes/links/7) 53 | -------------------------------------------------------------------------------- /_.config.yml: -------------------------------------------------------------------------------- 1 | plugins: 2 | - jekyll-relative-links 3 | relative_links: 4 | enabled: true 5 | collections: true 6 | include: 7 | - README.md 8 | - quotes.html 9 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /quotes.md: -------------------------------------------------------------------------------- 1 | 1. > You might not think that programmers are artists, but programming is an extremely creative profession. It's logic-based creativity. __John Romero__ 2 | 2. > Talk is cheap. Show me the code. __Linus Torvalds__ 3 | 3. > I'm not a great programmer; I'm just a good programmer with great habits. __Kent Beck__ 4 | 4. > If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization. __Gerald Weinberg__ 5 | 5. > No one in the brief history of computing has ever written a piece of perfect software. It's unlikely that you'll be the first. __Andy Hunt__ 6 | 6. > What one programmer can do in one month, two programmers can do in two months. __Fred Brooks__ 7 | 7. > Programming: when the ideas turn into the real things. __Maciej Kaczmarek__ 8 | 8. > Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.__Rick Cook__ 9 | 9. > Punishments include such things as flashbacks, flooding of unbearable emotions, painful body memories, flooding of memories in which the survivor perpetrated against others, self-harm, and suicide attempts. __Alison Miller__ 10 | 10. > Computers are good at following instructions,but not at reading your mind. __Donald Knuth__ 11 | 11. > 80% of Computer Science is detective work. You have to investigate to determine what did and didn't happen and why. __Tom Bredemeier__ 12 | 12. > Most good programmers do programming not because they expect to get paid or get adulation by the public, but because it is fun to program. __Linus Torvalds__ 13 | 13. > The idea that I can be presented with a problem, set out to logically solve it with the tools at hand, and wind up with a program that could not be legally used because someone else followed the same logical steps some years ago and filed for a patent on it is horrifying. __John Carmack__ 14 | 14. > Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? __Brian Kernighan__ 15 | 15. > Simple is better than complex. Complex is better than complicated. __Tim Peters__ 16 | 16. > Every good Programmers are start from Noobgrammers. __Naufal Yudhistira__ 17 | 17. > Any fool can write code that a computer can understand. Good programmers write code that humans can understand __Martin Fowler__ 18 | 18. > Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. __John woods__ 19 | 19. > A language that doesn't affect the way you think about programming is not worth knowing. __Alan J. Perlis__ 20 | 20. > Everybody in this country should learn to program a computer, because it teaches you how to think! __Steve Jobs__ 21 | 21. > When debugging, novices insert corrective code; experts remove defective code. __Richard Pattis__ 22 | 22. > Before software can be reusable it first has to be usable. __Ralph Johnson__ 23 | 23. > Enlightenment is the unprogrammed state. __Jed McKenna__ 24 | 24. > Walking on water and developing software from a specification are easy if both are frozen. __Edward V Berard__ 25 | 25. > Programming isn't about what you know; it's about what you can figure out. __Chris Pine__ 26 | 26. > The question of whether a computer can think is no more interesting than the question of whether a submarine can swim. __Edsger Dijkstra__ 27 | 27. > Debugging is like being the detective in a crime movie where you are also the murderer. __Filipe Fortes__ 28 | 28. > when you don't create things, you become defined by your tastes rather than ability. ... 29 | 29. > Without requirements and design, programming is the art of adding bugs to an empty text file. __Louis Srygley__ 30 | 30. > Computers are good at following instructions,but not at reading your mind. __Donald Knuth__ 31 | 31. > Go To Statement Considered Harmful. __Edsger Dijkstra__ 32 | 32. > At the end of the day we're all code monkeys trying to make weird libraries work together by writing shitty hacks. __Kristijan Ristovski__ 33 | 33. > Premature optimization is the root of all evil. __Donald Knuth__ 34 | 34. > Kids who are good at traditional school—repeating rote concepts and facts on a test—can fall apart in a situation where that isn’t enough. Programming rewards the experimental, curious mind. __Ketil Moland Olsen__ 35 | 35. > We build our computer systems the way we build our cities: over time, without a plan, and on top of ruins. __Ellen Ullman__ 36 | 36. > If debugging is the process of removing software bugs, then programming must be the process of putting them in. __Edsger Dijkstra__ 37 | 37. > Programming can be fun, so can cryptography; however they should not be combined. __Kreitzberg and Shneiderman__ 38 | 38. > Truth can only be found in one place: the code. __Robert C. Martin__ 39 | 39. > Code is like humor. When you have to explain it, it’s bad. __Cory House__ 40 | 40. > Don’t worry if it doesn’t work right. If everything did, you’d be out of a job. __Mosher’s Law of Software Engineering__ 41 | 41. > Programming is the art of algorithm design and the craft of debugging errant code. __Ellen Ullman__ 42 | 42. > People think that computer science is the art of geniuses but the actual reality is the opposite, just many people doing things that build on eachother, like a wall of mini stones. __Donald Knuth__ 43 | 43. > Whether you want to uncover the secrets of the universe , or you just want to pursue a career in 21st century , basic computer programming is an essential skills to learn. __Stephen Hawking__ 44 | 44. > Computers themselves, and software yet to be developed, will revolutionize the way we learn. __Steve Jobs__ 45 | 45. > Everyday life is like programming, I guess. If you love something you can put beauty into it. __Donald Knuth__ --------------------------------------------------------------------------------