Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,153,239 members, 7,818,814 topics. Date: Monday, 06 May 2024 at 05:25 AM

Techwizard's Posts

Nairaland Forum / Techwizard's Profile / Techwizard's Posts

(1) (of 1 pages)

Education / Re: University Of Ibadan 2015/16 Applicants by techwizard(m): 11:38pm On Jul 06, 2015
This is my second post here, and wanna use this opportunity to thank these set of people due to their contribution:
1. Tholu
2. Proton
3. Becca
4. Augh
5. Whales
6. Precious
7. Tunsboy

Regards Trojan.
Education / Re: University Of Ibadan 2015/16 Applicants by techwizard(m): 7:12am On Apr 27, 2015
08136430985 for the whatsapp group
Education / Re: What's The Funniest Thing You've Experienced Inside An Examination Hall? by techwizard(m): 12:30pm On Apr 25, 2015
1. Happened during my waec last year, an external student came in with further mathematics textbook and she couldn't find the chapter of the terrible question, so we asked her to hand the book to us she said no OK then open it and show it to us she said she can't then one of my classmate stood up and shouted "Dem send you, e be like say witches for you village tarmor plane come find you" I laughed till I fell from my table.

2. During this year Jamb examinations while we were checking in and doing thumbprints, when it got to a girl's turned she fainted and the invigilators busted in laughter

3. That same jamb examination a girl not too far from my seat her computer told her hard drive failure while she was about to submit, u couldn't cry for her.

4. last year SS3 2nd term examinations before waec, we were having mathematics and the most beautiful girls in my class was sitting beside me, 30 minutes into the exam she has not solved anything before I knew it she started giving me a handjob on my em em, i was like dem send you, the rest is story.

will drop more later
Education / Re: 2015/2016 Utme And Admission Process by techwizard(m): 1:37am On Jan 23, 2015
if you're an aspirant for FUNAAB add pin 5143C056 I wanna know my people
Education / Re: Admission Thread 2015/2016: The University Of Ibadan. by techwizard(m): 12:45am On Jan 23, 2015
horpeyemmi66:


You get the D.E form the same way you got that of FUNAAB, thats step one and then you would be invited over for either an examination(followed by an interview), or just an examination(most likely).

What course are we speaking of here?

computer science
Education / Re: Admission Thread 2015/2016: The University Of Ibadan. by techwizard(m): 3:28pm On Jan 06, 2015
if I gain admission into funaab after my 1st year how can I process direct entry into U.I
Education / Re: Unilag Campus Pics by techwizard(m): 8:02pm On Dec 30, 2014
to be honest UNILAG is a beautiful school and they bring out outstanding students but also don't forget FUNAAB check out the structures.
Phones / Re: Airtel Bbm On Android Is Just 380mb For 300naira by techwizard(m): 11:27pm On Oct 08, 2014
Subscribe for bbm bundle for android once you do that open bbm then minimize it then u can use it for other apps
Programming / Re: Please Help With This Simple Code by techwizard(m): 1:59pm On Oct 08, 2014
<?php
$input = $input
if ($input < 1 || $input > 20 ) {
echo "number range exceeded or below expected"
}
?>
Programming / Re: Are There Nigerian Companies Using These Languages? by techwizard(m): 10:53am On Oct 08, 2014
I go with php, c++ and java
Programming / Re: Which Programming Language Holds Brighter Prospects In Nigeria by techwizard(m): 10:51am On Oct 08, 2014
I would go with java, c++ and php but if you are developing for apple devices objective c is a must
Computers / Re: Post Your Imac, Macbook And Macbook Pro Problems Here. by techwizard(m): 10:30am On Oct 04, 2014
please where can I get osx setup disc, I can't download it because its too large. just email ordrizzy@gmail.com. am building a hackintosh.

Programming / Re: Should A Programmer Marry A Programmer? by techwizard(m): 9:53am On Sep 28, 2014
I would like to marry a mathematician or a hardware engineer as a wife.
Software/Programmer Market / Re: Coders/programmers Wanted by techwizard(m): 11:45pm On Jan 01, 2014
Cmarketer: We also need a programmer/coder in our company. Provide your phone numbers here for our calls, Gideon and co. Call this number for details 08033119331
I code in c++, java, html, css, php and a mix of javascript
Programming / Re: Sage OS (HTML5) : The Development (with download link) by techwizard(m): 11:40pm On Jan 01, 2014
Yeah I was working on a similar project, mine is being built with html, css, javascript and c++ using cgi-bin
Programming / Re: All Programmer, Novice/beginner Assemble by techwizard(m): 11:32pm On Jan 01, 2014
This is a little antivirus code I wrote in c++

#include <dirent.h>
#include <string.h>
#include <fstream.h>
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
#include <iostream.h>

int scan_this(char *file_name)
{
char *pattern, *line_in_file;
char file_ch, ch;
int val, val2, flag;
ifstream fin3, fin4;
fin3.open(file_name); // incase the file is not accesible
if(!fin3) return 0;

else // file is accessible | 100% it is a file.
{
//Opening Virus Database File
fin4.open("db.txt"wink; // this is our character pattern file

for(;wink
{
fin4>>pattern;
if(!strcmp(pattern,"<-"wink)
{
fin4>>pattern;
if(!strcmpi(pattern,"End"wink)return -1;
else if(!strcmpi(pattern, "virus"wink)
{
if(flag) return 1;
else continue;
}
}
else if(!strcmpi(pattern,"LINE"wink)
{
fin4>>val; // got the line number

// skipping initial lines to reach the line number
for(int i=0;i<val-1;i++)
{
fin3.getline(line_in_file, 300);
}

fin4>>val; // got the character number
fin4>>file_ch; // got the character

//skipping initial character to reach the character
for(i=0;i<val-1;i++)
{
fin3.get(ch);
}

if(file_ch == ch) flag = 1; // matched.
else flag =0;
fin3.seekg(0); // set to start
}
}

}

}

void main()
{
char comm[300], dirpath[100], file_name[200];
char ask;
int response;
ifstream fin;

cout<<"Enter Directory you want to scan: ";
cin>>dirpath;

strcpy(comm, "dir "wink;
strcat(comm, "dirpath /b /s >tmp.$$$"wink;
system(comm);

fin.open("tmp.$$$"wink;

while(!fin.eof())
{
fin.getline(file_name, 200);
response = scan_this(file_name);
if(response == 1)
{
cout<<"<–!! Caution.! A Virus has been Detected..!";
cout<<"\n"<<file_name;
cout<<"\nPress Enter Key to Delete it.";
ask= getch();
if(ask == 13)
{
remove(file_name); // delete the virus
}
}
}

fin.close();
cout<<"Scan Complete.!! Thank You for using our anti virus";
getch();

}
Programming / All Programmer, Novice/beginner Assemble by techwizard(m): 11:30pm On Jan 01, 2014
I need you all here to share ideas, and work on something big any language is supported, my major projects are operating systems, video calling app, database management etc.
Programming / Re: Your Favorite Java IDE? by techwizard(m): 11:20pm On Jan 01, 2014
Mine is netbeans and eclipse
Programming / Re: C++ Beginner Discussion Room: Drop Your Codes by techwizard(m): 11:18pm On Jan 01, 2014
#include <iostream>
#include <windows.h>
using namespace std;
int main(void){
start:
cout << "Welcome to coded admin login\n" << endl;
cout << "Login using your administrator password:" << endl;
string login;
getline (cin, login);
if (login == "yourPassword"wink{
ShellExecute(NULL, "open", "http://www.highlycoded.com",
NULL, NULL, SW_SHOWNORMAL);
return 0;
}
else
{
cout << "Login failed" << endl;
goto start;
}

cin.get();
return 0;
}

1 Like

Programming / Re: I Want To Learn Programming. Which Language Should I Start With? by techwizard(m): 11:05pm On Jan 01, 2014
I am going to give you a list of the best, popular and most easiest programming languages.
1. C++ (very powerful but complex)
2. Java (very good for beginners)
3. C# based on .Net framework
4. Python
5. Ruby

If you are going to base on building websites learn
1. Html
2. Php
3. Javascript
4. Css

If you need more information or tutorials contact me on whatsapp or bbm or via email and I will give you all the materials for free.
08136430985, Pin: 263778B0, email: ordrizzy@gmail.com
Programming / Re: Who Can Tell Me Why Professional Hackers Use Satanic Names? by techwizard(m): 10:54pm On Jan 01, 2014
There are different types of hackers, white, black, grey and red. Like me am a grey hat, I can be good and bad at the same time, based on what I want to achieve, we usually study various languages, for me I understand c, c++, java, python, html, css, javascript, php and batch. My hacker name is dark empire.
Computers / Re: What's D Best Laptop Brand You Have Ever Seen And How Long Does The Battery Last by techwizard(m): 4:22pm On Nov 03, 2013
Apple macbook 2012
Programming / Re: Java Vs PHP: Which Has The Brightest Future? by techwizard(m): 4:10pm On Nov 03, 2013
blacksta: Can anyone recommend a beginners book in php
yeah if you need some books on any programming language I will give you for free just email ordrizzy@gmail.com
Programming / Re: Why Waste 4 Years On Computer Science In University? by techwizard(m): 4:07pm On Nov 03, 2013
I am planning to study computer engineering because its my passion and it is one of the only thing I can do perfectly I can do some little programming in c++ and I am always eager to learn more, just a year to go before am true with secondary school, I plan to work for big companies like apple, ibm, microsoft and I also plan to start up my own software company. You guys should check this out http://en.m.wikipedia.org/wiki/Craig_Federighi
Computers / Re: Recommend A Ram 4 500gb HDD by techwizard(m): 11:31pm On Apr 08, 2013
adewaleh: Hp Mini 110. i changed the HDD december 2012. but left the 1gb ram. i can't even hibernate my system. cuz it will take alot of time before it loads...
Upgrade to 2gb of ram that will fix it & make sure you have a good antivirus software
Technology Market / Re: Nigeria's Newly Made Android Tablet. Please Let's Support Our Own. by techwizard(m): 1:01pm On Apr 08, 2013
stpat1: u must be ashamed of urself for asking for a free sample. Church rat. For me I am definitely buying one as soon as I get to lagos cos it can do all and even more than an Ipad can do, so I've going for it. Its even cheap, its about 50k
I think its too expensive, 50k indian made their own and its just $10 (3k) & people are buy it like crazy.
Computers / Re: Dell LATITUDE D600 - System Password by techwizard(m): 7:29am On Apr 04, 2013
the default password should be "administrator"
Computers / Re: Recommend A Ram 4 500gb HDD by techwizard(m): 7:27am On Apr 04, 2013
first of all I need to know to model of your laptop because some laptops require lower ram to work {512mb}
While some require larger r.a.m
Computers / Re: What's Wrong With Starcomms Internet? by techwizard(m): 6:15am On Apr 04, 2013
starcomms is generally bad in all areas except Ikeja & v.i from my experience
Computers / Re: I Want To Learn Hacking.please Help(advice) by techwizard(m): 6:13am On Apr 04, 2013
learn a programming language
Start with B.A.S.I.C which means beginners alL-purpose symbolic instruction code
Then maybe you can learn some web programming language like php, html, javascript, mysql .
Then learn phyton, c++
Or call me 08136430985, 08134654282 or just send Airtime to me I will send all the books to you in pdf format

(1) (of 1 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 33
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.