April 09, 2003
The People's Poetry: Iraq: A Reading of Iraqi Poetry

Introduction by Lebanese novelist Elias Khoury

Poems by Badr Shakir As-Sayyab, Abdul Wahab al-Bayati, Nazik al-Malaika, Buland al-Haidari, Saadi Youssef, Lamia Abbas Amara, Sargon Boulus, Fadil al-Azzawi, Sadiq al Sayigh, Yusef al Sayigh, Hisham Shafiq, Sinan Antoon, and Mahmoud Darwish.

The poems will be read by Waiel Abdelwahed, Ammiel Alcalay, Haytham Bahoora, Lucas Canino, Rebecca Johnson, Elias Khoury, Khaled Mattawa, Mara Naaman, Tsolin Nalbantian, Manel Saddique, Sherene Seikaly, Shareah Taleghani and Nader Uthman.

Saturday, April 12th, from 3:45 to 5:00 p.m.
Poet's House
72 Spring Street(between B'way & Lafayette)in Manhattan
212-431-7920


For a full schedule of other events with writers from Pakistan, Bosnia, Morocco, Lebanon and many other places (including Etel Adnan, Abdellatif Laabi, Kishwar Naheed, Semezdin Mehmedinovic, Khaled Mattawa, Venus Khoury-Ghata, and many others), check the webiste:

www.poetshouse.org
www.peoplespoetry.org

Readings will be (mostly) in English translation.

Posted by Brian Stefans at April 09, 2003 11:55 PM | TrackBack
Comments

All the Best! Cialis - NYC.

Posted by: Cialis on December 2, 2003 12:36 AM

All the Best! Cialis - NYC.

Posted by: Cialis on December 2, 2003 12:36 AM

All the Best! Cialis - NYC.

Posted by: Cialis on December 2, 2003 12:37 AM

Each Stack Frame represents a function. The bottom frame is always the main function, and the frames above it are the other functions that main calls. At any given time, the stack can show you the path your code has taken to get to where it is. The top frame represents the function the code is currently executing, and the frame below it is the function that called the current function, and the frame below that represents the function that called the function that called the current function, and so on all the way down to main, which is the starting point of any C program.

Posted by: Augustus on January 19, 2004 12:16 AM

Let's take a moment to reexamine that. What we've done here is create two variables. The first variable is in the Heap, and we're storing data in it. That's the obvious one. But the second variable is a pointer to the first one, and it exists on the Stack. This variable is the one that's really called favoriteNumber, and it's the one we're working with. It is important to remember that there are now two parts to our simple variable, one of which exists in each world. This kind of division is common is C, but omnipresent in Cocoa. When you start making objects, Cocoa makes them all in the Heap because the Stack isn't big enough to hold them. In Cocoa, you deal with objects through pointers everywhere and are actually forbidden from dealing with them directly.

Posted by: Paul on January 19, 2004 12:17 AM

This variable is then used in various lines of code, holding values given it by variable assignments along the way. In the course of its life, a variable can hold any number of variables and be used in any number of different ways. This flexibility is built on the precept we just learned: a variable is really just a block of bits, and those bits can hold whatever data the program needs to remember. They can hold enough data to remember an integer from as low as -2,147,483,647 up to 2,147,483,647 (one less than plus or minus 2^31). They can remember one character of writing. They can keep a decimal number with a huge amount of precision and a giant range. They can hold a time accurate to the second in a range of centuries. A few bits is not to be scoffed at.

Posted by: Jerman on January 19, 2004 12:17 AM

The most basic duality that exists with variables is how the programmer sees them in a totally different way than the computer does. When you're typing away in Project Builder, your variables are normal words smashed together, like software titles from the 80s. You deal with them on this level, moving them around and passing them back and forth.

Posted by: Watkin on January 19, 2004 12:17 AM

Our next line looks familiar, except it starts with an asterisk. Again, we're using the star operator, and noting that this variable we're working with is a pointer. If we didn't, the computer would try to put the results of the right hand side of this statement (which evaluates to 6) into the pointer, overriding the value we need in the pointer, which is an address. This way, the computer knows to put the data not in the pointer, but into the place the pointer points to, which is in the Heap. So after this line, our int is living happily in the Heap, storing a value of 6, and our pointer tells us where that data is living.

Posted by: Christian on January 19, 2004 12:18 AM

really?

Posted by: buy diet pills on February 18, 2004 12:34 PM

Thats right

Posted by: order Tramadol on February 18, 2004 12:46 PM

Thats right

Posted by: Tramadol on February 18, 2004 12:57 PM
-->