₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,327,003 members, 8,428,984 topics. Date: Thursday, 18 June 2026 at 10:10 AM

Toggle theme

Mkwayisi's Posts

Nairaland ForumMkwayisi's ProfileMkwayisi's Posts

1 2 3 (of 3 pages)

ProgrammingRe: C# Question........help??? by mkwayisi: 12:28pm On May 30, 2012
Kobojunkie: You are taking a programming course and you are not really a programming person? Why are you here to waste our time then?
I don't think the OP asked Kobojunkie anything. Rather, he asked anyone who wouldn't mind wasting his/her time to provide a solution. So if someone is wasting *your* time, well, it's you yourself ;-)
ProgrammingRe: There Is More To Software Development Than Programming by mkwayisi: 9:38pm On May 28, 2012
harryobas: @mkwayisi Programming is one of the activities performed during software development. Which means programming is part of software development.
I believe we all learned that in our "Computer Programming 101" class. Clearly, you are talking from a "software engineer"'s perspective but I'm coming from that of a "programmer"'s. Do you *get it* now?
ProgrammingRe: C++ Question by mkwayisi: 9:31pm On May 28, 2012
@lordZOUGA: I don't think your code would even compile or perhaps I'm not reading it right. Did you really write "number = number / MULTIPLE
findDigit(number);"?

If so, I think you'd need to return the last expression and terminate the preceding statement too ;-)
ProgrammingRe: There Is More To Software Development Than Programming by mkwayisi: 5:54pm On May 28, 2012
I TOTALLY agree with you. Point well made! I know a lot of programmers who have a dozen languages under their belts but do not know how to implement a hash table, recursive binary search, or even a linked list. I find that very heart-breaking.

Also, I've seen many rich "software engineers" who's banking software is vulnerable to SQL injection at the login prompt!

So I guess there's more to programming than just software development too.
ProgrammingRe: C++ Question by mkwayisi: 5:39pm On May 28, 2012
lordZOUGA: @ekt_bear, an attempt to make your algorithm reusable. No strings
#include <iostream>

using namespace std;
int findDigit(long long);

int main(){
long long aNumber;

cin >> aNumber;

int myDigit = findDigit(aNumber);

cout << "first digit is "<< myDigit << endl;

return 0;
}

//func def
#define MULTIPLE 10

int findDigit(long long number){
/*since a digit number is always less than 10, we divide with 10 till we get our digit*/
if(number < MULTIPLE)
return number;
number = number / MULTIPLE
findDigit(number);
}
Complete waste of CPU cycles. Honestly, do you really think your code is reusable? I think not. Prove if you think otherwise ;-)
ProgrammingRe: C++ Question by mkwayisi: 11:28am On May 27, 2012
Am I missing something? What's up with this casting and long data types. Ain't it as simple as this:

#include <iostream>
int main()
{
int num = 12345;
std::cout << "Left-most digit: " << num / 10000;
return 0;
}
ProgrammingRe: How Can I Build A School Forum? Pls I Need Help (assignment) by mkwayisi: 12:00am On May 27, 2012
Well, it's quite simple: build it!
I'm assuming you already know how to code.
ProgrammingRe: Your Programming Experience And Your Languages. by mkwayisi: 11:50pm On May 26, 2012
naija_swag: nearly 1year 6months doing java.almost done with my first software,a hotel management software(desktop based).can't wait to get paid.am still interested in c++ or it may be python,love to do one functional language say haskell.once i commence sale of my software,i intend to immense myself deeply in algorithms programming for six months.
Good luck. From where I am, businesses don't want to sign a deal because I've got no "big" references. So I've decided to make free software for a while so I can build a strong portfolio.
P.S.: And overprice your software too. Many people think "more expensive" = "better quality". Is that true, Linus? embarassed
ProgrammingRe: How Can A Sis File Be Made With Php by mkwayisi: 12:07pm On May 24, 2012
EDIT: Duplicate
ProgrammingRe: How Can A Sis File Be Made With Php by mkwayisi: 12:05pm On May 24, 2012
Perhaps many people (including myself) do not know what a "Sis file" is?
ProgrammingRe: How Do I Convert Photo To Html Code ? by mkwayisi: 12:01pm On May 24, 2012
@delomos: Not true. Anything is possible under the sun. You just have to look deeper.

@csharpjava: WTF! Are you kidding?

@OP: You will surely need *deep* low-level programming and image manipulation knowledge. I'd really like to see you start something on this. You'll do millions of web developers around the globe a great deal of good.
ProgrammingRe: Commenting System by mkwayisi: 11:35am On May 24, 2012
delomos: What is your database schema like?
Does it matter?
ProgrammingRe: One Little Cracker For All Programmers!!! (enjoy) by mkwayisi: 11:33am On May 24, 2012
This is an extremely interesting read. I didn't laugh out loud, though wink
WebmastersRe: How Long Does It Normally Take Search Engines To Crawl A Site? by mkwayisi: 10:17am On Feb 03, 2010
For me I'd say instantaneously! I developed a site, never sought a link from any site, never submitted it to Google or any other SE but found its way into their index after 48 hours. Amazing, huh! I'd say just do the right stuff and the SEs will be chasing your site. No need to buy links, you can do it on your own.
WebmastersRe: What Is Search Engine Marketing (sem)? by mkwayisi: 10:14am On Feb 03, 2010
No yawa, I disagree with your definition of SEM! SEO is totally distinct from SEM itself. SEM is just marketing your site via SEs while SEO is the art and science of seeking top place in SERP!
WebmastersRe: My Yahoomail Have Been Hacked, Hacked Yahoo Mail - Please Help Me by mkwayisi: 10:10am On Feb 03, 2010
If I were you, I'd track the one who hacked and hack him/her back. There are software out there that can do that for you or if you're a designer, develop a site that looks professional and authentic then find a way to let the person enter his/her pass, ta-dah! You've got his/her pass. log into the account, change the current pass so he/she could never log in again unless he pays a ransom. You can make some cool money!
WebmastersRe: Fast Ways To Get A Site's Page Rank Above 0 by mkwayisi: 10:06am On Feb 03, 2010
It's so simple. You just have to seek more links from pages with PR6 or above and within two weeks your PR will shoot up.

1 2 3 (of 3 pages)