8figure's Posts
Nairaland Forum › 8figure's Profile › 8figure's Posts
glo customer care |
This man is laced with heavy weight propaganda, believe me ,I witnessed a road that he commissioned and built on a big signboard . the road leading from Gra to 3-3. He used money for the job to build and commission big signboard, while leaving the road. No single road built in Onitsha, the one army engineers were handling around ezenwa were abandoned after building drainage. Onitsha looks like dump site. I can't even move about in the evening without covering my nose with handkerchief. |
|
@Zumarocket babe what's the code you used for the subscription? cos I tried *440*016# and BBUM3 to 440, and got "Erro occurred(538). please try after some time." and "dear subscriber, u have sent an incorrect keyword" respectively. |
Let me still maintain my cool until the appointed time |
ONITSHA IN ANAMBRA STATE IS WORSE THAN DIRTY DORMITORY TOILET. |
I feel like talking , but the time is not yet here... |
why u come dey show show bossom , when u know say u no get get bossom. |
*dhtml:Ican perfectly imagine your post. |
If what I have in this snapshot is same as what we 're discussing here, then am sorry for bumping into wrong thread. [size=14pt] Looked like a packed domain.[/size]
|
[size=14pt]@ Op Re-posting an old news, better go and research of new ideas and stop ranting with outdated stuffs.(2010 news) Newbie/script kid in action[/size] |
^^ na wa to you, must everyone be good in design? just give your contribution, but truth be told I can't explain more on how the site feels, It looks like it was done with corel draw 11. ![]() My contribution . Is ; specialization/one thing at a time . master one before moving to other. am a true example , I was trying to learn everything, but realize it pays more to... |
I don't have prejudice against meself. My father was a white and my mother was black. Them call me half-caste or whatever. Me don't deh pon nobody's side. Me don't deh pon the black man's side nor the white man's side. Me deh pon God's side, the one who create me and cause me to come from black and white |
namo77: Get a website for your business for only N2,000. Also get wonderful blogs designs for N2,000. Man you are [size=40pt]DOOMED!!![/size] |
^^ In other words the followers may as well loose interest... ![]() |
^^ You just abandoned this thread and |
@nesty what you need to study for you to beat that mission are (join,reverse and array), once you did that, you wouldn't have much to ask. I just tried it now and improved my solution with a script that solves prints out the pass for me. |
[size=20pt]I think this programming section is not impressive/active at all, as for the javascript task, I've figured it out and done what I needed.[/size] No thanks to you guyz at all |
Geez I've just completed mission 9 and you know what am now trying to figure out how i can implement what i did as a script cos I did it by hand and that's gonna be boring if the p1.length where to be like 100. I will still post the script if it would not be a spoiler. that is when am done o.
|
^^ Hey I think you need this tool to actually see what you re doing. https://addons.mozilla.org/firefox/downloads/file/123595/firebug-1.7.3-fx.xpi?src=dp-btn-primary |
netesy: slyr0x am i gonna get answered or not mehn help out a brother Hey whats your prob? tell me am listening |
Guys no reply on the javascript code yet? Just a hint no spoon... |
lordZOUGA: @8figure, why don't you give an overall description about wat u are trying to do.. Your comments are not as descriptive as you think and Please would you mind being more creative in naming ur variables... [color=#fa6546] <script language="JavaScript"> function checkPass() { var p1 = "bewareoftheenigmagroupunderground"; var p2 = "betterofftohacktherealownersboxes"; var p3 = "wassaidbyadudepseudodpsychomarine"; var confirmPass = document.login.password.value;//here i need the value of confirmpass var chk0 = 0; var pass = ""; var base = ""; for ( a = 0; a < p1.length; ++a ) { var blah = confirmPass.substring ( chk0, chk0 + 1 );//all i want here is the value of blah var chk1 = p1.substring ( a, a + 1 ); var chk2 = p2.substring ( a, a + 1 ); var chk3 = p3.substring ( a, a + 1 ); if ( chk1 == chk3 ) { if ( chk1 == blah) { base = base + chk1; } else { break; } chk0++; } if ( chk2 == chk1 ) { if ( chk2 == blah) { base = base + chk2; } else { break; } chk0++; } if ( chk3 == chk2 ) { if ( chk3 == blah) { base = base + chk3; } else { break; } chk0++; } ( p1.length == a + 1 ) ? pass = base : false;/*meant if expression inside () is true execute the immidiate expression, else false.*/ } ( confirmPass != '' && confirmPass == pass ) ? window.location.href=pass+".php" : alert( "Wrong! Please try again." ); } </script> <form id="login" method="post" action="" name="login"> Password: <input id="password" type="password" maxlength="30" size="30" value="" name="password"> <input id="submit" type="button" onclick="checkPass()" value="Click to Login" name="submit"> </form> [/color] when I have the values of the commented parts, am done with other stuffs. @lordZOUGA am just trying to know the password that is supposed to be accepted in the form. NOTA BENe: am not asking you to solve any other part outside the commented parts thanks for your concern. |
#include <iostream> using std::cout; using std::cin; using std::endl; int main() { int num1,num2,num3; cout<< "please enter 1st number: "; cin>> num1; cout<< "please enter 2nd number: "; cin>> num2; cout<< "please enter 3rd number: "; cin>> num3; if( (num1 + num2 <= num3)||(num2 + num3 <= num1)||(num1+num3 <= num2)) cout<< "they cant be sides of a triangle"<<endl; else cout<<"Number1 + number2 + number3 ="<<num1+num2+num3<<endl; cout<< "they can be sides of a triangle"<<endl; /* int result=num1+num2+num3; switch(result) { case (num1+num2>num3): cout<<"number1 + number2 is greater than number 3"<<endl; cout<<"so they can be sides of a triangle"<<endl; break; case (num1+num3>num2): cout<<"number1 + number3 is greater than number 2"<<endl; cout<<"so they can be sides of a triangle"<<endl; break; case (num2 + num3 > num1): cout<<"number2 + number3 is greater than number 1"<<endl; cout<<"so they can be sides of a triangle"<<endl; break; default: cout<<"sorry the can't be triangle" } */ cout<<endl; getchar();getchar(); return 0; } That's my little modification of the above prog, no debugging needed, just copy paste and compile thats all, but wait, I tried to do it with switch statement but don't know how to parse the expression instead of value of result. `numx' cannot appear in a constant-expression was the compilers error |
Now here I have a little problem here. I need help with this code. just read the comments I tried writing blah and it was undefined and also it seems it must get its value after confirmpass have got its own value from form input. I need clue on writing the value of blah and confirmpass just little hint, I don't need spoon oo!!! callydon ![]()
|
callydon: @escobar07. Thanks soooo much. Boy I can see ur really happy with that spoon in your mouth. Your own don finish if that's the case |
<script type="text/javascript"> var year= 6 var pass=12 for(i = 1; i <= year; i++) { pass += year * i * year; } document.write(pass) /* WHEN PASS = 318338237039211050000 WHAT IS THE VALUE OF YEAR. pass += year * i * year; */ </script> I need to know where am getting it wrong when I do it manually by hand, the result is never the same with what i got from this script. Any hint? |
chidi500: visit projectdesigner.net If I tell you that you suck, people will say am being rude, but you need to know how to solve the guy's prob while marketing yourself. Just an advice, cos if I were the guy, I would be glad to even recommend your site to friends if you solved my problem one way or the other while advertising,else you can imagine the otherwise. Gracias. |
Below is my little analysis of the javascript 9 code The long loop inner loop part is where am stuck and var confirmPass = document.login.password.value; part
|
go read about robots, thats what i did to pass through that level. |
@netesy what you saw there is called path disclosure and which can lead the intending intruder into deciphering what your directory structure looks like, and as the mission title suggests, the intruder can easily modify the url to get dir listing,guess you know what it means? think a little bit there is nothing wrong with anything, the error you got is just because you got the wrong answer. |
Just completed Javascript 8 and moved on to nine, and learned some functions. Am really enjoying this. |


