Chaitat > Chaitat's Quotes

Showing 1-30 of 270
« previous 1 3 4 5 6 7 8 9
sort by

  • #1
    Robert C. Martin
    “Code, without tests, is not clean. No matter how elegant it is, no matter how readable and accessible, if it hath not tests, it be unclean. Dave”
    Robert C. Martin, Clean Code: A Handbook of Agile Software Craftsmanship

  • #2
    Robert C. Martin
    “If we all checked-in our code a little cleaner than when we checked it out, the code simply could not rot.”
    Robert C. Martin, Clean Code: A Handbook of Agile Software Craftsmanship

  • #3
    Susan Wise Bauer
    “Newton wrote, “Amicus Plato amicus Aristoteles magis amica veritas.” That is Latin for, “Plato is my friend, Aristotle is my friend, but my best friend is truth.” When”
    Susan Wise Bauer, The Story of the World: History for the Classical Child, Volume 3: Early Modern Times

  • #4
    Susan Wise Bauer
    “God made this country for us,” he wrote to Governor Grey. “If it were a whale, we might slice it in half. But it cannot be sliced. We will have to fight for the land that lies between us.” Governor”
    Susan Wise Bauer, The Story of the World: History for the Classical Child, Volume 3: Early Modern Times

  • #5
    “He accepted the job with one proviso: he would work alone.”
    Merriam-Webster, Merriam-Webster's Advanced Learner's English Dictionary

  • #6
    “code is read more than it’s written. This”
    Paul Barry, Head First Python: A Brain-Friendly Guide

  • #7
    “The sqlalchemy module is to SQL geeks what requests is to web geeks: indispensable. The”
    Paul Barry, Head First Python: A Brain-Friendly Guide

  • #8
    “Django really is the “framework for perfectionists with deadlines”.”
    Nigel George, Mastering Django: Core: The Complete Guide to Django 1.8 LTS

  • #9
    “(In the real world, you’d want to use a custom search system of some sort. Search the Web for open-source full-text search to get an idea of the possibilities.)”
    Nigel George, Mastering Django: Core: The Complete Guide to Django 1.8 LTS

  • #10
    “If you use custom Manager objects, take note that the first Manager Django encounters (in the order in which they’re defined in the model) has a special status. Django interprets this first Manager defined in a class as the “default” Manager, and several parts of Django (though not the admin application) will use that Manager exclusively for that model.”
    Nigel George, Mastering Django: Core: The Complete Guide to Django 1.8 LTS

  • #11
    “Jacob Kaplan-Moss, one of Django’s original developers, says “Code without tests is broken by design.”
    Nigel George, Mastering Django: Core: The Complete Guide to Django 1.8 LTS

  • #12
    “There’s No Such Thing as Too Much RAM”
    Nigel George, Mastering Django: Core: The Complete Guide to Django 1.8 LTS

  • #13
    “When you pass a primitive value it is copied into the parameter. We call this “passing by value.” So if you change the value of the parameter in your function body it has no affect on our original argument’s value. The exception to this is passing an array or object, and we’ll get to that in a bit.”
    Eric Freeman, Head First HTML5 Programming: Building Web Apps with JavaScript

  • #14
    “A function without a return statement returns undefined.”
    Eric Freeman, Head First HTML5 Programming: Building Web Apps with JavaScript

  • #15
    “If a variable is declared outside a function, it’s GLOBAL. If it’s declared inside a function, it’s LOCAL.”
    Eric Freeman, Head First HTML5 Programming: Building Web Apps with JavaScript

  • #16
    “when you assign a value to a variable name that hasn’t been previously declared, it is treated as a new, global variable. So be careful, if you do this within a function you are creating a global variable. Note”
    Eric Freeman, Head First HTML5 Programming: Building Web Apps with JavaScript

  • #17
    “Window is the global object. It may seem a little weird, but the window object acts as your global environment, so the names of any properties or methods from window are resolved even if you don’t prepend them with window. In addition, any global variables you define are also put into the window namespace, so you can reference them as window.myvariable.”
    Eric Freeman, Head First HTML5 Programming: Building Web Apps with JavaScript

  • #18
    “When you link to multiple JavaScript files from your page, all the global variables are defined in the same global space.”
    Eric Freeman, Head First HTML5 Programming: Building Web Apps with JavaScript

  • #19
    “If you assign a new variable without using the var keyword, that variable will be global, even if you are first assigning it in a function.”
    Eric Freeman, Head First HTML5 Programming: Building Web Apps with JavaScript

  • #20
    “You’ve probably seen latitude and longitude specfied in both degrees/minutes/seconds, such as (47°38’34’’, 122°32’32’’), and in decimal values, such as (47.64, -122.54). With the Geolocation API we always use decimal values. If”
    Eric Freeman, Head First HTML5 Programming: Building Web Apps with JavaScript

  • #21
    “Also notice that longitude West and latitude South are represented by negative values.”
    Eric Freeman, Head First HTML5 Programming: Building Web Apps with JavaScript

  • #22
    Mark Winegardner
    “Ideas,” Hagen said, “are shit. It’s knowing what to do with an idea that matters.”
    Mark Winegardner, The Godfather Returns

  • #23
    “Speaking activates a different part of the brain. If you’re trying to understand something, or increase your chance of remembering it later, say it out loud. Better”
    Eric Freeman, Head First JavaScript Programming: A Brain-Friendly Guide

  • #24
    “Booleans are named after George Boole, an English mathematician who invented Boolean logic. You’ll”
    Eric Freeman, Head First JavaScript Programming: A Brain-Friendly Guide

  • #25
    “JavaScript: Don’t judge me by my bad parts, learn the good stuff and stick with that!”
    Eric Freeman, Head First JavaScript Programming: A Brain-Friendly Guide

  • #26
    “JavaScript creates all local variables at the beginning of a function whether you declare them or not (this is called “hoisting” and we’ll come back to it later), but the variables are all undefined until they are assigned a value, which might not be what you want.”
    Eric Freeman, Head First JavaScript Programming: A Brain-Friendly Guide

  • #27
    “the truth is JavaScript actually makes two passes over your page: in the first pass it reads all the function definitions, and in the second it begins executing your code. So,”
    Eric Freeman, Head First JavaScript Programming: A Brain-Friendly Guide

  • #28
    “You can extend your object at any time with new properties. To do this you just specify the new property and give it a value. For”
    Eric Freeman, Head First JavaScript Programming: A Brain-Friendly Guide

  • #29
    “When you delete a property, you’re not just deleting the value of the property, you’re deleting the property itself. And, if you try to use fido.dogYears after deleting it, it will evaluate to undefined.”
    Eric Freeman, Head First JavaScript Programming: A Brain-Friendly Guide

  • #30
    “Using a method to change a property is another example of encapsulation whereby we can often improve the maintainability and extensibility of code by letting an object worry about how it gets things done. It’s”
    Eric Freeman, Head First JavaScript Programming: A Brain-Friendly Guide



Rss
« previous 1 3 4 5 6 7 8 9