Skip to content

Instantly share code, notes, and snippets.

@chaserx
Created March 6, 2012 05:38
Show Gist options
  • Save chaserx/1983841 to your computer and use it in GitHub Desktop.
Save chaserx/1983841 to your computer and use it in GitHub Desktop.
String Quotes to mysql
# ************************************************************
# Sequel Pro SQL dump
# Version 3408
#
# http://www.sequelpro.com/
# http://code.google.com/p/sequel-pro/
#
# Host: 127.0.0.1 (MySQL 5.5.15)
# Database: quotes
# Generation Time: 2012-03-06 05:39:44 +0000
# ************************************************************
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
# Dump of table quotes
# ------------------------------------------------------------
DROP TABLE IF EXISTS `quotes`;
CREATE TABLE `quotes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`author` varchar(50) DEFAULT NULL,
`body` text,
`created_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `quotes` WRITE;
/*!40000 ALTER TABLE `quotes` DISABLE KEYS */;
INSERT INTO `quotes` (`id`, `author`, `body`, `created_at`)
VALUES
(1,'Schopenhauer','At birth you receive a loan, consciousness and light borrowed from the void, leaving a hole in the emptiness. ','2012-03-06 00:07:34'),
(2,'Picasso','Without great solitude, no serious work is possible. ','2012-03-06 00:07:34'),
(3,'Gregory Bateson','The meaning of your communication is the response you get. ','2012-03-06 00:07:34'),
(4,'Olaf Stapledon, Last and First Men','Increasingly, the individual felt himself to be a single flicker between the teeming gulf of the never-more and the boundless void of the not-yet. ','2012-03-06 00:07:34'),
(5,'Olaf Stapledon, Last and First Men','It was much as though a blind race, after studying physics, should invent organs of sight. ','2012-03-06 00:07:34'),
(6,'John Fowles','There are times when silence is a poem. ','2012-03-06 00:07:34'),
(7,'David Lynch','I don\'t think about technique. The ideas dictate everything.','2012-03-06 00:07:34'),
(8,'Chaiwat Thirapantu','The further within myself I go, the farther out to the world I can reach. ','2012-03-06 00:07:34'),
(9,'de Tocqueville','The public will believe a simple lie in preference to a complicated truth. ','2012-03-06 00:07:34'),
(10,'Victor Hugo','Nothing is more powerful than an idea whose time has come. ','2012-03-06 00:07:34'),
(11,'Jessamyn West','We want facts to fit the preconceptions. When they don’t, it is easier to ignore the facts than to change the preconceptions. ','2012-03-06 00:07:34'),
(12,'David Bohm','A great many people think they are thinking when they are merely rearranging their prejudices. ','2012-03-06 00:07:34'),
(13,'Stewart Brand','Who meets the dawn owns the day. ','2012-03-06 00:07:34'),
(14,'Donella Meadows','Thou shalt not distort, delay, or sequester information. ','2012-03-06 00:07:34'),
(15,'James Joyce, Finnegans Wake','Here in Moicane we flop on the seamy side, but up n\'ent, prospector, you sprout all your worth and you woof your wings, so if you want to be Phoenixed, come and be parked. ','2012-03-06 00:07:34'),
(16,'Miles Davis','You should never be comfortable, man. Being comfortable fouled up a lot of musicians ','2012-03-06 00:07:34'),
(17,'Voltaire','Doubt is not a pleasant condition, but certainty is absurd. ','2012-03-06 00:07:34'),
(18,'Terence McKenna','We are so much the victims of abstraction that with the Earth in flames we can barely rouse ourselves to wander across the room and look at the thermostat. ','2012-03-06 00:07:34'),
(19,'Robert Heinlein','Specialization is for insects. ','2012-03-06 00:07:34'),
(20,'Chinese saying','The best time to plant a tree is twenty years ago; the next best time is now. ','2012-03-06 00:07:34'),
(21,'Deleuze & Parnet','An image of thought called philosophy has been formed historically and it effectively stops people from thinking. ','2012-03-06 00:07:34'),
(22,'Dune','He had achieved harmony simply by accepting it. ','2012-03-06 00:07:34'),
(23,'James Joyce','The demand that I make of my reader is that he should devote his whole life to reading my works ','2012-03-06 00:07:34'),
(24,'Tolkien','Not all those who wander are lost. ','2012-03-06 00:07:34'),
(25,'Oliver Wendell Holmes','A mind that is stretched to a new idea never returns to its original dimension. ','2012-03-06 00:07:34'),
(26,'Bruce Lee','Now I see that I will never find the light unless, like the candle, I am my own fuel, consuming myself. ','2012-03-06 00:07:34'),
(27,'William Everson','You get the conception of an infinitely sensitive and intelligent man laying his ear to the earth and writing verbatim every delicate response and flux that twitches his being ','2012-03-06 00:07:34'),
(28,'Albert Camus','The only way to deal with an unfree world is to become so absolutely free that your very existence is an act of rebellion. ','2012-03-06 00:07:34'),
(29,'Nietzsche','After nature had drawn a few breaths the star grew cold, and the clever animals had to die. ','2012-03-06 00:07:34'),
(30,'Andy Warhol','I have no special message. I wish I did. It would be great if I had one. ','2012-03-06 00:07:34'),
(31,'Terence McKenna','The human body is a knot in time. It is a non-thermal dynamic state of equilibrium maintained by the miricle of metabolism. Metabolism is a slow controlled chemical burning of organic material. A so subtle form of burning that the energy is trapped in various membranes and cytochrome cascades and put to the work of organism. ','2012-03-06 00:07:34'),
(32,'Hermann Hesse','Only the ideas that we actually live are of any value. ','2012-03-06 00:07:34'),
(33,'Hermann Hesse','If you hate a person, you hate something in him that is part of yourself. What isn’t part of ourselves doesn’t disturb us. ','2012-03-06 00:07:34'),
(34,'Hermann Hesse','Eternity is a mere moment, just long enough for a joke. ','2012-03-06 00:07:34'),
(35,'Georges Braque','You see, I have made a great discovery. I no longer believe in anything. Objects don’t exist for me except in so far as a rapport exists between them or between them and myself. ','2012-03-06 00:07:34'),
(36,'Frank Herbert','Truth suffers from too much analysis. ','2012-03-06 00:07:34'),
(37,'Heraclitus','Even sleepers are workers and collaborators in what goes on in the Universe. ','2012-03-06 00:07:34'),
(38,'Frank Herbert, Dune','A beginning is the time for taking the most delicate care that the balances are correct. ','2012-03-06 00:07:34'),
(39,'Stewart Brand','Once a new technology rolls over you, if you’re not part of the steamroller, you’re part of the road. ','2012-03-06 00:07:34'),
(40,'Winston Churchill','If you\'re going through hell, keep going. ','2012-03-06 00:07:34'),
(41,'Philip K. Dick','To fight the Empire is to be infected by its derangement. Whoever defeats the Empire becomes the Empire; it proliferates like a virus ... thereby it becomes its enemies. ','2012-03-06 00:07:34'),
(42,'Benjamin Franklin','Well done is better than well said. ','2012-03-06 00:07:34'),
(43,'Hermann Hesse, Journey to the East','It was only possible for me to do it, he said, because it was necessary. ','2012-03-06 00:07:34'),
(44,'Lao Tzu','The words of truth are always paradoxical. To the mind that is still, the whole universe surrenders. ','2012-03-06 00:07:34'),
(45,'André Breton','The approval of the public is to be avoided like the plague. It is absolutely essential to keep the public from entering if one wishes to avoid confusion. I must add that the public must be kept panting in expectation at the gate by a system of challenges and provocations. ','2012-03-06 00:07:34'),
(46,'Eckhart Tolle','Give up defining yourself — to yourself or to others. You won’t die. You will come to life. ','2012-03-06 00:07:34'),
(47,'Hermann Hesse','... as though in a miraculous hour it has become aware of the law that shapes it and begins to strive toward the fulfillment of its being. ','2012-03-06 00:07:34'),
(48,'Massimo Banzi','The man who says it can’t be done shouldn’t interrupt the man who is trying to do it. ','2012-03-06 00:07:34'),
(49,'J.G. Ballard','Art exists because reality is neither real nor significant. ','2012-03-06 00:07:34'),
(50,'Nietzsche','The individual has always had to struggle to keep from being overwhelmed by the tribe. If you try it, you will be lonely often, and sometimes frightened. But no price is too high to pay for the privilege of owning yourself. ','2012-03-06 00:07:34'),
(51,'Buddhist saying','To forgive is to give up all hope for a better past. ','2012-03-06 00:07:34'),
(52,'R.M. Rilke','For we are only the rind and the leaf. The great death, that each of us carries inside, is the fruit. Everything enfolds it. ','2012-03-06 00:07:34'),
(53,'Edvard Munch','I was walking along a path with two friends — the sun was setting — suddenly the sky turned blood red — I paused, feeling exhausted, and leaned on the fence — there was blood and tongues of fire above the blue-black fjord and the city — my friends walked on, and I stood there trembling with anxiety — and I sensed an infinite scream passing through nature. ','2012-03-06 00:07:34'),
(54,'Edvard Munch','From my rotting body, flowers shall grow and I am in them and that is eternity. ','2012-03-06 00:07:34'),
(55,'Noel Coward','Work is more fun than fun. ','2012-03-06 00:07:34'),
(56,'Kierkegaard','Life can only be understood backwards; but it must be lived forwards. ','2012-03-06 00:07:34'),
(57,'?','Success has a thousand parents ','2012-03-06 00:07:34'),
(58,'Steven Pinker','The most interesting trend in the development of the Internet is not how it is changing people\'s ways of thinking but how it is adapting to the way that people think. ','2012-03-06 00:07:34'),
(59,'Kurt Vonnegut','I want to stay as close on the edge as I can without going over. Out on the edge you see all kinds of things you can\'t see from the center. Big, undreamed-of things — the people on the edge see them first. ','2012-03-06 00:07:34'),
(60,'Marshall Mcluhan','If it works, it\'s obsolete. ','2012-03-06 00:07:34'),
(61,'Marshall McLuhan','Poets and artists live on frontiers. They have no feedback, only feedforward. They have no identities. They are probes. ','2012-03-06 00:07:34'),
(62,'Kazys Varnelis','In network theory, a node’s relationship to other networks is more important than its own uniqueness. Similarly, today we situate ourselves less as individuals and more as the product of multiple networks composed of both humans and things. ','2012-03-06 00:07:34'),
(63,'Kazys Varnelis','Like the artist, the networked self is an aggregator of information flows, a collection of links to others, a switching machine ','2012-03-06 00:07:34'),
(64,'Gregory Bateson','The source of the new is the random. ','2012-03-06 00:07:34'),
(65,'Theodore Zeldin','The kind of conversation I like is one in which you are prepared to emerge a slightly different person. ','2012-03-06 00:07:34'),
(66,'Alan Turing','Mathematical reasoning may be regarded rather schematically as the exercise of a combination of two facilities, which we may call intuition and ingenuity. The activity of the intuition consists in making spontaneous judgements which are not the result of conscious trains of reasoning. The exercise of ingenuity in mathematics consists in aiding the intuition through suitable arrangements of propositions, and perhaps geometrical figures or drawings. ','2012-03-06 00:07:34'),
(67,'Brian Eno','Giving something a name can be just the same as inventing it. ','2012-03-06 00:07:34'),
(68,'Antonio Machado','There is no path, paths are made by walking. ','2012-03-06 00:07:34'),
(69,'Rabindrananth Tagore','Death is not extinguishing the light; it is putting out the lamp because dawn has come. ','2012-03-06 00:07:34'),
(70,'Buckminster Fuller','Separated from the familiar, confronted with the unfamiliar, and reflexed only by the brain\'s mechanical feedback, unthinking humans — not realizing that there are no straight lines, only wavy ones, and not realizing that waves can only be propagated by positive-negative oscillating — find their straight linear strivings forever frustrated by the wave system realities of Universe. ','2012-03-06 00:07:34'),
(71,'Brian Eno','An important aspect of design is the degree to which the object involves you in its own completion. ','2012-03-06 00:07:34'),
(72,'Albert Einstein','If you can’t explain it simply, you don’t understand it well enough. ','2012-03-06 00:07:34'),
(73,'Thoreau','What lies behind us and what lies ahead of us are tiny matters compared to what lives within us. ','2012-03-06 00:07:34'),
(74,'Carl Jung','I could not say I believe. I know! I have had the experience of being gripped by something that is stronger than myself, something that people call God. ','2012-03-06 00:07:34'),
(75,'Henry David Thoreau','We must walk consciously only part way toward our goal, and then leap in the dark to our success. ','2012-03-06 00:07:34'),
(76,'Bertrand Russell','Everything is vague to a degree you do not realize until you have tried to make it precise. ','2012-03-06 00:07:34'),
(77,'Calvin','It’s not denial. I’m just very particular about the reality I choose to accept. ','2012-03-06 00:07:34'),
(78,'Douglas Adams','Imagine a puddle waking up one morning and thinking, \'This is an interesting world I find myself in, an interesting hole I find myself in, fits me rather neatly, doesn\'t it? In fact it fits me staggeringly well, must have been made to have me in it!\' This is such a powerful idea that as the sun rises in the sky and the air heats up and as, gradually, the puddle gets smaller and smaller, it\'s still frantically hanging on to the notion that everything\'s going to be alright, because this world was meant to have him in it, was built to have him in it; so the moment he disappears catches him rather by surprise. I think this may be something we need to be on the watch out for. ','2012-03-06 00:07:34'),
(79,'Nietzsche','There are no facts, only interpretations. ','2012-03-06 00:07:34'),
(80,'Boat Man, Waking Life','The idea is to remain in a state of constant departure while always arriving. Saves on introductions and goodbyes. The ride does not require an explanation, just occupants. ','2012-03-06 00:07:34'),
(81,'Carl Sagan','We make our world significant by the courage of our questions and by the depth of our answers. ','2012-03-06 00:07:34'),
(82,'Daniel Dennett','There’s nothing I like less than bad arguments for a view that I hold dear. ','2012-03-06 00:07:34'),
(83,'Buckminster Fuller','When I am working on a problem, I never think about beauty. But when I have finished, if the solution is not beautiful, I know it is wrong. ','2012-03-06 00:07:34'),
(84,'Thomas Merton','A society whose whole idea is to eliminate suffering and bring its members the greatest amount of comfort and pleasure is doomed to be destroyed. ','2012-03-06 00:07:34'),
(85,'Von Neumann','If people do not believe that mathematics is simple, it is only because they do not realize how complicated life is ','2012-03-06 00:07:34'),
(86,NULL,'Also, common everyday things may seem to be abnormally beautiful or interesting. Alexander Shulgin reported that mountains that he had observed many times before appeared to be so beautiful that he could barely stand looking at them.','2012-03-06 00:07:34'),
(87,'Mark Twain','Age is an issue of mind over matter. If you don’t mind, it doesn’t matter. ','2012-03-06 00:07:34'),
(88,NULL,'Hofstadter’s Law: It always takes longer than you expect, even when you take Hofstadter\'s Law into account.','2012-03-06 00:07:34'),
(89,'Robert Anton Wilson','Of course I\'m crazy, but that doesn\'t mean I\'m wrong. ','2012-03-06 00:07:34'),
(90,'Arthur Schopenhauer','Talent hits a target no one else can hit, while genius hits a target that no one else can see. ','2012-03-06 00:07:34'),
(91,'Marshall McLuhan','We\'re driving faster and faster into the future, trying to steer by using only the rear-view mirror. ','2012-03-06 00:07:34'),
(92,'Frank Herbert','Seek freedom and become captive of your desires, seek discipline and find your liberty. ','2012-03-06 00:07:34'),
(93,'Tom Robbins','The world is a wonderfully weird place, consensual reality is significantly flawed, no institution can be trusted, certainty is a mirage, security a delusion, and the tyranny of the dull mind forever threatens - but our lives are not as limited as we think they are, all things are possible, laughter is holier than piety, freedom is sweeter than fame, and in the end it\'s love and love alone that really matters. ','2012-03-06 00:07:34'),
(94,'Raymond Tallis','Uniquely in us, nature opens her eyes and sees that she exists. ','2012-03-06 00:07:34'),
(95,'Anais Nin','We do not see things as they are, we see them as we are. ','2012-03-06 00:07:34'),
(96,'Napoleon','Never ascribe to malice, that which can be explained by incompetence. ','2012-03-06 00:07:34'),
(97,'Mark Twain','The past does not repeat itself, but sometimes it rhymes. ','2012-03-06 00:07:34'),
(98,'Aldous Huxley, Brave New World','The greater a man\'s talents, the greater his power to lead astray. ','2012-03-06 00:07:34'),
(99,'Aldous Huxley','Too much consistency is as bad for the mind as it is for the body. Consistency is contrary to nature, contrary to life. The only completely consistent people are the dead. ','2012-03-06 00:07:34'),
(100,'Aldous Huxley','I\'m afraid of losing my obscurity. Genuineness only thrives in the dark. Like celery. ','2012-03-06 00:07:34'),
(101,'Malaclypse the Younger','Common sense is what tells you that the world is flat. ','2012-03-06 00:07:34'),
(102,'Frank Herbert','A process cannot be understood by stopping it. Understanding must move with the flow of the process, must join it and flow with it. ','2012-03-06 00:07:34'),
(103,'Charles Bukowski','We are here to laugh at the odds and live our lives so well that Death will tremble to take us. ','2012-03-06 00:07:34'),
(104,'Montalk','To avoid defeat by distraction or avoidance, never abandon your principles or give up progress for the sake of defense. Deal with attacks as quickly and efficiently as possible, then get on with your life and don\'t dwell on the past. Don\'t hold regrets or grudges or dig up the dead, and don\'t succumb to those individuals who try to open your wounds. ','2012-03-06 00:07:34'),
(105,'Montalk','Remain non-judgmental, observant, impeccable, and calm-this keeps your emotional frequency elevated and stable, ensures that you don\'t overreact, and helps you focus on resolving the situation with finesse. ','2012-03-06 00:07:34'),
(106,'Alan Watts','Inability to accept the mystic experience is more than an intellectual handicap. Lack of awareness of the basic unity of organism and environment is a serious and dangerous hallucination. For in a civilization equipped with immense technological power, the sense of alienation between man and nature leads to the use of technology in a hostile spirit - to the \"conquest\" of nature instead of intelligent co-operation with nature. ','2012-03-06 00:07:34'),
(107,'Anais Nin','Life shrinks or expands in proportion to one\'s courage. ','2012-03-06 00:07:34'),
(108,'Carlos Castaneda','We hardly ever realize that we can cut anything out of our lives, anytime, in the blink of an eye. ','2012-03-06 00:07:34'),
(109,'Carlos Castaneda','A man of knowledge lives by acting, not by thinking about acting. ','2012-03-06 00:07:34'),
(110,'H. G. Wells','Life, for ever dying to be born afresh, for ever young and eager, will presently stand upon this earth as upon a footstool, and stretch out its realm amidst the stars. ','2012-03-06 00:07:34'),
(111,'Einstein','We act as though comfort and luxury were the chief requirements of life, when all that we need to make us happy is something to be enthusiastic about. ','2012-03-06 00:07:34'),
(112,'McKenna','If you haven\'t taken enough that you think that you may have done too much, you did too little ','2012-03-06 00:07:34'),
(113,'McKenna','Since it is not easy for you to recognize other varieties of intelligence around you, your most advanced theories of politics and society have advanced only as far as the notion of collectivism. But beyond the cohesion of the members of a species into a single social organism there lie richer and even more baroque evolutionary possibilities. ','2012-03-06 00:07:34'),
(114,'Raymond Tallis','Uniquely in us, nature opens her eyes and sees that she exists. ','2012-03-06 00:07:34'),
(115,'Arthur Schopenhauer','All truth passes through three stages. First, it is ridiculed. Second, it is violently opposed. Third, it is accepted as being self-evident. ','2012-03-06 00:07:34'),
(116,'Terence McKenna','Pay attention. And keep breathing. ','2012-03-06 00:07:34'),
(117,'Ludwig Wittgenstein','Whereof one cannot speak, thereof one must be silent. ','2012-03-06 00:07:34'),
(118,'Plato','Time is the moving image of eternity ','2012-03-06 00:07:34'),
(119,'Sir Thomas Browne','I am the happiest man alive. I have that in me that can convert poverty into riches, adversity into prosperity, and I am more invulnerable than Achilles; fortune hath not one place to hit me. ','2012-03-06 00:07:34'),
(120,'blog: The Cleaver','Sooner or later the intelligent human mind realizes that reality is an illusion. This operates on many levels: perceptual, historical, political, molecular, spiritual. Depending on knowledge, circumstances and belief system - our reality tunnel - we will each have a preferred method and subject of investigation. The scientifically inclined may turn to quantum physics, string theory and holography for answers. The religious temperament may begin to unravel the outer allegories of their sacred texts to get to the inner mysteries of true enlightenment. The social historian may realize that realpolitik, the private military-industrial complex and supra-national globalist agendas influence world affairs more than any seemingly democratic government. In the end however, all roads lead to the same destination: pretty much everything around us is not the way we thought it was. ','2012-03-06 00:07:34'),
(121,'1917-1992','One fundamental principle of the illusion is the false impression of separation; the idea that we are somehow separate from the material things in our world. This is still the foundation for much of our thinking today. Well to distil a thousand learned books into one comment: we are not separate. At the deepest level everything is connected to everything else. Quantum physicist David Bohm postulated that the ultimate nature of physical reality is not a collection of separate objects , but rather it is an undivided whole that is in perpetual dynamic flux. Bohm was reinterpreting ancient knowledge and translating it into a modern quantum vocabulary. This was his remembrance: \"at a deeper level [matter and consciousness] are actually inseparable and interwoven... Deep down the consciousness of mankind is one.\" We are not separate from the things in our world and we are not separate from each other. Bohm called this gigantic flow of energy and consciousness the holomovement. ','2012-03-06 00:07:34'),
(122,NULL,'Bill Hicks doing a mock newsreader piece: \"Today, a young man on acid realized that all matter is merely energy condensed to a slow vibration... that we are all one consciousness experiencing itself subjectively. There\'s no such thing as death, life is only a dream, and we\'re the imagination of ourselves. Here\'s Tom with the weather.\" ','2012-03-06 00:07:34'),
(123,NULL,'If we believe that consciousness is the result of patterns of neurons in the brain, our thoughts, emotions, and memories could be replicated in moving assemblies of Tinkertoys. The Tinkertoy minds would have to be very big to represent the complexity of our minds, but it nevertheless could be done, in the same way people have made computers out of 10,000 Tinkertoys. In principle, our minds could be hypostatized in patterns of twigs, in the movements of leaves, or in the flocking of birds. The philosopher and mathematician Gottfried Leibniz liked to imagine a machine capable of conscious experiences and perceptions. He said that even if this machine were as big as a mill and we could explore inside, we would find \"nothing but pieces which push one against the other and never anything to account for a perception. ','2012-03-06 00:07:34'),
(124,'Cliff Pickover','If our thoughts and consciousness do not depend on the actual substances in our brains but rather on the structures, patterns, and relationships between parts, then Tinkertoy minds could think. If you could make a copy of your brain with the same structure but using different materials, the copy would think it was you. This seemingly materialistic approach to mind does not diminish the hope of an afterlife, of transcendence, of communion with entities from parallel universes, or even of God. Even Tinkertoy minds can dream, seek salvation and bliss-and pray. ','2012-03-06 00:07:34'),
(125,NULL,'We talk far too much. We should talk less and draw more. I personally should like to renounce speech altogether and, like organic Nature, communicate everything I have to say in sketches. That fig tree, this little snake, the cocoon on my window sill quietly awaiting its future - all these are momentous signatures. ','2012-03-06 00:07:34'),
(126,'I am tempted to say','A person able to decipher their meaning properly would soon be able to dispense with the written or the spoken word altogether. The more I think of it, there is something futile, mediocre, even foppish about speech. By contrast, how the gravity of Nature and he silence startle you, when you stand face to face with her, undistracted, before a barren ridge or in the desolation of ancient hills. ','2012-03-06 00:07:34'),
(127,'Zach @ Alchemically Braindamaged','We are components of an immense, mind-boggling computational engine that has struggled since the beginning of time to fuse spirit, mind and matter. Your life, and the lives of everyone before and after you, is fed into this process, and used to formulate the platform for new evolution. ','2012-03-06 00:07:34'),
(128,NULL,'Each of your cells contains your entire genetic code. ','2012-03-06 00:07:34'),
(129,'Henry David Thoreau','The greater part of what my neighbors call good I believe in my soul to be bad, and if I repent of anything, it is very likely to be my good behavior. What demon possessed me that I behaved so well? ','2012-03-06 00:07:34'),
(130,'Carl Sagan','Look again at that dot. That\'s here. That\'s home. That\'s us. On it everyone you love, everyone you know, everyone you ever heard of, every human being who ever was, lived out their lives. The aggregate of our joy and suffering, thousands of confident religions, ideologies, and economic doctrines, every hunter and forager, every hero and coward, every creator and destroyer of civilization, every king and peasant, every young couple in love, every mother and father, hopeful child, inventor and explorer, every teacher of morals, every corrupt politician, every \"superstar\", every \"supreme leader\", every saint and sinner in the history of our species lived there - on a mote of dust suspended in a sunbeam... \n\n\n...The Earth is a very small stage in a vast cosmic arena. Think of the rivers of blood spilled by all those generals and emperors so that, in glory and triumph, they could become the momentary masters of a fraction of a dot. Think of the endless cruelties visited by the inhabitants of one corner of this pixel on the scarcely distinguishable inhabitants of some other corner, how frequent their misunderstandings, how eager they are to kill one another, how fervent their hatreds... \n\n\n...Our posturings, our imagined self-importance, the delusion that we have some privileged position in the Universe, are challenged by this point of pale light. Our planet is a lonely speck in the great enveloping cosmic dark. In our obscurity, in all this vastness, there is no hint that help will come from elsewhere to save us from ourselves. ','2012-03-06 00:07:34'),
(133,'Douglas Adams','The Total Perspective Vortex derives its picture of the whole Universe on the principle of extrapolated matter analyses. Since every piece of matter in the Universe is in some way affected by every other piece of matter in the Universe, it is in theory possible to extrapolate the whole of creation - every sun, every planet, their orbits, their composition and their economic and social history from, say, one small piece of fairy cake. ','2012-03-06 00:07:34'),
(134,'Janine M. Benyus','Janine M. Benyus\' 9 basic principles of biomimicry\n1. Nature runs on sunlight \n2. Nature uses only the energy it needs \n3. Nature fits form to function \n4. Nature recycles everything \n5. Nature rewards cooperation \n6. Nature banks on diversity \n7. Nature demands local expertise \n8. Nature curbs excesses from within \n9. Nature taps the power of limits ','2012-03-06 00:07:34'),
(145,'Wikipedia','Bayesian probability is an interpretation of probability suggested by Bayesian theory, which holds that the concept of probability can be defined as the degree to which a person believes a proposition. Bayesian theory also suggests that Bayes\' theorem can be used as a rule to infer or update the degree of belief in light of new information. ','2012-03-06 00:07:34'),
(146,'Michael Pollan, NYT','Eat food. Not too much. Mostly plants. ','2012-03-06 00:07:34'),
(147,'William Gibson','The future is here. It\'s just not widely distributed yet. ','2012-03-06 00:07:34'),
(148,'George Wald','A physicist is the atom\'s way of knowing about atoms. ','2012-03-06 00:07:34'),
(149,'and the next atom is in the next sports stadium','The nucleus of an atom is comparable in scale to a fly in the middle of a sports stadium . ','2012-03-06 00:07:34'),
(150,'Dennis Overbye on free will, NYT','...as when an artist envisions a teapot and then sculpts it — a concept sometimes known as “downward causation.” ','2012-03-06 00:07:34'),
(151,'Terence McKenna','The most intense moments the universe has ever known are the next 15 seconds. ','2012-03-06 00:07:34'),
(152,'G.K. Chesterton','To be clever enough to get a great deal of money, one must be stupid enough to want it. ','2012-03-06 00:07:34'),
(153,'Bucky Fuller','It seems that truth is progressive approximation in which the relative fraction of our spontaneously tolerated residual error constantly diminishes. ','2012-03-06 00:07:34'),
(154,'Carl Sagan','A celibate clergy is an especially good idea, because it tends to suppress any hereditary propensity toward fanaticism. ','2012-03-06 00:07:34'),
(155,'Winston Churchill','Men occasionally stumble over the truth, but most of them pick themselves up and hurry off as if nothing had happened. ','2012-03-06 00:07:34'),
(156,'Eric Hoffer','Passionate hatred can give meaning and purpose to an empty life. ','2012-03-06 00:07:34'),
(157,'Mark Twain','When I was 16, I though my father was the most ignorant ass that there ever was. But by the time I was 21, I was surprised to discover just how much he had learned in only 5 years. ','2012-03-06 00:07:34'),
(158,'H.S. Thompson','Every now and then when your life gets complicated and the weasels start closing in, the only cure is to load up on heinous chemicals and then drive like a bastard from Hollywood to Las Vegas ... with the music at top volume and at least a pint of ether. ','2012-03-06 00:07:34'),
(159,'Joseph Campbell','Life is like arriving late for a movie, having to figure out what was going on without bothering everybody with a lot of questions, and then being unexpectedly called away before you find out how it ends. ','2012-03-06 00:07:34'),
(160,'OZ, post trip','There was nothing there...just me and...everything. ','2012-03-06 00:07:34'),
(161,'Bucky Fuller','Everything you\'ve learned in school as \"obvious\" becomes less and less obvious as you begin to study the universe. For example, there are no solids in the universe. There\'s not even a suggestion of a solid. There are no absolute continuums. There are no surfaces. There are no straight lines. ','2012-03-06 00:07:34'),
(162,'Mark Twain','Whenever you find that you are on the side of the majority, it is time to reform. ','2012-03-06 00:07:34'),
(163,'via Mike Ferris','People often find it easier to be a result of the past than a cause of the future. ','2012-03-06 00:07:34'),
(164,'Malaclypse the Younger','Common sense is what tells you that the world is flat. ','2012-03-06 00:07:34'),
(165,'Douglas Adams','The major difference between a thing that might go wrong and a thing that cannot possibly go wrong is that when a thing that cannot possibly go wrong goes wrong it usually turns out to be impossible to get at or repair. ','2012-03-06 00:07:34'),
(166,'Einstein','Great spirits have always encountered opposition from mediocre minds. ','2012-03-06 00:07:34'),
(167,'Bucky Fuller','Don\'t oppose forces, use them. ','2012-03-06 00:07:34'),
(168,'Douglas Adams','How do I know the past is not a fiction, conceived to reconcile the difference between my state of mind and the present? ','2012-03-06 00:07:34'),
(169,'Terence McKenna','Let us declare nature to be legitimate. All plants should be declared legal. The notion of illegal plants is obnoxious and ridiculous. ','2012-03-06 00:07:34'),
(170,'Buckminster Fuller','If success or failure of this planet and of human beings depended on how I am and what I do... How would I be? What would I do? ','2012-03-06 00:07:34'),
(171,'Alan Watts','...And so what I would call a basic problem we\'ve got to go through first, is to understand that there are no such things as things. That is to say separate things, or separate events. That that is only a way of talking. If you can understand this, you\'re going to have no further problems. I once asked a group of high school children `What do you mean by a thing?\' First of all, they gave me all sorts of synonyms. They said `It\'s an object,\' which is simply another word for a thing; it doesn\'t tell you anything about what you mean by a thing. Finally, a very smart girl from Italy, who was in the group, said a thing is a noun. And she was quite right. A noun isn\'t a part of nature, it\'s a part of speech. There are no nouns in the physical world. There are no separate things in the physical world, either. ','2012-03-06 00:07:34'),
(172,'Coined in 1976 by Richard Dawkins','A meme is an idea, a pattern of information that replicates via human contact. All memes spread and multiply in a way that can be likened to cell division. ','2012-03-06 00:07:34'),
(173,'Buckminster Fuller','You never change things by fighting the existing reality. To change something, build a new model that makes the existing model obsolete. ','2012-03-06 00:07:34'),
(174,'Marshall McLuhan','A point of view can be a dangerous luxury when substituted for insight and understanding. ','2012-03-06 00:07:34'),
(175,'Goethe','None are more hopelessly enslaved than those who falsely believe they are free. ','2012-03-06 00:07:34'),
(176,'Terence McKenna','People are so alienated from their own soul that when they meet their soul they think it comes from another star system. ','2012-03-06 00:07:34'),
(177,'Terence McKenna','Some kind of dialog is now going on between individual human beings and the sum total of human knowledge and...nothing can stop it. ','2012-03-06 00:07:34'),
(178,'Alan Watts','Inability to accept the mystic experience is more than an intellectual handicap, lack of awareness of the basic unity of organism and environment is a serious and dangerous hallucination. ','2012-03-06 00:07:34'),
(179,'Margaret Mead','Never doubt that a small group of thoughtful, committed people can change the world. Indeed, it is the only thing that ever has. ','2012-03-06 00:07:34'),
(180,'Kevin Kelly','There is only one time in the history of each planet when its inhabitants first wire up its innumerable parts to make one large Machine...You and I are alive at this moment. ','2012-03-06 00:07:34'),
(181,'Timothy Leary','At one point consciousness-altering devices like the microscope and telescope were criminalized for exactly the same reasons that psychedelic plants were banned in later years. They allow us to peer into bits and zones of Chaos. ','2012-03-06 00:07:34'),
(182,'Gandhi','You must be the change you want to see in the world. ','2012-03-06 00:07:34'),
(183,NULL,'Everything you\'ve never seen is just beyond where you always stop.','2012-03-06 00:07:34'),
(184,'Pierre Teilhard de Chardin','We are not human beings having a spiritual experience. We are spiritual beings having a human experience. ','2012-03-06 00:07:34'),
(185,'Dr Seuss','through three cheese trees three free fleas flew. while these fleas flew, freezy breeze blew. freezy breeze made these three trees freeze. freezy trees made these trees\' cheese freeze. that\'s what made these three free fleas sneeze. ','2012-03-06 00:07:34'),
(186,'John C Lilly','Responsibility starts with a satisfactory coalition between one\'s self and the demanding 10^12 cells of one\'s own body. ','2012-03-06 00:07:34'),
(187,'John C Lilly','To keep an open mind and at the same time a firm enough belief in certain essential metaprograms is not easy; in a sense we are all victims of the previous metaprograms which have been laid down by other humans long before us. ','2012-03-06 00:07:34'),
(188,'O A Oeser','The child is expected to sit on a hard seat, not to move, scrape his feet, or gaze out the window, to listen, to answer questions by raising his hand, to draw neat lines in a book and write or script-print on a single blue line in exactly the same way as all his peers. He may be permitted to ask questions but, for the most part he is expected to conform. The teacher teaches, the child listens. He soon appreciates the advantages of conformity. ','2012-03-06 00:07:34'),
(189,'Albert Einstein','Physical concepts are free creations of the human mind, and are not, however it may seem, uniquely determined by the external world. In our endeavour to understand reality we are somewhat like a man trying to understand the mechanism of a closed watch. He sees the face and the moving hands, even hears it ticking, but he has no way of opening the case. If he is ingenious he may form some picture of the mechanism which could be responsible for all the things he observes, but he may never be quite sure his picture is the only one which could explain his observations. He will never be able to compare his picture with the real mechanism and he cannot even imagine the possibility of the meaning of such a comparison. ','2012-03-06 00:07:34'),
(190,'mungojelly','This universe is simply a source of energy and matter with structure to it-a dim candle to explore the infinity of abstract possibility. ','2012-03-06 00:07:34'),
(191,'Oscal Wilde','Life imitates art ','2012-03-06 00:07:34'),
(192,'Nikola Tesla','A single ray of light from a distant star falling upon the eye of a tyrant in bygone times, may have altered the course of his life, may have changed the destiny of nations, may have transformed the surface of the globe, so intricate, so inconceivably complex are the processes of nature. ','2012-03-06 00:07:34'),
(193,'Douglas Mulhall','Emergence of advanced technologies has been overwhelmingly bad for many of the less intelligent species on Earth. We are massacring millions of wild animals and destroying their habitat. We keep billions more domestic farm animals under inhumane, painful, plague-breeding conditions in increasingly vast numbers. ','2012-03-06 00:07:34'),
(194,'Douglas Mulhall','In the 21st century, despite tremendous progress, we still do amazingly stupid things. ','2012-03-06 00:07:34'),
(195,'John Gray, Straw Dogs','Cities are no more artificial than Bee-hives. The internet is as natural as a spider\'s web. We ourselves are technological devices, invented by ancient bacterial communities as means of genetic survival - we are part of an intricate network that comes from the original takeover of the Earth. Our power and intelligence do not belong specifically to us, but to all life. ','2012-03-06 00:07:34'),
(196,'Robert Lee Hotz','In every human brain there are as many neurons as there are galaxies in the known universe-about 100 billion, drawn from 10,000 different cell types with threads of neural interconnections that number in the trillions. Memories are made of this gray matter. So are inspiration and imagination. ','2012-03-06 00:07:34'),
(197,'Marian Diamond','The brain is a three-pound mass you can hold in your hand that can conceive of a universe a hundred-billion light-years across. ','2012-03-06 00:07:34'),
(198,'Wallace Stevens','Imagination is one of the forces of nature. ','2012-03-06 00:07:34'),
(199,NULL,'Matter is mostly empty space, interrupted by a few islands of substance; and those points of substance are, in turn, themselves made mostly of empty space. Wherever one looks for a final, tiny monad of solidity, one will find instead the same recurring proportion of absence and presence. ','2012-03-06 00:07:34'),
(200,'Buckminster Fuller','Nature is trying very hard to make us succeed, but nature does not depend on us. We are not the only experiment. ','2012-03-06 00:07:34'),
(201,'Buckminster Fuller','Dare to be naïve. ','2012-03-06 00:07:34'),
(202,'Buckminster Fuller','You either make sense or you make money. ','2012-03-06 00:07:34'),
(203,'Buckminster Fuller','I live on Earth at present, and I don\'t know what I am. I know that I am not a category. I am not a thing-a noun. I seem to be a verb, an evolutionary process-an integral function of the universe. ','2012-03-06 00:07:34'),
(204,NULL,'We know we are more than just neurons firing. Or, we think we are, while the neurons are firing. ','2012-03-06 00:07:34'),
(205,NULL,'Relaxing will always provide a more enjoyable ride than struggling. However, it may be advisable to carry a flotation device for times of fatigue. Imagi','2012-03-06 00:07:34'),
(206,'Albert Einstein','nation is more important than knowledge. For knowledge is limited, whereas imagination embraces the entire world, stimulating progress, giving birth to evolution. ','2012-03-06 00:07:34'),
(207,'Hermann Hesse','Nothing is harder, yet nothing is more necessary, than to speak of certain things whose existence is neither demonstrable nor probable. The very fact that serious and conscientious men and women treat them as existing things brings them a step closer to existence and to the possibility of being born. ','2012-03-06 00:07:34'),
(208,NULL,'The universe went through extremely rapid expansion in the first moments after the big bang, growing from the size of a marble to a volume larger than all of observable space in less than a trillion-trillionth of a second. ','2012-03-06 00:07:34'),
(209,'Charles Eames','Eventually, everything connects. ','2012-03-06 00:07:34'),
(210,'Chris Arkenberg','The relentless quest for meaning distracts us from experience. We get caught up in the abstractions, lost in the maps. Strip away meaning and language and the heavenly kingdom begins to reveal itself to the phenomenal perceptual machine called the human brain. ','2012-03-06 00:07:34'),
(211,'Chris Arkenberg','In those subtle moments we sometimes drift into, when time slips away and life stands silent and majestic, words cease to spill from our mouths or even bubble up from that source within. The warming wholeness ensues at the sheer experience of it all: we marvel at the vast beautiful complexity of creation rolling around and within us. It\'s likely that every human has experienced this feeling at least once in some form. It almost seems hardwired, like a key back into the garden. ','2012-03-06 00:07:34'),
(212,NULL,'Our earth is traveling at about 18.6 miles per second around the sun. Our solar system is traveling around the center of our galaxy at about 143 miles per second. Our galaxy is traveling at about 397 miles per second. ','2012-03-06 00:07:34'),
(213,'Henry Ramsey','The path of least resistance for most unwary souls is to be caught up in the obligations pertaining to cycles of birth, family, children, and the roles we are taught or forced to assume. In this mode the freedom of disconnection alludes us. But it is through the gradual disconnection to our worldly attachments that allows us to realize how trivial jealousy, deceit, anger and acquisition are in relation to the big picture of existence which extends well beyond our occluded perceptions. True freedom comes when one is free of these distracting imperfections and can find forgiveness towards those who have wittingly or not caused us harm or pain. ','2012-03-06 00:07:34'),
(214,'Alchemically Braindamaged','You can\'t fix everything. Nor should you. Simply get your shit together to the point where your life is not a train wreck and move onto higher realms of experience and intent. ','2012-03-06 00:07:34'),
(215,'Alchemically Braindamaged','You\'ll always be able to find a problem if you look for one. You\'ll always be able to find some way in which you are not functioning well with your surroundings. I wouldn\'t recommend spending your whole life on it though. ','2012-03-06 00:07:34'),
(216,'...',' a hypnotic principle called time distortion. If you can trick a person into visualizing an outcome, then their subconscious mind treats it as it were already happening and they don\'t resist it. All you did was provide the raw data and the timeframe. So if you carefully frame the data and the time frame you could make pretty much anyone accept pretty much anything. ','2012-03-06 00:07:34'),
(217,'Rene Daalder','Embrace the alien within ','2012-03-06 00:07:34'),
(218,'Arthur Buller','There was a young lady named Bright Whose speed was far faster than light She set out one day In a relative way And returned home the previous night. ','2012-03-06 00:07:34'),
(219,'Philip K. Dick','If two people dream the same dream it ceases to be an illusion; the basic test that distinguishes reality from hallucination is the consensus gentium, that one other or several others see it too. ','2012-03-06 00:07:34'),
(220,'Douglas Adams','There is a theory which states that if ever anybody discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarre and inexplicable. There is another theory which states that this has already happened. ','2012-03-06 00:07:34'),
(221,'Douglas Adams','In the beginning the Universe was created. This made a lot of people very angry and has been widely regarded as a bad move. ','2012-03-06 00:07:34'),
(222,NULL,'Each of us is one of six billion people on a planet circling one of 200 billion or so stars in the Milky Way galaxy, which is one of 100 billion or so galaxies in the observable universe, which many physicists believe is but one of a near-infinity of alternative realities in the multiverse. If the Earth were the size of a grain of sand, then our Milky Way galaxy would be 5,000,000 miles across. There are at least 100 billion galaxies in the universe. What we see of the cosmos when we look up at the night sky is essentially nothing, just a few thousand stars that lie near us in our corner of a single galaxy. ','2012-03-06 00:07:34'),
(223,NULL,'Incredibly complex systems turn out to be governed by few and very easily comprehensible rules, where the complexity is totally invisible until the system is examined as a whole. ','2012-03-06 00:07:34'),
(224,'Dr. Christian Jarrett','Imagine awaking from a torpor having forgotten how your friends and family see you. Perhaps, unchained from everyone\'s expectations for how you ought to behave, you could be whoever you liked. ','2012-03-06 00:07:34'),
(225,'Malcolm Gladwell, The Tipping Point','When it comes to interpreting other people\'s behaviour, human beings invariably make the mistake of overestimating the importance of fundamental character traits and underestimating the importance of the situation and context... The reason that most of us seem to have a consistent character is that most of us are really good at controlling our environment. ','2012-03-06 00:07:34'),
(226,'Carlos Castaneda','When a man starts to learn, it happens very slowly-bit by bit at first, then in big chunks. And his thoughts soon clash. What he learns is never what he pictured, or imagined, and so he begins to be afraid. Learning is never what one expects. Every step of learning is a new task, and the fear the man is experiencing begins to mount mercilessly, unyieldingly. His purpose becomes a battlefield -And what can he do to overcome fear? The answer is very simple. He must not run away. He must defy his fear, and in spite of it he must take the next step in learning, and the next, and the next. He must be fully afraid, and yet he must not stop. That is the rule! And a moment will come when his first enemy retreats. The man begins to feel sure of himself. His intent becomes stronger. Learning is no longer a terrifying task. ','2012-03-06 00:07:34'),
(227,'Frank Zappa','Without deviation from the norm, \'progress\' is not possible. ','2012-03-06 00:07:34'),
(228,'Frank Zappa','A mind is like a parachute. It doesnt work if it\'s not open. ','2012-03-06 00:07:34'),
(229,'Frank Zappa','Jazz is not dead, it just smells funny. ','2012-03-06 00:07:34'),
(230,'Wikipedia on Huxley','If the doors of perception were cleansed everything would appear to man as it is, infinite. Based on this quotation, Huxley assumes that the human brain filters reality in order not to let pass all impressions and images, which would be unbearable to process. According to his view, drugs can reduce this filter, or \"open these doors of perception,\" as he puts it metaphorically. In order to verify his theory, Huxley takes mescaline and writes down his thoughts and feelings. What he notices is that everyday objects lose their functionality and suddenly exist \"as such.\" Space and dimension become irrelevant and the perception seems to be enlarged, overwhelming and at times even offending because the person is unable to cope with the enormous amount of impressions. ','2012-03-06 00:07:34'),
(231,'Albert Hofmann','Outside is pure energy and colorless substance, all of the rest happens through the mechanism of our senses. Our eyes see just a small fraction of the light in the world. It is a trick to make a colored world, which does not exist outside of human beings. ','2012-03-06 00:07:34'),
(232,'Carl Jung','The dream is the small hidden door in the deepest and most intimate sanctum of the soul, which opens to that primeval cosmic night that was soul long before there was conscious ego and will be soul far beyond what a conscious ego could ever reach. ','2012-03-06 00:07:34'),
(233,'Proust','The real voyage of discovery consists not in seeking new landscapes, but in having new eyes. ','2012-03-06 00:07:34'),
(234,NULL,'The Star Larvae Hypothesis: Stars constitute a genus of organism. The stellar life cycle includes a larval phase. Biological life constitutes the larval phase of the stellar life cycle. ','2012-03-06 00:07:34'),
(235,'Francis Bacon','The job of the artist is always to deepen the mystery. ','2012-03-06 00:07:34'),
(236,'Timothy Leary','A psychedelic experience is a journey to new realms of consciousness. The scope and content of the experience is limitless, but its characteristic features are the transcendence of verbal concepts, of space-time dimensions, and of the ego or identity. Such experiences of enlarged consciousness can occur in a variety of ways: sensory deprivation, yoga exercises, disciplined meditation, religious or aesthetic ecstasies, or spontaneously. Most recently they have become available to anyone through the ingestion of psychedelic drugs such as LSD, psilocybin, mescaline, DMT, etc. Of course, the drug does not produce the transcendent experience. It merely acts as a chemical key - it opens the mind, frees the nervous system of its ordinary patterns and structures. ','2012-03-06 00:07:34'),
(237,'Sir Arthur Conan Doyle','Mediocrity knows nothing higher than itself, but talent instantly recognizes genius. ','2012-03-06 00:07:34'),
(238,NULL,'Donnie: \"How do you do that?\" Frank: \"I can do anything I want. And so can you.\" ','2012-03-06 00:07:34'),
(239,'Carlos Castaneda','A warrior lives by acting, not by thinking about acting, nor by thinking about what he will think when he has finished acting. ','2012-03-06 00:07:34'),
(240,'Carlos Castaneda','The self-confidence of the warrior is not the self-confidence of the average man. The average man seeks certainty in the eyes of the onlooker and calls that self-confidence. The warrior seeks impeccability in his own eyes and calls that humbleness. The average man is hooked to his fellow men, while the warrior is hooked only to infinity. ','2012-03-06 00:07:34'),
(241,'Carlos Castaneda','Do you know at this very moment you are surrounded by eternity? And do you know that you can use that eternity if you so desire? ','2012-03-06 00:07:34'),
(242,'Carlos Castaneda','No person is important enough to make me angry. ','2012-03-06 00:07:34'),
(243,'Passwords, Jean Baudrillard','There is a positive fascination today with the virtual and all its technologies. If it genuinely is a mode of disappearance, this would be an — obscure, but deliberate — choice on the part of the species itself: the decision to clone itself, lock, stock and barrel, in another universe; to disappear as the human race, properly speaking, in order to perpetuate itself in an artificial species that would have much more efficient, much more operational attributes...beyond the virtual, I see nothing but what Freud called `nirvana\', an exchange of molecular substance and nothing more. All that would remain would be a perfect wave system, which would join up with the system of particles in a purely physical universe that no longer had anything human, moral, or - obviously - metaphysical about it. In this way, we would have returned to a material stage, with a senseless circulation of the elements... ','2012-03-06 00:07:34'),
(244,'Sam Hecht','A pure and resonant experience is only as simple as the greater context where it is appreciated. ','2012-03-06 00:07:34'),
(245,'Oscar Wilde','Nothing is intrinsically valuable; the value of everything is attributed to it, assigned to it from outside the thing itself, by people. ','2012-03-06 00:07:34'),
(246,'Bertrand Russell','The whole problem with the world is that fools and fanatics are always so certain of themselves, but wiser people so full of doubts. ','2012-03-06 00:07:34'),
(247,'Carl Jung, The Undiscovered Self','On attaining religious experience: \"This task is so exacting and its fulfillment so advantageous, that he forgets himself in the process, losing sight of his instinctual nature and putting his own conception of himself in place of his real being. In this way he slips imperceptibly into a purely conceptual world where the products of his conscious activity progressively replace reality.\" ','2012-03-06 00:07:34'),
(248,'Aldous Huxley, The Doors of Perception','\"To be shaken out of the ruts of ordinary perception, to be shown for a few timeless hours the outer and inner world, not as they appear to an animal obsessed with survival or to a human being obsessed with words and notions, but as they are apprehended, directly and unconditionally, by Mind at Large- this is an experience of inestimable value to everyone and especially to the intellectual.\" ','2012-03-06 00:07:34'),
(249,'Fyodor Dostoevsky','\"There are moments, and it is only a matter of five or six seconds, when you feel the presence of the eternal harmony...a terrible thing is the frightful clearness with which it manifests itself and the rapture with which it fills you. If this state were to last more than five seconds, the soul could not endure it and would have to disappear. During these five seconds I live a whole human existence, and for that I would give my whole life and not think that I was paying too dearly....\" ','2012-03-06 00:07:34'),
(250,'Aldous Huxley','Reflecting on my experience, I find myself agreeing with the eminent Cambridge philosopher, Dr. C. D. Broad... \"The suggestion is that the function of the brain and nervous system and sense organs is in the main eliminative and not productive. Each person is at each moment capable of remembering all that has ever happened to him and of perceiving everything that is happening everywhere in the universe. The function of the brain and nervous system is to protect us from being overwhelmed and confused by this mass of largely useless and irrelevant knowledge, by shutting out most of what we should otherwise perceive or remember at any moment, and leaving only that very small and special selection which is likely to be practically useful. ','2012-03-06 00:07:34'),
(251,'Einstein','The fairest thing we can experience is the mysterious, it is the fundamental emotion that stands at the cradle of true art and true science. ','2012-03-06 00:07:34'),
(252,'Aimeé on IM','i\'m singing my national anthem in french to you ','2012-03-06 00:07:34'),
(253,'Dag on IM','dude! wanna go to paris??? working is so 2004, traveling is very hot right now ','2012-03-06 00:07:34'),
(254,'William Gibson, Neuromancer, 1984','Cyberspace. A consensual hallucination experienced daily by billions of legitimate operators, in every nation, by children being taught mathematical concepts...A graphical representation of data abstracted from the banks of every computer in the human system. Unthinkable complexity. Lines of light ranged in the nonspace of the mind, clusters and constellations of data. Like city lights, receding... ','2012-03-06 00:07:34'),
(255,NULL,'Bee experts tell me that it takes thousands of trips involving visits to five million flowers, and 50,000 miles of flying to gather enough nectar to produce just one pound of honey. I\'m embarking on a similar effort to gather new material to replenish this sweet-tasting blog - so entries will be sparse for the next 10 days… with zero carbon emissions','2012-03-06 00:07:34'),
(256,'Carl Sagan','We are a way for the Cosmos to know itself. ','2012-03-06 00:07:34'),
(257,'Timothy Leary','For most people it\'s a life-changing shock to learn that their everyday reality circuit is one among dozens of circuits which, when turned on, are equally real, pulsing with strange forms and mysterious biological systems. Accelerated, amplified some of these alternate realities can be microscopic in exquisite detail, others telescopic. Since psychedelic drugs expose us to different levels of perception and experience, use of them is ultimately a philosophic enterprise, compelling us to confront the nature of reality and the nature of our fragile, subjective belief systems. The contrast is what triggers the laughter, the terror. We discover abruptly that we have been programmed all these years, that everything we accept as reality is just social fabrication. ','2012-03-06 00:07:34'),
(258,'Franklin D. Roosevelt','We have nothing to fear but fear itself. ','2012-03-06 00:07:34'),
(259,'Albert Einstein','Reality is merely an illusion, albeit a very persistent one. ','2012-03-06 00:07:34'),
(260,'Franz Kafka','There are some things one can only achieve by a deliberate leap in the opposite direction. Oftentimes one has to go abroad to find the home one has lost. ','2012-03-06 00:07:34'),
(261,'Pablo Picasso','If you know exactly what you are going to do, what is the point of doing it? ','2012-03-06 00:07:34'),
(262,'Albert Einstein','A human being is a part of the whole called by us \'universe\'... a part limited in time and space. He experiences his thoughts and feelings as separated from the rest - a kind of optical delusion of his consciousness. This delusion is a kind of prison for us, restricting us to our personal desires and to affection for a few persons nearest us. Our task must be to free ourselves from this prison by widening our circle of compassion to embrace all living creatures and the whole of nature in its beauty. ','2012-03-06 00:07:34'),
(263,'plato','To begin is the most important part of any quest and by far the most courageous ','2012-03-06 00:07:34'),
(264,'McKenna','The imagination is a dimension of non-local information ','2012-03-06 00:07:34'),
(265,NULL,'Nature is self-similar accross scales.','2012-03-06 00:07:34'),
(266,'and creation','Until one is committed, there is hesitancy, the chance to draw back, always ineffectiveness. Concerning all acts of initiative , there is one elementary truth, the ignorance of which kills countless ideas and splendid plans: that the moment one definitely commits oneself, then Providence move, too. All sorts of things occur to help one that would never otherwise have occurred. A whole stream of events issues from the decision, raising in one\'s favor all manner of unforeseen incidents and meetings and material assistance, which no one could have dreamed would have come their way. Whatever you can do, or dream you can, begin it. Boldness has genius, power and magic in it. ','2012-03-06 00:07:34'),
(267,'McKenna','Shamanism is philosophy with a hands-on attitude. Philosophy not made around the campfire, but based on the acquisition of extreme experience ','2012-03-06 00:07:34'),
(268,'Dr. Seuss','Don\'t cry because it\'s over. Smile because it happened ','2012-03-06 00:07:34'),
(269,NULL,'\"I sank to the floor,\" recalls McKenna, in a recording of the 1987 lecture. \"I [experienced] this hallucination of tumbling forward into these fractal geometric spaces made of light and then I found myself in the equivalent of the Pope\'s private chapel and there were insect elf machines proffering strange little tablets with strange writing on them, and I was aghast, completely appalled, because [in] a matter of seconds...my entire expectation of the nature of the world was just being shredded in front of me. I\'ve never actually gotten over it. These self-transforming machine elf creatures were speaking in a colored language which condensed into rotating machines that were like Fabergé eggs but crafted out of luminescent superconducting ceramics and liquid crystal gels. All this stuff was just so weird and so alien and so un-English-able that it was a complete shock - I mean, the literal turning inside out of [my] intellectual universe! ','2012-03-06 00:07:34');
/*!40000 ALTER TABLE `quotes` ENABLE KEYS */;
UNLOCK TABLES;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
#!/usr/local/bin/env ruby
require 'rubygems'
require 'data_mapper'
require 'dm-migrations'
# @amnotsam shared a fantastic list of quotes
# http://cargo.superfamous.com/A-Repository-of-quotes
# I felt compelled to capture them in a useful way
DataMapper::Logger.new($stdout, :debug)
DataMapper.setup(:default, 'mysql://localhost/quotes')
class Quote
include DataMapper::Resource
property :id, Serial # An auto-increment integer key
property :author, String # A varchar type string, for short strings
property :body, Text # A text block, for longer string data.
property :created_at, DateTime # A DateTime, for any date you might like.
end
DataMapper.finalize
DataMapper.auto_migrate!
# data pulled from http://cargo.superfamous.com/A-Repository-of-quotes
infile = File.open(File.expand_path("~/Desktop/quotes.txt"))
infile.each_line { |e|
e.chop!
unless e == ""
author_in_parens = e.slice(/\(([^)]*)\)/).to_s.chop
author = author_in_parens.gsub!(/(\(|\))/, '')
@quote = Quote.new(:body => e.gsub(/\(([^)]*)\)/, ''), :author => author)
@quote.save
else
next
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment