LARRY FONDATION .JAYSON AND THE LIQUOR STORE Short Story  /* */ body { margin: 0; padding: 0; color: #000; font-size: 100%; line-height: 1.4; font-style: normal; background-color: #700505; background-image: url(/web/20231211095142im_/https://www.barcelonareview.com/90/80/down.jpg); background-repeat: repeat-x; background-attachment: fixed; } /* ~~ Element/tag selectors ~~ */ ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */ padding: 0; margin: 0; } h1, h2, h3, h4, h5, h6, p { margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */ padding-right: 15px; padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */ } a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */ border: none; } /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */ a:link { color: #000; text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */ } a:visited { color: #666; text-decoration: underline; } a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */ text-decoration: none; } /* ~~this fixed width container surrounds the other divs~~ */ .container { width: 750px; margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */ } /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */ .header { background-color: #000; } /* ~~ These are the columns for the layout. ~~ 1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design. 2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin. 3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document. 4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the divs around in the HTML source. */ .sidebar1 { float: right; width: 148px; padding-bottom: 5px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; } .sidebartext1 { font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; color: #FF0; } .sidebartext2 { font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #FFF; } .content { padding: 10px 0; width: 600px; float: left; background-color: #FFF; } /* ~~ This grouped selector gives the lists in the .content area space ~~ */ .content ul, .content ol { padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */ } /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */ ul.nav { list-style: none; /* this creates the top border for the links - all others are placed using a bottom border on the LI */ margin-bottom: 15px; /* this creates the space between the navigation on the content below */ border-top-width: 1px; border-top-style: solid; border-top-color: #C00; border-right-width: thin; border-right-style: solid; border-right-color: #C00; border-bottom-color: #C00; border-left-color: #C00; } ul.nav li { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #C00; } ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */ padding: 5px 5px 5px 5px; display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */ width: 140px; /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */ text-decoration: none; } ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */ color: #FFF; background-color: #000; } .copy { font-family: Verdana, Geneva, sans-serif; font-size: 12px; background-color: #9CF; display: block; } .author { font-family: Verdana, Geneva, sans-serif; font-size: 12px; font-style: normal; font-weight: bold; color: #000; background-color: #CCC; width: 90px; text-decoration: none; margin-left: 10px; } .nonserif { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; color: #000; display: block; padding-right: 20px; padding-left: 20px; } .container .content .narrative.copy { background-color: #FFC; } /* ~~ The footer ~~ */ .footer { padding: 0px 0; position: inherit;/* this gives IE6 hasLayout to properly clear */ clear: both; /* this clear property forces the .container to understand where the columns end and contain them */ list-style-type: disc; width: 600; } /* ~~ miscellaneous float/clear classes ~~ */ .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */ float: right; margin-left: 8px; } .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */ float: left; margin-right: 8px; } .clearfloat { /* this class can be placed on a
              or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */ clear:both; height:0; font-size: 1px; line-height: 0px; } .style1 { font-family: Verdana, Arial, Helvetica, sans-serif; text-transform: none; text-align: center; } -->              issue #108   fiction     Alejandro Varela Grand OpeningsLarry Fondation Jayson and the Liquor StoreChristopher Linforth Zagreb BoysBrian Hawkins A Veteran Heel  picks from back issues    Benjamin Percy  Somebody is Going to Have to Pay for This Leone Ross The Woman Who Lived in a Restaurant       quiz    Social Media in Literature answers to A.I. in Literature  book review   All the Sinners Bleed by S.A. Cosby  regular features      Book Reviews   TBR Archives        (authors listed alphabetically)    TBR Archives        (by issue)                           The Barcelona Review          Answers 

 A.I. in Literature  

 THE ANSWERS If you - or GBTChat- want to have a try before seeing the answers then CLICK HERE

  

 It’s been around a long time, dipping back to the mid-20th century, but now it’s difficult to read a newspaper or mag or peruse social media without someone sounding off on this latest iteration – are we doomed to hell with this new level of A.I. or will it help us formulate answers to climate change and other life-threatening concerns?  We know the brilliant precursors – I, Robot, Do Androids Dream of Electric Sheep?, Hyperion, and many others – but our focus begins with cyberpunk and includes work of the 21st century.   

   Name the novel:  1.  In this classic cyberpunk novel of the early 90s, there is an A.I. character in the metaverse named the Librarian.  Snow Crash by Neil Stephenson  2.   Considered a seminal work in the cyberpunk genre, this novel depicts a dangerous conspiracy involving A.I., virtual reality, and corporate powers. Neuromancer by William Gibson  3. Set in a future where humans have achieved immortality through A.I., this novel raises philosophical questions about the nature of consciousness, morality, and the consequences of unlimited power. The Metamorphosis of Prime Intellect by Roger Williams.  4. In this short story, a husband and wife, who create robots for a living, want their robot to enter the Gladiator Nationals - a competition for a military contract.  But the robot doesn’t want to fight and so he removes his appendages. “Glitch” by Hugh Howey  5. The first experimental novel composed by A.I., which is a disjointed and often bizarre narrative that showcases the creative output of the AI program.  The Policeman’s Beard  6. A much more recent novel composed by A.I. emulates Jack Kerouac’s On the Road. 1 the Road  7. This novella, set in the far future, follows a security android who gains autonomy and embarks on a journey of self-discovery while dealing with its distrust of humans. All Systems Red by Martha Wells  8.  In this post-apocalyptic “robot Western” where humans have been destroyed by the machines they built to serve them, we follow a lone robot scavenger trying to survive and navigate the complexities of A.I. Sea of Rust by C. Robert Cargill  9.  In this novel a precocious teen computer programmer obsessed with writing code creates her own A.I. which gains exponentially in intelligence and soon is hacking into banks, helping her change her grades, and guiding her as she navigates the minefield of school social life.  Every Line of You by Naomi Gibson  10.  Set in a dystopian future in which some children are genetically engineered for enhanced academic ability, schooling is provided entirely at home by on-screen tutors and parents who can afford it often buy their children androids as companions. The book is narrated by one such Artificial Friend (AF). (No, it’s not M3GAN!) Klara and the Sun by Kazuo Ishiguro   11. In this novel, the A.I. is an algorithm created to make huge amounts of money on the financial markets in an alternative 2010.   The Fear Index by Robert Harris  12.  A husband and wife who live in a remote area are approached by a ‘government’ man who says the husband has won a lottery that puts him in the running to live for a time on a spaceship and to keep the wife company while he’s gone they are going to create a replica of him.  Foe  by Iain Reid    13. In this novel, a ship’s A.I. loads herself into an android body and leaves the starship to pursue an independent existence in the company of a technician; while a parallel narrative strand explores the early years in the life of a genetically modified child slave. A Closed and Common Orbit by Becky Chambers  14. This science fiction novel follows a drug pirate and a pharmaceutical robot agent as they uncover a conspiracy surrounding a new drug and question the ethics of A.I. and autonomy. Autonomous by Annalee Newitz  15. Set in a 1980s alternative history where robotics technology has progressed to the point that artificial humans are on the consumer market for purchase, the protagonist purchases one of the first generation of artificial humans -  and they both fall in love with the same woman. Machines Like Me Ian McEwan  16. In the year 2049 a deadly non-viral agent intended for biowarfare spreads out of control and scientists must scramble to ensure the survival of the human race which they do by placing genetically engineered children inside the cocoons of large-scale robots—to be incubated, birthed, and raised by machines. The Mother Code by Carole Stivers   17.  In this novel an aged robot is the recent victim of a debilitating accident in which the socially acceptable thing to do in robot culture is deactivate, but this robot is not ready to end his life. Instead, he orders spare parts for himself and rents a remote beach house in order to repair and ponder why he wants to go on. Barron Cove by Ariel S. Winter  18.  This author wrote a novella using three artificial intelligence programs. Or rather three artificial intelligence programs wrote it with extensive plotting and prompting from the author, depending on how you look at it. “I am the creator of this work, 100 percent,” he said, “but, on the other hand, I didn’t create the words.” Death of an Author by Aiden Marchine  (Stephen Marche)  

   © tbr 2023

  

 This quiz and its answers may not be archived, reproduced or distributed further without the author's express permission. Please see our conditions of use. 

  

    The Barcelona Review is a registered non-profit organization  page top  home   spanish   catalan    tbr info submission info  e-m@il