#program

Read through the most famous quotes by topic #program




The Libyan program recently discovered was far more extensive than was assessed prior to that.


David Kay


#discovered #extensive #far #libyan #more

As an artist, program directors always want to put you in a little box.


Angie Stone


#artist #box #directors #little #little box

Recently I've been participating in radio and television talk programs doing broadcasts and conferences, and shooting my mouth off and really going to town.


Peter Maxwell Davies


#broadcasts #conferences #doing #going #i

APL is a mistake, carried through to perfection. It is the language of the future for the programming techniques of the past: it creates a new generation of coding bums.


Edsger Dijkstra


#carried #coding #creates #future #generation

Programming is the art of doing one thing at a time


Michael Feathers


#art

I use a really simple calendar program on my computer.


Jamie Zawinski


#computer #i #program #really #simple

What was most important to me at the Olympics was going out there and performing my best. When I messed up the first jump combination, which was my big move, it hit me that I messed up the program of my life.


Debi Thomas


#big #combination #first #going #hit

The issue of finding the best possible answer or achieving maximum efficiency usually arises in industry only after serious performance or legal troubles.


Steven S. Skiena


#design

That doesn't upset too many people, but the fact that accessibility restrictions don't enter into the picture has caused more than one otherwise pacifistic soul to contemplate distinctly unpacifistic actions.


Scott Meyers


#funny #nerdy #programming #design

Immutable objects are simple. They can only be in one state, which is carefully controlled by the constructor. One of the most difficult elements of program design is reasoning about the possible states of complex objects. Reasoning about the state of immutable objects, on the other hand, is trivial. Immutable objects are also safer. Passing a mutable object to untrusted code, or otherwise publishing it where untrusted code could find it, is dangerous — the untrusted code might modify its state, or, worse, retain a reference to it and modify its state later from another thread. On the other hand, immutable objects cannot be subverted in this manner by malicious or buggy code, so they are safe to share and publish freely without the need to make defensive copies.


Brian Goetz


#java #programming #design