Maninmood's Posts
Nairaland Forum › Maninmood's Profile › Maninmood's Posts
1 2 3 4 5 6 7 8 9 10 11 12 (of 23 pages)
oohrhii..fx:It is quite saddening that all you could spot in this great piece was 'colour riot'. Do you even know anything about fashion? Must he wear matching clothes? Look up monochromatic, complimentary, triadic colours online. As long as I am concerned the shoe brings out the trouser colour though it is monochromatic, and on the upper body, white vs black is a complementary colour with blue tie serving as a bridge between the two. Again, what do you know about fashion? |
DigitalSignal: @OP:I sorted it out myself. Thanks for your contribution though. |
Select the area, use clone stamp and ensure you press ALT! Simple ![]() |
Fhemmmy: Mail me on Femmmy.moto@gmail.com and i will surely give you a shout tomorrow . . . Nice to know that it is not swampy and that it is 100% dry land, however, we will talk on phone tomorrow but please note that my number is +1-647-702-8336. looking forward to talking to you@Fhemmy: Please be careful. Contact Nairaland Lawyer if you want to buy any landed property in Lagos and ensure you inspect the land before buying. What would profit a man if he buys a plot of land for 1.3million and spends millions for just foundation. |
INNO18: Mavin Records First Lady, Tiwa SavageWhile wearing 2 bright colours( gown vs shoe)! Is she crazy? Shoe should have been green or light green, black or red! Talking about complimentary colours! Some Nigerians lack fashion! |
I don't think there is anything wrong in disclosing the ransom collected from the kidnappers, as far as it does not contradict their(NPF) working ethics and there is no breach in confidentiality between the two parties( Hyundai vs NPF). Moreover, this could aid in research analysis which might stop this vendetta that is painting our country evil. You are free to disprove or refute my hypothesis. |
Any contribution, pls? ![]() |
. |
Ogombo, 1.3mil? You buy that, set aside up to 10million for only foundation cuz I am sure as hell the place is going to be swampy, watery land and be ready to drive around an hour from Abraham Adesanya. These agents self ![]() |
This is mine though, still struggling 'tryparsing' the int from Console.ReadLine(); using System; using System.Collections.Generic; using System.Linq; using System.IO; //This is added as we were asked to include it on this project using System.Text; namespace IntroProgAssignment { class Program { static void Main() { Console.WriteLine(" You are welcome, these are the lists of menu:" ;string[] menuLists = new string[4] { "List All Files", " List Filtered Files", "Display Statistics", "Quit"}; for (int ind = 0; ind < menuLists.Length; ind++) { Console.WriteLine(" {0}. {1}", ind + 1, menuLists[ind]); } Console.WriteLine(); Console.Write(" Enter the number you are accessing:" ;string userEntry = Console.ReadLine(); int userInput; bool isUserInput = int.TryParse(userEntry, out userInput); switch (userInput) { case 1: FullFileListing(); QuitProgram(); Main(); break; case 2: FilteredFileListing(); QuitProgram(); Main(); break; case 3: FolderStatistics(); QuitProgram(); Main(); break; case 4: QuitProgram(); Main(); // calling main function break; default: { while (isUserInput == false) { Console.WriteLine(" Sorry you need to enter from number 1 to 4" ;userEntry = Console.ReadLine(); isUserInput = int.TryParse(userEntry, out userInput); } } break; } Console.ReadLine(); } static void FullFileListing() { DirectoryInfo folderInfo = new DirectoryInfo("C:\\Windows" ;FileInfo[] files = folderInfo.GetFiles(); for (int index = 0; index < files.Length; index++) { Console.WriteLine("{0}. {1} ({2})", index + 1, files[index].Name, files[index].Length); } Console.WriteLine(); } static void FilteredFileListing() { DirectoryInfo folderInfo = new DirectoryInfo("C:\\Windows" ;Console.WriteLine(" Below are 'exe' files:" ;FileInfo[] exeFiles = folderInfo.GetFiles( "*.exe" ;for (int i = 0; i < exeFiles.Length; i++) { Console.WriteLine( "{0}. {1} ({2})", i + 1, exeFiles[i].Name, exeFiles[i].Length); } Console.WriteLine(" Below are 'dll' files:" ;FileInfo[] dllFiles = folderInfo.GetFiles("*.dll" ;for (int i = 0; i < dllFiles.Length; i++) { Console.WriteLine("{0}. {1} ({2})", i + 1, dllFiles[i].Name, dllFiles[i].Length); } Console.WriteLine(" Below are 'log' files:" ;FileInfo[] logFiles = folderInfo.GetFiles("*.log" ;for (int i = 0; i < logFiles.Length; i++) { Console.WriteLine("{0}. {1} ({2})", i + 1, logFiles[i].Name, logFiles[i].Length); } Console.WriteLine(" Below are 'ini' files:" ;FileInfo[] iniFiles = folderInfo.GetFiles("*.ini" ;for (int i = 0; i < iniFiles.Length; i++) { Console.WriteLine("{0}. {1} ({2})", i + 1, iniFiles[i].Name, iniFiles[i].Length); } Console.WriteLine(" Below are 'xml' files:" ;FileInfo[] xmlFiles = folderInfo.GetFiles("*.xml" ;for (int i = 0; i < xmlFiles.Length; i++) { Console.WriteLine("{0}. {1} ({2})", i + 1, xmlFiles[i].Name, xmlFiles[i].Length); } Console.WriteLine(" Below are 'prx' files:" ;FileInfo[] prxFiles = folderInfo.GetFiles("*.prx" ;for (int i = 0; i < prxFiles.Length; i++) { Console.WriteLine("{0}. {1} ({2})", i + 1, prxFiles[i].Name, prxFiles[i].Length); } Console.WriteLine(" Below are 'manifest' files:" ;FileInfo[] manifestFiles = folderInfo.GetFiles("*.manifest" ;for (int i = 0; i < manifestFiles.Length; i++) { Console.WriteLine("{0}. {1} ({2})", i + 1, manifestFiles[i].Name, manifestFiles[i].Length); } Console.WriteLine(" Below are 'bin' files:" ;FileInfo[] binFiles = folderInfo.GetFiles("*.bin" ;for (int i = 0; i < binFiles.Length; i++) { Console.WriteLine("{0}. {1} ({2})", i + 1, binFiles[i].Name, binFiles[i].Length); } Console.ReadLine(); } static void FolderStatistics() { DirectoryInfo statisticsInfo= new DirectoryInfo(" C:\\Windows" ;FileInfo[] files = statisticsInfo.GetFiles(); Console.WriteLine(" Total files is {0}", files.Length); Console.ReadLine(); } static void QuitProgram() { Console.WriteLine("Press Y to exit" ;string userAnswer = Console.ReadLine().ToUpper(); Console.Clear(); } } } Any better suggestion? ![]() |
1. Full File Listing 2. Filtered File Listing 3. Folder Statistics: Display the following statistics about all the files in the current folder. Do not list any files in this case. Files in: C:\Windows Total files: 49 Total size of all files: 7121424 bytes Largest file: explorer.exe, 2871808 bytes Average file length: 145335 bytes 4. Quit, to exit the program After each operation (except 4) is complete wait for the user to press a key to continue, displaying an appropriate message to this effect. After the key press, the program should clear the screen, then return to the welcome message and the user may select another operation. |
Thank you very much, Inspired! Thanks a lot, OK! |
Eko oni baje. England oni daru! |
Humanbeans: ^^ Thanks a lot, I pray God will help you finish it, pls don't forget to invite me for housewarming.Noted! Humanbeans, be security conscious, don't ever disclose the actual location of this house to anyone. In as much as you don't do that, everything will be safe ![]() |
Billyonaire: First time I experienced it, I was so scared. I thought I was dead. I kept returning back to my body each time the fear overwhelmed me. Until a point I said, if its dead, am ready to go. Then I was startled when I heard a big bang like a gun-shot in my head, and off I went...its beyond explanations. Words cant explain.Then what happened? Can you give a brief illustration of the surreal feeling? Can you reflect on your experience? |
Subscribing.... Billoynaire, do you have any idea of what could happen after death? Is death a relaxing methodology(procedure) to this stressful, fluctuating life? |
Best of luck mate. I must tell you building duplex is quite challenging. I started mine in December 2011; I am only at finishing stage. May your aim and energy on this house get to fruition. I am following this great thread. |
k2039: At about 12.00 am later tonight most people will rejoice and congratulate each other, in fact some will create a big feast for the day.You sound like life is quite meaningless to you, pardon my ignorance if I am wrong. January 1st is not only crucial to individuals but also companies. It is high time you checked what you were unable to fix in 2012, reflect over it, and make a stern decision, and this should start tomorrow. |
This man died with honor. God please do make me a revered man in life. Let 2013 be an inception of beautiful things in my life and of those reading this comment. |
Why don't just save yourself inserting floating figures? Why not write N8m? Business strategies? Nice car though ![]() |
They knew the best you could do is rant for a few days and then forget it forever. Revolution is not imminent, especially in a country smitten with ethnic bigots. |
inspired_m: Vehicle Has Arrived Lagos Port, We Are working Round VIP Customs Clearing Sir.You would put a smile on someone's face if you could hand over those keys to me on Monday morning, I am seriously counting on you. |
Inspired, when am I taking delivery of this SUV? Trust me I wouldn't be asking you all these here if you are picking my calls. I am having only 4 days left in this country. Kindly ensure this car is cleared before 30th so at least I can enjoy it for just a day! |
Inspired, season's greetings. May I demand you clear the SUV tomorrow, please! Timing, timing, timing, don't forget! Moreover, ensure all the parts are perfectly fixed on it, I am picking it up unfailingly on the 27th which is next tomorrow. Prove your excellence to me on this. Cheers |
onila: the reason why I love Nigerian menReason why I hate 'some' Nigerian women including you- too demanding and lazy and who believe buying material things for her is true love. |
Where are you located? |
[quote author=mikayj][/quote]Be careful dude. Don't fall into wrong hands. Buying property in Lagos especially on mainland is quite hard. You would be duped clean. Take your time, consult a lawyer, preferably Nairaland lawyer, contact him about what you need, if you are not buoyant of Surulere property, save up your money till you can get one, or better still, ask your trusted Lawyer to search one within your budget for you. Once again, be careful! Lots of frauds on here! |
Too obese: How will they shed weight when they are always devouring nkwobi, shawarma, cat fish,....? Too fake: How will they be one's role model when they always wear on Brazilian hair, fake nails, etc., or when they think carrying a bottle of moet is fashion? | | | | | | | | | Bottom-line, knock on this girl's door in the morning, ensure it is around 5am when she is not wearing any make up, I bet you will run far and wild! |
mondi_cheeks: 1) 12inchesGlutton, men with the quoted qualities are taken! Little wonder girls of today are falling cheap for material things even if they are 'gold-plated'! The above stated signify that you are lazy bum who would rather sit down and reap where she did not sow. First-class thief. Likes of you are traversing the city of Lagos looking for a man who would pay them 20k per night. I would put my 2 hands into your glory hole and there would still be space. Ar[i]s[/i]e |
inspired_m: You're Correct Sir, The Vehicle Arrives tomorrow,That is perfect. Please work on it and let it be out on the 25th, if there is any amount to be paid for the VIP. Discuss it with me, but it should be what I can afford. I will give you a ring later in the day. Cheers |
Inspired, if I am correct, the vehicle is arriving tomorrow? And will you be able to clear it tomorrow as well? Bro, I have less than a week here ![]() |



Humanbeans, be security conscious, don't ever disclose the actual location of this house to anyone. In as much as you don't do that, everything will be safe