0luwatope's Posts
Nairaland Forum › 0luwatope's Profile › 0luwatope's Posts
1 2 3 4 5 6 7 8 9 10 11 12 13 (of 16 pages)
the ghost above me is a sadist, if you want to confirm that, watch the cartoon and give comments |
guy ur animation nearly gave me an heart attack, when that man said God will punish you i fear oh |
spinna:abeg no come spoil market for me oh leave my characters alone what software do u use anyways? |
if you havent watched firefire then youre missing something as this latest release from the makers of lagimo and rush hour has bring yet another humorous cartoon, if thr jumping up of area characters annoys you, this latest cartoon are now walking but like robots. its something you'll like i promise here is the youtube link https://www.youtube.com/watch?v=YyiiNliLJ7U |
another new and very very interesting video just released, this one is firefire. The man inside MayShark that slapped the small kid who couldnt spell biblical name is there and also the kid. i bet you will love this new one just try and watch, promise not to fall you guys hand, am not hyping tho just wanna make lil sense here is the link if youve watched firefire please drop comments https://www.youtube.com/watch?v=YyiiNliLJ7U |
if this doesnt make you laugh, then youre related to adolf hitler.... just kidding, check out this hilarious comedy that features a pastor and his son that doesnt want to go to church. https://www.youtube.com/watch?v=YyiiNliLJ7U |
toonboom |
lol sure why not a whole pastor's son |
Temmytea70:yayiiiii i droped my first official animation https://www.youtube.com/watch?v=DHt0YqSdrgY |
watch this funny animation where a pastor's child cant spell biblical names but can sing olamide's songs. This is my first official animation i created so please watch and review, thanks. https://www.youtube.com/watch?v=DHt0YqSdrgY |
Temmytea70:thanks my first official cartoon droping 2nite on youtube ill drop link later |
Hi guys, am actually looking for comedians who can post on a particular web everyday. Dont worry I'll pay you weekly. name your price lets talk here |
Hi guys, i wont waste a lot of time explaining crap bullshit, i am a 2d animator and started this year, i did my first official animation for a company named funloaded, i dont know the company eiher so i dont expect you to know it. My point is that if you want me to animate a short animation for you, i can possible do it. it'll just cause you a token. Before you guys start calling me, let me exlain somethings, if you want a short animation of about 8 talking characters, it will cost more than that of 2characters. The animation i did was made of 2 scenes and one character, am sorry my character was jumping like that of area's own but i promise that the next animation am going to release probably in 3weeks time, the characters will walk. I want it known that a walkih character will cost more than a jumping character but the price wont be much. Don't think about the price, think about the quality, don't think about the animator, i'll carry everybody along. If you are intersted call me or whatsapp @08104422662. the download link to my first animation is at the end of this post, the download will start immediately u click on it so this is not some la click la blast package. I just want to sound as loyal as possible so yea. Bloopses!!!! http://www.funloaded.xyz/2d/FunLoaded%20-%20Who%20You%20Epp.mp4 |
coolsix:eleyi giidi gan..... No need to ask questions jhoooor.... My God protect my website |
AgoraRoad:lolx, biko, don't went on it..... Tho its 100% clean from virus |
coolsix:Does that mean if I ue a key based encryption, I'll be able to decrypt it with that same key.... I don't want to encrypt or decrypt, I want one way hashing, according to my kid knowledge, that salt should act as the key |
DanielTheGeek:Jesus.... Those pics, how did you get his codes ?? |
I've been browsing since I was 12 yrs, I remembered visiting sometin like nairaland but I don't understand any dahm tin on nairaland until I was 18.... That's one of the reasons why we have matured peeps on nairaland and we have kids on 2go. OP, are u a kid ? |
Ok, here z mine(18 yrs) my website is all about jokes, funny pictures and interactive games.... Its www.funloaded.xyz am still working on the pc view, the mobile view is awesome, the design and concept will make you sponsor me. I'll always be loyal..... |
My friend's website is www.funloaded.xyz hez a geek in mobile view design but still learning pc view design |
If you're to create a nairaland like forum, you'll need to be reasonable(logic), php, html, css and sql. You must be expert in Sql and php..... Can some1 give me a simple example of perl, ruby and phython, donno it |
@Cordova Try to validate your inputs because of sql injection attacks and try to use new mysqli object oriented or PDO because mysql has been depreciated Your database should not necessarily contain uppercase and spaces, your db should be easier to understand Check your <input type='submit' name='update'> if yu misspelt the word update Then please and please use the empty() function $addy=htmlspecialchars(strip_tags($_POST['addy'])): //that is how to validate, I gat no time to write you a function for that if(empty($_POST['addy']) || empty($_POST['tel']......); { echo "<script>alert('Please fill all the fields before you proceed')</script>"; } // please try and create a div class for displaying errors so you will just echo the error msg ** else { session_start(); $suid=$_SESSION['user_id']; $qupdate = "UPDATE registermember SET Address = '$addy', Phone='$tel', Email='$mail', Age Bracket='$age', Profession='$prof', Place of work='$work', Position='$post' WHERE id=$suid "; $res = mysql_query($qupdate); header(); } Change all your address, phone, email to lowercases and remove all spaces because in your code, you didn't give room for an error message from your sql server... Did you even echo your $suid to know if it corresponds with the data on your db?? Greetings to my boss that will correct my codes.... Am a learner trying to be a geek |
0 |
Am getting better buh am not yet ready to code a website #yippie Am feeling fly.... The gods of php codes likes the program I wrote ![]() |
I found this password algorithm on a website that's giving tutorial on how to safely secure passwords from hackers that can manipulate sha1 and md5 hashes He added salt to the password and I think the salt don too much for the password self This is the algorithm $password=validate($_POST['password']); // validate is a user defined function that contains strip_tags, htmlspecialchars and all that $salt="F±:9x;a|6%[`U”Y_?v~0o'!÷d\N"; $pass1=sha1($salt.$password); $pass2=md5($salt.$password); $hash="$pass1$pass2"; The $hash the wat to be saved in database // no sane hacker will crack this easily I know but isn't this too much? |
Ok lemme use moi brain, I might be wrong tho because am still in year 2..... Let's say $u = username // from the welcome, $u(m), or db you get your username. If One guy posted and the word 'username' was in his post // nothing happens yet When I login... It reads the database or topics (not users) I.e "SELECT * FROM topics WHERE post LIKE %@$u%" // this might be wrong tho buh I hope you grab that. The topics is the table name while the post is where all posts are stored.... The number of returned mysql_num_rols will give you how many mentions you get, Note that Its searching @username instead of username Then when you click mentions.php it searches for @username in every post.... Over 2million posts.... Note that some people have mention you b4, let's say like 20 times..... You got the old_mention in your users db to be '20' So if a new user mentions you.... Your total mention will be 21(mysql_num_rols)... Subtract your old_mention from new_mention and it will give u 1 new mention @the end of mentions.php it will save your old_mentions to be '21' And to validate users from getting unnecessary mentions I.e if your username is 'hot' and in a post, someone said, 'am hot'..... There will be @$u // @username as the recognised mention so when you type only username, it won't recognise this as a username but when you type @username, it will recognise this.... So when its searching for username in posts it will search for $u = "@$username"; // I.e @username Please I hope a better webmaster will explain better, am not good @ explanations and I'm not sure if I got the algorithm right |
henryobinna:Guy take am easy nah.... I understand and I can see that it can't be corrected or can u correct it ? |
Ontarget:As long a you gat a good host that has good CPU and server, the rest na story..... My website scans a whole dictionary for a single word any time a word is submitted and I think it doesn't take ip to 2 second... 2 second too much self buh I hope you gat moi point |
Donno if am kinda good in css or am just fumbling..... Still in skul so gat no CV buh I gat a nice website (responsive). I gat no PC so I don't know how it looks on PC(might be nonsense)..... Check www.funloaded.xyz I hope to hear from peepz |
If papa ade should go to any slapping competition, he will win effortlessly..... That niccur can slap the dead, once he removes his cap, be expecting a slap |

