|
Programming › Re: See Money Making Programmers In Nairalans by jidez007: 11:58pm On Sep 28, 2017 |
dhtml81: I dont need to prove myself to anybody, but to be fair - I earn 100% of my money from programming. And just in case you do not know it, I no longer freelance, I now operate as a company - Nairaland Network Limited (fully registered under the C.A.C of Nigeria) and in charge of some very important applications that you all know (but i shall not mention them here). Oga dhtml come employ me na |
Programming › Re: See Money Making Programmers In Nairalans by jidez007: 11:46pm On Sep 28, 2017 |
|
Programming › Re: See Money Making Programmers In Nairalans by jidez007: 10:24pm On Sep 28, 2017 |
Yep, there will always be demands for programmers, as long as you are good.
And yes, it is one of the most lucrative jobs you can do. |
Programming › Re: Hello Dear! Pls Tell Me Something About Laravel by jidez007: 9:43am On Sep 17, 2017 |
pcguru1: If you love dealing with breaking changes when you update then Laravel is the framework for you, and yeah if you love magic codes too and excessive unreasonable use of static classes, I use Symfony but Laravel is good They are facades, not static classes. Laravel is a modern framework, the latest version requires at least PHP 7.0 to work. Meaning Laravel takes advantages of the latest php features instead of depending upon on custom functions which won't be as fast as native PHP functions. It also has a large community even in Nigeria with (@LaravelNigeria): https://twitter.com/LaravelNigeriaA dedicated video tutorials website http://laracasts.com I have a Laravel project I have been upgrading since 5.0, I don't spend up to an hour for each upgrade. It's now in Laravel 5.5 |
Programming › Re: 14 Programming Languages For Mobile App Development by jidez007: 3:17pm On Sep 08, 2017 |
App development for which platform? That should be the first question to be answered. You don't just bombard beginners with list of programming languages they should start learning. |
Programming › Re: Why Sup Messenger Is Better Than Whatsapp by jidez007: 9:00pm On Aug 30, 2017 |
Nice, this is really better than Whatsapp, Telegram, Wechat and even FB messenger sef. |
Programming › Re: Checkout This Conversation Between My Two Chatbots by jidez007: 7:24am On Aug 14, 2017 |
Well done but I was not actually able pick anything useful for me.
This is the programming section and not Webmasters and the rest. You should include technical information about how you were able to accomplish it, like the machine learning model or framework you used and how you got the data to train them. |
Programming › Re: Need Help With Code Igniter - Beginner by jidez007: 9:11am On Aug 08, 2017 |
In this age? Just drop CI and start with Laravel, you can thank me later. |
Programming › Re: A Nairalander Creates An Android App For Nairaland!!! by jidez007: 7:36am On Aug 07, 2017*. Modified: 8:34am On Aug 07, 2017 |
Creating a bookmark with a browser is far better than this, a browser will always have more features than just a webview. |
Programming › Re: Weekend Challenge For Practice: RLE Encoding by jidez007: 5:02pm On Aug 06, 2017 |
I have looked at that code like 10 times and I don't understand anything  Na Haskell language I go use now if I wan confuse my enemies. |
Programming › Re: Weekend Challenge For Practice: RLE Encoding by jidez007: 5:56pm On Aug 05, 2017 |
Took me about 5 minutes C++ #include <iostream>
int main() { std::string data;
std::cout << "Enter string: "; std::cin >> data;
char last = NULL; int count = 0; for(int i = 0; i <= data.length(); i++) {
if(i !=0 && last != data[i]) { std::cout << last << count; count = 0; }
last = data[i]; count++; } return 0; }
|
Programming › Re: Contest[closed] : Program A Function to find if a phrase. is in a string by jidez007: 1:46pm On Aug 04, 2017 |
Oh I don't think anyone got the quiz. Everyone taught of matching strings instead of word. |
Programming › Re: Contest[closed] : Program A Function to find if a phrase. is in a string by jidez007: 9:19am On Aug 04, 2017 |
pcguru1: I work in a fintech company, a small mistake means someone's money getting missing and getting invitation from risk management , a small mistake in an airplane means accident am not perfect but in computer science correctness is a key factor in algorithm am not trying to attack you but if it doesn't work, we meant to encourage you to make it work correctly if you not , that mindset of at least it works half way would be carried into the real world. I've made mistakes when instead of debiting 100 it took 1000 imagine if the person wanted to do 10000 transaction do you know how much trouble I would have been in, it was caught earlier and I fixed it. That's why am raising that point. This case is different, the quiz stated 1 or 0 to be the return type and I returned a boolean. How bad does that sound? I may be a beginner in c++ but I don't think I'm a beginner in general programming. Unlike you I work with a lot of companies not for a company. |
Programming › Re: Contest[closed] : Program A Function to find if a phrase. is in a string by jidez007: 6:45am On Aug 04, 2017 |
pcguru1: Isn't that wrong then correctness is a key in algorithm. You can not even encourage someone small. |
Programming › Re: Contest[closed] : Program A Function to find if a phrase. is in a string by jidez007: 10:51pm On Aug 03, 2017 |
silento: drop you number for your prize 08096646699 |
Programming › Re: Contest[closed] : Program A Function to find if a phrase. is in a string by jidez007: 8:45pm On Aug 03, 2017 |
silento: NICE WORK BUT return 1
when matched to "the aboyu is a man" Well, the function is find() which returns either true or false, the main() is just to test. |
Programming › Re: Contest[closed] : Program A Function to find if a phrase. is in a string by jidez007: 5:23pm On Aug 02, 2017 |
Solution in C++ Got c++ exam tomorrow so I may as well write in c++ #include <iostream>
int len_str(char s[]) { int i = 0; while (1) { if(s[i] == NULL) break; i++; } return i; }
bool cmp_char(char s[], char c[]) {
if(len_str(s) != len_str(c)) { // different lengths return false; }
for(int i = 0; i < len_str(s); i++) { if(s[i] != c[i]) return false; } return true; }
bool find(char word[], char sentence[]) { int word_len = len_str(word); int sen_len = len_str(sentence);
if(word_len > sen_len) { std::cout << "warn: word to find is greater than sentence" << std::endl; return false; }
char temp[word_len+1];
for(int i = 0; i <= sen_len - word_len; i++) {
for(int j = 0; j < word_len; j++) { temp[j] = sentence[i+j]; } // terminate temp word temp[word_len] = NULL;
if(cmp_char(word, temp)) { std::cout << "From position " << i << " to " << i + word_len << std::endl; return true; } }
return false; }
int main() { char sentence[] = "the boy is good"; char word[] = "boy";
if(find(word, sentence)) { std::cout << "Found" << std::endl; } else { std::cout << "Not Found" << std::endl;
} return 0; }
|
Programming › Re: I Will Officially Quit Visiting This Section by jidez007: 5:09pm On Jul 27, 2017 |
SirAbdulthe1st: This thread has served its purpose, it is time to scatterspice it up.
@dhtml18, I am disappointed, someone challenged your online personal prowess and you chickened out. I can't believe it goddammit.
This is highly impossible, and unacceptable. I shall take away my oath of allegiance if you don't respond.
Even seunthomas won't take this and to think I left his side for you, oh my. Mehn even I can't take this. I'm already boiling for DHTML... |
Programming › Re: Optional Things You Need To Learn As A Laravel Developer by jidez007: 10:00am On Jul 08, 2017 |
proxy20: 1.sass
2.vue js
3.Bootstrap 4
add yours Laravel is not opinionated about the front end technologies you should use, just learn and use any one you like. |
Programming › Re: 10 Nights Of Cloning Nairaland With PHP by jidez007: 8:10pm On Jun 06, 2017 |
Pinkytracy: Seun lalasticlala come and see what you and your egocentric team can never achieve. Nl is so achiac and devoid of innovation. The forum is very tasteless and full of immature kids. Anyway Mr. Op more oil to your head.
PS. Watch as I get banned for saying my mind Seun is getting away with it because this forum has been around for a long while and it has loyal users. This is only platform I know that doesn't add visible improvements once in a while. |
Programming › Re: How To Develop Instant Android Chating App(social Network) by jidez007: 7:18am On Jun 01, 2017 |
adenuga558: Am planing on how to make d app send instant message using json php mysql am thinking on refreshing d activity in background every 1second or milisecond Polling for data every second is bad on a web app not to now talk of an Android app that has to be very smooth and data efficient. Please teach us the normal way, the way you would do it on a production app. |
Programming › Re: Reasons Why You Must Get Your Own Website To Make Millions This 2017 by jidez007: 3:50pm On May 27, 2017 |
ogajaki: king37 after holding my money for days. You blocked me on whatsapp. And you think it will be well with you here. LOL. I didn't actually think anyone would contact the guy. Seun where are the mods here? |
Programming › Re: Here Is What A Foreigner Has To Say About Nigerian Developers by jidez007: 5:03pm On May 20, 2017 |
Lala oya fp |
Programming › Re: How To Develop Instant Android Chating App(social Network) by jidez007: 5:52pm On May 14, 2017 |
Firebase is very easy to get started with. @op carry on. |
Programming › Re: Why Are Most Nigerian Programmers Interested In Web Development? by jidez007: 5:44pm On May 07, 2017 |
Me I was smart from the beginning. I chose web designing and started earning by building wordpress websites without being very good in web development.
Then one day it occurred to me that I can't be calling myself a web developer with just WordPress skill that anyone can just learn in 2 weeks. So I took web development seriously and continued learning. |
TV/Movies › Re: The Fastest Way To Download TV Series without Ads by jidez007(op): 2:26pm On May 07, 2017 |
New Update!
The bot can now send you the download link to your favourite series immediately an episode has been released. With their subtitles. |
Programming › Re: Heavy JS Powered Sites- What's Your Stake On It? by jidez007: 1:11pm On May 07, 2017 |
Are you just hearing about spa? The only reason I don't use it much is because it is not supported on Opera mini and Ucweb on mobile. |
Programming › Re: For Those Interested In Donating To Friendosphere by jidez007: 5:32pm On May 06, 2017 |
No o. I didn't mean to be rude. But that may be the bitter truth. It would be hard to find investors not to now talk of people that would donate freely.
To be able cater for my own startup, I had to continue freelancing. |
Programming › Re: For Those Interested In Donating To Friendosphere by jidez007: 12:48pm On May 06, 2017 |
Why would someone donate. What's in it for them? it's not as if it's an opensource project. |
Programming › Re: Where Are The Mods? by jidez007: 1:24pm On May 05, 2017 |
Seun, I suggest DHTML for programming mod. But I would like to be the one that can ban him when he starts trolling. |
|