Pystar's Posts
Nairaland Forum › Pystar's Profile › Pystar's Posts
1 2 3 4 5 6 7 8 9 (of 9 pages)
Hi, I need a minflat in any of the following locations, surulere and environs, yaba, jibowu, fadeyi, onipan and environs. my budget is btw 150-200k. Please only serious people should contact me as this is very urgent. my number is 08029401212, thanks |
hi all, I am interested in getting the EOS digital camera. If you have it brand new or fairly used, contact me on: 08029401212# thanks |
hi, I need a mini flat in any of these locations urgently: sururlere, yaba, fadeyi, onipan, palm groove or maryland. my number is 08029401212. thanks. |
hi, I need the canon EOS camera, if you have the model or something related, my contact is 08029401212. thanks |
Hi, I need a laptop urgently, Here are my specs: 3GB Ram, 320GB HD, Core2Duo processor webcam, bluetooth, etc I would like either a Macbook Pro or HP product. My number is 08029401212 |
Hi, Can i have this HP DV 6 but with an Intel Core 2 Duo processor? |
I need a 160Gb or 250GB external hard disk urgently. pystar 08029401212 |
I am located in lagos. thanks |
I also need an itouch cover. thanks pystar |
I need an external hard disk casing urgently to buy for a laptop hard drive, if you have for sale, kindly contact me on 08029401212. Thanks Pystar |
What certifications would you recommend for a programmer who has a slant towards the linux OS? |
I would recoomend web2py http://www.web2py.com |
I need a portable power supply for my laptop, not an invertert but something smaller and portable like a solar bag or battery pack that can last for 12hrs or more |
i need a 2GB ram for my laptop urgently. Please if you have it for sale contact 08029401212. thanks |
Hello Nairalanders, i need a 2GB laptop Ram. Please contact this number 08029401212 if you have it for sale. thanks |
What are the specs and how can i get in contact with you? my number is 08029401212 |
can i get the price range of the used macbook pro? thanks |
I need a macbook pro urgently, pls contact if you have for sale thanks 08029401212 |
I have 5 pieces of the google G1 phone. The phone is unlocked, 3G, 1GB memory, 3 mega pixel camera, qwerty keyboard and it runs the google android OS. I am letting these fly at #65k last price. Interested call/text 08029401212 Thanks
|
i have a fairly used HP 6720s laptop dual core, 2.5 GB ram, 80GB hard disk, WiFi. if interested, text me on this number 08029401212 |
I have a HP 6720S Laptop, 80GB, 512 Ram, WIFI for a quicksale. Clean used. contact me on aitoehigie@gmail.com |
I need to buy an 80GB ipod or 8gb/16gb Iphone, if you have any of this, call or text this number 08029401212. Thanks |
Kindly send your price list to aitoehigie@gmail.com, as soon as possible Thanks |
I am in urgent need of a laptop. These are the specs: 1. Core 2 Duo Intel Processor (at least 1.8GHZ) 2. At least 250GB Hard Disk space and 2GB Ram 3. WIFI, B/Tooth, Webcam 4. Prefarably a Sony or Lenovo model I need it as soon as possible, so please send a text or call 08029401212 Thanks |
"Yes i have the sony specification but you can call me or come down to 3b Pepple street computer village ikeja. 08033924627, Victor." Can i have an idea of the price? pls send it to 08029401212. |
I am in urgent need of a sony laptop(brand new), these are the specifications that i would require: 1. 15.4 inch 2. At least 250GB hard disk 3. 3GB RAM or more 4. WIFI, Bluetooth, webcam, 5 in 1 card reader Contact me as soon as possible on this number 08029401212 Thanks |
I need an brand new 80G ipod urgently. If you have it do contact me or call or text this number 08029401212.Thanks |
One of the features of python which i like so much and can hardly do without in my code is called "Lists" or otherwise called "arrays" in other languages. This is just a short introduction to lists in Python. *************************************************************************** A list in Python can hold arbitrary objects in it, and a List in Python is known as a "container object", because it holds other objects within itself. A list is also mutable in nature. i.e. in Python, an object is either mutable or immutable. a mutable object is an object that can be modified or changed in place without creating a new copy of that object. The official definition of a List Object in Python is: "A List is an ordered collection of arbitrary objects". A List can also be said to be a sequence object, because you use the index of an object within a list to retrieve that list object item. Now to some code: ******************************************* To define a list in Python is as easy as this: "The list name" = [objects in the list] e.g states = ["lagos", "edo", "kogi", kano", "imo"] to retrieve the object stored in the first index of the "states" list, we do this states[0], P.S: all sequences or lists start from zero. Lists are indispendsible when dealing with collection of objects in your code which will be modified in place during execution by a user, and it becomes more useful when combined with the "sequence iteration operator" i.e. >>>for state in states: print state The above code snippet goes through the states list and prints out all the states in the list, till it reaches the end of the list. ************************************************************************************************* I will be stopping hear for now, whenever i have time, i will post more stuff, lets share our knowledge. thanks |
ubuntu linux |
In lil wayne "amilli" track, he mentioned something about Nigerian hair, can you tell me what he meant? I feel its something coded.The snippet of the lyrics is below: A Milli lyrics Young Money Ya Dig Macoranna A millionaire, I'm a young money millionaire Tougher than Nigerian hair My criteria compared to your career this isn't fair I'm a venereal disease like menstrual, bleed Through the pencil and leak on the sheet of the tablet In my mind cause I don't write shit cause I ain't got time |
@webdezzi I dont think that you have to use cherrypy because it comes with an inbuilt server, every python web framework worth its salt comes with an inbuilt server. I dont see you deploying your front facing web app with cherrypy since, its only a development server and not a production server. I dont see anything wrong with Apache as long as you dont use mod_python (its too computationally expensive to run it, since every request to your webapp initiates a new python process), i use apache and mod_wsgi (the code is hosted on google for easy download) or apache and mod_fcgi. If you hate Apache so much you can use lightTpd or Ngnix which are two relatively new web servers and have a smaller memory foot print than Apache. If you need any help on setting it up, get in touch. |