NewStats: 3,262,954 , 8,178,625 topics. Date: Wednesday, 04 June 2025 at 08:15 AM 703t2o6z3e3g |
(1) (6) (of 6 pages)
![]() |
Torch is a free and unique software that offers you powerful browsing together with built-in media ing and sharing features. Torch Browser is based on the Chromium technology platform, giving it fast browsing capabilities. http://www.torchbrowser.com/about Have you guys experienced some issues with this browser and tried uninstalling it? Were you able to differentiate the browser from Google Chrome at the point of uninstalling? The browser is everything Google plus theme. |
![]() |
Nice one. This is programming and some good trend to follow. Keep it rolling as usual ![]() |
![]() |
Here are my guys doing theirs. Let's see yours if you've got one Skelewu Dance 1: https://www.youtube.com/watch?v=aIBh3jVbgx4 Skelewu Dance 2: https://www.youtube.com/watch?v=GcdMQ7620jU |
![]() |
Once there was a Mouse. In a mill a rat once lived and prospered. It took after the miller, and from day to day its paunch grew bigger. It became as round as a cucumber and as fat as a candle. One day, looking at its round, sleek figure, the rat said to itself, "Behold I am so beautiful and strong. Why should I not go and pay a visit to God? He is sure to receive me." No sooner said than done. Leaving the mill, he started on his journey to God. After traveling a few days and not coming nearer to God, he stopped and said, "Methinks that either God lives much farther away than I believed, or I have lost my way. I will go to the sun and ask where God is." Coming to the sun, the rat asked, "Where is God?" "Off with you," shouted the sun. "I have no time for idle talkers." The rat went to the clouds and asked them, "Where is God?" "We cannot stop to bandy words with the like of you." Away the rat went and came to the wind. "Where is God?" asked the rat. "There," replied the wind, whistling, and getting hold of the rat hurled him down onto an ant-heap, and there he found his level. (The END, or Perhaps a new Beginning) Moral Lesson:: (Please contribute this as an advice if you understand the Mouse Story ![]() 1 Like |
![]() |
databoy247: I love your spirit bro....longest time.Hope you're doing good? |
![]() |
![]() |
![]() |
I've got a jingle I want able as ringtone. Can someone help me with information and of where I can get a good company with a good deal on providing the mobile services?
|
![]() |
I think we might continue with this to see how many people will along and play with codes but basically beginners except if the question level specifies otherwise.
|
![]() |
Fhemmmy: Talk to Igahdavid of NL . . . Good luckOkay. Thanks |
![]() |
Please I need dealers on Car Trackers or Car Tracking devices. Drop me your company's details or email me details of what you have in stock at iconsysteplus [@] yahoo.com (Please correct the email address before sending in your emails.) Cheers! |
![]() |
Thank you for completing this quiz. You scored 90%! This means you ed the quiz. I failed this one: Q.10 HTML5 is meant to be extendable by design. What part of the standard is supposed to achieve this? |
![]() |
***Just ing by*** Someone is ing another here but if you venture to bring him to his own fault he'll term you an enemy... |
![]() |
Hmmm..... doesn't seem they are interested in our quiz. So what do we do? Our help isn't going down well with them from what I see here. What do you guys think?
|
![]() |
<?php $array[0] = "mall"; $array[1] = "Kate"; $array[2] = 9; $array[3] = "brother"; $array[4] = "cup cakes"; $array[5] = "store"; $array[6] = "Linda"; echo "$array[1] went to the $array[0] to buy $array[2] $array[4] for her $array[3]."; ?> From the above PHP scripting block, what will be displayed in the browser? Level: Intermediate. |
![]() |
@Gerardcole, @Judinho59 Please ooooo... You should stop answering so the beginners will at least try out their hands on the questions before they are corrected with some methods of solving the puzzles. Let's give them a chance to try their hands on the puzzles
|
![]() |
Create a program that will print out all factors of 7 between 1 and 1000. Each number should be on a separate line. Hint: use modulus! Level: Beginner |
![]() |
Mehnnnnnnnnnn............... I'm tired of seeing all these talks. Let's get this once and for all. Some people here think they are the best so if you see them say website review, don't respond. Just by. If you say an 'A', they'll start attacking you like 'mad dogs'. So avert all these kinda talks, just see their reviews and get blind once you scroll through the thread. You don't learn anything from them rather you only have to make enemies. Don't bore your Sunday night with fights here. If you feel you are the best, carry on but I once someone put his portfolio and the Oga feeling 'Mr. Ultimate Warrior' simple went into thin air. Let's spare ourselves of these many arguments. Get busying learning one thing or the other. We are yet to where we dream to be so let's keep on working until we are where we dream to be and even beyond. Cheers! NB: You can attack me o. From day 1, those that know me will tell you that IDC! |
![]() |
Web Contractor: NEW PUZZLE <?php #set $a start count from 1 #set $a to be greater than 0 ($a > 0) so as to be infinite since original value = 1 #increment $a at every point in time $a is greater than 0 (infinite) #to get even numbers, divide the output of $a and ensure no remainder ie ($a % 2 == 0) #print your output (echo $a) append a comma and space after it for clearer reading (echo $a, ', ') /* For faster concatenation, I'll suggest you implore the use of comma to a dot. */ for($a = 1; $a > 0; $a++){ if($a % 2 == 0) echo $a, ', '; } ?> Set stop watch to like 2 minutes and stop code execution to see the numbers it has looped through. Don't let your browser hang anyways. |
![]() |
Can we do something here.... Let's benchmark our codes for faster running. If you run the codes by @Gerardcole on the Infinite loop puzzle, you'll see it takes some time to output results. You can compare this other variation to understand what I mean. Speed of result output is of essence in our codes as well.
Run this other one still not exceeding 500 <?php After running for 500, change to 100000 and see what happens still. Do you notice any variation in their processing speed? That's something I'll also like us to look into while providing solutions for the puzzles. |
![]() |
@ActiveMan Please let's not get into the DB aspect now. I still think we just keep playing around with strings and integers. I wonder how many of them are even taking note. No questions yet. I guess we should allow for like up to 5 answers if possible to be sure that people are following up before we declare answers then put up a new puzzle. Some might just come along, see and copy solutions without even knowing how they were solved. |
![]() |
To test the codes to a certain number limit, you can add an extra condition to be at least sure only even numbers are displayed. Taking a lead from @Gerardcole's codes Gerardcole: Add in: if(($number % $even == 0) AND ($number != 0) && ($number <= 200) To get even numbers from 0 - 200. You'll experience Maximum execution time limits depending on your php.ini maximum execution time set if you run the infinite loop and your time limit is reached. |
![]() |
Web Contractor: Hahahahaaa...... You sure know browsers will hang abi? |
![]() |
Gerardcole: I usually type on my android device so sorry for the errors. I didn't close a line with ;. Also I didn't close the if containing the in_array(), then I interchanged the position of the values in in_array. So editing the former post, here is the solution. Code runs fine as expected. Nice dual solution! I'm also thinking TRIM should be brought into light here so that the awareness of the different types of TRIMS could be seen and used too. http://php.net/manual/en/function.trim.php |
![]() |
Please how can we get more beginners here to learn? Now they are seeing trials and how codes are being ran and thanks to all for the inline commenting which is helping so much. It's a good practice coding with inline commenting so that anyone at your absence can maintain your codes. Please let's get more beginners to come along and test their abilities. Thanks to other friends who have ed in the puzzle posting and resolutions. I'm very very grateful. Some little engagements holding offline but I'll post other simple puzzles as well as assist in testing and picking correct answers as soon as I'm done. Cheers Friends! |
![]() |
Web Contractor: Geraldcole.perfect solution.use comments so beginner can follow.Thanks so much for loving to help the beginners. Let's write more codes for them so they can learn from. Issue is many are scared of writing the wrong codes and getting corrected but the truth is, when you write them poorly or wrongly, others put you in the right direction. Your coding structure and actual codes improve. Let's keep it alive here. More confusions, puzzles or questions coming. I'll post mine here as well for help. Cheers! |
![]() |
php.NET:NIIT ain't even the best to take control of the IT department. There are far better people than the entire NIIT candidates |
![]() |
I feel so bad ing how many volunteers put in efforts to do a prototype on this website and yet...
|
![]() |
@ActiveMan echo (15000 > '15,000') ? true : false; ^^^ Is an IF/ELSE statement. Just call it Tenary operator. http://php.net/manual/en/language.operators.comparison.php |
![]() |
ediko5: Please How can i get information posted by my site s on my site(for instance the form) either through email or any any other available method.This is off topic please. Create a new thread for it please. ActiveMan:Instead of multiplying, you can simple just compare the two variables. You already understood the difference that 15000 is an INTEGER while 15,000 is a mixture of NUMBERS & a CHARACTER. A simple code could be<?php
If the output is 1 then it's true while if 0 it's false. You can play around with this to see more examples. $a = "15,000"; $b = "1,500,000"; babihouse: NONice try. Keep attempting and you'll get used to it along the line. |
![]() |
^^^ Depending on who knows what to write and edit, not so? Copy and paste the way out for many
|
![]() |
ogzille: Bros, I can answer shebi?If I catch you say pim . . . . Waddup? |
![]() |
Is 15,000 same as 15000? Prove using code samples. (NB: Not for advanced coders. Allow the ones get better.) PS: Don't claim advanced when you don't even know anything. 1 Like |
(1) (6) (of 6 pages)
(Go Up)
Sections: How To . 52 Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or s on Nairaland. |